From 835f83f40fb9275c1b674ecc31b4ecdd88646030 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Thu, 10 Sep 2015 15:32:57 -0700 Subject: [PATCH 01/14] added support for writing avro --- project/build.sbt | 0 src/main/avro/event.avsc | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 project/build.sbt create mode 100644 src/main/avro/event.avsc diff --git a/project/build.sbt b/project/build.sbt new file mode 100644 index 00000000..e69de29b diff --git a/src/main/avro/event.avsc b/src/main/avro/event.avsc new file mode 100644 index 00000000..6c5b8ec9 --- /dev/null +++ b/src/main/avro/event.avsc @@ -0,0 +1,30 @@ +{"namespace" : "com.interana.eventsim", + "type" : "record", + "name" : "event", + "fields" : [ + {"name" : "ts", "type" : "long"}, + {"name" : "userId", "type" : ["null","long"]}, + {"name" : "sessionId", "type" : "long"}, + {"name" : "page", "type" : "string"}, + {"name" : "auth", "type" : "string"}, + {"name" : "method", "type" : "string"}, + {"name" : "status", "type" : "int"}, + {"name" : "level", "type" : "string"}, + {"name" : "itemInSession", "type" : "int"}, + {"name" : "userDetails", + "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + {"name" : "songProperties", "type" : [ + "null", + { + "type": "record", + "name": "song", + "fields" : [ + {"name" : "artist", "type" : "string"}, + {"name" : "title", "type" : "string"}, + {"name" : "duration", "type" : "double"} + ] + } + ]}, + {"name": "tag", "type" : ["null", "string"]} + ] +} \ No newline at end of file From 72b7a25edbc5963d3d01db0835463f9bf31cf0f3 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Thu, 10 Sep 2015 15:34:20 -0700 Subject: [PATCH 02/14] files I forgot on last commit --- build.sbt | 6 +- project/build.sbt | 3 + .../scala/com/interana/eventsim/Main.scala | 5 + .../scala/com/interana/eventsim/Session.scala | 2 +- .../com/interana/eventsim/TimeUtilities.scala | 2 + .../scala/com/interana/eventsim/User.scala | 134 ++++++++++++++---- .../buildin/RandomSongGenerator.scala | 8 +- 7 files changed, 127 insertions(+), 33 deletions(-) diff --git a/build.sbt b/build.sbt index 48df16af..3065b22b 100644 --- a/build.sbt +++ b/build.sbt @@ -12,4 +12,8 @@ libraryDependencies += "com.fasterxml.jackson.core" % "jackson-core" % "2.6.1" libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.6.1" -libraryDependencies += "org.apache.kafka" % "kafka_2.10" % "0.8.2.1" \ No newline at end of file +libraryDependencies += "org.apache.kafka" % "kafka_2.10" % "0.8.2.1" + +libraryDependencies += "org.apache.avro" % "avro" % "1.7.7" + +seq( sbtavro.SbtAvro.avroSettings : _*) \ No newline at end of file diff --git a/project/build.sbt b/project/build.sbt index e69de29b..843ce5b8 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -0,0 +1,3 @@ +resolvers += "sbt-plugin-releases" at "http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases" + +addSbtPlugin("com.cavorite" % "sbt-avro" % "0.3.2") \ No newline at end of file diff --git a/src/main/scala/com/interana/eventsim/Main.scala b/src/main/scala/com/interana/eventsim/Main.scala index 2b35e668..1270b395 100644 --- a/src/main/scala/com/interana/eventsim/Main.scala +++ b/src/main/scala/com/interana/eventsim/Main.scala @@ -78,6 +78,9 @@ object Main extends App { val realTime = toggle("continuous", default = Some(false), descrYes = "continuous output", descrNo = "run all at once") + val useAvro = toggle("useAvro", default = Some(false), + descrYes = "output data as Avro", descrNo = "output data as JSON") + } val startTime = if (ConfFromOptions.startTimeArg.isSupplied) { @@ -125,6 +128,8 @@ object Main extends App { val realTime = ConfFromOptions.realTime.get.get + val useAvro = ConfFromOptions.useAvro.get.get + def generateEvents() = { val out = if (kafkaProducer.nonEmpty) { diff --git a/src/main/scala/com/interana/eventsim/Session.scala b/src/main/scala/com/interana/eventsim/Session.scala index 4b884cf1..3e424af5 100644 --- a/src/main/scala/com/interana/eventsim/Session.scala +++ b/src/main/scala/com/interana/eventsim/Session.scala @@ -20,7 +20,7 @@ class Session(var nextEventTimeStamp: Option[LocalDateTime], var itemInSession = 0 var done = false var currentState:State = initialStates((auth, level)).randomThing - var currentSong:Option[(String,String,String,Double)] = + var currentSong:Option[(String,String,String,Float)] = if (currentState.page=="NextSong") Some(RandomSongGenerator.nextSong()) else None var currentSongEnd:Option[LocalDateTime] = if (currentState.page=="NextSong") Some(nextEventTimeStamp.get.plusSeconds(currentSong.get._4.toInt)) else None diff --git a/src/main/scala/com/interana/eventsim/TimeUtilities.scala b/src/main/scala/com/interana/eventsim/TimeUtilities.scala index 0029a16a..85dbb805 100644 --- a/src/main/scala/com/interana/eventsim/TimeUtilities.scala +++ b/src/main/scala/com/interana/eventsim/TimeUtilities.scala @@ -6,6 +6,7 @@ import java.time.{DayOfWeek, Duration, LocalDateTime, LocalDate} import com.interana.eventsim.Constants._ import com.interana.eventsim.config.ConfigFromFile import de.jollyday.HolidayManager +import org.apache.commons.math3.distribution.ExponentialDistribution import org.apache.commons.math3.random.MersenneTwister object TimeUtilities { @@ -30,6 +31,7 @@ object TimeUtilities { // Y = − (1/λ) ln(X) has an exponential distribution with (rate) parameter λ // mu = (1 / lambda) + // TODO: change this to use org.apache.commons.math3.distribution.ExponentialDistribution def exponentialRandomValue(mu: Double) = -mu * Math.log(rng.nextDouble()) diff --git a/src/main/scala/com/interana/eventsim/User.scala b/src/main/scala/com/interana/eventsim/User.scala index 1bc78bdd..a5315d63 100644 --- a/src/main/scala/com/interana/eventsim/User.scala +++ b/src/main/scala/com/interana/eventsim/User.scala @@ -5,6 +5,9 @@ import java.time.{ZoneOffset, LocalDateTime} import com.fasterxml.jackson.core.{JsonEncoding, JsonFactory} import com.interana.eventsim.config.ConfigFromFile +import org.apache.avro.file.DataFileWriter +import org.apache.avro.io.EncoderFactory +import org.apache.avro.specific.SpecificDatumWriter import scala.util.parsing.json.JSONObject @@ -82,42 +85,119 @@ class User(val alpha: Double, } - val writer = User.jsonFactory.createGenerator(stream, JsonEncoding.UTF8) + val writer = if (Main.useAvro) new AvroWriter() else new JSONWriter() + + trait EventWriter { + def setTs(n: Long) + def setUserId(n: Long) + def setSessionId(n: Long) + def setPage(s: String) + def setAuth(s: String) + def setMethod(s: String) + def setStatus(i: Int) + def setLevel(s: String) + def setItemInSession(i: Int) + def setArtist(s: String) + def setTitle(s: String) + def setDuration(d: Float) + def setUserDetails(m: Map[String,Any]) + def setTag(s: String) + def start() + def end() + } - def writeEvent() = { + class JSONWriter extends Object with EventWriter { // use Jackson streaming to maximize efficiency - // (earlier versions used Scala's std JSON generators, but they were slow) - val showUserDetails = ConfigFromFile.showUserWithState(session.currentState.auth) - writer.writeStartObject() - writer.writeNumberField("ts", session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) - writer.writeStringField("userId", if (showUserDetails) userId.toString else "") - writer.writeNumberField("sessionId", session.sessionId) - writer.writeStringField("page", session.currentState.page) - writer.writeStringField("auth", session.currentState.auth) - writer.writeStringField("method", session.currentState.method) - writer.writeNumberField("status", session.currentState.status) - writer.writeStringField("level", session.currentState.level) - writer.writeNumberField("itemInSession", session.itemInSession) - if (showUserDetails) { + // (earlier versions used Scala's JSON generators, but they were slow) + val generator = User.jsonFactory.createGenerator(stream, JsonEncoding.UTF8) + def setTs(n: Long) = generator.writeNumberField("ts", n) + def setUserId(n: Long) = generator.writeNumberField("userId", n) + def setSessionId(n: Long) = generator.writeNumberField("sessionId", n) + def setPage(s: String) = generator.writeStringField("page",s) + def setAuth(s: String) = generator.writeStringField("auth", s) + def setMethod(s: String) = generator.writeStringField("method", s) + def setStatus(i: Int) = generator.writeNumberField("status", i) + def setLevel(s: String) = generator.writeStringField("level", s) + def setItemInSession(i: Int) = generator.writeNumberField("itemInSession", i) + def setArtist(s: String) = generator.writeStringField("artist", s) + def setTitle(s: String) = generator.writeStringField("song", s) + def setDuration(f: Float) = generator.writeNumberField("duration", f) + def setUserDetails(m: Map[String,Any]) = props.foreach((p: (String, Any)) => { p._2 match { - case _: Long => writer.writeNumberField(p._1, p._2.asInstanceOf[Long]) - case _: Int => writer.writeNumberField(p._1, p._2.asInstanceOf[Int]) - case _: Double => writer.writeNumberField(p._1, p._2.asInstanceOf[Double]) - case _: Float => writer.writeNumberField(p._1, p._2.asInstanceOf[Float]) - case _: String => writer.writeStringField(p._1, p._2.asInstanceOf[String]) + case _: Long => generator.writeNumberField(p._1, p._2.asInstanceOf[Long]) + case _: Int => generator.writeNumberField(p._1, p._2.asInstanceOf[Int]) + case _: Double => generator.writeNumberField(p._1, p._2.asInstanceOf[Double]) + case _: Float => generator.writeNumberField(p._1, p._2.asInstanceOf[Float]) + case _: String => generator.writeStringField(p._1, p._2.asInstanceOf[String]) }}) + def setTag(s: String) = generator.writeStringField("tag", s) + def start = generator.writeStartObject() + def end() = { + generator.writeEndObject() + generator.writeRaw('\n') + generator.flush() + } + } + + class AvroWriter extends Object with EventWriter { + val encoder = EncoderFactory.get().binaryEncoder(stream, null) + val datumWriter = new SpecificDatumWriter[Event](Event.getClassSchema) + val dataFileWriter = new DataFileWriter[Event](datumWriter) + var eventBuilder = Event.newBuilder() + var songBuilder = song.newBuilder() + def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setPage(s: String) = eventBuilder.setPage(s) + def setAuth(s: String) = eventBuilder.setAuth(s) + def setMethod(s: String) = eventBuilder.setMethod(s) + def setStatus(i: Int) = eventBuilder.setStatus(i) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) + def setArtist(s: String) = songBuilder.setArtist(s) + def setTitle(s: String) = songBuilder.setTitle(s) + def setDuration(d: Float) = songBuilder.setDuration(d) + def setUserDetails(m: Map[String,Any]) = eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) + def start() = { + eventBuilder = Event.newBuilder(eventBuilder) + songBuilder = song.newBuilder(songBuilder) + } + def end() = { + eventBuilder.setSongProperties(songBuilder.build()) + val e = eventBuilder.build() + dataFileWriter.append(e) + } + + } + + val builder = Event.newBuilder() + val songBuilder = com.interana.eventsim.song.newBuilder() + + def writeEvent() = { + val showUserDetails = ConfigFromFile.showUserWithState(session.currentState.auth) + writer.start + writer.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) + if (showUserDetails) writer.setUserId(userId) + writer.setSessionId( session.sessionId) + writer.setPage(session.currentState.page) + writer.setAuth(session.currentState.auth) + writer.setMethod(session.currentState.method) + writer.setStatus(session.currentState.status) + writer.setLevel(session.currentState.level) + writer.setItemInSession(session.itemInSession) + if (showUserDetails) { + writer.setUserDetails(props) if (Main.tag.isDefined) - writer.writeStringField("tag", Main.tag.get) + writer.setTag(Main.tag.get) } if (session.currentState.page=="NextSong") { - writer.writeStringField("artist", session.currentSong.get._2) - writer.writeStringField("song", session.currentSong.get._3) - writer.writeNumberField("length", session.currentSong.get._4) + writer.setArtist(session.currentSong.get._2) + writer.setTitle(session.currentSong.get._3) + writer.setDuration(session.currentSong.get._4) } - writer.writeEndObject() - writer.writeRaw('\n') - writer.flush() + writer.end } def tsToString(ts: LocalDateTime) = ts.toString() diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomSongGenerator.scala b/src/main/scala/com/interana/eventsim/buildin/RandomSongGenerator.scala index d82f7253..3a5c63c5 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomSongGenerator.scala +++ b/src/main/scala/com/interana/eventsim/buildin/RandomSongGenerator.scala @@ -17,7 +17,7 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { val listenLines = s.getLines() - val trackIdMap = new mutable.HashMap[String,(String,String,Double,Int)]() + val trackIdMap = new mutable.HashMap[String,(String,String,Float,Int)]() var i = 0 for (ll <- listenLines) { if ((i % 1000) == 0) @@ -30,7 +30,7 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { val songName = fields(2) val duration = { val d = fields(3) - if (d != "") d.toDouble else 180.0 + if (d != "") d.toFloat else 180.0.toFloat } val count = fields(4).toInt trackIdMap.put(trackId,(artist,songName,duration,count)) @@ -86,7 +86,7 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { } - def nextSong(lastTrackId: String): (String,String,String,Double) = { + def nextSong(lastTrackId: String): (String,String,String,Float) = { val nextTrackId = if (!similarSongs.isEmpty && similarSongs.contains(lastTrackId)) { similarSongs(lastTrackId).randomThing @@ -97,6 +97,6 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { (nextTrackId,song._1,song._2,song._3) } - def nextSong(): (String, String, String, Double) = nextSong("") + def nextSong(): (String, String, String, Float) = nextSong("") } From 32cdcaaa37541361dc7cf7f05ff98a1de069f872 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Thu, 10 Sep 2015 16:36:35 -0700 Subject: [PATCH 03/14] Refactoring for clarity; removed dead code --- src/main/avro/event.avsc | 2 +- .../interana/eventsim/Output/AvroWriter.scala | 40 +++++ .../eventsim/Output/EventWriter.scala | 20 +++ .../interana/eventsim/Output/JSONWriter.scala | 41 +++++ .../scala/com/interana/eventsim/User.scala | 143 +----------------- 5 files changed, 104 insertions(+), 142 deletions(-) create mode 100644 src/main/scala/com/interana/eventsim/Output/AvroWriter.scala create mode 100644 src/main/scala/com/interana/eventsim/Output/EventWriter.scala create mode 100644 src/main/scala/com/interana/eventsim/Output/JSONWriter.scala diff --git a/src/main/avro/event.avsc b/src/main/avro/event.avsc index 6c5b8ec9..0eef2597 100644 --- a/src/main/avro/event.avsc +++ b/src/main/avro/event.avsc @@ -1,6 +1,6 @@ {"namespace" : "com.interana.eventsim", "type" : "record", - "name" : "event", + "name" : "Event", "fields" : [ {"name" : "ts", "type" : "long"}, {"name" : "userId", "type" : ["null","long"]}, diff --git a/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala b/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala new file mode 100644 index 00000000..f0f6ba45 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala @@ -0,0 +1,40 @@ +package com.interana.eventsim.Output + +import java.io.OutputStream + +import com.interana.eventsim.{song, Event} +import org.apache.avro.file.DataFileWriter +import org.apache.avro.io.EncoderFactory +import org.apache.avro.specific.SpecificDatumWriter + +class AvroWriter(val stream: OutputStream) extends Object with EventWriter { + val encoder = EncoderFactory.get().binaryEncoder(stream, null) + val datumWriter = new SpecificDatumWriter[Event](Event.getClassSchema) + val dataFileWriter = new DataFileWriter[Event](datumWriter) + var eventBuilder = Event.newBuilder() + var songBuilder = song.newBuilder() + def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setPage(s: String) = eventBuilder.setPage(s) + def setAuth(s: String) = eventBuilder.setAuth(s) + def setMethod(s: String) = eventBuilder.setMethod(s) + def setStatus(i: Int) = eventBuilder.setStatus(i) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) + def setArtist(s: String) = songBuilder.setArtist(s) + def setTitle(s: String) = songBuilder.setTitle(s) + def setDuration(d: Float) = songBuilder.setDuration(d) + def setUserDetails(m: Map[String,Any]) = eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) + def start() = { + eventBuilder = Event.newBuilder(eventBuilder) + songBuilder = song.newBuilder(songBuilder) + } + def end() = { + eventBuilder.setSongProperties(songBuilder.build()) + val e = eventBuilder.build() + dataFileWriter.append(e) + } + +} diff --git a/src/main/scala/com/interana/eventsim/Output/EventWriter.scala b/src/main/scala/com/interana/eventsim/Output/EventWriter.scala new file mode 100644 index 00000000..3da904a0 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/Output/EventWriter.scala @@ -0,0 +1,20 @@ +package com.interana.eventsim.Output + +trait EventWriter { + def setTs(n: Long) + def setUserId(n: Long) + def setSessionId(n: Long) + def setPage(s: String) + def setAuth(s: String) + def setMethod(s: String) + def setStatus(i: Int) + def setLevel(s: String) + def setItemInSession(i: Int) + def setArtist(s: String) + def setTitle(s: String) + def setDuration(d: Float) + def setUserDetails(m: Map[String,Any]) + def setTag(s: String) + def start() + def end() +} diff --git a/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala b/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala new file mode 100644 index 00000000..1dd5f6da --- /dev/null +++ b/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala @@ -0,0 +1,41 @@ +package com.interana.eventsim.Output + +import java.io.OutputStream + +import com.fasterxml.jackson.core.{JsonFactory, JsonEncoding} + +class JSONWriter(val stream: OutputStream) extends Object with EventWriter { + // use Jackson streaming to maximize efficiency + // (earlier versions used Scala's JSON generators, but they were slow) + val jsonFactory = new JsonFactory() + jsonFactory.setRootValueSeparator("") + val generator = jsonFactory.createGenerator(stream, JsonEncoding.UTF8) + def setTs(n: Long) = generator.writeNumberField("ts", n) + def setUserId(n: Long) = generator.writeNumberField("userId", n) + def setSessionId(n: Long) = generator.writeNumberField("sessionId", n) + def setPage(s: String) = generator.writeStringField("page",s) + def setAuth(s: String) = generator.writeStringField("auth", s) + def setMethod(s: String) = generator.writeStringField("method", s) + def setStatus(i: Int) = generator.writeNumberField("status", i) + def setLevel(s: String) = generator.writeStringField("level", s) + def setItemInSession(i: Int) = generator.writeNumberField("itemInSession", i) + def setArtist(s: String) = generator.writeStringField("artist", s) + def setTitle(s: String) = generator.writeStringField("song", s) + def setDuration(f: Float) = generator.writeNumberField("duration", f) + def setUserDetails(m: Map[String,Any]) = + m.foreach((p: (String, Any)) => { + p._2 match { + case _: Long => generator.writeNumberField(p._1, p._2.asInstanceOf[Long]) + case _: Int => generator.writeNumberField(p._1, p._2.asInstanceOf[Int]) + case _: Double => generator.writeNumberField(p._1, p._2.asInstanceOf[Double]) + case _: Float => generator.writeNumberField(p._1, p._2.asInstanceOf[Float]) + case _: String => generator.writeStringField(p._1, p._2.asInstanceOf[String]) + }}) + def setTag(s: String) = generator.writeStringField("tag", s) + def start = generator.writeStartObject() + def end() = { + generator.writeEndObject() + generator.writeRaw('\n') + generator.flush() + } +} diff --git a/src/main/scala/com/interana/eventsim/User.scala b/src/main/scala/com/interana/eventsim/User.scala index a5315d63..f48a8ab1 100644 --- a/src/main/scala/com/interana/eventsim/User.scala +++ b/src/main/scala/com/interana/eventsim/User.scala @@ -3,13 +3,8 @@ package com.interana.eventsim import java.io.{OutputStream, Serializable} import java.time.{ZoneOffset, LocalDateTime} -import com.fasterxml.jackson.core.{JsonEncoding, JsonFactory} +import com.interana.eventsim.Output.{EventWriter, JSONWriter, AvroWriter} import com.interana.eventsim.config.ConfigFromFile -import org.apache.avro.file.DataFileWriter -import org.apache.avro.io.EncoderFactory -import org.apache.avro.specific.SpecificDatumWriter - -import scala.util.parsing.json.JSONObject class User(val alpha: Double, val beta: Double, @@ -52,128 +47,7 @@ class User(val alpha: Double, } } - private val EMPTY_MAP = Map() - - def eventString = { - val showUserDetails = ConfigFromFile.showUserWithState(session.currentState.auth) - var m = device.+( - "ts" -> session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC).toEpochMilli, - "userId" -> (if (showUserDetails) userId else ""), - "sessionId" -> session.sessionId, - "page" -> session.currentState.page, - "auth" -> session.currentState.auth, - "method" -> session.currentState.method, - "status" -> session.currentState.status, - "itemInSession" -> session.itemInSession - ) - - if (showUserDetails) - m ++= props - - /* most of the event generator code is pretty generic, but this is hard-coded - * for a fake music web site - */ - if (session.currentState.page=="NextSong") - m += ( - "artist" -> session.currentSong.get._2, - "song" -> session.currentSong.get._3, - "length" -> session.currentSong.get._4 - ) - - val j = new JSONObject(m) - j.toString() - } - - - val writer = if (Main.useAvro) new AvroWriter() else new JSONWriter() - - trait EventWriter { - def setTs(n: Long) - def setUserId(n: Long) - def setSessionId(n: Long) - def setPage(s: String) - def setAuth(s: String) - def setMethod(s: String) - def setStatus(i: Int) - def setLevel(s: String) - def setItemInSession(i: Int) - def setArtist(s: String) - def setTitle(s: String) - def setDuration(d: Float) - def setUserDetails(m: Map[String,Any]) - def setTag(s: String) - def start() - def end() - } - - class JSONWriter extends Object with EventWriter { - // use Jackson streaming to maximize efficiency - // (earlier versions used Scala's JSON generators, but they were slow) - val generator = User.jsonFactory.createGenerator(stream, JsonEncoding.UTF8) - def setTs(n: Long) = generator.writeNumberField("ts", n) - def setUserId(n: Long) = generator.writeNumberField("userId", n) - def setSessionId(n: Long) = generator.writeNumberField("sessionId", n) - def setPage(s: String) = generator.writeStringField("page",s) - def setAuth(s: String) = generator.writeStringField("auth", s) - def setMethod(s: String) = generator.writeStringField("method", s) - def setStatus(i: Int) = generator.writeNumberField("status", i) - def setLevel(s: String) = generator.writeStringField("level", s) - def setItemInSession(i: Int) = generator.writeNumberField("itemInSession", i) - def setArtist(s: String) = generator.writeStringField("artist", s) - def setTitle(s: String) = generator.writeStringField("song", s) - def setDuration(f: Float) = generator.writeNumberField("duration", f) - def setUserDetails(m: Map[String,Any]) = - props.foreach((p: (String, Any)) => { - p._2 match { - case _: Long => generator.writeNumberField(p._1, p._2.asInstanceOf[Long]) - case _: Int => generator.writeNumberField(p._1, p._2.asInstanceOf[Int]) - case _: Double => generator.writeNumberField(p._1, p._2.asInstanceOf[Double]) - case _: Float => generator.writeNumberField(p._1, p._2.asInstanceOf[Float]) - case _: String => generator.writeStringField(p._1, p._2.asInstanceOf[String]) - }}) - def setTag(s: String) = generator.writeStringField("tag", s) - def start = generator.writeStartObject() - def end() = { - generator.writeEndObject() - generator.writeRaw('\n') - generator.flush() - } - } - - class AvroWriter extends Object with EventWriter { - val encoder = EncoderFactory.get().binaryEncoder(stream, null) - val datumWriter = new SpecificDatumWriter[Event](Event.getClassSchema) - val dataFileWriter = new DataFileWriter[Event](datumWriter) - var eventBuilder = Event.newBuilder() - var songBuilder = song.newBuilder() - def setTs(n: Long) = eventBuilder.setTs(n) - def setUserId(n: Long) = eventBuilder.setUserId(n) - def setSessionId(n: Long) = eventBuilder.setSessionId(n) - def setPage(s: String) = eventBuilder.setPage(s) - def setAuth(s: String) = eventBuilder.setAuth(s) - def setMethod(s: String) = eventBuilder.setMethod(s) - def setStatus(i: Int) = eventBuilder.setStatus(i) - def setLevel(s: String) = eventBuilder.setLevel(s) - def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) - def setArtist(s: String) = songBuilder.setArtist(s) - def setTitle(s: String) = songBuilder.setTitle(s) - def setDuration(d: Float) = songBuilder.setDuration(d) - def setUserDetails(m: Map[String,Any]) = eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) - def setTag(s: String) = eventBuilder.setTag(s) - def start() = { - eventBuilder = Event.newBuilder(eventBuilder) - songBuilder = song.newBuilder(songBuilder) - } - def end() = { - eventBuilder.setSongProperties(songBuilder.build()) - val e = eventBuilder.build() - dataFileWriter.append(e) - } - - } - - val builder = Event.newBuilder() - val songBuilder = com.interana.eventsim.song.newBuilder() + val writer: Object with EventWriter = if (Main.useAvro) new AvroWriter(stream) else new JSONWriter(stream) def writeEvent() = { val showUserDetails = ConfigFromFile.showUserWithState(session.currentState.auth) @@ -205,18 +79,5 @@ class User(val alpha: Double, def nextEventTimeStampString = tsToString(this.session.nextEventTimeStamp.get) - def mkString = props.+( - "alpha" -> alpha, - "beta" -> beta, - "startTime" -> tsToString(startTime), - "initialSessionStates" -> initialSessionStates, - "nextEventTimeStamp" -> tsToString(session.nextEventTimeStamp.get) , - "sessionId" -> session.sessionId , - "userId" -> userId , - "currentState" -> session.currentState) } -object User { - protected val jsonFactory = new JsonFactory() - jsonFactory.setRootValueSeparator("") -} \ No newline at end of file From e254779587709b5d8a60eedba78eb2a73cbaf381 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Sun, 13 Sep 2015 21:29:49 -0700 Subject: [PATCH 04/14] error in continous mode --- src/main/scala/com/interana/eventsim/Main.scala | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/scala/com/interana/eventsim/Main.scala b/src/main/scala/com/interana/eventsim/Main.scala index 1270b395..f12f033a 100644 --- a/src/main/scala/com/interana/eventsim/Main.scala +++ b/src/main/scala/com/interana/eventsim/Main.scala @@ -201,7 +201,10 @@ object Main extends App { if (realTime) { val now = LocalDateTime.now() - val dif = Duration.between(now, clock) + val dif = Duration.between(clock, now) + + // System.err.println("now = " + now + ", clock = " + clock, " dif = " + dif) + if (dif.isNegative) Thread.sleep(-dif.getSeconds) } From 03170b4036f6bb4d7a45b59306f01801559e4711 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Tue, 22 Sep 2015 14:24:34 -0700 Subject: [PATCH 05/14] changed to locations based on ZCTAs, with lat/lon --- data/CBSA-EST2013-alldata.csv | 2762 - data/Gaz_zcta_national.txt | 33121 ++++++++++++ data/US.txt | 43633 ++++++++++++++++ .../scala/com/interana/eventsim/Main.scala | 3 - .../buildin/RandomLocationGenerator.scala | 55 +- .../eventsim/buildin/UserProperties.scala | 6 +- 6 files changed, 76812 insertions(+), 2768 deletions(-) delete mode 100644 data/CBSA-EST2013-alldata.csv create mode 100755 data/Gaz_zcta_national.txt create mode 100755 data/US.txt diff --git a/data/CBSA-EST2013-alldata.csv b/data/CBSA-EST2013-alldata.csv deleted file mode 100644 index c12be317..00000000 --- a/data/CBSA-EST2013-alldata.csv +++ /dev/null @@ -1,2762 +0,0 @@ -CBSA,MDIV,STCOU,NAME,LSAD,CENSUS2010POP,ESTIMATESBASE2010,POPESTIMATE2010,POPESTIMATE2011,POPESTIMATE2012,POPESTIMATE2013,POPESTIMATE2014,NPOPCHG2010,NPOPCHG2011,NPOPCHG2012,NPOPCHG2013,NPOPCHG2014,BIRTHS2010,BIRTHS2011,BIRTHS2012,BIRTHS2013,BIRTHS2014,DEATHS2010,DEATHS2011,DEATHS2012,DEATHS2013,DEATHS2014,NATURALINC2010,NATURALINC2011,NATURALINC2012,NATURALINC2013,NATURALINC2014,INTERNATIONALMIG2010,INTERNATIONALMIG2011,INTERNATIONALMIG2012,INTERNATIONALMIG2013,INTERNATIONALMIG2014,DOMESTICMIG2010,DOMESTICMIG2011,DOMESTICMIG2012,DOMESTICMIG2013,DOMESTICMIG2014,NETMIG2010,NETMIG2011,NETMIG2012,NETMIG2013,NETMIG2014,RESIDUAL2010,RESIDUAL2011,RESIDUAL2012,RESIDUAL2013,RESIDUAL2014 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,Metropolitan Statistical Area,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10180,,,"Abilene, TX",Metropolitan Statistical Area,165252,165252,165642,166637,167529,167452,168592,390,995,892,-77,1140,574,2293,2357,2359,2351,391,1501,1585,1642,1655,183,792,772,717,696,90,193,464,336,291,118,8,-345,-1161,138,208,201,119,-825,429,-1,2,1,31,15 -10180,,48059,"Callahan County, TX",County or equivalent,13544,13544,13516,13534,13515,13518,13513,-28,18,-19,3,-5,29,120,122,132,134,60,158,142,171,171,-31,-38,-20,-39,-37,0,4,5,5,5,5,40,-1,42,34,5,44,4,47,39,-2,12,-3,-5,-7 -10180,,48253,"Jones County, TX",County or equivalent,20202,20198,20263,20281,19910,20068,19936,65,18,-371,158,-132,65,155,191,176,185,21,213,173,186,172,44,-58,18,-10,13,3,14,14,16,16,21,45,-411,186,-160,24,59,-397,202,-144,-3,17,8,-34,-1 -10180,,48441,"Taylor County, TX",County or equivalent,131506,131510,131863,132822,134104,133866,135143,353,959,1282,-238,1277,480,2018,2044,2051,2032,310,1130,1270,1285,1312,170,888,774,766,720,87,175,445,315,270,92,-77,67,-1389,264,179,98,512,-1074,534,4,-27,-4,70,23 -10420,,,"Akron, OH",Metropolitan Statistical Area,703200,703207,702967,702881,702203,703210,703825,-240,-86,-678,1007,615,1830,7577,7551,7666,7604,1591,6662,7001,6862,6924,239,915,550,804,680,259,1022,1062,1130,1126,-729,-1752,-2301,-966,-742,-470,-730,-1239,164,384,-9,-271,11,39,-449 -10420,,39133,"Portage County, OH",County or equivalent,161419,161421,161355,161770,161336,161423,161882,-66,415,-434,87,459,323,1510,1384,1395,1369,331,1289,1357,1350,1329,-8,221,27,45,40,68,279,285,306,305,-125,-2,-764,-325,175,-57,277,-479,-19,480,-1,-83,18,61,-61 -10420,,39153,"Summit County, OH",County or equivalent,541781,541786,541612,541111,540867,541787,541943,-174,-501,-244,920,156,1507,6067,6167,6271,6235,1260,5373,5644,5512,5595,247,694,523,759,640,191,743,777,824,821,-604,-1750,-1537,-641,-917,-413,-1007,-760,183,-96,-8,-188,-7,-22,-388 -10500,,,"Albany, GA",Metropolitan Statistical Area,157308,157500,157663,157791,157355,155790,154925,163,128,-436,-1565,-865,540,2336,2182,2163,2093,410,1241,1395,1481,1421,130,1095,787,682,672,19,79,116,101,95,16,-1136,-1359,-2310,-1617,35,-1057,-1243,-2209,-1522,-2,90,20,-38,-15 -10500,,13007,"Baker County, GA",County or equivalent,3451,3451,3443,3323,3369,3321,3255,-8,-120,46,-48,-66,12,35,37,27,28,2,27,16,13,25,10,8,21,14,3,0,1,1,1,1,-18,-134,26,-39,-79,-18,-133,27,-38,-78,0,5,-2,-24,9 -10500,,13095,"Dougherty County, GA",County or equivalent,94565,94565,94530,94839,94542,93130,92407,-35,309,-297,-1412,-723,344,1570,1385,1377,1337,267,760,893,957,897,77,810,492,420,440,16,69,106,88,82,-128,-647,-906,-1887,-1216,-112,-578,-800,-1799,-1134,0,77,11,-33,-29 -10500,,13177,"Lee County, GA",County or equivalent,28298,28298,28431,28614,28727,29061,29191,133,183,113,334,130,81,363,376,366,366,69,149,170,209,198,12,214,206,157,168,3,11,11,13,13,116,-43,-110,161,-67,119,-32,-99,174,-54,2,1,6,3,16 -10500,,13273,"Terrell County, GA",County or equivalent,9315,9507,9525,9398,9247,9214,9132,18,-127,-151,-33,-82,37,128,138,125,129,7,102,99,94,93,30,26,39,31,36,0,1,1,1,1,-10,-158,-194,-69,-118,-10,-157,-193,-68,-117,-2,4,3,4,-1 -10500,,13321,"Worth County, GA",County or equivalent,21679,21679,21734,21617,21470,21064,20940,55,-117,-147,-406,-124,66,240,246,268,233,65,203,217,208,208,1,37,29,60,25,0,-3,-3,-2,-2,56,-154,-175,-476,-137,56,-157,-178,-478,-139,-2,3,2,12,-10 -10540,,,"Albany, OR",Metropolitan Statistical Area,116672,116672,116871,118117,118360,118644,119356,199,1246,243,284,712,369,1450,1445,1425,1412,260,1127,1125,1121,1186,109,323,320,304,226,13,43,36,42,44,80,876,-108,-100,425,93,919,-72,-58,469,-3,4,-5,38,17 -10540,,41043,"Linn County, OR",County or equivalent,116672,116672,116871,118117,118360,118644,119356,199,1246,243,284,712,369,1450,1445,1425,1412,260,1127,1125,1121,1186,109,323,320,304,226,13,43,36,42,44,80,876,-108,-100,425,93,919,-72,-58,469,-3,4,-5,38,17 -10580,,,"Albany-Schenectady-Troy, NY",Metropolitan Statistical Area,870716,870720,870954,872966,875270,878479,880167,234,2012,2304,3209,1688,2252,9103,9115,9195,9186,1794,7625,7652,7551,7735,458,1478,1463,1644,1451,536,2154,2432,2485,2447,-737,-1543,-1540,-769,-1968,-201,611,892,1716,479,-23,-77,-51,-151,-242 -10580,,36001,"Albany County, NY",County or equivalent,304204,304208,304005,304840,306186,307418,308171,-203,835,1346,1232,753,773,3093,3125,3147,3124,566,2687,2802,2581,2659,207,406,323,566,465,277,1184,1216,1300,1300,-686,-743,-149,-523,-825,-409,441,1067,777,475,-1,-12,-44,-111,-187 -10580,,36083,"Rensselaer County, NY",County or equivalent,159429,159427,159346,159654,159572,159653,159774,-81,308,-82,81,121,401,1715,1677,1606,1616,417,1481,1456,1540,1522,-16,234,221,66,94,74,298,316,333,334,-137,-161,-627,-342,-254,-63,137,-311,-9,80,-2,-63,8,24,-53 -10580,,36091,"Saratoga County, NY",County or equivalent,219607,219613,220018,221088,222413,224119,224921,405,1070,1325,1706,802,559,2170,2192,2217,2199,365,1675,1628,1751,1807,194,495,564,466,392,89,244,458,394,355,130,388,326,781,33,219,632,784,1175,388,-8,-57,-23,65,22 -10580,,36093,"Schenectady County, NY",County or equivalent,154727,154725,154919,154746,155051,155440,155735,194,-173,305,389,295,460,1825,1856,1967,1996,358,1516,1514,1426,1470,102,309,342,541,526,94,412,425,441,441,2,-960,-457,-536,-612,96,-548,-32,-95,-171,-4,66,-5,-57,-60 -10580,,36095,"Schoharie County, NY",County or equivalent,32749,32747,32666,32638,32048,31849,31566,-81,-28,-590,-199,-283,59,300,265,258,251,88,266,252,253,277,-29,34,13,5,-26,2,16,17,17,17,-46,-67,-633,-149,-310,-44,-51,-616,-132,-293,-8,-11,13,-72,36 -10740,,,"Albuquerque, NM",Metropolitan Statistical Area,887077,887075,889649,897091,901016,903345,904587,2574,7442,3925,2329,1242,2820,11173,11018,10775,10774,1423,6712,6614,7080,7214,1397,4461,4404,3695,3560,222,1005,1144,1153,1159,917,2149,-1566,-2809,-3423,1139,3154,-422,-1656,-2264,38,-173,-57,290,-54 -10740,,35001,"Bernalillo County, NM",County or equivalent,662564,662555,664110,669604,672995,674883,675551,1555,5494,3391,1888,668,2151,8483,8513,8295,8293,1161,5043,4980,5369,5465,990,3440,3533,2926,2828,196,914,1064,1056,1053,362,1383,-1164,-2249,-3041,558,2297,-100,-1193,-1988,7,-243,-42,155,-172 -10740,,35043,"Sandoval County, NM",County or equivalent,131561,131563,132367,134183,135319,136479,137608,804,1816,1136,1160,1129,395,1561,1436,1480,1470,160,946,881,961,972,235,615,555,519,498,12,48,53,52,56,523,1043,554,503,450,535,1091,607,555,506,34,110,-26,86,125 -10740,,35057,"Torrance County, NM",County or equivalent,16383,16383,16380,16411,16072,15713,15611,-3,31,-339,-359,-102,43,172,171,147,153,12,140,164,133,143,31,32,7,14,10,7,25,16,23,23,-36,-22,-370,-404,-128,-29,3,-354,-381,-105,-5,-4,8,8,-7 -10740,,35061,"Valencia County, NM",County or equivalent,76569,76574,76792,76893,76630,76270,75817,218,101,-263,-360,-453,231,957,898,853,858,90,583,589,617,634,141,374,309,236,224,7,18,11,22,27,68,-255,-586,-659,-704,75,-237,-575,-637,-677,2,-36,3,41,0 -10780,,,"Alexandria, LA",Metropolitan Statistical Area,153922,153922,154127,154419,154487,154903,154872,205,292,68,416,-31,495,2037,2025,2039,2014,373,1480,1586,1650,1557,122,557,439,389,457,34,148,169,165,165,54,-329,-540,-121,-627,88,-181,-371,44,-462,-5,-84,0,-17,-26 -10780,,22043,"Grant Parish, LA",County or equivalent,22309,22309,22340,22364,22376,22351,22384,31,24,12,-25,33,61,239,255,246,249,79,195,208,210,172,-18,44,47,36,77,4,13,11,14,14,44,-27,-44,-80,-61,48,-14,-33,-66,-47,1,-6,-2,5,3 -10780,,22079,"Rapides Parish, LA",County or equivalent,131613,131613,131787,132055,132111,132552,132488,174,268,56,441,-64,434,1798,1770,1793,1765,294,1285,1378,1440,1385,140,513,392,353,380,30,135,158,151,151,10,-302,-496,-41,-566,40,-167,-338,110,-415,-6,-78,2,-22,-29 -10900,,,"Allentown-Bethlehem-Easton, PA-NJ",Metropolitan Statistical Area,821173,821303,822083,825229,827109,827044,829835,780,3146,1880,-65,2791,2127,8716,8554,8496,8630,1961,7862,7590,7708,7679,166,854,964,788,951,496,2367,2361,2427,2429,165,9,-1432,-3532,-309,661,2376,929,-1105,2120,-47,-84,-13,252,-280 -10900,,34041,"Warren County, NJ",County or equivalent,108692,108692,108676,108138,107550,106839,106917,-16,-538,-588,-711,78,238,1003,894,777,899,259,936,866,854,856,-21,67,28,-77,43,50,199,196,214,214,-42,-823,-822,-805,-170,8,-624,-626,-591,44,-3,19,10,-43,-9 -10900,,42025,"Carbon County, PA",County or equivalent,65249,65250,65207,65106,64927,64690,64441,-43,-101,-179,-237,-249,132,609,562,579,562,147,860,776,756,768,-15,-251,-214,-177,-206,-3,2,3,6,6,-15,150,37,-70,-20,-18,152,40,-64,-14,-10,-2,-5,4,-29 -10900,,42077,"Lehigh County, PA",County or equivalent,349497,349626,350172,353653,355269,355768,357823,546,3481,1616,499,2055,1013,4173,4088,4106,4101,846,3240,3252,3318,3237,167,933,836,788,864,301,1551,1531,1561,1561,94,1025,-751,-1939,-252,395,2576,780,-378,1309,-16,-28,0,89,-118 -10900,,42095,"Northampton County, PA",County or equivalent,297735,297735,298028,298332,299363,299747,300654,293,304,1031,384,907,744,2931,3010,3034,3068,709,2826,2696,2780,2818,35,105,314,254,250,148,615,631,646,648,128,-343,104,-718,133,276,272,735,-72,781,-18,-73,-18,202,-124 -11020,,,"Altoona, PA",Metropolitan Statistical Area,127089,127078,127030,127175,126999,126379,125955,-48,145,-176,-620,-424,342,1386,1334,1325,1327,389,1595,1497,1643,1627,-47,-209,-163,-318,-300,10,33,35,37,37,-3,263,-31,-392,-186,7,296,4,-355,-149,-8,58,-17,53,25 -11020,,42013,"Blair County, PA",County or equivalent,127089,127078,127030,127175,126999,126379,125955,-48,145,-176,-620,-424,342,1386,1334,1325,1327,389,1595,1497,1643,1627,-47,-209,-163,-318,-300,10,33,35,37,37,-3,263,-31,-392,-186,7,296,4,-355,-149,-8,58,-17,53,25 -11100,,,"Amarillo, TX",Metropolitan Statistical Area,251933,251933,252696,255988,257755,258833,259885,763,3292,1767,1078,1052,909,3787,3704,3908,3793,586,2151,2196,2271,2212,323,1636,1508,1637,1581,134,629,622,676,682,292,1050,-377,-1306,-1177,426,1679,245,-630,-495,14,-23,14,71,-34 -11100,,48011,"Armstrong County, TX",County or equivalent,1901,1901,1902,1934,1948,1957,1955,1,32,14,9,-2,8,18,21,26,28,2,27,28,30,20,6,-9,-7,-4,8,0,5,5,5,5,-4,33,16,6,-15,-4,38,21,11,-10,-1,3,0,2,0 -11100,,48065,"Carson County, TX",County or equivalent,6182,6182,6164,6270,6109,5986,6013,-18,106,-161,-123,27,15,64,56,62,54,19,67,79,52,61,-4,-3,-23,10,-7,0,0,0,0,0,-16,106,-133,-108,32,-16,106,-133,-108,32,2,3,-5,-25,2 -11100,,48359,"Oldham County, TX",County or equivalent,2052,2052,2050,2075,2047,2100,2070,-2,25,-28,53,-30,5,15,20,26,23,5,15,13,16,9,0,0,7,10,14,0,0,0,0,0,-2,25,-34,43,-47,-2,25,-34,43,-47,0,0,-1,0,3 -11100,,48375,"Potter County, TX",County or equivalent,121073,121073,121390,122350,122754,122146,121627,317,960,404,-608,-519,507,2043,2039,2100,2027,297,1132,1146,1179,1136,210,911,893,921,891,101,474,470,511,515,8,-389,-971,-2107,-1904,109,85,-501,-1596,-1389,-2,-36,12,67,-21 -11100,,48381,"Randall County, TX",County or equivalent,120725,120725,121190,123359,124897,126644,128220,465,2169,1538,1747,1576,374,1647,1568,1694,1661,263,910,930,994,986,111,737,638,700,675,33,150,147,160,162,306,1275,745,860,757,339,1425,892,1020,919,15,7,8,27,-18 -11180,,,"Ames, IA",Metropolitan Statistical Area,89542,89542,89596,90896,91721,93410,94073,54,1300,825,1689,663,221,991,905,963,938,86,494,436,452,492,135,497,469,511,446,134,625,636,694,693,-221,207,-280,510,-446,-87,832,356,1204,247,6,-29,0,-26,-30 -11180,,19169,"Story County, IA",County or equivalent,89542,89542,89596,90896,91721,93410,94073,54,1300,825,1689,663,221,991,905,963,938,86,494,436,452,492,135,497,469,511,446,134,625,636,694,693,-221,207,-280,510,-446,-87,832,356,1204,247,6,-29,0,-26,-30 -11260,,,"Anchorage, AK",Metropolitan Statistical Area,380821,380821,383120,388140,392431,397521,398892,2299,5020,4291,5090,1371,1450,6118,5901,6029,6040,422,2012,2030,2216,2207,1028,4106,3871,3813,3833,348,879,1608,1348,1238,886,61,-1190,93,-3879,1234,940,418,1441,-2641,37,-26,2,-164,179 -11260,,2020,"Anchorage Municipality, AK",County or equivalent,291826,291826,293337,296282,298633,301629,301010,1511,2945,2351,2996,-619,1105,4782,4591,4691,4686,321,1496,1511,1691,1698,784,3286,3080,3000,2988,330,854,1540,1297,1197,386,-1122,-2254,-1125,-5001,716,-268,-714,172,-3804,11,-73,-15,-176,197 -11260,,2170,"Matanuska-Susitna Borough, AK",County or equivalent,88995,88995,89783,91858,93798,95892,97882,788,2075,1940,2094,1990,345,1336,1310,1338,1354,101,516,519,525,509,244,820,791,813,845,18,25,68,51,41,500,1183,1064,1218,1122,518,1208,1132,1269,1163,26,47,17,12,-18 -11460,,,"Ann Arbor, MI",Metropolitan Statistical Area,344791,345066,345525,349150,351301,354418,356874,459,3625,2151,3117,2456,945,3824,3780,3664,3690,541,2052,2074,2064,2139,404,1772,1706,1600,1551,436,1899,1948,2119,2119,-396,48,-1522,-635,-1090,40,1947,426,1484,1029,15,-94,19,33,-124 -11460,,26161,"Washtenaw County, MI",County or equivalent,344791,345066,345525,349150,351301,354418,356874,459,3625,2151,3117,2456,945,3824,3780,3664,3690,541,2052,2074,2064,2139,404,1772,1706,1600,1551,436,1899,1948,2119,2119,-396,48,-1522,-635,-1090,40,1947,426,1484,1029,15,-94,19,33,-124 -11500,,,"Anniston-Oxford-Jacksonville, AL",Metropolitan Statistical Area,118572,118586,118443,117760,117264,116547,115916,-143,-683,-496,-717,-631,323,1385,1355,1327,1292,311,1327,1361,1418,1401,12,58,-6,-91,-109,6,27,43,33,31,-157,-726,-534,-643,-471,-151,-699,-491,-610,-440,-4,-42,1,-16,-82 -11500,,1015,"Calhoun County, AL",County or equivalent,118572,118586,118443,117760,117264,116547,115916,-143,-683,-496,-717,-631,323,1385,1355,1327,1292,311,1327,1361,1418,1401,12,58,-6,-91,-109,6,27,43,33,31,-157,-726,-534,-643,-471,-151,-699,-491,-610,-440,-4,-42,1,-16,-82 -11540,,,"Appleton, WI",Metropolitan Statistical Area,225666,225666,225850,227411,228581,229869,231497,184,1561,1170,1288,1628,655,2937,2841,2785,2808,363,1531,1544,1542,1551,292,1406,1297,1243,1257,42,184,183,192,196,-149,12,-310,-222,228,-107,196,-127,-30,424,-1,-41,0,75,-53 -11540,,55015,"Calumet County, WI",County or equivalent,48971,48971,48989,49684,49704,49644,49491,18,695,20,-60,-153,138,588,599,531,558,54,278,297,351,338,84,310,302,180,220,3,19,18,18,18,-66,323,-306,-269,-387,-63,342,-288,-251,-369,-3,43,6,11,-4 -11540,,55087,"Outagamie County, WI",County or equivalent,176695,176695,176861,177727,178877,180225,182006,166,866,1150,1348,1781,517,2349,2242,2254,2250,309,1253,1247,1191,1213,208,1096,995,1063,1037,39,165,165,174,178,-83,-311,-4,47,615,-44,-146,161,221,793,2,-84,-6,64,-49 -11700,,,"Asheville, NC",Metropolitan Statistical Area,424858,424859,425465,428436,432142,437661,442316,606,2971,3706,5519,4655,1079,4350,4392,4436,4486,1135,4517,4409,4735,4721,-56,-167,-17,-299,-235,87,362,352,401,413,560,2701,3370,5151,4113,647,3063,3722,5552,4526,15,75,1,266,364 -11700,,37021,"Buncombe County, NC",County or equivalent,238318,238307,238832,241416,244363,247846,250539,525,2584,2947,3483,2693,669,2566,2552,2660,2666,593,2364,2272,2458,2481,76,202,280,202,185,58,250,244,276,282,373,2029,2413,2807,1989,431,2279,2657,3083,2271,18,103,10,198,237 -11700,,37087,"Haywood County, NC",County or equivalent,59036,59036,58950,58693,58782,59163,59471,-86,-257,89,381,308,124,529,579,547,551,193,653,701,701,698,-69,-124,-122,-154,-147,0,-2,1,2,3,-17,-121,215,487,433,-17,-123,216,489,436,0,-10,-5,46,19 -11700,,37089,"Henderson County, NC",County or equivalent,106740,106742,106909,107504,108115,109531,111149,167,595,611,1416,1618,250,1077,1078,1031,1070,281,1270,1249,1355,1313,-31,-193,-171,-324,-243,25,104,98,113,118,176,702,686,1601,1623,201,806,784,1714,1741,-3,-18,-2,26,120 -11700,,37115,"Madison County, NC",County or equivalent,20764,20774,20774,20823,20882,21121,21157,0,49,59,239,36,36,178,183,198,199,68,230,187,221,229,-32,-52,-4,-23,-30,4,10,9,10,10,28,91,56,256,68,32,101,65,266,78,0,0,-2,-4,-12 -12020,,,"Athens-Clarke County, GA",Metropolitan Statistical Area,192541,192541,193476,194658,196405,197884,199016,935,1182,1747,1479,1132,623,2246,2201,2215,2242,349,1260,1229,1356,1291,274,986,972,859,951,103,456,434,480,487,524,-306,316,139,-387,627,150,750,619,100,34,46,25,1,81 -12020,,13059,"Clarke County, GA",County or equivalent,116714,116707,117484,118509,120270,121206,120938,777,1025,1761,936,-268,382,1455,1436,1428,1465,198,636,625,732,721,184,819,811,696,744,94,409,392,431,437,453,-192,536,-215,-1469,547,217,928,216,-1032,46,-11,22,24,20 -12020,,13195,"Madison County, GA",County or equivalent,28120,28120,28155,28110,28018,28116,28312,35,-45,-92,98,196,100,324,300,320,321,42,286,284,284,257,58,38,16,36,64,2,18,15,18,18,-19,-115,-124,65,126,-17,-97,-109,83,144,-6,14,1,-21,-12 -12020,,13219,"Oconee County, GA",County or equivalent,32808,32815,32927,33255,33520,34050,35093,112,328,265,530,1043,97,309,316,324,309,70,211,198,216,184,27,98,118,108,125,6,23,21,24,25,83,192,129,408,841,89,215,150,432,866,-4,15,-3,-10,52 -12020,,13221,"Oglethorpe County, GA",County or equivalent,14899,14899,14910,14784,14597,14512,14673,11,-126,-187,-85,161,44,158,149,143,147,39,127,122,124,129,5,31,27,19,18,1,6,6,7,7,7,-191,-225,-119,115,8,-185,-219,-112,122,-2,28,5,8,21 -12060,,,"Atlanta-Sandy Springs-Roswell, GA",Metropolitan Statistical Area,5286728,5286727,5304207,5374825,5456472,5525432,5614323,17480,70618,81647,68960,88891,18638,73837,72556,71753,71724,7711,32040,31349,34204,35043,10927,41797,41207,37549,36681,3744,17490,17003,18664,18816,2514,9338,23294,12061,32294,6258,26828,40297,30725,51110,295,1993,143,686,1100 -12060,,13013,"Barrow County, GA",County or equivalent,69367,69367,69681,69846,70171,71425,73240,314,165,325,1254,1815,253,1073,1083,1046,1069,139,514,494,489,534,114,559,589,557,535,20,76,68,77,78,171,-489,-327,628,1123,191,-413,-259,705,1201,9,19,-5,-8,79 -12060,,13015,"Bartow County, GA",County or equivalent,100157,100157,100113,100242,100477,101289,101736,-44,129,235,812,447,328,1279,1239,1290,1277,234,833,759,862,846,94,446,480,428,431,17,74,69,80,82,-158,-408,-308,249,-70,-141,-334,-239,329,12,3,17,-6,55,4 -12060,,13035,"Butts County, GA",County or equivalent,23655,23655,23739,23562,23454,23222,23368,84,-177,-108,-232,146,69,281,279,289,294,40,248,213,272,258,29,33,66,17,36,3,8,1,2,2,48,-215,-178,-209,110,51,-207,-177,-207,112,4,-3,3,-42,-2 -12060,,13045,"Carroll County, GA",County or equivalent,110527,110591,110704,110722,111453,112388,114093,113,18,731,935,1705,394,1494,1514,1410,1474,187,986,863,1009,983,207,508,651,401,491,32,134,128,137,137,-129,-587,-29,387,1067,-97,-453,99,524,1204,3,-37,-19,10,10 -12060,,13057,"Cherokee County, GA",County or equivalent,214346,214346,215216,217770,220914,224869,230985,870,2554,3144,3955,6116,689,2853,2787,2723,2707,260,1210,1224,1249,1232,429,1643,1563,1474,1475,60,252,238,258,261,388,615,1384,2294,4032,448,867,1622,2552,4293,-7,44,-41,-71,348 -12060,,13063,"Clayton County, GA",County or equivalent,259424,259467,259824,262643,266253,264843,267542,357,2819,3610,-1410,2699,1117,4375,4174,4112,3806,388,1431,1396,1562,1561,729,2944,2778,2550,2245,149,718,716,764,778,-541,-950,142,-4764,-282,-392,-232,858,-4000,496,20,107,-26,40,-42 -12060,,13067,"Cobb County, GA",County or equivalent,688078,688076,689692,697682,708036,718208,730981,1616,7990,10354,10172,12773,2345,9481,9486,9280,9471,931,3744,3648,3937,4086,1414,5737,5838,5343,5385,541,2568,2505,2717,2734,-349,-206,2052,1814,4720,192,2362,4557,4531,7454,10,-109,-41,298,-66 -12060,,13077,"Coweta County, GA",County or equivalent,127317,127317,127946,129480,130878,133222,135571,629,1534,1398,2344,2349,444,1635,1587,1666,1632,171,876,812,936,923,273,759,775,730,709,29,124,118,142,148,308,648,530,1371,1412,337,772,648,1513,1560,19,3,-25,101,80 -12060,,13085,"Dawson County, GA",County or equivalent,22330,22339,22300,22214,22376,22651,22957,-39,-86,162,275,306,67,243,222,248,251,31,165,175,159,163,36,78,47,89,88,-3,-11,-9,-9,-8,-75,-168,130,178,202,-78,-179,121,169,194,3,15,-6,17,24 -12060,,13089,"DeKalb County, GA",County or equivalent,691893,691894,692574,697953,708304,714935,722161,680,5379,10351,6631,7226,2754,11046,11009,10924,10784,983,4214,4153,4356,4351,1771,6832,6856,6568,6433,887,4173,4096,4517,4537,-2070,-6020,-554,-4272,-3670,-1183,-1847,3542,245,867,92,394,-47,-182,-74 -12060,,13097,"Douglas County, GA",County or equivalent,132403,132339,132644,133280,133926,136560,138776,305,636,646,2634,2216,437,1750,1762,1750,1726,155,828,842,864,926,282,922,920,886,800,54,256,257,290,292,-26,-569,-544,1382,1120,28,-313,-287,1672,1412,-5,27,13,76,4 -12060,,13113,"Fayette County, GA",County or equivalent,106567,106566,106990,107211,107432,108355,109664,424,221,221,923,1309,193,778,806,810,827,229,764,667,788,775,-36,14,139,22,52,47,192,203,209,210,448,-13,-139,660,976,495,179,64,869,1186,-35,28,18,32,71 -12060,,13117,"Forsyth County, GA",County or equivalent,175511,175511,176737,182392,187826,195312,204302,1226,5655,5434,7486,8990,580,2226,2190,2163,2161,224,824,912,956,1004,356,1402,1278,1207,1157,110,481,458,502,510,735,3375,3697,5943,6932,845,3856,4155,6445,7442,25,397,1,-166,391 -12060,,13121,"Fulton County, GA",County or equivalent,920581,920579,926149,950359,977950,984721,996319,5570,24210,27591,6771,11598,3264,13031,12686,12677,12844,1348,5603,5469,6212,6766,1916,7428,7217,6465,6078,825,3891,3837,4220,4246,2644,12464,16085,-4336,1469,3469,16355,19922,-116,5715,185,427,452,422,-195 -12060,,13135,"Gwinnett County, GA",County or equivalent,805321,805324,808374,824981,840221,858956,877922,3050,16607,15240,18735,18966,3012,11722,11461,11326,11185,912,3475,3432,3843,3929,2100,8247,8029,7483,7256,813,3842,3595,4014,4056,156,4235,3723,7104,7510,969,8077,7318,11118,11566,-19,283,-107,134,144 -12060,,13143,"Haralson County, GA",County or equivalent,28780,28780,28788,28515,28388,28482,28641,8,-273,-127,94,159,94,377,336,341,337,100,385,325,297,316,-6,-8,11,44,21,0,4,5,7,7,18,-285,-143,27,147,18,-281,-138,34,154,-4,16,0,16,-16 -12060,,13149,"Heard County, GA",County or equivalent,11834,11834,11851,11711,11644,11561,11603,17,-140,-67,-83,42,28,128,132,137,122,39,125,119,100,105,-11,3,13,37,17,0,0,0,0,0,31,-152,-81,-111,30,31,-152,-81,-111,30,-3,9,1,-9,-5 -12060,,13151,"Henry County, GA",County or equivalent,203922,203879,205206,207071,208443,210755,213869,1327,1865,1372,2312,3114,642,2450,2419,2372,2537,211,1165,1303,1322,1344,431,1285,1116,1050,1193,77,268,281,281,283,786,307,-20,983,1498,863,575,261,1264,1781,33,5,-5,-2,140 -12060,,13159,"Jasper County, GA",County or equivalent,13900,13900,13885,13778,13596,13543,13432,-15,-107,-182,-53,-111,43,197,178,173,155,47,122,131,115,123,-4,75,47,58,32,0,-2,1,2,2,-9,-193,-233,-120,-149,-9,-195,-232,-118,-147,-2,13,3,7,4 -12060,,13171,"Lamar County, GA",County or equivalent,18317,18317,18268,18178,18039,17946,18207,-49,-90,-139,-93,261,46,203,193,192,183,41,193,190,192,202,5,10,3,0,-19,1,6,6,7,7,-57,-118,-155,-103,278,-56,-112,-149,-96,285,2,12,7,3,-5 -12060,,13199,"Meriwether County, GA",County or equivalent,21992,21992,21843,21606,21316,21207,21198,-149,-237,-290,-109,-9,66,245,283,221,222,86,252,228,252,243,-20,-7,55,-31,-21,1,2,2,2,2,-136,-224,-346,-90,25,-135,-222,-344,-88,27,6,-8,-1,10,-15 -12060,,13211,"Morgan County, GA",County or equivalent,17868,17868,17895,17906,17823,17752,17956,27,11,-83,-71,204,52,195,184,165,169,24,192,170,159,156,28,3,14,6,13,0,2,0,0,0,-1,0,-100,-94,188,-1,2,-100,-94,188,0,6,3,17,3 -12060,,13217,"Newton County, GA",County or equivalent,99958,99958,100160,100464,101016,102201,103675,202,304,552,1185,1474,334,1377,1299,1322,1313,221,731,716,849,802,113,646,583,473,511,5,42,41,45,45,98,-402,-60,696,897,103,-360,-19,741,942,-14,18,-12,-29,21 -12060,,13223,"Paulding County, GA",County or equivalent,142324,142324,142763,143829,145066,147181,148987,439,1066,1237,2115,1806,506,1864,1888,1856,1778,214,697,710,848,837,292,1167,1178,1008,941,19,136,151,142,143,129,-424,-60,970,651,148,-288,91,1112,794,-1,187,-32,-5,71 -12060,,13227,"Pickens County, GA",County or equivalent,29431,29422,29458,29468,29316,29509,29997,36,10,-152,193,488,74,308,290,293,284,51,290,293,308,307,23,18,-3,-15,-23,2,15,17,19,19,13,-59,-168,171,483,15,-44,-151,190,502,-2,36,2,18,9 -12060,,13231,"Pike County, GA",County or equivalent,17869,17869,17918,17802,17804,17796,17784,49,-116,2,-8,-12,51,167,154,163,167,19,148,169,147,155,32,19,-15,16,12,0,3,2,2,2,20,-161,19,-20,-15,20,-158,21,-18,-13,-3,23,-4,-6,-11 -12060,,13247,"Rockdale County, GA",County or equivalent,85215,85215,85425,85601,85684,86815,87754,210,176,83,1131,939,254,1067,998,946,1019,96,584,572,678,638,158,483,426,268,381,33,132,117,131,135,16,-452,-483,743,412,49,-320,-366,874,547,3,13,23,-11,11 -12060,,13255,"Spalding County, GA",County or equivalent,64073,64073,64085,64118,63799,63741,63988,12,33,-319,-58,247,237,910,830,816,793,187,676,676,687,716,50,234,154,129,77,17,73,71,73,74,-50,-332,-553,-238,73,-33,-259,-482,-165,147,-5,58,9,-22,23 -12060,,13297,"Walton County, GA",County or equivalent,83768,83768,83979,84441,84867,85987,87615,211,462,426,1120,1628,265,1082,1087,1042,1137,143,765,688,756,762,122,317,399,286,375,5,31,29,33,34,106,121,13,818,1125,111,152,42,851,1159,-22,-7,-15,-17,94 -12100,,,"Atlantic City-Hammonton, NJ",Metropolitan Statistical Area,274549,274549,274762,274923,275566,276167,275209,213,161,643,601,-958,802,3412,3430,3372,3315,546,2566,2432,2574,2637,256,846,998,798,678,351,1416,1427,1507,1506,-384,-2002,-1813,-1648,-3052,-33,-586,-386,-141,-1546,-10,-99,31,-56,-90 -12100,,34001,"Atlantic County, NJ",County or equivalent,274549,274549,274762,274923,275566,276167,275209,213,161,643,601,-958,802,3412,3430,3372,3315,546,2566,2432,2574,2637,256,846,998,798,678,351,1416,1427,1507,1506,-384,-2002,-1813,-1648,-3052,-33,-586,-386,-141,-1546,-10,-99,31,-56,-90 -12220,,,"Auburn-Opelika, AL",Metropolitan Statistical Area,140247,140296,140799,144146,148040,151708,154255,503,3347,3894,3668,2547,433,1630,1660,1808,1837,237,804,879,1043,1006,196,826,781,765,831,132,551,629,624,611,170,1918,2424,2221,1034,302,2469,3053,2845,1645,5,52,60,58,71 -12220,,1081,"Lee County, AL",County or equivalent,140247,140296,140799,144146,148040,151708,154255,503,3347,3894,3668,2547,433,1630,1660,1808,1837,237,804,879,1043,1006,196,826,781,765,831,132,551,629,624,611,170,1918,2424,2221,1034,302,2469,3053,2845,1645,5,52,60,58,71 -12260,,,"Augusta-Richmond County, GA-SC",Metropolitan Statistical Area,564873,564873,566683,571047,576755,580230,583632,1810,4364,5708,3475,3402,1912,7399,7501,7158,7390,1230,4950,4873,5240,5169,682,2449,2628,1918,2221,264,673,1295,959,918,844,1130,1721,366,259,1108,1803,3016,1325,1177,20,112,64,232,4 -12260,,13033,"Burke County, GA",County or equivalent,23316,23316,23360,23559,23128,22925,22709,44,199,-431,-203,-216,100,325,317,313,305,89,239,226,246,230,11,86,91,67,75,0,-2,-2,1,1,35,94,-532,-286,-294,35,92,-534,-285,-293,-2,21,12,15,2 -12260,,13073,"Columbia County, GA",County or equivalent,124053,124053,124955,128753,132556,136287,139257,902,3798,3803,3731,2970,383,1613,1720,1539,1607,137,771,777,849,820,246,842,943,690,787,86,242,408,331,322,538,2703,2414,2580,1806,624,2945,2822,2911,2128,32,11,38,130,55 -12260,,13181,"Lincoln County, GA",County or equivalent,7996,7996,7991,7898,7770,7719,7622,-5,-93,-128,-51,-97,32,60,74,63,70,9,81,83,88,84,23,-21,-9,-25,-14,0,0,0,0,0,-28,-78,-120,1,-78,-28,-78,-120,1,-78,0,6,1,-27,-5 -12260,,13189,"McDuffie County, GA",County or equivalent,21875,21875,21822,21621,21581,21421,21370,-53,-201,-40,-160,-51,70,304,238,230,282,114,240,188,226,245,-44,64,50,4,37,0,-4,-4,-3,-3,-3,-257,-90,-168,-74,-3,-261,-94,-171,-77,-6,-4,4,7,-11 -12260,,13245,"Richmond County, GA",County or equivalent,200549,200549,201015,200595,201966,201276,201368,466,-420,1371,-690,92,782,3017,3023,3023,3046,468,1902,1853,1923,1916,314,1115,1170,1100,1130,150,276,733,459,425,9,-1760,-525,-2265,-1456,159,-1484,208,-1806,-1031,-7,-51,-7,16,-7 -12260,,45003,"Aiken County, SC",County or equivalent,160099,160106,160589,161894,163426,164294,164753,483,1305,1532,868,459,504,1928,1944,1760,1758,395,1535,1540,1706,1648,109,393,404,54,110,27,162,163,171,171,337,674,957,561,193,364,836,1120,732,364,10,76,8,82,-15 -12260,,45037,"Edgefield County, SC",County or equivalent,26985,26978,26951,26727,26328,26308,26553,-27,-224,-399,-20,245,41,152,185,230,322,18,182,206,202,226,23,-30,-21,28,96,1,-1,-3,0,2,-44,-246,-383,-57,162,-43,-247,-386,-57,164,-7,53,8,9,-15 -12420,,,"Austin-Round Rock, TX",Metropolitan Statistical Area,1716289,1716303,1727743,1782089,1836149,1885803,1943299,11440,54346,54060,49654,57496,6306,25239,24843,25421,25782,1950,8291,8412,9013,9207,4356,16948,16431,16408,16575,1167,5972,5763,6386,6474,5608,29719,31142,26768,33059,6775,35691,36905,33154,39533,309,1707,724,92,1388 -12420,,48021,"Bastrop County, TX",County or equivalent,74171,74169,74336,75151,74886,76099,78069,167,815,-265,1213,1970,193,877,802,921,907,176,564,577,585,634,17,313,225,336,273,2,44,35,43,45,149,430,-530,777,1601,151,474,-495,820,1646,-1,28,5,57,51 -12420,,48055,"Caldwell County, TX",County or equivalent,38066,38057,38116,38467,38711,39248,39810,59,351,244,537,562,127,485,454,477,471,38,281,299,279,290,89,204,155,198,181,1,8,11,15,15,-25,151,83,310,354,-24,159,94,325,369,-6,-12,-5,14,12 -12420,,48209,"Hays County, TX",County or equivalent,157107,157127,158307,163380,168855,176483,185025,1180,5073,5475,7628,8542,533,2107,2020,2114,2192,237,842,771,852,870,296,1265,1249,1262,1322,32,161,154,183,179,816,3516,3999,6151,6654,848,3677,4153,6334,6833,36,131,73,32,387 -12420,,48453,"Travis County, TX",County or equivalent,1024266,1024301,1030443,1062609,1097104,1122748,1151145,6142,32166,34495,25644,28397,3931,15642,15586,15815,16026,1099,4645,4705,5146,5191,2832,10997,10881,10669,10835,942,4848,4586,5117,5205,2194,15497,18445,9446,12343,3136,20345,23031,14563,17548,174,824,583,412,14 -12420,,48491,"Williamson County, TX",County or equivalent,422679,422649,426541,442482,456593,471225,489250,3892,15941,14111,14632,18025,1522,6128,5981,6094,6186,400,1959,2060,2151,2222,1122,4169,3921,3943,3964,190,911,977,1028,1030,2474,10125,9145,10084,12107,2664,11036,10122,11112,13137,106,736,68,-423,924 -12540,,,"Bakersfield, CA",Metropolitan Statistical Area,839631,839631,841762,849872,856502,865923,874589,2131,8110,6630,9421,8666,3593,14407,14206,14741,14763,1361,5410,5250,5727,5763,2232,8997,8956,9014,9000,325,1740,1708,1816,1842,-444,-2383,-4080,-1266,-1775,-119,-643,-2372,550,67,18,-244,46,-143,-401 -12540,,6029,"Kern County, CA",County or equivalent,839631,839631,841762,849872,856502,865923,874589,2131,8110,6630,9421,8666,3593,14407,14206,14741,14763,1361,5410,5250,5727,5763,2232,8997,8956,9014,9000,325,1740,1708,1816,1842,-444,-2383,-4080,-1266,-1775,-119,-643,-2372,550,67,18,-244,46,-143,-401 -12580,,,"Baltimore-Columbia-Towson, MD",Metropolitan Statistical Area,2710489,2710597,2715625,2735205,2756231,2774050,2785874,5028,19580,21026,17819,11824,8444,33973,33629,33688,33812,5531,22598,22543,24099,24520,2913,11375,11086,9589,9292,2085,8538,9392,9708,9639,144,-53,823,-1513,-6448,2229,8485,10215,8195,3191,-114,-280,-275,35,-659 -12580,,24003,"Anne Arundel County, MD",County or equivalent,537656,537656,539174,544976,550715,556348,560133,1518,5802,5739,5633,3785,1681,6946,6919,6804,6960,890,3745,3879,4087,4171,791,3201,3040,2717,2789,333,1054,1619,1413,1384,390,1805,1105,1613,-57,723,2859,2724,3026,1327,4,-258,-25,-110,-331 -12580,,24005,"Baltimore County, MD",County or equivalent,805029,804973,806233,813136,818425,823883,826925,1260,6903,5289,5458,3042,2461,9949,9662,9633,9667,1874,7588,7509,8003,8172,587,2361,2153,1630,1495,740,3326,3397,3663,3648,-30,1387,-184,-182,-1770,710,4713,3213,3481,1878,-37,-171,-77,347,-331 -12580,,24013,"Carroll County, MD",County or equivalent,167134,167138,167220,167260,167190,167494,167830,82,40,-70,304,336,427,1548,1589,1594,1630,359,1397,1346,1486,1478,68,151,243,108,152,13,42,68,54,52,3,-240,-396,74,121,16,-198,-328,128,173,-2,87,15,68,11 -12580,,24025,"Harford County, MD",County or equivalent,244826,244826,245205,246725,248696,249415,250105,379,1520,1971,719,690,650,2778,2614,2694,2662,467,1840,1844,1996,1997,183,938,770,698,665,107,343,429,404,398,93,325,783,-508,-343,200,668,1212,-104,55,-4,-86,-11,125,-30 -12580,,24027,"Howard County, MD",County or equivalent,287085,287085,288605,293839,299685,304934,309284,1520,5234,5846,5249,4350,815,3314,3389,3510,3502,395,1414,1471,1587,1609,420,1900,1918,1923,1893,405,1591,1677,1787,1773,681,1814,2243,1537,777,1086,3405,3920,3324,2550,14,-71,8,2,-93 -12580,,24035,"Queen Anne's County, MD",County or equivalent,47798,47798,47871,48380,48570,48572,48804,73,509,190,2,232,141,486,447,463,452,123,346,421,408,373,18,140,26,55,79,4,14,14,18,18,58,344,155,-64,141,62,358,169,-46,159,-7,11,-5,-7,-6 -12580,,24510,"Baltimore city, MD",County or equivalent,620961,621121,621317,620889,622950,623404,622793,196,-428,2061,454,-611,2269,8952,9009,8990,8939,1423,6268,6073,6532,6720,846,2684,2936,2458,2219,483,2168,2188,2369,2366,-1051,-5488,-2883,-3983,-5317,-568,-3320,-695,-1614,-2951,-82,208,-180,-390,121 -12620,,,"Bangor, ME",Metropolitan Statistical Area,153923,153920,153831,153799,153612,153479,153414,-89,-32,-187,-133,-65,378,1448,1480,1444,1455,374,1437,1490,1528,1497,4,11,-10,-84,-42,22,125,158,160,154,-118,-161,-328,-289,-150,-96,-36,-170,-129,4,3,-7,-7,80,-27 -12620,,23019,"Penobscot County, ME",County or equivalent,153923,153920,153831,153799,153612,153479,153414,-89,-32,-187,-133,-65,378,1448,1480,1444,1455,374,1437,1490,1528,1497,4,11,-10,-84,-42,22,125,158,160,154,-118,-161,-328,-289,-150,-96,-36,-170,-129,4,3,-7,-7,80,-27 -12700,,,"Barnstable Town, MA",Metropolitan Statistical Area,215888,215888,215903,215335,214845,214836,214914,15,-568,-490,-9,78,419,1650,1591,1559,1572,707,2871,2680,2816,2817,-288,-1221,-1089,-1257,-1245,87,279,346,348,338,210,560,265,699,975,297,839,611,1047,1313,6,-186,-12,201,10 -12700,,25001,"Barnstable County, MA",County or equivalent,215888,215888,215903,215335,214845,214836,214914,15,-568,-490,-9,78,419,1650,1591,1559,1572,707,2871,2680,2816,2817,-288,-1221,-1089,-1257,-1245,87,279,346,348,338,210,560,265,699,975,297,839,611,1047,1313,6,-186,-12,201,10 -12940,,,"Baton Rouge, LA",Metropolitan Statistical Area,802484,802500,804491,808657,814993,820409,825478,1991,4166,6336,5416,5069,2758,10942,10878,11050,11012,1424,6159,6223,6723,6662,1334,4783,4655,4327,4350,302,1215,1213,1307,1312,346,-1846,482,-312,-397,648,-631,1695,995,915,9,14,-14,94,-196 -12940,,22005,"Ascension Parish, LA",County or equivalent,107215,107194,107863,110041,112173,114432,117029,669,2178,2132,2259,2597,384,1656,1539,1598,1617,115,664,619,735,767,269,992,920,863,850,13,72,64,76,77,366,1065,1129,1267,1638,379,1137,1193,1343,1715,21,49,19,53,32 -12940,,22033,"East Baton Rouge Parish, LA",County or equivalent,440171,440178,440854,441518,444296,445279,446042,676,664,2778,983,763,1550,5999,6018,6103,6064,935,3456,3548,3734,3711,615,2543,2470,2369,2353,253,1001,1010,1077,1079,-177,-2731,-672,-2505,-2459,76,-1730,338,-1428,-1380,-15,-149,-30,42,-210 -12940,,22037,"East Feliciana Parish, LA",County or equivalent,20267,20263,20178,20155,19970,19705,19813,-85,-23,-185,-265,108,69,203,209,217,202,84,184,237,233,220,-15,19,-28,-16,-18,1,4,4,6,6,-74,-61,-160,-237,102,-73,-57,-156,-231,108,3,15,-1,-18,18 -12940,,22047,"Iberville Parish, LA",County or equivalent,33387,33407,33395,33367,33350,33438,33327,-12,-28,-17,88,-111,119,424,451,467,467,44,284,282,322,289,75,140,169,145,178,4,21,24,25,25,-84,-184,-212,-60,-324,-80,-163,-188,-35,-299,-7,-5,2,-22,10 -12940,,22063,"Livingston Parish, LA",County or equivalent,128026,128040,128689,130180,131944,134238,135751,649,1491,1764,2294,1513,430,1770,1791,1819,1813,189,913,923,1064,1039,241,857,868,755,774,22,91,86,93,94,360,512,816,1379,675,382,603,902,1472,769,26,31,-6,67,-30 -12940,,22077,"Pointe Coupee Parish, LA",County or equivalent,22802,22802,22767,22828,22711,22443,22406,-35,61,-117,-268,-37,69,294,303,275,277,24,212,244,250,240,45,82,59,25,37,5,11,13,16,17,-71,-69,-193,-281,-81,-66,-58,-180,-265,-64,-14,37,4,-28,-10 -12940,,22091,"St. Helena Parish, LA",County or equivalent,11203,11203,11171,11014,11032,10851,10619,-32,-157,18,-181,-232,28,120,117,115,110,9,138,100,93,95,19,-18,17,22,15,0,-1,-1,0,0,-45,-180,0,-194,-246,-45,-181,-1,-194,-246,-6,42,2,-9,-1 -12940,,22121,"West Baton Rouge Parish, LA",County or equivalent,23788,23788,23949,24079,24068,24555,25085,161,130,-11,487,530,78,349,312,332,329,13,191,161,188,190,65,158,151,144,139,2,9,5,6,6,90,-27,-163,331,386,92,-18,-158,337,392,4,-10,-4,6,-1 -12940,,22125,"West Feliciana Parish, LA",County or equivalent,15625,15625,15625,15475,15449,15468,15406,0,-150,-26,19,-62,31,127,138,124,133,11,117,109,104,111,20,10,29,20,22,2,7,8,8,8,-19,-171,-63,-12,-88,-17,-164,-55,-4,-80,-3,4,0,3,-4 -12980,,,"Battle Creek, MI",Metropolitan Statistical Area,136146,136148,135998,135282,134760,134830,134878,-150,-716,-522,70,48,385,1662,1621,1694,1683,452,1467,1451,1452,1373,-67,195,170,242,310,44,175,190,202,201,-126,-1092,-890,-423,-399,-82,-917,-700,-221,-198,-1,6,8,49,-64 -12980,,26025,"Calhoun County, MI",County or equivalent,136146,136148,135998,135282,134760,134830,134878,-150,-716,-522,70,48,385,1662,1621,1694,1683,452,1467,1451,1452,1373,-67,195,170,242,310,44,175,190,202,201,-126,-1092,-890,-423,-399,-82,-917,-700,-221,-198,-1,6,8,49,-64 -13020,,,"Bay City, MI",Metropolitan Statistical Area,107771,107771,107695,107477,107084,106936,106179,-76,-218,-393,-148,-757,299,1152,1068,1063,1043,300,1152,1185,1121,1140,-1,0,-117,-58,-97,5,40,44,42,43,-77,-264,-324,-137,-634,-72,-224,-280,-95,-591,-3,6,4,5,-69 -13020,,26017,"Bay County, MI",County or equivalent,107771,107771,107695,107477,107084,106936,106179,-76,-218,-393,-148,-757,299,1152,1068,1063,1043,300,1152,1185,1121,1140,-1,0,-117,-58,-97,5,40,44,42,43,-77,-264,-324,-137,-634,-72,-224,-280,-95,-591,-3,6,4,5,-69 -13140,,,"Beaumont-Port Arthur, TX",Metropolitan Statistical Area,403190,403190,403748,405275,403832,405424,405427,558,1527,-1443,1592,3,1395,5228,5293,5496,5381,834,3891,3874,4114,4067,561,1337,1419,1382,1314,121,547,531,587,598,-97,-224,-3443,-376,-1808,24,323,-2912,211,-1210,-27,-133,50,-1,-101 -13140,,48199,"Hardin County, TX",County or equivalent,54635,54635,54821,55062,55149,55421,55621,186,241,87,272,200,188,657,683,710,689,103,509,542,555,518,85,148,141,155,171,2,21,22,25,26,101,104,-75,96,24,103,125,-53,121,50,-2,-32,-1,-4,-21 -13140,,48245,"Jefferson County, TX",County or equivalent,252273,252273,252495,253384,251404,252814,252235,222,889,-1980,1410,-579,920,3434,3357,3548,3444,532,2342,2276,2477,2474,388,1092,1081,1071,970,111,499,479,531,540,-262,-638,-3603,-166,-2058,-151,-139,-3124,365,-1518,-15,-64,63,-26,-31 -13140,,48351,"Newton County, TX",County or equivalent,14445,14445,14439,14501,14328,14209,14138,-6,62,-173,-119,-71,36,147,153,127,135,19,155,166,143,172,17,-8,-13,-16,-37,1,4,4,5,6,-18,50,-163,-99,-40,-17,54,-159,-94,-34,-6,16,-1,-9,0 -13140,,48361,"Orange County, TX",County or equivalent,81837,81837,81993,82328,82951,82980,83433,156,335,623,29,453,251,990,1100,1111,1113,180,885,890,939,903,71,105,210,172,210,7,23,26,26,26,82,260,398,-207,266,89,283,424,-181,292,-4,-53,-11,38,-49 -13220,,,"Beckley, WV",Metropolitan Statistical Area,124898,124901,124902,125187,125020,124196,123373,1,285,-167,-824,-823,382,1549,1539,1511,1479,423,1627,1621,1699,1711,-41,-78,-82,-188,-232,23,87,86,93,92,35,303,-166,-756,-658,58,390,-80,-663,-566,-16,-27,-5,27,-25 -13220,,54019,"Fayette County, WV",County or equivalent,46039,46039,45993,45954,45898,45567,45132,-46,-39,-56,-331,-435,138,565,550,531,507,180,640,618,651,674,-42,-75,-68,-120,-167,5,12,12,14,14,0,15,7,-219,-257,5,27,19,-205,-243,-9,9,-7,-6,-25 -13220,,54081,"Raleigh County, WV",County or equivalent,78859,78862,78909,79233,79122,78629,78241,47,324,-111,-493,-388,244,984,989,980,972,243,987,1003,1048,1037,1,-3,-14,-68,-65,18,75,74,79,78,35,288,-173,-537,-401,53,363,-99,-458,-323,-7,-36,2,33,0 -13380,,,"Bellingham, WA",Metropolitan Statistical Area,201140,201140,201518,203329,204827,206248,208351,378,1811,1498,1421,2103,559,2284,2259,2261,2257,358,1430,1478,1577,1518,201,854,781,684,739,73,271,284,336,343,125,721,443,375,1021,198,992,727,711,1364,-21,-35,-10,26,0 -13380,,53073,"Whatcom County, WA",County or equivalent,201140,201140,201518,203329,204827,206248,208351,378,1811,1498,1421,2103,559,2284,2259,2261,2257,358,1430,1478,1577,1518,201,854,781,684,739,73,271,284,336,343,125,721,443,375,1021,198,992,727,711,1364,-21,-35,-10,26,0 -13460,,,"Bend-Redmond, OR",Metropolitan Statistical Area,157733,157733,157828,159786,161746,165955,170388,95,1958,1960,4209,4433,419,1710,1666,1686,1707,372,1220,1313,1339,1304,47,490,353,347,403,4,-15,-25,-9,-4,81,1354,1674,4114,3686,85,1339,1649,4105,3682,-37,129,-42,-243,348 -13460,,41017,"Deschutes County, OR",County or equivalent,157733,157733,157828,159786,161746,165955,170388,95,1958,1960,4209,4433,419,1710,1666,1686,1707,372,1220,1313,1339,1304,47,490,353,347,403,4,-15,-25,-9,-4,81,1354,1674,4114,3686,85,1339,1649,4105,3682,-37,129,-42,-243,348 -13740,,,"Billings, MT",Metropolitan Statistical Area,158934,158934,159338,160761,162839,165222,166885,404,1423,2078,2383,1663,505,2084,2101,2058,2130,392,1470,1444,1470,1459,113,614,657,588,671,12,40,50,49,49,275,758,1366,1609,998,287,798,1416,1658,1047,4,11,5,137,-55 -13740,,30009,"Carbon County, MT",County or equivalent,10078,10075,10057,10076,10109,10305,10399,-18,19,33,196,94,17,96,82,68,77,42,93,100,78,79,-25,3,-18,-10,-2,0,-1,-2,-2,-2,7,19,51,201,101,7,18,49,199,99,0,-2,2,7,-3 -13740,,30037,"Golden Valley County, MT",County or equivalent,884,884,883,840,842,857,852,-1,-43,2,15,-5,0,5,7,8,9,5,10,9,11,8,-5,-5,-2,-3,1,0,0,0,0,0,4,-40,5,23,-6,4,-40,5,23,-6,0,2,-1,-5,0 -13740,,30111,"Yellowstone County, MT",County or equivalent,147972,147975,148398,149845,151888,154060,155634,423,1447,2043,2172,1574,488,1983,2012,1982,2044,345,1367,1335,1381,1372,143,616,677,601,672,12,41,52,51,51,264,779,1310,1385,903,276,820,1362,1436,954,4,11,4,135,-52 -13780,,,"Binghamton, NY",Metropolitan Statistical Area,251725,251725,251469,250251,249005,248362,247219,-256,-1218,-1246,-643,-1143,637,2524,2572,2573,2576,556,2576,2478,2529,2514,81,-52,94,44,62,113,441,453,492,492,-447,-1472,-1822,-1162,-1591,-334,-1031,-1369,-670,-1099,-3,-135,29,-17,-106 -13780,,36007,"Broome County, NY",County or equivalent,200600,200600,200428,199335,198670,198203,197349,-172,-1093,-665,-467,-854,536,2055,2099,2054,2059,432,2163,2038,2065,2085,104,-108,61,-11,-26,113,446,458,496,496,-388,-1324,-1204,-928,-1249,-275,-878,-746,-432,-753,-1,-107,20,-24,-75 -13780,,36107,"Tioga County, NY",County or equivalent,51125,51125,51041,50916,50335,50159,49870,-84,-125,-581,-176,-289,101,469,473,519,517,124,413,440,464,429,-23,56,33,55,88,0,-5,-5,-4,-4,-59,-148,-618,-234,-342,-59,-153,-623,-238,-346,-2,-28,9,7,-31 -13820,,,"Birmingham-Hoover, AL",Metropolitan Statistical Area,1128047,1128056,1129034,1131010,1134297,1139556,1143772,978,1976,3287,5259,4216,3744,14798,14796,14446,14471,2634,11218,11182,11346,11422,1110,3580,3614,3100,3049,292,1162,1111,1225,1254,-445,-2714,-1403,1095,230,-153,-1552,-292,2320,1484,21,-52,-35,-161,-317 -13820,,1007,"Bibb County, AL",County or equivalent,22915,22919,22879,22740,22634,22504,22506,-40,-139,-106,-130,2,57,266,245,250,243,28,278,238,229,227,29,-12,7,21,16,2,1,0,3,3,-69,-128,-113,-152,-8,-67,-127,-113,-149,-5,-2,0,0,-2,-9 -13820,,1009,"Blount County, AL",County or equivalent,57322,57322,57344,57694,57748,57720,57719,22,350,54,-28,-1,152,744,711,645,676,131,566,593,563,564,21,178,118,82,112,5,15,7,11,12,-3,102,-66,-99,-114,2,117,-59,-88,-102,-1,55,-5,-22,-11 -13820,,1021,"Chilton County, AL",County or equivalent,43643,43631,43682,43749,43709,43836,43931,51,67,-40,127,95,142,564,565,558,558,142,474,495,476,466,0,90,70,82,92,8,18,13,16,19,48,-60,-120,15,6,56,-42,-107,31,25,-5,19,-3,14,-22 -13820,,1073,"Jefferson County, AL",County or equivalent,658466,658350,658302,657927,657953,659197,660793,-48,-375,26,1244,1596,2300,8832,9010,8818,8766,1582,6904,6740,6902,6999,718,1928,2270,1916,1767,172,731,715,783,797,-963,-2731,-2941,-1169,-648,-791,-2000,-2226,-386,149,25,-303,-18,-286,-320 -13820,,1115,"St. Clair County, AL",County or equivalent,83593,83593,83800,84305,85165,86244,86697,207,505,860,1079,453,266,1100,1061,1018,1061,192,826,803,847,871,74,274,258,171,190,16,51,54,60,60,114,126,562,795,150,130,177,616,855,210,3,54,-14,53,53 -13820,,1117,"Shelby County, AL",County or equivalent,195085,195218,196036,197988,200963,204196,206655,818,1952,2975,3233,2459,621,2478,2379,2401,2400,316,1260,1286,1331,1345,305,1218,1093,1070,1055,83,334,313,341,350,426,284,1565,1762,1041,509,618,1878,2103,1391,4,116,4,60,13 -13820,,1127,"Walker County, AL",County or equivalent,67023,67023,66991,66607,66125,65859,65471,-32,-384,-482,-266,-388,206,814,825,756,767,243,910,1027,998,950,-37,-96,-202,-242,-183,6,12,9,11,13,2,-307,-290,-57,-197,8,-295,-281,-46,-184,-3,7,1,22,-21 -13900,,,"Bismarck, ND",Metropolitan Statistical Area,114778,114778,115233,117393,120293,123993,126597,455,2160,2900,3700,2604,378,1591,1717,1793,1836,275,961,962,996,988,103,630,755,797,848,5,20,36,24,23,337,1372,2086,2829,1690,342,1392,2122,2853,1713,10,138,23,50,43 -13900,,38015,"Burleigh County, ND",County or equivalent,81308,81308,81689,83582,86073,88709,90503,381,1893,2491,2636,1794,264,1105,1198,1223,1252,165,664,646,656,665,99,441,552,567,587,6,21,36,23,22,269,1299,1877,2018,1161,275,1320,1913,2041,1183,7,132,26,28,24 -13900,,38059,"Morton County, ND",County or equivalent,27471,27471,27565,27720,28045,28989,29822,94,155,325,944,833,93,375,396,458,456,88,249,268,261,240,5,126,128,197,216,-1,-1,0,1,1,86,32,197,715,605,85,31,197,716,606,4,-2,0,31,11 -13900,,38065,"Oliver County, ND",County or equivalent,1846,1846,1833,1845,1832,1869,1850,-13,12,-13,37,-19,3,18,20,20,25,7,10,13,9,5,-4,8,7,11,20,0,0,0,0,0,-9,-1,-18,32,-44,-9,-1,-18,32,-44,0,5,-2,-6,5 -13900,,38085,"Sioux County, ND",County or equivalent,4153,4153,4146,4246,4343,4426,4422,-7,100,97,83,-4,18,93,103,92,103,15,38,35,70,78,3,55,68,22,25,0,0,0,0,0,-9,42,30,64,-32,-9,42,30,64,-32,-1,3,-1,-3,3 -13980,,,"Blacksburg-Christiansburg-Radford, VA",Metropolitan Statistical Area,178237,178254,178512,178911,179558,180952,181605,258,399,647,1394,653,428,1618,1687,1731,1754,273,1478,1469,1506,1435,155,140,218,225,319,151,675,689,762,762,-33,-437,-260,470,-345,118,238,429,1232,417,-15,21,0,-63,-83 -13980,,51063,"Floyd County, VA",County or equivalent,15279,15287,15334,15393,15426,15528,15578,47,59,33,102,50,40,153,140,148,145,16,150,143,139,157,24,3,-3,9,-12,1,11,11,14,14,24,43,24,70,58,25,54,35,84,72,-2,2,1,9,-10 -13980,,51071,"Giles County, VA",County or equivalent,17286,17286,17297,17104,16968,16939,16815,11,-193,-136,-29,-124,42,180,168,181,174,33,210,211,219,196,9,-30,-43,-38,-22,1,10,10,11,11,2,-175,-105,20,-116,3,-165,-95,31,-105,-1,2,2,-22,3 -13980,,51121,"Montgomery County, VA",County or equivalent,94392,94412,94610,94841,95651,96696,97244,198,231,810,1045,548,237,866,928,909,940,146,618,583,591,591,91,248,345,318,349,122,543,559,616,616,-12,-536,-88,122,-372,110,7,471,738,244,-3,-24,-6,-11,-45 -13980,,51155,"Pulaski County, VA",County or equivalent,34872,34861,34819,34749,34747,34512,34322,-42,-70,-2,-235,-190,80,273,314,340,335,76,408,428,461,413,4,-135,-114,-121,-78,2,7,4,4,4,-40,52,107,-81,-82,-38,59,111,-77,-78,-8,6,1,-37,-34 -13980,,51750,"Radford city, VA",County or equivalent,16408,16408,16452,16824,16766,17277,17646,44,372,-58,511,369,29,146,137,153,160,2,92,104,96,78,27,54,33,57,82,25,104,105,117,117,-7,179,-198,339,167,18,283,-93,456,284,-1,35,2,-2,3 -14010,,,"Bloomington, IL",Metropolitan Statistical Area,186133,186133,186421,187282,188910,191294,190345,288,861,1628,2384,-949,551,2338,2283,2369,2356,344,1285,1203,1340,1334,207,1053,1080,1029,1022,130,529,540,589,590,-39,-649,24,736,-2601,91,-120,564,1325,-2011,-10,-72,-16,30,40 -14010,,17039,"De Witt County, IL",County or equivalent,16561,16561,16578,16548,16492,16401,16284,17,-30,-56,-91,-117,37,185,196,173,180,17,186,161,187,211,20,-1,35,-14,-31,0,0,0,1,1,1,-25,-90,-94,-94,1,-25,-90,-93,-93,-4,-4,-1,16,7 -14010,,17113,"McLean County, IL",County or equivalent,169572,169572,169843,170734,172418,174893,174061,271,891,1684,2475,-832,514,2153,2087,2196,2176,327,1099,1042,1153,1123,187,1054,1045,1043,1053,130,529,540,588,589,-40,-624,114,830,-2507,90,-95,654,1418,-1918,-6,-68,-15,14,33 -14020,,,"Bloomington, IN",Metropolitan Statistical Area,159549,159542,160107,161855,162652,163190,164308,565,1748,797,538,1118,411,1464,1535,1507,1500,307,1069,1058,1092,1070,104,395,477,415,430,190,859,867,945,943,257,518,-537,-846,-232,447,1377,330,99,711,14,-24,-10,24,-23 -14020,,18105,"Monroe County, IN",County or equivalent,137974,137959,138520,140339,141289,142020,143339,561,1819,950,731,1319,342,1242,1310,1306,1306,228,871,853,866,844,114,371,457,440,462,190,857,867,945,943,242,613,-367,-676,-72,432,1470,500,269,871,15,-22,-7,22,-14 -14020,,18119,"Owen County, IN",County or equivalent,21575,21583,21587,21516,21363,21170,20969,4,-71,-153,-193,-201,69,222,225,201,194,79,198,205,226,226,-10,24,20,-25,-32,0,2,0,0,0,15,-95,-170,-170,-160,15,-93,-170,-170,-160,-1,-2,-3,2,-9 -14100,,,"Bloomsburg-Berwick, PA",Metropolitan Statistical Area,85562,85563,85656,85309,85415,85674,85763,93,-347,106,259,89,218,833,828,878,858,183,878,899,890,894,35,-45,-71,-12,-36,22,156,158,165,165,40,-486,28,109,-15,62,-330,186,274,150,-4,28,-9,-3,-25 -14100,,42037,"Columbia County, PA",County or equivalent,67295,67296,67329,66930,66924,67139,67122,33,-399,-6,215,-17,149,613,620,645,636,145,680,675,670,683,4,-67,-55,-25,-47,13,77,76,86,86,20,-441,-18,167,-25,33,-364,58,253,61,-4,32,-9,-13,-31 -14100,,42093,"Montour County, PA",County or equivalent,18267,18267,18327,18379,18491,18535,18641,60,52,112,44,106,69,220,208,233,222,38,198,224,220,211,31,22,-16,13,11,9,79,82,79,79,20,-45,46,-58,10,29,34,128,21,89,0,-4,0,10,6 -14260,,,"Boise City, ID",Metropolitan Statistical Area,616561,616561,617923,627627,637651,650457,664422,1362,9704,10024,12806,13965,2122,8645,8410,8644,8721,809,4118,4112,4163,4198,1313,4527,4298,4481,4523,191,762,848,923,925,-99,3977,4928,7723,7868,92,4739,5776,8646,8793,-43,438,-50,-321,649 -14260,,16001,"Ada County, ID",County or equivalent,392365,392365,393412,401100,408891,416556,426236,1047,7688,7791,7665,9680,1265,5150,5030,5123,5124,485,2504,2551,2480,2563,780,2646,2479,2643,2561,163,643,729,776,770,142,4087,4597,4556,5881,305,4730,5326,5332,6651,-38,312,-14,-310,468 -14260,,16015,"Boise County, ID",County or equivalent,7028,7028,7019,7011,6803,6744,6824,-9,-8,-208,-59,80,18,38,31,45,39,18,59,43,44,52,0,-21,-12,1,-13,1,7,7,7,7,-10,7,-203,-59,88,-9,14,-196,-52,95,0,-1,0,-8,-2 -14260,,16027,"Canyon County, ID",County or equivalent,188923,188923,189339,191386,193856,199040,203143,416,2047,2470,5184,4103,758,3152,2986,3139,3202,242,1252,1256,1390,1321,516,1900,1730,1749,1881,20,80,81,103,110,-110,-41,693,3344,1922,-90,39,774,3447,2032,-10,108,-34,-12,190 -14260,,16045,"Gem County, ID",County or equivalent,16719,16719,16681,16727,16692,16694,16866,-38,46,-35,2,172,46,177,215,194,209,32,206,175,171,182,14,-29,40,23,27,6,25,25,30,30,-59,34,-99,-54,118,-53,59,-74,-24,148,1,16,-1,3,-3 -14260,,16073,"Owyhee County, ID",County or equivalent,11526,11526,11472,11403,11409,11423,11353,-54,-69,6,14,-70,35,128,148,143,147,32,97,87,78,80,3,31,61,65,67,1,7,6,7,8,-62,-110,-60,-64,-141,-61,-103,-54,-57,-133,4,3,-1,6,-4 -14460,,,"Boston-Cambridge-Newton, MA-NH",Metropolitan Statistical Area,4552402,4552412,4564659,4608848,4650668,4698049,4732161,12247,44189,41820,47381,34112,12571,51997,51154,52291,52482,7978,34811,33650,34876,35657,4593,17186,17504,17415,16825,5677,27209,27090,29173,29134,1986,1347,-2314,1430,-10256,7663,28556,24776,30603,18878,-9,-1553,-460,-637,-1591 -14460,14454,,"Boston, MA",Metropolitan Division,1887792,1887745,1893820,1913683,1931329,1952438,1966530,6075,19863,17646,21109,14092,5339,21993,21703,22090,22213,3297,14351,13884,14529,14974,2042,7642,7819,7561,7239,2562,12459,12370,13319,13291,1413,230,-2406,586,-5872,3975,12689,9964,13905,7419,58,-468,-137,-357,-566 -14460,14454,25021,"Norfolk County, MA",County or equivalent,670850,670743,672645,677943,682749,688709,692254,1902,5298,4806,5960,3545,1761,7119,7239,7287,7320,1317,5493,5382,5615,5673,444,1626,1857,1672,1647,545,2875,2926,3179,3167,879,998,109,1130,-746,1424,3873,3035,4309,2421,34,-201,-86,-21,-523 -14460,14454,25023,"Plymouth County, MA",County or equivalent,494919,494915,495856,498269,499076,503636,507022,941,2413,807,4560,3386,1249,5180,4914,5239,5161,953,4220,3978,4207,4333,296,960,936,1032,828,263,1282,1330,1398,1390,395,216,-1475,1902,1287,658,1498,-145,3300,2677,-13,-45,16,228,-119 -14460,14454,25025,"Suffolk County, MA",County or equivalent,722023,722087,725319,737471,749504,760093,767254,3232,12152,12033,10589,7161,2329,9694,9550,9564,9732,1027,4638,4524,4707,4968,1302,5056,5026,4857,4764,1754,8302,8114,8742,8734,139,-984,-1040,-2446,-6413,1893,7318,7074,6296,2321,37,-222,-67,-564,76 -14460,15764,,"Cambridge-Newton-Framingham, MA",Metropolitan Division,2246244,2246301,2252330,2275221,2296955,2322224,2339406,6029,22891,21734,25269,17182,6309,26118,25724,26371,26453,3918,17328,16836,17271,17570,2391,8790,8888,9100,8883,3050,14487,14366,15505,15499,645,652,-1231,1044,-6310,3695,15139,13135,16549,9189,-57,-1038,-289,-380,-890 -14460,15764,25009,"Essex County, MA",County or equivalent,743159,743175,745478,751550,756763,764093,769091,2303,6072,5213,7330,4998,2024,8482,8351,8529,8573,1393,6278,6144,6361,6413,631,2204,2207,2168,2160,779,3761,3638,3895,3893,839,456,-619,1005,-608,1618,4217,3019,4900,3285,54,-349,-13,262,-447 -14460,15764,25017,"Middlesex County, MA",County or equivalent,1503085,1503126,1506852,1523671,1540192,1558131,1570315,3726,16819,16521,17939,12184,4285,17636,17373,17842,17880,2525,11050,10692,10910,11157,1760,6586,6681,6932,6723,2271,10726,10728,11610,11606,-194,196,-612,39,-5702,2077,10922,10116,11649,5904,-111,-689,-276,-642,-443 -14460,40484,,"Rockingham County-Strafford County, NH",Metropolitan Division,418366,418366,418509,419944,422384,423387,426225,143,1435,2440,1003,2838,923,3886,3727,3830,3816,763,3132,2930,3076,3113,160,754,797,754,703,65,263,354,349,344,-72,465,1323,-200,1926,-7,728,1677,149,2270,-10,-47,-34,100,-135 -14460,40484,33015,"Rockingham County, NH",County or equivalent,295223,295220,295306,295999,297841,298745,300621,86,693,1842,904,1876,614,2591,2511,2560,2591,559,2208,2038,2134,2175,55,383,473,426,416,38,149,232,216,209,6,215,1148,218,1350,44,364,1380,434,1559,-13,-54,-11,44,-99 -14460,40484,33017,"Strafford County, NH",County or equivalent,123143,123146,123203,123945,124543,124642,125604,57,742,598,99,962,309,1295,1216,1270,1225,204,924,892,942,938,105,371,324,328,287,27,114,122,133,135,-78,250,175,-418,576,-51,364,297,-285,711,3,7,-23,56,-36 -14500,,,"Boulder, CO",Metropolitan Statistical Area,294567,294571,295967,300650,305483,310396,313333,1396,4683,4833,4913,2937,753,2996,2964,2979,3028,347,1505,1576,1694,1725,406,1491,1388,1285,1303,194,802,824,912,922,750,2345,2610,2746,731,944,3147,3434,3658,1653,46,45,11,-30,-19 -14500,,8013,"Boulder County, CO",County or equivalent,294567,294571,295967,300650,305483,310396,313333,1396,4683,4833,4913,2937,753,2996,2964,2979,3028,347,1505,1576,1694,1725,406,1491,1388,1285,1303,194,802,824,912,922,750,2345,2610,2746,731,944,3147,3434,3658,1653,46,45,11,-30,-19 -14540,,,"Bowling Green, KY",Metropolitan Statistical Area,158599,158599,159181,160504,162352,163841,165732,582,1323,1848,1489,1891,477,1946,1960,2021,2004,212,1401,1398,1348,1367,265,545,562,673,637,95,456,460,509,508,218,331,813,340,792,313,787,1273,849,1300,4,-9,13,-33,-46 -14540,,21003,"Allen County, KY",County or equivalent,19956,19967,20040,20170,20231,20269,20384,73,130,61,38,115,74,246,238,253,244,19,216,204,213,234,55,30,34,40,10,1,2,2,3,3,20,101,26,31,108,21,103,28,34,111,-3,-3,-1,-36,-6 -14540,,21031,"Butler County, KY",County or equivalent,12690,12690,12715,12763,12806,12826,12875,25,48,43,20,49,32,143,145,127,130,15,154,154,119,111,17,-11,-9,8,19,4,37,37,42,42,6,6,15,-41,-12,10,43,52,1,30,-2,16,0,11,0 -14540,,21061,"Edmonson County, KY",County or equivalent,12161,12161,12192,12267,12130,12082,12013,31,75,-137,-48,-69,28,110,98,95,96,18,124,122,141,141,10,-14,-24,-46,-45,0,-1,-1,-1,-1,22,58,-112,2,-11,22,57,-113,1,-12,-1,32,0,-3,-12 -14540,,21227,"Warren County, KY",County or equivalent,113792,113781,114234,115304,117185,118664,120460,453,1070,1881,1479,1796,343,1447,1479,1546,1534,160,907,918,875,881,183,540,561,671,653,90,418,422,465,464,170,166,884,348,707,260,584,1306,813,1171,10,-54,14,-5,-28 -14740,,,"Bremerton-Silverdale, WA",Metropolitan Statistical Area,251133,251133,251650,254372,254659,253205,254183,517,2722,287,-1454,978,697,2962,3027,2858,2895,505,2029,1920,1971,2094,192,933,1107,887,801,128,186,614,434,374,206,1594,-1458,-2962,-274,334,1780,-844,-2528,100,-9,9,24,187,77 -14740,,53035,"Kitsap County, WA",County or equivalent,251133,251133,251650,254372,254659,253205,254183,517,2722,287,-1454,978,697,2962,3027,2858,2895,505,2029,1920,1971,2094,192,933,1107,887,801,128,186,614,434,374,206,1594,-1458,-2962,-274,334,1780,-844,-2528,100,-9,9,24,187,77 -14860,,,"Bridgeport-Stamford-Norwalk, CT",Metropolitan Statistical Area,916829,916828,919506,928722,935290,942119,945438,2678,9216,6568,6829,3319,2533,10408,10203,10042,10087,1512,6474,6367,6667,6579,1021,3934,3836,3375,3508,1227,5890,5698,6129,6135,462,-289,-2815,-1941,-6506,1689,5601,2883,4188,-371,-32,-319,-151,-734,182 -14860,,9001,"Fairfield County, CT",County or equivalent,916829,916828,919506,928722,935290,942119,945438,2678,9216,6568,6829,3319,2533,10408,10203,10042,10087,1512,6474,6367,6667,6579,1021,3934,3836,3375,3508,1227,5890,5698,6129,6135,462,-289,-2815,-1941,-6506,1689,5601,2883,4188,-371,-32,-319,-151,-734,182 -15180,,,"Brownsville-Harlingen, TX",Metropolitan Statistical Area,406220,406220,407672,413188,416048,418217,420392,1452,5516,2860,2169,2175,1868,7814,7359,7372,7277,598,2322,2366,2494,2505,1270,5492,4993,4878,4772,47,786,614,707,739,141,-539,-2801,-3717,-3327,188,247,-2187,-3010,-2588,-6,-223,54,301,-9 -15180,,48061,"Cameron County, TX",County or equivalent,406220,406220,407672,413188,416048,418217,420392,1452,5516,2860,2169,2175,1868,7814,7359,7372,7277,598,2322,2366,2494,2505,1270,5492,4993,4878,4772,47,786,614,707,739,141,-539,-2801,-3717,-3327,188,247,-2187,-3010,-2588,-6,-223,54,301,-9 -15260,,,"Brunswick, GA",Metropolitan Statistical Area,112370,112368,112574,113034,113437,114012,114806,206,460,403,575,794,371,1347,1344,1440,1321,250,1081,1018,1128,1102,121,266,326,312,219,25,115,108,108,113,69,60,-35,125,404,94,175,73,233,517,-9,19,4,30,58 -15260,,13025,"Brantley County, GA",County or equivalent,18411,18410,18465,18581,18555,18299,18417,55,116,-26,-256,118,60,192,188,217,196,20,185,183,173,182,40,7,5,44,14,0,-5,-5,-5,-5,16,97,-23,-281,121,16,92,-28,-286,116,-1,17,-3,-14,-12 -15260,,13127,"Glynn County, GA",County or equivalent,79626,79626,79802,80216,80960,81533,82175,176,414,744,573,642,274,1021,972,1006,996,219,772,730,859,818,55,249,242,147,178,25,120,113,113,118,103,58,387,284,265,128,178,500,397,383,-7,-13,2,29,81 -15260,,13191,"McIntosh County, GA",County or equivalent,14333,14332,14307,14237,13922,14180,14214,-25,-70,-315,258,34,37,134,184,217,129,11,124,105,96,102,26,10,79,121,27,0,0,0,0,0,-50,-95,-399,122,18,-50,-95,-399,122,18,-1,15,5,15,-11 -15380,,,"Buffalo-Cheektowaga-Niagara Falls, NY",Metropolitan Statistical Area,1135509,1135541,1135342,1135411,1135067,1136153,1136360,-199,69,-344,1086,207,2914,11937,11979,12171,12215,2849,12122,11686,11725,11907,65,-185,293,446,308,582,2902,3017,3219,3210,-772,-2031,-3623,-2128,-2445,-190,871,-606,1091,765,-74,-617,-31,-451,-866 -15380,,36029,"Erie County, NY",County or equivalent,919040,919064,918836,919709,920205,921883,922835,-228,873,496,1678,952,2349,9773,9814,10055,10101,2255,9749,9385,9468,9583,94,24,429,587,518,539,2751,2844,3034,3028,-803,-1419,-2740,-1537,-1895,-264,1332,104,1497,1133,-58,-483,-37,-406,-699 -15380,,36063,"Niagara County, NY",County or equivalent,216469,216477,216506,215702,214862,214270,213525,29,-804,-840,-592,-745,565,2164,2165,2116,2114,594,2373,2301,2257,2324,-29,-209,-136,-141,-210,43,151,173,185,182,31,-612,-883,-591,-550,74,-461,-710,-406,-368,-16,-134,6,-45,-167 -15500,,,"Burlington, NC",Metropolitan Statistical Area,151131,151241,151551,152866,153672,154685,155792,310,1315,806,1013,1107,451,1761,1707,1774,1759,389,1456,1495,1578,1524,62,305,212,196,235,37,143,126,144,151,212,884,495,569,684,249,1027,621,713,835,-1,-17,-27,104,37 -15500,,37001,"Alamance County, NC",County or equivalent,151131,151241,151551,152866,153672,154685,155792,310,1315,806,1013,1107,451,1761,1707,1774,1759,389,1456,1495,1578,1524,62,305,212,196,235,37,143,126,144,151,212,884,495,569,684,249,1027,621,713,835,-1,-17,-27,104,37 -15540,,,"Burlington-South Burlington, VT",Metropolitan Statistical Area,211261,211262,211508,212837,213874,215072,216167,246,1329,1037,1198,1095,532,2144,2240,2217,2236,324,1403,1460,1409,1406,208,741,780,808,830,67,411,450,467,463,-12,198,-175,-86,-137,55,609,275,381,326,-17,-21,-18,9,-61 -15540,,50007,"Chittenden County, VT",County or equivalent,156545,156540,156762,157679,158641,159818,160531,222,917,962,1177,713,375,1524,1578,1589,1610,230,965,1024,992,1008,145,559,554,597,602,62,379,417,432,428,25,-3,3,88,-275,87,376,420,520,153,-10,-18,-12,60,-42 -15540,,50011,"Franklin County, VT",County or equivalent,47746,47752,47788,48175,48253,48272,48642,36,387,78,19,370,138,561,604,573,569,66,390,372,368,350,72,171,232,205,219,5,28,29,31,31,-34,191,-178,-183,140,-29,219,-149,-152,171,-7,-3,-5,-34,-20 -15540,,50013,"Grand Isle County, VT",County or equivalent,6970,6970,6958,6983,6980,6982,6994,-12,25,-3,2,12,19,59,58,55,57,28,48,64,49,48,-9,11,-6,6,9,0,4,4,4,4,-3,10,0,9,-2,-3,14,4,13,2,0,0,-1,-17,1 -15680,,,"California-Lexington Park, MD",Metropolitan Statistical Area,105151,105151,105740,107757,108999,109484,110382,589,2017,1242,485,898,348,1485,1389,1392,1389,200,646,696,798,774,148,839,693,594,615,65,126,292,196,186,357,959,259,-316,71,422,1085,551,-120,257,19,93,-2,11,26 -15680,,24037,"St. Mary's County, MD",County or equivalent,105151,105151,105740,107757,108999,109484,110382,589,2017,1242,485,898,348,1485,1389,1392,1389,200,646,696,798,774,148,839,693,594,615,65,126,292,196,186,357,959,259,-316,71,422,1085,551,-120,257,19,93,-2,11,26 -15940,,,"Canton-Massillon, OH",Metropolitan Statistical Area,404422,404420,404202,403119,403404,403493,403923,-218,-1083,285,89,430,1038,4400,4336,4346,4370,1035,4404,4253,4221,4191,3,-4,83,125,179,62,206,235,236,236,-267,-1117,-18,-105,219,-205,-911,217,131,455,-16,-168,-15,-167,-204 -15940,,39019,"Carroll County, OH",County or equivalent,28836,28836,28804,28871,28560,28271,28187,-32,67,-311,-289,-84,59,310,243,270,264,42,288,302,289,281,17,22,-59,-19,-17,0,1,1,1,1,-43,18,-251,-242,-44,-43,19,-250,-241,-43,-6,26,-2,-29,-24 -15940,,39151,"Stark County, OH",County or equivalent,375586,375584,375398,374248,374844,375222,375736,-186,-1150,596,378,514,979,4090,4093,4076,4106,993,4116,3951,3932,3910,-14,-26,142,144,196,62,205,234,235,235,-224,-1135,233,137,263,-162,-930,467,372,498,-10,-194,-13,-138,-180 -15980,,,"Cape Coral-Fort Myers, FL",Metropolitan Statistical Area,618754,618754,620521,631412,644988,661336,679513,1767,10891,13576,16348,18177,1529,6266,6400,6352,6516,1468,6070,6056,6219,6568,61,196,344,133,-52,577,2847,2679,2906,2922,1200,7240,10509,13521,13517,1777,10087,13188,16427,16439,-71,608,44,-212,1790 -15980,,12071,"Lee County, FL",County or equivalent,618754,618754,620521,631412,644988,661336,679513,1767,10891,13576,16348,18177,1529,6266,6400,6352,6516,1468,6070,6056,6219,6568,61,196,344,133,-52,577,2847,2679,2906,2922,1200,7240,10509,13521,13517,1777,10087,13188,16427,16439,-71,608,44,-212,1790 -16020,,,"Cape Girardeau, MO-IL",Metropolitan Statistical Area,96275,96275,96421,97027,97235,97617,97929,146,606,208,382,312,268,1153,1198,1135,1150,202,1033,910,904,908,66,120,288,231,242,19,108,110,116,116,61,322,-178,23,-36,80,430,-68,139,80,0,56,-12,12,-10 -16020,,17003,"Alexander County, IL",County or equivalent,8238,8238,8206,8013,7750,7643,7492,-32,-193,-263,-107,-151,22,108,101,104,100,38,111,74,76,102,-16,-3,27,28,-2,0,5,5,5,5,-16,-197,-295,-106,-162,-16,-192,-290,-101,-157,0,2,0,-34,8 -16020,,29017,"Bollinger County, MO",County or equivalent,12363,12363,12345,12384,12405,12444,12394,-18,39,21,39,-50,34,146,161,118,133,24,136,125,133,118,10,10,36,-15,15,0,0,0,0,0,-26,37,-10,57,-59,-26,37,-10,57,-59,-2,-8,-5,-3,-6 -16020,,29031,"Cape Girardeau County, MO",County or equivalent,75674,75674,75870,76630,77080,77530,78043,196,760,450,450,513,212,899,936,913,917,140,786,711,695,688,72,113,225,218,229,19,103,105,111,111,103,482,127,72,185,122,585,232,183,296,2,62,-7,49,-12 -16060,,,"Carbondale-Marion, IL",Metropolitan Statistical Area,126575,126580,126819,127107,126984,127069,126685,239,288,-123,85,-384,354,1466,1434,1426,1432,222,1244,1230,1154,1178,132,222,204,272,254,65,287,291,326,326,45,-223,-619,-467,-892,110,64,-328,-141,-566,-3,2,1,-46,-72 -16060,,17077,"Jackson County, IL",County or equivalent,60218,60218,60386,60366,60214,59981,59677,168,-20,-152,-233,-304,170,661,678,633,631,74,484,479,429,431,96,177,199,204,200,59,261,265,297,297,18,-465,-624,-714,-786,77,-204,-359,-417,-489,-5,7,8,-20,-15 -16060,,17199,"Williamson County, IL",County or equivalent,66357,66362,66433,66741,66770,67088,67008,71,308,29,318,-80,184,805,756,793,801,148,760,751,725,747,36,45,5,68,54,6,26,26,29,29,27,242,5,247,-106,33,268,31,276,-77,2,-5,-7,-26,-57 -16180,,,"Carson City, NV",Metropolitan Statistical Area,55274,55274,55260,54747,54578,54061,54522,-14,-513,-169,-517,461,146,585,549,576,580,189,632,658,649,625,-43,-47,-109,-73,-45,3,-4,-1,4,3,37,-438,-47,-503,426,40,-442,-48,-499,429,-11,-24,-12,55,77 -16180,,32510,"Carson City, NV",County or equivalent,55274,55274,55260,54747,54578,54061,54522,-14,-513,-169,-517,461,146,585,549,576,580,189,632,658,649,625,-43,-47,-109,-73,-45,3,-4,-1,4,3,37,-438,-47,-503,426,40,-442,-48,-499,429,-11,-24,-12,55,77 -16220,,,"Casper, WY",Metropolitan Statistical Area,75450,75450,75466,76416,78686,81143,81624,16,950,2270,2457,481,258,1029,1044,1138,1183,186,664,657,688,713,72,365,387,450,470,10,38,40,43,43,-65,546,1793,1941,19,-55,584,1833,1984,62,-1,1,50,23,-51 -16220,,56025,"Natrona County, WY",County or equivalent,75450,75450,75466,76416,78686,81143,81624,16,950,2270,2457,481,258,1029,1044,1138,1183,186,664,657,688,713,72,365,387,450,470,10,38,40,43,43,-65,546,1793,1941,19,-55,584,1833,1984,62,-1,1,50,23,-51 -16300,,,"Cedar Rapids, IA",Metropolitan Statistical Area,257940,257940,258360,260862,261686,262348,263885,420,2502,824,662,1537,849,3134,3218,3193,3154,449,2032,2059,2041,2064,400,1102,1159,1152,1090,62,302,298,332,335,-32,1102,-603,-759,205,30,1404,-305,-427,540,-10,-4,-30,-63,-93 -16300,,19011,"Benton County, IA",County or equivalent,26076,26076,26059,26137,25861,25737,25680,-17,78,-276,-124,-57,76,290,249,276,260,86,224,193,233,224,-10,66,56,43,36,0,10,7,8,9,-8,6,-341,-178,-93,-8,16,-334,-170,-84,1,-4,2,3,-9 -16300,,19105,"Jones County, IA",County or equivalent,20638,20638,20685,20752,20619,20524,20454,47,67,-133,-95,-70,67,210,200,208,210,30,191,218,196,207,37,19,-18,12,3,0,7,7,7,7,14,46,-124,-92,-67,14,53,-117,-85,-60,-4,-5,2,-22,-13 -16300,,19113,"Linn County, IA",County or equivalent,211226,211226,211616,213973,215206,216087,217751,390,2357,1233,881,1664,706,2634,2769,2709,2684,333,1617,1648,1612,1633,373,1017,1121,1097,1051,62,285,284,317,319,-38,1050,-138,-489,365,24,1335,146,-172,684,-7,5,-34,-44,-71 -16540,,,"Chambersburg-Waynesboro, PA",Metropolitan Statistical Area,149618,149618,149908,151004,151589,152191,152892,290,1096,585,602,701,474,1892,1910,1770,1824,291,1392,1408,1453,1500,183,500,502,317,324,37,201,200,214,217,75,402,-107,-37,150,112,603,93,177,367,-5,-7,-10,108,10 -16540,,42055,"Franklin County, PA",County or equivalent,149618,149618,149908,151004,151589,152191,152892,290,1096,585,602,701,474,1892,1910,1770,1824,291,1392,1408,1453,1500,183,500,502,317,324,37,201,200,214,217,75,402,-107,-37,150,112,603,93,177,367,-5,-7,-10,108,10 -16580,,,"Champaign-Urbana, IL",Metropolitan Statistical Area,231891,231889,232250,233332,234514,236015,237252,361,1082,1182,1501,1237,648,2624,2753,2647,2662,366,1614,1512,1580,1610,282,1010,1241,1067,1052,399,1747,1751,1910,1913,-304,-1643,-1841,-1478,-1687,95,104,-90,432,226,-16,-32,31,2,-41 -16580,,17019,"Champaign County, IL",County or equivalent,201081,201081,201460,202706,204009,205761,207133,379,1246,1303,1752,1372,572,2339,2431,2366,2372,282,1247,1150,1230,1257,290,1092,1281,1136,1115,397,1739,1743,1901,1904,-297,-1532,-1753,-1287,-1602,100,207,-10,614,302,-11,-53,32,2,-45 -16580,,17053,"Ford County, IL",County or equivalent,14081,14081,14078,13954,13998,13814,13688,-3,-124,44,-184,-126,39,132,146,123,126,30,219,184,188,191,9,-87,-38,-65,-65,2,6,6,6,6,-12,-66,78,-138,-65,-10,-60,84,-132,-59,-2,23,-2,13,-2 -16580,,17147,"Piatt County, IL",County or equivalent,16729,16727,16712,16672,16507,16440,16431,-15,-40,-165,-67,-9,37,153,176,158,164,54,148,178,162,162,-17,5,-2,-4,2,0,2,2,3,3,5,-45,-166,-53,-20,5,-43,-164,-50,-17,-3,-2,1,-13,6 -16620,,,"Charleston, WV",Metropolitan Statistical Area,227078,227071,227000,225879,225800,224683,222878,-71,-1121,-79,-1117,-1805,726,2523,2645,2556,2542,682,2926,2718,2838,2851,44,-403,-73,-282,-309,16,56,82,72,70,-106,-790,-74,-777,-1412,-90,-734,8,-705,-1342,-25,16,-14,-130,-154 -16620,,54005,"Boone County, WV",County or equivalent,24629,24627,24612,24474,24397,24087,23714,-15,-138,-77,-310,-373,99,306,271,253,242,68,360,304,263,290,31,-54,-33,-10,-48,0,-1,-1,-1,-1,-41,-98,-39,-271,-312,-41,-99,-40,-272,-313,-5,15,-4,-28,-12 -16620,,54015,"Clay County, WV",County or equivalent,9386,9386,9359,9378,9251,9202,8941,-27,19,-127,-49,-261,27,120,110,117,111,32,101,108,109,111,-5,19,2,8,0,0,-2,-2,-2,-2,-21,-19,-129,-59,-268,-21,-21,-131,-61,-270,-1,21,2,4,9 -16620,,54039,"Kanawha County, WV",County or equivalent,193063,193058,193029,192027,192152,191394,190223,-29,-1002,125,-758,-1171,600,2097,2264,2186,2189,582,2465,2306,2466,2450,18,-368,-42,-280,-261,16,59,85,75,73,-44,-673,94,-447,-832,-28,-614,179,-372,-759,-19,-20,-12,-106,-151 -16700,,,"Charleston-North Charleston, SC",Metropolitan Statistical Area,664607,664643,667724,681482,697435,712081,727689,3081,13758,15953,14646,15608,2388,9032,9188,9189,9336,1155,4887,4899,5099,5290,1233,4145,4289,4090,4046,284,647,1589,1161,1019,1489,8192,9866,8918,10000,1773,8839,11455,10079,11019,75,774,209,477,543 -16700,,45015,"Berkeley County, SC",County or equivalent,177843,177850,178934,183664,189493,193881,198205,1084,4730,5829,4388,4324,624,2487,2587,2644,2632,223,1137,1177,1252,1276,401,1350,1410,1392,1356,108,150,661,423,340,545,2811,3699,2526,2433,653,2961,4360,2949,2773,30,419,59,47,195 -16700,,45019,"Charleston County, SC",County or equivalent,350209,350204,351235,357737,365472,372913,381015,1031,6502,7735,7441,8102,1276,4784,4760,4731,4841,757,2886,2816,2917,3056,519,1898,1944,1814,1785,116,356,627,527,489,371,4108,5030,4722,5578,487,4464,5657,5249,6067,25,140,134,378,250 -16700,,45035,"Dorchester County, SC",County or equivalent,136555,136589,137555,140081,142470,145287,148469,966,2526,2389,2817,3182,488,1761,1841,1814,1863,175,864,906,930,958,313,897,935,884,905,60,141,301,211,190,573,1273,1137,1670,1989,633,1414,1438,1881,2179,20,215,16,52,98 -16740,,,"Charlotte-Concord-Gastonia, NC-SC",Metropolitan Statistical Area,2217012,2217248,2223894,2257149,2295879,2337339,2380314,6646,33255,38730,41460,42975,7477,29293,29282,29395,29696,3834,16338,16326,17371,17446,3643,12955,12956,12024,12250,1187,5324,5127,5709,5767,1841,14413,20453,22501,24097,3028,19737,25580,28210,29864,-25,563,194,1226,861 -16740,,37025,"Cabarrus County, NC",County or equivalent,178011,178182,178687,181336,184487,187661,192103,505,2649,3151,3174,4442,612,2326,2273,2311,2319,384,1386,1406,1445,1451,228,940,867,866,868,59,222,200,225,234,231,1456,2074,2061,3208,290,1678,2274,2286,3442,-13,31,10,22,132 -16740,,37071,"Gaston County, NC",County or equivalent,206086,206083,206091,206982,208204,209492,211127,8,891,1222,1288,1635,642,2597,2574,2453,2486,551,2055,2120,2232,2182,91,542,454,221,304,49,193,177,197,201,-126,185,624,759,1099,-77,378,801,956,1300,-6,-29,-33,111,31 -16740,,37097,"Iredell County, NC",County or equivalent,159437,159440,159820,161099,162724,164676,166675,380,1279,1625,1952,1999,459,1813,1688,1777,1764,291,1391,1433,1468,1473,168,422,255,309,291,50,182,175,200,201,168,676,1201,1335,1426,218,858,1376,1535,1627,-6,-1,-6,108,81 -16740,,37109,"Lincoln County, NC",County or equivalent,78265,78265,78409,78541,78973,79451,79829,144,132,432,478,378,200,772,777,752,746,170,694,676,718,740,30,78,101,34,6,10,49,41,43,49,104,27,291,370,319,114,76,332,413,368,0,-22,-1,31,4 -16740,,37119,"Mecklenburg County, NC",County or equivalent,919628,919666,923413,945257,968779,992514,1012539,3747,21844,23522,23735,20025,3499,13728,13792,13941,14113,1124,5232,5134,5563,5789,2375,8496,8658,8378,8324,911,4221,4105,4530,4555,468,8875,10537,10086,7094,1379,13096,14642,14616,11649,-7,252,222,741,52 -16740,,37159,"Rowan County, NC",County or equivalent,138428,138442,138329,138043,137915,138313,138630,-113,-286,-128,398,317,399,1541,1530,1562,1567,410,1449,1441,1624,1524,-11,92,89,-62,43,13,87,80,91,95,-110,-528,-284,286,236,-97,-441,-204,377,331,-5,63,-13,83,-57 -16740,,37179,"Union County, NC",County or equivalent,201292,201307,202171,205109,208393,212696,218568,864,2938,3284,4303,5872,643,2367,2382,2368,2384,300,1214,1157,1270,1239,343,1153,1225,1098,1145,49,188,170,208,214,467,1546,1889,2928,4367,516,1734,2059,3136,4581,5,51,0,69,146 -16740,,45023,"Chester County, SC",County or equivalent,33140,33140,33116,32841,32645,32601,32337,-24,-275,-196,-44,-264,90,382,456,391,407,49,383,358,400,403,41,-1,98,-9,4,0,-4,-4,-4,-4,-58,-259,-297,-35,-255,-58,-263,-301,-39,-259,-7,-11,7,4,-9 -16740,,45057,"Lancaster County, SC",County or equivalent,76652,76652,76945,77758,79193,80520,83160,293,813,1435,1327,2640,193,926,881,901,927,130,748,760,791,797,63,178,121,110,130,4,20,19,21,22,228,493,1301,1223,2248,232,513,1320,1244,2270,-2,122,-6,-27,240 -16740,,45091,"York County, SC",County or equivalent,226073,226071,226913,230183,234566,239415,245346,842,3270,4383,4849,5931,740,2841,2929,2939,2983,425,1786,1841,1860,1848,315,1055,1088,1079,1135,42,166,164,198,200,469,1942,3117,3488,4355,511,2108,3281,3686,4555,16,107,14,84,241 -16820,,,"Charlottesville, VA",Metropolitan Statistical Area,218705,218710,219076,221339,223151,224778,226968,366,2263,1812,1627,2190,632,2376,2392,2441,2450,478,1641,1629,1684,1705,154,735,763,757,745,195,807,841,877,886,28,472,227,16,471,223,1279,1068,893,1357,-11,249,-19,-23,88 -16820,,51003,"Albemarle County, VA",County or equivalent,98970,98998,99214,100667,102030,103014,104489,216,1453,1363,984,1475,271,1081,1050,1072,1080,203,694,733,784,800,68,387,317,288,280,91,376,391,410,418,64,535,673,290,683,155,911,1064,700,1101,-7,155,-18,-4,94 -16820,,51029,"Buckingham County, VA",County or equivalent,17146,17143,17107,17170,17043,17127,16913,-36,63,-127,84,-214,37,163,161,178,172,54,165,153,141,148,-17,-2,8,37,24,1,4,4,4,4,-18,54,-142,32,-235,-17,58,-138,36,-231,-2,7,3,11,-7 -16820,,51065,"Fluvanna County, VA",County or equivalent,25691,25704,25773,26002,25943,25916,26092,69,229,-59,-27,176,81,279,265,260,250,54,194,191,194,187,27,85,74,66,63,1,7,7,8,8,42,136,-138,-117,98,43,143,-131,-109,106,-1,1,-2,16,7 -16820,,51079,"Greene County, VA",County or equivalent,18403,18410,18455,18696,18807,18839,19031,45,241,111,32,192,55,205,236,211,221,44,146,131,149,136,11,59,105,62,85,2,12,12,12,12,31,144,-2,-50,104,33,156,10,-38,116,1,26,-4,8,-9 -16820,,51125,"Nelson County, VA",County or equivalent,15020,15020,14981,15034,14807,14789,14850,-39,53,-227,-18,61,30,141,128,130,130,68,186,172,166,150,-38,-45,-44,-36,-20,0,5,5,5,5,1,96,-192,36,91,1,101,-187,41,96,-2,-3,4,-23,-15 -16820,,51540,"Charlottesville city, VA",County or equivalent,43475,43435,43546,43770,44521,45093,45593,111,224,751,572,500,158,507,552,590,597,55,256,249,250,284,103,251,303,340,313,100,403,422,438,439,-92,-493,28,-175,-270,8,-90,450,263,169,0,63,-2,-31,18 -16860,,,"Chattanooga, TN-GA",Metropolitan Statistical Area,528143,528145,529103,533162,537997,542161,544559,958,4059,4835,4164,2398,1468,6058,6312,6320,6299,1193,4906,5216,5357,5375,275,1152,1096,963,924,120,524,538,598,600,553,2389,3111,2592,1046,673,2913,3649,3190,1646,10,-6,90,11,-172 -16860,,13047,"Catoosa County, GA",County or equivalent,63942,63940,64020,64839,64961,65335,65621,80,819,122,374,286,173,707,778,791,747,85,497,559,553,558,88,210,219,238,189,9,18,19,25,25,-6,490,-118,77,40,3,508,-99,102,65,-11,101,2,34,32 -16860,,13083,"Dade County, GA",County or equivalent,16633,16633,16630,16591,16551,16502,16389,-3,-39,-40,-49,-113,40,147,205,178,185,29,141,155,191,179,11,6,50,-13,6,1,4,5,5,5,-13,-44,-96,-33,-135,-12,-40,-91,-28,-130,-2,-5,1,-8,11 -16860,,13295,"Walker County, GA",County or equivalent,68756,68756,68889,68618,68184,68317,68218,133,-271,-434,133,-99,180,716,735,750,742,123,615,699,775,737,57,101,36,-25,5,5,7,7,8,8,66,-413,-474,168,-58,71,-406,-467,176,-50,5,34,-3,-18,-54 -16860,,47065,"Hamilton County, TN",County or equivalent,336463,336465,337197,340755,345657,349030,351220,732,3558,4902,3373,2190,967,4048,4120,4203,4208,837,3190,3326,3353,3409,130,858,794,850,799,106,497,512,562,564,474,2347,3498,1925,988,580,2844,4010,2487,1552,22,-144,98,36,-161 -16860,,47115,"Marion County, TN",County or equivalent,28237,28232,28236,28082,28227,28353,28407,4,-154,145,126,54,72,285,309,295,304,100,314,329,325,328,-28,-29,-20,-30,-24,0,2,0,2,2,33,-109,163,165,92,33,-107,163,167,94,-1,-18,2,-11,-16 -16860,,47153,"Sequatchie County, TN",County or equivalent,14112,14119,14131,14277,14417,14624,14704,12,146,140,207,80,36,155,165,103,113,19,149,148,160,164,17,6,17,-57,-51,-1,-4,-5,-4,-4,-1,118,138,290,119,-2,114,133,286,115,-3,26,-10,-22,16 -16940,,,"Cheyenne, WY",Metropolitan Statistical Area,91738,91881,92199,92607,94849,96015,96389,318,408,2242,1166,374,289,1289,1220,1272,1266,234,769,718,733,762,55,520,502,539,504,46,38,232,129,102,212,-110,1459,448,-172,258,-72,1691,577,-70,5,-40,49,50,-60 -16940,,56021,"Laramie County, WY",County or equivalent,91738,91881,92199,92607,94849,96015,96389,318,408,2242,1166,374,289,1289,1220,1272,1266,234,769,718,733,762,55,520,502,539,504,46,38,232,129,102,212,-110,1459,448,-172,258,-72,1691,577,-70,5,-40,49,50,-60 -16980,,,"Chicago-Naperville-Elgin, IL-IN-WI",Metropolitan Statistical Area,9461105,9461537,9470069,9493464,9519316,9544796,9554598,8532,23395,25852,25480,9802,31106,123700,122181,119903,119405,16097,66706,67091,69487,70059,15009,56994,55090,50416,49346,4508,24319,24867,27216,27410,-10935,-57441,-53677,-49798,-65815,-6427,-33122,-28810,-22582,-38405,-50,-477,-428,-2354,-1139 -16980,16974,,"Chicago-Naperville-Arlington Heights, IL",Metropolitan Division,7262718,7263140,7269907,7293395,7317530,7338906,7343641,6767,23488,24135,21376,4735,24227,96712,95390,93895,93482,12241,51617,51533,53425,53967,11986,45095,43857,40470,39515,3952,21778,21354,23951,24185,-9074,-42371,-40514,-40294,-58428,-5122,-20593,-19160,-16343,-34243,-97,-1014,-562,-2751,-537 -16980,16974,17031,"Cook County, IL",County or equivalent,5194675,5195060,5198716,5214988,5232340,5246635,5246456,3656,16272,17352,14295,-179,18021,72006,70850,70010,69752,9365,39055,38979,40537,40954,8656,32951,31871,29473,28798,3187,17600,17247,19325,19520,-8083,-33416,-31101,-31313,-48625,-4896,-15816,-13854,-11988,-29105,-104,-863,-665,-3190,128 -16980,16974,17043,"DuPage County, IL",County or equivalent,916924,916896,917911,923352,926933,931522,932708,1015,5441,3581,4589,1186,2578,10755,10751,10452,10447,1367,5872,5880,5978,6120,1211,4883,4871,4474,4327,512,2806,2790,3124,3145,-708,-1924,-4104,-2995,-5878,-196,882,-1314,129,-2733,0,-324,24,-14,-408 -16980,16974,17063,"Grundy County, IL",County or equivalent,50063,50063,50098,50045,50150,50149,50425,35,-53,105,-1,276,158,637,632,620,602,68,380,385,405,372,90,257,247,215,230,0,3,2,4,4,-53,-322,-148,-240,4,-53,-319,-146,-236,8,-2,9,4,20,38 -16980,16974,17093,"Kendall County, IL",County or equivalent,114736,114735,115240,116711,118145,119525,121350,505,1471,1434,1380,1825,437,1727,1695,1721,1660,143,494,487,510,493,294,1233,1208,1211,1167,18,94,83,100,101,185,107,161,53,560,203,201,244,153,661,8,37,-18,16,-3 -16980,16974,17111,"McHenry County, IL",County or equivalent,308760,308826,309114,307899,307775,307367,307283,288,-1215,-124,-408,-84,878,3376,3345,3186,3167,493,1912,1908,1900,1868,385,1464,1437,1286,1299,58,309,303,353,359,-163,-3134,-1903,-2204,-1623,-105,-2825,-1600,-1851,-1264,8,146,39,157,-119 -16980,16974,17197,"Will County, IL",County or equivalent,677560,677560,678828,680400,682187,683708,685419,1268,1572,1787,1521,1711,2155,8211,8117,7906,7854,805,3904,3894,4095,4160,1350,4307,4223,3811,3694,177,966,929,1045,1056,-252,-3682,-3419,-3595,-2866,-75,-2716,-2490,-2550,-1810,-7,-19,54,260,-173 -16980,20994,,"Elgin, IL",Metropolitan Division,620429,620462,621139,624443,626536,629079,632768,677,3304,2093,2543,3689,2074,8374,8181,7903,7878,929,3469,3571,3834,3798,1145,4905,4610,4069,4080,115,825,751,877,922,-604,-2864,-3322,-2723,-1364,-489,-2039,-2571,-1846,-442,21,438,54,320,51 -16980,20994,17037,"DeKalb County, IL",County or equivalent,105160,105160,105119,104520,104693,104802,105462,-41,-599,173,109,660,292,1269,1200,1178,1178,191,675,687,702,683,101,594,513,476,495,51,194,187,206,212,-204,-1384,-535,-610,-69,-153,-1190,-348,-404,143,11,-3,8,37,22 -16980,20994,17089,"Kane County, IL",County or equivalent,515269,515302,516020,519923,521843,524277,527306,718,3903,1920,2434,3029,1782,7105,6981,6725,6700,738,2794,2884,3132,3115,1044,4311,4097,3593,3585,64,631,564,671,710,-400,-1480,-2787,-2113,-1295,-336,-849,-2223,-1442,-585,10,441,46,283,29 -16980,23844,,"Gary, IN",Metropolitan Division,708070,708100,708305,707793,706385,705290,704935,205,-512,-1408,-1095,-355,2238,8408,8538,8206,8156,1642,6264,6338,6596,6688,596,2144,2200,1610,1468,63,327,342,398,408,-446,-2882,-3953,-2904,-1909,-383,-2555,-3611,-2506,-1501,-8,-101,3,-199,-322 -16980,23844,18073,"Jasper County, IN",County or equivalent,33478,33478,33502,33402,33453,33381,33475,24,-100,51,-72,94,100,376,404,396,388,111,276,302,341,314,-11,100,102,55,74,0,3,3,4,4,39,-204,-50,-137,22,39,-201,-47,-133,26,-4,1,-4,6,-6 -16980,23844,18089,"Lake County, IN",County or equivalent,496005,496031,496055,494820,493194,491403,490228,24,-1235,-1626,-1791,-1175,1704,6188,6133,5934,5848,1175,4533,4521,4712,4753,529,1655,1612,1222,1095,30,217,231,272,281,-536,-3079,-3477,-3093,-2258,-506,-2862,-3246,-2821,-1977,1,-28,8,-192,-293 -16980,23844,18111,"Newton County, IN",County or equivalent,14244,14244,14257,14129,14079,14079,14156,13,-128,-50,0,77,44,139,155,151,153,39,177,149,139,137,5,-38,6,12,16,2,5,6,6,6,7,-95,-60,-1,60,9,-90,-54,5,66,-1,0,-2,-17,-5 -16980,23844,18127,"Porter County, IN",County or equivalent,164343,164347,164491,165442,165659,166427,167076,144,951,217,768,649,390,1705,1846,1725,1767,317,1278,1366,1404,1484,73,427,480,321,283,31,102,102,116,117,44,496,-366,327,267,75,598,-264,443,384,-4,-74,1,4,-18 -16980,29404,,"Lake County-Kenosha County, IL-WI",Metropolitan Division,869888,869835,870718,867833,868865,871521,873254,883,-2885,1032,2656,1733,2567,10206,10072,9899,9889,1285,5356,5649,5632,5606,1282,4850,4423,4267,4283,378,1389,2420,1990,1895,-811,-9324,-5888,-3877,-4114,-433,-7935,-3468,-1887,-2219,34,200,77,276,-331 -16980,29404,17097,"Lake County, IL",County or equivalent,703462,703409,704141,701012,701513,704000,705186,732,-3129,501,2487,1186,2084,8170,8125,7943,7950,1023,4026,4256,4352,4339,1061,4144,3869,3591,3611,352,1324,2326,1899,1806,-717,-8802,-5780,-3229,-3983,-365,-7478,-3454,-1330,-2177,36,205,86,226,-248 -16980,29404,55059,"Kenosha County, WI",County or equivalent,166426,166426,166577,166821,167352,167521,168068,151,244,531,169,547,483,2036,1947,1956,1939,262,1330,1393,1280,1267,221,706,554,676,672,26,65,94,91,89,-94,-522,-108,-648,-131,-68,-457,-14,-557,-42,-2,-5,-9,50,-83 -17020,,,"Chico, CA",Metropolitan Statistical Area,220000,220000,219924,220025,221279,222420,224241,-76,101,1254,1141,1821,576,2439,2399,2377,2409,526,2179,2245,2275,2287,50,260,154,102,122,57,230,247,269,274,-180,-267,873,606,1404,-123,-37,1120,875,1678,-3,-122,-20,164,21 -17020,,6007,"Butte County, CA",County or equivalent,220000,220000,219924,220025,221279,222420,224241,-76,101,1254,1141,1821,576,2439,2399,2377,2409,526,2179,2245,2275,2287,50,260,154,102,122,57,230,247,269,274,-180,-267,873,606,1404,-123,-37,1120,875,1678,-3,-122,-20,164,21 -17140,,,"Cincinnati, OH-KY-IN",Metropolitan Statistical Area,2114580,2114755,2117863,2123332,2129786,2138536,2149449,3108,5469,6454,8750,10913,6755,27567,27479,27767,27504,3989,18100,18177,18340,18739,2766,9467,9302,9427,8765,731,3276,3350,3604,3606,-339,-7113,-6102,-3833,-947,392,-3837,-2752,-229,2659,-50,-161,-96,-448,-511 -17140,,18029,"Dearborn County, IN",County or equivalent,50047,50047,50093,50020,49782,49799,49506,46,-73,-238,17,-293,122,549,530,533,525,75,465,458,419,421,47,84,72,114,104,5,14,14,18,18,-5,-161,-327,-81,-391,0,-147,-313,-63,-373,-1,-10,3,-34,-24 -17140,,18115,"Ohio County, IN",County or equivalent,6128,6128,6108,6084,6103,6035,6035,-20,-24,19,-68,0,11,52,53,66,66,7,63,51,61,72,4,-11,2,5,-6,0,0,0,0,0,-24,-19,19,-71,-10,-24,-19,19,-71,-10,0,6,-2,-2,16 -17140,,18161,"Union County, IN",County or equivalent,7516,7516,7538,7477,7340,7309,7246,22,-61,-137,-31,-63,25,80,72,70,65,8,73,59,59,61,17,7,13,11,4,0,0,0,0,0,7,-71,-154,-41,-76,7,-71,-154,-41,-76,-2,3,4,-1,9 -17140,,21015,"Boone County, KY",County or equivalent,118811,118811,119306,121640,123258,124535,126413,495,2334,1618,1277,1878,386,1646,1719,1770,1761,140,700,692,835,834,246,946,1027,935,927,86,305,306,323,323,157,1079,295,106,579,243,1384,601,429,902,6,4,-10,-87,49 -17140,,21023,"Bracken County, KY",County or equivalent,8488,8488,8494,8493,8464,8440,8406,6,-1,-29,-24,-34,15,106,104,117,110,7,93,88,83,106,8,13,16,34,4,1,2,2,3,3,0,-18,-45,-56,-49,1,-16,-43,-53,-46,-3,2,-2,-5,8 -17140,,21037,"Campbell County, KY",County or equivalent,90336,90336,90726,91220,91175,91385,91833,390,494,-45,210,448,309,1153,1187,1158,1149,186,768,867,867,856,123,385,320,291,293,12,104,106,121,121,240,57,-471,-155,57,252,161,-365,-34,178,15,-52,0,-47,-23 -17140,,21077,"Gallatin County, KY",County or equivalent,8589,8589,8608,8576,8491,8504,8589,19,-32,-85,13,85,26,121,107,116,111,9,96,104,60,71,17,25,3,56,40,4,2,1,1,1,-2,-64,-88,-23,35,2,-62,-87,-22,36,0,5,-1,-21,9 -17140,,21081,"Grant County, KY",County or equivalent,24662,24662,24682,24713,24491,24576,24875,20,31,-222,85,299,86,353,385,335,339,30,186,229,225,214,56,167,156,110,125,-1,-4,-2,-3,-3,-34,-146,-381,-35,168,-35,-150,-383,-38,165,-1,14,5,13,9 -17140,,21117,"Kenton County, KY",County or equivalent,159720,159721,160023,160583,161671,163367,163929,302,560,1088,1696,562,559,2386,2287,2423,2364,304,1343,1395,1380,1377,255,1043,892,1043,987,25,131,136,137,138,25,-570,75,513,-489,50,-439,211,650,-351,-3,-44,-15,3,-74 -17140,,21191,"Pendleton County, KY",County or equivalent,14877,14876,14922,14669,14547,14579,14493,46,-253,-122,32,-86,51,162,151,180,170,17,155,160,131,148,34,7,-9,49,22,0,0,0,0,0,15,-259,-113,-19,-106,15,-259,-113,-19,-106,-3,-1,0,2,-2 -17140,,39015,"Brown County, OH",County or equivalent,44846,44846,44886,44678,44404,44235,44116,40,-208,-274,-169,-119,138,510,524,501,510,89,484,449,450,465,49,26,75,51,45,0,-2,-2,-2,-2,-7,-229,-354,-212,-154,-7,-231,-356,-214,-156,-2,-3,7,-6,-8 -17140,,39017,"Butler County, OH",County or equivalent,368130,368130,369056,370210,370833,371511,374158,926,1154,623,678,2647,1162,4567,4479,4713,4572,630,3037,2995,2974,3186,532,1530,1484,1739,1386,161,704,716,769,776,236,-1103,-1594,-1880,531,397,-399,-878,-1111,1307,-3,23,17,50,-46 -17140,,39025,"Clermont County, OH",County or equivalent,197363,197363,197638,198581,199219,200254,201560,275,943,638,1035,1306,560,2459,2379,2307,2357,417,1551,1524,1579,1574,143,908,855,728,783,31,123,117,125,125,132,-14,-326,87,376,163,109,-209,212,501,-31,-74,-8,95,22 -17140,,39061,"Hamilton County, OH",County or equivalent,802374,802374,802298,800648,802355,804429,806631,-76,-1650,1707,2074,2202,2686,10918,11091,11042,11009,1738,7710,7621,7590,7718,948,3208,3470,3452,3291,319,1552,1604,1731,1726,-1318,-6189,-3318,-2783,-2290,-999,-4637,-1714,-1052,-564,-25,-221,-49,-326,-525 -17140,,39165,"Warren County, OH",County or equivalent,212693,212868,213485,215740,217653,219578,221659,617,2255,1913,1925,2081,619,2505,2411,2436,2396,332,1376,1485,1627,1636,287,1129,926,809,760,88,345,352,381,380,239,594,680,817,872,327,939,1032,1198,1252,3,187,-45,-82,69 -17300,,,"Clarksville, TN-KY",Metropolitan Statistical Area,260625,260610,261814,264611,275522,273453,278353,1204,2797,10911,-2069,4900,1304,4631,5148,5266,5154,467,1783,1843,1948,1922,837,2848,3305,3318,3232,289,479,2540,1242,1060,55,-563,4910,-6781,550,344,-84,7450,-5539,1610,23,33,156,152,58 -17300,,21047,"Christian County, KY",County or equivalent,73955,73939,74213,73640,75770,74422,74250,274,-573,2130,-1348,-172,432,1496,1499,1606,1533,97,583,612,609,595,335,913,887,997,938,119,147,964,436,360,-181,-1647,253,-2854,-1480,-62,-1500,1217,-2418,-1120,1,14,26,73,10 -17300,,21221,"Trigg County, KY",County or equivalent,14339,14334,14346,14202,14392,14302,14142,12,-144,190,-90,-160,30,138,153,143,143,61,169,142,178,158,-31,-31,11,-35,-15,0,0,0,0,0,46,-130,178,-40,-147,46,-130,178,-40,-147,-3,17,1,-15,2 -17300,,47125,"Montgomery County, TN",County or equivalent,172331,172337,173255,176769,185360,184729,189961,918,3514,8591,-631,5232,842,2997,3496,3517,3478,309,1031,1089,1161,1169,533,1966,2407,2356,2309,170,332,1576,806,700,190,1214,4479,-3887,2177,360,1546,6055,-3081,2877,25,2,129,94,46 -17420,,,"Cleveland, TN",Metropolitan Statistical Area,115788,115788,115965,116657,117730,118537,119705,177,692,1073,807,1168,332,1240,1343,1304,1333,245,1169,1158,1134,1157,87,71,185,170,176,20,111,106,119,120,73,525,764,473,837,93,636,870,592,957,-3,-15,18,45,35 -17420,,47011,"Bradley County, TN",County or equivalent,98963,98963,99142,99911,101117,101873,102975,179,769,1206,756,1102,285,1091,1201,1161,1181,197,952,938,920,954,88,139,263,241,227,21,113,108,120,121,70,523,815,357,746,91,636,923,477,867,0,-6,20,38,8 -17420,,47139,"Polk County, TN",County or equivalent,16825,16825,16823,16746,16613,16664,16730,-2,-77,-133,51,66,47,149,142,143,152,48,217,220,214,203,-1,-68,-78,-71,-51,-1,-2,-2,-1,-1,3,2,-51,116,91,2,0,-53,115,90,-3,-9,-2,7,27 -17460,,,"Cleveland-Elyria, OH",Metropolitan Statistical Area,2077240,2077246,2075558,2068399,2064570,2065328,2063598,-1688,-7159,-3829,758,-1730,5797,23602,23108,22964,23033,5130,21073,21149,20509,20585,667,2529,1959,2455,2448,714,3619,3760,3960,3957,-3116,-13160,-9556,-4794,-7798,-2402,-9541,-5796,-834,-3841,47,-147,8,-863,-337 -17460,,39035,"Cuyahoga County, OH",County or equivalent,1280122,1280109,1278172,1269839,1265889,1263837,1259828,-1937,-8333,-3950,-2052,-4009,3766,15033,14886,14774,14801,3273,13780,13883,13278,13316,493,1253,1003,1496,1485,564,2909,3015,3189,3185,-3062,-12412,-7945,-5653,-8439,-2498,-9503,-4930,-2464,-5254,68,-83,-23,-1084,-240 -17460,,39055,"Geauga County, OH",County or equivalent,93389,93410,93422,93403,93917,94059,94295,12,-19,514,142,236,240,922,930,933,956,219,739,735,768,757,21,183,195,165,199,12,53,53,58,58,-22,-280,260,-106,14,-10,-227,313,-48,72,1,25,6,25,-35 -17460,,39085,"Lake County, OH",County or equivalent,230041,230038,229993,229787,229365,229634,229230,-45,-206,-422,269,-404,571,2374,2210,2184,2204,543,2383,2337,2262,2366,28,-9,-127,-78,-162,28,121,130,144,145,-98,-212,-425,231,-390,-70,-91,-295,375,-245,-3,-106,0,-28,3 -17460,,39093,"Lorain County, OH",County or equivalent,301356,301356,301478,301932,301695,303006,304216,122,454,-237,1311,1210,821,3464,3323,3388,3340,713,2890,2780,2830,2794,108,574,543,558,546,74,404,420,425,425,-57,-538,-1231,192,329,17,-134,-811,617,754,-3,14,31,136,-90 -17460,,39103,"Medina County, OH",County or equivalent,172332,172333,172493,173438,173704,174792,176029,160,945,266,1088,1237,399,1809,1759,1685,1732,382,1281,1414,1371,1352,17,528,345,314,380,36,132,142,144,144,123,282,-215,542,688,159,414,-73,686,832,-16,3,-6,88,25 -17660,,,"Coeur d'Alene, ID",Metropolitan Statistical Area,138494,138494,138890,141045,142297,144357,147326,396,2155,1252,2060,2969,398,1733,1685,1739,1745,252,1237,1230,1190,1242,146,496,455,549,503,15,36,42,46,47,225,1545,778,1562,2135,240,1581,820,1608,2182,10,78,-23,-97,284 -17660,,16055,"Kootenai County, ID",County or equivalent,138494,138494,138890,141045,142297,144357,147326,396,2155,1252,2060,2969,398,1733,1685,1739,1745,252,1237,1230,1190,1242,146,496,455,549,503,15,36,42,46,47,225,1545,778,1562,2135,240,1581,820,1608,2182,10,78,-23,-97,284 -17780,,,"College Station-Bryan, TX",Metropolitan Statistical Area,228660,228660,229478,231578,234373,238245,242905,818,2100,2795,3872,4660,766,3008,2982,3008,3028,326,1203,1246,1271,1308,440,1805,1736,1737,1720,326,1400,1380,1512,1518,63,-1130,-305,587,1321,389,270,1075,2099,2839,-11,25,-16,36,101 -17780,,48041,"Brazos County, TX",County or equivalent,194851,194851,195680,197649,200567,204621,209152,829,1969,2918,4054,4531,662,2613,2589,2615,2634,228,825,869,921,973,434,1788,1720,1694,1661,323,1377,1364,1492,1497,78,-1238,-150,845,1262,401,139,1214,2337,2759,-6,42,-16,23,111 -17780,,48051,"Burleson County, TX",County or equivalent,17187,17187,17210,17236,17316,17163,17253,23,26,80,-153,90,44,184,188,194,187,24,193,189,194,182,20,-9,-1,0,5,4,14,7,8,9,4,25,73,-176,86,8,39,80,-168,95,-5,-4,1,15,-10 -17780,,48395,"Robertson County, TX",County or equivalent,16622,16622,16588,16693,16490,16461,16500,-34,105,-203,-29,39,60,211,205,199,207,74,185,188,156,153,-14,26,17,43,54,-1,9,9,12,12,-19,83,-228,-82,-27,-20,92,-219,-70,-15,0,-13,-1,-2,0 -17820,,,"Colorado Springs, CO",Metropolitan Statistical Area,645613,645611,650351,660278,669100,678711,686908,4740,9927,8822,9611,8197,2308,9455,9319,9292,9476,878,3807,3914,4255,4323,1430,5648,5405,5037,5153,427,892,2803,1865,1571,2710,3450,669,2419,1511,3137,4342,3472,4284,3082,173,-63,-55,290,-38 -17820,,8041,"El Paso County, CO",County or equivalent,622263,622261,626895,636944,645724,655453,663519,4634,10049,8780,9729,8066,2253,9232,9166,9118,9305,852,3675,3771,4114,4178,1401,5557,5395,5004,5127,426,896,2807,1869,1575,2636,3682,623,2528,1406,3062,4578,3430,4397,2981,171,-86,-45,328,-42 -17820,,8119,"Teller County, CO",County or equivalent,23350,23350,23456,23334,23376,23258,23389,106,-122,42,-118,131,55,223,153,174,171,26,132,143,141,145,29,91,10,33,26,1,-4,-4,-4,-4,74,-232,46,-109,105,75,-236,42,-113,101,2,23,-10,-38,4 -17860,,,"Columbia, MO",Metropolitan Statistical Area,162642,162642,163182,165922,168592,170929,172717,540,2740,2670,2337,1788,481,2069,2118,2160,2187,296,942,953,1043,1030,185,1127,1165,1117,1157,146,586,608,661,662,199,1042,876,468,-6,345,1628,1484,1129,656,10,-15,21,91,-25 -17860,,29019,"Boone County, MO",County or equivalent,162642,162642,163182,165922,168592,170929,172717,540,2740,2670,2337,1788,481,2069,2118,2160,2187,296,942,953,1043,1030,185,1127,1165,1117,1157,146,586,608,661,662,199,1042,876,468,-6,345,1628,1484,1129,656,10,-15,21,91,-25 -17900,,,"Columbia, SC",Metropolitan Statistical Area,767598,767477,769661,776630,784279,792422,800495,2184,6969,7649,8143,8073,2419,9462,9475,9405,9445,1565,5965,6073,6461,6478,854,3497,3402,2944,2967,421,1302,1945,1632,1555,889,2215,2362,3168,3469,1310,3517,4307,4800,5024,20,-45,-60,399,82 -17900,,45017,"Calhoun County, SC",County or equivalent,15175,15176,15106,15170,14922,15078,14878,-70,64,-248,156,-200,39,145,168,134,140,73,157,155,152,180,-34,-12,13,-18,-40,0,0,0,0,0,-36,54,-265,169,-154,-36,54,-265,169,-154,0,22,4,5,-6 -17900,,45039,"Fairfield County, SC",County or equivalent,23956,23956,23843,23576,23371,23143,22976,-113,-267,-205,-228,-167,61,233,242,227,221,100,271,264,278,279,-39,-38,-22,-51,-58,1,11,11,13,13,-77,-240,-193,-179,-106,-76,-229,-182,-166,-93,2,0,-1,-11,-16 -17900,,45055,"Kershaw County, SC",County or equivalent,61697,61570,61678,62034,62232,62604,63161,108,356,198,372,557,189,725,712,703,710,195,547,593,665,678,-6,178,119,38,32,8,31,51,42,42,101,174,34,251,485,109,205,85,293,527,5,-27,-6,41,-2 -17900,,45063,"Lexington County, SC",County or equivalent,262391,262396,263325,266383,270114,273604,277888,929,3058,3731,3490,4284,839,3296,3189,3310,3273,607,2172,2128,2218,2202,232,1124,1061,1092,1071,84,399,412,439,444,606,1536,2274,1779,2624,690,1935,2686,2218,3068,7,-1,-16,180,145 -17900,,45079,"Richland County, SC",County or equivalent,384504,384507,385800,389600,393677,397893,401566,1293,3800,4077,4216,3673,1226,4823,4893,4805,4860,564,2616,2720,2972,2956,662,2207,2173,1833,1904,329,849,1467,1131,1048,293,808,470,1052,743,622,1657,1937,2183,1791,9,-64,-33,200,-22 -17900,,45081,"Saluda County, SC",County or equivalent,19875,19872,19909,19867,19963,20100,20026,37,-42,96,137,-74,65,240,271,226,241,26,202,213,176,183,39,38,58,50,58,-1,12,4,7,8,2,-117,42,96,-123,1,-105,46,103,-115,-3,25,-8,-16,-17 -17980,,,"Columbus, GA-AL",Metropolitan Statistical Area,294865,295529,296454,302513,311711,317126,314005,925,6059,9198,5415,-3121,1145,4466,4969,4665,4783,562,2684,2656,2672,2798,583,1782,2313,1993,1985,267,446,1783,932,717,60,3757,4993,2374,-5859,327,4203,6776,3306,-5142,15,74,109,116,36 -17980,,1113,"Russell County, AL",County or equivalent,52947,52949,53279,54845,57736,59430,59608,330,1566,2891,1694,178,190,800,904,865,898,110,572,574,548,578,80,228,330,317,320,12,2,105,41,25,222,1301,2395,1338,-162,234,1303,2500,1379,-137,16,35,61,-2,-5 -17980,,13053,"Chattahoochee County, GA",County or equivalent,11267,11267,11179,11293,12570,12350,11837,-88,114,1277,-220,-513,55,225,307,241,228,1,38,32,19,26,54,187,275,222,202,71,95,482,221,160,-224,-172,511,-679,-890,-153,-77,993,-458,-730,11,4,9,16,15 -17980,,13145,"Harris County, GA",County or equivalent,32024,32026,32167,32366,32613,32673,32876,141,199,247,60,203,84,313,301,277,286,33,231,206,239,281,51,82,95,38,5,0,6,19,9,3,90,94,135,-6,192,90,100,154,3,195,0,17,-2,19,3 -17980,,13197,"Marion County, GA",County or equivalent,8742,8742,8747,8737,8751,8721,8797,5,-10,14,-30,76,27,102,122,94,87,32,75,88,42,77,-5,27,34,52,10,1,40,41,44,44,11,-87,-64,-106,27,12,-47,-23,-62,71,-2,10,3,-20,-5 -17980,,13215,"Muscogee County, GA",County or equivalent,189885,190545,191082,195272,200041,203952,200887,537,4190,4769,3911,-3065,789,3026,3335,3188,3284,386,1768,1756,1824,1836,403,1258,1579,1364,1448,183,303,1136,617,485,-39,2621,2016,1827,-5026,144,2924,3152,2444,-4541,-10,8,38,103,28 -18020,,,"Columbus, IN",Metropolitan Statistical Area,76794,76786,76848,77621,78903,79549,80217,62,773,1282,646,668,250,981,1067,1082,1089,206,712,703,668,674,44,269,364,414,415,64,236,241,257,259,-41,287,665,-35,40,23,523,906,222,299,-5,-19,12,10,-46 -18020,,18005,"Bartholomew County, IN",County or equivalent,76794,76786,76848,77621,78903,79549,80217,62,773,1282,646,668,250,981,1067,1082,1089,206,712,703,668,674,44,269,364,414,415,64,236,241,257,259,-41,287,665,-35,40,23,523,906,222,299,-5,-19,12,10,-46 -18140,,,"Columbus, OH",Metropolitan Statistical Area,1901974,1902015,1906177,1925540,1945659,1969032,1994536,4162,19363,20119,23373,25504,6478,26309,26649,26914,27042,3331,14212,14304,15033,15131,3147,12097,12345,11881,11911,1046,4843,4976,5351,5358,-2,2607,2745,6092,8641,1044,7450,7721,11443,13999,-29,-184,53,49,-406 -18140,,39041,"Delaware County, OH",County or equivalent,174214,174189,175108,178537,181147,185202,189113,919,3429,2610,4055,3911,533,2106,2111,2086,2119,233,902,879,992,1019,300,1204,1232,1094,1100,83,291,299,322,323,521,1848,1081,2562,2358,604,2139,1380,2884,2681,15,86,-2,77,130 -18140,,39045,"Fairfield County, OH",County or equivalent,146156,146152,146391,147319,147446,148797,150381,239,928,127,1351,1584,426,1611,1661,1661,1647,244,1094,1124,1217,1233,182,517,537,444,414,20,79,111,96,90,46,268,-525,729,1052,66,347,-414,825,1142,-9,64,4,82,28 -18140,,39049,"Franklin County, OH",County or equivalent,1163414,1163543,1166107,1179691,1196936,1213834,1231393,2564,13584,17245,16898,17559,4352,17879,18167,18494,18595,1984,8657,8656,9141,9197,2368,9222,9511,9353,9398,916,4294,4371,4743,4755,-690,477,3314,2839,3836,226,4771,7685,7582,8591,-30,-409,49,-37,-430 -18140,,39073,"Hocking County, OH",County or equivalent,29380,29375,29466,29466,29291,28608,28725,91,0,-175,-683,117,77,316,309,324,308,42,310,297,299,290,35,6,12,25,18,0,2,3,4,4,57,-10,-192,-544,106,57,-8,-189,-540,110,-1,2,2,-168,-11 -18140,,39089,"Licking County, OH",County or equivalent,166492,166482,166707,167234,167719,168503,169390,225,527,485,784,887,486,1961,1962,1930,1948,354,1438,1500,1481,1505,132,523,462,449,443,10,68,86,68,68,86,-67,-50,232,413,96,1,36,300,481,-3,3,-13,35,-37 -18140,,39097,"Madison County, OH",County or equivalent,43435,43430,43412,43071,42959,43272,43918,-18,-341,-112,313,646,107,432,430,417,441,119,376,375,391,370,-12,56,55,26,71,7,38,39,44,44,-11,-430,-209,247,547,-4,-392,-170,291,591,-2,-5,3,-4,-16 -18140,,39117,"Morrow County, OH",County or equivalent,34827,34827,34833,34929,35003,35038,35152,6,96,74,35,114,113,372,415,399,385,95,307,299,292,302,18,65,116,107,83,0,12,9,10,10,-11,-29,-49,-87,42,-11,-17,-40,-77,52,-1,48,-2,5,-21 -18140,,39127,"Perry County, OH",County or equivalent,36058,36052,36037,36223,35997,35932,35812,-15,186,-226,-65,-120,96,450,403,392,388,108,322,357,364,363,-12,128,46,28,25,1,1,0,0,0,-5,75,-274,-113,-135,-4,76,-274,-113,-135,1,-18,2,20,-10 -18140,,39129,"Pickaway County, OH",County or equivalent,55698,55698,55725,55983,56346,56466,56876,27,258,363,120,410,152,578,590,629,623,98,480,501,533,535,54,98,89,96,88,2,11,10,11,11,-32,145,272,-2,322,-30,156,282,9,333,3,4,-8,15,-11 -18140,,39159,"Union County, OH",County or equivalent,52300,52267,52391,53087,52815,53380,53776,124,696,-272,565,396,136,604,601,582,588,54,326,316,323,317,82,278,285,259,271,7,47,48,53,53,37,330,-623,229,100,44,377,-575,282,153,-2,41,18,24,-28 -18580,,,"Corpus Christi, TX",Metropolitan Statistical Area,428185,428188,428026,431051,437012,443448,448108,-162,3025,5961,6436,4660,1455,5817,5827,6131,6149,983,3542,3587,3782,3673,472,2275,2240,2349,2476,166,646,800,761,755,-822,59,2894,3316,1480,-656,705,3694,4077,2235,22,45,27,10,-51 -18580,,48007,"Aransas County, TX",County or equivalent,23158,23158,23204,23335,23707,24229,24972,46,131,372,522,743,74,234,247,251,266,88,321,342,319,341,-14,-87,-95,-68,-75,6,30,30,33,33,52,116,428,517,738,58,146,458,550,771,2,72,9,40,47 -18580,,48355,"Nueces County, TX",County or equivalent,340223,340223,340320,343216,347933,352962,356221,97,2896,4717,5029,3259,1152,4687,4658,4930,4928,692,2624,2629,2847,2768,460,2063,2029,2083,2160,150,569,727,683,675,-520,272,1946,2308,554,-370,841,2673,2991,1229,7,-8,15,-45,-130 -18580,,48409,"San Patricio County, TX",County or equivalent,64804,64807,64502,64500,65372,66257,66915,-305,-2,872,885,658,229,896,922,950,955,203,597,616,616,564,26,299,306,334,391,10,47,43,45,47,-354,-329,520,491,188,-344,-282,563,536,235,13,-19,3,15,32 -18700,,,"Corvallis, OR",Metropolitan Statistical Area,85579,85581,85531,85983,86380,85960,86316,-50,452,397,-420,356,163,764,733,711,729,100,551,572,518,526,63,213,161,193,203,86,337,349,383,382,-209,-105,-110,-1023,-208,-123,232,239,-640,174,10,7,-3,27,-21 -18700,,41003,"Benton County, OR",County or equivalent,85579,85581,85531,85983,86380,85960,86316,-50,452,397,-420,356,163,764,733,711,729,100,551,572,518,526,63,213,161,193,203,86,337,349,383,382,-209,-105,-110,-1023,-208,-123,232,239,-640,174,10,7,-3,27,-21 -18880,,,"Crestview-Fort Walton Beach-Destin, FL",Metropolitan Statistical Area,235865,235865,236006,238954,247712,253309,258042,141,2948,8758,5597,4733,750,3234,3331,3360,3447,469,2076,2013,2167,2208,281,1158,1318,1193,1239,228,390,1128,756,662,-405,1389,6182,3642,2578,-177,1779,7310,4398,3240,37,11,130,6,254 -18880,,12091,"Okaloosa County, FL",County or equivalent,180822,180822,180751,183314,190437,193906,196512,-71,2563,7123,3469,2606,604,2610,2672,2652,2707,316,1511,1501,1645,1658,288,1099,1171,1007,1049,213,344,1087,705,611,-603,1159,4762,1741,831,-390,1503,5849,2446,1442,31,-39,103,16,115 -18880,,12131,"Walton County, FL",County or equivalent,55043,55043,55255,55640,57275,59403,61530,212,385,1635,2128,2127,146,624,659,708,740,153,565,512,522,550,-7,59,147,186,190,15,46,41,51,51,198,230,1420,1901,1747,213,276,1461,1952,1798,6,50,27,-10,139 -19060,,,"Cumberland, MD-WV",Metropolitan Statistical Area,103299,103299,103236,102620,101816,101238,100530,-63,-616,-804,-578,-708,253,981,955,993,973,286,1220,1216,1224,1250,-33,-239,-261,-231,-277,9,41,42,48,49,-33,-364,-593,-383,-449,-24,-323,-551,-335,-400,-6,-54,8,-12,-31 -19060,,24001,"Allegany County, MD",County or equivalent,75087,75087,74988,74527,73883,73531,72952,-99,-461,-644,-352,-579,159,704,675,680,685,182,908,911,884,916,-23,-204,-236,-204,-231,9,45,45,51,52,-86,-257,-461,-193,-359,-77,-212,-416,-142,-307,1,-45,8,-6,-41 -19060,,54057,"Mineral County, WV",County or equivalent,28212,28212,28248,28093,27933,27707,27578,36,-155,-160,-226,-129,94,277,280,313,288,104,312,305,340,334,-10,-35,-25,-27,-46,0,-4,-3,-3,-3,53,-107,-132,-190,-90,53,-111,-135,-193,-93,-7,-9,0,-6,10 -19100,,,"Dallas-Fort Worth-Arlington, TX",Metropolitan Statistical Area,6426214,6426210,6452725,6574866,6710066,6823113,6954330,26515,122141,135200,113047,131217,23955,96343,95680,96576,97026,8955,37741,38066,40187,41151,15000,58602,57614,56389,55875,4208,23167,21918,24332,24773,6981,39153,55171,33313,49403,11189,62320,77089,57645,74176,326,1219,497,-987,1166 -19100,19124,,"Dallas-Plano-Irving, TX",Metropolitan Division,4230520,4230013,4248448,4336015,4432840,4511487,4604097,18435,87567,96825,78647,92610,15795,64249,63374,64229,64252,5614,23328,23715,25125,25769,10181,40921,39659,39104,38483,3233,17335,16290,18155,18484,4708,28542,40415,22771,34578,7941,45877,56705,40926,53062,313,769,461,-1383,1065 -19100,19124,48085,"Collin County, TX",County or equivalent,782341,782351,788568,814738,837476,858711,885241,6217,26170,22738,21235,26530,2565,10538,10328,10395,10488,734,3257,3293,3547,3756,1831,7281,7035,6848,6732,701,3510,3452,3803,3822,3530,14279,12162,10885,15198,4231,17789,15614,14688,19020,155,1100,89,-301,778 -19100,19124,48113,"Dallas County, TX",County or equivalent,2368139,2367636,2373360,2409942,2456693,2486083,2518638,5724,36582,46751,29390,32555,9670,39081,38620,38846,38722,3414,14313,14303,15209,15446,6256,24768,24317,23637,23276,2019,11195,10332,11572,11831,-2586,1631,11884,-5035,-1661,-567,12826,22216,6537,10170,35,-1012,218,-784,-891 -19100,19124,48121,"Denton County, TX",County or equivalent,662614,662604,666938,685718,707962,729152,753363,4334,18780,22244,21190,24211,2183,9193,9088,9525,9592,690,2734,2883,3112,3240,1493,6459,6205,6413,6352,430,2219,2137,2359,2385,2333,9680,13693,12523,14625,2763,11899,15830,14882,17010,78,422,209,-105,849 -19100,19124,48139,"Ellis County, TX",County or equivalent,149610,149610,150431,152462,153826,156198,159317,821,2031,1364,2372,3119,540,1997,1887,1964,1943,194,981,1112,1103,1117,346,1016,775,861,826,4,85,65,84,91,458,877,552,1477,2109,462,962,617,1561,2200,13,53,-28,-50,93 -19100,19124,48231,"Hunt County, TX",County or equivalent,86129,86129,86313,86732,87211,87532,88493,184,419,479,321,961,261,1092,1051,1068,1043,242,822,814,825,877,19,270,237,243,166,29,111,110,117,125,132,33,141,-49,703,161,144,251,68,828,4,5,-9,10,-33 -19100,19124,48257,"Kaufman County, TX",County or equivalent,103350,103346,103871,105287,106680,108521,111236,525,1416,1393,1841,2715,350,1393,1412,1476,1482,245,787,780,848,862,105,606,632,628,620,19,81,74,82,87,385,669,691,1126,1907,404,750,765,1208,1994,16,60,-4,5,101 -19100,19124,48397,"Rockwall County, TX",County or equivalent,78337,78337,78967,81136,82992,85290,87809,630,2169,1856,2298,2519,226,955,988,955,982,95,434,530,481,471,131,521,458,474,511,31,134,120,138,143,456,1373,1292,1844,1697,487,1507,1412,1982,1840,12,141,-14,-158,168 -19100,23104,,"Fort Worth-Arlington, TX",Metropolitan Division,2195694,2196197,2204277,2238851,2277226,2311626,2350233,8080,34574,38375,34400,38607,8160,32094,32306,32347,32774,3341,14413,14351,15062,15382,4819,17681,17955,17285,17392,975,5832,5628,6177,6289,2273,10611,14756,10542,14825,3248,16443,20384,16719,21114,13,450,36,396,101 -19100,23104,48221,"Hood County, TX",County or equivalent,51182,51173,51291,51491,52136,52897,53921,118,200,645,761,1024,138,568,524,604,594,109,571,622,599,595,29,-3,-98,5,-1,9,57,35,44,46,83,146,716,742,907,92,203,751,786,953,-3,0,-8,-30,72 -19100,23104,48251,"Johnson County, TX",County or equivalent,150934,150943,151297,152037,153530,154952,157456,354,740,1493,1422,2504,521,1907,1953,1964,1981,227,1282,1170,1216,1233,294,625,783,748,748,29,162,154,175,178,33,37,572,436,1588,62,199,726,611,1766,-2,-84,-16,63,-10 -19100,23104,48367,"Parker County, TX",County or equivalent,116927,116927,117294,118500,119757,120207,123164,367,1206,1257,450,2957,319,1266,1285,1349,1368,264,954,913,943,1000,55,312,372,406,368,16,60,54,61,64,301,725,852,-41,2388,317,785,906,20,2452,-5,109,-21,24,137 -19100,23104,48425,"Somervell County, TX",County or equivalent,8490,8490,8509,8452,8594,8624,8694,19,-57,142,30,70,29,78,98,82,95,21,75,80,75,88,8,3,18,7,7,1,2,0,3,3,12,-83,125,31,46,13,-81,125,34,49,-2,21,-1,-11,14 -19100,23104,48439,"Tarrant County, TX",County or equivalent,1809034,1809537,1816784,1848435,1882822,1913943,1945360,7247,31651,34387,31121,31417,6974,27496,27724,27575,27965,2592,11084,11050,11758,11954,4382,16412,16674,15817,16011,918,5538,5370,5875,5975,1925,9308,12259,9115,9523,2843,14846,17629,14990,15498,22,393,84,314,-92 -19100,23104,48497,"Wise County, TX",County or equivalent,59127,59127,59102,59936,60387,61003,61638,-25,834,451,616,635,179,779,722,773,771,128,447,516,471,512,51,332,206,302,259,2,13,15,19,23,-81,478,232,259,373,-79,491,247,278,396,3,11,-2,36,-20 -19140,,,"Dalton, GA",Metropolitan Statistical Area,142227,142227,142317,142504,142581,142385,142952,90,187,77,-196,567,491,1968,1901,1897,1855,229,1072,1111,1187,1141,262,896,790,710,714,11,106,84,104,112,-182,-780,-807,-1066,-235,-171,-674,-723,-962,-123,-1,-35,10,56,-24 -19140,,13213,"Murray County, GA",County or equivalent,39628,39628,39548,39428,39394,39298,39410,-80,-120,-34,-96,112,119,497,486,518,482,84,345,326,386,384,35,152,160,132,98,9,36,30,32,33,-130,-309,-226,-277,-46,-121,-273,-196,-245,-13,6,1,2,17,27 -19140,,13313,"Whitfield County, GA",County or equivalent,102599,102599,102769,103076,103187,103087,103542,170,307,111,-100,455,372,1471,1415,1379,1373,145,727,785,801,757,227,744,630,578,616,2,70,54,72,79,-52,-471,-581,-789,-189,-50,-401,-527,-717,-110,-7,-36,8,39,-51 -19180,,,"Danville, IL",Metropolitan Statistical Area,81625,81625,81595,81358,80764,80418,79728,-30,-237,-594,-346,-690,259,1090,1077,1061,1080,164,1029,930,909,919,95,61,147,152,161,6,23,22,24,24,-124,-282,-766,-466,-878,-118,-259,-744,-442,-854,-7,-39,3,-56,3 -19180,,17183,"Vermilion County, IL",County or equivalent,81625,81625,81595,81358,80764,80418,79728,-30,-237,-594,-346,-690,259,1090,1077,1061,1080,164,1029,930,909,919,95,61,147,152,161,6,23,22,24,24,-124,-282,-766,-466,-878,-118,-259,-744,-442,-854,-7,-39,3,-56,3 -19300,,,"Daphne-Fairhope-Foley, AL",Metropolitan Statistical Area,182265,182265,183216,186694,190561,195443,200111,951,3478,3867,4882,4668,548,2187,2093,2162,2169,537,1819,1884,1912,1947,11,368,209,250,222,67,247,269,284,283,851,2692,3364,4244,3779,918,2939,3633,4528,4062,22,171,25,104,384 -19300,,1003,"Baldwin County, AL",County or equivalent,182265,182265,183216,186694,190561,195443,200111,951,3478,3867,4882,4668,548,2187,2093,2162,2169,537,1819,1884,1912,1947,11,368,209,250,222,67,247,269,284,283,851,2692,3364,4244,3779,918,2939,3633,4528,4062,22,171,25,104,384 -19340,,,"Davenport-Moline-Rock Island, IA-IL",Metropolitan Statistical Area,379690,379689,380241,380926,382139,383230,383030,552,685,1213,1091,-200,1192,4576,4485,4650,4764,774,3666,3709,3576,3540,418,910,776,1074,1224,92,451,494,534,534,36,-552,-59,-458,-1771,128,-101,435,76,-1237,6,-124,2,-59,-187 -19340,,17073,"Henry County, IL",County or equivalent,50486,50485,50432,50267,50071,49750,49635,-53,-165,-196,-321,-115,126,534,506,526,531,108,525,532,524,529,18,9,-26,2,2,0,-1,1,2,2,-72,-160,-157,-366,-85,-72,-161,-156,-364,-83,1,-13,-14,41,-34 -19340,,17131,"Mercer County, IL",County or equivalent,16434,16434,16425,16350,16176,16123,15945,-9,-75,-174,-53,-178,50,140,133,143,143,58,164,173,186,173,-8,-24,-40,-43,-30,0,1,1,1,1,0,-64,-139,-25,-146,0,-63,-138,-24,-145,-1,12,4,14,-3 -19340,,17161,"Rock Island County, IL",County or equivalent,147546,147546,147632,147256,147065,146804,146063,86,-376,-191,-261,-741,486,1715,1605,1744,1859,298,1546,1575,1469,1438,188,169,30,275,421,71,328,361,381,380,-169,-790,-586,-840,-1498,-98,-462,-225,-459,-1118,-4,-83,4,-77,-44 -19340,,19163,"Scott County, IA",County or equivalent,165224,165224,165752,167053,168827,170553,171387,528,1301,1774,1726,834,530,2187,2241,2237,2231,310,1431,1429,1397,1400,220,756,812,840,831,21,123,131,150,151,277,462,823,773,-42,298,585,954,923,109,10,-40,8,-37,-106 -19380,,,"Dayton, OH",Metropolitan Statistical Area,799232,799216,800245,801334,802234,801645,800836,1029,1089,900,-589,-809,2394,9438,9720,9560,9571,1776,7961,8001,7950,7948,618,1477,1719,1610,1623,351,1233,1596,1523,1497,196,-1400,-2420,-3736,-3513,547,-167,-824,-2213,-2016,-136,-221,5,14,-416 -19380,,39057,"Greene County, OH",County or equivalent,161573,161569,161614,163522,164145,163465,163820,45,1908,623,-680,355,441,1727,1758,1806,1757,281,1245,1347,1362,1350,160,482,411,444,407,94,234,430,357,342,-220,1187,-210,-1526,-349,-126,1421,220,-1169,-7,11,5,-8,45,-45 -19380,,39109,"Miami County, OH",County or equivalent,102506,102506,102456,102833,103118,103416,103900,-50,377,285,298,484,274,1151,1173,1068,1106,208,1005,1013,958,966,66,146,160,110,140,15,69,74,77,78,-132,129,53,98,332,-117,198,127,175,410,1,33,-2,13,-66 -19380,,39113,"Montgomery County, OH",County or equivalent,535153,535141,536175,534979,534971,534764,533116,1034,-1196,-8,-207,-1648,1679,6560,6789,6686,6708,1287,5711,5641,5630,5632,392,849,1148,1056,1076,242,930,1092,1089,1077,548,-2716,-2263,-2308,-3496,790,-1786,-1171,-1219,-2419,-148,-259,15,-44,-305 -19460,,,"Decatur, AL",Metropolitan Statistical Area,153829,153825,153863,153914,153833,153199,153084,38,51,-81,-634,-115,417,1847,1770,1762,1729,353,1659,1609,1598,1581,64,188,161,164,148,22,98,95,112,119,-32,-197,-334,-937,-299,-10,-99,-239,-825,-180,-16,-38,-3,27,-83 -19460,,1079,"Lawrence County, AL",County or equivalent,34339,34339,34306,34044,33776,33571,33477,-33,-262,-268,-205,-94,79,344,374,368,359,60,421,388,368,381,19,-77,-14,0,-22,1,0,1,1,1,-42,-189,-260,-210,-47,-41,-189,-259,-209,-46,-11,4,5,4,-26 -19460,,1103,"Morgan County, AL",County or equivalent,119490,119486,119557,119870,120057,119628,119607,71,313,187,-429,-21,338,1503,1396,1394,1370,293,1238,1221,1230,1200,45,265,175,164,170,21,98,94,111,118,10,-8,-74,-727,-252,31,90,20,-616,-134,-5,-42,-8,23,-57 -19500,,,"Decatur, IL",Metropolitan Statistical Area,110768,110768,110757,110582,110043,109435,108350,-11,-175,-539,-608,-1085,334,1389,1325,1368,1351,248,1172,1188,1190,1138,86,217,137,178,213,23,74,75,84,85,-121,-406,-757,-853,-1378,-98,-332,-682,-769,-1293,1,-60,6,-17,-5 -19500,,17115,"Macon County, IL",County or equivalent,110768,110768,110757,110582,110043,109435,108350,-11,-175,-539,-608,-1085,334,1389,1325,1368,1351,248,1172,1188,1190,1138,86,217,137,178,213,23,74,75,84,85,-121,-406,-757,-853,-1378,-98,-332,-682,-769,-1293,1,-60,6,-17,-5 -19660,,,"Deltona-Daytona Beach-Ormond Beach, FL",Metropolitan Statistical Area,590289,590293,590678,591753,595602,601151,609939,385,1075,3849,5549,8788,1390,5400,5556,5431,5480,1776,7185,7304,7632,7493,-386,-1785,-1748,-2201,-2013,212,1118,1132,1183,1183,598,1827,4551,6276,8769,810,2945,5683,7459,9952,-39,-85,-86,291,849 -19660,,12035,"Flagler County, FL",County or equivalent,95696,95696,96053,97295,98510,99950,102408,357,1242,1215,1440,2458,202,807,873,735,798,226,1039,1111,1194,1114,-24,-232,-238,-459,-316,45,205,209,227,228,336,1197,1281,1626,2197,381,1402,1490,1853,2425,0,72,-37,46,349 -19660,,12127,"Volusia County, FL",County or equivalent,494593,494597,494625,494458,497092,501201,507531,28,-167,2634,4109,6330,1188,4593,4683,4696,4682,1550,6146,6193,6438,6379,-362,-1553,-1510,-1742,-1697,167,913,923,956,955,262,630,3270,4650,6572,429,1543,4193,5606,7527,-39,-157,-49,245,500 -19740,,,"Denver-Aurora-Lakewood, CO",Metropolitan Statistical Area,2543482,2543594,2554335,2600843,2647780,2699750,2754258,10741,46508,46937,51970,54508,8534,34785,33961,34959,35245,3888,15255,15752,16525,16921,4646,19530,18209,18434,18324,944,5496,5620,6229,6307,4919,20237,22631,26612,29386,5863,25733,28251,32841,35693,232,1245,477,695,491 -19740,,8001,"Adams County, CO",County or equivalent,441603,441687,443668,452202,460653,470547,480718,1981,8534,8451,9894,10171,1801,7291,6922,7197,6915,666,2468,2730,2830,2739,1135,4823,4192,4367,4176,76,740,691,802,832,712,2672,3496,4501,5114,788,3412,4187,5303,5946,58,299,72,224,49 -19740,,8005,"Arapahoe County, CO",County or equivalent,572003,572158,574577,585845,596051,608128,618821,2419,11268,10206,12077,10693,1899,7715,7720,7980,7896,888,3429,3367,3599,3717,1011,4286,4353,4381,4179,393,1999,2113,2277,2289,997,4492,3705,5203,4220,1390,6491,5818,7480,6509,18,491,35,216,5 -19740,,8014,"Broomfield County, CO",County or equivalent,55889,55860,56266,57433,58992,60306,62138,406,1167,1559,1314,1832,172,700,689,699,737,92,320,331,312,337,80,380,358,387,400,20,100,106,114,115,310,633,1105,913,1186,330,733,1211,1027,1301,-4,54,-10,-100,131 -19740,,8019,"Clear Creek County, CO",County or equivalent,9088,9088,9105,9077,9091,9110,9187,17,-28,14,19,77,24,67,68,70,61,32,55,42,49,53,-8,12,26,21,8,3,14,14,15,15,20,-71,-25,-19,57,23,-57,-11,-4,72,2,17,-1,2,-3 -19740,,8031,"Denver County, CO",County or equivalent,600158,600025,603365,619390,633868,648401,663862,3340,16025,14478,14533,15461,2314,9588,9222,9474,10051,1005,4125,4125,4347,4630,1309,5463,5097,5127,5421,267,1780,1776,2011,2047,1582,8614,7272,7188,7977,1849,10394,9048,9199,10024,182,168,333,207,16 -19740,,8035,"Douglas County, CO",County or equivalent,285465,285465,286920,292538,298576,306297,314638,1455,5618,6038,7721,8341,883,3550,3484,3487,3462,260,903,1041,1050,1108,623,2647,2443,2437,2354,74,358,387,418,417,750,2344,3222,5080,5149,824,2702,3609,5498,5566,8,269,-14,-214,421 -19740,,8039,"Elbert County, CO",County or equivalent,23086,23086,23107,23280,23432,23713,24195,21,173,152,281,482,42,181,159,154,167,24,109,117,127,118,18,72,42,27,49,4,9,12,15,15,5,33,104,235,412,9,42,116,250,427,-6,59,-6,4,6 -19740,,8047,"Gilpin County, CO",County or equivalent,5441,5441,5463,5447,5453,5572,5851,22,-16,6,119,279,12,46,40,44,43,0,28,27,15,20,12,18,13,29,23,0,1,2,2,2,10,-35,-7,88,246,10,-34,-5,90,248,0,0,-2,0,8 -19740,,8059,"Jefferson County, CO",County or equivalent,534543,534583,535600,539540,545621,551548,558503,1017,3940,6081,5927,6955,1358,5533,5547,5756,5801,914,3735,3895,4129,4118,444,1798,1652,1627,1683,105,489,513,568,568,493,1763,3836,3320,4850,598,2252,4349,3888,5418,-25,-110,80,412,-146 -19740,,8093,"Park County, CO",County or equivalent,16206,16201,16264,16091,16043,16128,16345,63,-173,-48,85,217,29,114,110,98,112,7,83,77,67,81,22,31,33,31,31,2,6,6,7,7,40,-208,-77,103,175,42,-202,-71,110,182,-1,-2,-10,-56,4 -19780,,,"Des Moines-West Des Moines, IA",Metropolitan Statistical Area,569633,569633,571883,580741,589453,600086,611549,2250,8858,8712,10633,11463,2048,8261,8583,8717,8814,989,4130,4068,4129,4286,1059,4131,4515,4588,4528,291,1380,1414,1537,1537,855,3199,2762,4418,5325,1146,4579,4176,5955,6862,45,148,21,90,73 -19780,,19049,"Dallas County, IA",County or equivalent,66135,66137,66652,69722,72121,74727,77400,515,3070,2399,2606,2673,246,1009,1130,1210,1210,59,354,374,360,391,187,655,756,850,819,22,139,138,154,154,286,2075,1490,1615,1591,308,2214,1628,1769,1745,20,201,15,-13,109 -19780,,19077,"Guthrie County, IA",County or equivalent,10954,10954,10943,10861,10771,10675,10722,-11,-82,-90,-96,47,15,101,110,102,106,43,130,111,99,113,-28,-29,-1,3,-7,1,3,3,4,4,16,-50,-92,-78,48,17,-47,-89,-74,52,0,-6,0,-25,2 -19780,,19121,"Madison County, IA",County or equivalent,15679,15679,15722,15724,15627,15463,15609,43,2,-97,-164,146,50,160,172,159,160,45,154,127,144,151,5,6,45,15,9,1,7,5,5,5,37,-7,-145,-189,117,38,0,-140,-184,122,0,-4,-2,5,15 -19780,,19153,"Polk County, IA",County or equivalent,430640,430635,432243,437770,443984,451822,459862,1608,5527,6214,7838,8040,1612,6477,6657,6700,6795,775,3106,3092,3148,3232,837,3371,3565,3552,3563,264,1215,1251,1355,1355,481,990,1386,2789,3184,745,2205,2637,4144,4539,26,-49,12,142,-62 -19780,,19181,"Warren County, IA",County or equivalent,46225,46228,46323,46664,46950,47399,47956,95,341,286,449,557,125,514,514,546,543,67,386,364,378,399,58,128,150,168,144,3,16,17,19,19,35,191,123,281,385,38,207,140,300,404,-1,6,-4,-19,9 -19820,,,"Detroit-Warren-Dearborn, MI",Metropolitan Statistical Area,4296250,4296313,4291176,4287145,4292912,4295394,4296611,-5137,-4031,5767,2482,1217,12684,50157,49883,50115,49732,9528,39640,38948,38844,39427,3156,10517,10935,11271,10305,2023,9972,10237,11186,11196,-10763,-24968,-15269,-18601,-20048,-8740,-14996,-5032,-7415,-8852,447,448,-136,-1374,-236 -19820,19804,,"Detroit-Dearborn-Livonia, MI",Metropolitan Division,1820584,1820641,1815497,1801614,1792770,1775703,1764804,-5144,-13883,-8844,-17067,-10899,6244,23817,23269,23389,22936,4556,17989,17497,17075,17419,1688,5828,5772,6314,5517,732,3664,3728,4062,4067,-7859,-24160,-18342,-25555,-21314,-7127,-20496,-14614,-21493,-17247,295,785,-2,-1888,831 -19820,19804,26163,"Wayne County, MI",County or equivalent,1820584,1820641,1815497,1801614,1792770,1775703,1764804,-5144,-13883,-8844,-17067,-10899,6244,23817,23269,23389,22936,4556,17989,17497,17075,17419,1688,5828,5772,6314,5517,732,3664,3728,4062,4067,-7859,-24160,-18342,-25555,-21314,-7127,-20496,-14614,-21493,-17247,295,785,-2,-1888,831 -19820,47664,,"Warren-Troy-Farmington Hills, MI",Metropolitan Division,2475666,2475672,2475679,2485531,2500142,2519691,2531807,7,9852,14611,19549,12116,6440,26340,26614,26726,26796,4972,21651,21451,21769,22008,1468,4689,5163,4957,4788,1291,6308,6509,7124,7129,-2904,-808,3073,6954,1266,-1613,5500,9582,14078,8395,152,-337,-134,514,-1067 -19820,47664,26087,"Lapeer County, MI",County or equivalent,88319,88316,88159,88024,88184,88257,88153,-157,-135,160,73,-104,187,809,837,812,807,175,778,725,778,801,12,31,112,34,6,7,42,42,48,50,-187,-220,12,-64,-113,-180,-178,54,-16,-63,11,12,-6,55,-47 -19820,47664,26093,"Livingston County, MI",County or equivalent,180967,180967,180987,182334,183013,184392,185596,20,1347,679,1379,1204,440,1709,1710,1743,1697,257,1346,1308,1350,1381,183,363,402,393,316,12,40,49,51,53,-184,724,238,904,854,-172,764,287,955,907,9,220,-10,31,-19 -19820,47664,26099,"Macomb County, MI",County or equivalent,840978,840987,841097,842765,847750,854997,860112,110,1668,4985,7247,5115,2214,9001,9112,9231,9241,1866,8012,7980,8181,8163,348,989,1132,1050,1078,387,1902,1998,2192,2188,-653,-978,1919,3660,2192,-266,924,3917,5852,4380,28,-245,-64,345,-343 -19820,47664,26125,"Oakland County, MI",County or equivalent,1202362,1202362,1202763,1210910,1220631,1231820,1237868,401,8147,9721,11189,6048,3201,13196,13330,13388,13495,2256,9844,9808,9825,9993,945,3352,3522,3563,3502,860,4221,4304,4712,4716,-1489,893,1981,2807,-1606,-629,5114,6285,7519,3110,85,-319,-86,107,-564 -19820,47664,26147,"St. Clair County, MI",County or equivalent,163040,163040,162673,161498,160564,160225,160078,-367,-1175,-934,-339,-147,398,1625,1625,1552,1556,418,1671,1630,1635,1670,-20,-46,-5,-83,-114,25,103,116,121,122,-391,-1227,-1077,-353,-61,-366,-1124,-961,-232,61,19,-5,32,-24,-94 -20020,,,"Dothan, AL",Metropolitan Statistical Area,145639,145639,145867,146655,147618,147592,148095,228,788,963,-26,503,436,1840,1826,1727,1727,411,1473,1585,1653,1615,25,367,241,74,112,7,60,76,63,60,198,362,638,-152,320,205,422,714,-89,380,-2,-1,8,-11,11 -20020,,1061,"Geneva County, AL",County or equivalent,26790,26790,26793,26829,27002,26742,26712,3,36,173,-260,-30,72,320,306,307,305,117,332,349,334,337,-45,-12,-43,-27,-32,-1,-3,-4,-3,-3,50,33,217,-195,13,49,30,213,-198,10,-1,18,3,-35,-8 -20020,,1067,"Henry County, AL",County or equivalent,17302,17302,17287,17403,17248,17224,17190,-15,116,-155,-24,-34,36,189,184,170,168,58,229,233,193,192,-22,-40,-49,-23,-24,3,14,10,12,12,5,128,-117,-22,-9,8,142,-107,-10,3,-1,14,1,9,-13 -20020,,1069,"Houston County, AL",County or equivalent,101547,101547,101787,102423,103368,103626,104193,240,636,945,258,567,328,1331,1336,1250,1254,236,912,1003,1126,1086,92,419,333,124,168,5,49,70,54,51,143,201,538,65,316,148,250,608,119,367,0,-33,4,15,32 -20100,,,"Dover, DE",Metropolitan Statistical Area,162310,162344,162954,165214,167666,169562,171987,610,2260,2452,1896,2425,538,2197,2171,2195,2219,333,1375,1379,1543,1542,205,822,792,652,677,96,310,535,416,392,299,1041,1132,892,1206,395,1351,1667,1308,1598,10,87,-7,-64,150 -20100,,10001,"Kent County, DE",County or equivalent,162310,162344,162954,165214,167666,169562,171987,610,2260,2452,1896,2425,538,2197,2171,2195,2219,333,1375,1379,1543,1542,205,822,792,652,677,96,310,535,416,392,299,1041,1132,892,1206,395,1351,1667,1308,1598,10,87,-7,-64,150 -20220,,,"Dubuque, IA",Metropolitan Statistical Area,93653,93653,93893,94507,95147,95912,96370,240,614,640,765,458,285,1160,1162,1191,1194,165,867,863,882,872,120,293,299,309,322,12,71,73,80,80,108,287,278,362,60,120,358,351,442,140,0,-37,-10,14,-4 -20220,,19061,"Dubuque County, IA",County or equivalent,93653,93653,93893,94507,95147,95912,96370,240,614,640,765,458,285,1160,1162,1191,1194,165,867,863,882,872,120,293,299,309,322,12,71,73,80,80,108,287,278,362,60,120,358,351,442,140,0,-37,-10,14,-4 -20260,,,"Duluth, MN-WI",Metropolitan Statistical Area,279771,279771,279789,279907,279614,279942,280218,18,118,-293,328,276,766,2903,2914,2873,2857,686,2911,2842,2831,2777,80,-8,72,42,80,41,195,233,225,220,-95,71,-593,28,147,-54,266,-360,253,367,-8,-140,-5,33,-171 -20260,,27017,"Carlton County, MN",County or equivalent,35386,35386,35410,35475,35311,35383,35571,24,65,-164,72,188,101,368,388,375,366,76,351,345,365,348,25,17,43,10,18,0,5,8,5,5,2,42,-218,29,185,2,47,-210,34,190,-3,1,3,28,-20 -20260,,27137,"St. Louis County, MN",County or equivalent,200226,200226,200198,200418,200487,200763,200949,-28,220,69,276,186,533,2058,2045,2097,2085,486,2118,2093,2061,2032,47,-60,-48,36,53,38,177,211,204,199,-111,235,-86,13,68,-73,412,125,217,267,-2,-132,-8,23,-134 -20260,,55031,"Douglas County, WI",County or equivalent,44159,44159,44181,44014,43816,43796,43698,22,-167,-198,-20,-98,132,477,481,401,406,124,442,404,405,397,8,35,77,-4,9,3,13,14,16,16,14,-206,-289,-14,-106,17,-193,-275,2,-90,-3,-9,0,-18,-17 -20500,,,"Durham-Chapel Hill, NC",Metropolitan Statistical Area,504357,506634,508063,515828,525026,533622,542710,1429,7765,9198,8596,9088,1632,6539,6586,6519,6597,848,3599,3424,3576,3686,784,2940,3162,2943,2911,513,2058,2024,2217,2234,135,2000,3946,3316,3438,648,4058,5970,5533,5672,-3,767,66,120,505 -20500,,37037,"Chatham County, NC",County or equivalent,63505,63494,63785,65191,65811,66766,68698,291,1406,620,955,1932,161,669,610,607,598,112,598,628,620,667,49,71,-18,-13,-69,26,98,86,96,103,205,628,580,997,1592,231,726,666,1093,1695,11,609,-28,-125,306 -20500,,37063,"Durham County, NC",County or equivalent,267587,269974,270798,276299,282308,288243,294460,824,5501,6009,5935,6217,1032,4214,4321,4232,4335,359,1812,1693,1830,1876,673,2402,2628,2402,2459,304,1275,1246,1357,1361,-156,1701,2073,2011,2205,148,2976,3319,3368,3566,3,123,62,165,192 -20500,,37135,"Orange County, NC",County or equivalent,133801,133702,134051,134813,137728,139365,140420,349,762,2915,1637,1055,326,1230,1276,1269,1269,240,749,714,731,738,86,481,562,538,531,183,691,694,765,770,91,-456,1627,271,-249,274,235,2321,1036,521,-11,46,32,63,3 -20500,,37145,"Person County, NC",County or equivalent,39464,39464,39429,39525,39179,39248,39132,-35,96,-346,69,-116,113,426,379,411,395,137,440,389,395,405,-24,-14,-10,16,-10,0,-6,-2,-1,0,-5,127,-334,37,-110,-5,121,-336,36,-110,-6,-11,0,17,4 -20700,,,"East Stroudsburg, PA",Metropolitan Statistical Area,169842,169842,169940,169860,168465,167130,166314,98,-80,-1395,-1335,-816,408,1452,1353,1443,1413,345,1264,1295,1385,1443,63,188,58,58,-30,40,179,182,197,197,-3,-392,-1652,-1558,-942,37,-213,-1470,-1361,-745,-2,-55,17,-32,-41 -20700,,42089,"Monroe County, PA",County or equivalent,169842,169842,169940,169860,168465,167130,166314,98,-80,-1395,-1335,-816,408,1452,1353,1443,1413,345,1264,1295,1385,1443,63,188,58,58,-30,40,179,182,197,197,-3,-392,-1652,-1558,-942,37,-213,-1470,-1361,-745,-2,-55,17,-32,-41 -20740,,,"Eau Claire, WI",Metropolitan Statistical Area,161151,161390,161633,162838,163891,164903,165024,243,1205,1053,1012,121,430,1893,1963,1860,1933,228,1241,1273,1272,1255,202,652,690,588,678,14,85,81,94,96,36,516,282,275,-599,50,601,363,369,-503,-9,-48,0,55,-54 -20740,,55017,"Chippewa County, WI",County or equivalent,62415,62505,62615,62929,63051,63199,63460,110,314,122,148,261,166,762,769,687,725,87,509,499,523,537,79,253,270,164,188,4,22,21,23,24,33,68,-171,-85,92,37,90,-150,-62,116,-6,-29,2,46,-43 -20740,,55035,"Eau Claire County, WI",County or equivalent,98736,98885,99018,99909,100840,101704,101564,133,891,931,864,-140,264,1131,1194,1173,1208,141,732,774,749,718,123,399,420,424,490,10,63,60,71,72,3,448,453,360,-691,13,511,513,431,-619,-3,-19,-2,9,-11 -20940,,,"El Centro, CA",Metropolitan Statistical Area,174528,174528,174779,176300,177443,177517,179091,251,1521,1143,74,1574,731,3127,3021,3059,3028,180,980,957,915,935,551,2147,2064,2144,2093,-15,298,235,269,288,-295,-935,-1177,-2442,-819,-310,-637,-942,-2173,-531,10,11,21,103,12 -20940,,6025,"Imperial County, CA",County or equivalent,174528,174528,174779,176300,177443,177517,179091,251,1521,1143,74,1574,731,3127,3021,3059,3028,180,980,957,915,935,551,2147,2064,2144,2093,-15,298,235,269,288,-295,-935,-1177,-2442,-819,-310,-637,-942,-2173,-531,10,11,21,103,12 -21060,,,"Elizabethtown-Fort Knox, KY",Metropolitan Statistical Area,148338,148339,149897,151295,150413,151395,151585,1558,1398,-882,982,190,499,2199,1897,1986,1943,358,1257,1159,1217,1239,141,942,738,769,704,170,188,629,395,299,1185,265,-2292,-193,-800,1355,453,-1663,202,-501,62,3,43,11,-13 -21060,,21093,"Hardin County, KY",County or equivalent,105543,105549,106995,107440,107052,108073,108266,1446,445,-388,1021,193,389,1793,1486,1600,1564,241,844,823,853,890,148,949,663,747,674,130,115,491,296,215,1105,-604,-1572,-44,-693,1235,-489,-1081,252,-478,63,-15,30,22,-3 -21060,,21123,"Larue County, KY",County or equivalent,14193,14193,14199,14206,14085,14076,14180,6,7,-121,-9,104,38,135,146,151,145,50,179,134,168,149,-12,-44,12,-17,-4,1,5,3,4,4,20,52,-139,-2,107,21,57,-136,2,111,-3,-6,3,6,-3 -21060,,21163,"Meade County, KY",County or equivalent,28602,28597,28703,29649,29276,29246,29139,106,946,-373,-30,-107,72,271,265,235,234,67,234,202,196,200,5,37,63,39,34,39,68,135,95,80,60,817,-581,-147,-214,99,885,-446,-52,-134,2,24,10,-17,-7 -21140,,,"Elkhart-Goshen, IN",Metropolitan Statistical Area,197559,197561,197441,198480,199236,200591,201971,-120,1039,756,1355,1380,709,3053,2985,3026,3042,319,1515,1660,1520,1542,390,1538,1325,1506,1500,28,126,111,140,149,-567,-616,-687,-262,-171,-539,-490,-576,-122,-22,29,-9,7,-29,-98 -21140,,18039,"Elkhart County, IN",County or equivalent,197559,197561,197441,198480,199236,200591,201971,-120,1039,756,1355,1380,709,3053,2985,3026,3042,319,1515,1660,1520,1542,390,1538,1325,1506,1500,28,126,111,140,149,-567,-616,-687,-262,-171,-539,-490,-576,-122,-22,29,-9,7,-29,-98 -21300,,,"Elmira, NY",Metropolitan Statistical Area,88830,88830,88947,88973,89231,88485,87770,117,26,258,-746,-715,241,1025,1049,1036,1019,197,970,916,943,939,44,55,133,93,80,19,71,73,78,78,59,-39,57,-989,-820,78,32,130,-911,-742,-5,-61,-5,72,-53 -21300,,36015,"Chemung County, NY",County or equivalent,88830,88830,88947,88973,89231,88485,87770,117,26,258,-746,-715,241,1025,1049,1036,1019,197,970,916,943,939,44,55,133,93,80,19,71,73,78,78,59,-39,57,-989,-820,78,32,130,-911,-742,-5,-61,-5,72,-53 -21340,,,"El Paso, TX",Metropolitan Statistical Area,804123,804123,807089,823134,834477,834630,836698,2966,16045,11343,153,2068,3310,13867,13975,13715,13532,1134,4785,4831,4811,4932,2176,9082,9144,8904,8600,295,1829,2922,2258,2149,489,5382,-656,-11437,-8490,784,7211,2266,-9179,-6341,6,-248,-67,428,-191 -21340,,48141,"El Paso County, TX",County or equivalent,800647,800647,803627,819726,831144,831324,833487,2980,16099,11418,180,2163,3301,13812,13926,13676,13494,1122,4766,4813,4797,4925,2179,9046,9113,8879,8569,295,1827,2920,2256,2147,501,5475,-550,-11382,-8354,796,7302,2370,-9126,-6207,5,-249,-65,427,-199 -21340,,48229,"Hudspeth County, TX",County or equivalent,3476,3476,3462,3408,3333,3306,3211,-14,-54,-75,-27,-95,9,55,49,39,38,12,19,18,14,7,-3,36,31,25,31,0,2,2,2,2,-12,-93,-106,-55,-136,-12,-91,-104,-53,-134,1,1,-2,1,8 -21500,,,"Erie, PA",Metropolitan Statistical Area,280566,280566,280720,280938,280801,279760,278443,154,218,-137,-1041,-1317,787,3285,3189,3081,3108,546,2808,2817,2772,2730,241,477,372,309,378,74,379,402,439,442,-141,-466,-916,-1750,-1996,-67,-87,-514,-1311,-1554,-20,-172,5,-39,-141 -21500,,42049,"Erie County, PA",County or equivalent,280566,280566,280720,280938,280801,279760,278443,154,218,-137,-1041,-1317,787,3285,3189,3081,3108,546,2808,2817,2772,2730,241,477,372,309,378,74,379,402,439,442,-141,-466,-916,-1750,-1996,-67,-87,-514,-1311,-1554,-20,-172,5,-39,-141 -21660,,,"Eugene, OR",Metropolitan Statistical Area,351715,351715,351852,353491,354481,355661,358337,137,1639,990,1180,2676,841,3470,3475,3485,3488,731,3128,3405,3270,3304,110,342,70,215,184,150,614,628,692,697,-110,764,346,91,1820,40,1378,974,783,2517,-13,-81,-54,182,-25 -21660,,41039,"Lane County, OR",County or equivalent,351715,351715,351852,353491,354481,355661,358337,137,1639,990,1180,2676,841,3470,3475,3485,3488,731,3128,3405,3270,3304,110,342,70,215,184,150,614,628,692,697,-110,764,346,91,1820,40,1378,974,783,2517,-13,-81,-54,182,-25 -21780,,,"Evansville, IN-KY",Metropolitan Statistical Area,311552,311552,311778,312589,313298,314429,315162,226,811,709,1131,733,962,3773,3791,3848,3829,835,3066,2972,3128,3135,127,707,819,720,694,45,196,187,218,220,65,17,-282,277,-103,110,213,-95,495,117,-11,-109,-15,-84,-78 -21780,,18129,"Posey County, IN",County or equivalent,25910,25910,25855,25680,25616,25515,25540,-55,-175,-64,-101,25,61,277,291,281,291,85,235,210,225,240,-24,42,81,56,51,-1,0,-1,-1,-1,-31,-217,-150,-129,-20,-32,-217,-151,-130,-21,1,0,6,-27,-5 -21780,,18163,"Vanderburgh County, IN",County or equivalent,179703,179703,179790,180285,180781,181524,182006,87,495,496,743,482,568,2246,2319,2369,2357,478,1815,1854,1875,1822,90,431,465,494,535,29,148,141,162,162,-25,27,-101,108,-108,4,175,40,270,54,-7,-111,-9,-21,-107 -21780,,18173,"Warrick County, IN",County or equivalent,59689,59689,59863,60240,60439,61001,61149,174,377,199,562,148,178,663,639,615,625,128,499,464,567,561,50,164,175,48,64,14,40,40,47,47,110,155,-9,485,-17,124,195,31,532,30,0,18,-7,-18,54 -21780,,21101,"Henderson County, KY",County or equivalent,46250,46250,46270,46384,46462,46389,46467,20,114,78,-73,78,155,587,542,583,556,144,517,444,461,512,11,70,98,122,44,3,8,7,10,12,11,52,-22,-187,42,14,60,-15,-177,54,-5,-16,-5,-18,-20 -21820,,,"Fairbanks, AK",Metropolitan Statistical Area,97581,97581,98174,98029,100227,100807,99357,593,-145,2198,580,-1450,371,1775,1595,1644,1611,116,447,451,448,445,255,1328,1144,1196,1166,115,150,483,399,298,206,-1702,551,-905,-3017,321,-1552,1034,-506,-2719,17,79,20,-110,103 -21820,,2090,"Fairbanks North Star Borough, AK",County or equivalent,97581,97581,98174,98029,100227,100807,99357,593,-145,2198,580,-1450,371,1775,1595,1644,1611,116,447,451,448,445,255,1328,1144,1196,1166,115,150,483,399,298,206,-1702,551,-905,-3017,321,-1552,1034,-506,-2719,17,79,20,-110,103 -22020,,,"Fargo, ND-MN",Metropolitan Statistical Area,208777,208777,209423,212835,217052,223853,228291,646,3412,4217,6801,4438,747,2993,3148,3206,3311,373,1351,1254,1356,1407,374,1642,1894,1850,1904,139,620,669,709,703,133,1068,1635,4156,1746,272,1688,2304,4865,2449,0,82,19,86,85 -22020,,27027,"Clay County, MN",County or equivalent,58999,58999,59145,59957,60213,60646,61286,146,812,256,433,640,195,794,793,787,803,118,460,424,433,423,77,334,369,354,380,16,71,77,87,86,50,401,-190,-36,177,66,472,-113,51,263,3,6,0,28,-3 -22020,,38017,"Cass County, ND",County or equivalent,149778,149778,150278,152878,156839,163207,167005,500,2600,3961,6368,3798,552,2199,2355,2419,2508,255,891,830,923,984,297,1308,1525,1496,1524,123,549,592,622,617,83,667,1825,4192,1569,206,1216,2417,4814,2186,-3,76,19,58,88 -22140,,,"Farmington, NM",Metropolitan Statistical Area,130044,130045,130155,128035,128367,126448,123785,110,-2120,332,-1919,-2663,476,1928,1867,1861,1781,200,887,895,993,985,276,1041,972,868,796,6,11,11,25,27,-171,-3202,-646,-2903,-3497,-165,-3191,-635,-2878,-3470,-1,30,-5,91,11 -22140,,35045,"San Juan County, NM",County or equivalent,130044,130045,130155,128035,128367,126448,123785,110,-2120,332,-1919,-2663,476,1928,1867,1861,1781,200,887,895,993,985,276,1041,972,868,796,6,11,11,25,27,-171,-3202,-646,-2903,-3497,-165,-3191,-635,-2878,-3470,-1,30,-5,91,11 -22180,,,"Fayetteville, NC",Metropolitan Statistical Area,366383,366383,367727,373329,373566,377619,377939,1344,5602,237,4053,320,1732,6955,6612,6672,6560,594,2579,2590,2711,2667,1138,4376,4022,3961,3893,516,726,3046,1843,1513,-365,574,-6990,-1902,-5089,151,1300,-3944,-59,-3576,55,-74,159,151,3 -22180,,37051,"Cumberland County, NC",County or equivalent,319431,319431,320254,323865,323099,326466,326328,823,3611,-766,3367,-138,1510,5968,5650,5751,5625,514,2269,2291,2411,2361,996,3699,3359,3340,3264,463,649,2769,1663,1361,-667,-603,-7048,-1769,-4761,-204,46,-4279,-106,-3400,31,-134,154,133,-2 -22180,,37093,"Hoke County, NC",County or equivalent,46952,46952,47473,49464,50467,51153,51611,521,1991,1003,686,458,222,987,962,921,935,80,310,299,300,306,142,677,663,621,629,53,77,277,180,152,302,1177,58,-133,-328,355,1254,335,47,-176,24,60,5,18,5 -22220,,,"Fayetteville-Springdale-Rogers, AR-MO",Metropolitan Statistical Area,463204,463207,465699,474222,483029,492375,501653,2492,8523,8807,9346,9278,1662,6928,7198,7071,7178,726,3294,3488,3250,3292,936,3634,3710,3821,3886,303,1322,1279,1430,1447,1204,3368,3775,3933,3970,1507,4690,5054,5363,5417,49,199,43,162,-25 -22220,,5007,"Benton County, AR",County or equivalent,221339,221344,222923,227769,232739,237301,242321,1579,4846,4970,4562,5020,743,3266,3343,3248,3311,296,1595,1675,1542,1566,447,1671,1668,1706,1745,136,557,521,586,593,954,2509,2727,2153,2706,1090,3066,3248,2739,3299,42,109,54,117,-24 -22220,,5087,"Madison County, AR",County or equivalent,15717,15720,15692,15690,15636,15721,15740,-28,-2,-54,85,19,47,167,204,204,196,64,180,165,147,141,-17,-13,39,57,55,1,7,7,8,8,-11,2,-100,26,-38,-10,9,-93,34,-30,-1,2,0,-6,-6 -22220,,5143,"Washington County, AR",County or equivalent,203065,203060,204019,207893,211734,216753,220792,959,3874,3841,5019,4039,803,3209,3333,3302,3365,329,1325,1439,1356,1377,474,1884,1894,1946,1988,157,724,716,798,807,320,1185,1232,2212,1232,477,1909,1948,3010,2039,8,81,-1,63,12 -22220,,29119,"McDonald County, MO",County or equivalent,23083,23083,23065,22870,22920,22600,22800,-18,-195,50,-320,200,69,286,318,317,306,37,194,209,205,208,32,92,109,112,98,9,34,35,38,39,-59,-328,-84,-458,70,-50,-294,-49,-420,109,0,7,-10,-12,-7 -22380,,,"Flagstaff, AZ",Metropolitan Statistical Area,134421,134437,134603,134159,135949,136690,137682,166,-444,1790,741,992,451,1801,1724,1680,1697,163,720,729,751,772,288,1081,995,929,925,33,110,112,124,124,-145,-1658,665,-375,-124,-112,-1548,777,-251,0,-10,23,18,63,67 -22380,,4005,"Coconino County, AZ",County or equivalent,134421,134437,134603,134159,135949,136690,137682,166,-444,1790,741,992,451,1801,1724,1680,1697,163,720,729,751,772,288,1081,995,929,925,33,110,112,124,124,-145,-1658,665,-375,-124,-112,-1548,777,-251,0,-10,23,18,63,67 -22420,,,"Flint, MI",Metropolitan Statistical Area,425790,425790,424976,421716,418058,415623,412895,-814,-3260,-3658,-2435,-2728,1242,5217,4971,4874,4904,1104,4150,4201,4360,4371,138,1067,770,514,533,62,223,240,256,255,-1064,-4464,-4765,-3408,-3303,-1002,-4241,-4525,-3152,-3048,50,-86,97,203,-213 -22420,,26049,"Genesee County, MI",County or equivalent,425790,425790,424976,421716,418058,415623,412895,-814,-3260,-3658,-2435,-2728,1242,5217,4971,4874,4904,1104,4150,4201,4360,4371,138,1067,770,514,533,62,223,240,256,255,-1064,-4464,-4765,-3408,-3303,-1002,-4241,-4525,-3152,-3048,50,-86,97,203,-213 -22500,,,"Florence, SC",Metropolitan Statistical Area,205566,205571,205713,205746,206225,206380,207030,142,33,479,155,650,642,2616,2628,2572,2585,483,2273,2201,2285,2254,159,343,427,287,331,31,116,123,134,133,-44,-327,-49,-201,246,-13,-211,74,-67,379,-4,-99,-22,-65,-60 -22500,,45031,"Darlington County, SC",County or equivalent,68681,68683,68636,68258,68165,67946,67799,-47,-378,-93,-219,-147,219,799,792,799,791,213,799,761,803,813,6,0,31,-4,-22,10,35,37,40,40,-63,-405,-161,-204,-114,-53,-370,-124,-164,-74,0,-8,0,-51,-51 -22500,,45041,"Florence County, SC",County or equivalent,136885,136888,137077,137488,138060,138434,139231,189,411,572,374,797,423,1817,1836,1773,1794,270,1474,1440,1482,1441,153,343,396,291,353,21,81,86,94,93,19,78,112,3,360,40,159,198,97,453,-4,-91,-22,-14,-9 -22520,,,"Florence-Muscle Shoals, AL",Metropolitan Statistical Area,147137,147137,147231,147042,147167,147273,147639,94,-189,125,106,366,373,1555,1515,1539,1527,356,1768,1692,1832,1739,17,-213,-177,-293,-212,25,90,93,92,93,57,2,212,279,549,82,92,305,371,642,-5,-68,-3,28,-64 -22520,,1033,"Colbert County, AL",County or equivalent,54428,54428,54505,54433,54473,54499,54543,77,-72,40,26,44,153,606,622,600,613,129,671,669,717,660,24,-65,-47,-117,-47,9,33,32,33,34,45,-7,60,98,96,54,26,92,131,130,-1,-33,-5,12,-39 -22520,,1077,"Lauderdale County, AL",County or equivalent,92709,92709,92726,92609,92694,92774,93096,17,-117,85,80,322,220,949,893,939,914,227,1097,1023,1115,1079,-7,-148,-130,-176,-165,16,57,61,59,59,12,9,152,181,453,28,66,213,240,512,-4,-35,2,16,-25 -22540,,,"Fond du Lac, WI",Metropolitan Statistical Area,101633,101633,101645,101792,101702,101648,101759,12,147,-90,-54,111,240,1096,1122,1106,1089,250,916,910,887,870,-10,180,212,219,219,14,78,69,82,85,27,-60,-372,-372,-148,41,18,-303,-290,-63,-19,-51,1,17,-45 -22540,,55039,"Fond du Lac County, WI",County or equivalent,101633,101633,101645,101792,101702,101648,101759,12,147,-90,-54,111,240,1096,1122,1106,1089,250,916,910,887,870,-10,180,212,219,219,14,78,69,82,85,27,-60,-372,-372,-148,41,18,-303,-290,-63,-19,-51,1,17,-45 -22660,,,"Fort Collins, CO",Metropolitan Statistical Area,299630,299630,300484,305241,310835,316494,324122,854,4757,5594,5659,7628,814,3317,3408,3390,3447,488,1867,1871,1971,1965,326,1450,1537,1419,1482,63,350,362,407,411,477,2744,3643,3739,5481,540,3094,4005,4146,5892,-12,213,52,94,254 -22660,,8069,"Larimer County, CO",County or equivalent,299630,299630,300484,305241,310835,316494,324122,854,4757,5594,5659,7628,814,3317,3408,3390,3447,488,1867,1871,1971,1965,326,1450,1537,1419,1482,63,350,362,407,411,477,2744,3643,3739,5481,540,3094,4005,4146,5892,-12,213,52,94,254 -22900,,,"Fort Smith, AR-OK",Metropolitan Statistical Area,280467,280515,280729,281012,280704,279930,279592,214,283,-308,-774,-338,823,3162,3475,3714,3627,621,2657,2915,2984,2938,202,505,560,730,689,43,136,117,146,153,-18,-321,-983,-1667,-1113,25,-185,-866,-1521,-960,-13,-37,-2,17,-67 -22900,,5033,"Crawford County, AR",County or equivalent,61948,61948,61987,61848,61933,61658,61697,39,-139,85,-275,39,192,701,771,790,774,163,574,592,590,576,29,127,179,200,198,3,7,3,7,9,5,-258,-97,-470,-131,8,-251,-94,-463,-122,2,-15,0,-12,-37 -22900,,5131,"Sebastian County, AR",County or equivalent,125744,125744,125824,126916,127370,127118,126776,80,1092,454,-252,-342,456,1761,1755,1650,1660,313,1206,1231,1203,1182,143,555,524,447,478,33,110,99,116,118,-90,473,-158,-858,-902,-57,583,-59,-742,-784,-6,-46,-11,43,-36 -22900,,40079,"Le Flore County, OK",County or equivalent,50384,50384,50470,50227,49935,49847,49761,86,-243,-292,-88,-86,112,450,548,710,667,86,491,599,662,658,26,-41,-51,48,9,7,20,17,24,27,57,-224,-266,-137,-146,64,-204,-249,-113,-119,-4,2,8,-23,24 -22900,,40135,"Sequoyah County, OK",County or equivalent,42391,42439,42448,42021,41466,41307,41358,9,-427,-555,-159,51,63,250,401,564,526,59,386,493,529,522,4,-136,-92,35,4,0,-1,-2,-1,-1,10,-312,-462,-202,66,10,-313,-464,-203,65,-5,22,1,9,-18 -23060,,,"Fort Wayne, IN",Metropolitan Statistical Area,416257,416255,416850,419757,421780,424570,427183,595,2907,2023,2790,2613,1505,5982,5942,6007,6003,688,3422,3505,3415,3485,817,2560,2437,2592,2518,189,773,784,854,851,-399,-271,-1200,-625,-578,-210,502,-416,229,273,-12,-155,2,-31,-178 -23060,,18003,"Allen County, IN",County or equivalent,355329,355327,355857,358745,360832,363596,365918,530,2888,2087,2764,2322,1324,5262,5204,5289,5283,581,2844,2929,2896,2961,743,2418,2275,2393,2322,184,758,767,832,829,-389,-141,-952,-416,-674,-205,617,-185,416,155,-8,-147,-3,-45,-155 -23060,,18179,"Wells County, IN",County or equivalent,27636,27636,27658,27724,27678,27736,27862,22,66,-46,58,126,83,330,370,351,344,44,259,267,249,239,39,71,103,102,105,3,4,6,7,7,-19,-18,-158,-70,33,-16,-14,-152,-63,40,-1,9,3,19,-19 -23060,,18183,"Whitley County, IN",County or equivalent,33292,33292,33335,33288,33270,33238,33403,43,-47,-18,-32,165,98,390,368,367,376,63,319,309,270,285,35,71,59,97,91,2,11,11,15,15,9,-112,-90,-139,63,11,-101,-79,-124,78,-3,-17,2,-5,-4 -23420,,,"Fresno, CA",Metropolitan Statistical Area,930450,930452,932642,941260,948240,956102,965974,2190,8618,6980,7862,9872,4086,16321,15945,15933,15977,1584,6000,6277,6641,6721,2502,10321,9668,9292,9256,326,1999,1813,2088,2152,-645,-3503,-4560,-3764,-1331,-319,-1504,-2747,-1676,821,7,-199,59,246,-205 -23420,,6019,"Fresno County, CA",County or equivalent,930450,930452,932642,941260,948240,956102,965974,2190,8618,6980,7862,9872,4086,16321,15945,15933,15977,1584,6000,6277,6641,6721,2502,10321,9668,9292,9256,326,1999,1813,2088,2152,-645,-3503,-4560,-3764,-1331,-319,-1504,-2747,-1676,821,7,-199,59,246,-205 -23460,,,"Gadsden, AL",Metropolitan Statistical Area,104430,104427,104501,104310,104324,103962,103531,74,-191,14,-362,-431,320,1250,1154,1152,1144,288,1355,1408,1352,1431,32,-105,-254,-200,-287,11,56,55,63,63,40,-105,218,-199,-190,51,-49,273,-136,-127,-9,-37,-5,-26,-17 -23460,,1055,"Etowah County, AL",County or equivalent,104430,104427,104501,104310,104324,103962,103531,74,-191,14,-362,-431,320,1250,1154,1152,1144,288,1355,1408,1352,1431,32,-105,-254,-200,-287,11,56,55,63,63,40,-105,218,-199,-190,51,-49,273,-136,-127,-9,-37,-5,-26,-17 -23540,,,"Gainesville, FL",Metropolitan Statistical Area,264275,264274,264667,266691,268585,270216,273377,393,2024,1894,1631,3161,793,3003,3193,3023,3060,377,1928,1854,2004,2021,416,1075,1339,1019,1039,290,1253,1269,1362,1362,-333,-205,-702,-896,688,-43,1048,567,466,2050,20,-99,-12,146,72 -23540,,12001,"Alachua County, FL",County or equivalent,247336,247335,247680,249712,251713,253309,256380,345,2032,2001,1596,3071,751,2824,3004,2819,2856,358,1762,1671,1816,1847,393,1062,1333,1003,1009,288,1243,1259,1351,1351,-356,-165,-578,-893,623,-68,1078,681,458,1974,20,-108,-13,135,88 -23540,,12041,"Gilchrist County, FL",County or equivalent,16939,16939,16987,16979,16872,16907,16997,48,-8,-107,35,90,42,179,189,204,204,19,166,183,188,174,23,13,6,16,30,2,10,10,11,11,23,-40,-124,-3,65,25,-30,-114,8,76,0,9,1,11,-16 -23580,,,"Gainesville, GA",Metropolitan Statistical Area,179684,179684,180034,182954,185084,187759,190761,350,2920,2130,2675,3002,667,2614,2547,2467,2494,221,1193,1250,1312,1367,446,1421,1297,1155,1127,72,298,240,277,290,-163,900,640,1370,1370,-91,1198,880,1647,1660,-5,301,-47,-127,215 -23580,,13139,"Hall County, GA",County or equivalent,179684,179684,180034,182954,185084,187759,190761,350,2920,2130,2675,3002,667,2614,2547,2467,2494,221,1193,1250,1312,1367,446,1421,1297,1155,1127,72,298,240,277,290,-163,900,640,1370,1370,-91,1198,880,1647,1660,-5,301,-47,-127,215 -23900,,,"Gettysburg, PA",Metropolitan Statistical Area,101407,101413,101470,101649,101538,101457,101714,57,179,-111,-81,257,273,1052,934,1032,974,202,923,921,990,931,71,129,13,42,43,9,50,53,59,59,-22,-84,-167,-270,118,-13,-34,-114,-211,177,-1,84,-10,88,37 -23900,,42001,"Adams County, PA",County or equivalent,101407,101413,101470,101649,101538,101457,101714,57,179,-111,-81,257,273,1052,934,1032,974,202,923,921,990,931,71,129,13,42,43,9,50,53,59,59,-22,-84,-167,-270,118,-13,-34,-114,-211,177,-1,84,-10,88,37 -24020,,,"Glens Falls, NY",Metropolitan Statistical Area,128923,128921,128991,128782,128476,127898,127345,70,-209,-306,-578,-553,313,1255,1268,1154,1169,299,1261,1264,1257,1303,14,-6,4,-103,-134,7,41,46,48,49,58,-195,-355,-534,-408,65,-154,-309,-486,-359,-9,-49,-1,11,-60 -24020,,36113,"Warren County, NY",County or equivalent,65707,65705,65675,65689,65430,65175,64973,-30,14,-259,-255,-202,146,617,611,563,578,185,636,661,617,640,-39,-19,-50,-54,-62,6,27,32,34,34,7,53,-241,-296,-137,13,80,-209,-262,-103,-4,-47,0,61,-37 -24020,,36115,"Washington County, NY",County or equivalent,63216,63216,63316,63093,63046,62723,62372,100,-223,-47,-323,-351,167,638,657,591,591,114,625,603,640,663,53,13,54,-49,-72,1,14,14,14,15,51,-248,-114,-238,-271,52,-234,-100,-224,-256,-5,-2,-1,-50,-23 -24140,,,"Goldsboro, NC",Metropolitan Statistical Area,122623,122623,122888,124022,124504,124596,124456,265,1134,482,92,-140,399,1662,1768,1750,1749,224,1145,1115,1114,1217,175,517,653,636,532,86,196,459,338,304,9,475,-638,-874,-952,95,671,-179,-536,-648,-5,-54,8,-8,-24 -24140,,37191,"Wayne County, NC",County or equivalent,122623,122623,122888,124022,124504,124596,124456,265,1134,482,92,-140,399,1662,1768,1750,1749,224,1145,1115,1114,1217,175,517,653,636,532,86,196,459,338,304,9,475,-638,-874,-952,95,671,-179,-536,-648,-5,-54,8,-8,-24 -24220,,,"Grand Forks, ND-MN",Metropolitan Statistical Area,98461,98461,98605,98195,99214,101014,101842,144,-410,1019,1800,828,335,1334,1399,1363,1418,195,839,814,797,797,140,495,585,566,621,62,268,362,344,333,-47,-1173,71,832,-104,15,-905,433,1176,229,-11,0,1,58,-22 -24220,,27119,"Polk County, MN",County or equivalent,31600,31600,31662,31569,31513,31703,31704,62,-93,-56,190,1,116,385,409,434,430,62,357,360,340,338,54,28,49,94,92,7,32,31,34,34,7,-145,-134,50,-104,14,-113,-103,84,-70,-6,-8,-2,12,-21 -24220,,38035,"Grand Forks County, ND",County or equivalent,66861,66861,66943,66626,67701,69311,70138,82,-317,1075,1610,827,219,949,990,929,988,133,482,454,457,459,86,467,536,472,529,55,236,331,310,299,-54,-1028,205,782,0,1,-792,536,1092,299,-5,8,3,46,-1 -24260,,,"Grand Island, NE",Metropolitan Statistical Area,81850,81850,82043,82683,83462,84187,84755,193,640,779,725,568,275,1170,1148,1212,1195,156,792,736,705,712,119,378,412,507,483,75,333,322,351,353,7,-63,57,-131,-267,82,270,379,220,86,-8,-8,-12,-2,-1 -24260,,31079,"Hall County, NE",County or equivalent,58607,58607,58797,59568,60335,60923,61492,190,771,767,588,569,207,932,899,925,924,105,568,514,485,502,102,364,385,440,422,75,329,318,347,349,15,87,74,-211,-211,90,416,392,136,138,-2,-9,-10,12,9 -24260,,31081,"Hamilton County, NE",County or equivalent,9124,9114,9127,9079,9025,9122,9135,13,-48,-54,97,13,29,89,99,114,110,16,81,75,75,81,13,8,24,39,29,0,1,1,1,1,2,-52,-79,61,-13,2,-51,-78,62,-12,-2,-5,0,-4,-4 -24260,,31093,"Howard County, NE",County or equivalent,6274,6274,6265,6302,6305,6341,6362,-9,37,3,36,21,18,63,73,75,73,3,60,65,71,56,15,3,8,4,17,0,1,1,1,1,-21,34,-5,37,8,-21,35,-4,38,9,-3,-1,-1,-6,-5 -24260,,31121,"Merrick County, NE",County or equivalent,7845,7855,7854,7734,7797,7801,7766,-1,-120,63,4,-35,21,86,77,98,88,32,83,82,74,73,-11,3,-5,24,15,0,2,2,2,2,11,-132,67,-18,-51,11,-130,69,-16,-49,-1,7,-1,-4,-1 -24300,,,"Grand Junction, CO",Metropolitan Statistical Area,146723,146723,146485,147380,147724,147699,148255,-238,895,344,-25,556,481,1908,1817,1853,1825,333,1305,1306,1418,1356,148,603,511,435,469,16,64,54,66,67,-415,276,-204,-617,-17,-399,340,-150,-551,50,13,-48,-17,91,37 -24300,,8077,"Mesa County, CO",County or equivalent,146723,146723,146485,147380,147724,147699,148255,-238,895,344,-25,556,481,1908,1817,1853,1825,333,1305,1306,1418,1356,148,603,511,435,469,16,64,54,66,67,-415,276,-204,-617,-17,-399,340,-150,-551,50,13,-48,-17,91,37 -24340,,,"Grand Rapids-Wyoming, MI",Metropolitan Statistical Area,988938,988940,989205,996355,1006131,1017247,1027703,265,7150,9776,11116,10456,3211,13329,13535,13659,13817,1733,6985,7163,7169,7274,1478,6344,6372,6490,6543,299,1418,1429,1538,1548,-1565,-212,2016,2593,2540,-1266,1206,3445,4131,4088,53,-400,-41,495,-175 -24340,,26015,"Barry County, MI",County or equivalent,59173,59175,59080,58971,59073,59131,59281,-95,-109,102,58,150,158,630,640,595,607,97,488,507,539,527,61,142,133,56,80,1,10,11,14,14,-160,-281,-45,-21,102,-159,-271,-34,-7,116,3,20,3,9,-46 -24340,,26081,"Kent County, MI",County or equivalent,602622,602622,602812,607913,614545,622396,629237,190,5101,6632,7851,6841,2057,8658,8861,8944,9100,1053,4239,4460,4320,4448,1004,4419,4401,4624,4652,199,985,986,1056,1059,-1059,-59,1261,1886,1249,-860,926,2247,2942,2308,46,-244,-16,285,-119 -24340,,26117,"Montcalm County, MI",County or equivalent,63342,63342,63261,63173,63059,62843,62893,-81,-88,-114,-216,50,168,751,716,714,734,150,596,541,584,572,18,155,175,130,162,8,28,28,33,33,-105,-240,-320,-420,-112,-97,-212,-292,-387,-79,-2,-31,3,41,-33 -24340,,26139,"Ottawa County, MI",County or equivalent,263801,263801,264052,266298,269454,272877,276292,251,2246,3156,3423,3415,828,3290,3318,3406,3376,433,1662,1655,1726,1727,395,1628,1663,1680,1649,91,395,404,435,442,-241,368,1120,1148,1301,-150,763,1524,1583,1743,6,-145,-31,160,23 -24420,,,"Grants Pass, OR",Metropolitan Statistical Area,82713,82713,82835,82618,82782,83271,83599,122,-217,164,489,328,185,780,781,832,826,234,1213,1158,1151,1119,-49,-433,-377,-319,-293,4,7,7,7,7,165,251,550,700,659,169,258,557,707,666,2,-42,-16,101,-45 -24420,,41033,"Josephine County, OR",County or equivalent,82713,82713,82835,82618,82782,83271,83599,122,-217,164,489,328,185,780,781,832,826,234,1213,1158,1151,1119,-49,-433,-377,-319,-293,4,7,7,7,7,165,251,550,700,659,169,258,557,707,666,2,-42,-16,101,-45 -24500,,,"Great Falls, MT",Metropolitan Statistical Area,81327,81327,81506,81747,81765,82404,82344,179,241,18,639,-60,284,1196,1178,1184,1169,231,820,789,779,763,53,376,389,405,406,58,64,279,168,134,65,-148,-658,33,-540,123,-84,-379,201,-406,3,-51,8,33,-60 -24500,,30013,"Cascade County, MT",County or equivalent,81327,81327,81506,81747,81765,82404,82344,179,241,18,639,-60,284,1196,1178,1184,1169,231,820,789,779,763,53,376,389,405,406,58,64,279,168,134,65,-148,-658,33,-540,123,-84,-379,201,-406,3,-51,8,33,-60 -24540,,,"Greeley, CO",Metropolitan Statistical Area,252825,252837,254173,258737,264189,270560,277670,1336,4564,5452,6371,7110,955,3753,3794,3907,3980,366,1443,1459,1557,1546,589,2310,2335,2350,2434,44,277,276,314,319,656,1840,2815,3540,4258,700,2117,3091,3854,4577,47,137,26,167,99 -24540,,8123,"Weld County, CO",County or equivalent,252825,252837,254173,258737,264189,270560,277670,1336,4564,5452,6371,7110,955,3753,3794,3907,3980,366,1443,1459,1557,1546,589,2310,2335,2350,2434,44,277,276,314,319,656,1840,2815,3540,4258,700,2117,3091,3854,4577,47,137,26,167,99 -24580,,,"Green Bay, WI",Metropolitan Statistical Area,306241,306241,306712,308763,311052,312573,314531,471,2051,2289,1521,1958,999,3911,4005,3965,3945,518,2325,2327,2229,2238,481,1586,1678,1736,1707,80,382,373,407,414,-73,157,275,-687,-20,7,539,648,-280,394,-17,-74,-37,65,-143 -24580,,55009,"Brown County, WI",County or equivalent,248007,248007,248484,250556,253014,254765,256670,477,2072,2458,1751,1905,863,3341,3450,3422,3417,411,1780,1841,1685,1684,452,1561,1609,1737,1733,80,373,365,398,405,-52,242,523,-450,-111,28,615,888,-52,294,-3,-104,-39,66,-122 -24580,,55061,"Kewaunee County, WI",County or equivalent,20574,20574,20574,20617,20618,20474,20444,0,43,1,-144,-30,62,207,208,196,190,55,166,160,205,191,7,41,48,-9,-1,0,6,5,6,6,-6,-21,-52,-142,-42,-6,-15,-47,-136,-36,-1,17,0,1,7 -24580,,55083,"Oconto County, WI",County or equivalent,37660,37660,37654,37590,37420,37334,37417,-6,-64,-170,-86,83,74,363,347,347,338,52,379,326,339,363,22,-16,21,8,-25,0,3,3,3,3,-15,-64,-196,-95,133,-15,-61,-193,-92,136,-13,13,2,-2,-28 -24660,,,"Greensboro-High Point, NC",Metropolitan Statistical Area,723801,723798,725040,730077,735866,741314,746593,1242,5037,5789,5448,5279,2083,8627,8571,8769,8750,1310,6170,6184,6616,6631,773,2457,2387,2153,2119,342,1490,1486,1650,1665,161,1280,1950,1237,1706,503,2770,3436,2887,3371,-34,-190,-34,408,-211 -24660,,37081,"Guilford County, NC",County or equivalent,488406,488406,489479,495052,500894,506953,512119,1073,5573,5842,6059,5166,1462,6054,6068,6208,6201,788,3863,3820,4022,4120,674,2191,2248,2186,2081,313,1365,1380,1521,1532,112,2105,2240,2048,1630,425,3470,3620,3569,3162,-26,-88,-26,304,-77 -24660,,37151,"Randolph County, NC",County or equivalent,141752,141752,141957,141865,142326,142456,142778,205,-92,461,130,322,427,1607,1609,1608,1609,311,1291,1313,1433,1395,116,316,296,175,214,17,96,81,98,100,74,-457,94,-197,66,91,-361,175,-99,166,-2,-47,-10,54,-58 -24660,,37157,"Rockingham County, NC",County or equivalent,93643,93640,93604,93160,92646,91905,91696,-36,-444,-514,-741,-209,194,966,894,953,940,211,1016,1051,1161,1116,-17,-50,-157,-208,-176,12,29,25,31,33,-25,-368,-384,-614,10,-13,-339,-359,-583,43,-6,-55,2,50,-76 -24780,,,"Greenville, NC",Metropolitan Statistical Area,168148,168148,168826,170763,172895,174351,175354,678,1937,2132,1456,1003,552,2094,2154,2164,2136,215,1143,1186,1167,1227,337,951,968,997,909,44,211,212,228,229,282,805,937,192,-140,326,1016,1149,420,89,15,-30,15,39,5 -24780,,37147,"Pitt County, NC",County or equivalent,168148,168148,168826,170763,172895,174351,175354,678,1937,2132,1456,1003,552,2094,2154,2164,2136,215,1143,1186,1167,1227,337,951,968,997,909,44,211,212,228,229,282,805,937,192,-140,326,1016,1149,420,89,15,-30,15,39,5 -24860,,,"Greenville-Anderson-Mauldin, SC",Metropolitan Statistical Area,824112,824107,825765,833417,842037,850406,862463,1658,7652,8620,8369,12057,2554,10359,10265,10339,10342,1651,7499,7589,7875,7795,903,2860,2676,2464,2547,322,1381,1372,1501,1515,422,3443,4565,3821,7747,744,4824,5937,5322,9262,11,-32,7,583,248 -24860,,45007,"Anderson County, SC",County or equivalent,187126,187123,187322,188563,189365,190754,192810,199,1241,802,1389,2056,593,2234,2178,2279,2228,433,1949,1948,2029,1994,160,285,230,250,234,34,177,177,183,188,11,786,416,836,1572,45,963,593,1019,1760,-6,-7,-21,120,62 -24860,,45045,"Greenville County, SC",County or equivalent,451225,451219,452695,459009,466758,474223,482752,1476,6314,7749,7465,8529,1447,6100,6104,6138,6197,814,3782,3767,3872,3898,633,2318,2337,2266,2299,220,965,947,1050,1057,606,2995,4427,3787,4971,826,3960,5374,4837,6028,17,36,38,362,202 -24860,,45059,"Laurens County, SC",County or equivalent,66537,66539,66533,66419,66258,66207,66533,-6,-114,-161,-51,326,221,814,781,746,749,153,732,779,848,804,68,82,2,-102,-55,5,31,26,29,31,-76,-196,-189,17,356,-71,-165,-163,46,387,-3,-31,0,5,-6 -24860,,45077,"Pickens County, SC",County or equivalent,119224,119226,119215,119426,119656,119222,120368,-11,211,230,-434,1146,293,1211,1202,1176,1168,251,1036,1095,1126,1099,42,175,107,50,69,63,208,222,239,239,-119,-142,-89,-819,848,-56,66,133,-580,1087,3,-30,-10,96,-10 -25060,,,"Gulfport-Biloxi-Pascagoula, MS",Metropolitan Statistical Area,370702,370787,371524,375762,378970,382458,386144,737,4238,3208,3488,3686,1261,4873,4896,4724,4741,924,3356,3405,3537,3413,337,1517,1491,1187,1328,212,449,1103,747,650,171,2082,626,1512,1743,383,2531,1729,2259,2393,17,190,-12,42,-35 -25060,,28045,"Hancock County, MS",County or equivalent,43929,44014,44089,44743,45310,45587,45949,75,654,567,277,362,107,430,479,455,459,134,419,391,419,411,-27,11,88,36,48,21,22,70,50,44,83,597,402,172,301,104,619,472,222,345,-2,24,7,19,-31 -25060,,28047,"Harrison County, MS",County or equivalent,187105,187105,187917,190946,193691,196597,199058,812,3029,2745,2906,2461,695,2778,2793,2767,2769,440,1676,1751,1829,1704,255,1102,1042,938,1065,131,236,770,486,405,411,1536,970,1413,926,542,1772,1740,1899,1331,15,155,-37,69,65 -25060,,28059,"Jackson County, MS",County or equivalent,139668,139668,139518,140073,139969,140274,141137,-150,555,-104,305,863,459,1665,1624,1502,1513,350,1261,1263,1289,1298,109,404,361,213,215,60,191,263,211,201,-323,-51,-746,-73,516,-263,140,-483,138,717,4,11,18,-46,-69 -25180,,,"Hagerstown-Martinsburg, MD-WV",Metropolitan Statistical Area,251599,251602,252408,254533,256224,257950,260070,806,2125,1691,1726,2120,778,3022,3081,3184,3164,592,2246,2348,2418,2425,186,776,733,766,739,78,274,298,303,301,513,1072,658,561,1115,591,1346,956,864,1416,29,3,2,96,-35 -25180,,24043,"Washington County, MD",County or equivalent,147430,147430,147749,148814,149162,149266,149573,319,1065,348,104,307,443,1738,1743,1731,1756,365,1406,1418,1534,1494,78,332,325,197,262,50,201,203,213,213,182,558,-176,-342,-156,232,759,27,-129,57,9,-26,-4,36,-12 -25180,,54003,"Berkeley County, WV",County or equivalent,104169,104172,104659,105719,107062,108684,110497,487,1060,1343,1622,1813,335,1284,1338,1453,1408,227,840,930,884,931,108,444,408,569,477,28,73,95,90,88,331,514,834,903,1271,359,587,929,993,1359,20,29,6,60,-23 -25220,,,"Hammond, LA",Metropolitan Statistical Area,121097,121101,121572,122727,123767,125508,127049,471,1155,1040,1741,1541,475,1849,1896,1922,1937,198,1073,1140,1188,1211,277,776,756,734,726,25,107,99,114,114,160,309,195,828,688,185,416,294,942,802,9,-37,-10,65,13 -25220,,22105,"Tangipahoa Parish, LA",County or equivalent,121097,121101,121572,122727,123767,125508,127049,471,1155,1040,1741,1541,475,1849,1896,1922,1937,198,1073,1140,1188,1211,277,776,756,734,726,25,107,99,114,114,160,309,195,828,688,185,416,294,942,802,9,-37,-10,65,13 -25260,,,"Hanford-Corcoran, CA",Metropolitan Statistical Area,152982,152982,152418,152063,151340,150862,150269,-564,-355,-723,-478,-593,627,2579,2397,2396,2345,227,746,806,788,818,400,1833,1591,1608,1527,98,250,498,377,359,-1135,-2470,-2860,-2458,-2504,-1037,-2220,-2362,-2081,-2145,73,32,48,-5,25 -25260,,6031,"Kings County, CA",County or equivalent,152982,152982,152418,152063,151340,150862,150269,-564,-355,-723,-478,-593,627,2579,2397,2396,2345,227,746,806,788,818,400,1833,1591,1608,1527,98,250,498,377,359,-1135,-2470,-2860,-2458,-2504,-1037,-2220,-2362,-2081,-2145,73,32,48,-5,25 -25420,,,"Harrisburg-Carlisle, PA",Metropolitan Statistical Area,549475,549473,550258,551935,554827,557906,560849,785,1677,2892,3079,2943,1609,6588,6407,6540,6537,1165,5070,5065,4945,4993,444,1518,1342,1595,1544,316,1321,1421,1459,1454,43,-881,128,90,112,359,440,1549,1549,1566,-18,-281,1,-65,-167 -25420,,42041,"Cumberland County, PA",County or equivalent,235406,235408,235953,236920,239198,241268,243762,545,967,2278,2070,2494,606,2527,2493,2560,2582,518,2164,2224,2174,2148,88,363,269,386,434,133,498,577,588,586,339,267,1425,920,1466,472,765,2002,1508,2052,-15,-161,7,176,8 -25420,,42043,"Dauphin County, PA",County or equivalent,268100,268100,268281,269124,269857,271017,271453,181,843,733,1160,436,861,3455,3376,3435,3416,564,2489,2403,2372,2430,297,966,973,1063,986,181,803,824,848,844,-297,-780,-1061,-535,-1247,-116,23,-237,313,-403,0,-146,-3,-216,-147 -25420,,42099,"Perry County, PA",County or equivalent,45969,45965,46024,45891,45772,45621,45634,59,-133,-119,-151,13,142,606,538,545,539,83,417,438,399,415,59,189,100,146,124,2,20,20,23,24,1,-368,-236,-295,-107,3,-348,-216,-272,-83,-3,26,-3,-25,-28 -25500,,,"Harrisonburg, VA",Metropolitan Statistical Area,125228,125217,125426,126920,128599,129233,130649,209,1494,1679,634,1416,359,1427,1342,1391,1411,214,906,950,928,921,145,521,392,463,490,96,421,418,446,448,-18,265,859,-318,420,78,686,1277,128,868,-14,287,10,43,58 -25500,,51165,"Rockingham County, VA",County or equivalent,76314,76310,76354,77109,77375,77715,78171,44,755,266,340,456,209,867,828,782,810,168,635,692,714,701,41,232,136,68,109,15,67,64,78,79,-1,291,78,175,239,14,358,142,253,318,-11,165,-12,19,29 -25500,,51660,"Harrisonburg city, VA",County or equivalent,48914,48907,49072,49811,51224,51518,52478,165,739,1413,294,960,150,560,514,609,601,46,271,258,214,220,104,289,256,395,381,81,354,354,368,369,-17,-26,781,-493,181,64,328,1135,-125,550,-3,122,22,24,29 -25540,,,"Hartford-West Hartford-East Hartford, CT",Metropolitan Statistical Area,1212381,1212387,1214021,1216393,1215143,1215943,1214295,1634,2372,-1250,800,-1648,3027,12447,12075,11960,12059,2447,10397,10101,10202,10289,580,2050,1974,1758,1770,1060,5250,5235,5512,5504,53,-4582,-8477,-5828,-8591,1113,668,-3242,-316,-3087,-59,-346,18,-642,-331 -25540,,9003,"Hartford County, CT",County or equivalent,894014,894029,895197,897142,897698,898848,897985,1168,1945,556,1150,-863,2361,9733,9476,9444,9501,1818,7932,7737,7804,7912,543,1801,1739,1640,1589,896,4592,4548,4764,4758,-188,-4263,-5703,-4696,-7090,708,329,-1155,68,-2332,-83,-185,-28,-558,-120 -25540,,9007,"Middlesex County, CT",County or equivalent,165676,165676,165625,166195,165520,165389,164943,-51,570,-675,-131,-446,355,1534,1476,1368,1423,343,1458,1426,1438,1419,12,76,50,-70,4,95,360,370,410,410,-155,236,-1107,-429,-735,-60,596,-737,-19,-325,-3,-102,12,-42,-125 -25540,,9013,"Tolland County, CT",County or equivalent,152691,152682,153199,153056,151925,151706,151367,517,-143,-1131,-219,-339,311,1180,1123,1148,1135,286,1007,938,960,958,25,173,185,188,177,69,298,317,338,336,396,-555,-1667,-703,-766,465,-257,-1350,-365,-430,27,-59,34,-42,-86 -25620,,,"Hattiesburg, MS",Metropolitan Statistical Area,142842,142857,143336,145298,146713,147846,148656,479,1962,1415,1133,810,513,2080,2000,2060,2044,297,1212,1212,1206,1176,216,868,788,854,868,30,93,128,117,113,235,870,489,125,-178,265,963,617,242,-65,-2,131,10,37,7 -25620,,28035,"Forrest County, MS",County or equivalent,74934,74932,75034,75918,76769,76745,76330,102,884,851,-24,-415,300,1159,1021,1077,1049,127,693,704,761,728,173,466,317,316,321,26,97,130,119,115,-93,310,404,-478,-860,-67,407,534,-359,-745,-4,11,0,19,9 -25620,,28073,"Lamar County, MS",County or equivalent,55658,55675,56095,57148,57864,58983,60099,420,1053,716,1119,1116,185,774,812,829,846,115,386,401,334,333,70,388,411,495,513,4,-4,-2,-2,-2,338,602,302,608,611,342,598,300,606,609,8,67,5,18,-6 -25620,,28111,"Perry County, MS",County or equivalent,12250,12250,12207,12232,12080,12118,12227,-43,25,-152,38,109,28,147,167,154,149,55,133,107,111,115,-27,14,60,43,34,0,0,0,0,0,-10,-42,-217,-5,71,-10,-42,-217,-5,71,-6,53,5,0,4 -25860,,,"Hickory-Lenoir-Morganton, NC",Metropolitan Statistical Area,365497,365492,365305,364392,363711,363373,362896,-187,-913,-681,-338,-477,1036,3757,3884,3727,3796,870,3760,3745,3841,3748,166,-3,139,-114,48,70,271,254,290,297,-398,-1219,-1067,-640,-785,-328,-948,-813,-350,-488,-25,38,-7,126,-37 -25860,,37003,"Alexander County, NC",County or equivalent,37198,37193,37272,37148,37012,37050,37392,79,-124,-136,38,342,105,352,363,359,371,57,331,365,339,345,48,21,-2,20,26,5,15,16,18,18,31,-187,-154,-11,157,36,-172,-138,7,175,-5,27,4,11,141 -25860,,37023,"Burke County, NC",County or equivalent,90912,90914,90699,90772,90235,89628,89486,-215,73,-537,-607,-142,243,809,880,865,863,298,995,988,1004,960,-55,-186,-108,-139,-97,22,93,91,99,99,-188,147,-525,-551,-65,-166,240,-434,-452,34,6,19,5,-16,-79 -25860,,37027,"Caldwell County, NC",County or equivalent,83029,83029,83002,82297,81946,81969,81484,-27,-705,-351,23,-485,218,808,822,771,795,207,900,846,914,875,11,-92,-24,-143,-80,5,22,22,26,26,-31,-620,-354,76,-375,-26,-598,-332,102,-349,-12,-15,5,64,-56 -25860,,37035,"Catawba County, NC",County or equivalent,154358,154356,154332,154175,154518,154726,154534,-24,-157,343,208,-192,470,1788,1819,1732,1767,308,1534,1546,1584,1568,162,254,273,148,199,38,141,125,147,154,-210,-559,-34,-154,-502,-172,-418,91,-7,-348,-14,7,-21,67,-43 -25940,,,"Hilton Head Island-Bluffton-Beaufort, SC",Metropolitan Statistical Area,187010,187010,187898,189524,193755,198279,203022,888,1626,4231,4524,4743,655,2401,2363,2377,2386,432,1522,1468,1607,1622,223,879,895,770,764,200,444,1214,686,620,467,91,2117,3194,2919,667,535,3331,3880,3539,-2,212,5,-126,440 -25940,,45013,"Beaufort County, SC",County or equivalent,162233,162233,162958,164106,167782,171569,175852,725,1148,3676,3787,4283,562,2077,2037,2056,2077,359,1303,1277,1385,1401,203,774,760,671,676,179,365,1124,598,531,353,-97,1775,2540,2750,532,268,2899,3138,3281,-10,106,17,-22,326 -25940,,45053,"Jasper County, SC",County or equivalent,24777,24777,24940,25418,25973,26710,27170,163,478,555,737,460,93,324,326,321,309,73,219,191,222,221,20,105,135,99,88,21,79,90,88,89,114,188,342,654,169,135,267,432,742,258,8,106,-12,-104,114 -25980,,,"Hinesville, GA",Metropolitan Statistical Area,77917,77917,77365,80358,81552,80698,82311,-552,2993,1194,-854,1613,404,1369,1936,1689,1672,115,375,392,390,391,289,994,1544,1299,1281,114,179,974,417,358,-1036,1731,-1364,-2657,-51,-922,1910,-390,-2240,307,81,89,40,87,25 -25980,,13179,"Liberty County, GA",County or equivalent,63453,63469,62686,65115,65391,64057,65198,-783,2429,276,-1334,1141,364,1219,1687,1442,1457,109,301,301,309,303,255,918,1386,1133,1154,101,149,894,367,311,-1212,1299,-2026,-2913,-328,-1111,1448,-1132,-2546,-17,73,63,22,79,4 -25980,,13183,"Long County, GA",County or equivalent,14464,14448,14679,15243,16161,16641,17113,231,564,918,480,472,40,150,249,247,215,6,74,91,81,88,34,76,158,166,127,13,30,80,50,47,176,432,662,256,277,189,462,742,306,324,8,26,18,8,21 -26140,,,"Homosassa Springs, FL",Metropolitan Statistical Area,141236,141236,141283,139773,139290,139134,139377,47,-1510,-483,-156,243,262,1059,1065,1026,1009,597,2278,2309,2410,2410,-335,-1219,-1244,-1384,-1401,21,77,79,89,90,362,-235,683,938,1449,383,-158,762,1027,1539,-1,-133,-1,201,105 -26140,,12017,"Citrus County, FL",County or equivalent,141236,141236,141283,139773,139290,139134,139377,47,-1510,-483,-156,243,262,1059,1065,1026,1009,597,2278,2309,2410,2410,-335,-1219,-1244,-1384,-1401,21,77,79,89,90,362,-235,683,938,1449,383,-158,762,1027,1539,-1,-133,-1,201,105 -26300,,,"Hot Springs, AR",Metropolitan Statistical Area,96024,96024,96156,96641,96837,97065,97322,132,485,196,228,257,298,1162,1089,1124,1141,369,1345,1350,1323,1288,-71,-183,-261,-199,-147,9,15,12,17,18,196,596,440,686,432,205,611,452,703,450,-2,57,5,-276,-46 -26300,,5051,"Garland County, AR",County or equivalent,96024,96024,96156,96641,96837,97065,97322,132,485,196,228,257,298,1162,1089,1124,1141,369,1345,1350,1323,1288,-71,-183,-261,-199,-147,9,15,12,17,18,196,596,440,686,432,205,611,452,703,450,-2,57,5,-276,-46 -26380,,,"Houma-Thibodaux, LA",Metropolitan Statistical Area,208178,208176,208221,208626,208856,209963,211348,45,405,230,1107,1385,687,2843,2894,2690,2755,393,1757,1818,1856,1862,294,1086,1076,834,893,57,257,250,269,272,-303,-881,-1102,-7,310,-246,-624,-852,262,582,-3,-57,6,11,-90 -26380,,22057,"Lafourche Parish, LA",County or equivalent,96318,96592,96699,97008,97125,97325,98020,107,309,117,200,695,312,1169,1229,1218,1212,156,794,858,826,821,156,375,371,392,391,40,191,184,193,193,-86,-228,-433,-363,165,-46,-37,-249,-170,358,-3,-29,-5,-22,-54 -26380,,22109,"Terrebonne Parish, LA",County or equivalent,111860,111584,111522,111618,111731,112638,113328,-62,96,113,907,690,375,1674,1665,1472,1543,237,963,960,1030,1041,138,711,705,442,502,17,66,66,76,79,-217,-653,-669,356,145,-200,-587,-603,432,224,0,-28,11,33,-36 -26420,,,"Houston-The Woodlands-Sugar Land, TX",Metropolitan Statistical Area,5920416,5920490,5949076,6060721,6186923,6333809,6490180,28586,111645,126202,146886,156371,23211,92015,91505,93785,94872,8322,32862,33683,36355,37096,14889,59153,57822,57430,57776,5995,30627,28914,31910,32283,7491,22479,39229,56747,65850,13486,53106,68143,88657,98133,211,-614,237,799,462 -26420,,48015,"Austin County, TX",County or equivalent,28417,28411,28423,28652,28622,28811,29114,12,229,-30,189,303,110,351,331,339,346,104,252,245,254,261,6,99,86,85,85,8,47,36,37,38,2,86,-150,62,198,10,133,-114,99,236,-4,-3,-2,5,-18 -26420,,48039,"Brazoria County, TX",County or equivalent,313166,313127,314452,319444,324697,330670,338124,1325,4992,5253,5973,7454,1157,4698,4501,4581,4689,499,1965,1955,2177,2205,658,2733,2546,2404,2484,110,586,577,630,641,542,1661,2134,2731,4235,652,2247,2711,3361,4876,15,12,-4,208,94 -26420,,48071,"Chambers County, TX",County or equivalent,35096,35096,35406,35597,36388,37215,38145,310,191,791,827,930,100,471,453,453,479,83,238,270,239,235,17,233,183,214,244,2,32,26,33,33,273,-63,574,551,652,275,-31,600,584,685,18,-11,8,29,1 -26420,,48157,"Fort Bend County, TX",County or equivalent,585375,584897,590619,607501,626704,654561,685345,5722,16882,19203,27857,30784,1917,7730,7893,8373,8621,653,2336,2354,2679,2855,1264,5394,5539,5694,5766,804,3821,3778,4118,4125,3482,7096,9823,18227,19767,4286,10917,13601,22345,23892,172,571,63,-182,1126 -26420,,48167,"Galveston County, TX",County or equivalent,291309,291304,292574,295673,301469,307465,314198,1270,3099,5796,5996,6733,1003,3878,3939,3911,3972,600,2205,2232,2434,2513,403,1673,1707,1477,1459,146,659,665,702,701,686,858,3362,3720,4383,832,1517,4027,4422,5084,35,-91,62,97,190 -26420,,48201,"Harris County, TX",County or equivalent,4092459,4093011,4108909,4181948,4263060,4352752,4441370,15898,73039,81112,89692,88618,16948,66939,66389,68009,68468,5423,21948,22734,24358,24648,11525,44991,43655,43651,43820,4566,23839,22348,24733,25056,-88,5813,15110,20866,21336,4478,29652,37458,45599,46392,-105,-1604,-1,442,-1594 -26420,,48291,"Liberty County, TX",County or equivalent,75643,75643,75831,76042,76511,77033,78117,188,211,469,522,1084,231,1035,1030,1057,1059,163,713,638,770,748,68,322,392,287,311,15,62,47,55,59,105,-168,34,170,715,120,-106,81,225,774,0,-5,-4,10,-1 -26420,,48339,"Montgomery County, TX",County or equivalent,455746,455764,459421,471836,485119,499818,518947,3657,12415,13283,14699,19129,1611,6346,6403,6485,6643,763,2918,2995,3159,3336,848,3428,3408,3326,3307,332,1529,1395,1552,1576,2397,6945,8360,9668,13597,2729,8474,9755,11220,15173,80,513,120,153,649 -26420,,48473,"Waller County, TX",County or equivalent,43205,43237,43441,44028,44353,45484,46820,204,587,325,1131,1336,134,567,566,577,595,34,287,260,285,295,100,280,306,292,300,12,52,42,50,54,92,251,-18,752,967,104,303,24,802,1021,0,4,-5,37,15 -26580,,,"Huntington-Ashland, WV-KY-OH",Metropolitan Statistical Area,364908,364930,365170,364937,364944,364189,363325,240,-233,7,-755,-864,1045,4087,4133,4195,4127,924,4219,4038,4118,4154,121,-132,95,77,-27,42,139,153,161,161,99,-232,-230,-837,-876,141,-93,-77,-676,-715,-22,-8,-11,-156,-122 -26580,,21019,"Boyd County, KY",County or equivalent,49542,49538,49682,49448,49284,48963,48832,144,-234,-164,-321,-131,189,568,584,591,587,116,612,573,562,572,73,-44,11,29,15,3,-10,-10,-10,-10,68,-147,-159,-296,-132,71,-157,-169,-306,-142,0,-33,-6,-44,-4 -26580,,21089,"Greenup County, KY",County or equivalent,36910,36914,36909,36850,36718,36496,36308,-5,-59,-132,-222,-188,88,405,378,391,377,96,448,451,425,454,-8,-43,-73,-34,-77,1,6,6,6,6,5,2,-64,-181,-101,6,8,-58,-175,-95,-3,-24,-1,-13,-16 -26580,,39087,"Lawrence County, OH",County or equivalent,62450,62450,62445,62406,62108,61918,61623,-5,-39,-298,-190,-295,189,698,707,710,702,139,694,703,743,693,50,4,4,-33,9,-2,-10,-10,-10,-10,-46,8,-294,-174,-246,-48,-2,-304,-184,-256,-7,-41,2,27,-48 -26580,,54011,"Cabell County, WV",County or equivalent,96319,96317,96347,96557,96935,97181,97109,30,210,378,246,-72,279,1138,1241,1296,1262,297,1158,1090,1084,1101,-18,-20,151,212,161,29,120,130,139,139,24,163,107,-3,-308,53,283,237,136,-169,-5,-53,-10,-102,-64 -26580,,54043,"Lincoln County, WV",County or equivalent,21720,21720,21669,21606,21638,21520,21561,-51,-63,32,-118,41,58,290,253,266,258,96,287,251,266,285,-38,3,2,0,-27,0,1,1,1,1,-8,-78,33,-135,63,-8,-77,34,-134,64,-5,11,-4,16,4 -26580,,54079,"Putnam County, WV",County or equivalent,55486,55510,55694,56140,56589,56586,56770,184,446,449,-3,184,159,605,602,544,557,87,528,526,569,555,72,77,76,-25,2,8,16,19,17,17,102,306,350,-1,132,110,322,369,16,149,2,47,4,6,33 -26580,,54099,"Wayne County, WV",County or equivalent,42481,42481,42424,41930,41672,41525,41122,-57,-494,-258,-147,-403,83,383,368,397,384,93,492,444,469,494,-10,-109,-76,-72,-110,3,16,17,18,18,-46,-486,-203,-47,-284,-43,-470,-186,-29,-266,-4,85,4,-46,-27 -26620,,,"Huntsville, AL",Metropolitan Statistical Area,417593,417593,419418,425248,430231,435997,441086,1825,5830,4983,5766,5089,1309,5265,5036,4981,5033,758,3403,3291,3431,3495,551,1862,1745,1550,1538,159,606,641,658,665,1054,3302,2589,3288,2783,1213,3908,3230,3946,3448,61,60,8,270,103 -26620,,1083,"Limestone County, AL",County or equivalent,82782,82782,83179,85580,87363,88924,90787,397,2401,1783,1561,1863,242,1012,1002,980,1002,159,685,716,662,696,83,327,286,318,306,19,80,68,71,75,279,1900,1419,1128,1452,298,1980,1487,1199,1527,16,94,10,44,30 -26620,,1089,"Madison County, AL",County or equivalent,334811,334811,336239,339668,342868,347073,350299,1428,3429,3200,4205,3226,1067,4253,4034,4001,4031,599,2718,2575,2769,2799,468,1535,1459,1232,1232,140,526,573,587,590,775,1402,1170,2160,1331,915,1928,1743,2747,1921,45,-34,-2,226,73 -26820,,,"Idaho Falls, ID",Metropolitan Statistical Area,133265,133337,133791,134922,136259,137046,138266,454,1131,1337,787,1220,632,2539,2425,2464,2467,180,870,960,939,915,452,1669,1465,1525,1552,9,51,46,56,60,-1,-581,-166,-850,-410,8,-530,-120,-794,-350,-6,-8,-8,56,18 -26820,,16019,"Bonneville County, ID",County or equivalent,104234,104304,104666,105797,106880,107550,108623,362,1131,1083,670,1073,482,2014,1892,1938,1950,139,700,794,788,764,343,1314,1098,1150,1186,6,45,42,52,55,15,-206,-50,-584,-181,21,-161,-8,-532,-126,-2,-22,-7,52,13 -26820,,16023,"Butte County, ID",County or equivalent,2891,2893,2899,2798,2722,2628,2622,6,-101,-76,-94,-6,7,27,32,28,26,0,27,25,26,12,7,0,7,2,14,0,-1,-1,-1,-1,2,-111,-82,-94,-30,2,-112,-83,-95,-31,-3,11,0,-1,11 -26820,,16051,"Jefferson County, ID",County or equivalent,26140,26140,26226,26327,26657,26868,27021,86,101,330,211,153,143,498,501,498,491,41,143,141,125,139,102,355,360,373,352,3,7,5,5,6,-18,-264,-34,-172,-199,-15,-257,-29,-167,-193,-1,3,-1,5,-6 -26900,,,"Indianapolis-Carmel-Anderson, IN",Metropolitan Statistical Area,1887877,1888082,1892508,1910206,1928783,1953146,1971274,4426,17698,18577,24363,18128,6556,26912,26472,26557,26630,3609,14974,15279,15145,15200,2947,11938,11193,11412,11430,940,4007,3966,4340,4370,485,1555,3522,8948,2234,1425,5562,7488,13288,6604,54,198,-104,-337,94 -26900,,18011,"Boone County, IN",County or equivalent,56640,56638,56836,57886,59076,60519,61915,198,1050,1190,1443,1396,155,697,702,748,767,88,436,478,463,453,67,261,224,285,314,13,54,55,62,63,123,669,909,1061,987,136,723,964,1123,1050,-5,66,2,35,32 -26900,,18013,"Brown County, IN",County or equivalent,15242,15242,15209,15075,15068,15054,14962,-33,-134,-7,-14,-92,28,109,125,126,127,54,138,154,154,136,-26,-29,-29,-28,-9,0,1,1,1,1,-7,-114,22,23,-93,-7,-113,23,24,-92,0,8,-1,-10,9 -26900,,18057,"Hamilton County, IN",County or equivalent,274569,274569,276377,283213,289570,296828,302623,1808,6836,6357,7258,5795,888,3842,3810,3676,3739,345,1264,1387,1424,1466,543,2578,2423,2252,2273,159,631,646,687,686,1056,3402,3281,4343,2612,1215,4033,3927,5030,3298,50,225,7,-24,224 -26900,,18059,"Hancock County, IN",County or equivalent,70002,70045,70182,70360,70641,71096,71978,137,178,281,455,882,166,783,746,781,771,118,619,608,542,560,48,164,138,239,211,0,7,7,8,8,88,-18,151,178,642,88,-11,158,186,650,1,25,-15,30,21 -26900,,18063,"Hendricks County, IN",County or equivalent,145448,145412,145849,148613,150722,153644,156056,437,2764,2109,2922,2412,422,1776,1749,1642,1697,210,982,965,977,963,212,794,784,665,734,67,238,246,275,275,155,1618,1090,1898,1319,222,1856,1336,2173,1594,3,114,-11,84,84 -26900,,18081,"Johnson County, IN",County or equivalent,139654,139867,140274,141767,143562,145806,147538,407,1493,1795,2244,1732,441,1841,1829,1877,1891,244,1187,1254,1167,1194,197,654,575,710,697,51,181,208,216,213,164,578,1023,1297,737,215,759,1231,1513,950,-5,80,-11,21,85 -26900,,18095,"Madison County, IN",County or equivalent,131636,131636,131665,131051,130284,130370,130069,29,-614,-767,86,-301,403,1633,1495,1432,1464,366,1501,1456,1417,1398,37,132,39,15,66,19,71,69,74,75,-21,-776,-895,80,-356,-2,-705,-826,154,-281,-6,-41,20,-83,-86 -26900,,18097,"Marion County, IN",County or equivalent,903393,903389,904710,910798,918581,928349,934243,1321,6088,7783,9768,5894,3632,14529,14418,14720,14640,1866,7411,7595,7672,7692,1766,7118,6823,7048,6948,610,2712,2618,2889,2919,-1072,-3491,-1557,197,-3746,-462,-779,1061,3086,-827,17,-251,-101,-366,-227 -26900,,18109,"Morgan County, IN",County or equivalent,68894,68939,69156,69206,69216,69446,69693,217,50,10,230,247,193,804,749,750,738,116,631,633,601,607,77,173,116,149,131,7,34,35,37,37,136,-131,-136,42,106,143,-97,-101,79,143,-3,-26,-5,2,-27 -26900,,18133,"Putnam County, IN",County or equivalent,37963,37952,37928,37882,37681,37532,37618,-24,-46,-201,-149,86,92,360,334,330,321,66,333,329,331,317,26,27,5,-1,4,5,41,43,46,46,-55,-108,-260,-185,62,-50,-67,-217,-139,108,0,-6,11,-9,-26 -26900,,18145,"Shelby County, IN",County or equivalent,44436,44393,44322,44355,44382,44502,44579,-71,33,27,120,77,136,538,515,475,475,136,472,420,397,414,0,66,95,78,61,9,37,38,45,47,-82,-74,-106,14,-36,-73,-37,-68,59,11,2,4,0,-17,5 -26980,,,"Iowa City, IA",Metropolitan Statistical Area,152586,152586,152963,155560,158834,161829,164357,377,2597,3274,2995,2528,507,2040,2059,2066,2121,230,845,859,868,896,277,1195,1200,1198,1225,170,839,842,910,910,-65,541,1213,842,395,105,1380,2055,1752,1305,-5,22,19,45,-2 -26980,,19103,"Johnson County, IA",County or equivalent,130882,130882,131267,133730,136913,139814,142287,385,2463,3183,2901,2473,434,1761,1794,1778,1834,164,576,632,661,680,270,1185,1162,1117,1154,168,835,838,905,905,-48,416,1160,844,399,120,1251,1998,1749,1304,-5,27,23,35,15 -26980,,19183,"Washington County, IA",County or equivalent,21704,21704,21696,21830,21921,22015,22070,-8,134,91,94,55,73,279,265,288,287,66,269,227,207,216,7,10,38,81,71,2,4,4,5,5,-17,125,53,-2,-4,-15,129,57,3,1,0,-5,-4,10,-17 -27060,,,"Ithaca, NY",Metropolitan Statistical Area,101564,101595,101726,102066,103044,104368,104691,131,340,978,1324,323,193,843,933,966,948,122,693,652,617,599,71,150,281,349,349,226,990,1009,1105,1104,-167,-821,-312,-123,-1098,59,169,697,982,6,1,21,0,-7,-32 -27060,,36109,"Tompkins County, NY",County or equivalent,101564,101595,101726,102066,103044,104368,104691,131,340,978,1324,323,193,843,933,966,948,122,693,652,617,599,71,150,281,349,349,226,990,1009,1105,1104,-167,-821,-312,-123,-1098,59,169,697,982,6,1,21,0,-7,-32 -27100,,,"Jackson, MI",Metropolitan Statistical Area,160248,160248,160149,159678,160156,159909,159741,-99,-471,478,-247,-168,463,1831,1799,1755,1756,421,1502,1586,1598,1592,42,329,213,157,164,25,104,105,110,111,-170,-868,183,-542,-351,-145,-764,288,-432,-240,4,-36,-23,28,-92 -27100,,26075,"Jackson County, MI",County or equivalent,160248,160248,160149,159678,160156,159909,159741,-99,-471,478,-247,-168,463,1831,1799,1755,1756,421,1502,1586,1598,1592,42,329,213,157,164,25,104,105,110,111,-170,-868,183,-542,-351,-145,-764,288,-432,-240,4,-36,-23,28,-92 -27140,,,"Jackson, MS",Metropolitan Statistical Area,567122,567645,568905,574402,576899,577219,577564,1260,5497,2497,320,345,1926,7876,7806,7477,7413,941,4847,4933,5113,5069,985,3029,2873,2364,2344,133,499,539,517,527,187,1751,-888,-2348,-2764,320,2250,-349,-1831,-2237,-45,218,-27,-213,238 -27140,,28029,"Copiah County, MS",County or equivalent,29449,29449,29418,29230,28902,28795,28797,-31,-188,-328,-107,2,79,419,377,367,347,43,316,313,332,307,36,103,64,35,40,2,8,7,8,9,-69,-288,-403,-140,-27,-67,-280,-396,-132,-18,0,-11,4,-10,-20 -27140,,28049,"Hinds County, MS",County or equivalent,245285,245365,245766,248409,248298,245616,243729,401,2643,-111,-2682,-1887,892,3453,3437,3282,3214,401,1995,2008,2039,2039,491,1458,1429,1243,1175,60,224,246,236,239,-119,915,-1801,-4092,-3371,-59,1139,-1555,-3856,-3132,-31,46,15,-69,70 -27140,,28089,"Madison County, MS",County or equivalent,95203,95203,95590,97110,98479,100241,101688,387,1520,1369,1762,1447,280,1246,1315,1264,1286,212,930,983,1109,1099,68,316,332,155,187,47,164,162,171,175,278,826,907,1590,889,325,990,1069,1761,1064,-6,214,-32,-154,196 -27140,,28121,"Rankin County, MS",County or equivalent,141617,142061,142532,144075,145604,147135,148070,471,1543,1529,1531,935,492,1991,1943,1864,1864,207,1054,1070,1079,1082,285,937,873,785,782,20,78,102,79,80,159,548,562,600,96,179,626,664,679,176,7,-20,-8,67,-23 -27140,,28127,"Simpson County, MS",County or equivalent,27503,27502,27503,27346,27334,27477,27463,1,-157,-12,143,-14,84,362,352,315,329,43,301,295,259,291,41,61,57,56,38,2,6,4,5,5,-35,-221,-68,94,-49,-33,-215,-64,99,-44,-7,-3,-5,-12,-8 -27140,,28163,"Yazoo County, MS",County or equivalent,28065,28065,28096,28232,28282,27955,27817,31,136,50,-327,-138,99,405,382,385,373,35,251,264,295,251,64,154,118,90,122,2,19,18,18,19,-27,-29,-85,-400,-302,-25,-10,-67,-382,-283,-8,-8,-1,-35,23 -27180,,,"Jackson, TN",Metropolitan Statistical Area,130011,130009,130043,129803,130378,130718,130225,34,-240,575,340,-493,427,1572,1666,1665,1658,314,1258,1205,1257,1230,113,314,461,408,428,8,76,74,80,80,-78,-609,46,-141,-963,-70,-533,120,-61,-883,-9,-21,-6,-7,-38 -27180,,47023,"Chester County, TN",County or equivalent,17131,17131,17174,17216,17225,17354,17379,43,42,9,129,25,47,182,180,186,182,19,189,166,160,150,28,-7,14,26,32,1,12,12,13,13,18,14,-16,88,-23,19,26,-4,101,-10,-4,23,-1,2,3 -27180,,47033,"Crockett County, TN",County or equivalent,14586,14584,14571,14543,14602,14613,14668,-13,-28,59,11,55,35,176,172,196,195,25,176,190,156,173,10,0,-18,40,22,0,6,6,6,6,-20,-38,70,-35,39,-20,-32,76,-29,45,-3,4,1,0,-12 -27180,,47113,"Madison County, TN",County or equivalent,98294,98294,98298,98044,98551,98751,98178,4,-254,507,200,-573,345,1214,1314,1283,1281,270,893,849,941,907,75,321,465,342,374,7,58,56,61,61,-76,-585,-8,-194,-979,-69,-527,48,-133,-918,-2,-48,-6,-9,-29 -27260,,,"Jacksonville, FL",Metropolitan Statistical Area,1345596,1345596,1349137,1361833,1378834,1396046,1419127,3541,12696,17001,17212,23081,4313,17667,17366,17597,17664,2608,10972,11140,12019,12192,1705,6695,6226,5578,5472,854,3182,4175,3819,3715,981,2794,6693,7460,12892,1835,5976,10868,11279,16607,1,25,-93,355,1002 -27260,,12003,"Baker County, FL",County or equivalent,27115,27115,27072,27064,27041,27017,27093,-43,-8,-23,-24,76,77,360,344,332,336,79,228,226,219,217,-2,132,118,113,119,0,6,7,6,6,-40,-143,-147,-151,-34,-40,-137,-140,-145,-28,-1,-3,-1,8,-15 -27260,,12019,"Clay County, FL",County or equivalent,190865,190865,191423,192291,194294,196535,199798,558,868,2003,2241,3263,509,2107,2085,2088,2093,335,1483,1488,1552,1591,174,624,597,536,502,114,423,593,505,489,277,-234,869,1227,2132,391,189,1462,1732,2621,-7,55,-56,-27,140 -27260,,12031,"Duval County, FL",County or equivalent,864263,864263,865842,872294,880595,887322,897698,1579,6452,8301,6727,10376,3092,12575,12390,12463,12472,1756,7041,7286,7870,7921,1336,5534,5104,4593,4551,696,2592,3340,3090,3011,-416,-1335,-83,-1251,2636,280,1257,3257,1839,5647,-37,-339,-60,295,178 -27260,,12089,"Nassau County, FL",County or equivalent,73314,73314,73543,74159,74640,75628,76619,229,616,481,988,991,203,778,734,752,751,127,708,661,706,795,76,70,73,46,-44,15,54,80,67,63,139,458,347,799,815,154,512,427,866,878,-1,34,-19,76,157 -27260,,12109,"St. Johns County, FL",County or equivalent,190039,190039,191257,196025,202264,209544,217919,1218,4768,6239,7280,8375,432,1847,1813,1962,2012,311,1512,1479,1672,1668,121,335,334,290,344,29,107,155,151,146,1021,4048,5707,6836,7343,1050,4155,5862,6987,7489,47,278,43,3,542 -27340,,,"Jacksonville, NC",Metropolitan Statistical Area,177772,177772,179563,177895,183888,185669,187589,1791,-1668,5993,1781,1920,1003,4433,4189,4503,4327,158,865,924,933,937,845,3568,3265,3570,3390,529,428,3200,1532,906,375,-5791,-486,-3432,-2438,904,-5363,2714,-1900,-1532,42,127,14,111,62 -27340,,37133,"Onslow County, NC",County or equivalent,177772,177772,179563,177895,183888,185669,187589,1791,-1668,5993,1781,1920,1003,4433,4189,4503,4327,158,865,924,933,937,845,3568,3265,3570,3390,529,428,3200,1532,906,375,-5791,-486,-3432,-2438,904,-5363,2714,-1900,-1532,42,127,14,111,62 -27500,,,"Janesville-Beloit, WI",Metropolitan Statistical Area,160331,160331,160230,160001,160271,160633,161188,-101,-229,270,362,555,486,1958,1926,1878,1901,309,1397,1407,1432,1371,177,561,519,446,530,8,40,42,50,54,-285,-860,-295,-98,42,-277,-820,-253,-48,96,-1,30,4,-36,-71 -27500,,55105,"Rock County, WI",County or equivalent,160331,160331,160230,160001,160271,160633,161188,-101,-229,270,362,555,486,1958,1926,1878,1901,309,1397,1407,1432,1371,177,561,519,446,530,8,40,42,50,54,-285,-860,-295,-98,42,-277,-820,-253,-48,96,-1,30,4,-36,-71 -27620,,,"Jefferson City, MO",Metropolitan Statistical Area,149807,149807,149950,150377,150366,150638,150866,143,427,-11,272,228,436,1788,1768,1829,1804,286,1237,1238,1208,1259,150,551,530,621,545,26,141,152,152,150,-21,-227,-700,-443,-426,5,-86,-548,-291,-276,-12,-38,7,-58,-41 -27620,,29027,"Callaway County, MO",County or equivalent,44332,44332,44338,44332,44458,44535,44750,6,-6,126,77,215,128,499,508,528,520,129,347,384,346,370,-1,152,124,182,150,7,59,58,63,62,1,-198,-57,-145,12,8,-139,1,-82,74,-1,-19,1,-23,-9 -27620,,29051,"Cole County, MO",County or equivalent,75990,75983,76116,76431,76377,76649,76557,133,315,-54,272,-92,223,942,890,944,920,118,614,589,606,622,105,328,301,338,298,18,71,86,81,80,18,-65,-446,-113,-438,36,6,-360,-32,-358,-8,-19,5,-34,-32 -27620,,29135,"Moniteau County, MO",County or equivalent,15607,15607,15621,15696,15671,15750,15856,14,75,-25,79,106,50,199,215,211,216,21,139,142,141,147,29,60,73,70,69,1,8,5,5,5,-13,17,-102,0,30,-12,25,-97,5,35,-3,-10,-1,4,2 -27620,,29151,"Osage County, MO",County or equivalent,13878,13885,13875,13918,13860,13704,13703,-10,43,-58,-156,-1,35,148,155,146,148,18,137,123,115,120,17,11,32,31,28,0,3,3,3,3,-27,19,-95,-185,-30,-27,22,-92,-182,-27,0,10,2,-5,-2 -27740,,,"Johnson City, TN",Metropolitan Statistical Area,198716,198716,198976,199794,200524,200969,201091,260,818,730,445,122,517,2067,2027,2091,2056,478,2123,2211,2228,2159,39,-56,-184,-137,-103,15,101,95,110,113,215,811,804,354,174,230,912,899,464,287,-9,-38,15,118,-62 -27740,,47019,"Carter County, TN",County or equivalent,57424,57424,57384,57511,57376,57331,56886,-40,127,-135,-45,-445,153,586,519,528,505,134,581,657,715,710,19,5,-138,-187,-205,2,21,20,21,21,-51,84,-14,69,-219,-49,105,6,90,-198,-10,17,-3,52,-42 -27740,,47171,"Unicoi County, TN",County or equivalent,18313,18313,18290,18294,18251,18077,17963,-23,4,-43,-174,-114,46,166,158,157,154,42,256,234,256,254,4,-90,-76,-99,-100,3,11,9,13,15,-25,94,27,-106,-16,-22,105,36,-93,-1,-5,-11,-3,18,-13 -27740,,47179,"Washington County, TN",County or equivalent,122979,122979,123302,123989,124897,125561,126242,323,687,908,664,681,318,1315,1350,1406,1397,302,1286,1320,1257,1195,16,29,30,149,202,10,69,66,76,77,291,633,791,391,409,301,702,857,467,486,6,-44,21,48,-7 -27780,,,"Johnstown, PA",Metropolitan Statistical Area,143679,143674,143444,142566,141531,138900,137732,-230,-878,-1035,-2631,-1168,352,1374,1361,1328,1300,489,1877,1763,1776,1771,-137,-503,-402,-448,-471,12,55,61,64,63,-95,-354,-692,-2296,-669,-83,-299,-631,-2232,-606,-10,-76,-2,49,-91 -27780,,42021,"Cambria County, PA",County or equivalent,143679,143674,143444,142566,141531,138900,137732,-230,-878,-1035,-2631,-1168,352,1374,1361,1328,1300,489,1877,1763,1776,1771,-137,-503,-402,-448,-471,12,55,61,64,63,-95,-354,-692,-2296,-669,-83,-299,-631,-2232,-606,-10,-76,-2,49,-91 -27860,,,"Jonesboro, AR",Metropolitan Statistical Area,121026,121026,121270,122840,124228,125869,126764,244,1570,1388,1641,895,420,1677,1731,1745,1752,287,1192,1201,1149,1218,133,485,530,596,534,26,119,120,138,139,81,939,717,873,266,107,1058,837,1011,405,4,27,21,34,-44 -27860,,5031,"Craighead County, AR",County or equivalent,96443,96443,96726,98381,99903,101647,102518,283,1655,1522,1744,871,339,1369,1415,1444,1445,185,860,878,829,903,154,509,537,615,542,23,90,89,104,105,102,1025,876,959,284,125,1115,965,1063,389,4,31,20,66,-60 -27860,,5111,"Poinsett County, AR",County or equivalent,24583,24583,24544,24459,24325,24222,24246,-39,-85,-134,-103,24,81,308,316,301,307,102,332,323,320,315,-21,-24,-7,-19,-8,3,29,31,34,34,-21,-86,-159,-86,-18,-18,-57,-128,-52,16,0,-4,1,-32,16 -27900,,,"Joplin, MO",Metropolitan Statistical Area,175518,175516,175922,176680,174445,175209,176141,406,758,-2235,764,932,653,2500,2481,2405,2451,414,1795,1673,1764,1687,239,705,808,641,764,36,155,152,170,172,142,-325,-3194,-28,58,178,-170,-3042,142,230,-11,223,-1,-19,-62 -27900,,29097,"Jasper County, MO",County or equivalent,117404,117404,117774,117858,115382,116424,117543,370,84,-2476,1042,1119,465,1756,1687,1712,1733,297,1222,1084,1111,1083,168,534,603,601,650,26,127,126,140,140,181,-669,-3220,285,348,207,-542,-3094,425,488,-5,92,15,16,-19 -27900,,29145,"Newton County, MO",County or equivalent,58114,58112,58148,58822,59063,58785,58598,36,674,241,-278,-187,188,744,794,693,718,117,573,589,653,604,71,171,205,40,114,10,28,26,30,32,-39,344,26,-313,-290,-29,372,52,-283,-258,-6,131,-16,-35,-43 -27980,,,"Kahului-Wailuku-Lahaina, HI",Metropolitan Statistical Area,154924,154925,155072,156854,158521,160880,163108,147,1782,1667,2359,2228,488,2032,2033,2020,2046,264,1034,1087,1166,1253,224,998,946,854,793,153,643,653,712,711,-236,217,77,697,807,-83,860,730,1409,1518,6,-76,-9,96,-83 -27980,,15005,"Kalawao County, HI",County or equivalent,90,90,90,90,89,89,89,0,0,-1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -27980,,15009,"Maui County, HI",County or equivalent,154834,154835,154982,156764,158432,160791,163019,147,1782,1668,2359,2228,488,2032,2033,2020,2046,264,1034,1086,1166,1253,224,998,947,854,793,153,643,653,712,711,-236,217,77,697,807,-83,860,730,1409,1518,6,-76,-9,96,-83 -28020,,,"Kalamazoo-Portage, MI",Metropolitan Statistical Area,326589,326596,326920,328432,330270,332557,334017,324,1512,1838,2287,1460,1029,4013,4016,4087,4094,630,2787,2624,2635,2811,399,1226,1392,1452,1283,137,548,568,606,607,-209,-154,-142,170,-297,-72,394,426,776,310,-3,-108,20,59,-133 -28020,,26077,"Kalamazoo County, MI",County or equivalent,250331,250331,250777,252525,255020,257211,258818,446,1748,2495,2191,1607,806,3070,3052,3185,3159,447,2088,1904,1968,2075,359,982,1148,1217,1084,132,517,545,578,577,-34,324,805,334,29,98,841,1350,912,606,-11,-75,-3,62,-83 -28020,,26159,"Van Buren County, MI",County or equivalent,76258,76265,76143,75907,75250,75346,75199,-122,-236,-657,96,-147,223,943,964,902,935,183,699,720,667,736,40,244,244,235,199,5,31,23,28,30,-175,-478,-947,-164,-326,-170,-447,-924,-136,-296,8,-33,23,-3,-50 -28100,,,"Kankakee, IL",Metropolitan Statistical Area,113449,113449,113462,113453,112926,112193,111375,13,-9,-527,-733,-818,384,1340,1384,1331,1305,299,1011,1019,1094,1091,85,329,365,237,214,16,82,72,86,86,-91,-378,-968,-1085,-1112,-75,-296,-896,-999,-1026,3,-42,4,29,-6 -28100,,17091,"Kankakee County, IL",County or equivalent,113449,113449,113462,113453,112926,112193,111375,13,-9,-527,-733,-818,384,1340,1384,1331,1305,299,1011,1019,1094,1091,85,329,365,237,214,16,82,72,86,86,-91,-378,-968,-1085,-1112,-75,-296,-896,-999,-1026,3,-42,4,29,-6 -28140,,,"Kansas City, MO-KS",Metropolitan Statistical Area,2009342,2009338,2013651,2025003,2039213,2055351,2071133,4313,11352,14210,16138,15782,7031,27719,27576,27814,27732,3803,15915,15930,16133,16321,3228,11804,11646,11681,11411,720,3201,3442,3601,3605,431,-3445,-756,733,1089,1151,-244,2686,4334,4694,-66,-208,-122,123,-323 -28140,,20091,"Johnson County, KS",County or equivalent,544179,544179,545666,552906,559954,567326,574272,1487,7240,7048,7372,6946,1810,7404,7258,7531,7455,782,3409,3467,3569,3624,1028,3995,3791,3962,3831,235,1238,1247,1367,1376,255,2006,2049,1731,1636,490,3244,3296,3098,3012,-31,1,-39,312,103 -28140,,20103,"Leavenworth County, KS",County or equivalent,76227,76227,76555,77118,77729,78234,78797,328,563,611,505,563,241,945,981,964,970,118,586,543,532,547,123,359,438,432,423,54,61,279,160,146,151,159,-100,-65,20,205,220,179,95,166,0,-16,-6,-22,-26 -28140,,20107,"Linn County, KS",County or equivalent,9656,9656,9637,9605,9481,9531,9502,-19,-32,-124,50,-29,25,94,105,93,97,38,107,119,113,116,-13,-13,-14,-20,-19,0,0,0,0,0,-7,-25,-109,104,-3,-7,-25,-109,104,-3,1,6,-1,-34,-7 -28140,,20121,"Miami County, KS",County or equivalent,32787,32783,32862,32696,32605,32839,32822,79,-166,-91,234,-17,100,345,384,369,366,46,280,236,250,270,54,65,148,119,96,0,-1,-1,-1,-1,26,-233,-246,96,-107,26,-234,-247,95,-108,-1,3,8,20,-5 -28140,,20209,"Wyandotte County, KS",County or equivalent,157505,157505,157762,158030,159303,160601,161636,257,268,1273,1298,1035,713,2765,2733,2779,2772,356,1332,1342,1369,1376,357,1433,1391,1410,1396,94,454,425,468,479,-188,-1648,-513,-475,-852,-94,-1194,-88,-7,-373,-6,29,-30,-105,12 -28140,,29013,"Bates County, MO",County or equivalent,17049,17049,17047,17028,16709,16531,16584,-2,-19,-319,-178,53,58,194,185,194,184,58,223,192,203,188,0,-29,-7,-9,-4,1,3,4,5,5,-1,-7,-323,-166,51,0,-4,-319,-161,56,-2,14,7,-8,1 -28140,,29025,"Caldwell County, MO",County or equivalent,9424,9424,9447,9210,9116,9075,9034,23,-237,-94,-41,-41,26,91,91,85,88,12,97,112,96,87,14,-6,-21,-11,1,0,0,0,0,0,9,-274,-70,-27,-40,9,-274,-70,-27,-40,0,43,-3,-3,-2 -28140,,29037,"Cass County, MO",County or equivalent,99478,99478,99697,99927,100439,100744,100889,219,230,512,305,145,294,1204,1204,1178,1170,236,827,868,922,884,58,377,336,256,286,7,42,47,61,50,164,-216,144,-57,-199,171,-174,191,4,-149,-10,27,-15,45,8 -28140,,29047,"Clay County, MO",County or equivalent,221939,221939,222696,225148,227689,230706,233682,757,2452,2541,3017,2976,787,3073,2993,3126,3105,383,1560,1576,1562,1605,404,1513,1417,1564,1500,77,349,373,400,401,261,698,755,991,1107,338,1047,1128,1391,1508,15,-108,-4,62,-32 -28140,,29049,"Clinton County, MO",County or equivalent,20743,20743,20749,20671,20505,20503,20299,6,-78,-166,-2,-204,61,243,223,219,219,31,257,259,221,228,30,-14,-36,-2,-9,0,-3,-3,-3,-3,-21,-59,-127,-11,-208,-21,-62,-130,-14,-211,-3,-2,0,14,16 -28140,,29095,"Jackson County, MO",County or equivalent,674158,674158,674920,675251,677390,680082,683191,762,331,2139,2692,3109,2438,9583,9673,9503,9537,1443,6123,6043,6063,6218,995,3460,3630,3440,3319,213,928,927,999,1006,-423,-3873,-2363,-1590,-861,-210,-2945,-1436,-591,145,-23,-184,-55,-157,-355 -28140,,29107,"Lafayette County, MO",County or equivalent,33381,33381,33409,33241,33109,32898,32688,28,-168,-132,-211,-210,119,372,370,383,378,112,299,343,384,338,7,73,27,-1,40,1,5,5,5,5,22,-240,-167,-213,-236,23,-235,-162,-208,-231,-2,-6,3,-2,-19 -28140,,29165,"Platte County, MO",County or equivalent,89322,89322,89727,90852,92126,93253,94788,405,1125,1274,1127,1535,297,1149,1139,1149,1153,156,577,586,606,575,141,572,553,543,578,38,126,140,140,141,223,447,576,442,845,261,573,716,582,986,3,-20,5,2,-29 -28140,,29177,"Ray County, MO",County or equivalent,23494,23494,23477,23320,23058,23028,22949,-17,-157,-262,-30,-79,62,257,237,241,238,32,238,244,243,265,30,19,-7,-2,-27,0,-1,-1,0,0,-40,-180,-262,-27,-64,-40,-181,-263,-27,-64,-7,5,8,-1,12 -28420,,,"Kennewick-Richland, WA",Metropolitan Statistical Area,253340,253340,255578,263639,268227,271067,274295,2238,8061,4588,2840,3228,1017,4236,4368,4147,4196,378,1638,1596,1591,1680,639,2598,2772,2556,2516,55,320,285,343,363,1466,4973,1519,-137,340,1521,5293,1804,206,703,78,170,12,78,9 -28420,,53005,"Benton County, WA",County or equivalent,175177,175177,176456,180475,182396,184453,186486,1279,4019,1921,2057,2033,601,2552,2604,2519,2583,264,1288,1217,1256,1276,337,1264,1387,1263,1307,52,186,179,212,215,849,2495,363,519,489,901,2681,542,731,704,41,74,-8,63,22 -28420,,53021,"Franklin County, WA",County or equivalent,78163,78163,79122,83164,85831,86614,87809,959,4042,2667,783,1195,416,1684,1764,1628,1613,114,350,379,335,404,302,1334,1385,1293,1209,3,134,106,131,148,617,2478,1156,-656,-149,620,2612,1262,-525,-1,37,96,20,15,-13 -28660,,,"Killeen-Temple, TX",Metropolitan Statistical Area,405300,405298,408217,412715,420364,423282,424858,2919,4498,7649,2918,1576,1769,7949,7075,7638,7393,500,2484,2476,2536,2544,1269,5465,4599,5102,4849,641,929,3359,2030,1624,931,-1918,-319,-4337,-4976,1572,-989,3040,-2307,-3352,78,22,10,123,79 -28660,,48027,"Bell County, TX",County or equivalent,310235,310233,312874,316164,323147,326632,329140,2641,3290,6983,3485,2508,1466,6662,5893,6399,6211,390,1877,1865,1993,1983,1076,4785,4028,4406,4228,482,695,2520,1527,1221,1004,-2209,427,-2508,-2954,1486,-1514,2947,-981,-1733,79,19,8,60,13 -28660,,48099,"Coryell County, TX",County or equivalent,75388,75388,75588,76624,77136,76471,75562,200,1036,512,-665,-909,242,1067,950,1003,955,83,413,409,355,391,159,654,541,648,564,152,206,817,480,379,-108,192,-851,-1840,-1920,44,398,-34,-1360,-1541,-3,-16,5,47,68 -28660,,48281,"Lampasas County, TX",County or equivalent,19677,19677,19755,19927,20081,20179,20156,78,172,154,98,-23,61,220,232,236,227,27,194,202,188,170,34,26,30,48,57,7,28,22,23,24,35,99,105,11,-102,42,127,127,34,-78,2,19,-3,16,-2 -28700,,,"Kingsport-Bristol-Bristol, TN-VA",Metropolitan Statistical Area,309544,309542,309584,309107,308872,308356,308079,42,-477,-235,-516,-277,805,2942,2977,3099,3077,863,3718,3831,3810,3617,-58,-776,-854,-711,-540,20,50,54,62,64,99,305,583,36,416,119,355,637,98,480,-19,-56,-18,97,-217 -28700,,47073,"Hawkins County, TN",County or equivalent,56833,56836,56883,56657,56601,56831,56735,47,-226,-56,230,-96,140,550,533,597,590,125,638,684,665,695,15,-88,-151,-68,-105,2,0,1,3,5,31,-161,98,259,25,33,-161,99,262,30,-1,23,-4,36,-21 -28700,,47163,"Sullivan County, TN",County or equivalent,156823,156823,156856,156978,156673,156694,157047,33,122,-305,21,353,421,1552,1522,1627,1606,483,1955,1967,1935,1788,-62,-403,-445,-308,-182,11,22,23,27,27,100,586,130,262,649,111,608,153,289,676,-16,-83,-13,40,-141 -28700,,51169,"Scott County, VA",County or equivalent,23177,23172,23125,22961,22801,22632,22384,-47,-164,-160,-169,-248,55,192,221,183,189,50,278,314,312,289,5,-86,-93,-129,-100,2,2,3,5,5,-58,-109,-62,-43,-146,-56,-107,-59,-38,-141,4,29,-8,-2,-7 -28700,,51191,"Washington County, VA",County or equivalent,54876,54870,54865,54735,55073,54763,54729,-5,-130,338,-310,-34,117,504,547,505,598,176,578,626,648,603,-59,-74,-79,-143,-5,4,16,17,17,17,51,-57,393,-209,-11,55,-41,410,-192,6,-1,-15,7,25,-35 -28700,,51520,"Bristol city, VA",County or equivalent,17835,17841,17855,17776,17724,17436,17184,14,-79,-52,-288,-252,72,144,154,187,94,29,269,240,250,242,43,-125,-86,-63,-148,1,10,10,10,10,-25,46,24,-233,-101,-24,56,34,-223,-91,-5,-10,0,-2,-13 -28740,,,"Kingston, NY",Metropolitan Statistical Area,182493,182494,182374,182613,181708,180848,180445,-120,239,-905,-860,-403,407,1738,1639,1539,1562,416,1579,1612,1535,1637,-9,159,27,4,-75,81,325,333,354,356,-188,-270,-1279,-1164,-578,-107,55,-946,-810,-222,-4,25,14,-54,-106 -28740,,36111,"Ulster County, NY",County or equivalent,182493,182494,182374,182613,181708,180848,180445,-120,239,-905,-860,-403,407,1738,1639,1539,1562,416,1579,1612,1535,1637,-9,159,27,4,-75,81,325,333,354,356,-188,-270,-1279,-1164,-578,-107,55,-946,-810,-222,-4,25,14,-54,-106 -28940,,,"Knoxville, TN",Metropolitan Statistical Area,837571,837579,838687,842785,847817,851951,857585,1108,4098,5032,4134,5634,2262,9197,9443,9462,9487,1933,8480,8596,8692,8582,329,717,847,770,905,170,708,721,780,787,627,2885,3468,2324,4032,797,3593,4189,3104,4819,-18,-212,-4,260,-90 -28940,,47001,"Anderson County, TN",County or equivalent,75129,75126,75146,75212,75349,75494,75528,20,66,137,145,34,209,805,801,826,820,194,877,934,879,862,15,-72,-133,-53,-42,11,46,48,58,59,-2,145,228,121,72,9,191,276,179,131,-4,-53,-6,19,-55 -28940,,47009,"Blount County, TN",County or equivalent,123010,123016,123151,123625,124016,125045,126339,135,474,391,1029,1294,296,1240,1302,1264,1284,260,1260,1265,1217,1196,36,-20,37,47,88,30,79,79,79,81,78,399,295,871,1065,108,478,374,950,1146,-9,16,-20,32,60 -28940,,47013,"Campbell County, TN",County or equivalent,40716,40716,40704,40559,40429,40195,39918,-12,-145,-130,-234,-277,93,403,430,411,409,94,533,477,535,549,-1,-130,-47,-124,-140,0,-2,-2,-2,-2,-4,-4,-74,-101,-100,-4,-6,-76,-103,-102,-7,-9,-7,-7,-35 -28940,,47057,"Grainger County, TN",County or equivalent,22657,22652,22702,22722,22640,22694,22864,50,20,-82,54,170,65,205,229,223,220,76,238,238,269,255,-11,-33,-9,-46,-35,0,8,7,7,7,60,56,-80,99,200,60,64,-73,106,207,1,-11,0,-6,-2 -28940,,47093,"Knox County, TN",County or equivalent,432226,432234,433005,436523,441136,444350,448644,771,3518,4613,3214,4294,1256,5084,5274,5260,5295,976,3921,4049,4123,4084,280,1163,1225,1137,1211,116,549,566,608,611,361,1971,2805,1237,2480,477,2520,3371,1845,3091,14,-165,17,232,-8 -28940,,47105,"Loudon County, TN",County or equivalent,48556,48559,48735,49059,49743,50438,50771,176,324,684,695,333,101,544,543,548,565,152,535,573,573,534,-51,9,-30,-25,31,8,26,20,25,26,216,294,682,638,275,224,320,702,663,301,3,-5,12,57,1 -28940,,47129,"Morgan County, TN",County or equivalent,21987,21987,21995,22056,21945,21672,21660,8,61,-111,-273,-12,50,195,166,192,178,33,226,204,225,225,17,-31,-38,-33,-47,0,1,1,1,1,-3,69,-73,-231,41,-3,70,-72,-230,42,-6,22,-1,-10,-7 -28940,,47145,"Roane County, TN",County or equivalent,54181,54180,54129,53792,53426,52971,52748,-51,-337,-366,-455,-223,122,511,475,479,470,129,697,657,655,678,-7,-186,-182,-176,-208,5,5,6,8,8,-44,-139,-190,-230,21,-39,-134,-184,-222,29,-5,-17,0,-57,-44 -28940,,47173,"Union County, TN",County or equivalent,19109,19109,19120,19237,19133,19092,19113,11,117,-104,-41,21,70,210,223,259,246,19,193,199,216,199,51,17,24,43,47,0,-4,-4,-4,-4,-35,94,-125,-80,-22,-35,90,-129,-84,-26,-5,10,1,0,0 -29020,,,"Kokomo, IN",Metropolitan Statistical Area,82752,82752,82766,82888,82973,82961,82982,14,122,85,-12,21,260,998,988,1032,1031,173,866,898,906,903,87,132,90,126,128,17,77,76,79,80,-87,-121,-81,-201,-155,-70,-44,-5,-122,-75,-3,34,0,-16,-32 -29020,,18067,"Howard County, IN",County or equivalent,82752,82752,82766,82888,82973,82961,82982,14,122,85,-12,21,260,998,988,1032,1031,173,866,898,906,903,87,132,90,126,128,17,77,76,79,80,-87,-121,-81,-201,-155,-70,-44,-5,-122,-75,-3,34,0,-16,-32 -29100,,,"La Crosse-Onalaska, WI-MN",Metropolitan Statistical Area,133665,133665,133856,134238,135647,136156,136749,191,382,1409,509,593,373,1463,1458,1432,1420,261,1161,1122,1125,1128,112,302,336,307,292,30,142,143,156,156,58,-68,925,12,154,88,74,1068,168,310,-9,6,5,34,-9 -29100,,27055,"Houston County, MN",County or equivalent,19027,19027,18997,18918,18816,18826,18738,-30,-79,-102,10,-88,34,166,201,184,191,26,172,175,167,184,8,-6,26,17,7,0,6,6,6,6,-31,-97,-134,-30,-95,-31,-91,-128,-24,-89,-7,18,0,17,-6 -29100,,55063,"La Crosse County, WI",County or equivalent,114638,114638,114859,115320,116831,117330,118011,221,461,1511,499,681,339,1297,1257,1248,1229,235,989,947,958,944,104,308,310,290,285,30,136,137,150,150,89,29,1059,42,249,119,165,1196,192,399,-2,-12,5,17,-3 -29180,,,"Lafayette, LA",Metropolitan Statistical Area,466750,466750,467650,470677,474220,479763,484974,900,3027,3543,5543,5211,1624,6489,6509,6808,6776,743,3996,3841,4149,4138,881,2493,2668,2659,2638,161,752,730,788,801,-115,-117,144,2033,1781,46,635,874,2821,2582,-27,-101,1,63,-9 -29180,,22001,"Acadia Parish, LA",County or equivalent,61773,61773,61861,61766,61873,62169,62486,88,-95,107,296,317,217,868,878,885,873,114,692,618,657,636,103,176,260,228,237,8,37,37,43,43,-19,-299,-184,62,67,-11,-262,-147,105,110,-4,-9,-6,-37,-30 -29180,,22045,"Iberia Parish, LA",County or equivalent,73240,73240,73272,73543,73916,74030,73913,32,271,373,114,-117,273,1088,983,1019,995,139,655,672,739,745,134,433,311,280,250,20,132,115,131,132,-117,-287,-46,-313,-484,-97,-155,69,-182,-352,-5,-7,-7,16,-15 -29180,,22055,"Lafayette Parish, LA",County or equivalent,221578,221578,222152,224257,227055,231310,235644,574,2105,2798,4255,4334,755,3084,3130,3382,3381,333,1639,1623,1759,1731,422,1445,1507,1623,1650,114,478,481,506,514,40,290,798,2051,2110,154,768,1279,2557,2624,-2,-108,12,75,60 -29180,,22099,"St. Martin Parish, LA",County or equivalent,52160,52160,52275,52863,52716,52946,53315,115,588,-147,230,369,177,691,708,742,722,61,423,415,463,468,116,268,293,279,254,6,41,37,39,40,-2,277,-483,-61,77,4,318,-446,-22,117,-5,2,6,-27,-2 -29180,,22113,"Vermilion Parish, LA",County or equivalent,57999,57999,58090,58248,58660,59308,59616,91,158,412,648,308,202,758,810,780,805,96,587,513,531,558,106,171,297,249,247,13,64,60,69,72,-17,-98,59,294,11,-4,-34,119,363,83,-11,21,-4,36,-22 -29200,,,"Lafayette-West Lafayette, IN",Metropolitan Statistical Area,201789,201789,202055,204434,207110,209769,211697,266,2379,2676,2659,1928,625,2434,2582,2683,2667,278,1356,1385,1343,1343,347,1078,1197,1340,1324,281,1263,1284,1403,1405,-369,76,219,-58,-738,-88,1339,1503,1345,667,7,-38,-24,-26,-63 -29200,,18007,"Benton County, IN",County or equivalent,8854,8854,8883,8883,8834,8748,8700,29,0,-49,-86,-48,29,97,97,103,96,14,82,78,88,82,15,15,19,15,14,0,4,4,4,5,15,-15,-70,-79,-70,15,-11,-66,-75,-65,-1,-4,-2,-26,3 -29200,,18015,"Carroll County, IN",County or equivalent,20155,20155,20161,20066,20096,20096,19923,6,-95,30,0,-173,50,205,205,251,231,30,192,154,180,184,20,13,51,71,47,1,5,5,5,6,-10,-122,-24,-41,-216,-9,-117,-19,-36,-210,-5,9,-2,-35,-10 -29200,,18157,"Tippecanoe County, IN",County or equivalent,172780,172780,173011,175485,178180,180925,183074,231,2474,2695,2745,2149,546,2132,2280,2329,2340,234,1082,1153,1075,1077,312,1050,1127,1254,1263,280,1254,1275,1394,1394,-374,213,313,62,-452,-94,1467,1588,1456,942,13,-43,-20,35,-56 -29340,,,"Lake Charles, LA",Metropolitan Statistical Area,199607,199629,200069,200592,201276,202461,203883,440,523,684,1185,1422,682,2688,2780,2842,2821,517,1899,1856,1943,1951,165,789,924,899,870,48,218,237,234,234,240,-397,-469,114,384,288,-179,-232,348,618,-13,-87,-8,-62,-66 -29340,,22019,"Calcasieu Parish, LA",County or equivalent,192768,192770,193170,193907,194653,195782,197204,400,737,746,1129,1422,666,2611,2727,2791,2770,498,1859,1817,1895,1897,168,752,910,896,873,48,218,237,234,234,197,-119,-396,49,391,245,99,-159,283,625,-13,-114,-5,-50,-76 -29340,,22023,"Cameron Parish, LA",County or equivalent,6839,6859,6899,6685,6623,6679,6679,40,-214,-62,56,0,16,77,53,51,51,19,40,39,48,54,-3,37,14,3,-3,0,0,0,0,0,43,-278,-73,65,-7,43,-278,-73,65,-7,0,27,-3,-12,10 -29420,,,"Lake Havasu City-Kingman, AZ",Metropolitan Statistical Area,200186,200186,200380,202642,203174,202855,203361,194,2262,532,-319,506,517,2012,1869,1750,1857,570,2370,2577,2638,2799,-53,-358,-708,-888,-942,-6,-7,-6,9,12,264,2573,1228,293,1104,258,2566,1222,302,1116,-11,54,18,267,332 -29420,,4015,"Mohave County, AZ",County or equivalent,200186,200186,200380,202642,203174,202855,203361,194,2262,532,-319,506,517,2012,1869,1750,1857,570,2370,2577,2638,2799,-53,-358,-708,-888,-942,-6,-7,-6,9,12,264,2573,1228,293,1104,258,2566,1222,302,1116,-11,54,18,267,332 -29460,,,"Lakeland-Winter Haven, FL",Metropolitan Statistical Area,602095,602095,603359,609696,615764,623159,634638,1264,6337,6068,7395,11479,1931,7173,7250,7281,7268,1302,5963,5832,6187,6215,629,1210,1418,1094,1053,471,2692,2626,2660,2675,155,2767,2035,3051,7436,626,5459,4661,5711,10111,9,-332,-11,590,315 -29460,,12105,"Polk County, FL",County or equivalent,602095,602095,603359,609696,615764,623159,634638,1264,6337,6068,7395,11479,1931,7173,7250,7281,7268,1302,5963,5832,6187,6215,629,1210,1418,1094,1053,471,2692,2626,2660,2675,155,2767,2035,3051,7436,626,5459,4661,5711,10111,9,-332,-11,590,315 -29540,,,"Lancaster, PA",Metropolitan Statistical Area,519445,519448,520317,523670,526766,530122,533320,869,3353,3096,3356,3198,1683,6974,7053,6996,7067,1021,4490,4531,4806,4774,662,2484,2522,2190,2293,227,1161,1176,1210,1213,10,-206,-561,-405,-304,237,955,615,805,909,-30,-86,-41,361,-4 -29540,,42071,"Lancaster County, PA",County or equivalent,519445,519448,520317,523670,526766,530122,533320,869,3353,3096,3356,3198,1683,6974,7053,6996,7067,1021,4490,4531,4806,4774,662,2484,2522,2190,2293,227,1161,1176,1210,1213,10,-206,-561,-405,-304,237,955,615,805,909,-30,-86,-41,361,-4 -29620,,,"Lansing-East Lansing, MI",Metropolitan Statistical Area,464036,464032,464158,465980,466666,468348,470458,126,1822,686,1682,2110,1223,5278,5151,5243,5200,764,3537,3391,3567,3635,459,1741,1760,1676,1565,436,1907,1964,2116,2112,-797,-1951,-3093,-2156,-1438,-361,-44,-1129,-40,674,28,125,55,46,-129 -29620,,26037,"Clinton County, MI",County or equivalent,75382,75382,75388,76178,76426,77106,77297,6,790,248,680,191,164,802,754,815,784,151,561,539,544,556,13,241,215,271,228,17,74,72,82,82,-24,325,-46,279,-83,-7,399,26,361,-1,0,150,7,48,-36 -29620,,26045,"Eaton County, MI",County or equivalent,107759,107759,107757,107858,107968,108243,108579,-2,101,110,275,336,283,1193,1130,1154,1116,233,949,914,994,970,50,244,216,160,146,39,158,180,178,178,-88,-279,-284,-110,21,-49,-121,-104,68,199,-3,-22,-2,47,-9 -29620,,26065,"Ingham County, MI",County or equivalent,280895,280891,281013,281944,282272,282999,284582,122,931,328,727,1583,776,3283,3267,3274,3300,380,2027,1938,2029,2109,396,1256,1329,1245,1191,380,1675,1712,1856,1852,-685,-1997,-2763,-2325,-1376,-305,-322,-1051,-469,476,31,-3,50,-49,-84 -29700,,,"Laredo, TX",Metropolitan Statistical Area,250304,250304,251308,255618,259986,263772,266673,1004,4310,4368,3786,2901,1304,5496,5437,5471,5457,307,1170,1253,1244,1211,997,4326,4184,4227,4246,54,798,601,678,719,-44,-721,-408,-1197,-1984,10,77,193,-519,-1265,-3,-93,-9,78,-80 -29700,,48479,"Webb County, TX",County or equivalent,250304,250304,251308,255618,259986,263772,266673,1004,4310,4368,3786,2901,1304,5496,5437,5471,5457,307,1170,1253,1244,1211,997,4326,4184,4227,4246,54,798,601,678,719,-44,-721,-408,-1197,-1984,10,77,193,-519,-1265,-3,-93,-9,78,-80 -29740,,,"Las Cruces, NM",Metropolitan Statistical Area,209233,209241,210237,212890,214208,213697,213676,996,2653,1318,-511,-21,790,3307,3066,2947,2950,397,1453,1490,1438,1506,393,1854,1576,1509,1444,-14,91,155,139,147,592,779,-409,-2264,-1644,578,870,-254,-2125,-1497,25,-71,-4,105,32 -29740,,35013,"Doña Ana County, NM",County or equivalent,209233,209241,210237,212890,214208,213697,213676,996,2653,1318,-511,-21,790,3307,3066,2947,2950,397,1453,1490,1438,1506,393,1854,1576,1509,1444,-14,91,155,139,147,592,779,-409,-2264,-1644,578,870,-254,-2125,-1497,25,-71,-4,105,32 -29820,,,"Las Vegas-Henderson-Paradise, NV",Metropolitan Statistical Area,1951269,1951269,1953263,1967159,1998646,2029316,2069681,1994,13896,31487,30670,40365,6522,26875,26101,26181,26178,3286,13614,13795,14598,14963,3236,13261,12306,11583,11215,1321,6546,6848,7344,7381,-2617,-5499,12258,10886,20261,-1296,1047,19106,18230,27642,54,-412,75,857,1508 -29820,,32003,"Clark County, NV",County or equivalent,1951269,1951269,1953263,1967159,1998646,2029316,2069681,1994,13896,31487,30670,40365,6522,26875,26101,26181,26178,3286,13614,13795,14598,14963,3236,13261,12306,11583,11215,1321,6546,6848,7344,7381,-2617,-5499,12258,10886,20261,-1296,1047,19106,18230,27642,54,-412,75,857,1508 -29940,,,"Lawrence, KS",Metropolitan Statistical Area,110826,110826,111296,112491,113339,114803,116585,470,1195,848,1464,1782,346,1233,1265,1239,1269,119,608,593,651,605,227,625,672,588,664,133,562,580,621,621,103,16,-399,235,523,236,578,181,856,1144,7,-8,-5,20,-26 -29940,,20045,"Douglas County, KS",County or equivalent,110826,110826,111296,112491,113339,114803,116585,470,1195,848,1464,1782,346,1233,1265,1239,1269,119,608,593,651,605,227,625,672,588,664,133,562,580,621,621,103,16,-399,235,523,236,578,181,856,1144,7,-8,-5,20,-26 -30020,,,"Lawton, OK",Metropolitan Statistical Area,130291,130291,131625,132267,132758,131188,131183,1334,642,491,-1570,-5,573,2251,2072,1993,1946,217,1017,1051,1050,1102,356,1234,1021,943,844,175,307,898,513,410,752,-885,-1436,-3049,-1252,927,-578,-538,-2536,-842,51,-14,8,23,-7 -30020,,40031,"Comanche County, OK",County or equivalent,124098,124098,125448,126109,126611,125035,125033,1350,661,502,-1576,-2,561,2194,1994,1917,1861,187,950,965,973,1020,374,1244,1029,944,841,175,304,890,511,408,750,-869,-1423,-3051,-1242,925,-565,-533,-2540,-834,51,-18,6,20,-9 -30020,,40033,"Cotton County, OK",County or equivalent,6193,6193,6177,6158,6147,6153,6150,-16,-19,-11,6,-3,12,57,78,76,85,30,67,86,77,82,-18,-10,-8,-1,3,0,3,8,2,2,2,-16,-13,2,-10,2,-13,-5,4,-8,0,4,2,3,2 -30140,,,"Lebanon, PA",Metropolitan Statistical Area,133568,133573,133728,134544,135582,135707,136359,155,816,1038,125,652,424,1704,1608,1663,1630,381,1420,1391,1361,1424,43,284,217,302,206,54,394,427,395,394,72,162,414,-620,52,126,556,841,-225,446,-14,-24,-20,48,0 -30140,,42075,"Lebanon County, PA",County or equivalent,133568,133573,133728,134544,135582,135707,136359,155,816,1038,125,652,424,1704,1608,1663,1630,381,1420,1391,1361,1424,43,284,217,302,206,54,394,427,395,394,72,162,414,-620,52,126,556,841,-225,446,-14,-24,-20,48,0 -30300,,,"Lewiston, ID-WA",Metropolitan Statistical Area,60888,60888,61018,61342,61450,62042,62196,130,324,108,592,154,152,700,708,736,752,129,707,741,748,700,23,-7,-33,-12,52,11,29,32,35,35,95,321,110,567,93,106,350,142,602,128,1,-19,-1,2,-26 -30300,,16069,"Nez Perce County, ID",County or equivalent,39265,39265,39321,39431,39577,39938,40007,56,110,146,361,69,102,448,479,497,506,96,491,500,494,463,6,-43,-21,3,43,10,31,33,36,36,40,133,134,322,25,50,164,167,358,61,0,-11,0,0,-35 -30300,,53003,"Asotin County, WA",County or equivalent,21623,21623,21697,21911,21873,22104,22189,74,214,-38,231,85,50,252,229,239,246,33,216,241,254,237,17,36,-12,-15,9,1,-2,-1,-1,-1,55,188,-24,245,68,56,186,-25,244,67,1,-8,-1,2,9 -30340,,,"Lewiston-Auburn, ME",Metropolitan Statistical Area,107702,107702,107661,107353,107506,107391,107440,-41,-308,153,-115,49,325,1340,1317,1317,1273,251,1019,1021,1039,992,74,321,296,278,281,21,104,110,118,118,-140,-696,-257,-594,-310,-119,-592,-147,-476,-192,4,-37,4,83,-40 -30340,,23001,"Androscoggin County, ME",County or equivalent,107702,107702,107661,107353,107506,107391,107440,-41,-308,153,-115,49,325,1340,1317,1317,1273,251,1019,1021,1039,992,74,321,296,278,281,21,104,110,118,118,-140,-696,-257,-594,-310,-119,-592,-147,-476,-192,4,-37,4,83,-40 -30460,,,"Lexington-Fayette, KY",Metropolitan Statistical Area,472099,472099,473402,478459,484616,489324,494189,1303,5057,6157,4708,4865,1471,6161,6260,6215,6247,835,3522,3509,3653,3570,636,2639,2751,2562,2677,255,1178,1155,1282,1292,407,1265,2213,825,1010,662,2443,3368,2107,2302,5,-25,38,39,-114 -30460,,21017,"Bourbon County, KY",County or equivalent,19985,19985,19964,19993,19996,19935,19972,-21,29,3,-61,37,64,216,241,209,213,76,199,199,209,213,-12,17,42,0,0,2,20,12,14,14,-11,-1,-48,-79,23,-9,19,-36,-65,37,0,-7,-3,4,0 -30460,,21049,"Clark County, KY",County or equivalent,35613,35613,35607,35456,35739,35607,35758,-6,-151,283,-132,151,99,403,433,431,426,114,375,385,371,346,-15,28,48,60,80,-2,9,6,12,12,15,-200,227,-184,65,13,-191,233,-172,77,-4,12,2,-20,-6 -30460,,21067,"Fayette County, KY",County or equivalent,295803,295803,296695,301213,305251,308411,310797,892,4518,4038,3160,2386,950,4002,3998,3998,4004,449,2065,2051,2146,2097,501,1937,1947,1852,1907,236,1064,1055,1156,1163,148,1571,1015,125,-512,384,2635,2070,1281,651,7,-54,21,27,-172 -30460,,21113,"Jessamine County, KY",County or equivalent,48586,48586,48678,48865,49563,50084,50815,92,187,698,521,731,145,662,688,635,640,115,366,376,359,365,30,296,312,276,275,17,47,47,57,57,53,-183,336,177,373,70,-136,383,234,430,-8,27,3,11,26 -30460,,21209,"Scott County, KY",County or equivalent,47173,47173,47453,48039,49028,50033,51284,280,586,989,1005,1251,162,588,643,651,672,46,297,287,335,344,116,291,356,316,328,2,26,23,26,26,152,268,594,655,854,154,294,617,681,880,10,1,16,8,43 -30460,,21239,"Woodford County, KY",County or equivalent,24939,24939,25005,24893,25039,25254,25563,66,-112,146,215,309,51,290,257,291,292,35,220,211,233,205,16,70,46,58,87,0,12,12,17,20,50,-190,89,131,207,50,-178,101,148,227,0,-4,-1,9,-5 -30620,,,"Lima, OH",Metropolitan Statistical Area,106331,106331,106364,105907,105283,105214,105040,33,-457,-624,-69,-174,300,1321,1225,1304,1288,218,1078,1071,1094,1063,82,243,154,210,225,15,59,60,58,59,-63,-753,-857,-347,-416,-48,-694,-797,-289,-357,-1,-6,19,10,-42 -30620,,39003,"Allen County, OH",County or equivalent,106331,106331,106364,105907,105283,105214,105040,33,-457,-624,-69,-174,300,1321,1225,1304,1288,218,1078,1071,1094,1063,82,243,154,210,225,15,59,60,58,59,-63,-753,-857,-347,-416,-48,-694,-797,-289,-357,-1,-6,19,10,-42 -30700,,,"Lincoln, NE",Metropolitan Statistical Area,302157,302157,302922,306673,310434,314349,318945,765,3751,3761,3915,4596,1036,4277,4221,4231,4243,437,2185,2070,2000,2028,599,2092,2151,2231,2215,185,801,837,904,897,-10,865,790,693,1455,175,1666,1627,1597,2352,-9,-7,-17,87,29 -30700,,31109,"Lancaster County, NE",County or equivalent,285407,285407,286134,289945,293469,297285,301795,727,3811,3524,3816,4510,988,4069,4015,4052,4055,389,2008,1917,1853,1884,599,2061,2098,2199,2171,185,800,836,902,895,-48,975,602,631,1415,137,1775,1438,1533,2310,-9,-25,-12,84,29 -30700,,31159,"Seward County, NE",County or equivalent,16750,16750,16788,16728,16965,17064,17150,38,-60,237,99,86,48,208,206,179,188,48,177,153,147,144,0,31,53,32,44,0,1,1,2,2,38,-110,188,62,40,38,-109,189,64,42,0,18,-5,3,0 -30780,,,"Little Rock-North Little Rock-Conway, AR",Metropolitan Statistical Area,699757,699799,702305,710759,717703,724335,729135,2506,8454,6944,6632,4800,2344,9979,9834,9882,9788,1555,6005,6080,6354,6215,789,3974,3754,3528,3573,254,787,1106,977,939,1407,3556,2082,2343,454,1661,4343,3188,3320,1393,56,137,2,-216,-166 -30780,,5045,"Faulkner County, AR",County or equivalent,113237,113237,114039,116293,118529,119390,120768,802,2254,2236,861,1378,374,1585,1575,1546,1544,241,806,832,850,836,133,779,743,696,708,23,74,96,91,90,618,1330,1378,38,585,641,1404,1474,129,675,28,71,19,36,-5 -30780,,5053,"Grant County, AR",County or equivalent,17853,17853,17887,17957,18035,18046,18144,34,70,78,11,98,42,191,211,200,209,34,194,192,165,154,8,-3,19,35,55,1,13,11,12,12,25,59,52,-52,41,26,72,63,-40,53,0,1,-4,16,-10 -30780,,5085,"Lonoke County, AR",County or equivalent,68356,68354,68701,69410,70087,70834,71557,347,709,677,747,723,223,979,962,981,961,103,602,604,618,604,120,377,358,363,357,36,68,166,130,116,181,284,169,262,191,217,352,335,392,307,10,-20,-16,-8,59 -30780,,5105,"Perry County, AR",County or equivalent,10445,10441,10447,10386,10326,10344,10245,6,-61,-60,18,-99,23,116,103,101,100,48,102,127,122,124,-25,14,-24,-21,-24,0,1,1,1,1,35,-80,-38,39,-110,35,-79,-37,40,-109,-4,4,1,-1,34 -30780,,5119,"Pulaski County, AR",County or equivalent,382748,382796,383600,386862,389058,391536,392702,804,3262,2196,2478,1166,1403,5799,5652,5677,5582,873,3391,3408,3588,3508,530,2408,2244,2089,2074,178,589,790,701,675,95,413,-812,-321,-1357,273,1002,-22,380,-682,1,-148,-26,9,-226 -30780,,5125,"Saline County, AR",County or equivalent,107118,107118,107631,109851,111668,114185,115719,513,2220,1817,2517,1534,279,1309,1331,1377,1392,256,910,917,1011,989,23,399,414,366,403,16,42,42,42,45,453,1550,1333,2377,1104,469,1592,1375,2419,1149,21,229,28,-268,-18 -30860,,,"Logan, UT-ID",Metropolitan Statistical Area,125442,125442,126076,127648,128769,130175,131364,634,1572,1121,1406,1189,619,2727,2538,2600,2573,121,589,571,576,574,498,2138,1967,2024,1999,69,301,306,329,331,62,-876,-1159,-992,-1169,131,-575,-853,-663,-838,5,9,7,45,28 -30860,,16041,"Franklin County, ID",County or equivalent,12786,12786,12777,12806,12811,12849,13021,-9,29,5,38,172,44,222,200,188,205,35,87,93,99,80,9,135,107,89,125,0,0,-1,-1,0,-16,-104,-103,-59,55,-16,-104,-104,-60,55,-2,-2,2,9,-8 -30860,,49005,"Cache County, UT",County or equivalent,112656,112656,113299,114842,115958,117326,118343,643,1543,1116,1368,1017,575,2505,2338,2412,2368,86,502,478,477,494,489,2003,1860,1935,1874,69,301,307,330,331,78,-772,-1056,-933,-1224,147,-471,-749,-603,-893,7,11,5,36,36 -30980,,,"Longview, TX",Metropolitan Statistical Area,214369,214378,214732,215968,218591,216957,217481,354,1236,2623,-1634,524,755,3098,3087,3010,3022,411,2302,2145,2219,2190,344,796,942,791,832,62,283,235,274,285,-42,166,1387,-2717,-541,20,449,1622,-2443,-256,-10,-9,59,18,-52 -30980,,48183,"Gregg County, TX",County or equivalent,121730,121724,121958,122430,122896,123194,123204,234,472,466,298,10,476,1889,1954,1883,1898,231,1278,1196,1255,1267,245,611,758,628,631,48,211,175,202,210,-57,-368,-465,-570,-817,-9,-157,-290,-368,-607,-2,18,-2,38,-14 -30980,,48401,"Rusk County, TX",County or equivalent,53330,53336,53386,53768,55743,53973,53923,50,382,1975,-1770,-50,162,693,667,662,652,104,566,504,562,525,58,127,163,100,127,5,26,16,22,23,-6,249,1734,-1896,-187,-1,275,1750,-1874,-164,-7,-20,62,4,-13 -30980,,48459,"Upshur County, TX",County or equivalent,39309,39318,39388,39770,39952,39790,40354,70,382,182,-162,564,117,516,466,465,472,76,458,445,402,398,41,58,21,63,74,9,46,44,50,52,21,285,118,-251,463,30,331,162,-201,515,-1,-7,-1,-24,-25 -31020,,,"Longview, WA",Metropolitan Statistical Area,102410,102410,102392,102329,101777,101729,102133,-18,-63,-552,-48,404,274,1251,1208,1139,1135,296,940,1047,1084,1051,-22,311,161,55,84,0,13,20,23,24,18,-388,-738,-167,347,18,-375,-718,-144,371,-14,1,5,41,-51 -31020,,53015,"Cowlitz County, WA",County or equivalent,102410,102410,102392,102329,101777,101729,102133,-18,-63,-552,-48,404,274,1251,1208,1139,1135,296,940,1047,1084,1051,-22,311,161,55,84,0,13,20,23,24,18,-388,-738,-167,347,18,-375,-718,-144,371,-14,1,5,41,-51 -31080,,,"Los Angeles-Long Beach-Anaheim, CA",Metropolitan Statistical Area,12828837,12828933,12845311,12954525,13064761,13175849,13262220,16378,109214,110236,111088,86371,42693,170889,166999,170665,169963,18112,75905,75858,80079,82136,24581,94984,91141,90586,87827,12234,62007,58842,65385,65972,-20886,-43330,-38512,-44458,-61449,-8652,18677,20330,20927,4523,449,-4447,-1235,-425,-5979 -31080,11244,,"Anaheim-Santa Ana-Irvine, CA",Metropolitan Division,3010232,3010269,3018080,3056311,3089893,3121854,3145515,7811,38231,33582,31961,23661,9572,38239,37842,38340,38295,4319,17674,17821,18850,19073,5253,20565,20021,19490,19222,2351,12302,11880,13241,13400,306,6040,1931,-1478,-7945,2657,18342,13811,11763,5455,-99,-676,-250,708,-1016 -31080,11244,6059,"Orange County, CA",County or equivalent,3010232,3010269,3018080,3056311,3089893,3121854,3145515,7811,38231,33582,31961,23661,9572,38239,37842,38340,38295,4319,17674,17821,18850,19073,5253,20565,20021,19490,19222,2351,12302,11880,13241,13400,306,6040,1931,-1478,-7945,2657,18342,13811,11763,5455,-99,-676,-250,708,-1016 -31080,31084,,"Los Angeles-Long Beach-Glendale, CA",Metropolitan Division,9818605,9818664,9827231,9898214,9974868,10053995,10116705,8567,70983,76654,79127,62710,33121,132650,129157,132325,131668,13793,58231,58037,61229,63063,19328,74419,71120,71096,68605,9883,49705,46962,52144,52572,-21192,-49370,-40443,-42980,-53504,-11309,335,6519,9164,-932,548,-3771,-985,-1133,-4963 -31080,31084,6037,"Los Angeles County, CA",County or equivalent,9818605,9818664,9827231,9898214,9974868,10053995,10116705,8567,70983,76654,79127,62710,33121,132650,129157,132325,131668,13793,58231,58037,61229,63063,19328,74419,71120,71096,68605,9883,49705,46962,52144,52572,-21192,-49370,-40443,-42980,-53504,-11309,335,6519,9164,-932,548,-3771,-985,-1133,-4963 -31140,,,"Louisville/Jefferson County, KY-IN",Metropolitan Statistical Area,1235708,1235710,1237778,1244938,1251870,1262244,1269702,2068,7160,6932,10374,7458,3947,15741,15615,15611,15635,2768,11400,11513,11577,11440,1179,4341,4102,4034,4195,475,2097,2139,2333,2334,463,1055,706,4111,1499,938,3152,2845,6444,3833,-49,-333,-15,-104,-570 -31140,,18019,"Clark County, IN",County or equivalent,110232,110232,110547,111534,111919,112800,114262,315,987,385,881,1462,336,1440,1463,1418,1452,247,1017,1087,1097,1085,89,423,376,321,367,26,120,105,115,119,191,452,-80,409,966,217,572,25,524,1085,9,-8,-16,36,10 -31140,,18043,"Floyd County, IN",County or equivalent,74578,74580,74660,74975,75284,76059,76179,80,315,309,775,120,212,870,899,879,888,129,718,730,699,701,83,152,169,180,187,2,1,2,10,11,-2,156,141,638,-78,0,157,143,648,-67,-3,6,-3,-53,0 -31140,,18061,"Harrison County, IN",County or equivalent,39364,39364,39365,39237,39099,39082,39299,1,-128,-138,-17,217,108,400,415,388,388,118,369,363,347,333,-10,31,52,41,55,3,20,20,24,24,13,-169,-215,-82,158,16,-149,-195,-58,182,-5,-10,5,0,-20 -31140,,18143,"Scott County, IN",County or equivalent,24181,24181,24193,23945,23784,23852,23712,12,-248,-161,68,-140,83,290,283,281,280,90,296,301,283,289,-7,-6,-18,-2,-9,1,-1,0,0,0,23,-252,-143,54,-134,24,-253,-143,54,-134,-5,11,0,16,3 -31140,,18175,"Washington County, IN",County or equivalent,28262,28262,28290,28180,27925,27810,27878,28,-110,-255,-115,68,76,297,304,307,305,52,302,303,273,276,24,-5,1,34,29,2,8,9,11,11,7,-104,-271,-152,34,9,-96,-262,-141,45,-5,-9,6,-8,-6 -31140,,21029,"Bullitt County, KY",County or equivalent,74319,74319,74495,75282,75913,76819,77955,176,787,631,906,1136,189,748,753,727,749,104,454,468,580,561,85,294,285,147,188,0,-6,-1,-4,-5,89,454,345,724,913,89,448,344,720,908,2,45,2,39,40 -31140,,21103,"Henry County, KY",County or equivalent,15416,15416,15407,15382,15342,15431,15572,-9,-25,-40,89,141,62,190,166,171,159,47,182,152,149,153,15,8,14,22,6,0,5,5,6,6,-26,-28,-59,78,137,-26,-23,-54,84,143,2,-10,0,-17,-8 -31140,,21111,"Jefferson County, KY",County or equivalent,741096,741096,742227,746562,751327,757282,760026,1131,4335,4765,5955,2744,2551,10066,9925,10023,9986,1787,7223,7222,7256,7169,764,2843,2703,2767,2817,410,1835,1896,2059,2051,1,58,176,1219,-1581,411,1893,2072,3278,470,-44,-401,-10,-90,-543 -31140,,21185,"Oldham County, KY",County or equivalent,60316,60316,60408,60782,61423,62454,63490,92,374,641,1031,1036,123,533,489,491,509,121,309,335,385,348,2,224,154,106,161,17,62,64,69,71,74,70,425,849,835,91,132,489,918,906,-1,18,-2,7,-31 -31140,,21211,"Shelby County, KY",County or equivalent,42074,42074,42267,42902,43603,44259,44875,193,635,701,656,616,135,599,618,668,656,53,326,350,285,291,82,273,268,383,365,11,38,23,27,30,97,291,404,273,247,108,329,427,300,277,3,33,6,-27,-26 -31140,,21215,"Spencer County, KY",County or equivalent,17061,17061,17114,17351,17409,17554,17668,53,237,58,145,114,43,211,190,155,162,12,131,127,131,136,31,80,63,24,26,-1,-4,-3,-3,-3,22,164,-1,125,82,21,160,-4,122,79,1,-3,-1,-1,9 -31140,,21223,"Trimble County, KY",County or equivalent,8809,8809,8805,8806,8842,8842,8786,-4,1,36,0,-56,29,97,110,103,101,8,73,75,92,98,21,24,35,11,3,4,19,19,19,19,-26,-37,-16,-24,-80,-22,-18,3,-5,-61,-3,-5,-2,-6,2 -31180,,,"Lubbock, TX",Metropolitan Statistical Area,290805,290805,292152,295366,297972,301760,305644,1347,3214,2606,3788,3884,1077,4115,4005,4212,4169,541,2341,2323,2386,2440,536,1774,1682,1826,1729,92,415,410,452,456,676,1032,524,1428,1655,768,1447,934,1880,2111,43,-7,-10,82,44 -31180,,48107,"Crosby County, TX",County or equivalent,6059,6059,6048,6088,6099,5992,5899,-11,40,11,-107,-93,23,90,72,63,65,40,71,67,45,51,-17,19,5,18,14,0,3,2,2,2,9,12,4,-116,-108,9,15,6,-114,-106,-3,6,0,-11,-1 -31180,,48303,"Lubbock County, TX",County or equivalent,278831,278831,280207,283399,286096,290060,293974,1376,3192,2697,3964,3914,1037,3954,3852,4070,4026,498,2217,2196,2296,2357,539,1737,1656,1774,1669,92,410,406,448,452,697,1057,644,1626,1768,789,1467,1050,2074,2220,48,-12,-9,116,25 -31180,,48305,"Lynn County, TX",County or equivalent,5915,5915,5897,5879,5777,5708,5771,-18,-18,-102,-69,63,17,71,81,79,78,3,53,60,45,32,14,18,21,34,46,0,2,2,2,2,-30,-37,-124,-82,-5,-30,-35,-122,-80,-3,-2,-1,-1,-23,20 -31340,,,"Lynchburg, VA",Metropolitan Statistical Area,252634,252656,253024,254086,255534,256724,257835,368,1062,1448,1190,1111,719,2732,2735,2749,2737,651,2533,2474,2488,2509,68,199,261,261,228,83,361,358,380,383,236,417,840,576,506,319,778,1198,956,889,-19,85,-11,-27,-6 -31340,,51009,"Amherst County, VA",County or equivalent,32353,32351,32388,32120,32445,32193,32041,37,-268,325,-252,-152,92,341,329,311,315,53,362,352,324,361,39,-21,-23,-13,-46,0,4,3,3,4,1,-249,341,-214,-101,1,-245,344,-211,-97,-3,-2,4,-28,-9 -31340,,51011,"Appomattox County, VA",County or equivalent,14973,14975,15031,15003,15144,15230,15279,56,-28,141,86,49,44,151,198,176,182,27,170,153,134,150,17,-19,45,42,32,0,0,0,0,0,39,-15,93,40,22,39,-15,93,40,22,0,6,3,4,-5 -31340,,51019,"Bedford County, VA",County or equivalent,74898,74866,74941,75338,75431,75740,76583,75,397,93,309,843,157,676,606,664,644,202,714,707,750,762,-45,-38,-101,-86,-118,10,29,29,30,30,113,412,177,367,888,123,441,206,397,918,-3,-6,-12,-2,43 -31340,,51031,"Campbell County, VA",County or equivalent,54842,54851,54891,54812,54726,54851,54885,40,-79,-86,125,34,119,504,520,478,483,153,497,485,508,507,-34,7,35,-30,-24,10,34,34,36,36,65,-157,-152,140,55,75,-123,-118,176,91,-1,37,-3,-21,-33 -31340,,51680,"Lynchburg city, VA",County or equivalent,75568,75613,75773,76813,77788,78710,79047,160,1040,975,922,337,307,1060,1082,1120,1113,216,790,777,772,729,91,270,305,348,384,63,294,292,311,313,18,426,381,243,-358,81,720,673,554,-45,-12,50,-3,20,-2 -31420,,,"Macon, GA",Metropolitan Statistical Area,232293,232293,232307,232851,232840,231332,230450,14,544,-11,-1508,-882,837,3131,3188,2958,2946,609,2297,2226,2450,2465,228,834,962,508,481,41,169,182,198,201,-252,-594,-1148,-2243,-1548,-211,-425,-966,-2045,-1347,-3,135,-7,29,-16 -31420,,13021,"Bibb County, GA",County or equivalent,155547,155510,155630,155850,156184,154615,153905,120,220,334,-1569,-710,613,2292,2324,2197,2240,391,1610,1543,1693,1648,222,682,781,504,592,39,157,170,185,188,-137,-625,-599,-2269,-1439,-98,-468,-429,-2084,-1251,-4,6,-18,11,-51 -31420,,13079,"Crawford County, GA",County or equivalent,12630,12630,12587,12605,12619,12481,12387,-43,18,14,-138,-94,26,136,145,120,98,38,97,115,120,118,-12,39,30,0,-20,0,0,0,0,0,-31,-32,-16,-138,-78,-31,-32,-16,-138,-78,0,11,0,0,4 -31420,,13169,"Jones County, GA",County or equivalent,28669,28669,28656,28910,28795,28769,28787,-13,254,-115,-26,18,104,324,315,308,268,75,236,260,266,264,29,88,55,42,4,1,7,7,7,7,-44,74,-183,-85,18,-43,81,-176,-78,25,1,85,6,10,-11 -31420,,13207,"Monroe County, GA",County or equivalent,26424,26461,26469,26673,26741,27005,27051,8,204,68,264,46,72,272,297,252,254,86,236,227,253,288,-14,36,70,-1,-34,1,7,7,7,7,22,133,-10,241,45,23,140,-3,248,52,-1,28,1,17,28 -31420,,13289,"Twiggs County, GA",County or equivalent,9023,9023,8965,8813,8501,8462,8320,-58,-152,-312,-39,-142,22,107,107,81,86,19,118,81,118,147,3,-11,26,-37,-61,0,-2,-2,-1,-1,-62,-144,-340,8,-94,-62,-146,-342,7,-95,1,5,4,-9,14 -31460,,,"Madera, CA",Metropolitan Statistical Area,150865,150865,151154,152148,152244,152165,154548,289,994,96,-79,2383,599,2442,2376,2182,2224,325,1008,1041,932,960,274,1434,1335,1250,1264,14,213,153,191,207,0,-587,-1427,-1408,939,14,-374,-1274,-1217,1146,1,-66,35,-112,-27 -31460,,6039,"Madera County, CA",County or equivalent,150865,150865,151154,152148,152244,152165,154548,289,994,96,-79,2383,599,2442,2376,2182,2224,325,1008,1041,932,960,274,1434,1335,1250,1264,14,213,153,191,207,0,-587,-1427,-1408,939,14,-374,-1274,-1217,1146,1,-66,35,-112,-27 -31540,,,"Madison, WI",Metropolitan Statistical Area,605435,605437,606409,613773,620401,627466,633787,972,7364,6628,7065,6321,1780,7292,7340,7430,7438,1024,4059,3971,3985,4030,756,3233,3369,3445,3408,330,1502,1533,1670,1671,-75,2302,1704,1602,1368,255,3804,3237,3272,3039,-39,327,22,348,-126 -31540,,55021,"Columbia County, WI",County or equivalent,56833,56833,56888,56716,56461,56613,56615,55,-172,-255,152,2,160,626,579,611,603,152,512,513,491,498,8,114,66,120,105,0,11,10,11,11,53,-289,-326,-27,-118,53,-278,-316,-16,-107,-6,-8,-5,48,4 -31540,,55025,"Dane County, WI",County or equivalent,488073,488075,489007,496307,503293,510027,516284,932,7300,6986,6734,6257,1426,5981,6108,6154,6167,720,2983,2912,2994,3007,706,2998,3196,3160,3160,321,1448,1481,1613,1614,-75,2689,2278,1655,1590,246,4137,3759,3268,3204,-20,165,31,306,-107 -31540,,55045,"Green County, WI",County or equivalent,36842,36842,36852,36972,36881,37086,37063,10,120,-91,205,-23,116,395,374,408,399,93,343,340,329,348,23,52,34,79,51,8,36,35,38,38,-18,-30,-162,80,-96,-10,6,-127,118,-58,-3,62,2,8,-16 -31540,,55049,"Iowa County, WI",County or equivalent,23687,23687,23662,23778,23766,23740,23825,-25,116,-12,-26,85,78,290,279,257,269,59,221,206,171,177,19,69,73,86,92,1,7,7,8,8,-35,-68,-86,-106,-8,-34,-61,-79,-98,0,-10,108,-6,-14,-7 -31700,,,"Manchester-Nashua, NH",Metropolitan Statistical Area,400721,400721,400982,401716,402600,403398,405184,261,734,884,798,1786,1102,4546,4309,4285,4241,632,2943,2972,2927,3036,470,1603,1337,1358,1205,228,902,941,1003,1001,-439,-1661,-1405,-1622,-286,-211,-759,-464,-619,715,2,-110,11,59,-134 -31700,,33011,"Hillsborough County, NH",County or equivalent,400721,400721,400982,401716,402600,403398,405184,261,734,884,798,1786,1102,4546,4309,4285,4241,632,2943,2972,2927,3036,470,1603,1337,1358,1205,228,902,941,1003,1001,-439,-1661,-1405,-1622,-286,-211,-759,-464,-619,715,2,-110,11,59,-134 -31740,,,"Manhattan, KS",Metropolitan Statistical Area,92719,92735,93344,95424,98648,98575,98091,609,2080,3224,-73,-484,395,1482,1499,1546,1521,104,474,486,480,499,291,1008,1013,1066,1022,192,528,1247,852,745,122,542,926,-2026,-2278,314,1070,2173,-1174,-1533,4,2,38,35,27 -31740,,20149,"Pottawatomie County, KS",County or equivalent,21604,21604,21732,22040,22351,22670,22897,128,308,311,319,227,104,379,356,366,366,15,139,164,158,171,89,240,192,208,195,7,30,30,33,33,33,45,91,82,-1,40,75,121,115,32,-1,-7,-2,-4,0 -31740,,20161,"Riley County, KS",County or equivalent,71115,71131,71612,73384,76297,75905,75194,481,1772,2913,-392,-711,291,1103,1143,1180,1155,89,335,322,322,328,202,768,821,858,827,185,498,1217,819,712,89,497,835,-2108,-2277,274,995,2052,-1289,-1565,5,9,40,39,27 -31860,,,"Mankato-North Mankato, MN",Metropolitan Statistical Area,96740,96740,96809,97276,97936,97718,98478,69,467,660,-218,760,273,1173,1145,1091,1092,143,662,665,682,678,130,511,480,409,414,29,100,107,107,107,-90,-135,81,-774,251,-61,-35,188,-667,358,0,-9,-8,40,-12 -31860,,27013,"Blue Earth County, MN",County or equivalent,64013,64013,64069,64313,65000,64835,65385,56,244,687,-165,550,184,769,765,731,739,94,476,465,459,444,90,293,300,272,295,26,89,96,96,96,-61,-126,297,-571,156,-35,-37,393,-475,252,1,-12,-6,38,3 -31860,,27103,"Nicollet County, MN",County or equivalent,32727,32727,32740,32963,32936,32883,33093,13,223,-27,-53,210,89,404,380,360,353,49,186,200,223,234,40,218,180,137,119,3,11,11,11,11,-29,-9,-216,-203,95,-26,2,-205,-192,106,-1,3,-2,2,-15 -31900,,,"Mansfield, OH",Metropolitan Statistical Area,124475,124475,124175,123070,122588,122292,121942,-300,-1105,-482,-296,-350,312,1417,1420,1408,1413,329,1352,1323,1293,1313,-17,65,97,115,100,5,19,22,23,22,-300,-1161,-616,-438,-391,-295,-1142,-594,-415,-369,12,-28,15,4,-81 -31900,,39139,"Richland County, OH",County or equivalent,124475,124475,124175,123070,122588,122292,121942,-300,-1105,-482,-296,-350,312,1417,1420,1408,1413,329,1352,1323,1293,1313,-17,65,97,115,100,5,19,22,23,22,-300,-1161,-616,-438,-391,-295,-1142,-594,-415,-369,12,-28,15,4,-81 -32580,,,"McAllen-Edinburg-Mission, TX",Metropolitan Statistical Area,774769,774773,779194,795303,807725,818942,831073,4421,16109,12422,11217,12131,3833,16375,16139,16158,16120,908,3572,3697,3949,4060,2925,12803,12442,12209,12060,177,2094,1556,1815,1945,1274,1277,-1559,-3234,-1972,1451,3371,-3,-1419,-27,45,-65,-17,427,98 -32580,,48215,"Hidalgo County, TX",County or equivalent,774769,774773,779194,795303,807725,818942,831073,4421,16109,12422,11217,12131,3833,16375,16139,16158,16120,908,3572,3697,3949,4060,2925,12803,12442,12209,12060,177,2094,1556,1815,1945,1274,1277,-1559,-3234,-1972,1451,3371,-3,-1419,-27,45,-65,-17,427,98 -32780,,,"Medford, OR",Metropolitan Statistical Area,203206,203206,203421,204754,206363,208091,210287,215,1333,1609,1728,2196,587,2411,2254,2302,2316,542,2188,2210,2179,2172,45,223,44,123,144,31,64,48,73,79,156,996,1547,1428,1789,187,1060,1595,1501,1868,-17,50,-30,104,184 -32780,,41029,"Jackson County, OR",County or equivalent,203206,203206,203421,204754,206363,208091,210287,215,1333,1609,1728,2196,587,2411,2254,2302,2316,542,2188,2210,2179,2172,45,223,44,123,144,31,64,48,73,79,156,996,1547,1428,1789,187,1060,1595,1501,1868,-17,50,-30,104,184 -32820,,,"Memphis, TN-MS-AR",Metropolitan Statistical Area,1324829,1324829,1326580,1332790,1340755,1341710,1343230,1751,6210,7965,955,1520,4721,18865,19258,18906,18801,2543,10863,10727,11350,11601,2178,8002,8531,7556,7200,363,1609,1700,1802,1828,-788,-3324,-2157,-8336,-7394,-425,-1715,-457,-6534,-5566,-2,-77,-109,-67,-114 -32820,,5035,"Crittenden County, AR",County or equivalent,50902,50902,50954,50528,50070,49758,49548,52,-426,-458,-312,-210,206,803,798,803,769,79,491,461,460,491,127,312,337,343,278,4,19,19,23,23,-77,-762,-823,-627,-506,-73,-743,-804,-604,-483,-2,5,9,-51,-5 -32820,,28009,"Benton County, MS",County or equivalent,8729,8730,8699,8711,8652,8506,8296,-31,12,-59,-146,-210,24,99,80,85,77,39,92,87,80,90,-15,7,-7,5,-13,0,-3,-3,-3,-2,-17,10,-50,-148,-203,-17,7,-53,-151,-205,1,-2,1,0,8 -32820,,28033,"DeSoto County, MS",County or equivalent,161252,161264,161791,163905,166355,168364,170913,527,2114,2450,2009,2549,496,2022,2079,2071,2085,218,1098,1173,1239,1236,278,924,906,832,849,18,73,68,82,85,229,1077,1478,1001,1585,247,1150,1546,1083,1670,2,40,-2,94,30 -32820,,28093,"Marshall County, MS",County or equivalent,37144,37139,37073,36765,36587,36520,36234,-66,-308,-178,-67,-286,98,458,466,436,446,138,372,416,405,429,-40,86,50,31,17,-1,7,9,10,11,-20,-405,-239,-133,-302,-21,-398,-230,-123,-291,-5,4,2,25,-12 -32820,,28137,"Tate County, MS",County or equivalent,28886,28882,28992,28734,28506,28349,28204,110,-258,-228,-157,-145,87,369,340,321,326,40,288,243,284,288,47,81,97,37,38,1,8,6,6,6,59,-364,-338,-194,-171,60,-356,-332,-188,-165,3,17,7,-6,-18 -32820,,28143,"Tunica County, MS",County or equivalent,10778,10778,10760,10587,10458,10512,10598,-18,-173,-129,54,86,61,190,203,209,212,10,131,97,72,88,51,59,106,137,124,8,19,16,16,17,-79,-256,-257,-70,-50,-71,-237,-241,-54,-33,2,5,6,-29,-5 -32820,,47047,"Fayette County, TN",County or equivalent,38413,38413,38404,38525,38609,38772,39011,-9,121,84,163,239,102,446,419,424,415,135,323,302,360,390,-33,123,117,64,25,-1,2,-1,1,1,26,-25,-30,92,166,25,-23,-31,93,167,-1,21,-2,6,47 -32820,,47157,"Shelby County, TN",County or equivalent,927644,927640,928786,933756,939942,939365,938803,1146,4970,6186,-577,-562,3470,13739,14114,13829,13734,1745,7547,7465,7893,8019,1725,6192,6649,5936,5715,327,1461,1563,1641,1661,-903,-2484,-1898,-8011,-7761,-576,-1023,-335,-6370,-6100,-3,-199,-128,-143,-177 -32820,,47167,"Tipton County, TN",County or equivalent,61081,61081,61121,61279,61576,61564,61623,40,158,297,-12,59,177,739,759,728,737,139,521,483,557,570,38,218,276,171,167,7,23,23,26,26,-6,-115,0,-246,-152,1,-92,23,-220,-126,1,32,-2,37,18 -32900,,,"Merced, CA",Metropolitan Statistical Area,255793,255798,256731,259698,261783,263481,266353,933,2967,2085,1698,2872,973,4302,4303,4271,4267,433,1461,1570,1628,1625,540,2841,2733,2643,2642,72,509,470,542,558,317,-341,-1130,-1491,-185,389,168,-660,-949,373,4,-42,12,4,-143 -32900,,6047,"Merced County, CA",County or equivalent,255793,255798,256731,259698,261783,263481,266353,933,2967,2085,1698,2872,973,4302,4303,4271,4267,433,1461,1570,1628,1625,540,2841,2733,2643,2642,72,509,470,542,558,317,-341,-1130,-1491,-185,389,168,-660,-949,373,4,-42,12,4,-143 -33100,,,"Miami-Fort Lauderdale-West Palm Beach, FL",Metropolitan Statistical Area,5564635,5566299,5586506,5706892,5789346,5863458,5929819,20207,120386,82454,74112,66361,16638,66101,66330,65939,65943,11329,45911,45443,47762,49224,5309,20190,20887,18177,16719,13978,62675,57539,62330,62255,948,38210,3580,-9771,-12526,14926,100885,61119,52559,49729,-28,-689,448,3376,-87 -33100,22744,,"Fort Lauderdale-Pompano Beach-Deerfield Beach, FL",Metropolitan Division,1748066,1748148,1753576,1788367,1819773,1845393,1869235,5428,34791,31406,25620,23842,5401,21124,21165,21307,21354,3739,14466,14222,14665,15069,1662,6658,6943,6642,6285,3400,15541,14347,15505,15486,426,12996,9905,2866,2372,3826,28537,24252,18371,17858,-60,-404,211,607,-301 -33100,22744,12011,"Broward County, FL",County or equivalent,1748066,1748148,1753576,1788367,1819773,1845393,1869235,5428,34791,31406,25620,23842,5401,21124,21165,21307,21354,3739,14466,14222,14665,15069,1662,6658,6943,6642,6285,3400,15541,14347,15505,15486,426,12996,9905,2866,2372,3826,28537,24252,18371,17858,-60,-404,211,607,-301 -33100,33124,,"Miami-Miami Beach-Kendall, FL",Metropolitan Division,2496435,2498017,2508689,2579916,2610960,2641866,2662874,10672,71227,31044,30906,21008,7818,31318,31134,30634,30445,4335,18397,18157,19213,19975,3483,12921,12977,11421,10470,8946,39202,35830,38795,38734,-1768,18909,-17993,-21010,-27175,7178,58111,17837,17785,11559,11,195,230,1700,-1021 -33100,33124,12086,"Miami-Dade County, FL",County or equivalent,2496435,2498017,2508689,2579916,2610960,2641866,2662874,10672,71227,31044,30906,21008,7818,31318,31134,30634,30445,4335,18397,18157,19213,19975,3483,12921,12977,11421,10470,8946,39202,35830,38795,38734,-1768,18909,-17993,-21010,-27175,7178,58111,17837,17785,11559,11,195,230,1700,-1021 -33100,48424,,"West Palm Beach-Boca Raton-Delray Beach, FL",Metropolitan Division,1320134,1320134,1324241,1338609,1358613,1376199,1397710,4107,14368,20004,17586,21511,3419,13659,14031,13998,14144,3255,13048,13064,13884,14180,164,611,967,114,-36,1632,7932,7362,8030,8035,2290,6305,11668,8373,12277,3922,14237,19030,16403,20312,21,-480,7,1069,1235 -33100,48424,12099,"Palm Beach County, FL",County or equivalent,1320134,1320134,1324241,1338609,1358613,1376199,1397710,4107,14368,20004,17586,21511,3419,13659,14031,13998,14144,3255,13048,13064,13884,14180,164,611,967,114,-36,1632,7932,7362,8030,8035,2290,6305,11668,8373,12277,3922,14237,19030,16403,20312,21,-480,7,1069,1235 -33140,,,"Michigan City-La Porte, IN",Metropolitan Statistical Area,111467,111467,111421,111187,111158,111256,111444,-46,-234,-29,98,188,303,1327,1301,1294,1280,227,1139,1156,1135,1172,76,188,145,159,108,4,13,12,14,16,-129,-416,-183,-60,96,-125,-403,-171,-46,112,3,-19,-3,-15,-32 -33140,,18091,"LaPorte County, IN",County or equivalent,111467,111467,111421,111187,111158,111256,111444,-46,-234,-29,98,188,303,1327,1301,1294,1280,227,1139,1156,1135,1172,76,188,145,159,108,4,13,12,14,16,-129,-416,-183,-60,96,-125,-403,-171,-46,112,3,-19,-3,-15,-32 -33220,,,"Midland, MI",Metropolitan Statistical Area,83629,83629,83664,83765,83649,83593,83427,35,101,-116,-56,-166,223,862,863,838,831,139,696,696,719,694,84,166,167,119,137,32,125,131,143,142,-84,-150,-422,-325,-436,-52,-25,-291,-182,-294,3,-40,8,7,-9 -33220,,26111,"Midland County, MI",County or equivalent,83629,83629,83664,83765,83649,83593,83427,35,101,-116,-56,-166,223,862,863,838,831,139,696,696,719,694,84,166,167,119,137,32,125,131,143,142,-84,-150,-422,-325,-436,-52,-25,-291,-182,-294,3,-40,8,7,-9 -33260,,,"Midland, TX",Metropolitan Statistical Area,141671,141674,141798,144996,152092,157240,161290,124,3198,7096,5148,4050,567,2333,2492,2740,2807,246,1064,1018,1082,1080,321,1269,1474,1658,1727,25,109,97,109,112,-218,1732,5387,3456,2086,-193,1841,5484,3565,2198,-4,88,138,-75,125 -33260,,48317,"Martin County, TX",County or equivalent,4799,4799,4817,4911,5002,5291,5460,18,94,91,289,169,21,73,88,93,106,19,37,37,38,36,2,36,51,55,70,0,4,2,2,2,18,48,38,231,96,18,52,40,233,98,-2,6,0,1,1 -33260,,48329,"Midland County, TX",County or equivalent,136872,136875,136981,140085,147090,151949,155830,106,3104,7005,4859,3881,546,2260,2404,2647,2701,227,1027,981,1044,1044,319,1233,1423,1603,1657,25,105,95,107,110,-236,1684,5349,3225,1990,-211,1789,5444,3332,2100,-2,82,138,-76,124 -33340,,,"Milwaukee-Waukesha-West Allis, WI",Metropolitan Statistical Area,1555908,1555954,1556535,1561141,1566755,1570167,1572245,581,4606,5614,3412,2078,4954,20122,20184,19848,19882,3193,13059,12898,12914,13059,1761,7063,7286,6934,6823,438,2266,2265,2478,2521,-1590,-4329,-3827,-5734,-7117,-1152,-2063,-1562,-3256,-4596,-28,-394,-110,-266,-149 -33340,,55079,"Milwaukee County, WI",County or equivalent,947735,947736,948210,951481,954521,956386,956406,474,3271,3040,1865,20,3519,14176,14249,13942,13963,2015,8268,8014,8021,8071,1504,5908,6235,5921,5892,344,1841,1840,2007,2046,-1351,-4202,-4988,-5347,-7837,-1007,-2361,-3148,-3340,-5791,-23,-276,-47,-716,-81 -33340,,55089,"Ozaukee County, WI",County or equivalent,86395,86395,86349,86707,87030,87095,87470,-46,358,323,65,375,184,794,811,803,799,154,716,751,707,740,30,78,60,96,59,13,49,51,56,56,-91,278,216,-132,202,-78,327,267,-76,258,2,-47,-4,45,58 -33340,,55131,"Washington County, WI",County or equivalent,131887,131885,131897,132157,132581,132746,133251,12,260,424,165,505,284,1348,1321,1330,1300,251,1018,1035,1014,1045,33,330,286,316,255,9,51,47,54,56,-26,-105,104,-304,219,-17,-54,151,-250,275,-4,-16,-13,99,-25 -33340,,55133,"Waukesha County, WI",County or equivalent,389891,389938,390079,390796,392623,393940,395118,141,717,1827,1317,1178,967,3804,3803,3773,3820,773,3057,3098,3172,3203,194,747,705,601,617,72,325,327,361,363,-122,-300,841,49,299,-50,25,1168,410,662,-3,-55,-46,306,-101 -33460,,,"Minneapolis-St. Paul-Bloomington, MN-WI",Metropolitan Statistical Area,3348859,3348857,3355105,3389149,3423070,3461434,3495176,6248,34044,33921,38364,33742,11242,44909,44826,45955,45934,5020,21336,20810,21753,21854,6222,23573,24016,24202,24080,2294,10365,10619,11506,11544,-2318,294,-519,2391,-782,-24,10659,10100,13897,10762,50,-188,-195,265,-1100 -33460,,27003,"Anoka County, MN",County or equivalent,330844,330844,331438,332916,336132,339229,341864,594,1478,3216,3097,2635,1077,4066,4064,4053,4086,460,1782,1730,1774,1753,617,2284,2334,2279,2333,115,518,548,574,579,-131,-1322,359,197,-89,-16,-804,907,771,490,-7,-2,-25,47,-188 -33460,,27019,"Carver County, MN",County or equivalent,91042,91079,91376,92811,93890,95644,97338,297,1435,1079,1754,1694,296,1104,1096,1137,1164,124,425,402,469,471,172,679,694,668,693,21,71,74,87,90,104,651,325,964,896,125,722,399,1051,986,0,34,-14,35,15 -33460,,27025,"Chisago County, MN",County or equivalent,53887,53887,53934,53752,53491,53789,54025,47,-182,-261,298,236,155,551,573,572,576,68,362,349,342,342,87,189,224,230,234,5,11,12,15,15,-41,-395,-505,34,-14,-36,-384,-493,49,1,-4,13,8,19,1 -33460,,27037,"Dakota County, MN",County or equivalent,398552,398552,399146,402034,405067,408829,412529,594,2888,3033,3762,3700,1280,5122,5221,5218,5258,480,2268,2135,2286,2359,800,2854,3086,2932,2899,167,703,748,797,799,-389,-786,-781,-142,55,-222,-83,-33,655,854,16,117,-20,175,-53 -33460,,27053,"Hennepin County, MN",County or equivalent,1152425,1152388,1154184,1169360,1184787,1200060,1212064,1796,15176,15427,15273,12004,3988,15915,16027,16538,16631,1841,7797,7734,8127,8082,2147,8118,8293,8411,8549,1137,5238,5295,5783,5800,-1528,2213,1874,1036,-1699,-391,7451,7169,6819,4101,40,-393,-35,43,-646 -33460,,27059,"Isanti County, MN",County or equivalent,37816,37816,37876,38242,38245,38174,38413,60,366,3,-71,239,116,501,445,415,413,82,267,308,280,275,34,234,137,135,138,1,19,20,23,23,34,77,-151,-237,78,35,96,-131,-214,101,-9,36,-3,8,0 -33460,,27079,"Le Sueur County, MN",County or equivalent,27703,27703,27690,27802,27647,27678,27770,-13,112,-155,31,92,91,321,314,300,293,31,193,198,221,218,60,128,116,79,75,2,13,13,16,16,-66,-53,-283,-31,12,-64,-40,-270,-15,28,-9,24,-1,-33,-11 -33460,,27095,"Mille Lacs County, MN",County or equivalent,26097,26097,26083,25875,25728,25884,25884,-14,-208,-147,156,0,85,296,338,373,355,82,279,279,262,250,3,17,59,111,105,1,6,8,8,8,-17,-229,-215,56,-115,-16,-223,-207,64,-107,-1,-2,1,-19,2 -33460,,27123,"Ramsey County, MN",County or equivalent,508640,508640,509372,515710,520919,527667,532655,732,6338,5209,6748,4988,1796,7476,7520,7880,7866,918,3918,3806,3907,3928,878,3558,3714,3973,3938,659,2970,3034,3296,3302,-852,84,-1486,-425,-1994,-193,3054,1548,2871,1308,47,-274,-53,-96,-258 -33460,,27139,"Scott County, MN",County or equivalent,129928,129928,130480,132638,135254,137603,139672,552,2158,2616,2349,2069,457,1917,1954,1985,1990,107,559,547,577,571,350,1358,1407,1408,1419,62,259,272,292,294,135,502,934,677,357,197,761,1206,969,651,5,39,3,-28,-1 -33460,,27141,"Sherburne County, MN",County or equivalent,88499,88499,88788,89251,89488,90197,91126,289,463,237,709,929,318,1170,1135,1214,1162,68,499,430,468,488,250,671,705,746,674,8,55,60,60,61,31,-297,-532,-108,147,39,-242,-472,-48,208,0,34,4,11,47 -33460,,27143,"Sibley County, MN",County or equivalent,15226,15226,15231,15175,15100,15058,14918,5,-56,-75,-42,-140,43,189,179,184,175,21,163,141,131,122,22,26,38,53,53,-1,2,2,4,4,-12,-94,-116,-79,-189,-13,-92,-114,-75,-185,-4,10,1,-20,-8 -33460,,27163,"Washington County, MN",County or equivalent,238136,238134,238897,241539,244112,246683,249283,763,2642,2573,2571,2600,672,2877,2721,2835,2813,334,1317,1335,1416,1456,338,1560,1386,1419,1357,101,421,450,466,466,335,613,787,563,781,436,1034,1237,1029,1247,-11,48,-50,123,-4 -33460,,27171,"Wright County, MN",County or equivalent,124700,124700,125102,126298,127316,128298,129918,402,1196,1018,982,1620,468,1879,1830,1807,1771,184,704,638,723,720,284,1175,1192,1084,1051,12,63,69,68,70,117,-103,-236,-187,511,129,-40,-167,-119,581,-11,61,-7,17,-12 -33460,,55093,"Pierce County, WI",County or equivalent,41019,41019,41110,40822,40674,40733,40958,91,-288,-148,59,225,121,401,398,403,390,68,232,241,243,260,53,169,157,160,130,-2,0,-3,-2,-2,41,-482,-306,-95,108,39,-482,-309,-97,106,-1,25,4,-4,-11 -33460,,55109,"St. Croix County, WI",County or equivalent,84345,84345,84398,84924,85220,85908,86759,53,526,296,688,851,279,1124,1011,1041,991,152,571,537,527,559,127,553,474,514,432,6,16,17,19,19,-79,-85,-187,168,373,-73,-69,-170,187,392,-1,42,-8,-13,27 -33540,,,"Missoula, MT",Metropolitan Statistical Area,109299,109299,109425,110121,111054,111769,112684,126,696,933,715,915,293,1200,1214,1237,1219,214,802,760,789,794,79,398,454,448,425,24,99,103,119,119,22,226,380,119,386,46,325,483,238,505,1,-27,-4,29,-15 -33540,,30063,"Missoula County, MT",County or equivalent,109299,109299,109425,110121,111054,111769,112684,126,696,933,715,915,293,1200,1214,1237,1219,214,802,760,789,794,79,398,454,448,425,24,99,103,119,119,22,226,380,119,386,46,325,483,238,505,1,-27,-4,29,-15 -33660,,,"Mobile, AL",Metropolitan Statistical Area,412992,413143,413432,413154,413955,414560,415123,289,-278,801,605,563,1453,5607,5676,5479,5501,951,4138,4053,4352,4290,502,1469,1623,1127,1211,154,611,698,696,683,-363,-2157,-1526,-1351,-1143,-209,-1546,-828,-655,-460,-4,-201,6,133,-188 -33660,,1097,"Mobile County, AL",County or equivalent,412992,413143,413432,413154,413955,414560,415123,289,-278,801,605,563,1453,5607,5676,5479,5501,951,4138,4053,4352,4290,502,1469,1623,1127,1211,154,611,698,696,683,-363,-2157,-1526,-1351,-1143,-209,-1546,-828,-655,-460,-4,-201,6,133,-188 -33700,,,"Modesto, CA",Metropolitan Statistical Area,514453,514451,515283,518270,522134,526286,531997,832,2987,3864,4152,5711,1892,7786,7697,7519,7550,920,3675,3808,3767,3747,972,4111,3889,3752,3803,218,1235,1162,1339,1366,-365,-2314,-1178,-1161,636,-147,-1079,-16,178,2002,7,-45,-9,222,-94 -33700,,6099,"Stanislaus County, CA",County or equivalent,514453,514451,515283,518270,522134,526286,531997,832,2987,3864,4152,5711,1892,7786,7697,7519,7550,920,3675,3808,3767,3747,972,4111,3889,3752,3803,218,1235,1162,1339,1366,-365,-2314,-1178,-1161,636,-147,-1079,-16,178,2002,7,-45,-9,222,-94 -33740,,,"Monroe, LA",Metropolitan Statistical Area,176441,176502,176785,177390,177885,178618,178864,283,605,495,733,246,560,2599,2634,2468,2521,311,1752,1671,1752,1791,249,847,963,716,730,42,171,163,170,171,-8,-333,-638,-190,-665,34,-162,-475,-20,-494,0,-80,7,37,10 -33740,,22073,"Ouachita Parish, LA",County or equivalent,153720,153720,153950,154619,155350,156182,156325,230,669,731,832,143,485,2302,2332,2204,2240,271,1508,1428,1525,1570,214,794,904,679,670,37,163,156,162,163,-22,-218,-329,-82,-676,15,-55,-173,80,-513,1,-70,0,73,-14 -33740,,22111,"Union Parish, LA",County or equivalent,22721,22782,22835,22771,22535,22436,22539,53,-64,-236,-99,103,75,297,302,264,281,40,244,243,227,221,35,53,59,37,60,5,8,7,8,8,14,-115,-309,-108,11,19,-107,-302,-100,19,-1,-10,7,-36,24 -33780,,,"Monroe, MI",Metropolitan Statistical Area,152021,152021,151911,151499,150840,150179,149824,-110,-412,-659,-661,-355,396,1593,1536,1468,1453,354,1286,1387,1456,1361,42,307,149,12,92,16,65,66,72,74,-178,-806,-897,-829,-432,-162,-741,-831,-757,-358,10,22,23,84,-89 -33780,,26115,"Monroe County, MI",County or equivalent,152021,152021,151911,151499,150840,150179,149824,-110,-412,-659,-661,-355,396,1593,1536,1468,1453,354,1286,1387,1456,1361,42,307,149,12,92,16,65,66,72,74,-178,-806,-897,-829,-432,-162,-741,-831,-757,-358,10,22,23,84,-89 -33860,,,"Montgomery, AL",Metropolitan Statistical Area,374536,374529,375208,377960,375874,373945,373141,679,2752,-2086,-1929,-804,1220,4898,4843,4826,4705,815,3279,3290,3540,3455,405,1619,1553,1286,1250,156,431,575,533,520,114,681,-4319,-3874,-2511,270,1112,-3744,-3341,-1991,4,21,105,126,-63 -33860,,1001,"Autauga County, AL",County or equivalent,54571,54571,54684,55275,55192,55136,55395,113,591,-83,-56,259,171,636,615,593,618,152,505,563,535,492,19,131,52,58,126,33,16,12,12,11,52,398,-155,-161,129,85,414,-143,-149,140,9,46,8,35,-7 -33860,,1051,"Elmore County, AL",County or equivalent,79303,79296,79444,79983,80392,80808,80977,148,539,409,416,169,217,968,960,971,954,189,708,662,743,745,28,260,298,228,209,10,26,56,41,38,99,258,58,103,-107,109,284,114,144,-69,11,-5,-3,44,29 -33860,,1085,"Lowndes County, AL",County or equivalent,11299,11299,11285,11131,10864,10730,10580,-14,-154,-267,-134,-150,48,148,149,132,138,18,155,114,118,133,30,-7,35,14,5,0,2,1,1,1,-42,-152,-312,-162,-165,-42,-150,-311,-161,-164,-2,3,9,13,9 -33860,,1101,"Montgomery County, AL",County or equivalent,229363,229363,229795,231571,229426,227271,226189,432,1776,-2145,-2155,-1082,784,3146,3119,3130,2995,456,1911,1951,2144,2085,328,1235,1168,986,910,113,387,506,479,470,5,177,-3910,-3654,-2368,118,564,-3404,-3175,-1898,-14,-23,91,34,-94 -34060,,,"Morgantown, WV",Metropolitan Statistical Area,129709,129709,130328,132314,134441,135925,137251,619,1986,2127,1484,1326,296,1427,1408,1326,1391,166,1009,984,973,989,130,418,424,353,402,63,324,321,347,348,399,1241,1349,769,583,462,1565,1670,1116,931,27,3,33,15,-7 -34060,,54061,"Monongalia County, WV",County or equivalent,96189,96189,96766,98684,100531,102217,103463,577,1918,1847,1686,1246,208,1072,1042,1005,1070,124,640,647,648,650,84,432,395,357,420,62,321,318,343,344,402,1156,1102,961,503,464,1477,1420,1304,847,29,9,32,25,-21 -34060,,54077,"Preston County, WV",County or equivalent,33520,33520,33562,33630,33910,33708,33788,42,68,280,-202,80,88,355,366,321,321,42,369,337,325,339,46,-14,29,-4,-18,1,3,3,4,4,-3,85,247,-192,80,-2,88,250,-188,84,-2,-6,1,-10,14 -34100,,,"Morristown, TN",Metropolitan Statistical Area,113951,114111,114217,114800,115042,115374,115713,106,583,242,332,339,357,1320,1298,1344,1296,313,1243,1239,1282,1273,44,77,59,62,23,11,83,70,81,88,62,410,108,118,225,73,493,178,199,313,-11,13,5,71,3 -34100,,47063,"Hamblen County, TN",County or equivalent,62544,62541,62607,62862,62733,63078,63036,66,255,-129,345,-42,222,798,761,804,776,210,676,671,687,672,12,122,90,117,104,7,60,47,55,62,54,117,-270,144,-180,61,177,-223,199,-118,-7,-44,4,29,-28 -34100,,47089,"Jefferson County, TN",County or equivalent,51407,51570,51610,51938,52309,52296,52677,40,328,371,-13,381,135,522,537,540,520,103,567,568,595,601,32,-45,-31,-55,-81,4,23,23,26,26,8,293,378,-26,405,12,316,401,0,431,-4,57,1,42,31 -34580,,,"Mount Vernon-Anacortes, WA",Metropolitan Statistical Area,116901,116901,116967,117740,118005,118742,120365,66,773,265,737,1623,340,1482,1445,1431,1458,299,1085,1105,1090,1116,41,397,340,341,342,26,121,102,122,126,9,234,-165,235,1046,35,355,-63,357,1172,-10,21,-12,39,109 -34580,,53057,"Skagit County, WA",County or equivalent,116901,116901,116967,117740,118005,118742,120365,66,773,265,737,1623,340,1482,1445,1431,1458,299,1085,1105,1090,1116,41,397,340,341,342,26,121,102,122,126,9,234,-165,235,1046,35,355,-63,357,1172,-10,21,-12,39,109 -34620,,,"Muncie, IN",Metropolitan Statistical Area,117671,117671,117672,117797,117309,117355,117074,1,125,-488,46,-281,303,1265,1222,1255,1226,264,1166,1233,1156,1159,39,99,-11,99,67,32,120,122,132,132,-66,-18,-608,-174,-398,-34,102,-486,-42,-266,-4,-76,9,-11,-82 -34620,,18035,"Delaware County, IN",County or equivalent,117671,117671,117672,117797,117309,117355,117074,1,125,-488,46,-281,303,1265,1222,1255,1226,264,1166,1233,1156,1159,39,99,-11,99,67,32,120,122,132,132,-66,-18,-608,-174,-398,-34,102,-486,-42,-266,-4,-76,9,-11,-82 -34740,,,"Muskegon, MI",Metropolitan Statistical Area,172188,172188,171916,169986,170146,172246,172344,-272,-1930,160,2100,98,544,2134,2145,2095,2100,395,1633,1665,1647,1666,149,501,480,448,434,12,77,81,85,85,-460,-2489,-403,1510,-348,-448,-2412,-322,1595,-263,27,-19,2,57,-73 -34740,,26121,"Muskegon County, MI",County or equivalent,172188,172188,171916,169986,170146,172246,172344,-272,-1930,160,2100,98,544,2134,2145,2095,2100,395,1633,1665,1647,1666,149,501,480,448,434,12,77,81,85,85,-460,-2489,-403,1510,-348,-448,-2412,-322,1595,-263,27,-19,2,57,-73 -34820,,,"Myrtle Beach-Conway-North Myrtle Beach, SC-NC",Metropolitan Statistical Area,376722,376722,378644,385705,394128,404789,417668,1922,7061,8423,10661,12879,1017,4144,4096,4080,4105,827,3722,3973,4130,4178,190,422,123,-50,-73,106,418,397,448,459,1570,5826,7888,10651,10977,1676,6244,8285,11099,11436,56,395,15,-388,1516 -34820,,37019,"Brunswick County, NC",County or equivalent,107431,107431,108083,110215,112138,115262,118836,652,2132,1923,3124,3574,268,1040,1016,1041,1041,243,1022,1204,1261,1273,25,18,-188,-220,-232,12,38,26,32,33,579,1907,2076,3514,3328,591,1945,2102,3546,3361,36,169,9,-202,445 -34820,,45051,"Horry County, SC",County or equivalent,269291,269291,270561,275490,281990,289527,298832,1270,4929,6500,7537,9305,749,3104,3080,3039,3064,584,2700,2769,2869,2905,165,404,311,170,159,94,380,371,416,426,991,3919,5812,7137,7649,1085,4299,6183,7553,8075,20,226,6,-186,1071 -34900,,,"Napa, CA",Metropolitan Statistical Area,136484,136530,136829,138056,139135,140580,141667,299,1227,1079,1445,1087,398,1503,1531,1436,1446,312,1158,1135,1260,1241,86,345,396,176,205,80,488,439,469,487,138,409,255,735,424,218,897,694,1204,911,-5,-15,-11,65,-29 -34900,,6055,"Napa County, CA",County or equivalent,136484,136530,136829,138056,139135,140580,141667,299,1227,1079,1445,1087,398,1503,1531,1436,1446,312,1158,1135,1260,1241,86,345,396,176,205,80,488,439,469,487,138,409,255,735,424,218,897,694,1204,911,-5,-15,-11,65,-29 -34940,,,"Naples-Immokalee-Marco Island, FL",Metropolitan Statistical Area,321520,321520,322710,327903,332873,340106,348777,1190,5193,4970,7233,8671,813,3284,3193,3125,3187,748,2854,2970,2956,3156,65,430,223,169,31,480,2135,1966,2171,2189,730,2181,2868,5131,5514,1210,4316,4834,7302,7703,-85,447,-87,-238,937 -34940,,12021,"Collier County, FL",County or equivalent,321520,321520,322710,327903,332873,340106,348777,1190,5193,4970,7233,8671,813,3284,3193,3125,3187,748,2854,2970,2956,3156,65,430,223,169,31,480,2135,1966,2171,2189,730,2181,2868,5131,5514,1210,4316,4834,7302,7703,-85,447,-87,-238,937 -34980,,,"Nashville-Davidson--Murfreesboro--Franklin, TN",Metropolitan Statistical Area,1670890,1670900,1675913,1698288,1727153,1758577,1792649,5013,22375,28865,31424,34072,5610,22373,22674,22806,22977,2998,12882,12932,13454,13580,2612,9491,9742,9352,9397,813,3676,3667,4009,4039,1557,8779,15229,18029,19883,2370,12455,18896,22038,23922,31,429,227,34,753 -34980,,47015,"Cannon County, TN",County or equivalent,13801,13801,13793,13742,13842,13797,13757,-8,-51,100,-45,-40,28,148,144,150,152,47,156,162,147,127,-19,-8,-18,3,25,1,9,9,10,10,13,-59,109,-56,-74,14,-50,118,-46,-64,-3,7,0,-2,-1 -34980,,47021,"Cheatham County, TN",County or equivalent,39105,39107,39116,39009,39275,39457,39764,9,-107,266,182,307,102,414,448,437,451,58,369,351,358,353,44,45,97,79,98,3,19,20,22,22,-38,-176,149,59,186,-35,-157,169,81,208,0,5,0,22,1 -34980,,47037,"Davidson County, TN",County or equivalent,626681,626663,628045,635663,649142,659042,668347,1382,7618,13479,9900,9305,2339,9484,9710,9812,9886,1206,4934,4924,5192,5301,1133,4550,4786,4620,4585,533,2511,2513,2754,2772,-282,709,5969,2644,2140,251,3220,8482,5398,4912,-2,-152,211,-118,-192 -34980,,47043,"Dickson County, TN",County or equivalent,49666,49654,49708,49944,50167,50183,50575,54,236,223,16,392,169,597,569,584,562,150,495,504,433,444,19,102,65,151,118,0,-1,-3,-1,0,39,140,165,-166,276,39,139,162,-167,276,-4,-5,-4,32,-2 -34980,,47081,"Hickman County, TN",County or equivalent,24690,24699,24669,24359,24152,24207,24384,-30,-310,-207,55,177,67,267,253,279,270,71,274,276,238,250,-4,-7,-23,41,20,3,5,5,8,8,-30,-309,-187,-1,145,-27,-304,-182,7,153,1,1,-2,7,4 -34980,,47111,"Macon County, TN",County or equivalent,22248,22248,22260,22477,22512,22658,23003,12,217,35,146,345,70,323,294,319,315,87,229,253,285,259,-17,94,41,34,56,10,51,41,43,43,19,74,-46,60,248,29,125,-5,103,291,0,-2,-1,9,-2 -34980,,47119,"Maury County, TN",County or equivalent,80956,80959,81191,81395,81944,83600,85515,232,204,549,1656,1915,285,1140,1043,1098,1080,154,743,730,871,863,131,397,313,227,217,29,77,75,88,89,73,-253,178,1350,1497,102,-176,253,1438,1586,-1,-17,-17,-9,112 -34980,,47147,"Robertson County, TN",County or equivalent,66283,66293,66364,66668,66719,67288,68079,71,304,51,569,791,228,886,951,899,915,191,603,627,583,580,37,283,324,316,335,8,29,22,26,28,36,23,-291,204,390,44,52,-269,230,418,-10,-31,-4,23,38 -34980,,47149,"Rutherford County, TN",County or equivalent,262604,262604,263774,269046,274208,281373,288906,1170,5272,5162,7165,7533,930,3688,3651,3643,3691,326,1583,1621,1696,1670,604,2105,2030,1947,2021,90,392,413,427,429,454,2553,2698,4744,4795,544,2945,3111,5171,5224,22,222,21,47,288 -34980,,47159,"Smith County, TN",County or equivalent,19166,19166,19125,19146,19120,19061,19009,-41,21,-26,-59,-52,45,210,216,213,199,72,219,222,198,193,-27,-9,-6,15,6,0,0,0,0,0,-14,24,-21,-71,-51,-14,24,-21,-71,-51,0,6,1,-3,-7 -34980,,47165,"Sumner County, TN",County or equivalent,160645,160645,161276,163929,166156,169114,172706,631,2653,2227,2958,3592,467,1858,1938,1963,1959,300,1313,1255,1452,1478,167,545,683,511,481,27,106,98,113,115,433,1779,1439,2293,2821,460,1885,1537,2406,2936,4,223,7,41,175 -34980,,47169,"Trousdale County, TN",County or equivalent,7870,7870,7874,7820,7791,7806,8002,4,-54,-29,15,196,25,88,91,77,79,8,92,90,81,68,17,-4,1,-4,11,1,3,3,3,3,-11,-54,-32,11,185,-10,-51,-29,14,188,-3,1,-1,5,-3 -34980,,47187,"Williamson County, TN",County or equivalent,183182,183180,184068,188299,193037,198975,205226,888,4231,4738,5938,6251,493,1962,2004,1954,2019,177,988,982,986,1017,316,974,1022,968,1002,83,366,366,397,399,479,2847,3337,4560,4669,562,3213,3703,4957,5068,10,44,13,13,181 -34980,,47189,"Wilson County, TN",County or equivalent,113993,114011,114650,116791,119088,122016,125376,639,2141,2297,2928,3360,362,1308,1362,1378,1399,151,884,935,934,977,211,424,427,444,422,25,109,105,119,121,386,1481,1762,2398,2656,411,1590,1867,2517,2777,17,127,3,-33,161 -35100,,,"New Bern, NC",Metropolitan Statistical Area,126802,126802,127105,128241,128630,127589,127534,303,1136,389,-1041,-55,438,1959,1815,1717,1700,303,1316,1209,1200,1237,135,643,606,517,463,137,219,761,485,358,36,131,-976,-2151,-861,173,350,-215,-1666,-503,-5,143,-2,108,-15 -35100,,37049,"Craven County, NC",County or equivalent,103505,103505,103919,104675,105309,104455,104510,414,756,634,-854,55,391,1744,1630,1526,1527,196,1012,956,970,985,195,732,674,556,542,134,208,745,471,346,76,-152,-784,-1976,-833,210,56,-39,-1505,-487,9,-32,-1,95,0 -35100,,37103,"Jones County, NC",County or equivalent,10153,10153,10080,10268,10276,10220,10076,-73,188,8,-56,-144,23,110,99,99,88,53,146,123,105,119,-30,-36,-24,-6,-31,1,5,10,8,6,-33,81,21,-62,-116,-32,86,31,-54,-110,-11,138,1,4,-3 -35100,,37137,"Pamlico County, NC",County or equivalent,13144,13144,13106,13298,13045,12914,12948,-38,192,-253,-131,34,24,105,86,92,85,54,158,130,125,133,-30,-53,-44,-33,-48,2,6,6,6,6,-7,202,-213,-113,88,-5,208,-207,-107,94,-3,37,-2,9,-12 -35300,,,"New Haven-Milford, CT",Metropolitan Statistical Area,862477,862474,863367,864049,864031,863016,861277,893,682,-18,-1015,-1739,2247,9265,9044,9050,8974,1712,7569,7576,7627,7625,535,1696,1468,1423,1349,686,3567,3555,3727,3728,-243,-4379,-5024,-5728,-6725,443,-812,-1469,-2001,-2997,-85,-202,-17,-437,-91 -35300,,9009,"New Haven County, CT",County or equivalent,862477,862474,863367,864049,864031,863016,861277,893,682,-18,-1015,-1739,2247,9265,9044,9050,8974,1712,7569,7576,7627,7625,535,1696,1468,1423,1349,686,3567,3555,3727,3728,-243,-4379,-5024,-5728,-6725,443,-812,-1469,-2001,-2997,-85,-202,-17,-437,-91 -35380,,,"New Orleans-Metairie, LA",Metropolitan Statistical Area,1189866,1189863,1195794,1214235,1228375,1241949,1251849,5931,18441,14140,13574,9900,3771,15643,15411,15456,15639,2343,10148,10353,11004,10968,1428,5495,5058,4452,4671,770,3038,3195,3271,3245,3485,9339,5709,5755,2010,4255,12377,8904,9026,5255,248,569,178,96,-26 -35380,,22051,"Jefferson Parish, LA",County or equivalent,432552,432552,432767,434056,434575,435524,435716,215,1289,519,949,192,1389,5834,5617,5649,5629,903,3928,3993,4204,4137,486,1906,1624,1445,1492,431,1770,1694,1816,1811,-701,-2218,-2785,-2194,-3004,-270,-448,-1091,-378,-1193,-1,-169,-14,-118,-107 -35380,,22071,"Orleans Parish, LA",County or equivalent,343829,343829,347987,360877,370167,379006,384320,4158,12890,9290,8839,5314,1129,4668,4698,4705,4830,648,2860,2986,3152,3213,481,1808,1712,1553,1617,245,877,1083,1034,1016,3249,9675,6319,6068,2789,3494,10552,7402,7102,3805,183,530,176,184,-108 -35380,,22075,"Plaquemines Parish, LA",County or equivalent,23042,23042,23118,23639,23901,23620,23447,76,521,262,-281,-173,62,298,278,337,321,12,176,182,174,174,50,122,96,163,147,3,2,27,13,8,24,370,139,-392,-324,27,372,166,-379,-316,-1,27,0,-65,-4 -35380,,22087,"St. Bernard Parish, LA",County or equivalent,35897,35897,36796,39489,41498,43380,44409,899,2693,2009,1882,1029,131,612,621,629,671,41,268,345,331,336,90,344,276,298,335,6,31,29,30,30,758,2218,1677,1519,594,764,2249,1706,1549,624,45,100,27,35,70 -35380,,22089,"St. Charles Parish, LA",County or equivalent,52780,52887,52868,52407,52437,52622,52745,-19,-461,30,185,123,175,605,598,689,673,142,409,349,402,403,33,196,249,287,270,7,24,21,25,25,-64,-676,-245,-147,-165,-57,-652,-224,-122,-140,5,-5,5,20,-7 -35380,,22093,"St. James Parish, LA",County or equivalent,22102,22102,22030,21842,21698,21700,21638,-72,-188,-144,2,-62,80,282,293,261,274,18,181,179,214,201,62,101,114,47,73,7,17,17,17,17,-136,-341,-276,-54,-171,-129,-324,-259,-37,-154,-5,35,1,-8,19 -35380,,22095,"St. John the Baptist Parish, LA",County or equivalent,45924,45817,45652,45082,44753,43619,43745,-165,-570,-329,-1134,126,146,636,630,544,533,126,415,368,397,396,20,221,262,147,137,7,49,47,51,52,-203,-862,-653,-1344,-66,-196,-813,-606,-1293,-14,11,22,15,12,3 -35380,,22103,"St. Tammany Parish, LA",County or equivalent,233740,233737,234576,236843,239346,242478,245829,839,2267,2503,3132,3351,659,2708,2676,2642,2708,453,1911,1951,2130,2108,206,797,725,512,600,64,268,277,285,286,558,1173,1533,2299,2357,622,1441,1810,2584,2643,11,29,-32,36,108 -35620,,,"New York-Newark-Jersey City, NY-NJ-PA",Metropolitan Statistical Area,19567410,19566440,19599534,19756128,19874606,20002086,20092883,33094,156594,118478,127480,90797,62552,255387,250731,251588,251368,33030,140460,137154,144431,146346,29522,114927,113577,107157,105022,30436,141150,134649,146734,146892,-25933,-99000,-127828,-113078,-162903,4503,42150,6821,33656,-16011,-931,-483,-1920,-13333,1786 -35620,20524,,"Dutchess County-Putnam County, NY",Metropolitan Division,397198,397198,397462,398196,396997,396706,396066,264,734,-1199,-291,-640,939,3662,3503,3565,3528,746,2956,2998,3116,3156,193,706,505,449,372,250,1046,1033,1118,1124,-165,-863,-2754,-2001,-2054,85,183,-1721,-883,-930,-14,-155,17,143,-82 -35620,20524,36027,"Dutchess County, NY",County or equivalent,297488,297448,297687,298272,297340,297063,296579,239,585,-932,-277,-484,707,2753,2666,2735,2700,559,2281,2372,2431,2476,148,472,294,304,224,213,902,884,954,960,-108,-677,-2131,-1683,-1603,105,225,-1247,-729,-643,-14,-112,21,148,-65 -35620,20524,36079,"Putnam County, NY",County or equivalent,99710,99750,99775,99924,99657,99643,99487,25,149,-267,-14,-156,232,909,837,830,828,187,675,626,685,680,45,234,211,145,148,37,144,149,164,164,-57,-186,-623,-318,-451,-20,-42,-474,-154,-287,0,-43,-4,-5,-17 -35620,35004,,"Nassau County-Suffolk County, NY",Metropolitan Division,2832882,2833056,2836244,2847637,2851345,2858052,2861595,3188,11393,3708,6707,3543,7530,30767,30229,29438,29634,5312,22474,22193,23023,23117,2218,8293,8036,6415,6517,1992,9148,8494,9262,9246,-853,-5113,-12894,-8013,-10908,1139,4035,-4400,1249,-1662,-169,-935,72,-957,-1312 -35620,35004,36059,"Nassau County, NY",County or equivalent,1339532,1339710,1341500,1346857,1350923,1355099,1358627,1790,5357,4066,4176,3528,3421,14302,14170,13912,14060,2602,10901,10738,11086,10952,819,3401,3432,2826,3108,942,4348,3977,4360,4349,191,-2037,-3199,-2107,-3556,1133,2311,778,2253,793,-162,-355,-144,-903,-373 -35620,35004,36103,"Suffolk County, NY",County or equivalent,1493350,1493346,1494744,1500780,1500422,1502953,1502968,1398,6036,-358,2531,15,4109,16465,16059,15526,15574,2710,11573,11455,11937,12165,1399,4892,4604,3589,3409,1050,4800,4517,4902,4897,-1044,-3076,-9695,-5906,-7352,6,1724,-5178,-1004,-2455,-7,-580,216,-54,-939 -35620,35084,,"Newark, NJ-PA",Metropolitan Division,2471171,2469792,2472739,2483320,2490087,2501610,2508124,2947,10581,6767,11523,6514,7121,28679,28159,28542,27913,4381,18097,18023,18363,18535,2740,10582,10136,10179,9378,3124,13963,13277,14423,14427,-2866,-14753,-16568,-11643,-17121,258,-790,-3291,2780,-2694,-51,789,-78,-1436,-170 -35620,35084,34013,"Essex County, NJ",County or equivalent,783969,783987,784608,787232,788425,792091,795723,621,2624,1193,3666,3632,2598,10519,10504,10696,10417,1430,6006,5804,5902,6041,1168,4513,4700,4794,4376,1281,5774,5478,5907,5906,-1849,-7892,-8999,-6275,-6855,-568,-2118,-3521,-368,-949,21,229,14,-760,205 -35620,35084,34019,"Hunterdon County, NJ",County or equivalent,128349,127351,127343,127253,126593,126473,126067,-8,-90,-660,-120,-406,246,984,924,861,882,232,838,807,824,840,14,146,117,37,42,43,204,205,226,229,-70,-522,-989,-355,-627,-27,-318,-784,-129,-398,5,82,7,-28,-50 -35620,35084,34027,"Morris County, NJ",County or equivalent,492276,492279,492706,495782,497630,499672,499727,427,3076,1848,2042,55,1186,4821,4689,4786,4655,886,3620,3660,3737,3691,300,1201,1029,1049,964,487,2241,2161,2362,2363,-365,-161,-1309,-1313,-3167,122,2080,852,1049,-804,5,-205,-33,-56,-105 -35620,35084,34035,"Somerset County, NJ",County or equivalent,323444,323441,324171,326795,328691,331297,332568,730,2624,1896,2606,1271,852,3662,3438,3482,3416,459,2178,2215,2304,2363,393,1484,1223,1178,1053,395,1663,1611,1763,1765,-38,-752,-944,-462,-1359,357,911,667,1301,406,-20,229,6,127,-188 -35620,35084,34037,"Sussex County, NJ",County or equivalent,149265,148869,148770,148034,146985,145740,144909,-99,-736,-1049,-1245,-831,343,1334,1346,1272,1240,287,1111,1119,1134,1168,56,223,227,138,72,34,117,133,153,153,-194,-1033,-1446,-1510,-994,-160,-916,-1313,-1357,-841,5,-43,37,-26,-62 -35620,35084,34039,"Union County, NJ",County or equivalent,536499,536499,537810,540709,545001,549723,552939,1311,2899,4292,4722,3216,1783,6993,6887,7027,6889,1014,3949,3956,3999,3972,769,3044,2931,3028,2917,878,3937,3659,3978,3976,-289,-4343,-2181,-1608,-3735,589,-406,1478,2370,241,-47,261,-117,-676,58 -35620,35084,42103,"Pike County, PA",County or equivalent,57369,57366,57331,57515,56762,56614,56191,-35,184,-753,-148,-423,113,366,371,418,414,73,395,462,463,460,40,-29,-91,-45,-46,6,27,30,34,35,-61,-50,-700,-120,-384,-55,-23,-670,-86,-349,-20,236,8,-17,-28 -35620,35614,,"New York-Jersey City-White Plains, NY-NJ",Metropolitan Division,13866159,13866394,13893089,14026975,14136177,14245718,14327098,26695,133886,109202,109541,81380,46962,192279,188840,190043,190293,22591,96933,93940,99929,101538,24371,95346,94900,90114,88755,25070,116993,111845,121931,122095,-22049,-78271,-95612,-91421,-132820,3021,38722,16233,30510,-10725,-697,-182,-1931,-11083,3350 -35620,35614,34003,"Bergen County, NJ",County or equivalent,905116,905117,906748,914087,920440,927434,933572,1631,7339,6353,6994,6138,2244,9360,8877,9145,9129,1677,6994,6872,7126,6982,567,2366,2005,2019,2147,1284,5808,5653,6203,6202,-109,-652,-1108,-357,-2083,1175,5156,4545,5846,4119,-111,-183,-197,-871,-128 -35620,35614,34017,"Hudson County, NJ",County or equivalent,634266,634277,636294,648197,656879,663906,669115,2017,11903,8682,7027,5209,2407,10352,9706,9286,9918,907,3894,3683,3925,4014,1500,6458,6023,5361,5904,2162,9435,9051,9839,9841,-1629,-4168,-6251,-7461,-11030,533,5267,2800,2378,-1189,-16,178,-141,-712,494 -35620,35614,34023,"Middlesex County, NJ",County or equivalent,809858,809860,811272,817400,824447,830815,836297,1412,6128,7047,6368,5482,2511,10099,10054,9823,9750,1387,5769,5506,5803,5903,1124,4330,4548,4020,3847,1644,7281,7142,7757,7774,-1385,-5246,-4614,-5430,-5903,259,2035,2528,2327,1871,29,-237,-29,21,-236 -35620,35614,34025,"Monmouth County, NJ",County or equivalent,630380,630378,630649,629835,629176,629569,629279,271,-814,-659,393,-290,1587,6241,6314,6244,6161,1350,5405,5175,5461,5434,237,836,1139,783,727,286,1265,1203,1310,1315,-257,-2711,-3070,-1837,-2063,29,-1446,-1867,-527,-748,5,-204,69,137,-269 -35620,35614,34029,"Ocean County, NJ",County or equivalent,576567,576565,577651,578990,580709,583412,586301,1086,1339,1719,2703,2889,1969,8113,8053,8336,8120,1635,7255,7011,7010,6929,334,858,1042,1326,1191,123,518,536,568,576,604,283,238,680,1087,727,801,774,1248,1663,25,-320,-97,129,35 -35620,35614,34031,"Passaic County, NJ",County or equivalent,501226,501624,502201,503946,505013,506998,508856,577,1745,1067,1985,1858,1745,7147,7182,7240,7012,821,3651,3538,3766,3637,924,3496,3644,3474,3375,713,3447,3213,3505,3522,-1072,-5183,-5798,-4804,-5040,-359,-1736,-2585,-1299,-1518,12,-15,8,-190,1 -35620,35614,36005,"Bronx County, NY",County or equivalent,1385108,1385108,1388314,1399815,1414225,1427317,1438159,3206,11501,14410,13092,10842,5489,22095,21738,21358,21446,2164,8898,8950,9808,10082,3325,13197,12788,11550,11364,3309,16172,15202,16320,16356,-3489,-18237,-13501,-13739,-17199,-180,-2065,1701,2581,-843,61,369,-79,-1039,321 -35620,35614,36047,"Kings County, NY",County or equivalent,2504700,2504709,2510073,2544903,2574864,2602373,2621793,5364,34830,29961,27509,19420,10256,42206,41804,43084,42945,3743,16114,15375,16318,16771,6513,26092,26429,26766,26174,4875,23285,22217,24362,24384,-5857,-14908,-17987,-20952,-32731,-982,8377,4230,3410,-8347,-167,361,-698,-2667,1593 -35620,35614,36061,"New York County, NY",County or equivalent,1585873,1585873,1588494,1610027,1625198,1632005,1636268,2621,21533,15171,6807,4263,4898,19711,19443,19400,19434,2295,10083,9490,10471,10929,2603,9628,9953,8929,8505,3200,15246,14823,16237,16259,-2928,-3620,-9140,-16223,-21582,272,11626,5683,14,-5323,-254,279,-465,-2136,1081 -35620,35614,36071,"Orange County, NY",County or equivalent,372813,372813,373402,374228,373936,374926,376099,589,826,-292,990,1173,1220,4925,4890,4803,4968,520,2597,2443,2570,2622,700,2328,2447,2233,2346,161,609,680,667,665,-273,-1997,-3461,-1879,-1698,-112,-1388,-2781,-1212,-1033,1,-114,42,-31,-140 -35620,35614,36081,"Queens County, NY",County or equivalent,2230722,2230539,2235370,2261430,2280639,2303993,2321580,4831,26060,19209,23354,17587,7419,30801,30122,30710,30482,3339,13889,13823,14768,15057,4080,16912,16299,15942,15425,5698,26081,24726,27041,27072,-4815,-17093,-21425,-16899,-25836,883,8988,3301,10142,1236,-132,160,-391,-2730,926 -35620,35614,36085,"Richmond County, NY",County or equivalent,468730,468730,469602,471063,470977,472691,473279,872,1461,-86,1714,588,1339,5695,5400,5316,5331,783,3322,3189,3651,3761,556,2373,2211,1665,1570,216,1238,1248,1369,1367,137,-2099,-3601,-1080,-2044,353,-861,-2353,289,-677,-37,-51,56,-240,-305 -35620,35614,36087,"Rockland County, NY",County or equivalent,311687,311687,312475,315783,317825,320983,323866,788,3308,2042,3158,2883,1109,4558,4637,4884,5127,452,1970,1977,2229,2255,657,2588,2660,2655,2872,347,1546,1437,1567,1567,-205,-666,-2071,-982,-1411,142,880,-634,585,156,-11,-160,16,-82,-145 -35620,35614,36119,"Westchester County, NY",County or equivalent,949113,949114,950544,957271,961849,969296,972634,1430,6727,4578,7447,3338,2769,10976,10620,10414,10470,1518,7092,6908,7023,7162,1251,3884,3712,3391,3308,1052,5062,4714,5186,5195,-771,-1974,-3823,-458,-5287,281,3088,891,4728,-92,-102,-245,-25,-672,122 -35660,,,"Niles-Benton Harbor, MI",Metropolitan Statistical Area,156813,156817,156803,156544,156057,155321,155233,-14,-259,-487,-736,-88,497,1944,1819,1708,1823,427,1613,1675,1646,1610,70,331,144,62,213,65,303,306,334,336,-146,-952,-947,-1200,-529,-81,-649,-641,-866,-193,-3,59,10,68,-108 -35660,,26021,"Berrien County, MI",County or equivalent,156813,156817,156803,156544,156057,155321,155233,-14,-259,-487,-736,-88,497,1944,1819,1708,1823,427,1613,1675,1646,1610,70,331,144,62,213,65,303,306,334,336,-146,-952,-947,-1200,-529,-81,-649,-641,-866,-193,-3,59,10,68,-108 -35840,,,"North Port-Sarasota-Bradenton, FL",Metropolitan Statistical Area,702281,702270,703462,708971,720121,732659,748708,1192,5509,11150,12538,16049,1571,6155,6410,6219,6364,2036,8393,8514,8604,8928,-465,-2238,-2104,-2385,-2564,353,1832,1741,1932,1945,1314,5800,11474,12892,14595,1667,7632,13215,14824,16540,-10,115,39,99,2073 -35840,,12081,"Manatee County, FL",County or equivalent,322833,322833,323510,327458,334071,342417,351746,677,3948,6613,8346,9329,863,3326,3441,3381,3493,849,3443,3504,3450,3620,14,-117,-63,-69,-127,237,1068,1012,1111,1117,426,2819,5633,7119,7480,663,3887,6645,8230,8597,0,178,31,185,859 -35840,,12115,"Sarasota County, FL",County or equivalent,379448,379437,379952,381513,386050,390242,396962,515,1561,4537,4192,6720,708,2829,2969,2838,2871,1187,4950,5010,5154,5308,-479,-2121,-2041,-2316,-2437,116,764,729,821,828,888,2981,5841,5773,7115,1004,3745,6570,6594,7943,-10,-63,8,-86,1214 -35980,,,"Norwich-New London, CT",Metropolitan Statistical Area,274055,274046,274102,274056,274544,273976,273676,56,-46,488,-568,-300,703,2764,2869,2702,2761,545,2229,2317,2285,2361,158,535,552,417,400,321,1010,1438,1288,1212,-434,-1448,-1514,-2181,-1831,-113,-438,-76,-893,-619,11,-143,12,-92,-81 -35980,,9011,"New London County, CT",County or equivalent,274055,274046,274102,274056,274544,273976,273676,56,-46,488,-568,-300,703,2764,2869,2702,2761,545,2229,2317,2285,2361,158,535,552,417,400,321,1010,1438,1288,1212,-434,-1448,-1514,-2181,-1831,-113,-438,-76,-893,-619,11,-143,12,-92,-81 -36100,,,"Ocala, FL",Metropolitan Statistical Area,331298,331303,331527,332507,334495,336159,339167,224,980,1988,1664,3008,868,3357,3393,3245,3268,996,4351,4426,4750,4566,-128,-994,-1033,-1505,-1298,131,631,602,615,615,235,1395,2378,2216,3495,366,2026,2980,2831,4110,-14,-52,41,338,196 -36100,,12083,"Marion County, FL",County or equivalent,331298,331303,331527,332507,334495,336159,339167,224,980,1988,1664,3008,868,3357,3393,3245,3268,996,4351,4426,4750,4566,-128,-994,-1033,-1505,-1298,131,631,602,615,615,235,1395,2378,2216,3495,366,2026,2980,2831,4110,-14,-52,41,338,196 -36140,,,"Ocean City, NJ",Metropolitan Statistical Area,97265,97265,97278,96562,96398,95849,95344,13,-716,-164,-549,-505,240,892,975,904,903,349,1266,1193,1260,1284,-109,-374,-218,-356,-381,52,170,229,191,186,78,-431,-171,-351,-217,130,-261,58,-160,-31,-8,-81,-4,-33,-93 -36140,,34009,"Cape May County, NJ",County or equivalent,97265,97265,97278,96562,96398,95849,95344,13,-716,-164,-549,-505,240,892,975,904,903,349,1266,1193,1260,1284,-109,-374,-218,-356,-381,52,170,229,191,186,78,-431,-171,-351,-217,130,-261,58,-160,-31,-8,-81,-4,-33,-93 -36220,,,"Odessa, TX",Metropolitan Statistical Area,137130,137133,137098,139690,144444,149522,153904,-35,2592,4754,5078,4382,598,2409,2589,2894,2911,214,1236,1108,1155,1177,384,1173,1481,1739,1734,-13,46,32,45,52,-415,1401,3174,3360,2544,-428,1447,3206,3405,2596,9,-28,67,-66,52 -36220,,48135,"Ector County, TX",County or equivalent,137130,137133,137098,139690,144444,149522,153904,-35,2592,4754,5078,4382,598,2409,2589,2894,2911,214,1236,1108,1155,1177,384,1173,1481,1739,1734,-13,46,32,45,52,-415,1401,3174,3360,2544,-428,1447,3206,3405,2596,9,-28,67,-66,52 -36260,,,"Ogden-Clearfield, UT",Metropolitan Statistical Area,597159,597159,599569,605878,612629,622238,632293,2410,6309,6751,9609,10055,2693,10804,10692,10799,10795,825,3340,3436,3511,3373,1868,7464,7256,7288,7422,165,555,805,739,717,385,-1717,-1296,1371,2104,550,-1162,-491,2110,2821,-8,7,-14,211,-188 -36260,,49003,"Box Elder County, UT",County or equivalent,49975,49975,50153,50262,50269,50864,51518,178,109,7,595,654,222,906,853,856,862,66,328,321,361,319,156,578,532,495,543,4,31,31,38,38,20,-526,-566,79,78,24,-495,-535,117,116,-2,26,10,-17,-5 -36260,,49011,"Davis County, UT",County or equivalent,306479,306479,307779,311986,316018,322754,329692,1300,4207,4032,6736,6938,1438,5703,5717,5875,5863,347,1428,1487,1533,1509,1091,4275,4230,4342,4354,97,364,533,483,466,124,-485,-729,1771,2212,221,-121,-196,2254,2678,-12,53,-2,140,-94 -36260,,49029,"Morgan County, UT",County or equivalent,9469,9469,9519,9650,9802,10198,10608,50,131,152,396,410,36,153,133,176,166,18,50,46,52,36,18,103,87,124,130,2,7,8,9,9,31,23,59,257,274,33,30,67,266,283,-1,-2,-2,6,-3 -36260,,49057,"Weber County, UT",County or equivalent,231236,231236,232118,233980,236540,238422,240475,882,1862,2560,1882,2053,997,4042,3989,3892,3904,394,1534,1582,1565,1509,603,2508,2407,2327,2395,62,153,233,209,204,210,-729,-60,-736,-460,272,-576,173,-527,-256,7,-70,-20,82,-86 -36420,,,"Oklahoma City, OK",Metropolitan Statistical Area,1252987,1252992,1257888,1276858,1297886,1320585,1336767,4896,18970,21028,22699,16182,4715,18900,18634,18877,18985,2557,11237,10737,10763,10887,2158,7663,7897,8114,8098,572,2393,2796,2736,2718,2116,8328,10151,11315,5618,2688,10721,12947,14051,8336,50,586,184,534,-252 -36420,,40017,"Canadian County, OK",County or equivalent,115541,115541,116348,119487,122605,126136,129582,807,3139,3118,3531,3446,402,1610,1614,1675,1705,167,860,842,880,893,235,750,772,795,812,20,84,100,97,97,528,2197,2201,2576,2468,548,2281,2301,2673,2565,24,108,45,63,69 -36420,,40027,"Cleveland County, OK",County or equivalent,255755,255761,256844,261905,266122,269890,269908,1083,5061,4217,3768,18,714,3095,3062,3051,3060,437,1833,1767,1799,1849,277,1262,1295,1252,1211,141,498,648,607,587,658,3025,2254,1771,-1783,799,3523,2902,2378,-1196,7,276,20,138,3 -36420,,40051,"Grady County, OK",County or equivalent,52431,52431,52485,52775,53054,53635,53854,54,290,279,581,219,155,628,605,605,603,157,537,538,485,486,-2,91,67,120,117,6,42,42,45,45,63,184,173,416,57,69,226,215,461,102,-13,-27,-3,0,0 -36420,,40081,"Lincoln County, OK",County or equivalent,34273,34273,34328,34329,34215,34339,34619,55,1,-114,124,280,110,380,389,383,389,52,376,382,318,323,58,4,7,65,66,1,1,0,0,0,6,-39,-125,65,192,7,-38,-125,65,192,-10,35,4,-6,22 -36420,,40083,"Logan County, OK",County or equivalent,41848,41853,42058,43097,43668,44401,45276,205,1039,571,733,875,122,481,458,462,457,104,357,308,328,340,18,124,150,134,117,8,14,14,15,16,170,636,414,618,719,178,650,428,633,735,9,265,-7,-34,23 -36420,,40087,"McClain County, OK",County or equivalent,34506,34506,34731,35154,35587,36516,37313,225,423,433,929,797,118,429,394,444,429,55,321,333,293,297,63,108,61,151,132,3,13,14,13,13,154,308,361,750,634,157,321,375,763,647,5,-6,-3,15,18 -36420,,40109,"Oklahoma County, OK",County or equivalent,718633,718627,721094,730111,742635,755668,766215,2467,9017,12524,13033,10547,3094,12277,12112,12257,12342,1585,6953,6567,6660,6699,1509,5324,5545,5597,5643,393,1741,1978,1959,1960,537,2017,4873,5119,3331,930,3758,6851,7078,5291,28,-65,128,358,-387 -36500,,,"Olympia-Tumwater, WA",Metropolitan Statistical Area,252264,252264,253046,256481,258713,262561,265851,782,3435,2232,3848,3290,745,3004,3126,3135,3157,477,1907,1928,2031,2010,268,1097,1198,1104,1147,160,463,787,667,642,357,1869,274,2053,1467,517,2332,1061,2720,2109,-3,6,-27,24,34 -36500,,53067,"Thurston County, WA",County or equivalent,252264,252264,253046,256481,258713,262561,265851,782,3435,2232,3848,3290,745,3004,3126,3135,3157,477,1907,1928,2031,2010,268,1097,1198,1104,1147,160,463,787,667,642,357,1869,274,2053,1467,517,2332,1061,2720,2109,-3,6,-27,24,34 -36540,,,"Omaha-Council Bluffs, NE-IA",Metropolitan Statistical Area,865350,865350,868113,876979,885707,895573,904421,2763,8866,8728,9866,8848,3280,13051,13150,13186,13193,1526,6281,6264,6446,6312,1754,6770,6886,6740,6881,421,1618,1984,1952,1922,589,739,-103,1325,319,1010,2357,1881,3277,2241,-1,-261,-39,-151,-274 -36540,,19085,"Harrison County, IA",County or equivalent,14928,14937,14925,14796,14520,14437,14324,-12,-129,-276,-83,-113,44,142,146,159,150,61,200,176,167,171,-17,-58,-30,-8,-21,0,1,1,1,1,9,-68,-251,-77,-87,9,-67,-250,-76,-86,-4,-4,4,1,-6 -36540,,19129,"Mills County, IA",County or equivalent,15059,15059,15074,15036,14881,14910,14831,15,-38,-155,29,-79,49,157,152,156,155,18,143,157,144,121,31,14,-5,12,34,2,9,9,9,9,-13,-59,-159,12,-117,-11,-50,-150,21,-108,-5,-2,0,-4,-5 -36540,,19155,"Pottawattamie County, IA",County or equivalent,93158,93149,93384,93490,92918,92846,93128,235,106,-572,-72,282,347,1250,1205,1166,1166,230,836,868,887,909,117,414,337,279,257,6,32,30,38,38,109,-291,-944,-406,39,115,-259,-914,-368,77,3,-49,5,17,-52 -36540,,31025,"Cass County, NE",County or equivalent,25241,25241,25254,25256,25159,25381,25524,13,2,-97,222,143,62,314,259,296,293,94,224,217,209,228,-32,90,42,87,65,2,7,8,7,7,46,-83,-150,125,66,48,-76,-142,132,73,-3,-12,3,3,5 -36540,,31055,"Douglas County, NE",County or equivalent,517110,517110,518594,524611,531309,537529,543244,1484,6017,6698,6220,5715,2028,8128,8337,8426,8436,920,3734,3725,3842,3668,1108,4394,4612,4584,4768,295,1382,1420,1530,1532,86,482,681,221,-331,381,1864,2101,1751,1201,-5,-241,-15,-115,-254 -36540,,31153,"Sarpy County, NE",County or equivalent,158840,158840,159748,162655,165822,169358,172193,908,2907,3167,3536,2835,629,2593,2610,2539,2550,142,787,796,828,874,487,1806,1814,1711,1676,114,181,510,359,327,293,876,879,1512,775,407,1057,1389,1871,1102,14,44,-36,-46,57 -36540,,31155,"Saunders County, NE",County or equivalent,20780,20780,20858,20872,20807,20881,20919,78,14,-65,74,38,66,269,234,235,240,33,193,174,199,180,33,76,60,36,60,2,6,6,8,8,42,-80,-131,33,-17,44,-74,-125,41,-9,1,12,0,-3,-13 -36540,,31177,"Washington County, NE",County or equivalent,20234,20234,20276,20263,20291,20231,20258,42,-13,28,-60,27,55,198,207,209,203,28,164,151,170,161,27,34,56,39,42,0,0,0,0,0,17,-38,-28,-95,-9,17,-38,-28,-95,-9,-2,-9,0,-4,-6 -36740,,,"Orlando-Kissimmee-Sanford, FL",Metropolitan Statistical Area,2134411,2134406,2139686,2176088,2225901,2271083,2321418,5280,36402,49813,45182,50335,6497,26290,26830,27196,27574,3581,14757,14698,16204,16439,2916,11533,12132,10992,11135,2912,15333,14901,15025,15044,-580,9435,22449,18538,22893,2332,24768,37350,33563,37937,32,101,331,627,1263 -36740,,12069,"Lake County, FL",County or equivalent,297052,297047,297910,299886,303450,308115,315690,863,1976,3564,4665,7575,796,3018,3001,3058,3111,819,3397,3250,3622,3728,-23,-379,-249,-564,-617,130,679,678,688,692,768,1928,3139,4412,6735,898,2607,3817,5100,7427,-12,-252,-4,129,765 -36740,,12095,"Orange County, FL",County or equivalent,1145956,1145954,1148953,1170411,1202076,1226764,1253001,2999,21458,31665,24688,26237,3795,15061,15658,15815,15980,1551,6830,6834,7462,7533,2244,8231,8824,8353,8447,1897,9864,9572,9750,9763,-1183,3584,12913,6140,8190,714,13448,22485,15890,17953,41,-221,356,445,-163 -36740,,12097,"Osceola County, FL",County or equivalent,268685,268687,269811,278755,288970,299498,310211,1124,8944,10215,10528,10713,881,3750,3782,3903,4025,440,1690,1730,1949,1960,441,2060,2052,1954,2065,618,3550,3469,3363,3368,76,3065,4672,5268,4814,694,6615,8141,8631,8182,-11,269,22,-57,466 -36740,,12117,"Seminole County, FL",County or equivalent,422718,422718,423012,427036,431405,436706,442516,294,4024,4369,5301,5810,1025,4461,4389,4420,4458,771,2840,2884,3171,3218,254,1621,1505,1249,1240,267,1240,1182,1224,1221,-241,858,1725,2718,3154,26,2098,2907,3942,4375,14,305,-43,110,195 -36780,,,"Oshkosh-Neenah, WI",Metropolitan Statistical Area,166994,166994,167004,167558,168634,169360,169511,10,554,1076,726,151,451,1878,1925,1876,1883,363,1446,1425,1387,1406,88,432,500,489,477,20,74,72,83,84,-89,50,504,133,-404,-69,124,576,216,-320,-9,-2,0,21,-6 -36780,,55139,"Winnebago County, WI",County or equivalent,166994,166994,167004,167558,168634,169360,169511,10,554,1076,726,151,451,1878,1925,1876,1883,363,1446,1425,1387,1406,88,432,500,489,477,20,74,72,83,84,-89,50,504,133,-404,-69,124,576,216,-320,-9,-2,0,21,-6 -36980,,,"Owensboro, KY",Metropolitan Statistical Area,114752,114755,114791,115361,115918,116399,116506,36,570,557,481,107,377,1526,1581,1548,1557,331,1159,1139,1183,1177,46,367,442,365,380,2,38,38,44,46,-5,183,87,18,-270,-3,221,125,62,-224,-7,-18,-10,54,-49 -36980,,21059,"Daviess County, KY",County or equivalent,96656,96659,96719,97233,97727,98200,98275,60,514,494,473,75,324,1295,1346,1313,1324,262,961,957,977,985,62,334,389,336,339,2,35,35,41,43,1,166,81,38,-260,3,201,116,79,-217,-5,-21,-11,58,-47 -36980,,21091,"Hancock County, KY",County or equivalent,8565,8565,8556,8604,8671,8686,8753,-9,48,67,15,67,30,102,113,108,108,31,83,65,92,81,-1,19,48,16,27,0,0,0,0,0,-7,30,19,-3,43,-7,30,19,-3,43,-1,-1,0,2,-3 -36980,,21149,"McLean County, KY",County or equivalent,9531,9531,9516,9524,9520,9513,9478,-15,8,-4,-7,-35,23,129,122,127,125,38,115,117,114,111,-15,14,5,13,14,0,3,3,3,3,1,-13,-13,-17,-53,1,-10,-10,-14,-50,-1,4,1,-6,1 -37100,,,"Oxnard-Thousand Oaks-Ventura, CA",Metropolitan Statistical Area,823318,823420,825353,830973,835476,840972,846178,1933,5620,4503,5496,5206,2804,11005,10528,10590,10602,1268,5085,5006,5440,5597,1536,5920,5522,5150,5005,312,1657,1663,1794,1840,102,-1752,-2725,-1905,-1530,414,-95,-1062,-111,310,-17,-205,43,457,-109 -37100,,6111,"Ventura County, CA",County or equivalent,823318,823420,825353,830973,835476,840972,846178,1933,5620,4503,5496,5206,2804,11005,10528,10590,10602,1268,5085,5006,5440,5597,1536,5920,5522,5150,5005,312,1657,1663,1794,1840,102,-1752,-2725,-1905,-1530,414,-95,-1062,-111,310,-17,-205,43,457,-109 -37340,,,"Palm Bay-Melbourne-Titusville, FL",Metropolitan Statistical Area,543376,543378,544029,544431,547669,551440,556885,651,402,3238,3771,5445,1230,5044,5121,5013,5043,1360,6189,6114,6636,6512,-130,-1145,-993,-1623,-1469,253,1105,1193,1175,1167,518,457,3132,3830,5098,771,1562,4325,5005,6265,10,-15,-94,389,649 -37340,,12009,"Brevard County, FL",County or equivalent,543376,543378,544029,544431,547669,551440,556885,651,402,3238,3771,5445,1230,5044,5121,5013,5043,1360,6189,6114,6636,6512,-130,-1145,-993,-1623,-1469,253,1105,1193,1175,1167,518,457,3132,3830,5098,771,1562,4325,5005,6265,10,-15,-94,389,649 -37460,,,"Panama City, FL",Metropolitan Statistical Area,184715,184715,185111,185370,187664,190771,194929,396,259,2294,3107,4158,597,2240,2417,2376,2424,423,1761,1742,1958,1951,174,479,675,418,473,95,199,442,333,312,117,-417,1169,2240,3194,212,-218,1611,2573,3506,10,-2,8,116,179 -37460,,12005,"Bay County, FL",County or equivalent,168852,168852,169294,169700,171994,174966,178985,442,406,2294,2972,4019,569,2113,2286,2252,2300,406,1606,1573,1788,1800,163,507,713,464,500,94,197,440,331,310,176,-271,1137,2053,3043,270,-74,1577,2384,3353,9,-27,4,124,166 -37460,,12045,"Gulf County, FL",County or equivalent,15863,15863,15817,15670,15670,15805,15944,-46,-147,0,135,139,28,127,131,124,124,17,155,169,170,151,11,-28,-38,-46,-27,1,2,2,2,2,-59,-146,32,187,151,-58,-144,34,189,153,1,25,4,-8,13 -37620,,,"Parkersburg-Vienna, WV",Metropolitan Statistical Area,92673,92673,92715,92587,92367,92275,92082,42,-128,-220,-92,-193,240,1049,942,982,941,300,1109,1063,1063,1081,-60,-60,-121,-81,-140,0,13,15,15,15,112,-59,-111,-17,-13,112,-46,-96,-2,2,-10,-22,-3,-9,-55 -37620,,54105,"Wirt County, WV",County or equivalent,5717,5717,5734,5789,5806,5875,5845,17,55,17,69,-30,13,58,56,59,63,23,60,62,45,44,-10,-2,-6,14,19,1,6,6,6,6,29,39,18,52,-60,30,45,24,58,-54,-3,12,-1,-3,5 -37620,,54107,"Wood County, WV",County or equivalent,86956,86956,86981,86798,86561,86400,86237,25,-183,-237,-161,-163,227,991,886,923,878,277,1049,1001,1018,1037,-50,-58,-115,-95,-159,-1,7,9,9,9,83,-98,-129,-69,47,82,-91,-120,-60,56,-7,-34,-2,-6,-60 -37860,,,"Pensacola-Ferry Pass-Brent, FL",Metropolitan Statistical Area,448991,448991,450980,455339,462612,468682,474081,1989,4359,7273,6070,5399,1331,5611,5786,5669,5750,1034,4247,4319,4484,4605,297,1364,1467,1185,1145,334,598,1806,1215,1064,1268,2459,3973,3406,3020,1602,3057,5779,4621,4084,90,-62,27,264,170 -37860,,12033,"Escambia County, FL",County or equivalent,297619,297619,298110,299642,304214,307871,310659,491,1532,4572,3657,2788,956,3815,3942,3825,3885,755,3014,3031,3245,3272,201,801,911,580,613,258,465,1368,922,809,43,351,2275,1966,1327,301,816,3643,2888,2136,-11,-85,18,189,39 -37860,,12113,"Santa Rosa County, FL",County or equivalent,151372,151372,152870,155697,158398,160811,163422,1498,2827,2701,2413,2611,375,1796,1844,1844,1865,279,1233,1288,1239,1333,96,563,556,605,532,76,133,438,293,255,1225,2108,1698,1440,1693,1301,2241,2136,1733,1948,101,23,9,75,131 -37900,,,"Peoria, IL",Metropolitan Statistical Area,379186,379186,378954,379677,380450,382079,380040,-232,723,773,1629,-2039,1188,4866,4822,5012,4922,838,3761,3769,3685,3730,350,1105,1053,1327,1192,93,368,396,416,416,-680,-620,-636,37,-3671,-587,-252,-240,453,-3255,5,-130,-40,-151,24 -37900,,17123,"Marshall County, IL",County or equivalent,12640,12640,12630,12508,12301,12140,12014,-10,-122,-207,-161,-126,31,122,97,110,100,25,170,164,131,138,6,-48,-67,-21,-38,2,11,12,12,12,-15,-80,-152,-135,-100,-13,-69,-140,-123,-88,-3,-5,0,-17,0 -37900,,17143,"Peoria County, IL",County or equivalent,186494,186494,186270,186675,187193,188529,187319,-224,405,518,1336,-1210,676,2580,2591,2780,2707,434,1808,1746,1740,1739,242,772,845,1040,968,84,328,354,364,364,-565,-607,-661,51,-2532,-481,-279,-307,415,-2168,15,-88,-20,-119,-10 -37900,,17175,"Stark County, IL",County or equivalent,5994,5994,5967,5839,5937,5883,5813,-27,-128,98,-54,-70,14,60,63,48,52,18,76,85,91,81,-4,-16,-22,-43,-29,0,2,2,2,2,-22,-114,137,4,-62,-22,-112,139,6,-60,-1,0,-19,-17,19 -37900,,17179,"Tazewell County, IL",County or equivalent,135394,135394,135447,135742,136094,136372,135707,53,295,352,278,-665,371,1660,1611,1650,1622,298,1389,1374,1349,1381,73,271,237,301,241,4,17,17,22,22,-18,91,101,-57,-962,-14,108,118,-35,-940,-6,-84,-3,12,34 -37900,,17203,"Woodford County, IL",County or equivalent,38664,38664,38640,38913,38925,39155,39187,-24,273,12,230,32,96,444,460,424,441,63,318,400,374,391,33,126,60,50,50,3,10,11,16,16,-60,90,-61,174,-15,-57,100,-50,190,1,0,47,2,-10,-19 -37980,,,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",Metropolitan Statistical Area,5965343,5965368,5971276,5997083,6020925,6036228,6051170,5908,25807,23842,15303,14942,18312,74023,72991,72068,72217,12716,52654,51741,53462,54179,5596,21369,21250,18606,18038,3807,18105,18504,19543,19564,-3331,-12521,-15555,-22380,-20732,476,5584,2949,-2837,-1168,-164,-1146,-357,-466,-1928 -37980,15804,,"Camden, NJ",Metropolitan Division,1250679,1250694,1251406,1253155,1253982,1252206,1251711,712,1749,827,-1776,-495,3599,14390,14084,13578,13701,2558,10554,10254,10838,10936,1041,3836,3830,2740,2765,664,2685,2991,2998,2988,-998,-4538,-6051,-7565,-5636,-334,-1853,-3060,-4567,-2648,5,-234,57,51,-612 -37980,15804,34005,"Burlington County, NJ",County or equivalent,448734,448728,449174,450531,451207,450141,449722,446,1357,676,-1066,-419,1148,4668,4527,4349,4392,932,3691,3647,3795,3819,216,977,880,554,573,261,878,1189,1099,1080,-11,-333,-1391,-2771,-1780,250,545,-202,-1672,-700,-20,-165,-2,52,-292 -37980,15804,34007,"Camden County, NJ",County or equivalent,513657,513678,513630,513261,513104,512125,511038,-48,-369,-157,-979,-1087,1688,6571,6463,6319,6330,1116,4487,4301,4581,4626,572,2084,2162,1738,1704,329,1517,1503,1584,1590,-976,-3880,-3865,-4234,-4161,-647,-2363,-2362,-2650,-2571,27,-90,43,-67,-220 -37980,15804,34015,"Gloucester County, NJ",County or equivalent,288288,288288,288602,289363,289671,289940,290951,314,761,308,269,1011,763,3151,3094,2910,2979,510,2376,2306,2462,2491,253,775,788,448,488,74,290,299,315,318,-11,-325,-795,-560,305,63,-35,-496,-245,623,-2,21,16,66,-100 -37980,33874,,"Montgomery County-Bucks County-Chester County, PA",Metropolitan Division,1924009,1924274,1926275,1935482,1942124,1949788,1956326,2001,9207,6642,7664,6538,5089,20719,20261,20289,20258,3860,16304,16054,16716,16945,1229,4415,4207,3573,3313,854,4079,4143,4479,4499,-42,959,-1675,-953,-586,812,5038,2468,3526,3913,-40,-246,-33,565,-688 -37980,33874,42017,"Bucks County, PA",County or equivalent,625249,625255,625326,626369,626189,626456,626685,71,1043,-180,267,229,1432,6002,5833,5846,5838,1226,5469,5399,5535,5672,206,533,434,311,166,166,848,909,949,947,-316,-327,-1563,-1280,-639,-150,521,-654,-331,308,15,-11,40,287,-245 -37980,33874,42029,"Chester County, PA",County or equivalent,498886,499146,499883,503626,506317,509500,512784,737,3743,2691,3183,3284,1362,5555,5546,5471,5497,908,3629,3619,3758,3807,454,1926,1927,1713,1690,227,1093,1070,1179,1193,74,723,-295,213,565,301,1816,775,1392,1758,-18,1,-11,78,-164 -37980,33874,42091,"Montgomery County, PA",County or equivalent,799874,799873,801066,805487,809618,813832,816857,1193,4421,4131,4214,3025,2295,9162,8882,8972,8923,1726,7206,7036,7423,7466,569,1956,1846,1549,1457,461,2138,2164,2351,2359,200,563,183,114,-512,661,2701,2347,2465,1847,-37,-236,-62,200,-279 -37980,37964,,"Philadelphia, PA",Metropolitan Division,2084985,2084732,2087570,2098441,2111312,2117896,2123257,2838,10871,12871,6584,5361,7454,30160,29996,29822,29814,4837,19871,19690,20008,20269,2617,10289,10306,9814,9545,1929,9641,9676,10258,10262,-1585,-8691,-6787,-12220,-14212,344,950,2889,-1962,-3950,-123,-368,-324,-1268,-234 -37980,37964,42045,"Delaware County, PA",County or equivalent,558979,558726,559026,559128,560916,561844,562960,300,102,1788,928,1116,1673,6902,6713,6591,6669,1352,5499,5311,5396,5401,321,1403,1402,1195,1268,361,1619,1655,1791,1794,-403,-2647,-1262,-1790,-1616,-42,-1028,393,1,178,21,-273,-7,-268,-330 -37980,37964,42101,"Philadelphia County, PA",County or equivalent,1526006,1526006,1528544,1539313,1550396,1556052,1560297,2538,10769,11083,5656,4245,5781,23258,23283,23231,23145,3485,14372,14379,14612,14868,2296,8886,8904,8619,8277,1568,8022,8021,8467,8468,-1182,-6044,-5525,-10430,-12596,386,1978,2496,-1963,-4128,-144,-95,-317,-1000,96 -37980,48864,,"Wilmington, DE-MD-NJ",Metropolitan Division,705670,705668,706025,710005,713507,716338,719876,357,3980,3502,2831,3538,2170,8754,8650,8379,8444,1461,5925,5743,5900,6029,709,2829,2907,2479,2415,360,1700,1694,1808,1815,-706,-251,-1042,-1642,-298,-346,1449,652,166,1517,-6,-298,-57,186,-394 -37980,48864,10003,"New Castle County, DE",County or equivalent,538479,538477,538873,542324,546021,549233,552778,396,3451,3697,3212,3545,1674,6870,6762,6545,6609,1035,4390,4247,4325,4402,639,2480,2515,2220,2207,336,1543,1537,1647,1654,-580,-275,-288,-839,2,-244,1268,1249,808,1656,1,-297,-67,184,-318 -37980,48864,24015,"Cecil County, MD",County or equivalent,101108,101108,101160,101653,101822,101999,102383,52,493,169,177,384,300,1156,1167,1125,1143,225,839,807,905,914,75,317,360,220,229,16,111,113,112,112,-30,91,-305,-147,99,-14,202,-192,-35,211,-9,-26,1,-8,-56 -37980,48864,34033,"Salem County, NJ",County or equivalent,66083,66083,65992,66028,65664,65106,64715,-91,36,-364,-558,-391,196,728,721,709,692,201,696,689,670,713,-5,32,32,39,-21,8,46,44,49,49,-96,-67,-449,-656,-399,-88,-21,-405,-607,-350,2,25,9,10,-20 -38060,,,"Phoenix-Mesa-Scottsdale, AZ",Metropolitan Statistical Area,4192887,4193127,4209347,4254149,4330974,4404129,4489109,16220,44802,76825,73155,84980,15202,58288,58823,59828,59914,6948,28304,28509,29848,30617,8254,29984,30314,29980,29297,1645,9639,9451,10559,10716,5918,3950,37097,31187,41127,7563,13589,46548,41746,51843,403,1229,-37,1429,3840 -38060,,4013,"Maricopa County, AZ",County or equivalent,3817117,3817357,3823609,3870076,3942868,4013164,4087191,6252,46467,72792,70296,74027,13917,53377,54290,55130,55318,6310,25939,26030,27292,28067,7607,27438,28260,27838,27251,1532,8908,8770,9781,9931,-2676,9368,35606,30868,34284,-1144,18276,44376,40649,44215,-211,753,156,1809,2561 -38060,,4021,"Pinal County, AZ",County or equivalent,375770,375770,385738,384073,388106,390965,401918,9968,-1665,4033,2859,10953,1285,4911,4533,4698,4596,638,2365,2479,2556,2550,647,2546,2054,2142,2046,113,731,681,778,785,8594,-5418,1491,319,6843,8707,-4687,2172,1097,7628,614,476,-193,-380,1279 -38220,,,"Pine Bluff, AR",Metropolitan Statistical Area,100258,100258,100076,99001,97344,95689,94716,-182,-1075,-1657,-1655,-973,301,1191,1138,1184,1109,277,989,1044,1087,1065,24,202,94,97,44,1,6,4,8,8,-214,-1304,-1788,-1647,-1039,-213,-1298,-1784,-1639,-1031,7,21,33,-113,14 -38220,,5025,"Cleveland County, AR",County or equivalent,8689,8689,8690,8668,8615,8562,8449,1,-22,-53,-53,-113,25,86,98,92,82,41,91,84,92,80,-16,-5,14,0,2,0,0,0,0,0,18,-13,-67,-48,-115,18,-13,-67,-48,-115,-1,-4,0,-5,0 -38220,,5069,"Jefferson County, AR",County or equivalent,77435,77435,77311,76004,74580,73084,72297,-124,-1307,-1424,-1496,-787,243,982,910,980,916,217,783,852,871,844,26,199,58,109,72,0,5,4,8,8,-157,-1530,-1518,-1524,-881,-157,-1525,-1514,-1516,-873,7,19,32,-89,14 -38220,,5079,"Lincoln County, AR",County or equivalent,14134,14134,14075,14329,14149,14043,13970,-59,254,-180,-106,-73,33,123,130,112,111,19,115,108,124,141,14,8,22,-12,-30,1,1,0,0,0,-75,239,-203,-75,-43,-74,240,-203,-75,-43,1,6,1,-19,0 -38300,,,"Pittsburgh, PA",Metropolitan Statistical Area,2356285,2356285,2356678,2359680,2361068,2360565,2355968,393,3002,1388,-503,-4597,5757,23632,23775,23886,23838,6137,27196,26819,27097,27282,-380,-3564,-3044,-3211,-3444,622,2851,2977,3220,3217,334,4952,1596,-23,-2806,956,7803,4573,3197,411,-183,-1237,-141,-489,-1564 -38300,,42003,"Allegheny County, PA",County or equivalent,1223348,1223348,1223797,1227472,1230383,1232953,1231255,449,3675,2911,2570,-1698,3153,13009,13076,13199,13231,3141,13824,13507,13605,13743,12,-815,-431,-406,-512,556,2552,2654,2887,2881,-20,2737,780,670,-3109,536,5289,3434,3557,-228,-99,-799,-92,-581,-958 -38300,,42005,"Armstrong County, PA",County or equivalent,68941,68940,68822,68636,68362,68110,67785,-118,-186,-274,-252,-325,143,687,705,699,702,219,808,857,862,880,-76,-121,-152,-163,-178,3,19,19,21,21,-43,-116,-137,-76,-115,-40,-97,-118,-55,-94,-2,32,-4,-34,-53 -38300,,42007,"Beaver County, PA",County or equivalent,170539,170539,170590,170352,170224,170060,169392,51,-238,-128,-164,-668,432,1717,1671,1746,1731,418,1996,2089,2115,2084,14,-279,-418,-369,-353,2,30,34,35,35,55,118,263,185,-189,57,148,297,220,-154,-20,-107,-7,-15,-161 -38300,,42019,"Butler County, PA",County or equivalent,183862,183862,184047,184721,185089,185369,185943,185,674,368,280,574,424,1762,1805,1746,1753,376,1869,1835,1871,1862,48,-107,-30,-125,-109,27,100,102,110,111,124,624,326,192,547,151,724,428,302,658,-14,57,-30,103,25 -38300,,42051,"Fayette County, PA",County or equivalent,136606,136607,136468,136046,135479,134799,134086,-139,-422,-567,-680,-713,338,1373,1331,1358,1322,469,1819,1757,1800,1820,-131,-446,-426,-442,-498,4,22,22,26,28,-6,87,-166,-280,-169,-2,109,-144,-254,-141,-6,-85,3,16,-74 -38300,,42125,"Washington County, PA",County or equivalent,207820,207820,207891,208080,208431,208194,208187,71,189,351,-237,-7,495,1896,2053,1999,1986,532,2490,2467,2509,2484,-37,-594,-414,-510,-498,13,68,74,73,73,105,766,695,246,506,118,834,769,319,579,-10,-51,-4,-46,-88 -38300,,42129,"Westmoreland County, PA",County or equivalent,365169,365169,365063,364373,363100,361080,359320,-106,-690,-1273,-2020,-1760,772,3188,3134,3139,3113,982,4390,4307,4335,4409,-210,-1202,-1173,-1196,-1296,17,60,72,68,68,119,736,-165,-960,-277,136,796,-93,-892,-209,-32,-284,-7,68,-255 -38340,,,"Pittsfield, MA",Metropolitan Statistical Area,131219,131272,131310,130575,130230,129489,128715,38,-735,-345,-741,-774,299,1185,1184,1080,1108,290,1429,1405,1468,1426,9,-244,-221,-388,-318,35,185,182,200,200,9,-605,-307,-538,-544,44,-420,-125,-338,-344,-15,-71,1,-15,-112 -38340,,25003,"Berkshire County, MA",County or equivalent,131219,131272,131310,130575,130230,129489,128715,38,-735,-345,-741,-774,299,1185,1184,1080,1108,290,1429,1405,1468,1426,9,-244,-221,-388,-318,35,185,182,200,200,9,-605,-307,-538,-544,44,-420,-125,-338,-344,-15,-71,1,-15,-112 -38540,,,"Pocatello, ID",Metropolitan Statistical Area,82839,82839,83000,83562,83741,83322,83347,161,562,179,-419,25,332,1423,1288,1302,1261,117,658,658,658,629,215,765,630,644,632,13,73,74,86,87,-67,-231,-524,-1182,-652,-54,-158,-450,-1096,-565,0,-45,-1,33,-42 -38540,,16005,"Bannock County, ID",County or equivalent,82839,82839,83000,83562,83741,83322,83347,161,562,179,-419,25,332,1423,1288,1302,1261,117,658,658,658,629,215,765,630,644,632,13,73,74,86,87,-67,-231,-524,-1182,-652,-54,-158,-450,-1096,-565,0,-45,-1,33,-42 -38860,,,"Portland-South Portland, ME",Metropolitan Statistical Area,514098,514100,513807,515995,518219,520363,523552,-293,2188,2224,2144,3189,1247,4863,4940,4937,4983,1019,4576,4390,4583,4693,228,287,550,354,290,142,700,772,810,807,-684,1280,968,657,1915,-542,1980,1740,1467,2722,21,-79,-66,323,177 -38860,,23005,"Cumberland County, ME",County or equivalent,281674,281673,281390,282651,284050,285866,287797,-283,1261,1399,1816,1931,672,2720,2694,2795,2788,578,2453,2412,2484,2502,94,267,282,311,286,130,624,677,713,711,-529,408,479,617,870,-399,1032,1156,1330,1581,22,-38,-39,175,64 -38860,,23023,"Sagadahoc County, ME",County or equivalent,35293,35293,35221,35097,35114,35034,35045,-72,-124,17,-80,11,86,326,351,310,316,49,336,306,345,366,37,-10,45,-35,-50,2,14,25,15,15,-116,-119,-53,-80,18,-114,-105,-28,-65,33,5,-9,0,20,28 -38860,,23031,"York County, ME",County or equivalent,197131,197134,197196,198247,199055,199463,200710,62,1051,808,408,1247,489,1817,1895,1832,1879,392,1787,1672,1754,1825,97,30,223,78,54,10,62,70,82,81,-39,991,542,120,1027,-29,1053,612,202,1108,-6,-32,-27,128,85 -38900,,,"Portland-Vancouver-Hillsboro, OR-WA",Metropolitan Statistical Area,2226009,2226011,2232079,2260178,2288729,2314747,2348247,6068,28099,28551,26018,33500,6799,27756,27541,27647,27739,3683,15678,15763,16118,16578,3116,12078,11778,11529,11161,1081,4896,4939,5543,5583,1900,10539,11765,8260,16329,2981,15435,16704,13803,21912,-29,586,69,686,427 -38900,,41005,"Clackamas County, OR",County or equivalent,375992,375992,376846,379671,383540,388457,394972,854,2825,3869,4917,6515,973,3813,3883,3995,4049,723,3076,2946,3118,3192,250,737,937,877,857,101,375,382,445,451,549,1566,2575,3333,4958,650,1941,2957,3778,5409,-46,147,-25,262,249 -38900,,41009,"Columbia County, OR",County or equivalent,49351,49353,49340,49360,49208,49257,49459,-13,20,-152,49,202,115,496,443,487,469,74,390,422,373,440,41,106,21,114,29,7,17,15,18,18,-64,-94,-195,-109,182,-57,-77,-180,-91,200,3,-9,7,26,-27 -38900,,41051,"Multnomah County, OR",County or equivalent,735334,735332,737268,747977,758817,766082,776712,1936,10709,10840,7265,10630,2306,9583,9411,9372,9406,1314,5460,5388,5653,5741,992,4123,4023,3719,3665,442,2119,2133,2390,2407,431,4319,4500,1113,4728,873,6438,6633,3503,7135,71,148,184,43,-170 -38900,,41067,"Washington County, OR",County or equivalent,529710,529712,531345,539627,547737,555547,562998,1633,8282,8110,7810,7451,1705,7102,7245,7181,7253,630,2832,3069,3081,3147,1075,4270,4176,4100,4106,392,1742,1721,1898,1913,194,2187,2230,1601,1485,586,3929,3951,3499,3398,-28,83,-17,211,-53 -38900,,41071,"Yamhill County, OR",County or equivalent,99193,99193,99312,99751,100771,100837,101758,119,439,1020,66,921,265,1176,1117,1066,1079,219,865,828,754,776,46,311,289,312,303,19,84,83,98,103,63,-50,658,-396,479,82,34,741,-298,582,-9,94,-10,52,36 -38900,,53011,"Clark County, WA",County or equivalent,425363,425363,426869,432668,437505,443312,451008,1506,5799,4837,5807,7696,1417,5483,5341,5436,5377,719,2967,3024,3073,3204,698,2516,2317,2363,2173,119,552,598,686,683,710,2602,1989,2644,4440,829,3154,2587,3330,5123,-21,129,-67,114,400 -38900,,53059,"Skamania County, WA",County or equivalent,11066,11066,11099,11124,11151,11255,11340,33,25,27,104,85,18,103,101,110,106,4,88,86,66,78,14,15,15,44,28,1,7,7,8,8,17,9,8,74,57,18,16,15,82,65,1,-6,-3,-22,-8 -38940,,,"Port St. Lucie, FL",Metropolitan Statistical Area,424107,424107,425246,428374,432405,437785,444420,1139,3128,4031,5380,6635,1025,4287,4181,4052,4110,1071,4381,4498,4723,4899,-46,-94,-317,-671,-789,252,1001,903,985,992,930,1918,3502,4945,5664,1182,2919,4405,5930,6656,3,303,-57,121,768 -38940,,12085,"Martin County, FL",County or equivalent,146318,146850,146978,147595,148846,151478,153392,128,617,1251,2632,1914,300,1203,1132,1169,1161,451,1675,1681,1839,1878,-151,-472,-549,-670,-717,60,221,213,237,239,230,967,1587,3027,2122,290,1188,1800,3264,2361,-11,-99,0,38,270 -38940,,12111,"St. Lucie County, FL",County or equivalent,277789,277257,278268,280779,283559,286307,291028,1011,2511,2780,2748,4721,725,3084,3049,2883,2949,620,2706,2817,2884,3021,105,378,232,-1,-72,192,780,690,748,753,700,951,1915,1918,3542,892,1731,2605,2666,4295,14,402,-57,83,498 -39140,,,"Prescott, AZ",Metropolitan Statistical Area,211033,211015,210517,211185,212509,215389,218844,-498,668,1324,2880,3455,477,1845,1735,1885,1821,641,2612,2600,2680,2647,-164,-767,-865,-795,-826,32,151,137,156,161,-349,1122,2084,3540,3828,-317,1273,2221,3696,3989,-17,162,-32,-21,292 -39140,,4025,"Yavapai County, AZ",County or equivalent,211033,211015,210517,211185,212509,215389,218844,-498,668,1324,2880,3455,477,1845,1735,1885,1821,641,2612,2600,2680,2647,-164,-767,-865,-795,-826,32,151,137,156,161,-349,1122,2084,3540,3828,-317,1273,2221,3696,3989,-17,162,-32,-21,292 -39300,,,"Providence-Warwick, RI-MA",Metropolitan Statistical Area,1600852,1601216,1602154,1601145,1603402,1605521,1609367,938,-1009,2257,2119,3846,4136,16829,16807,16493,16585,3427,14867,14231,14437,14642,709,1962,2576,2056,1943,961,4768,5051,5215,5175,-759,-7423,-5361,-5264,-2518,202,-2655,-310,-49,2657,27,-316,-9,112,-754 -39300,,25005,"Bristol County, MA",County or equivalent,548285,548285,549076,549125,550765,552167,554194,791,49,1640,1402,2027,1387,5827,5801,5648,5667,1091,5106,4917,5038,5099,296,721,884,610,568,101,789,848,891,885,383,-1277,-72,-131,869,484,-488,776,760,1754,11,-184,-20,32,-295 -39300,,44001,"Bristol County, RI",County or equivalent,49875,49875,49846,49284,49238,49263,49060,-29,-562,-46,25,-203,90,361,343,345,348,145,472,444,487,503,-55,-111,-101,-142,-155,7,26,31,37,37,20,-515,25,93,-51,27,-489,56,130,-14,-1,38,-1,37,-34 -39300,,44003,"Kent County, RI",County or equivalent,166158,166158,166009,165306,164900,164923,165128,-149,-703,-406,23,205,379,1591,1622,1550,1577,423,1764,1702,1684,1691,-44,-173,-80,-134,-114,42,183,207,201,200,-146,-627,-535,-105,253,-104,-444,-328,96,453,-1,-86,2,61,-134 -39300,,44005,"Newport County, RI",County or equivalent,82888,83141,83158,83003,82884,82457,82358,17,-155,-119,-427,-99,196,738,723,692,715,158,679,691,665,700,38,59,32,27,15,90,151,384,269,244,-111,-365,-532,-645,-333,-21,-214,-148,-376,-89,0,0,-3,-78,-25 -39300,,44007,"Providence County, RI",County or equivalent,626667,626663,626965,627922,629368,630171,631974,302,957,1446,803,1803,1830,7360,7396,7361,7350,1375,5770,5477,5512,5549,455,1590,1919,1849,1801,687,3472,3425,3660,3652,-856,-4048,-3906,-4682,-3419,-169,-576,-481,-1022,233,16,-57,8,-24,-231 -39300,,44009,"Washington County, RI",County or equivalent,126979,127094,127100,126505,126247,126540,126653,6,-595,-258,293,113,254,952,922,897,928,235,1076,1000,1051,1100,19,-124,-78,-154,-172,34,147,156,157,157,-49,-591,-341,206,163,-15,-444,-185,363,320,2,-27,5,84,-35 -39340,,,"Provo-Orem, UT",Metropolitan Statistical Area,526810,526810,529830,540396,549930,562253,571460,3020,10566,9534,12323,9207,2957,12316,11726,12358,12144,473,2075,2175,2136,2132,2484,10241,9551,10222,10012,145,793,784,859,863,380,-462,-745,1200,-1654,525,331,39,2059,-791,11,-6,-56,42,-14 -39340,,49023,"Juab County, UT",County or equivalent,10246,10246,10261,10343,10328,10327,10486,15,82,-15,-1,159,49,194,178,182,183,16,80,72,51,84,33,114,106,131,99,1,3,2,2,2,-18,-48,-126,-128,47,-17,-45,-124,-126,49,-1,13,3,-6,11 -39340,,49049,"Utah County, UT",County or equivalent,516564,516564,519569,530053,539602,551926,560974,3005,10484,9549,12324,9048,2908,12122,11548,12176,11961,457,1995,2103,2085,2048,2451,10127,9445,10091,9913,144,790,782,857,861,398,-414,-619,1328,-1701,542,376,163,2185,-840,12,-19,-59,48,-25 -39380,,,"Pueblo, CO",Metropolitan Statistical Area,159063,159063,159536,160213,160840,161320,161875,473,677,627,480,555,526,1864,1876,1907,1908,418,1650,1582,1614,1638,108,214,294,293,270,15,58,77,68,65,335,495,252,52,247,350,553,329,120,312,15,-90,4,67,-27 -39380,,8101,"Pueblo County, CO",County or equivalent,159063,159063,159536,160213,160840,161320,161875,473,677,627,480,555,526,1864,1876,1907,1908,418,1650,1582,1614,1638,108,214,294,293,270,15,58,77,68,65,335,495,252,52,247,350,553,329,120,312,15,-90,4,67,-27 -39460,,,"Punta Gorda, FL",Metropolitan Statistical Area,159978,159989,159927,159613,162792,164948,168474,-62,-314,3179,2156,3526,242,997,999,1037,1037,584,2273,2189,2388,2420,-342,-1276,-1190,-1351,-1383,59,247,243,274,277,254,872,4080,3242,4009,313,1119,4323,3516,4286,-33,-157,46,-9,623 -39460,,12015,"Charlotte County, FL",County or equivalent,159978,159989,159927,159613,162792,164948,168474,-62,-314,3179,2156,3526,242,997,999,1037,1037,584,2273,2189,2388,2420,-342,-1276,-1190,-1351,-1383,59,247,243,274,277,254,872,4080,3242,4009,313,1119,4323,3516,4286,-33,-157,46,-9,623 -39540,,,"Racine, WI",Metropolitan Statistical Area,195408,195428,195446,194979,194683,194922,195163,18,-467,-296,239,241,612,2497,2425,2350,2369,456,1642,1701,1648,1567,156,855,724,702,802,30,144,140,154,159,-172,-1424,-1173,-588,-626,-142,-1280,-1033,-434,-467,4,-42,13,-29,-94 -39540,,55101,"Racine County, WI",County or equivalent,195408,195428,195446,194979,194683,194922,195163,18,-467,-296,239,241,612,2497,2425,2350,2369,456,1642,1701,1648,1567,156,855,724,702,802,30,144,140,154,159,-172,-1424,-1173,-588,-626,-142,-1280,-1033,-434,-467,4,-42,13,-29,-94 -39580,,,"Raleigh, NC",Metropolitan Statistical Area,1130490,1130490,1137346,1163203,1189075,1215299,1242974,6856,25857,25872,26224,27675,3933,15482,15157,15378,15437,1460,6089,6268,6653,6832,2473,9393,8889,8725,8605,809,3817,3837,4165,4194,3414,12247,13008,12914,14337,4223,16064,16845,17079,18531,160,400,138,420,539 -39580,,37069,"Franklin County, NC",County or equivalent,60619,60594,60821,61090,61571,62275,62860,227,269,481,704,585,157,682,649,678,684,101,459,521,569,555,56,223,128,109,129,10,30,23,31,32,155,-37,332,555,445,165,-7,355,586,477,6,53,-2,9,-21 -39580,,37101,"Johnston County, NC",County or equivalent,168878,168878,169617,172783,174893,178000,181423,739,3166,2110,3107,3423,547,2258,2247,2204,2208,304,1235,1195,1261,1314,243,1023,1052,943,894,46,184,199,198,203,419,1761,856,1923,2195,465,1945,1055,2121,2398,31,198,3,43,131 -39580,,37183,"Wake County, NC",County or equivalent,900993,901018,906908,929330,952611,975024,998691,5890,22422,23281,22413,23667,3229,12542,12261,12496,12545,1055,4395,4552,4823,4963,2174,8147,7709,7673,7582,753,3603,3615,3936,3959,2840,10523,11820,10436,11697,3593,14126,15435,14372,15656,123,149,137,368,429 -39660,,,"Rapid City, SD",Metropolitan Statistical Area,134598,134609,135052,136354,138791,141363,143638,443,1302,2437,2572,2275,490,1903,1924,1952,1963,269,1067,1024,1033,1048,221,836,900,919,915,52,53,279,152,127,180,416,1264,1469,1128,232,469,1543,1621,1255,-10,-3,-6,32,105 -39660,,46033,"Custer County, SD",County or equivalent,8216,8216,8269,8335,8315,8424,8445,53,66,-20,109,21,24,81,68,66,69,11,87,90,70,72,13,-6,-22,-4,-3,0,0,0,0,0,38,70,3,116,21,38,70,3,116,21,2,2,-1,-3,3 -39660,,46093,"Meade County, SD",County or equivalent,25434,25456,25504,25593,25924,26567,26951,48,89,331,643,384,91,310,315,333,342,26,179,160,181,184,65,131,155,152,158,21,22,124,66,56,-34,-61,53,420,175,-13,-39,177,486,231,-4,-3,-1,5,-5 -39660,,46103,"Pennington County, SD",County or equivalent,100948,100937,101279,102426,104552,106372,108242,342,1147,2126,1820,1870,375,1512,1541,1553,1552,232,801,774,782,792,143,711,767,771,760,31,31,155,86,71,176,407,1208,933,932,207,438,1363,1019,1003,-8,-2,-4,30,107 -39740,,,"Reading, PA",Metropolitan Statistical Area,411442,411587,411905,412580,413252,413652,413691,318,675,672,400,39,1126,4868,4878,4834,4838,842,3662,3662,3668,3692,284,1206,1216,1166,1146,227,1200,1183,1193,1198,-169,-1508,-1734,-1917,-2036,58,-308,-551,-724,-838,-24,-223,7,-42,-269 -39740,,42011,"Berks County, PA",County or equivalent,411442,411587,411905,412580,413252,413652,413691,318,675,672,400,39,1126,4868,4878,4834,4838,842,3662,3662,3668,3692,284,1206,1216,1166,1146,227,1200,1183,1193,1198,-169,-1508,-1734,-1917,-2036,58,-308,-551,-724,-838,-24,-223,7,-42,-269 -39820,,,"Redding, CA",Metropolitan Statistical Area,177223,177223,177286,177950,178421,179137,179804,63,664,471,716,667,504,2107,2058,2090,2107,464,2077,2067,2034,2058,40,30,-9,56,49,43,197,202,224,228,-10,321,307,287,402,33,518,509,511,630,-10,116,-29,149,-12 -39820,,6089,"Shasta County, CA",County or equivalent,177223,177223,177286,177950,178421,179137,179804,63,664,471,716,667,504,2107,2058,2090,2107,464,2077,2067,2034,2058,40,30,-9,56,49,43,197,202,224,228,-10,321,307,287,402,33,518,509,511,630,-10,116,-29,149,-12 -39900,,,"Reno, NV",Metropolitan Statistical Area,425417,425437,426032,428858,433001,437713,443990,595,2826,4143,4712,6277,1330,5389,5227,5401,5354,919,3414,3398,3516,3540,411,1975,1829,1885,1814,126,697,703,783,796,92,86,1630,2014,3372,218,783,2333,2797,4168,-34,68,-19,30,295 -39900,,32029,"Storey County, NV",County or equivalent,4010,4010,3997,3956,3915,3889,3912,-13,-41,-41,-26,23,5,20,23,14,14,4,33,34,18,12,1,-13,-11,-4,2,0,0,0,0,0,-14,-53,-31,-28,13,-14,-53,-31,-28,13,0,25,1,6,8 -39900,,32031,"Washoe County, NV",County or equivalent,421407,421427,422035,424902,429086,433824,440078,608,2867,4184,4738,6254,1325,5369,5204,5387,5340,915,3381,3364,3498,3528,410,1988,1840,1889,1812,126,697,703,783,796,106,139,1661,2042,3359,232,836,2364,2825,4155,-34,43,-20,24,287 -40060,,,"Richmond, VA",Metropolitan Statistical Area,1208101,1208080,1210063,1219592,1233722,1246867,1260029,1983,9529,14130,13145,13162,3642,14609,14763,14878,14932,2420,9634,9632,10099,10076,1222,4975,5131,4779,4856,876,3271,3717,3666,3616,-33,1103,5257,4642,4444,843,4374,8974,8308,8060,-82,180,25,58,246 -40060,,51007,"Amelia County, VA",County or equivalent,12690,12695,12740,12752,12745,12727,12855,45,12,-7,-18,128,37,146,131,133,144,13,127,142,131,119,24,19,-11,2,25,3,20,19,21,21,17,-28,-13,-44,69,20,-8,6,-23,90,1,1,-2,3,13 -40060,,51033,"Caroline County, VA",County or equivalent,28545,28558,28615,28667,28939,29285,29778,57,52,272,346,493,78,371,393,411,401,79,225,226,270,260,-1,146,167,141,141,3,12,12,13,13,55,-102,96,165,308,58,-90,108,178,321,0,-4,-3,27,31 -40060,,51036,"Charles City County, VA",County or equivalent,7256,7256,7260,7231,7148,7106,7023,4,-29,-83,-42,-83,15,41,52,49,55,36,85,72,62,78,-21,-44,-20,-13,-23,0,0,0,0,0,27,-1,-64,-22,-65,27,-1,-64,-22,-65,-2,16,1,-7,5 -40060,,51041,"Chesterfield County, VA",County or equivalent,316236,316231,317151,320292,323850,327892,332499,920,3141,3558,4042,4607,885,3629,3641,3766,3756,514,1945,2060,2153,2148,371,1684,1581,1613,1608,196,624,720,710,694,381,851,1295,1586,2249,577,1475,2015,2296,2943,-28,-18,-38,133,56 -40060,,51053,"Dinwiddie County, VA",County or equivalent,28001,28001,27998,28084,28100,27926,27859,-3,86,16,-174,-67,53,241,258,230,239,35,245,216,284,258,18,-4,42,-54,-19,4,17,15,21,21,-18,36,-38,-156,-51,-14,53,-23,-135,-30,-7,37,-3,15,-18 -40060,,51075,"Goochland County, VA",County or equivalent,21717,21699,21751,21458,21350,21639,21936,52,-293,-108,289,297,51,171,149,161,169,15,184,174,154,166,36,-13,-25,7,3,1,5,5,5,5,17,-345,-92,279,280,18,-340,-87,284,285,-2,60,4,-2,9 -40060,,51085,"Hanover County, VA",County or equivalent,99863,99852,99921,99975,100432,101198,101918,69,54,457,766,720,219,887,855,897,896,226,756,845,845,788,-7,131,10,52,108,15,63,69,70,71,71,-189,383,672,507,86,-126,452,742,578,-10,49,-5,-28,34 -40060,,51087,"Henrico County, VA",County or equivalent,306935,306906,307542,310550,315431,318943,321924,636,3008,4881,3512,2981,979,3853,3993,3968,3966,624,2472,2411,2601,2570,355,1381,1582,1367,1396,348,1442,1442,1557,1564,-45,285,1880,528,70,303,1727,3322,2085,1634,-22,-100,-23,60,-49 -40060,,51101,"King William County, VA",County or equivalent,15935,15927,15977,15981,15977,16103,16186,50,4,-4,126,83,42,198,189,180,192,19,131,148,123,118,23,67,41,57,74,0,6,6,6,6,29,-71,-48,65,5,29,-65,-42,71,11,-2,2,-3,-2,-2 -40060,,51127,"New Kent County, VA",County or equivalent,18429,18432,18546,18754,19132,19482,20021,114,208,378,350,539,45,172,204,174,185,66,134,130,129,120,-21,38,74,45,65,2,12,14,14,14,130,167,285,281,443,132,179,299,295,457,3,-9,5,10,17 -40060,,51145,"Powhatan County, VA",County or equivalent,28046,28046,28079,28078,28116,28241,28449,33,-1,38,125,208,43,240,235,226,239,22,192,190,192,212,21,48,45,34,27,1,4,4,7,7,13,-69,-12,69,164,14,-65,-8,76,171,-2,16,1,15,10 -40060,,51149,"Prince George County, VA",County or equivalent,35725,35724,35619,36668,37036,37303,37333,-105,1049,368,267,30,73,355,343,316,339,32,217,246,226,239,41,138,97,90,100,60,81,352,169,130,-217,800,-75,26,-190,-157,881,277,195,-60,11,30,-6,-18,-10 -40060,,51183,"Sussex County, VA",County or equivalent,12087,12083,12004,12091,11941,11808,11767,-79,87,-150,-133,-41,22,105,108,104,98,16,142,137,126,133,6,-37,-29,-22,-35,2,8,8,9,9,-90,112,-131,-123,-11,-88,120,-123,-114,-2,3,4,2,3,-4 -40060,,51570,"Colonial Heights city, VA",County or equivalent,17411,17413,17390,17369,17510,17708,17731,-23,-21,141,198,23,70,245,249,296,274,61,219,220,187,189,9,26,29,109,85,4,30,38,28,27,-35,-75,75,69,-84,-31,-45,113,97,-57,-1,-2,-1,-8,-5 -40060,,51670,"Hopewell city, VA",County or equivalent,22591,22591,22641,22506,22322,22209,22196,50,-135,-184,-113,-13,94,360,349,377,358,39,292,267,248,284,55,68,82,129,74,5,31,25,26,27,-6,-228,-296,-276,-118,-1,-197,-271,-250,-91,-4,-6,5,8,4 -40060,,51730,"Petersburg city, VA",County or equivalent,32420,32420,32573,32159,32167,32593,32701,153,-414,8,426,108,193,679,625,678,676,112,396,356,422,435,81,283,269,256,241,15,78,121,88,80,59,-855,-384,109,-197,74,-777,-263,197,-117,-2,80,2,-27,-16 -40060,,51760,"Richmond city, VA",County or equivalent,204214,204246,204256,206977,211526,214704,217853,10,2721,4549,3178,3149,743,2916,2989,2912,2945,511,1872,1792,1946,1959,232,1044,1197,966,986,217,838,867,922,927,-421,815,2396,1414,1065,-204,1653,3263,2336,1992,-18,24,89,-124,171 -40140,,,"Riverside-San Bernardino-Ontario, CA",Metropolitan Statistical Area,4224851,4224972,4244242,4302359,4348670,4390262,4441890,19270,58117,46311,41592,51628,15119,62436,60257,61362,61427,6439,26668,26720,28660,29192,8680,35768,33537,32702,32235,1256,7815,8363,8664,8654,8972,14339,4552,-1014,10359,10228,22154,12915,7650,19013,362,195,-141,1240,380 -40140,,6065,"Riverside County, CA",County or equivalent,2189641,2189757,2202553,2237696,2268019,2296956,2329271,12796,35143,30323,28937,32315,7556,31002,30094,30550,30694,3374,14464,14613,15429,15706,4182,16538,15481,15121,14988,552,4010,3926,4307,4377,7675,14095,11084,9147,12228,8227,18105,15010,13454,16605,387,500,-168,362,722 -40140,,6071,"San Bernardino County, CA",County or equivalent,2035210,2035215,2041689,2064663,2080651,2093306,2112619,6474,22974,15988,12655,19313,7563,31434,30163,30812,30733,3065,12204,12107,13231,13486,4498,19230,18056,17581,17247,704,3805,4437,4357,4277,1297,244,-6532,-10161,-1869,2001,4049,-2095,-5804,2408,-25,-305,27,878,-342 -40220,,,"Roanoke, VA",Metropolitan Statistical Area,308707,308693,308781,309390,310710,312404,313388,88,609,1320,1694,984,895,3302,3337,3443,3409,810,3373,3282,3343,3330,85,-71,55,100,79,165,661,651,715,715,-162,-146,616,792,308,3,515,1267,1507,1023,0,165,-2,87,-118 -40220,,51023,"Botetourt County, VA",County or equivalent,33148,33148,33188,33052,33157,33029,33100,40,-136,105,-128,71,60,229,220,227,224,50,305,308,306,313,10,-76,-88,-79,-89,1,3,4,4,4,32,-113,192,-80,159,33,-110,196,-76,163,-3,50,-3,27,-3 -40220,,51045,"Craig County, VA",County or equivalent,5190,5173,5176,5228,5198,5196,5234,3,52,-30,-2,38,9,30,38,51,43,3,52,48,44,58,6,-22,-10,7,-15,0,0,0,0,0,1,35,-19,9,47,1,35,-19,9,47,-4,39,-1,-18,6 -40220,,51067,"Franklin County, VA",County or equivalent,56159,56166,56221,56442,56392,56388,56358,55,221,-50,-4,-30,141,486,516,528,511,153,527,552,562,584,-12,-41,-36,-34,-73,2,17,15,18,18,64,234,-25,27,65,66,251,-10,45,83,1,11,-4,-15,-40 -40220,,51161,"Roanoke County, VA",County or equivalent,92376,92439,92456,93004,93031,93694,93785,17,548,27,663,91,244,824,793,840,821,238,957,954,943,918,6,-133,-161,-103,-97,51,198,204,222,222,-43,446,-14,489,-10,8,644,190,711,212,3,37,-2,55,-24 -40220,,51770,"Roanoke city, VA",County or equivalent,97032,96919,96812,96810,97879,98815,99428,-107,-2,1069,936,613,371,1478,1474,1509,1513,326,1248,1110,1193,1166,45,230,364,316,347,99,380,369,407,407,-257,-561,327,166,-94,-158,-181,696,573,313,6,-51,9,47,-47 -40220,,51775,"Salem city, VA",County or equivalent,24802,24848,24928,24854,25053,25282,25483,80,-74,199,229,201,70,255,296,288,297,40,284,310,295,291,30,-29,-14,-7,6,12,63,59,64,64,41,-187,155,181,141,53,-124,214,245,205,-3,79,-1,-9,-10 -40340,,,"Rochester, MN",Metropolitan Statistical Area,206877,206877,207140,208556,209709,211838,212778,263,1416,1153,2129,940,719,2961,2815,2823,2812,300,1507,1465,1436,1479,419,1454,1350,1387,1333,143,600,603,665,663,-297,-748,-799,22,-995,-154,-148,-196,687,-332,-2,110,-1,55,-61 -40340,,27039,"Dodge County, MN",County or equivalent,20087,20087,20145,20175,20237,20319,20353,58,30,62,82,34,60,262,263,228,236,25,125,133,124,116,35,137,130,104,120,2,18,18,21,21,22,-127,-89,-48,-103,24,-109,-71,-27,-82,-1,2,3,5,-4 -40340,,27045,"Fillmore County, MN",County or equivalent,20866,20866,20837,20878,20894,20825,20776,-29,41,16,-69,-49,68,250,243,230,228,29,246,243,211,231,39,4,0,19,-3,0,13,12,13,13,-62,-2,3,-94,-51,-62,11,15,-81,-38,-6,26,1,-7,-8 -40340,,27109,"Olmsted County, MN",County or equivalent,144248,144260,144500,145981,147156,149232,150287,240,1481,1175,2076,1055,535,2186,2091,2127,2112,218,943,925,943,962,317,1243,1166,1184,1150,140,551,555,612,610,-224,-373,-542,200,-648,-84,178,13,812,-38,7,60,-4,80,-57 -40340,,27157,"Wabasha County, MN",County or equivalent,21676,21664,21658,21522,21422,21462,21362,-6,-136,-100,40,-100,56,263,218,238,236,28,193,164,158,170,28,70,54,80,66,1,18,18,19,19,-33,-246,-171,-36,-193,-32,-228,-153,-17,-174,-2,22,-1,-23,8 -40380,,,"Rochester, NY",Metropolitan Statistical Area,1079671,1079692,1080082,1082269,1083059,1084094,1083393,390,2187,790,1035,-701,2868,11962,11640,11561,11602,2319,9538,9574,9430,9405,549,2424,2066,2131,2197,517,2847,2900,3067,3058,-658,-2809,-4229,-4338,-5631,-141,38,-1329,-1271,-2573,-18,-275,53,175,-325 -40380,,36051,"Livingston County, NY",County or equivalent,65393,65250,65261,64896,64862,64731,64586,11,-365,-34,-131,-145,140,566,571,476,482,109,557,536,503,505,31,9,35,-27,-23,15,98,100,105,105,-29,-468,-165,-221,-188,-14,-370,-65,-116,-83,-6,-4,-4,12,-39 -40380,,36055,"Monroe County, NY",County or equivalent,744344,744340,744647,747225,748582,750071,749857,307,2578,1357,1489,-214,2054,8609,8307,8331,8347,1539,6428,6522,6436,6435,515,2181,1785,1895,1912,445,2452,2510,2652,2642,-649,-1790,-2985,-3224,-4526,-204,662,-475,-572,-1884,-4,-265,47,166,-242 -40380,,36069,"Ontario County, NY",County or equivalent,107931,108105,108233,108762,108824,109351,109707,128,529,62,527,356,256,1049,1036,1049,1066,284,1045,1022,1036,1012,-28,4,14,13,54,21,142,143,153,154,142,363,-91,283,168,163,505,52,436,322,-7,20,-4,78,-20 -40380,,36073,"Orleans County, NY",County or equivalent,42883,42883,42847,42730,42517,42384,41984,-36,-117,-213,-133,-400,109,432,401,392,388,118,412,422,381,404,-9,20,-21,11,-16,11,57,57,57,57,-40,-195,-254,-189,-451,-29,-138,-197,-132,-394,2,1,5,-12,10 -40380,,36117,"Wayne County, NY",County or equivalent,93772,93762,93734,93255,93009,92388,92051,-28,-479,-246,-621,-337,232,993,1017,977,980,231,855,817,810,799,1,138,200,167,181,23,80,77,84,84,-53,-666,-531,-820,-570,-30,-586,-454,-736,-486,1,-31,8,-52,-32 -40380,,36123,"Yates County, NY",County or equivalent,25348,25352,25360,25401,25265,25169,25208,8,41,-136,-96,39,77,313,308,336,339,38,241,255,264,250,39,72,53,72,89,2,18,13,16,16,-29,-53,-203,-167,-64,-27,-35,-190,-151,-48,-4,4,1,-17,-2 -40420,,,"Rockford, IL",Metropolitan Statistical Area,349431,349431,349295,347890,345803,344755,342411,-136,-1405,-2087,-1048,-2344,1110,4392,4188,4096,4084,626,3105,3008,3046,3001,484,1287,1180,1050,1083,80,335,326,362,371,-719,-2939,-3631,-2512,-3754,-639,-2604,-3305,-2150,-3383,19,-88,38,52,-44 -40420,,17007,"Boone County, IL",County or equivalent,54165,54167,54144,54223,53880,53910,53869,-23,79,-343,30,-41,166,612,617,524,565,115,344,366,368,332,51,268,251,156,233,-2,-5,-7,-3,-1,-72,-167,-593,-144,-245,-74,-172,-600,-147,-246,0,-17,6,21,-28 -40420,,17201,"Winnebago County, IL",County or equivalent,295266,295264,295151,293667,291923,290845,288542,-113,-1484,-1744,-1078,-2303,944,3780,3571,3572,3519,511,2761,2642,2678,2669,433,1019,929,894,850,82,340,333,365,372,-647,-2772,-3038,-2368,-3509,-565,-2432,-2705,-2003,-3137,19,-71,32,31,-16 -40580,,,"Rocky Mount, NC",Metropolitan Statistical Area,152392,152388,152484,151845,151034,150114,149290,96,-639,-811,-920,-824,505,1760,1786,1772,1741,374,1571,1554,1537,1584,131,189,232,235,157,20,50,46,61,65,-37,-868,-1112,-1297,-1012,-17,-818,-1066,-1236,-947,-18,-10,23,81,-34 -40580,,37065,"Edgecombe County, NC",County or equivalent,56552,56551,56609,56087,55714,55554,54933,58,-522,-373,-160,-621,204,642,685,652,645,104,566,585,597,606,100,76,100,55,39,-4,6,5,9,10,-34,-632,-497,-262,-644,-38,-626,-492,-253,-634,-4,28,19,38,-26 -40580,,37127,"Nash County, NC",County or equivalent,95840,95837,95875,95758,95320,94560,94357,38,-117,-438,-760,-203,301,1118,1101,1120,1096,270,1005,969,940,978,31,113,132,180,118,24,44,41,52,55,-3,-236,-615,-1035,-368,21,-192,-574,-983,-313,-14,-38,4,43,-8 -40660,,,"Rome, GA",Metropolitan Statistical Area,96317,96317,96393,96182,96066,96025,96063,76,-211,-116,-41,38,304,1303,1127,1165,1125,202,979,1006,1058,1032,102,324,121,107,93,29,101,98,116,116,-44,-586,-338,-335,-128,-15,-485,-240,-219,-12,-11,-50,3,71,-43 -40660,,13115,"Floyd County, GA",County or equivalent,96317,96317,96393,96182,96066,96025,96063,76,-211,-116,-41,38,304,1303,1127,1165,1125,202,979,1006,1058,1032,102,324,121,107,93,29,101,98,116,116,-44,-586,-338,-335,-128,-15,-485,-240,-219,-12,-11,-50,3,71,-43 -40900,,,"Sacramento--Roseville--Arden-Arcade, CA",Metropolitan Statistical Area,2149127,2149143,2154382,2175727,2195087,2217515,2244397,5239,21345,19360,22428,26882,6833,28102,27151,27398,27409,3721,15553,15879,16194,16596,3112,12549,11272,11204,10813,1310,6605,6691,7396,7433,905,1918,1607,3073,8155,2215,8523,8298,10469,15588,-88,273,-210,755,481 -40900,,6017,"El Dorado County, CA",County or equivalent,181058,181057,181163,180926,180605,181542,183087,106,-237,-321,937,1545,399,1632,1598,1497,1526,297,1316,1434,1431,1486,102,316,164,66,40,42,166,159,175,177,-32,-632,-664,563,1330,10,-466,-505,738,1507,-6,-87,20,133,-2 -40900,,6061,"Placer County, CA",County or equivalent,348432,348494,350214,356897,361446,367339,371694,1720,6683,4549,5893,4355,942,3850,3694,3683,3708,711,2813,2800,2862,2924,231,1037,894,821,784,155,579,649,706,699,1343,4662,3067,4522,2530,1498,5241,3716,5228,3229,-9,405,-61,-156,342 -40900,,6067,"Sacramento County, CA",County or equivalent,1418788,1418742,1421838,1435601,1448771,1463149,1482026,3096,13763,13170,14378,18877,4883,20194,19536,19732,19720,2487,10188,10458,10723,10985,2396,10006,9078,9009,8735,892,4868,4883,5426,5465,-103,-1031,-630,-757,4539,789,3837,4253,4669,10004,-89,-80,-161,700,138 -40900,,6113,"Yolo County, CA",County or equivalent,200849,200850,201167,202303,204265,205485,207590,317,1136,1962,1220,2105,609,2426,2323,2486,2455,226,1236,1187,1178,1201,383,1190,1136,1308,1254,221,992,1000,1089,1092,-303,-1081,-166,-1255,-244,-82,-89,834,-166,848,16,35,-8,78,3 -40980,,,"Saginaw, MI",Metropolitan Statistical Area,200169,200169,199882,198815,198268,196660,195012,-287,-1067,-547,-1608,-1648,557,2229,2372,2279,2259,546,1993,2000,2035,2018,11,236,372,244,241,38,155,158,168,168,-354,-1371,-1097,-2039,-1958,-316,-1216,-939,-1871,-1790,18,-87,20,19,-99 -40980,,26145,"Saginaw County, MI",County or equivalent,200169,200169,199882,198815,198268,196660,195012,-287,-1067,-547,-1608,-1648,557,2229,2372,2279,2259,546,1993,2000,2035,2018,11,236,372,244,241,38,155,158,168,168,-354,-1371,-1097,-2039,-1958,-316,-1216,-939,-1871,-1790,18,-87,20,19,-99 -41060,,,"St. Cloud, MN",Metropolitan Statistical Area,189093,189093,189188,190072,190513,191348,192418,95,884,441,835,1070,608,2529,2432,2422,2384,321,1232,1315,1206,1185,287,1297,1117,1216,1199,54,222,238,244,248,-253,-656,-916,-611,-295,-199,-434,-678,-367,-47,7,21,2,-14,-82 -41060,,27009,"Benton County, MN",County or equivalent,38451,38451,38455,38823,38867,39250,39506,4,368,44,383,256,137,583,568,568,569,95,311,321,307,283,42,272,247,261,286,2,7,7,9,9,-41,18,-204,141,-52,-39,25,-197,150,-43,1,71,-6,-28,13 -41060,,27145,"Stearns County, MN",County or equivalent,150642,150642,150733,151249,151646,152098,152912,91,516,397,452,814,471,1946,1864,1854,1815,226,921,994,899,902,245,1025,870,955,913,52,215,231,235,239,-212,-674,-712,-752,-243,-160,-459,-481,-517,-4,6,-50,8,14,-95 -41100,,,"St. George, UT",Metropolitan Statistical Area,138115,138115,138406,141502,144643,147719,151948,291,3096,3141,3076,4229,590,2388,2163,2155,2188,298,1058,1066,1107,1094,292,1330,1097,1048,1094,16,62,60,65,69,10,1464,2011,2098,2655,26,1526,2071,2163,2724,-27,240,-27,-135,411 -41100,,49053,"Washington County, UT",County or equivalent,138115,138115,138406,141502,144643,147719,151948,291,3096,3141,3076,4229,590,2388,2163,2155,2188,298,1058,1066,1107,1094,292,1330,1097,1048,1094,16,62,60,65,69,10,1464,2011,2098,2655,26,1526,2071,2163,2724,-27,240,-27,-135,411 -41140,,,"St. Joseph, MO-KS",Metropolitan Statistical Area,127329,127329,127278,127747,127950,127779,127431,-51,469,203,-171,-348,433,1596,1614,1531,1537,295,1314,1352,1298,1208,138,282,262,233,329,35,152,164,174,175,-224,-40,-212,-551,-799,-189,112,-48,-377,-624,0,75,-11,-27,-53 -41140,,20043,"Doniphan County, KS",County or equivalent,7945,7945,7956,7955,7877,7859,7874,11,-1,-78,-18,15,27,93,84,83,86,10,68,82,70,68,17,25,2,13,18,1,6,7,7,7,-4,-30,-86,-36,-7,-3,-24,-79,-29,0,-3,-2,-1,-2,-3 -41140,,29003,"Andrew County, MO",County or equivalent,17291,17291,17349,17295,17420,17420,17379,58,-54,125,0,-41,63,174,185,182,183,34,140,171,177,171,29,34,14,5,12,0,0,0,0,0,32,-134,113,-6,-43,32,-134,113,-6,-43,-3,46,-2,1,-10 -41140,,29021,"Buchanan County, MO",County or equivalent,89201,89201,89095,89583,89779,89738,89486,-106,488,196,-41,-252,320,1213,1238,1165,1170,234,972,983,934,872,86,241,255,231,298,32,142,153,161,162,-236,129,-204,-403,-677,-204,271,-51,-242,-515,12,-24,-8,-30,-35 -41140,,29063,"DeKalb County, MO",County or equivalent,12892,12892,12878,12914,12874,12762,12692,-14,36,-40,-112,-70,23,116,107,101,98,17,134,116,117,97,6,-18,-9,-16,1,2,4,4,6,6,-16,-5,-35,-106,-72,-14,-1,-31,-100,-66,-6,55,0,4,-5 -41180,,,"St. Louis, MO-IL",Metropolitan Statistical Area,2787701,2787747,2789886,2793725,2797281,2801587,2806207,2139,3839,3556,4306,4620,8550,34843,34279,33785,33623,5736,24822,24448,24964,25458,2814,10021,9831,8821,8165,921,3862,4319,4495,4482,-1524,-9574,-10541,-8926,-7748,-603,-5712,-6222,-4431,-3266,-72,-470,-53,-84,-279 -41180,,17005,"Bond County, IL",County or equivalent,17768,17768,17773,17731,17621,17461,17269,5,-42,-110,-160,-192,44,177,176,135,148,33,169,164,162,160,11,8,12,-27,-12,2,15,14,15,15,-3,-65,-139,-153,-205,-1,-50,-125,-138,-190,-5,0,3,5,10 -41180,,17013,"Calhoun County, IL",County or equivalent,5089,5089,5079,5067,5022,5042,4956,-10,-12,-45,20,-86,9,58,51,39,43,4,50,57,53,60,5,8,-6,-14,-17,0,2,2,2,2,-11,-35,-43,30,-70,-11,-33,-41,32,-68,-4,13,2,2,-1 -41180,,17027,"Clinton County, IL",County or equivalent,37762,37762,37819,38130,38057,37895,37857,57,311,-73,-162,-38,95,400,435,422,418,61,292,336,350,359,34,108,99,72,59,2,8,7,8,8,26,140,-182,-246,-107,28,148,-175,-238,-99,-5,55,3,4,2 -41180,,17083,"Jersey County, IL",County or equivalent,22985,22985,22964,22850,22732,22638,22571,-21,-114,-118,-94,-67,55,208,238,210,223,40,244,260,205,193,15,-36,-22,5,30,3,11,10,10,10,-41,-97,-107,-99,-102,-38,-86,-97,-89,-92,2,8,1,-10,-5 -41180,,17117,"Macoupin County, IL",County or equivalent,47765,47765,47784,47807,47208,46892,46453,19,23,-599,-316,-439,115,499,447,441,438,135,534,556,559,563,-20,-35,-109,-118,-125,0,15,16,18,18,45,42,-519,-237,-309,45,57,-503,-219,-291,-6,1,13,21,-23 -41180,,17119,"Madison County, IL",County or equivalent,269282,269328,269341,268500,268039,267247,266560,13,-841,-461,-792,-687,784,3236,3195,3074,3038,670,2641,2533,2653,2696,114,595,662,421,342,39,132,160,159,153,-139,-1467,-1305,-1313,-1041,-100,-1335,-1145,-1154,-888,-1,-101,22,-59,-141 -41180,,17133,"Monroe County, IL",County or equivalent,32957,32957,33009,33233,33331,33570,33722,52,224,98,239,152,82,307,322,334,332,49,266,239,255,292,33,41,83,79,40,0,-1,-1,-1,-1,20,182,16,152,53,20,181,15,151,52,-1,2,0,9,60 -41180,,17163,"St. Clair County, IL",County or equivalent,270056,270063,270406,270088,268785,267065,265729,343,-318,-1303,-1720,-1336,881,3558,3416,3382,3307,510,2442,2379,2501,2572,371,1116,1037,881,735,97,119,401,250,235,-118,-1437,-2786,-2886,-2240,-21,-1318,-2385,-2636,-2005,-7,-116,45,35,-66 -41180,,29071,"Franklin County, MO",County or equivalent,101492,101491,101537,101648,101386,101757,102084,46,111,-262,371,327,330,1252,1264,1239,1240,268,1007,932,946,931,62,245,332,293,309,4,7,9,11,11,-9,-101,-612,5,0,-5,-94,-603,16,11,-11,-40,9,62,7 -41180,,29099,"Jefferson County, MO",County or equivalent,218733,218728,219083,219644,220102,221245,222716,355,561,458,1143,1471,666,2729,2598,2712,2664,403,1883,1782,1827,1900,263,846,816,885,764,20,69,77,85,87,77,-427,-419,117,502,97,-358,-342,202,589,-5,73,-16,56,118 -41180,,29113,"Lincoln County, MO",County or equivalent,52566,52565,52708,53107,53348,53878,54249,143,399,241,530,371,181,743,700,730,711,80,419,411,431,399,101,324,289,299,312,1,14,13,15,15,41,53,-56,194,63,42,67,-43,209,78,0,8,-5,22,-19 -41180,,29183,"St. Charles County, MO",County or equivalent,360485,360485,361671,365051,368791,373900,379493,1186,3380,3740,5109,5593,1056,4611,4397,4548,4508,538,2248,2356,2396,2460,518,2363,2041,2152,2048,102,425,444,480,483,584,571,1354,2292,2915,686,996,1798,2772,3398,-18,21,-99,185,147 -41180,,29189,"St. Louis County, MO",County or equivalent,998954,998883,998880,999067,1000800,1001491,1001876,-3,187,1733,691,385,2937,11830,11763,11445,11548,2219,9287,9265,9435,9555,718,2543,2498,2010,1993,389,1939,2039,2220,2216,-1152,-3782,-2850,-3680,-3280,-763,-1843,-811,-1460,-1064,42,-513,46,141,-544 -41180,,29219,"Warren County, MO",County or equivalent,32513,32513,32574,32614,32785,33010,33253,61,40,171,225,243,102,412,394,408,404,42,258,266,255,280,60,154,128,153,124,-1,-1,0,1,1,6,-145,46,72,136,5,-146,46,73,137,-4,32,-3,-1,-18 -41180,,29510,"St. Louis city, MO",County or equivalent,319294,319365,319258,319188,319274,318496,317419,-107,-70,86,-778,-1077,1213,4823,4883,4666,4601,684,3082,2912,2936,3038,529,1741,1971,1730,1563,263,1108,1128,1222,1229,-850,-3006,-2939,-3174,-4063,-587,-1898,-1811,-1952,-2834,-49,87,-74,-556,194 -41420,,,"Salem, OR",Metropolitan Statistical Area,390738,390738,391487,393863,396339,398846,404026,749,2376,2476,2507,5180,1383,5331,5235,5135,5181,811,3145,3207,3262,3312,572,2186,2028,1873,1869,66,430,387,452,481,125,-128,101,168,2517,191,302,488,620,2998,-14,-112,-40,14,313 -41420,,41047,"Marion County, OR",County or equivalent,315335,315335,315910,317908,320085,322228,326110,575,1998,2177,2143,3882,1159,4461,4328,4309,4321,635,2545,2573,2619,2669,524,1916,1755,1690,1652,51,405,369,426,450,14,-240,91,22,1595,65,165,460,448,2045,-14,-83,-38,5,185 -41420,,41053,"Polk County, OR",County or equivalent,75403,75403,75577,75955,76254,76618,77916,174,378,299,364,1298,224,870,907,826,860,176,600,634,643,643,48,270,273,183,217,15,25,18,26,31,111,112,10,146,922,126,137,28,172,953,0,-29,-2,9,128 -41500,,,"Salinas, CA",Metropolitan Statistical Area,415057,415057,416364,421393,426411,429123,431344,1307,5029,5018,2712,2221,1634,6863,6808,6529,6613,521,2309,2356,2387,2450,1113,4554,4452,4142,4163,200,926,1133,1125,1141,20,-253,-499,-2515,-2974,220,673,634,-1390,-1833,-26,-198,-68,-40,-109 -41500,,6053,"Monterey County, CA",County or equivalent,415057,415057,416364,421393,426411,429123,431344,1307,5029,5018,2712,2221,1634,6863,6808,6529,6613,521,2309,2356,2387,2450,1113,4554,4452,4142,4163,200,926,1133,1125,1141,20,-253,-499,-2515,-2974,220,673,634,-1390,-1833,-26,-198,-68,-40,-109 -41540,,,"Salisbury, MD-DE",Metropolitan Statistical Area,373802,373769,374762,378111,381407,385140,389922,993,3349,3296,3733,4782,1057,4200,4190,4197,4222,842,3871,3786,4058,4215,215,329,404,139,7,231,926,880,953,955,531,2004,2020,2734,3382,762,2930,2900,3687,4337,16,90,-8,-93,438 -41540,,10005,"Sussex County, DE",County or equivalent,197145,197115,197904,200291,203194,206445,210849,789,2387,2903,3251,4404,584,2233,2224,2273,2306,472,2111,2073,2284,2334,112,122,151,-11,-28,104,349,321,340,341,541,1825,2439,3076,3582,645,2174,2760,3416,3923,32,91,-8,-154,509 -41540,,24039,"Somerset County, MD",County or equivalent,26470,26470,26483,26352,26153,26139,25859,13,-131,-199,-14,-280,70,243,274,273,270,96,285,233,246,264,-26,-42,41,27,6,12,64,63,71,71,28,-150,-309,-111,-354,40,-86,-246,-40,-283,-1,-3,6,-1,-3 -41540,,24045,"Wicomico County, MD",County or equivalent,98733,98733,98899,100010,100472,100961,101539,166,1111,462,489,578,290,1284,1230,1214,1198,152,872,890,927,989,138,412,340,287,209,99,428,419,457,458,-66,280,-297,-322,-72,33,708,122,135,386,-5,-9,0,67,-17 -41540,,24047,"Worcester County, MD",County or equivalent,51454,51451,51476,51458,51588,51595,51675,25,-18,130,7,80,113,440,462,437,448,122,603,590,601,628,-9,-163,-128,-164,-180,16,85,77,85,85,28,49,187,91,226,44,134,264,176,311,-10,11,-6,-5,-51 -41620,,,"Salt Lake City, UT",Metropolitan Statistical Area,1087873,1087873,1091432,1107634,1124222,1141584,1153340,3559,16202,16588,17362,11756,4720,19003,18693,19190,19072,1516,5994,6317,6218,6310,3204,13009,12376,12972,12762,536,2914,2875,3175,3209,-156,611,1389,1150,-3704,380,3525,4264,4325,-495,-25,-332,-52,65,-511 -41620,,49035,"Salt Lake County, UT",County or equivalent,1029655,1029655,1032942,1048397,1064402,1080866,1091742,3287,15455,16005,16464,10876,4478,18004,17709,18187,18083,1416,5683,5997,5921,6011,3062,12321,11712,12266,12072,533,2907,2827,3142,3178,-279,544,1513,979,-3851,254,3451,4340,4121,-673,-29,-317,-47,77,-523 -41620,,49045,"Tooele County, UT",County or equivalent,58218,58218,58490,59237,59820,60718,61598,272,747,583,898,880,242,999,984,1003,989,100,311,320,297,299,142,688,664,706,690,3,7,48,33,31,123,67,-124,171,147,126,74,-76,204,178,4,-15,-5,-12,12 -41660,,,"San Angelo, TX",Metropolitan Statistical Area,111823,111823,112283,113429,115097,116564,118182,460,1146,1668,1467,1618,405,1526,1552,1535,1550,204,1006,1010,1003,1017,201,520,542,532,533,62,123,317,203,169,189,528,802,732,959,251,651,1119,935,1128,8,-25,7,0,-43 -41660,,48235,"Irion County, TX",County or equivalent,1599,1599,1610,1606,1576,1609,1574,11,-4,-30,33,-35,6,12,21,15,17,4,22,9,9,8,2,-10,12,6,9,0,0,0,0,0,9,4,-41,39,-52,9,4,-41,39,-52,0,2,-1,-12,8 -41660,,48451,"Tom Green County, TX",County or equivalent,110224,110224,110673,111823,113521,114955,116608,449,1150,1698,1434,1653,399,1514,1531,1520,1533,200,984,1001,994,1009,199,530,530,526,524,62,123,317,203,169,180,524,843,693,1011,242,647,1160,896,1180,8,-27,8,12,-51 -41700,,,"San Antonio-New Braunfels, TX",Metropolitan Statistical Area,2142508,2142518,2153255,2194231,2237771,2282201,2328652,10737,40976,43540,44430,46451,7519,31264,30981,31763,32280,3532,14810,14778,16147,16050,3987,16454,16203,15616,16230,943,4281,5589,5045,4855,5533,19848,21437,22523,24818,6476,24129,27026,27568,29673,274,393,311,1246,548 -41700,,48013,"Atascosa County, TX",County or equivalent,44911,44911,44955,45463,46436,47085,47774,44,508,973,649,689,143,671,594,668,648,115,386,369,370,402,28,285,225,298,246,-2,-3,-5,-4,-2,21,249,736,334,454,19,246,731,330,452,-3,-23,17,21,-9 -41700,,48019,"Bandera County, TX",County or equivalent,20485,20485,20551,20554,20608,20607,20892,66,3,54,-1,285,40,172,179,143,159,30,203,179,188,194,10,-31,0,-45,-35,0,7,7,7,7,56,23,47,16,324,56,30,54,23,331,0,4,0,21,-11 -41700,,48029,"Bexar County, TX",County or equivalent,1714773,1714774,1723035,1755526,1788858,1822154,1855866,8261,32491,33332,33296,33712,6293,26218,25882,26564,26856,2772,11366,11377,12540,12444,3521,14852,14505,14024,14412,868,3931,5214,4667,4472,3650,13644,13385,13487,14824,4518,17575,18599,18154,19296,222,64,228,1118,4 -41700,,48091,"Comal County, TX",County or equivalent,108472,108477,109284,112076,115097,118891,123694,807,2792,3021,3794,4803,298,1259,1282,1333,1412,184,988,1022,1023,965,114,271,260,310,447,22,105,130,124,124,655,2295,2600,3272,3961,677,2400,2730,3396,4085,16,121,31,88,271 -41700,,48187,"Guadalupe County, TX",County or equivalent,131533,131537,132552,135837,139714,143191,147250,1015,3285,3877,3477,4059,408,1637,1704,1731,1782,161,864,876,943,944,247,773,828,788,838,27,142,143,148,150,701,2237,2867,2508,2927,728,2379,3010,2656,3077,40,133,39,33,144 -41700,,48259,"Kendall County, TX",County or equivalent,33410,33415,33651,34532,35759,37469,38880,236,881,1227,1710,1411,92,315,344,326,370,89,309,298,331,345,3,6,46,-5,25,14,63,65,62,63,223,740,1117,1706,1193,237,803,1182,1768,1256,-4,72,-1,-53,130 -41700,,48325,"Medina County, TX",County or equivalent,46006,46006,46153,46546,46867,47366,47894,147,393,321,499,528,143,548,486,511,524,67,348,352,408,399,76,200,134,103,125,13,27,27,31,31,56,157,161,358,392,69,184,188,389,423,2,9,-1,7,-20 -41700,,48493,"Wilson County, TX",County or equivalent,42918,42913,43074,43697,44432,45438,46402,161,623,735,1006,964,102,444,510,487,529,114,346,305,344,357,-12,98,205,143,172,1,9,8,10,10,171,503,524,842,743,172,512,532,852,753,1,13,-2,11,39 -41740,,,"San Diego-Carlsbad, CA",Metropolitan Statistical Area,3095313,3095308,3104543,3141768,3183413,3222558,3263431,9235,37225,41645,39145,40873,10949,44696,43840,44330,44860,4678,19685,19887,20791,21128,6271,25011,23953,23539,23732,3130,11968,17028,15456,14637,-114,1089,769,-1027,2549,3016,13057,17797,14429,17186,-52,-843,-105,1177,-45 -41740,,6073,"San Diego County, CA",County or equivalent,3095313,3095308,3104543,3141768,3183413,3222558,3263431,9235,37225,41645,39145,40873,10949,44696,43840,44330,44860,4678,19685,19887,20791,21128,6271,25011,23953,23539,23732,3130,11968,17028,15456,14637,-114,1089,769,-1027,2549,3016,13057,17797,14429,17186,-52,-843,-105,1177,-45 -41860,,,"San Francisco-Oakland-Hayward, CA",Metropolitan Statistical Area,4335391,4335560,4345179,4400182,4462179,4529654,4594060,9619,55003,61997,67475,64406,12738,51980,51039,52707,52901,6738,28486,28297,29878,30528,6000,23494,22742,22829,22373,5490,26170,25916,28482,28616,-1864,6861,13293,16400,14592,3626,33031,39209,44882,43208,-7,-1522,46,-236,-1175 -41860,36084,,"Oakland-Hayward-Berkeley, CA",Metropolitan Division,2559296,2559458,2566519,2599105,2635607,2679206,2722260,7061,32586,36502,43599,43054,7751,31554,30916,31976,32210,3880,16331,16194,17293,17771,3871,15223,14722,14683,14439,2943,14046,13946,15332,15420,177,4378,7850,12893,14135,3120,18424,21796,28225,29555,70,-1061,-16,691,-940 -41860,36084,6001,"Alameda County, CA",County or equivalent,1510271,1510261,1513625,1532518,1556249,1583226,1610921,3364,18893,23731,26977,27695,4758,19221,18973,19852,19989,2145,9070,9214,9781,10027,2613,10151,9759,10071,9962,2167,10118,10133,11105,11155,-1436,-557,3854,5932,7275,731,9561,13987,17037,18430,20,-819,-15,-131,-697 -41860,36084,6013,"Contra Costa County, CA",County or equivalent,1049025,1049197,1052894,1066587,1079358,1095980,1111339,3697,13693,12771,16622,15359,2993,12333,11943,12124,12221,1735,7261,6980,7512,7744,1258,5072,4963,4612,4477,776,3928,3813,4227,4265,1613,4935,3996,6961,6860,2389,8863,7809,11188,11125,50,-242,-1,822,-243 -41860,41884,,"San Francisco-Redwood City-South San Francisco, CA",Metropolitan Division,1523686,1523693,1525776,1545664,1570429,1591627,1611050,2083,19888,24765,21198,19423,4415,18042,17797,18438,18435,2383,10323,10230,10740,10924,2032,7719,7567,7698,7511,2366,11272,11139,12228,12272,-2240,1186,5990,2192,-267,126,12458,17129,14420,12005,-75,-289,69,-920,-93 -41860,41884,6075,"San Francisco County, CA",County or equivalent,805235,805195,805825,816239,829691,841138,852469,630,10414,13452,11447,11331,2145,8901,8786,9182,9168,1272,5758,5564,5891,6026,873,3143,3222,3291,3142,1472,6952,6921,7582,7596,-1670,240,3226,1046,521,-198,7192,10147,8628,8117,-45,79,83,-472,72 -41860,41884,6081,"San Mateo County, CA",County or equivalent,718451,718498,719951,729425,740738,750489,758581,1453,9474,11313,9751,8092,2270,9141,9011,9256,9267,1111,4565,4666,4849,4898,1159,4576,4345,4407,4369,894,4320,4218,4646,4676,-570,946,2764,1146,-788,324,5266,6982,5792,3888,-30,-368,-14,-448,-165 -41860,42034,,"San Rafael, CA",Metropolitan Division,252409,252409,252884,255413,256143,258821,260750,475,2529,730,2678,1929,572,2384,2326,2293,2256,475,1832,1873,1845,1833,97,552,453,448,423,181,852,831,922,924,199,1297,-547,1315,724,380,2149,284,2237,1648,-2,-172,-7,-7,-142 -41860,42034,6041,"Marin County, CA",County or equivalent,252409,252409,252884,255413,256143,258821,260750,475,2529,730,2678,1929,572,2384,2326,2293,2256,475,1832,1873,1845,1833,97,552,453,448,423,181,852,831,922,924,199,1297,-547,1315,724,380,2149,284,2237,1648,-2,-172,-7,-7,-142 -41940,,,"San Jose-Sunnyvale-Santa Clara, CA",Metropolitan Statistical Area,1836911,1836941,1842462,1870279,1897969,1928701,1952872,5521,27817,27690,30732,24171,6151,24781,24132,25300,25083,2207,9426,9600,10151,10543,3944,15355,14532,15149,14540,3395,15913,15764,17368,17454,-1866,-2476,-2299,-1526,-7168,1529,13437,13465,15842,10286,48,-975,-307,-259,-655 -41940,,6069,"San Benito County, CA",County or equivalent,55269,55269,55532,56174,56871,57594,58267,263,642,697,723,673,166,761,715,727,721,35,268,276,307,295,131,493,439,420,426,10,65,51,66,69,117,106,210,215,203,127,171,261,281,272,5,-22,-3,22,-25 -41940,,6085,"Santa Clara County, CA",County or equivalent,1781642,1781672,1786930,1814105,1841098,1871107,1894605,5258,27175,26993,30009,23498,5985,24020,23417,24573,24362,2172,9158,9324,9844,10248,3813,14862,14093,14729,14114,3385,15848,15713,17302,17385,-1983,-2582,-2509,-1741,-7371,1402,13266,13204,15561,10014,43,-953,-304,-281,-630 -42020,,,"San Luis Obispo-Paso Robles-Arroyo Grande, CA",Metropolitan Statistical Area,269637,269593,269860,271165,274528,276284,279083,267,1305,3363,1756,2799,666,2642,2625,2580,2610,515,2250,2263,2204,2199,151,392,362,376,411,36,203,205,239,245,99,784,2765,966,2022,135,987,2970,1205,2267,-19,-74,31,175,121 -42020,,6079,"San Luis Obispo County, CA",County or equivalent,269637,269593,269860,271165,274528,276284,279083,267,1305,3363,1756,2799,666,2642,2625,2580,2610,515,2250,2263,2204,2199,151,392,362,376,411,36,203,205,239,245,99,784,2765,966,2022,135,987,2970,1205,2267,-19,-74,31,175,121 -42100,,,"Santa Cruz-Watsonville, CA",Metropolitan Statistical Area,262382,262362,263213,264923,266632,269444,271804,851,1710,1709,2812,2360,763,3244,3162,3063,3105,437,1707,1687,1744,1804,326,1537,1475,1319,1301,47,395,343,410,427,446,-135,-91,943,678,493,260,252,1353,1105,32,-87,-18,140,-46 -42100,,6087,"Santa Cruz County, CA",County or equivalent,262382,262362,263213,264923,266632,269444,271804,851,1710,1709,2812,2360,763,3244,3162,3063,3105,437,1707,1687,1744,1804,326,1537,1475,1319,1301,47,395,343,410,427,446,-135,-91,943,678,493,260,252,1353,1105,32,-87,-18,140,-46 -42140,,,"Santa Fe, NM",Metropolitan Statistical Area,144170,144171,144503,145447,146385,147306,148164,332,944,938,921,858,392,1475,1373,1332,1356,215,1026,1056,1080,1041,177,449,317,252,315,91,397,362,411,421,65,152,271,130,116,156,549,633,541,537,-1,-54,-12,128,6 -42140,,35049,"Santa Fe County, NM",County or equivalent,144170,144171,144503,145447,146385,147306,148164,332,944,938,921,858,392,1475,1373,1332,1356,215,1026,1056,1080,1041,177,449,317,252,315,91,397,362,411,421,65,152,271,130,116,156,549,633,541,537,-1,-54,-12,128,6 -42200,,,"Santa Maria-Santa Barbara, CA",Metropolitan Statistical Area,423895,423939,424331,425974,430728,436076,440668,392,1643,4754,5348,4592,1473,5748,5639,5650,5636,764,2873,2862,2979,3013,709,2875,2777,2671,2623,256,1257,1283,1386,1420,-602,-2307,699,1101,628,-346,-1050,1982,2487,2048,29,-182,-5,190,-79 -42200,,6083,"Santa Barbara County, CA",County or equivalent,423895,423939,424331,425974,430728,436076,440668,392,1643,4754,5348,4592,1473,5748,5639,5650,5636,764,2873,2862,2979,3013,709,2875,2777,2671,2623,256,1257,1283,1386,1420,-602,-2307,699,1101,628,-346,-1050,1982,2487,2048,29,-182,-5,190,-79 -42220,,,"Santa Rosa, CA",Metropolitan Statistical Area,483878,483880,484666,487722,490838,495432,500292,786,3056,3116,4594,4860,1305,5308,5045,5198,5196,948,3867,3852,4010,4115,357,1441,1193,1188,1081,103,651,589,678,701,341,975,1391,2568,2859,444,1626,1980,3246,3560,-15,-11,-57,160,219 -42220,,6097,"Sonoma County, CA",County or equivalent,483878,483880,484666,487722,490838,495432,500292,786,3056,3116,4594,4860,1305,5308,5045,5198,5196,948,3867,3852,4010,4115,357,1441,1193,1188,1081,103,651,589,678,701,341,975,1391,2568,2859,444,1626,1980,3246,3560,-15,-11,-57,160,219 -42340,,,"Savannah, GA",Metropolitan Statistical Area,347611,347621,348843,355913,362293,366049,372708,1222,7070,6380,3756,6659,1211,4903,5223,5251,5246,587,2816,2684,2891,2924,624,2087,2539,2360,2322,201,731,1162,924,903,387,4240,2616,261,3352,588,4971,3778,1185,4255,10,12,63,211,82 -42340,,13029,"Bryan County, GA",County or equivalent,30233,30238,30401,31238,32246,33133,33906,163,837,1008,887,773,111,429,517,503,546,32,238,219,212,213,79,191,298,291,333,4,15,112,51,47,78,632,591,543,362,82,647,703,594,409,2,-1,7,2,31 -42340,,13051,"Chatham County, GA",County or equivalent,265128,265133,265996,272002,276710,278428,283379,863,6006,4708,1718,4951,965,3814,4007,3995,3958,502,2252,2140,2302,2329,463,1562,1867,1693,1629,193,699,1035,856,839,201,3737,1747,-1007,2450,394,4436,2782,-151,3289,6,8,59,176,33 -42340,,13103,"Effingham County, GA",County or equivalent,52250,52250,52446,52673,53337,54488,55423,196,227,664,1151,935,135,660,699,753,742,53,326,325,377,382,82,334,374,376,360,4,17,15,17,17,108,-129,278,725,540,112,-112,293,742,557,2,5,-3,33,18 -42540,,,"Scranton--Wilkes-Barre--Hazleton, PA",Metropolitan Statistical Area,563631,563630,563655,563913,564134,561838,559679,25,258,221,-2296,-2159,1407,5615,5698,5474,5486,1587,6992,6789,6914,6891,-180,-1377,-1091,-1440,-1405,247,1076,1072,1137,1130,16,748,280,-1897,-1433,263,1824,1352,-760,-303,-58,-189,-40,-96,-451 -42540,,42069,"Lackawanna County, PA",County or equivalent,214437,214436,214471,214582,214510,213834,212719,35,111,-72,-676,-1115,541,2206,2209,2093,2113,597,2665,2702,2631,2573,-56,-459,-493,-538,-460,105,484,485,507,503,12,93,-55,-570,-1000,117,577,430,-63,-497,-26,-7,-9,-75,-158 -42540,,42079,"Luzerne County, PA",County or equivalent,320918,320918,320952,321041,321276,319862,318829,34,89,235,-1414,-1033,789,3108,3195,3100,3097,898,4056,3800,3984,4011,-109,-948,-605,-884,-914,142,581,576,617,614,34,615,295,-1098,-461,176,1196,871,-481,153,-33,-159,-31,-49,-272 -42540,,42131,"Wyoming County, PA",County or equivalent,28276,28276,28232,28290,28348,28142,28131,-44,58,58,-206,-11,77,301,294,281,276,92,271,287,299,307,-15,30,7,-18,-31,0,11,11,13,13,-30,40,40,-229,28,-30,51,51,-216,41,1,-23,0,28,-21 -42660,,,"Seattle-Tacoma-Bellevue, WA",Metropolitan Statistical Area,3439809,3439815,3448234,3498020,3553831,3613621,3671478,8419,49786,55811,59790,57857,10992,44302,44831,46171,46315,5167,22646,22384,23578,24262,5825,21656,22447,22593,22053,3539,16357,18404,19053,18925,-911,12020,14795,17436,17400,2628,28377,33199,36489,36325,-34,-247,165,708,-521 -42660,42644,,"Seattle-Bellevue-Everett, WA",Metropolitan Division,2644584,2644586,2652786,2694534,2741468,2793402,2839550,8200,41748,46934,51934,46148,8286,33453,33387,34965,35024,3814,16869,16660,17508,17880,4472,16584,16727,17457,17144,3058,14794,15370,16654,16660,776,10473,14586,17511,13064,3834,25267,29956,34165,29724,-106,-103,251,312,-720 -42660,42644,53033,"King County, WA",County or equivalent,1931249,1931256,1937424,1972113,2008526,2046956,2079967,6168,34689,36413,38430,33011,6065,24505,24481,25447,25547,2835,12155,11958,12609,12750,3230,12350,12523,12838,12797,2594,12509,12736,13965,13994,414,10043,10926,11553,7040,3008,22552,23662,25518,21034,-70,-213,228,74,-820 -42660,42644,53061,"Snohomish County, WA",County or equivalent,713335,713330,715362,722421,732942,746446,759583,2032,7059,10521,13504,13137,2221,8948,8906,9518,9477,979,4714,4702,4899,5130,1242,4234,4204,4619,4347,464,2285,2634,2689,2666,362,430,3660,5958,6024,826,2715,6294,8647,8690,-36,110,23,238,100 -42660,45104,,"Tacoma-Lakewood, WA",Metropolitan Division,795225,795229,795448,803486,812363,820219,831928,219,8038,8877,7856,11709,2706,10849,11444,11206,11291,1353,5777,5724,6070,6382,1353,5072,5720,5136,4909,481,1563,3034,2399,2265,-1687,1547,209,-75,4336,-1206,3110,3243,2324,6601,72,-144,-86,396,199 -42660,45104,53053,"Pierce County, WA",County or equivalent,795225,795229,795448,803486,812363,820219,831928,219,8038,8877,7856,11709,2706,10849,11444,11206,11291,1353,5777,5724,6070,6382,1353,5072,5720,5136,4909,481,1563,3034,2399,2265,-1687,1547,209,-75,4336,-1206,3110,3243,2324,6601,72,-144,-86,396,199 -42680,,,"Sebastian-Vero Beach, FL",Metropolitan Statistical Area,138028,138028,138235,138973,140608,142021,144755,207,738,1635,1413,2734,319,1320,1246,1221,1256,408,1740,1714,1851,1887,-89,-420,-468,-630,-631,45,229,219,253,256,250,805,1915,1839,2501,295,1034,2134,2092,2757,1,124,-31,-49,608 -42680,,12061,"Indian River County, FL",County or equivalent,138028,138028,138235,138973,140608,142021,144755,207,738,1635,1413,2734,319,1320,1246,1221,1256,408,1740,1714,1851,1887,-89,-420,-468,-630,-631,45,229,219,253,256,250,805,1915,1839,2501,295,1034,2134,2092,2757,1,124,-31,-49,608 -42700,,,"Sebring, FL",Metropolitan Statistical Area,98786,98786,98703,98360,98087,97919,98236,-83,-343,-273,-168,317,257,915,901,894,881,414,1393,1445,1474,1442,-157,-478,-544,-580,-561,32,221,214,216,223,51,-15,60,111,596,83,206,274,327,819,-9,-71,-3,85,59 -42700,,12055,"Highlands County, FL",County or equivalent,98786,98786,98703,98360,98087,97919,98236,-83,-343,-273,-168,317,257,915,901,894,881,414,1393,1445,1474,1442,-157,-478,-544,-580,-561,32,221,214,216,223,51,-15,60,111,596,83,206,274,327,819,-9,-71,-3,85,59 -43100,,,"Sheboygan, WI",Metropolitan Statistical Area,115507,115507,115418,115312,114952,114868,115290,-89,-106,-360,-84,422,312,1325,1250,1279,1260,226,1022,1061,1104,1048,86,303,189,175,212,25,92,84,96,100,-195,-560,-645,-380,127,-170,-468,-561,-284,227,-5,59,12,25,-17 -43100,,55117,"Sheboygan County, WI",County or equivalent,115507,115507,115418,115312,114952,114868,115290,-89,-106,-360,-84,422,312,1325,1250,1279,1260,226,1022,1061,1104,1048,86,303,189,175,212,25,92,84,96,100,-195,-560,-645,-380,127,-170,-468,-561,-284,227,-5,59,12,25,-17 -43300,,,"Sherman-Denison, TX",Metropolitan Statistical Area,120877,120877,121086,121283,121631,122343,123534,209,197,348,712,1191,372,1554,1436,1513,1497,292,1355,1347,1321,1290,80,199,89,192,207,28,135,125,140,145,103,-54,140,298,841,131,81,265,438,986,-2,-83,-6,82,-2 -43300,,48181,"Grayson County, TX",County or equivalent,120877,120877,121086,121283,121631,122343,123534,209,197,348,712,1191,372,1554,1436,1513,1497,292,1355,1347,1321,1290,80,199,89,192,207,28,135,125,140,145,103,-54,140,298,841,131,81,265,438,986,-2,-83,-6,82,-2 -43340,,,"Shreveport-Bossier City, LA",Metropolitan Statistical Area,439811,439811,441161,445021,448379,446825,445142,1350,3860,3358,-1554,-1683,1549,6482,6632,6503,6426,1006,4347,4319,4538,4450,543,2135,2313,1965,1976,142,316,673,491,477,645,1551,317,-3888,-4108,787,1867,990,-3397,-3631,20,-142,55,-122,-28 -43340,,22015,"Bossier Parish, LA",County or equivalent,116979,116979,117601,120003,123073,123848,125064,622,2402,3070,775,1216,411,1753,1852,1861,1854,168,941,933,951,983,243,812,919,910,871,69,116,368,228,220,293,1455,1728,-320,111,362,1571,2096,-92,331,17,19,55,-43,14 -43340,,22017,"Caddo Parish, LA",County or equivalent,254969,254969,255609,256942,257328,255164,252603,640,1333,386,-2164,-2561,903,3872,3863,3771,3696,595,2644,2633,2789,2669,308,1228,1230,982,1027,68,186,290,246,239,257,42,-1124,-3348,-3814,325,228,-834,-3102,-3575,7,-123,-10,-44,-13 -43340,,22031,"De Soto Parish, LA",County or equivalent,26656,26656,26733,26820,27035,27112,27142,77,87,215,77,30,107,337,396,386,388,101,271,297,276,277,6,66,99,110,111,2,6,6,8,9,69,26,111,-13,-71,71,32,117,-5,-62,0,-11,-1,-28,-19 -43340,,22119,"Webster Parish, LA",County or equivalent,41207,41207,41218,41256,40943,40701,40333,11,38,-313,-242,-368,128,520,521,485,488,142,491,456,522,521,-14,29,65,-37,-33,3,8,9,9,9,26,28,-398,-207,-334,29,36,-389,-198,-325,-4,-27,11,-7,-10 -43420,,,"Sierra Vista-Douglas, AZ",Metropolitan Statistical Area,131346,131357,131868,133058,131919,129744,127448,511,1190,-1139,-2175,-2296,455,1773,1690,1654,1622,265,1216,1215,1253,1205,190,557,475,401,417,116,240,488,324,295,199,444,-2121,-2953,-2987,315,684,-1633,-2629,-2692,6,-51,19,53,-21 -43420,,4003,"Cochise County, AZ",County or equivalent,131346,131357,131868,133058,131919,129744,127448,511,1190,-1139,-2175,-2296,455,1773,1690,1654,1622,265,1216,1215,1253,1205,190,557,475,401,417,116,240,488,324,295,199,444,-2121,-2953,-2987,315,684,-1633,-2629,-2692,6,-51,19,53,-21 -43580,,,"Sioux City, IA-NE-SD",Metropolitan Statistical Area,168563,168563,168793,168940,168796,168785,168806,230,147,-144,-11,21,627,2410,2462,2403,2388,406,1520,1513,1388,1383,221,890,949,1015,1005,56,275,268,288,294,-44,-974,-1383,-1248,-1206,12,-699,-1115,-960,-912,-3,-44,22,-66,-72 -43580,,19149,"Plymouth County, IA",County or equivalent,24986,24981,24977,24839,24881,24924,24874,-4,-138,42,43,-50,63,295,276,279,285,57,236,252,226,234,6,59,24,53,51,2,4,4,7,7,-9,-202,13,5,-92,-7,-198,17,12,-85,-3,1,1,-22,-16 -43580,,19193,"Woodbury County, IA",County or equivalent,102172,102177,102337,102642,102330,102278,102271,160,305,-312,-52,-7,406,1501,1566,1533,1481,238,910,948,872,887,168,591,618,661,594,35,199,197,205,209,-36,-439,-1140,-872,-759,-1,-240,-943,-667,-550,-7,-46,13,-46,-51 -43580,,31043,"Dakota County, NE",County or equivalent,21006,21006,21029,20851,20837,20944,20850,23,-178,-14,107,-94,101,356,384,362,388,63,172,136,135,123,38,184,248,227,265,18,66,61,69,71,-37,-428,-330,-200,-427,-19,-362,-269,-131,-356,4,0,7,11,-3 -43580,,31051,"Dixon County, NE",County or equivalent,6000,6000,5970,6007,5907,5835,5782,-30,37,-100,-72,-53,14,79,65,70,67,6,81,69,53,49,8,-2,-4,17,18,0,4,4,4,4,-37,25,-102,-77,-71,-37,29,-98,-73,-67,-1,10,2,-16,-4 -43580,,46127,"Union County, SD",County or equivalent,14399,14399,14480,14601,14841,14804,15029,81,121,240,-37,225,43,179,171,159,167,42,121,108,102,90,1,58,63,57,77,1,2,2,3,3,75,70,176,-104,143,76,72,178,-101,146,4,-9,-1,7,2 -43620,,,"Sioux Falls, SD",Metropolitan Statistical Area,228261,228264,229099,232650,237748,243622,248351,835,3551,5098,5874,4729,915,3683,3780,3793,3870,466,1692,1679,1574,1634,449,1991,2101,2219,2236,141,688,719,754,752,254,816,2254,2789,1646,395,1504,2973,3543,2398,-9,56,24,112,95 -43620,,46083,"Lincoln County, SD",County or equivalent,44828,44828,45150,46744,48302,49886,51548,322,1594,1558,1584,1662,198,753,837,800,812,54,215,212,174,187,144,538,625,626,625,4,10,10,11,11,161,1002,909,959,959,165,1012,919,970,970,13,44,14,-12,67 -43620,,46087,"McCook County, SD",County or equivalent,5618,5618,5608,5568,5603,5647,5649,-10,-40,35,44,2,17,83,62,72,74,32,67,85,69,69,-15,16,-23,3,5,3,10,10,10,10,3,-77,48,29,-25,6,-67,58,39,-15,-1,11,0,2,12 -43620,,46099,"Minnehaha County, SD",County or equivalent,169468,169471,169992,171963,175511,179724,182882,521,1971,3548,4213,3158,670,2756,2791,2835,2898,352,1308,1282,1244,1290,318,1448,1509,1591,1608,134,667,698,732,730,89,-138,1335,1755,805,223,529,2033,2487,1535,-20,-6,6,135,15 -43620,,46125,"Turner County, SD",County or equivalent,8347,8347,8349,8375,8332,8365,8272,2,26,-43,33,-93,30,91,90,86,86,28,102,100,87,88,2,-11,-10,-1,-2,0,1,1,1,1,1,29,-38,46,-93,1,30,-37,47,-92,-1,7,4,-13,1 -43780,,,"South Bend-Mishawaka, IN-MI",Metropolitan Statistical Area,319224,319215,318981,319222,318625,318532,319226,-234,241,-597,-93,694,982,4012,3973,3846,3969,707,3016,3022,2844,2930,275,996,951,1002,1039,106,471,482,531,532,-611,-1276,-2061,-1410,-729,-505,-805,-1579,-879,-197,-4,50,31,-216,-148 -43780,,18141,"St. Joseph County, IN",County or equivalent,266931,266929,266784,266756,266571,266850,267618,-145,-28,-185,279,768,866,3542,3505,3472,3495,603,2538,2523,2357,2420,263,1004,982,1115,1075,103,458,465,512,513,-519,-1398,-1660,-1175,-714,-416,-940,-1195,-663,-201,8,-92,28,-173,-106 -43780,,26027,"Cass County, MI",County or equivalent,52293,52286,52197,52466,52054,51682,51608,-89,269,-412,-372,-74,116,470,468,374,474,104,478,499,487,510,12,-8,-31,-113,-36,3,13,17,19,19,-92,122,-401,-235,-15,-89,135,-384,-216,4,-12,142,3,-43,-42 -43900,,,"Spartanburg, SC",Metropolitan Statistical Area,313268,313268,313676,314747,316643,318800,321418,408,1071,1896,2157,2618,976,3989,3873,3804,3883,650,3106,3142,3278,3209,326,883,731,526,674,61,185,176,207,213,32,107,1009,1322,1756,93,292,1185,1529,1969,-11,-104,-20,102,-25 -43900,,45083,"Spartanburg County, SC",County or equivalent,284307,284305,284767,286092,288421,290818,293542,462,1325,2329,2397,2724,894,3681,3575,3500,3584,592,2741,2757,2887,2840,302,940,818,613,744,61,186,177,208,214,106,295,1357,1475,1777,167,481,1534,1683,1991,-7,-96,-23,101,-11 -43900,,45087,"Union County, SC",County or equivalent,28961,28963,28909,28655,28222,27982,27876,-54,-254,-433,-240,-106,82,308,298,304,299,58,365,385,391,369,24,-57,-87,-87,-70,0,-1,-1,-1,-1,-74,-188,-348,-153,-21,-74,-189,-349,-154,-22,-4,-8,3,1,-14 -44060,,,"Spokane-Spokane Valley, WA",Metropolitan Statistical Area,527753,527753,528493,529837,532312,535684,540953,740,1344,2475,3372,5269,1551,6427,6382,6685,6615,1093,4681,4555,4821,4861,458,1746,1827,1864,1754,180,622,827,810,787,138,-984,-131,642,2585,318,-362,696,1452,3372,-36,-40,-48,56,143 -44060,,53051,"Pend Oreille County, WA",County or equivalent,13001,13001,12971,12946,12998,12924,12985,-30,-25,52,-74,61,34,114,101,124,120,54,146,129,144,141,-20,-32,-28,-20,-21,0,1,1,1,1,-7,16,79,-44,80,-7,17,80,-43,81,-3,-10,0,-11,1 -44060,,53063,"Spokane County, WA",County or equivalent,471221,471221,472019,473381,475704,479327,484318,798,1362,2323,3623,4991,1398,5885,5826,6130,6062,906,4132,3995,4276,4295,492,1753,1831,1854,1767,167,583,785,759,736,170,-959,-244,932,2306,337,-376,541,1691,3042,-31,-15,-49,78,182 -44060,,53065,"Stevens County, WA",County or equivalent,43531,43531,43503,43510,43610,43433,43650,-28,7,100,-177,217,119,428,455,431,433,133,403,431,401,425,-14,25,24,30,8,13,38,41,50,50,-25,-41,34,-246,199,-12,-3,75,-196,249,-2,-15,1,-11,-40 -44100,,,"Springfield, IL",Metropolitan Statistical Area,210170,210170,210526,211634,211956,211645,211567,356,1108,322,-311,-78,691,2544,2465,2458,2420,540,1914,1976,2095,2157,151,630,489,363,263,35,167,195,180,179,168,422,-346,-958,-490,203,589,-151,-778,-311,2,-111,-16,104,-30 -44100,,17129,"Menard County, IL",County or equivalent,12705,12705,12693,12709,12709,12608,12570,-12,16,0,-101,-38,26,134,114,124,125,42,116,118,141,131,-16,18,-4,-17,-6,0,0,0,0,0,4,0,3,-91,-24,4,0,3,-91,-24,0,-2,1,7,-8 -44100,,17167,"Sangamon County, IL",County or equivalent,197465,197465,197833,198925,199247,199037,198997,368,1092,322,-210,-40,665,2410,2351,2334,2295,498,1798,1858,1954,2026,167,612,493,380,269,35,167,195,180,179,164,422,-349,-867,-466,199,589,-154,-687,-287,2,-109,-17,97,-22 -44140,,,"Springfield, MA",Metropolitan Statistical Area,621570,621705,623426,626075,626890,628384,629100,1721,2649,815,1494,716,1626,6660,6546,6492,6554,1338,5436,5355,5593,5510,288,1224,1191,899,1044,600,3351,3441,3423,3416,783,-1673,-3836,-2510,-3546,1383,1678,-395,913,-130,50,-253,19,-318,-198 -44140,,25013,"Hampden County, MA",County or equivalent,463490,463625,464160,465963,466539,467414,468161,535,1803,576,875,747,1340,5536,5424,5395,5443,1066,4234,4205,4366,4293,274,1302,1219,1029,1150,450,2692,2761,2696,2690,-153,-1966,-3431,-2559,-2910,297,726,-670,137,-220,-36,-225,27,-291,-183 -44140,,25015,"Hampshire County, MA",County or equivalent,158080,158080,159266,160112,160351,160970,160939,1186,846,239,619,-31,286,1124,1122,1097,1111,272,1202,1150,1227,1217,14,-78,-28,-130,-106,150,659,680,727,726,936,293,-405,49,-636,1086,952,275,776,90,86,-28,-8,-27,-15 -44180,,,"Springfield, MO",Metropolitan Statistical Area,436712,436712,437444,440365,444681,448852,452297,732,2921,4316,4171,3445,1426,5687,5537,5655,5642,992,3871,3868,3913,3996,434,1816,1669,1742,1646,64,280,305,338,340,240,776,2344,2024,1405,304,1056,2649,2362,1745,-6,49,-2,67,54 -44180,,29043,"Christian County, MO",County or equivalent,77422,77422,77887,78709,79781,80803,82101,465,822,1072,1022,1298,288,1069,950,978,978,109,519,537,570,563,179,550,413,408,415,3,15,14,18,18,268,196,653,561,847,271,211,667,579,865,15,61,-8,35,18 -44180,,29059,"Dallas County, MO",County or equivalent,16777,16777,16731,16762,16775,16504,16389,-46,31,13,-271,-115,42,190,210,195,191,60,182,141,173,192,-18,8,69,22,-1,0,-1,-1,-1,-1,-29,-4,-60,-281,-102,-29,-5,-61,-282,-103,1,28,5,-11,-11 -44180,,29077,"Greene County, MO",County or equivalent,275174,275174,275377,277386,280686,283970,285865,203,2009,3300,3284,1895,874,3568,3465,3598,3581,662,2544,2540,2549,2562,212,1024,925,1049,1019,55,242,268,295,297,-46,787,2111,1779,539,9,1029,2379,2074,836,-18,-44,-4,161,40 -44180,,29167,"Polk County, MO",County or equivalent,31137,31137,31171,31206,31105,31073,31054,34,35,-101,-32,-19,86,392,389,365,364,60,348,362,317,364,26,44,27,48,0,6,22,22,24,24,2,-21,-151,-26,-51,8,1,-129,-2,-27,0,-10,1,-78,8 -44180,,29225,"Webster County, MO",County or equivalent,36202,36202,36278,36302,36334,36502,36888,76,24,32,168,386,136,468,523,519,528,101,278,288,304,315,35,190,235,215,213,0,2,2,2,2,45,-182,-209,-9,172,45,-180,-207,-7,174,-4,14,4,-40,-1 -44220,,,"Springfield, OH",Metropolitan Statistical Area,138333,138333,138227,137738,137194,136803,136554,-106,-489,-544,-391,-249,419,1625,1597,1588,1567,376,1596,1697,1674,1631,43,29,-100,-86,-64,12,59,71,64,64,-156,-544,-526,-389,-198,-144,-485,-455,-325,-134,-5,-33,11,20,-51 -44220,,39023,"Clark County, OH",County or equivalent,138333,138333,138227,137738,137194,136803,136554,-106,-489,-544,-391,-249,419,1625,1597,1588,1567,376,1596,1697,1674,1631,43,29,-100,-86,-64,12,59,71,64,64,-156,-544,-526,-389,-198,-144,-485,-455,-325,-134,-5,-33,11,20,-51 -44300,,,"State College, PA",Metropolitan Statistical Area,153990,153981,154182,154847,155582,157847,158742,201,665,735,2265,895,323,1236,1313,1308,1325,216,940,925,967,979,107,296,388,341,346,171,792,811,881,878,-76,-352,-475,970,-271,95,440,336,1851,607,-1,-71,11,73,-58 -44300,,42027,"Centre County, PA",County or equivalent,153990,153981,154182,154847,155582,157847,158742,201,665,735,2265,895,323,1236,1313,1308,1325,216,940,925,967,979,107,296,388,341,346,171,792,811,881,878,-76,-352,-475,970,-271,95,440,336,1851,607,-1,-71,11,73,-58 -44420,,,"Staunton-Waynesboro, VA",Metropolitan Statistical Area,118502,118502,118378,118904,118629,119403,119766,-124,526,-275,774,363,326,1226,1261,1226,1241,353,1171,1263,1287,1222,-27,55,-2,-61,19,12,46,49,52,53,-72,213,-315,712,282,-60,259,-266,764,335,-37,212,-7,71,9 -44420,,51015,"Augusta County, VA",County or equivalent,73750,73736,73485,73752,73603,73835,73862,-251,267,-149,232,27,161,559,605,609,612,161,616,648,720,705,0,-57,-43,-111,-93,6,11,11,14,15,-243,163,-117,263,113,-237,174,-106,277,128,-14,150,0,66,-8 -44420,,51790,"Staunton city, VA",County or equivalent,23746,23746,23825,24058,23921,24318,24538,79,233,-137,397,220,69,331,314,301,318,106,313,367,333,305,-37,18,-53,-32,13,6,24,27,27,27,130,176,-106,410,157,136,200,-79,437,184,-20,15,-5,-8,23 -44420,,51820,"Waynesboro city, VA",County or equivalent,21006,21020,21068,21094,21105,21250,21366,48,26,11,145,116,96,336,342,316,311,86,242,248,234,212,10,94,94,82,99,0,11,11,11,11,41,-126,-92,39,12,41,-115,-81,50,23,-3,47,-2,13,-6 -44700,,,"Stockton-Lodi, CA",Metropolitan Statistical Area,685306,685308,687513,695479,701635,705027,715597,2205,7966,6156,3392,10570,2635,10549,10084,10166,10078,1091,4754,4974,5019,5074,1544,5795,5110,5147,5004,309,1661,1521,1719,1771,380,545,-447,-3923,3789,689,2206,1074,-2204,5560,-28,-35,-28,449,6 -44700,,6077,"San Joaquin County, CA",County or equivalent,685306,685308,687513,695479,701635,705027,715597,2205,7966,6156,3392,10570,2635,10549,10084,10166,10078,1091,4754,4974,5019,5074,1544,5795,5110,5147,5004,309,1661,1521,1719,1771,380,545,-447,-3923,3789,689,2206,1074,-2204,5560,-28,-35,-28,449,6 -44940,,,"Sumter, SC",Metropolitan Statistical Area,107456,107463,107581,107350,108060,108002,107919,118,-231,710,-58,-83,375,1513,1568,1515,1529,192,1054,980,1001,1006,183,459,588,514,523,59,92,236,153,137,-120,-774,-103,-765,-701,-61,-682,133,-612,-564,-4,-8,-11,40,-42 -44940,,45085,"Sumter County, SC",County or equivalent,107456,107463,107581,107350,108060,108002,107919,118,-231,710,-58,-83,375,1513,1568,1515,1529,192,1054,980,1001,1006,183,459,588,514,523,59,92,236,153,137,-120,-774,-103,-765,-701,-61,-682,133,-612,-564,-4,-8,-11,40,-42 -45060,,,"Syracuse, NY",Metropolitan Statistical Area,662577,662578,662976,662609,661256,662861,661478,398,-367,-1353,1605,-1383,1863,7319,7487,7392,7394,1265,5850,5731,5715,5693,598,1469,1756,1677,1701,355,1588,1668,1777,1773,-509,-3212,-4832,-1909,-4565,-154,-1624,-3164,-132,-2792,-46,-212,55,60,-292 -45060,,36053,"Madison County, NY",County or equivalent,73442,73440,73400,72946,72420,72521,72369,-40,-454,-526,101,-152,158,660,717,710,717,187,605,602,594,573,-29,55,115,116,144,6,31,32,39,39,-10,-544,-679,-60,-308,-4,-513,-647,-21,-269,-7,4,6,6,-27 -45060,,36067,"Onondaga County, NY",County or equivalent,467026,467031,467422,467586,467182,468843,468196,391,164,-404,1661,-647,1373,5319,5437,5345,5364,859,4174,4130,4079,4083,514,1145,1307,1266,1281,334,1484,1555,1658,1654,-424,-2288,-3293,-1322,-3374,-90,-804,-1738,336,-1720,-33,-177,27,59,-208 -45060,,36075,"Oswego County, NY",County or equivalent,122109,122107,122154,122077,121654,121497,120913,47,-77,-423,-157,-584,332,1340,1333,1337,1313,219,1071,999,1042,1037,113,269,334,295,276,15,73,81,80,80,-75,-380,-860,-527,-883,-60,-307,-779,-447,-803,-6,-39,22,-5,-57 -45220,,,"Tallahassee, FL",Metropolitan Statistical Area,367413,368770,369475,371156,375523,373583,375751,705,1681,4367,-1940,2168,1103,4113,4005,4031,3908,510,2502,2518,2726,2615,593,1611,1487,1305,1293,178,767,768,835,835,-58,-619,1984,-4273,99,120,148,2752,-3438,934,-8,-78,128,193,-59 -45220,,12039,"Gadsden County, FL",County or equivalent,46389,47746,47814,47387,46653,46191,46281,68,-427,-734,-462,90,206,593,581,537,523,69,446,446,501,491,137,147,135,36,32,21,105,91,101,102,-88,-692,-984,-584,-33,-67,-587,-893,-483,69,-2,13,24,-15,-11 -45220,,12065,"Jefferson County, FL",County or equivalent,14761,14761,14745,14496,14193,14192,14050,-16,-249,-303,-1,-142,31,128,125,142,133,15,174,151,129,140,16,-46,-26,13,-7,0,0,0,1,1,-30,-206,-281,-11,-135,-30,-206,-281,-10,-134,-2,3,4,-4,-1 -45220,,12073,"Leon County, FL",County or equivalent,275487,275480,276063,278320,283854,282184,283988,583,2257,5534,-1670,1804,781,3056,2988,3040,2936,350,1658,1666,1877,1762,431,1398,1322,1163,1174,155,649,663,717,716,3,295,3455,-3739,-50,158,944,4118,-3022,666,-6,-85,94,189,-36 -45220,,12129,"Wakulla County, FL",County or equivalent,30776,30783,30853,30953,30823,31016,31432,70,100,-130,193,416,85,336,311,312,316,76,224,255,219,222,9,112,56,93,94,2,13,14,16,16,57,-16,-206,61,317,59,-3,-192,77,333,2,-9,6,23,-11 -45300,,,"Tampa-St. Petersburg-Clearwater, FL",Metropolitan Statistical Area,2783243,2783514,2789334,2829104,2848003,2874154,2915582,5820,39770,18899,26151,41428,7837,31331,30869,31130,31260,6689,28533,28177,30042,30593,1148,2798,2692,1088,667,2112,10512,10645,11045,11025,2533,26828,5472,11934,28372,4645,37340,16117,22979,39397,27,-368,90,2084,1364 -45300,,12053,"Hernando County, FL",County or equivalent,172778,172777,172947,172853,173102,174205,175855,170,-94,249,1103,1650,345,1519,1438,1462,1435,638,2482,2468,2545,2561,-293,-963,-1030,-1083,-1126,46,202,212,218,216,408,738,1060,1700,2380,454,940,1272,1918,2596,9,-71,7,268,180 -45300,,12057,"Hillsborough County, FL",County or equivalent,1229226,1229224,1234145,1271720,1282032,1294145,1316298,4921,37575,10312,12113,22153,4104,16540,16446,16420,16500,2137,9101,9251,10121,10392,1967,7439,7195,6299,6108,1533,7146,7199,7387,7373,1374,22422,-4210,-1866,8500,2907,29568,2989,5521,15873,47,568,128,293,172 -45300,,12101,"Pasco County, FL",County or equivalent,464697,464701,465541,466552,470604,475695,485331,840,1011,4052,5091,9636,1193,4773,4697,4761,4757,1230,5547,5429,5719,5680,-37,-774,-732,-958,-923,153,870,849,896,897,698,1060,3973,4613,8950,851,1930,4822,5509,9847,26,-145,-38,540,712 -45300,,12103,"Pinellas County, FL",County or equivalent,916542,916812,916701,917979,922265,930109,938098,-111,1278,4286,7844,7989,2195,8499,8288,8487,8568,2684,11403,11029,11657,11960,-489,-2904,-2741,-3170,-3392,380,2294,2385,2544,2539,53,2608,4649,7487,8542,433,4902,7034,10031,11081,-55,-720,-7,983,300 -45460,,,"Terre Haute, IN",Metropolitan Statistical Area,172425,172422,172314,172581,172626,172201,171480,-108,267,45,-425,-721,504,2058,1978,1961,1959,561,1907,1822,1769,1799,-57,151,156,192,160,44,180,190,202,204,-91,-19,-289,-863,-1099,-47,161,-99,-661,-895,-4,-45,-12,44,14 -45460,,18021,"Clay County, IN",County or equivalent,26890,26887,26870,26902,26855,26797,26562,-17,32,-47,-58,-235,86,325,319,307,314,79,293,292,263,280,7,32,27,44,34,2,7,8,8,8,-25,-16,-83,-126,-278,-23,-9,-75,-118,-270,-1,9,1,16,1 -45460,,18153,"Sullivan County, IN",County or equivalent,21475,21475,21419,21246,21227,21193,21050,-56,-173,-19,-34,-143,62,227,243,222,228,94,239,231,206,200,-32,-12,12,16,28,0,2,3,4,4,-25,-155,-31,-57,-187,-25,-153,-28,-53,-183,1,-8,-3,3,12 -45460,,18165,"Vermillion County, IN",County or equivalent,16212,16212,16145,16112,15955,15855,15693,-67,-33,-157,-100,-162,39,181,153,150,156,67,237,216,174,195,-28,-56,-63,-24,-39,0,0,0,0,0,-40,25,-94,-66,-124,-40,25,-94,-66,-124,1,-2,0,-10,1 -45460,,18167,"Vigo County, IN",County or equivalent,107848,107848,107880,108321,108589,108356,108175,32,441,268,-233,-181,317,1325,1263,1282,1261,321,1138,1083,1126,1124,-4,187,180,156,137,42,171,179,190,192,-1,127,-81,-614,-510,41,298,98,-424,-318,-5,-44,-10,35,0 -45500,,,"Texarkana, TX-AR",Metropolitan Statistical Area,149198,149195,149315,149561,149610,149563,149235,120,246,49,-47,-328,471,1977,1961,1957,1970,415,1594,1515,1618,1559,56,383,446,339,411,13,41,36,45,47,55,-99,-427,-396,-749,68,-58,-391,-351,-702,-4,-79,-6,-35,-37 -45500,,5081,"Little River County, AR",County or equivalent,13171,13168,13133,12950,12905,12741,12532,-35,-183,-45,-164,-209,38,125,135,142,146,58,171,155,114,149,-20,-46,-20,28,-3,0,-1,-1,-1,-1,-16,-132,-19,-188,-208,-16,-133,-20,-189,-209,1,-4,-5,-3,3 -45500,,5091,"Miller County, AR",County or equivalent,43462,43462,43526,43732,43617,43380,43428,64,206,-115,-237,48,149,638,602,602,579,76,447,437,495,442,73,191,165,107,137,2,-2,-3,-2,-2,-6,45,-274,-317,-76,-4,43,-277,-319,-78,-5,-28,-3,-25,-11 -45500,,48037,"Bowie County, TX",County or equivalent,92565,92565,92656,92879,93088,93442,93275,91,223,209,354,-167,284,1214,1224,1213,1245,281,976,923,1009,968,3,238,301,204,277,11,44,40,48,50,77,-12,-134,109,-465,88,32,-94,157,-415,0,-47,2,-7,-29 -45540,,,"The Villages, FL",Metropolitan Statistical Area,93420,93420,94287,98598,102823,108483,114350,867,4311,4225,5660,5867,110,441,437,472,479,282,1209,1301,1344,1439,-172,-768,-864,-872,-960,2,60,69,72,73,1090,3769,5172,7929,5058,1092,3829,5241,8001,5131,-53,1250,-152,-1469,1696 -45540,,12119,"Sumter County, FL",County or equivalent,93420,93420,94287,98598,102823,108483,114350,867,4311,4225,5660,5867,110,441,437,472,479,282,1209,1301,1344,1439,-172,-768,-864,-872,-960,2,60,69,72,73,1090,3769,5172,7929,5058,1092,3829,5241,8001,5131,-53,1250,-152,-1469,1696 -45780,,,"Toledo, OH",Metropolitan Statistical Area,610001,610001,610201,609596,608551,608430,607456,200,-605,-1045,-121,-974,1981,7397,7499,7578,7569,1363,5625,5656,5795,5787,618,1772,1843,1783,1782,160,662,699,728,722,-635,-3071,-3670,-2644,-3317,-475,-2409,-2971,-1916,-2595,57,32,83,12,-161 -45780,,39051,"Fulton County, OH",County or equivalent,42698,42698,42660,42529,42516,42418,42580,-38,-131,-13,-98,162,157,493,455,474,457,114,403,374,385,411,43,90,81,89,46,5,18,17,18,19,-87,-300,-114,-230,74,-82,-282,-97,-212,93,1,61,3,25,23 -45780,,39095,"Lucas County, OH",County or equivalent,441815,441815,441599,439771,437376,436803,435286,-216,-1828,-2395,-573,-1517,1502,5605,5668,5750,5742,1041,4205,4304,4420,4365,461,1400,1364,1330,1377,116,469,491,514,507,-828,-3590,-4325,-2355,-3195,-712,-3121,-3834,-1841,-2688,35,-107,75,-62,-206 -45780,,39173,"Wood County, OH",County or equivalent,125488,125488,125942,127296,128659,129209,129590,454,1354,1363,550,381,322,1299,1376,1354,1370,208,1017,978,990,1011,114,282,398,364,359,39,175,191,196,196,280,819,769,-59,-196,319,994,960,137,0,21,78,5,49,22 -45820,,,"Topeka, KS",Metropolitan Statistical Area,233870,233868,234209,234671,234444,233894,233758,341,462,-227,-550,-136,751,3115,2989,3071,3005,477,2224,2300,2291,2231,274,891,689,780,774,31,130,162,165,166,60,-478,-1093,-1498,-1045,91,-348,-931,-1333,-879,-24,-81,15,3,-31 -45820,,20085,"Jackson County, KS",County or equivalent,13462,13462,13490,13468,13448,13373,13539,28,-22,-20,-75,166,56,159,169,173,175,48,116,126,150,132,8,43,43,23,43,1,3,4,6,6,21,-78,-71,-114,126,22,-75,-67,-108,132,-2,10,4,10,-9 -45820,,20087,"Jefferson County, KS",County or equivalent,19126,19124,19121,18960,18901,18824,18855,-3,-161,-59,-77,31,43,191,178,197,198,49,187,188,157,132,-6,4,-10,40,66,0,1,1,1,1,7,-164,-51,-86,-49,7,-163,-50,-85,-48,-4,-2,1,-32,13 -45820,,20139,"Osage County, KS",County or equivalent,16295,16295,16294,16340,16173,16082,15936,-1,46,-167,-91,-146,50,182,156,163,155,55,166,171,192,202,-5,16,-15,-29,-47,0,0,0,0,0,5,37,-153,-58,-108,5,37,-153,-58,-108,-1,-7,1,-4,9 -45820,,20177,"Shawnee County, KS",County or equivalent,177934,177934,178257,178861,178904,178574,178406,323,604,43,-330,-168,578,2493,2405,2425,2366,320,1672,1741,1747,1721,258,821,664,678,645,29,125,156,156,157,49,-257,-787,-1218,-930,78,-132,-631,-1062,-773,-13,-85,10,54,-40 -45820,,20197,"Wabaunsee County, KS",County or equivalent,7053,7053,7047,7042,7018,7041,7022,-6,-5,-24,23,-19,24,90,81,113,111,5,83,74,45,44,19,7,7,68,67,1,1,1,2,2,-22,-16,-31,-22,-84,-21,-15,-30,-20,-82,-4,3,-1,-25,-4 -45940,,,"Trenton, NJ",Metropolitan Statistical Area,366513,367508,368043,367941,369057,371052,371537,535,-102,1116,1995,485,1142,4388,4239,4380,4278,721,2939,2798,2732,2862,421,1449,1441,1648,1416,567,2405,2353,2555,2557,-464,-4033,-2679,-2067,-3413,103,-1628,-326,488,-856,11,77,1,-141,-75 -45940,,34021,"Mercer County, NJ",County or equivalent,366513,367508,368043,367941,369057,371052,371537,535,-102,1116,1995,485,1142,4388,4239,4380,4278,721,2939,2798,2732,2862,421,1449,1441,1648,1416,567,2405,2353,2555,2557,-464,-4033,-2679,-2067,-3413,103,-1628,-326,488,-856,11,77,1,-141,-75 -46060,,,"Tucson, AZ",Metropolitan Statistical Area,980263,980263,981935,988125,993094,998050,1004516,1672,6190,4969,4956,6466,3135,12078,11821,12169,11980,1998,8624,8711,8992,9087,1137,3454,3110,3177,2893,380,1969,2266,2266,2260,275,802,-266,-908,861,655,2771,2000,1358,3121,-120,-35,-141,421,452 -46060,,4019,"Pima County, AZ",County or equivalent,980263,980263,981935,988125,993094,998050,1004516,1672,6190,4969,4956,6466,3135,12078,11821,12169,11980,1998,8624,8711,8992,9087,1137,3454,3110,3177,2893,380,1969,2266,2266,2260,275,802,-266,-908,861,655,2771,2000,1358,3121,-120,-35,-141,421,452 -46140,,,"Tulsa, OK",Metropolitan Statistical Area,937478,937528,939858,945927,952836,962424,969224,2330,6069,6909,9588,6800,3315,13419,13337,13110,13245,2092,8970,8631,9025,9183,1223,4449,4706,4085,4062,230,1108,1055,1159,1182,917,438,1190,4029,1850,1147,1546,2245,5188,3032,-40,74,-42,315,-294 -46140,,40037,"Creek County, OK",County or equivalent,69967,69967,70199,70650,70854,70698,70632,232,451,204,-156,-66,220,907,849,856,859,185,800,791,877,865,35,107,58,-21,-6,1,13,12,10,10,186,306,145,-199,-70,187,319,157,-189,-60,10,25,-11,54,0 -46140,,40111,"Okmulgee County, OK",County or equivalent,40069,40069,40102,39795,39587,39451,39095,33,-307,-208,-136,-356,120,519,535,487,498,160,518,495,496,516,-40,1,40,-9,-18,2,4,5,7,7,74,-291,-252,-143,-346,76,-287,-247,-136,-339,-3,-21,-1,9,1 -46140,,40113,"Osage County, OK",County or equivalent,47472,47480,47436,48332,48010,47924,47981,-44,896,-322,-86,57,116,532,405,400,408,73,482,476,421,518,43,50,-71,-21,-110,4,18,18,17,17,-75,594,-275,-76,161,-71,612,-257,-59,178,-16,234,6,-6,-11 -46140,,40117,"Pawnee County, OK",County or equivalent,16577,16579,16612,16806,16483,16527,16401,33,194,-323,44,-126,73,192,187,199,195,41,220,223,175,172,32,-28,-36,24,23,2,4,3,3,3,2,207,-288,38,-143,4,211,-285,41,-140,-3,11,-2,-21,-9 -46140,,40131,"Rogers County, OK",County or equivalent,86905,86904,87024,87753,88445,89183,89815,120,729,692,738,632,256,935,998,966,986,205,719,747,782,784,51,216,251,184,202,10,36,31,32,34,71,405,434,455,401,81,441,465,487,435,-12,72,-24,67,-5 -46140,,40143,"Tulsa County, OK",County or equivalent,603403,603442,605092,608522,614460,622966,629598,1650,3430,5938,8506,6632,2311,9452,9485,9277,9404,1323,5615,5316,5663,5703,988,3837,4169,3614,3701,209,1027,980,1083,1104,475,-1144,803,3620,2075,684,-117,1783,4703,3179,-22,-290,-14,189,-248 -46140,,40145,"Wagoner County, OK",County or equivalent,73085,73087,73393,74069,74997,75675,75702,306,676,928,678,27,219,882,878,925,895,105,616,583,611,625,114,266,295,314,270,2,6,6,7,7,184,361,623,334,-228,186,367,629,341,-221,6,43,4,23,-22 -46220,,,"Tuscaloosa, AL",Metropolitan Statistical Area,230162,230159,230489,231400,233377,235438,237761,330,911,1977,2061,2323,732,2811,2875,2804,2885,380,2194,1980,2059,2095,352,617,895,745,790,71,245,233,263,266,-79,77,838,988,1316,-8,322,1071,1251,1582,-14,-28,11,65,-49 -46220,,1065,"Hale County, AL",County or equivalent,15760,15760,15727,15355,15390,15311,15184,-33,-372,35,-79,-127,47,188,201,195,194,27,204,154,178,182,20,-16,47,17,12,8,7,7,8,8,-62,-376,-20,-107,-140,-54,-369,-13,-99,-132,1,13,1,3,-7 -46220,,1107,"Pickens County, AL",County or equivalent,19746,19746,19706,19348,19344,19383,20365,-40,-358,-4,39,982,43,220,223,208,222,31,265,238,246,232,12,-45,-15,-38,-10,-1,-2,-2,-1,0,-43,-327,17,63,954,-44,-329,15,62,954,-8,16,-4,15,38 -46220,,1125,"Tuscaloosa County, AL",County or equivalent,194656,194653,195056,196697,198643,200744,202212,403,1641,1946,2101,1468,642,2403,2451,2401,2469,322,1725,1588,1635,1681,320,678,863,766,788,64,240,228,256,258,26,780,841,1032,502,90,1020,1069,1288,760,-7,-57,14,47,-80 -46340,,,"Tyler, TX",Metropolitan Statistical Area,209714,209714,210455,212765,214941,216670,218842,741,2310,2176,1729,2172,720,2984,2976,3036,3005,432,1935,1947,1957,1951,288,1049,1029,1079,1054,47,257,210,250,263,405,1027,954,281,840,452,1284,1164,531,1103,1,-23,-17,119,15 -46340,,48423,"Smith County, TX",County or equivalent,209714,209714,210455,212765,214941,216670,218842,741,2310,2176,1729,2172,720,2984,2976,3036,3005,432,1935,1947,1957,1951,288,1049,1029,1079,1054,47,257,210,250,263,405,1027,954,281,840,452,1284,1164,531,1103,1,-23,-17,119,15 -46520,,,"Urban Honolulu, HI",Metropolitan Statistical Area,953207,953207,956336,966559,976746,987019,991788,3129,10223,10187,10273,4769,3349,13782,13511,13662,13743,1753,7058,7125,7713,7869,1596,6724,6386,5949,5874,1601,5137,7802,7108,6702,-62,-1157,-3901,-2792,-7336,1539,3980,3901,4316,-634,-6,-481,-100,8,-471 -46520,,15003,"Honolulu County, HI",County or equivalent,953207,953207,956336,966559,976746,987019,991788,3129,10223,10187,10273,4769,3349,13782,13511,13662,13743,1753,7058,7125,7713,7869,1596,6724,6386,5949,5874,1601,5137,7802,7108,6702,-62,-1157,-3901,-2792,-7336,1539,3980,3901,4316,-634,-6,-481,-100,8,-471 -46540,,,"Utica-Rome, NY",Metropolitan Statistical Area,299397,299382,299301,298846,298553,298047,296615,-81,-455,-293,-506,-1432,817,3275,3337,3267,3219,818,3159,3099,3136,3112,-1,116,238,131,107,161,679,723,780,774,-229,-1240,-1275,-1305,-2165,-68,-561,-552,-525,-1391,-12,-10,21,-112,-148 -46540,,36043,"Herkimer County, NY",County or equivalent,64519,64503,64442,64639,64572,64246,63744,-61,197,-67,-326,-502,153,656,650,658,643,179,643,645,666,667,-26,13,5,-8,-24,11,64,66,73,73,-31,26,-141,-333,-544,-20,90,-75,-260,-471,-15,94,3,-58,-7 -46540,,36065,"Oneida County, NY",County or equivalent,234878,234879,234859,234207,233981,233801,232871,-20,-652,-226,-180,-930,664,2619,2687,2609,2576,639,2516,2454,2470,2445,25,103,233,139,131,150,615,657,707,701,-198,-1266,-1134,-972,-1621,-48,-651,-477,-265,-920,3,-104,18,-54,-141 -46660,,,"Valdosta, GA",Metropolitan Statistical Area,139588,139665,140104,142414,144614,142828,143317,439,2310,2200,-1786,489,529,2163,2082,2057,1982,342,1119,995,1129,1165,187,1044,1087,928,817,61,110,353,233,207,170,1121,709,-3054,-603,231,1231,1062,-2821,-396,21,35,51,107,68 -46660,,13027,"Brooks County, GA",County or equivalent,16243,16324,16278,15968,15537,15631,15418,-46,-310,-431,94,-213,60,196,222,213,199,61,176,156,195,192,-1,20,66,18,7,1,4,2,3,4,-48,-332,-507,70,-217,-47,-328,-505,73,-213,2,-2,8,3,-7 -46660,,13101,"Echols County, GA",County or equivalent,4034,4034,4027,4096,3965,3997,4003,-7,69,-131,32,6,10,64,78,65,53,10,32,23,20,19,0,32,55,45,34,-2,-1,-2,0,1,-6,23,-185,-5,-39,-8,22,-187,-5,-38,1,15,1,-8,10 -46660,,13173,"Lanier County, GA",County or equivalent,10078,10074,10099,10468,10444,10398,10373,25,369,-24,-46,-25,29,133,127,127,117,34,75,77,66,82,-5,58,50,61,35,2,6,35,17,15,28,293,-110,-113,-73,30,299,-75,-96,-58,0,12,1,-11,-2 -46660,,13185,"Lowndes County, GA",County or equivalent,109233,109233,109700,111882,114668,112802,113523,467,2182,2786,-1866,721,430,1770,1655,1652,1613,237,836,739,848,872,193,934,916,804,741,60,101,318,213,187,196,1137,1511,-3006,-274,256,1238,1829,-2793,-87,18,10,41,123,67 -46700,,,"Vallejo-Fairfield, CA",Metropolitan Statistical Area,413344,413344,414101,416945,420724,425219,431131,757,2844,3779,4495,5912,1241,5174,5068,5108,5151,637,2870,2919,3098,3175,604,2304,2149,2010,1976,329,1306,1732,1574,1523,-154,-703,-70,730,2291,175,603,1662,2304,3814,-22,-63,-32,181,122 -46700,,6095,"Solano County, CA",County or equivalent,413344,413344,414101,416945,420724,425219,431131,757,2844,3779,4495,5912,1241,5174,5068,5108,5151,637,2870,2919,3098,3175,604,2304,2149,2010,1976,329,1306,1732,1574,1523,-154,-703,-70,730,2291,175,603,1662,2304,3814,-22,-63,-32,181,122 -47020,,,"Victoria, TX",Metropolitan Statistical Area,94003,94003,94070,94650,96614,97592,98630,67,580,1964,978,1038,324,1324,1347,1363,1393,167,781,882,822,834,157,543,465,541,559,26,85,80,87,87,-106,-5,1394,354,390,-80,80,1474,441,477,-10,-43,25,-4,2 -47020,,48175,"Goliad County, TX",County or equivalent,7210,7210,7221,7206,7338,7469,7549,11,-15,132,131,80,18,68,54,69,72,29,68,76,57,62,-11,0,-22,12,10,0,0,0,0,0,24,-13,150,113,58,24,-13,150,113,58,-2,-2,4,6,12 -47020,,48469,"Victoria County, TX",County or equivalent,86793,86793,86849,87444,89276,90123,91081,56,595,1832,847,958,306,1256,1293,1294,1321,138,713,806,765,772,168,543,487,529,549,26,85,80,87,87,-130,8,1244,241,332,-104,93,1324,328,419,-8,-41,21,-10,-10 -47220,,,"Vineland-Bridgeton, NJ",Metropolitan Statistical Area,156898,156898,157200,157607,157794,157153,157389,302,407,187,-641,236,613,2246,2198,2075,2063,375,1435,1407,1435,1437,238,811,791,640,626,91,486,467,492,504,-24,-815,-1059,-1717,-813,67,-329,-592,-1225,-309,-3,-75,-12,-56,-81 -47220,,34011,"Cumberland County, NJ",County or equivalent,156898,156898,157200,157607,157794,157153,157389,302,407,187,-641,236,613,2246,2198,2075,2063,375,1435,1407,1435,1437,238,811,791,640,626,91,486,467,492,504,-24,-815,-1059,-1717,-813,67,-329,-592,-1225,-309,-3,-75,-12,-56,-81 -47260,,,"Virginia Beach-Norfolk-Newport News, VA-NC",Metropolitan Statistical Area,1676822,1676817,1680110,1686982,1698391,1707385,1716624,3293,6872,11409,8994,9239,5747,22678,22834,22649,22826,3091,12758,12685,13332,13559,2656,9920,10149,9317,9267,1511,3288,7610,5527,5156,-950,-5995,-6378,-5969,-5082,561,-2707,1232,-442,74,76,-341,28,119,-102 -47260,,37053,"Currituck County, NC",County or equivalent,23547,23547,23651,23927,24092,24414,24976,104,276,165,322,562,58,216,234,233,231,29,201,230,226,204,29,15,4,7,27,2,3,3,4,4,71,255,160,309,532,73,258,163,313,536,2,3,-2,2,-1 -47260,,37073,"Gates County, NC",County or equivalent,12197,12186,12163,12069,11909,11675,11567,-23,-94,-160,-234,-108,31,100,121,103,112,50,118,109,83,108,-19,-18,12,20,4,0,-2,-2,-2,-2,-2,-89,-174,-206,-103,-2,-91,-176,-208,-105,-2,15,4,-46,-7 -47260,,51073,"Gloucester County, VA",County or equivalent,36858,36858,36929,36878,36894,36848,37141,71,-51,16,-46,293,92,350,332,366,353,64,354,345,323,385,28,-4,-13,43,-32,2,14,45,30,27,40,-56,-14,-141,258,42,-42,31,-111,285,1,-5,-2,22,40 -47260,,51093,"Isle of Wight County, VA",County or equivalent,35270,35270,35288,35274,35380,35643,36007,18,-14,106,263,364,75,328,329,290,319,75,323,328,367,339,0,5,1,-77,-20,4,11,41,27,25,17,-26,70,305,332,21,-15,111,332,357,-3,-4,-6,8,27 -47260,,51095,"James City County, VA",County or equivalent,67009,67401,67751,68329,69532,70964,72583,350,578,1203,1432,1619,169,734,732,691,724,186,589,601,629,614,-17,145,131,62,110,42,141,190,183,182,334,345,877,1126,1236,376,486,1067,1309,1418,-9,-53,5,61,91 -47260,,51115,"Mathews County, VA",County or equivalent,8978,8976,8973,8963,8921,8922,8836,-3,-10,-42,1,-86,26,50,70,63,68,19,109,114,110,113,7,-59,-44,-47,-45,1,9,12,9,9,-7,42,-9,51,-45,-6,51,3,60,-36,-4,-2,-1,-12,-5 -47260,,51199,"York County, VA",County or equivalent,65464,65186,65198,65810,65746,65944,66342,12,612,-64,198,398,132,629,557,599,595,61,394,399,352,435,71,235,158,247,160,69,91,286,190,175,-132,249,-516,-286,70,-63,340,-230,-96,245,4,37,8,47,-7 -47260,,51550,"Chesapeake city, VA",County or equivalent,222209,222209,223517,225333,228188,230431,233371,1308,1816,2855,2243,2940,723,2760,2767,2830,2877,414,1560,1548,1665,1705,309,1200,1219,1165,1172,111,223,546,401,374,835,465,1100,659,1400,946,688,1646,1060,1774,53,-72,-10,18,-6 -47260,,51650,"Hampton city, VA",County or equivalent,137436,137508,137416,136435,136843,136948,136879,-92,-981,408,105,-69,453,1722,1770,1860,1837,206,1166,1110,1189,1212,247,556,660,671,625,78,122,406,263,238,-420,-1670,-658,-811,-876,-342,-1548,-252,-548,-638,3,11,0,-18,-56 -47260,,51700,"Newport News city, VA",County or equivalent,180719,180918,180989,180356,180487,182015,182965,71,-633,131,1528,950,795,2974,2978,2923,2910,275,1420,1398,1444,1435,520,1554,1580,1479,1475,228,579,1032,834,793,-699,-2754,-2529,-708,-1233,-471,-2175,-1497,126,-440,22,-12,48,-77,-85 -47260,,51710,"Norfolk city, VA",County or equivalent,242803,242831,242943,243723,246150,245480,245428,112,780,2427,-670,-52,956,3703,3851,3712,3764,468,1840,1847,1965,2030,488,1863,2004,1747,1734,365,722,1948,1335,1238,-753,-1735,-1476,-3720,-2985,-388,-1013,472,-2385,-1747,12,-70,-49,-32,-39 -47260,,51735,"Poquoson city, VA",County or equivalent,12150,12157,12154,12055,12134,12125,12048,-3,-99,79,-9,-77,26,85,84,91,93,24,100,99,103,87,2,-15,-15,-12,6,1,7,18,8,8,-6,-99,74,-10,-87,-5,-92,92,-2,-79,0,8,2,5,-4 -47260,,51740,"Portsmouth city, VA",County or equivalent,95535,95535,95495,95816,96546,96174,96004,-40,321,730,-372,-170,394,1586,1562,1548,1532,302,1008,1024,1040,1037,92,578,538,508,495,51,60,281,152,130,-190,-265,-79,-1013,-771,-139,-205,202,-861,-641,7,-52,-10,-19,-24 -47260,,51800,"Suffolk city, VA",County or equivalent,84585,84596,84881,84768,85183,85749,86806,285,-113,415,566,1057,279,1125,1096,1098,1105,227,690,696,749,731,52,435,400,349,374,35,21,140,76,62,198,-537,-114,114,586,233,-516,26,190,648,0,-32,-11,27,35 -47260,,51810,"Virginia Beach city, VA",County or equivalent,437994,437966,439073,442984,445769,449308,450980,1107,3911,2785,3539,1672,1513,6230,6277,6150,6217,681,2781,2748,2967,3015,832,3449,3529,3183,3202,500,1199,2578,1918,1794,-219,-507,-3370,-1694,-3265,281,692,-792,224,-1471,-6,-230,48,132,-59 -47260,,51830,"Williamsburg city, VA",County or equivalent,14068,13673,13689,14262,14617,14745,14691,16,573,355,128,-54,25,86,74,92,89,10,105,89,120,109,15,-19,-15,-28,-20,22,88,86,99,99,-17,387,280,56,-131,5,475,366,155,-32,-4,117,4,1,-2 -47300,,,"Visalia-Porterville, CA",Metropolitan Statistical Area,442179,442182,443292,447824,451499,454725,458198,1110,4532,3675,3226,3473,2080,8151,8021,7908,8019,642,2819,2793,2802,2862,1438,5332,5228,5106,5157,-19,398,295,387,439,-313,-1052,-1850,-2112,-1916,-332,-654,-1555,-1725,-1477,4,-146,2,-155,-207 -47300,,6107,"Tulare County, CA",County or equivalent,442179,442182,443292,447824,451499,454725,458198,1110,4532,3675,3226,3473,2080,8151,8021,7908,8019,642,2819,2793,2802,2862,1438,5332,5228,5106,5157,-19,398,295,387,439,-313,-1052,-1850,-2112,-1916,-332,-654,-1555,-1725,-1477,4,-146,2,-155,-207 -47380,,,"Waco, TX",Metropolitan Statistical Area,252772,252772,253837,255729,257111,259099,260430,1065,1892,1382,1988,1331,920,3600,3649,3655,3644,431,2153,2156,2240,2203,489,1447,1493,1415,1441,52,276,265,286,292,502,279,-359,240,-308,554,555,-94,526,-16,22,-110,-17,47,-94 -47380,,48145,"Falls County, TX",County or equivalent,17866,17866,17876,17862,17600,17292,16989,10,-14,-262,-308,-303,43,195,207,201,199,22,197,209,142,160,21,-2,-2,59,39,0,6,5,6,6,-9,-16,-267,-351,-367,-9,-10,-262,-345,-361,-2,-2,2,-22,19 -47380,,48309,"McLennan County, TX",County or equivalent,234906,234906,235961,237867,239511,241807,243441,1055,1906,1644,2296,1634,877,3405,3442,3454,3445,409,1956,1947,2098,2043,468,1449,1495,1356,1402,52,270,260,280,286,511,295,-92,591,59,563,565,168,871,345,24,-108,-19,69,-113 -47460,,,"Walla Walla, WA",Metropolitan Statistical Area,62859,62859,63029,63545,63459,63673,63829,170,516,-86,214,156,167,726,711,721,723,142,578,567,593,611,25,148,144,128,112,23,66,63,77,79,127,299,-303,-15,-56,150,365,-240,62,23,-5,3,10,24,21 -47460,,53013,"Columbia County, WA",County or equivalent,4078,4078,4112,4022,4001,4036,3985,34,-90,-21,35,-51,12,41,26,38,30,22,63,46,29,40,-10,-22,-20,9,-10,1,1,1,1,1,43,-67,-3,24,-42,44,-66,-2,25,-41,0,-2,1,1,0 -47460,,53071,"Walla Walla County, WA",County or equivalent,58781,58781,58917,59523,59458,59637,59844,136,606,-65,179,207,155,685,685,683,693,120,515,521,564,571,35,170,164,119,122,22,65,62,76,78,84,366,-300,-39,-14,106,431,-238,37,64,-5,5,9,23,21 -47580,,,"Warner Robins, GA",Metropolitan Statistical Area,179605,179605,180412,183589,185390,186355,187516,807,3177,1801,965,1161,604,2494,2515,2424,2467,297,1368,1310,1352,1475,307,1126,1205,1072,992,91,232,483,348,337,391,1615,119,-500,-173,482,1847,602,-152,164,18,204,-6,45,5 -47580,,13153,"Houston County, GA",County or equivalent,139900,139910,140721,144161,146200,147919,149111,811,3440,2039,1719,1192,480,2089,2105,2039,2025,258,1016,992,1032,1122,222,1073,1113,1007,903,87,205,457,319,306,476,2035,479,336,-45,563,2240,936,655,261,26,127,-10,57,28 -47580,,13225,"Peach County, GA",County or equivalent,27695,27696,27772,27577,27510,26905,26922,76,-195,-67,-605,17,102,318,315,294,353,29,235,223,230,233,73,83,92,64,120,4,27,26,29,31,-1,-352,-185,-705,-121,3,-325,-159,-676,-90,0,47,0,7,-13 -47580,,13235,"Pulaski County, GA",County or equivalent,12010,11999,11919,11851,11680,11531,11483,-80,-68,-171,-149,-48,22,87,95,91,89,10,117,95,90,120,12,-30,0,1,-31,0,0,0,0,0,-84,-68,-175,-131,-7,-84,-68,-175,-131,-7,-8,30,4,-19,-10 -47900,,,"Washington-Arlington-Alexandria, DC-VA-MD-WV",Metropolitan Statistical Area,5636232,5636406,5665931,5777721,5873480,5967176,6033737,29525,111790,95759,93696,66561,19585,80329,80183,81130,81330,7695,31327,30918,33226,34180,11890,49002,49265,47904,47150,9132,39307,41334,43253,43070,8130,22678,5418,4375,-24741,17262,61985,46752,47628,18329,373,803,-258,-1836,1082 -47900,43524,,"Silver Spring-Frederick-Rockville, MD",Metropolitan Division,1205162,1205191,1210106,1230076,1246215,1261181,1274122,4915,19970,16139,14966,12941,3884,16043,15756,15941,15936,1852,7178,7237,7708,7499,2032,8865,8519,8233,8437,2232,10109,10239,10979,10950,659,1321,-2498,-4523,-6189,2891,11430,7741,6456,4761,-8,-325,-121,277,-257 -47900,43524,24021,"Frederick County, MD",County or equivalent,233385,233385,234172,237338,239668,241414,243675,787,3166,2330,1746,2261,691,2853,2724,2753,2766,372,1509,1577,1704,1623,319,1344,1147,1049,1143,180,724,795,811,804,279,1095,406,-220,342,459,1819,1201,591,1146,9,3,-18,106,-28 -47900,43524,24031,"Montgomery County, MD",County or equivalent,971777,971806,975934,992738,1006547,1019767,1030447,4128,16804,13809,13220,10680,3193,13190,13032,13188,13170,1480,5669,5660,6004,5876,1713,7521,7372,7184,7294,2052,9385,9444,10168,10146,380,226,-2904,-4303,-6531,2432,9611,6540,5865,3615,-17,-328,-103,171,-229 -47900,47894,,"Washington-Arlington-Alexandria, DC-VA-MD-WV",Metropolitan Division,4431070,4431215,4455825,4547645,4627265,4705995,4759615,24610,91820,79620,78730,53620,15701,64286,64427,65189,65394,5843,24149,23681,25518,26681,9858,40137,40746,39671,38713,6900,29198,31095,32274,32120,7471,21357,7916,8898,-18552,14371,50555,39011,41172,13568,381,1128,-137,-2113,1339 -47900,47894,11001,"District of Columbia, DC",County or equivalent,601723,601767,605210,620427,635040,649111,658893,3443,15217,14613,14071,9782,2311,9196,9234,9595,9647,1180,4675,4541,5046,5228,1131,4521,4693,4549,4419,733,3354,3509,3770,3760,1426,6945,6281,6278,1173,2159,10299,9790,10048,4933,153,397,130,-526,430 -47900,47894,24009,"Calvert County, MD",County or equivalent,88737,88737,88940,89272,89661,90480,90613,203,332,389,819,133,226,929,906,944,943,90,649,614,623,671,136,280,292,321,272,20,62,120,92,88,54,0,-25,366,-226,74,62,95,458,-138,-7,-10,2,40,-1 -47900,47894,24017,"Charles County, MD",County or equivalent,146551,146551,147118,149242,150791,152900,154747,567,2124,1549,2109,1847,422,1846,1915,1839,1930,188,947,890,993,983,234,899,1025,846,947,82,209,310,275,266,242,1018,214,940,698,324,1227,524,1215,964,9,-2,0,48,-64 -47900,47894,24033,"Prince George's County, MD",County or equivalent,863420,863519,865905,875524,883764,894199,904430,2386,9619,8240,10435,10231,3018,12135,12014,11987,11956,1297,5162,4980,5472,5978,1721,6973,7034,6515,5978,1410,6309,6250,6705,6703,-721,-3357,-4923,-2684,-1999,689,2952,1327,4021,4704,-24,-306,-121,-101,-451 -47900,47894,51013,"Arlington County, VA",County or equivalent,207627,207676,209395,216603,221947,226012,226908,1719,7208,5344,4065,896,780,3007,3128,3243,3238,236,933,897,938,991,544,2074,2231,2305,2247,553,2133,2321,2396,2381,567,2797,774,-392,-3901,1120,4930,3095,2004,-1520,55,204,18,-244,169 -47900,47894,51043,"Clarke County, VA",County or equivalent,14034,14029,14049,14229,14316,14348,14423,20,180,87,32,75,37,141,132,146,151,59,150,150,135,140,-22,-9,-18,11,11,1,6,6,8,8,44,177,99,24,67,45,183,105,32,75,-3,6,0,-11,-11 -47900,47894,51047,"Culpeper County, VA",County or equivalent,46689,46691,46816,47311,47767,48488,49166,125,495,456,721,678,145,609,634,655,658,108,373,345,370,381,37,236,289,285,277,6,36,27,25,27,82,229,144,386,361,88,265,171,411,388,0,-6,-4,25,13 -47900,47894,51059,"Fairfax County, VA",County or equivalent,1081726,1081685,1086723,1105624,1121050,1134423,1137538,5038,18901,15426,13373,3115,3753,15252,15011,14977,14942,1050,4649,4684,4994,5123,2703,10603,10327,9983,9819,2195,9563,10118,10563,10518,228,-1193,-4824,-5890,-18036,2423,8370,5294,4673,-7518,-88,-72,-195,-1283,814 -47900,47894,51061,"Fauquier County, VA",County or equivalent,65203,65275,65443,66105,66603,67233,68248,168,662,498,630,1015,170,737,760,710,729,91,527,481,495,557,79,210,279,215,172,6,18,23,22,22,82,405,197,350,782,88,423,220,372,804,1,29,-1,43,39 -47900,47894,51107,"Loudoun County, VA",County or equivalent,312311,312316,315505,326900,338165,350959,363050,3189,11395,11265,12794,12091,1224,5014,4981,4955,5095,197,1023,1066,1147,1186,1027,3991,3915,3808,3909,529,2253,2267,2413,2403,1548,4880,5017,6491,5618,2077,7133,7284,8904,8021,85,271,66,82,161 -47900,47894,51153,"Prince William County, VA",County or equivalent,402002,401972,406370,420004,431226,440166,446094,4398,13634,11222,8940,5928,1598,6668,6787,6903,6913,444,1506,1492,1698,1700,1154,5162,5295,5205,5213,584,2197,2589,2493,2463,2523,6120,3310,1241,-1648,3107,8317,5899,3734,815,137,155,28,1,-100 -47900,47894,51157,"Rappahannock County, VA",County or equivalent,7373,7506,7499,7485,7430,7453,7361,-7,-14,-55,23,-92,15,66,45,57,58,29,67,80,50,67,-14,-1,-35,7,-9,0,-1,-1,-1,-1,8,-27,-18,33,-78,8,-28,-19,32,-79,-1,15,-1,-16,-4 -47900,47894,51177,"Spotsylvania County, VA",County or equivalent,122397,122660,123158,124823,126137,127696,129188,498,1665,1314,1559,1492,376,1601,1520,1509,1531,130,758,786,790,810,246,843,734,719,721,57,190,251,224,215,186,537,343,596,498,243,727,594,820,713,9,95,-14,20,58 -47900,47894,51179,"Stafford County, VA",County or equivalent,128961,128952,129787,132219,134374,136988,139992,835,2432,2155,2614,3004,374,1728,1630,1719,1720,198,568,582,699,659,176,1160,1048,1020,1061,105,208,483,352,333,535,1041,652,1247,1527,640,1249,1135,1599,1860,19,23,-28,-5,83 -47900,47894,51187,"Warren County, VA",County or equivalent,37575,37431,37504,37650,37963,38607,38987,73,146,313,644,380,90,451,438,468,485,111,335,358,338,338,-21,116,80,130,147,-1,-2,-2,-1,1,95,29,243,478,242,94,27,241,477,243,0,3,-8,37,-10 -47900,47894,51510,"Alexandria city, VA",County or equivalent,139966,140006,140829,144461,146934,149312,150575,823,3632,2473,2378,1263,639,2699,2622,2801,2795,213,744,681,705,738,426,1955,1941,2096,2057,387,1682,1842,1904,1893,-5,-91,-1278,-1411,-2780,382,1591,564,493,-887,15,86,-32,-211,93 -47900,47894,51600,"Fairfax city, VA",County or equivalent,22565,22542,22604,22792,23461,24194,24483,62,188,669,733,289,86,316,590,600,585,34,185,188,138,202,52,131,402,462,383,35,159,175,175,175,-19,-218,93,83,-277,16,-59,268,258,-102,-6,116,-1,13,8 -47900,47894,51610,"Falls Church city, VA",County or equivalent,12332,12289,12446,12720,13136,13469,13601,157,274,416,333,132,32,129,168,181,205,12,60,70,52,73,20,69,98,129,132,22,98,100,110,110,112,113,219,121,-112,134,211,319,231,-2,3,-6,-1,-27,2 -47900,47894,51630,"Fredericksburg city, VA",County or equivalent,24286,24023,24192,25641,27113,27862,28350,169,1449,1472,749,488,91,409,424,420,445,17,184,159,177,211,74,225,265,243,234,40,136,150,143,144,54,1031,1024,340,58,94,1167,1174,483,202,1,57,33,23,52 -47900,47894,51683,"Manassas city, VA",County or equivalent,37821,37839,38276,39358,40742,41725,42081,437,1082,1384,983,356,157,688,751,759,771,26,186,186,172,163,131,502,565,587,608,86,383,358,390,390,207,190,461,47,-678,293,573,819,437,-288,13,7,0,-41,36 -47900,47894,51685,"Manassas Park city, VA",County or equivalent,14273,14241,14409,14891,15079,15409,15174,168,482,188,330,-235,6,45,133,140,18,1,53,26,21,36,5,-8,107,119,-18,22,84,79,91,95,134,351,4,112,-322,156,435,83,203,-227,7,55,-2,8,10 -47900,47894,54037,"Jefferson County, WV",County or equivalent,53498,53508,53647,54364,54566,54961,55713,139,717,202,395,752,151,620,604,581,579,132,415,425,465,446,19,205,179,116,133,28,121,120,125,126,89,380,-91,142,481,117,501,29,267,607,3,11,-6,12,12 -47940,,,"Waterloo-Cedar Falls, IA",Metropolitan Statistical Area,167819,167819,167888,168250,168547,169479,169993,69,362,297,932,514,495,2029,2051,2096,2072,407,1476,1486,1507,1510,88,553,565,589,562,27,174,176,194,194,-34,-268,-428,100,-147,-7,-94,-252,294,47,-12,-97,-16,49,-95 -47940,,19013,"Black Hawk County, IA",County or equivalent,131090,131090,131158,131429,131661,132591,132897,68,271,232,930,306,413,1662,1653,1717,1691,327,1139,1168,1179,1193,86,523,485,538,498,26,162,164,181,181,-38,-332,-407,163,-310,-12,-170,-243,344,-129,-6,-82,-10,48,-63 -47940,,19017,"Bremer County, IA",County or equivalent,24276,24276,24283,24363,24463,24577,24721,7,80,100,114,144,47,232,263,249,257,41,210,196,212,208,6,22,67,37,49,1,10,10,11,11,4,60,29,51,105,5,70,39,62,116,-4,-12,-6,15,-21 -47940,,19075,"Grundy County, IA",County or equivalent,12453,12453,12447,12458,12423,12311,12375,-6,11,-35,-112,64,35,135,135,130,124,39,127,122,116,109,-4,8,13,14,15,0,2,2,2,2,0,4,-50,-114,58,0,6,-48,-112,60,-2,-3,0,-14,-11 -48060,,,"Watertown-Fort Drum, NY",Metropolitan Statistical Area,116229,116229,116595,118273,120916,119536,119103,366,1678,2643,-1380,-433,513,2138,2201,2252,2184,244,887,878,885,916,269,1251,1323,1367,1268,159,242,1269,691,520,-39,80,48,-3522,-2246,120,322,1317,-2831,-1726,-23,105,3,84,25 -48060,,36045,"Jefferson County, NY",County or equivalent,116229,116229,116595,118273,120916,119536,119103,366,1678,2643,-1380,-433,513,2138,2201,2252,2184,244,887,878,885,916,269,1251,1323,1367,1268,159,242,1269,691,520,-39,80,48,-3522,-2246,120,322,1317,-2831,-1726,-23,105,3,84,25 -48140,,,"Wausau, WI",Metropolitan Statistical Area,134063,134063,134065,134531,134689,135365,135780,2,466,158,676,415,404,1657,1625,1584,1586,299,1148,1139,1091,1065,105,509,486,493,521,21,110,107,118,119,-130,-221,-443,-17,-186,-109,-111,-336,101,-67,6,68,8,82,-39 -48140,,55073,"Marathon County, WI",County or equivalent,134063,134063,134065,134531,134689,135365,135780,2,466,158,676,415,404,1657,1625,1584,1586,299,1148,1139,1091,1065,105,509,486,493,521,21,110,107,118,119,-130,-221,-443,-17,-186,-109,-111,-336,101,-67,6,68,8,82,-39 -48260,,,"Weirton-Steubenville, WV-OH",Metropolitan Statistical Area,124454,124454,124266,123324,122466,121942,121336,-188,-942,-858,-524,-606,279,1097,1096,1156,1122,397,1748,1756,1643,1667,-118,-651,-660,-487,-545,2,3,3,6,6,-54,-300,-189,-25,4,-52,-297,-186,-19,10,-18,6,-12,-18,-71 -48260,,39081,"Jefferson County, OH",County or equivalent,69709,69709,69613,68889,68347,68007,67694,-96,-724,-542,-340,-313,165,602,634,656,650,213,1005,1008,913,939,-48,-403,-374,-257,-289,0,4,4,5,5,-32,-299,-163,-62,30,-32,-295,-159,-57,35,-16,-26,-9,-26,-59 -48260,,54009,"Brooke County, WV",County or equivalent,24069,24070,23991,23919,23791,23706,23530,-79,-72,-128,-85,-176,42,192,164,190,174,107,365,328,314,308,-65,-173,-164,-124,-134,2,5,5,6,6,-17,69,33,25,-53,-15,74,38,31,-47,1,27,-2,8,5 -48260,,54029,"Hancock County, WV",County or equivalent,30676,30675,30662,30516,30328,30229,30112,-13,-146,-188,-99,-117,72,303,298,310,298,77,378,420,416,420,-5,-75,-122,-106,-122,0,-6,-6,-5,-5,-5,-70,-59,12,27,-5,-76,-65,7,22,-3,5,-1,0,-17 -48300,,,"Wenatchee, WA",Metropolitan Statistical Area,110884,110887,111261,112091,112995,113496,114392,374,830,904,501,896,379,1484,1455,1425,1429,212,951,953,953,948,167,533,502,472,481,17,90,77,93,105,198,180,330,-73,306,215,270,407,20,411,-8,27,-5,9,4 -48300,,53007,"Chelan County, WA",County or equivalent,72453,72456,72727,73300,73670,74037,74588,271,573,370,367,551,254,943,937,919,926,113,644,670,655,651,141,299,267,264,275,8,60,55,67,72,123,191,56,11,210,131,251,111,78,282,-1,23,-8,25,-6 -48300,,53017,"Douglas County, WA",County or equivalent,38431,38431,38534,38791,39325,39459,39804,103,257,534,134,345,125,541,518,506,503,99,307,283,298,297,26,234,235,208,206,9,30,22,26,33,75,-11,274,-84,96,84,19,296,-58,129,-7,4,3,-16,10 -48540,,,"Wheeling, WV-OH",Metropolitan Statistical Area,147950,147950,147829,147075,146364,145853,145205,-121,-754,-711,-511,-648,358,1450,1455,1577,1553,454,1918,1945,1866,1806,-96,-468,-490,-289,-253,7,38,39,41,41,-18,-265,-250,-148,-343,-11,-227,-211,-107,-302,-14,-59,-10,-115,-93 -48540,,39013,"Belmont County, OH",County or equivalent,70400,70400,70290,70045,69624,69545,69461,-110,-245,-421,-79,-84,172,665,656,714,693,238,925,943,860,835,-66,-260,-287,-146,-142,2,11,11,12,12,-44,37,-146,84,99,-42,48,-135,96,111,-2,-33,1,-29,-53 -48540,,54051,"Marshall County, WV",County or equivalent,33107,33107,33060,32839,32684,32580,32416,-47,-221,-155,-104,-164,76,321,290,359,344,107,410,403,408,386,-31,-89,-113,-49,-42,2,1,1,1,1,-11,-137,-34,-55,-107,-9,-136,-33,-54,-106,-7,4,-9,-1,-16 -48540,,54069,"Ohio County, WV",County or equivalent,44443,44443,44479,44191,44056,43728,43328,36,-288,-135,-328,-400,110,464,509,504,516,109,583,599,598,585,1,-119,-90,-94,-69,3,26,27,28,28,37,-165,-70,-177,-335,40,-139,-43,-149,-307,-5,-30,-2,-85,-24 -48620,,,"Wichita, KS",Metropolitan Statistical Area,630919,630919,631936,633266,635942,638259,641076,1017,1330,2676,2317,2817,2444,9590,9260,9531,9451,1321,5434,5375,5429,5466,1123,4156,3885,4102,3985,220,821,1007,986,972,-307,-3629,-2212,-2975,-2025,-87,-2808,-1205,-1989,-1053,-19,-18,-4,204,-115 -48620,,20015,"Butler County, KS",County or equivalent,65880,65880,65918,65851,65756,65884,66227,38,-67,-95,128,343,204,782,756,796,809,178,604,615,581,586,26,178,141,215,223,4,30,34,35,35,7,-297,-277,-174,104,11,-267,-243,-139,139,1,22,7,52,-19 -48620,,20079,"Harvey County, KS",County or equivalent,34684,34684,34784,34748,34831,34803,34820,100,-36,83,-28,17,141,458,420,472,462,66,396,378,350,329,75,62,42,122,133,10,41,33,39,40,17,-135,9,-210,-142,27,-94,42,-171,-102,-2,-4,-1,21,-14 -48620,,20095,"Kingman County, KS",County or equivalent,7858,7858,7842,7895,7828,7837,7698,-16,53,-67,9,-139,16,86,70,76,83,12,87,98,102,101,4,-1,-28,-26,-18,0,0,0,0,0,-17,51,-41,28,-125,-17,51,-41,28,-125,-3,3,2,7,4 -48620,,20173,"Sedgwick County, KS",County or equivalent,498365,498365,499282,500914,503821,506121,508803,917,1632,2907,2300,2682,1998,7968,7741,7921,7815,1027,4056,3997,4148,4200,971,3912,3744,3773,3615,206,749,939,911,896,-247,-2960,-1764,-2495,-1746,-41,-2211,-825,-1584,-850,-13,-69,-12,111,-83 -48620,,20191,"Sumner County, KS",County or equivalent,24132,24132,24110,23858,23706,23614,23528,-22,-252,-152,-92,-86,85,296,273,266,282,38,291,287,248,250,47,5,-14,18,32,0,1,1,1,1,-67,-288,-139,-124,-116,-67,-287,-138,-123,-115,-2,30,0,13,-3 -48660,,,"Wichita Falls, TX",Metropolitan Statistical Area,151306,151476,151628,150332,150986,151529,151536,152,-1296,654,543,7,479,1949,1927,1948,1929,300,1494,1484,1508,1484,179,455,443,440,445,142,284,659,417,353,-168,-2057,-439,-289,-785,-26,-1773,220,128,-432,-1,22,-9,-25,-6 -48660,,48009,"Archer County, TX",County or equivalent,9054,9055,9103,8830,8772,8750,8811,48,-273,-58,-22,61,16,63,68,70,71,12,63,73,77,62,4,0,-5,-7,9,0,2,1,1,2,42,-278,-54,-1,57,42,-276,-53,0,59,2,3,0,-15,-7 -48660,,48077,"Clay County, TX",County or equivalent,10752,10752,10734,10682,10512,10436,10370,-18,-52,-170,-76,-66,21,92,73,98,96,22,102,118,125,116,-1,-10,-45,-27,-20,0,0,1,0,0,-19,-38,-126,-56,-42,-19,-38,-125,-56,-42,2,-4,0,7,-4 -48660,,48485,"Wichita County, TX",County or equivalent,131500,131669,131791,130820,131702,132343,132355,122,-971,882,641,12,442,1794,1786,1780,1762,266,1329,1293,1306,1306,176,465,493,474,456,142,282,657,416,351,-191,-1741,-259,-232,-800,-49,-1459,398,184,-449,-5,23,-9,-17,5 -48700,,,"Williamsport, PA",Metropolitan Statistical Area,116111,116108,116173,116669,117296,116732,116508,65,496,627,-564,-224,301,1208,1305,1322,1288,249,1306,1211,1268,1297,52,-98,94,54,-9,11,67,70,77,74,12,581,458,-695,-224,23,648,528,-618,-150,-10,-54,5,0,-65 -48700,,42081,"Lycoming County, PA",County or equivalent,116111,116108,116173,116669,117296,116732,116508,65,496,627,-564,-224,301,1208,1305,1322,1288,249,1306,1211,1268,1297,52,-98,94,54,-9,11,67,70,77,74,12,581,458,-695,-224,23,648,528,-618,-150,-10,-54,5,0,-65 -48900,,,"Wilmington, NC",Metropolitan Statistical Area,254884,254884,255734,259334,263101,268301,272548,850,3600,3767,5200,4247,745,2833,2855,2829,2874,391,2149,2128,2239,2240,354,684,727,590,634,56,261,277,309,311,432,2623,2728,4152,3170,488,2884,3005,4461,3481,8,32,35,149,132 -48900,,37129,"New Hanover County, NC",County or equivalent,202667,202683,203335,205972,209134,213190,216298,652,2637,3162,4056,3108,571,2231,2264,2229,2276,320,1691,1672,1726,1750,251,540,592,503,526,46,225,244,267,266,341,1900,2301,3178,2171,387,2125,2545,3445,2437,14,-28,25,108,145 -48900,,37141,"Pender County, NC",County or equivalent,52217,52201,52399,53362,53967,55111,56250,198,963,605,1144,1139,174,602,591,600,598,71,458,456,513,490,103,144,135,87,108,10,36,33,42,45,91,723,427,974,999,101,759,460,1016,1044,-6,60,10,41,-13 -49020,,,"Winchester, VA-WV",Metropolitan Statistical Area,128472,128473,128726,130047,131017,132221,133403,253,1321,970,1204,1182,413,1586,1485,1544,1526,284,1082,1082,1110,1089,129,504,403,434,437,29,126,111,127,130,91,691,475,735,551,120,817,586,862,681,4,0,-19,-92,64 -49020,,51069,"Frederick County, VA",County or equivalent,78305,78306,78592,79499,80161,81257,82377,286,907,662,1096,1120,233,929,868,951,945,104,558,563,629,605,129,371,305,322,340,7,35,30,33,33,143,501,347,817,692,150,536,377,850,725,7,0,-20,-76,55 -49020,,51840,"Winchester city, VA",County or equivalent,26203,26203,26183,26756,27178,27497,27543,-20,573,422,319,46,113,456,386,371,366,99,270,263,248,246,14,186,123,123,120,22,94,84,97,100,-55,290,213,104,-168,-33,384,297,201,-68,-1,3,2,-5,-6 -49020,,54027,"Hampshire County, WV",County or equivalent,23964,23964,23951,23792,23678,23467,23483,-13,-159,-114,-211,16,67,201,231,222,215,81,254,256,233,238,-14,-53,-25,-11,-23,0,-3,-3,-3,-3,3,-100,-85,-186,27,3,-103,-88,-189,24,-2,-3,-1,-11,15 -49180,,,"Winston-Salem, NC",Metropolitan Statistical Area,640595,640577,641351,644651,647687,651520,655015,774,3300,3036,3833,3495,1880,7563,7507,7468,7458,1354,5873,5886,6172,5983,526,1690,1621,1296,1475,213,897,826,912,932,54,763,612,1164,1318,267,1660,1438,2076,2250,-19,-50,-23,461,-230 -49180,,37057,"Davidson County, NC",County or equivalent,162878,162878,162898,163360,163542,163854,164072,20,462,182,312,218,429,1728,1744,1683,1685,327,1586,1602,1730,1652,102,142,142,-47,33,22,105,98,112,114,-97,67,-46,125,120,-75,172,52,237,234,-7,148,-12,122,-49 -49180,,37059,"Davie County, NC",County or equivalent,41240,41222,41321,41383,41366,41549,41434,99,62,-17,183,-115,116,370,399,392,390,105,400,401,404,367,11,-30,-2,-12,23,5,18,18,23,24,87,75,-26,135,-161,92,93,-8,158,-137,-4,-1,-7,37,-1 -49180,,37067,"Forsyth County, NC",County or equivalent,350670,350670,351399,354465,357967,361521,365298,729,3066,3502,3554,3777,1133,4646,4586,4579,4580,685,2999,3036,3143,3057,448,1647,1550,1436,1523,184,773,711,772,787,101,845,1257,1098,1627,285,1618,1968,1870,2414,-4,-199,-16,248,-160 -49180,,37169,"Stokes County, NC",County or equivalent,47401,47401,47339,47191,46756,46587,46419,-62,-148,-435,-169,-168,111,428,388,390,398,145,498,477,470,496,-34,-70,-89,-80,-98,2,5,5,6,6,-29,-109,-362,-119,-86,-27,-104,-357,-113,-80,-1,26,11,24,10 -49180,,37197,"Yadkin County, NC",County or equivalent,38406,38406,38394,38252,38056,38009,37792,-12,-142,-196,-47,-217,91,391,390,424,405,92,390,370,425,411,-1,1,20,-1,-6,0,-4,-6,-1,1,-8,-115,-211,-75,-182,-8,-119,-217,-76,-181,-3,-24,1,30,-30 -49340,,,"Worcester, MA-CT",Metropolitan Statistical Area,916980,916976,918791,922224,924072,928050,930473,1815,3433,1848,3978,2423,2426,10001,9907,9872,9938,1732,7589,7478,7633,7745,694,2412,2429,2239,2193,637,3535,3551,3728,3719,490,-2211,-4141,-2102,-2942,1127,1324,-590,1626,777,-6,-303,9,113,-547 -49340,,9015,"Windham County, CT",County or equivalent,118428,118434,118607,118419,117939,117627,116998,173,-188,-480,-312,-629,308,1194,1191,1181,1182,247,983,983,908,954,61,211,208,273,228,42,279,283,280,282,70,-655,-977,-839,-1119,112,-376,-694,-559,-837,0,-23,6,-26,-20 -49340,,25027,"Worcester County, MA",County or equivalent,798552,798542,800184,803805,806133,810423,813475,1642,3621,2328,4290,3052,2118,8807,8716,8691,8756,1485,6606,6495,6725,6791,633,2201,2221,1966,1965,595,3256,3268,3448,3437,420,-1556,-3164,-1263,-1823,1015,1700,104,2185,1614,-6,-280,3,139,-527 -49420,,,"Yakima, WA",Metropolitan Statistical Area,243231,243231,244146,246159,246721,247297,247687,915,2013,562,576,390,1025,4335,4110,4065,4052,424,1843,1816,1922,1938,601,2492,2294,2143,2114,-24,143,73,113,141,336,-558,-1833,-1718,-1787,312,-415,-1760,-1605,-1646,2,-64,28,38,-78 -49420,,53077,"Yakima County, WA",County or equivalent,243231,243231,244146,246159,246721,247297,247687,915,2013,562,576,390,1025,4335,4110,4065,4052,424,1843,1816,1922,1938,601,2492,2294,2143,2114,-24,143,73,113,141,336,-558,-1833,-1718,-1787,312,-415,-1760,-1605,-1646,2,-64,28,38,-78 -49620,,,"York-Hanover, PA",Metropolitan Statistical Area,434972,435002,435543,436868,437699,439393,440755,541,1325,831,1694,1362,1261,5002,4901,4909,4906,951,3739,3679,3739,3787,310,1263,1222,1170,1119,101,561,596,590,592,151,-405,-985,-157,-53,252,156,-389,433,539,-21,-94,-2,91,-296 -49620,,42133,"York County, PA",County or equivalent,434972,435002,435543,436868,437699,439393,440755,541,1325,831,1694,1362,1261,5002,4901,4909,4906,951,3739,3679,3739,3787,310,1263,1222,1170,1119,101,561,596,590,592,151,-405,-985,-157,-53,252,156,-389,433,539,-21,-94,-2,91,-296 -49660,,,"Youngstown-Warren-Boardman, OH-PA",Metropolitan Statistical Area,565773,565804,564874,562487,558973,556129,553263,-930,-2387,-3514,-2844,-2866,1421,5576,5457,5653,5579,1738,6849,6944,6861,6804,-317,-1273,-1487,-1208,-1225,55,236,258,268,271,-669,-1046,-2332,-1752,-1548,-614,-810,-2074,-1484,-1277,1,-304,47,-152,-364 -49660,,39099,"Mahoning County, OH",County or equivalent,238823,238823,238406,237314,235787,234336,233204,-417,-1092,-1527,-1451,-1132,621,2337,2325,2410,2369,794,3016,3038,3016,2957,-173,-679,-713,-606,-588,44,198,208,224,226,-283,-438,-1039,-990,-599,-239,-240,-831,-766,-373,-5,-173,17,-79,-171 -49660,,39155,"Trumbull County, OH",County or equivalent,210312,210307,209897,208991,207439,206480,205175,-410,-906,-1552,-959,-1305,545,2092,2016,2099,2070,641,2433,2547,2451,2407,-96,-341,-531,-352,-337,7,12,25,14,14,-333,-483,-1072,-493,-803,-326,-471,-1047,-479,-789,12,-94,26,-128,-179 -49660,,42085,"Mercer County, PA",County or equivalent,116638,116674,116571,116182,115747,115313,114884,-103,-389,-435,-434,-429,255,1147,1116,1144,1140,303,1400,1359,1394,1440,-48,-253,-243,-250,-300,4,26,25,30,31,-53,-125,-221,-269,-146,-49,-99,-196,-239,-115,-6,-37,4,55,-14 -49700,,,"Yuba City, CA",Metropolitan Statistical Area,166892,166892,167204,167350,167614,168648,169813,312,146,264,1034,1165,657,2588,2536,2475,2477,313,1289,1265,1243,1211,344,1299,1271,1232,1266,164,548,682,680,673,-196,-1687,-1720,-875,-730,-32,-1139,-1038,-195,-57,0,-14,31,-3,-44 -49700,,6101,"Sutter County, CA",County or equivalent,94737,94737,94814,94750,94637,95287,95847,77,-64,-113,650,560,337,1337,1320,1236,1260,216,733,733,756,729,121,604,587,480,531,113,461,480,516,516,-162,-1119,-1210,-402,-485,-49,-658,-730,114,31,5,-10,30,56,-2 -49700,,6115,"Yuba County, CA",County or equivalent,72155,72155,72390,72600,72977,73361,73966,235,210,377,384,605,320,1251,1216,1239,1217,97,556,532,487,482,223,695,684,752,735,51,87,202,164,157,-34,-568,-510,-473,-245,17,-481,-308,-309,-88,-5,-4,1,-59,-42 -49740,,,"Yuma, AZ",Metropolitan Statistical Area,195751,195750,197105,202617,202264,202033,203247,1355,5512,-353,-231,1214,777,3251,3235,3109,3137,265,1339,1436,1341,1415,512,1912,1799,1768,1722,53,381,586,508,471,724,3160,-2795,-2730,-1198,777,3541,-2209,-2222,-727,66,59,57,223,219 -49740,,4027,"Yuma County, AZ",County or equivalent,195751,195750,197105,202617,202264,202033,203247,1355,5512,-353,-231,1214,777,3251,3235,3109,3137,265,1339,1436,1341,1415,512,1912,1799,1768,1722,53,381,586,508,471,724,3160,-2795,-2730,-1198,777,3541,-2209,-2222,-727,66,59,57,223,219 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,Micropolitan Statistical Area,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10100,,,"Aberdeen, SD",Micropolitan Statistical Area,40602,40602,40701,40992,41542,42197,42391,99,291,550,655,194,113,529,498,559,546,101,414,441,423,397,12,115,57,136,149,13,102,103,115,116,73,86,380,427,-46,86,188,483,542,70,1,-12,10,-23,-25 -10100,,46013,"Brown County, SD",County or equivalent,36531,36531,36626,36931,37514,38162,38408,95,305,583,648,246,100,495,455,509,497,83,367,388,382,357,17,128,67,127,140,13,102,103,115,116,63,89,400,410,12,76,191,503,525,128,2,-14,13,-4,-22 -10100,,46045,"Edmunds County, SD",County or equivalent,4071,4071,4075,4061,4028,4035,3983,4,-14,-33,7,-52,13,34,43,50,49,18,47,53,41,40,-5,-13,-10,9,9,0,0,0,0,0,10,-3,-20,17,-58,10,-3,-20,17,-58,-1,2,-3,-19,-3 -10140,,,"Aberdeen, WA",Micropolitan Statistical Area,72797,72797,72833,72311,71705,71001,70818,36,-522,-606,-704,-183,198,827,799,775,777,198,798,769,811,793,0,29,30,-36,-16,11,52,48,51,55,27,-601,-690,-649,-171,38,-549,-642,-598,-116,-2,-2,6,-70,-51 -10140,,53027,"Grays Harbor County, WA",County or equivalent,72797,72797,72833,72311,71705,71001,70818,36,-522,-606,-704,-183,198,827,799,775,777,198,798,769,811,793,0,29,30,-36,-16,11,52,48,51,55,27,-601,-690,-649,-171,38,-549,-642,-598,-116,-2,-2,6,-70,-51 -10220,,,"Ada, OK",Micropolitan Statistical Area,37492,37492,37584,37697,38006,38073,38005,92,113,309,67,-68,126,582,562,501,517,65,472,405,456,495,61,110,157,45,22,4,19,19,22,23,31,-3,133,-11,-89,35,16,152,11,-66,-4,-13,0,11,-24 -10220,,40123,"Pontotoc County, OK",County or equivalent,37492,37492,37584,37697,38006,38073,38005,92,113,309,67,-68,126,582,562,501,517,65,472,405,456,495,61,110,157,45,22,4,19,19,22,23,31,-3,133,-11,-89,35,16,152,11,-66,-4,-13,0,11,-24 -10300,,,"Adrian, MI",Micropolitan Statistical Area,99892,99892,99649,99391,99150,99048,99047,-243,-258,-241,-102,-1,275,1022,1060,1052,1026,232,943,873,1033,981,43,79,187,19,45,20,106,99,104,105,-326,-406,-537,-259,-139,-306,-300,-438,-155,-34,20,-37,10,34,-12 -10300,,26091,"Lenawee County, MI",County or equivalent,99892,99892,99649,99391,99150,99048,99047,-243,-258,-241,-102,-1,275,1022,1060,1052,1026,232,943,873,1033,981,43,79,187,19,45,20,106,99,104,105,-326,-406,-537,-259,-139,-306,-300,-438,-155,-34,20,-37,10,34,-12 -10460,,,"Alamogordo, NM",Micropolitan Statistical Area,63797,63799,64396,65597,66102,65900,65082,597,1201,505,-202,-818,251,980,1017,938,954,95,568,527,556,563,156,412,490,382,391,72,205,434,323,307,349,609,-413,-859,-1495,421,814,21,-536,-1188,20,-25,-6,-48,-21 -10460,,35035,"Otero County, NM",County or equivalent,63797,63799,64396,65597,66102,65900,65082,597,1201,505,-202,-818,251,980,1017,938,954,95,568,527,556,563,156,412,490,382,391,72,205,434,323,307,349,609,-413,-859,-1495,421,814,21,-536,-1188,20,-25,-6,-48,-21 -10620,,,"Albemarle, NC",Micropolitan Statistical Area,60585,60585,60562,60480,60493,60630,60600,-23,-82,13,137,-30,150,681,635,629,631,136,626,690,638,654,14,55,-55,-9,-23,7,35,33,33,33,-38,-134,43,80,-63,-31,-99,76,113,-30,-6,-38,-8,33,23 -10620,,37167,"Stanly County, NC",County or equivalent,60585,60585,60562,60480,60493,60630,60600,-23,-82,13,137,-30,150,681,635,629,631,136,626,690,638,654,14,55,-55,-9,-23,7,35,33,33,33,-38,-134,43,80,-63,-31,-99,76,113,-30,-6,-38,-8,33,23 -10660,,,"Albert Lea, MN",Micropolitan Statistical Area,31255,31255,31211,31097,31052,30972,30840,-44,-114,-45,-80,-132,95,359,329,367,354,107,363,359,333,351,-12,-4,-30,34,3,5,24,24,25,25,-38,-115,-40,-173,-137,-33,-91,-16,-148,-112,1,-19,1,34,-23 -10660,,27047,"Freeborn County, MN",County or equivalent,31255,31255,31211,31097,31052,30972,30840,-44,-114,-45,-80,-132,95,359,329,367,354,107,363,359,333,351,-12,-4,-30,34,3,5,24,24,25,25,-38,-115,-40,-173,-137,-33,-91,-16,-148,-112,1,-19,1,34,-23 -10700,,,"Albertville, AL",Micropolitan Statistical Area,93019,93019,93170,93927,94303,94569,94636,151,757,376,266,67,349,1311,1290,1225,1211,269,1014,1055,1110,1082,80,297,235,115,129,29,126,120,143,146,41,359,29,-36,-207,70,485,149,107,-61,1,-25,-8,44,-1 -10700,,1095,"Marshall County, AL",County or equivalent,93019,93019,93170,93927,94303,94569,94636,151,757,376,266,67,349,1311,1290,1225,1211,269,1014,1055,1110,1082,80,297,235,115,129,29,126,120,143,146,41,359,29,-36,-207,70,485,149,107,-61,1,-25,-8,44,-1 -10820,,,"Alexandria, MN",Micropolitan Statistical Area,36009,36009,36008,36258,36446,36563,36790,-1,250,188,117,227,109,382,400,397,391,100,380,379,403,410,9,2,21,-6,-19,3,14,15,18,18,-12,185,159,69,196,-9,199,174,87,214,-1,49,-7,36,32 -10820,,27041,"Douglas County, MN",County or equivalent,36009,36009,36008,36258,36446,36563,36790,-1,250,188,117,227,109,382,400,397,391,100,380,379,403,410,9,2,21,-6,-19,3,14,15,18,18,-12,185,159,69,196,-9,199,174,87,214,-1,49,-7,36,32 -10860,,,"Alice, TX",Micropolitan Statistical Area,40838,40839,40880,41195,41644,41669,41353,41,315,449,25,-316,156,656,595,664,636,121,387,384,431,379,35,269,211,233,257,2,1,-2,1,2,4,65,240,-213,-594,6,66,238,-212,-592,0,-20,0,4,19 -10860,,48249,"Jim Wells County, TX",County or equivalent,40838,40839,40880,41195,41644,41669,41353,41,315,449,25,-316,156,656,595,664,636,121,387,384,431,379,35,269,211,233,257,2,1,-2,1,2,4,65,240,-213,-594,6,66,238,-212,-592,0,-20,0,4,19 -10940,,,"Alma, MI",Micropolitan Statistical Area,42476,42476,42409,42148,42031,42034,41665,-67,-261,-117,3,-369,97,439,433,397,402,124,424,396,438,423,-27,15,37,-41,-21,4,23,20,25,25,-44,-325,-175,-11,-396,-40,-302,-155,14,-371,0,26,1,30,23 -10940,,26057,"Gratiot County, MI",County or equivalent,42476,42476,42409,42148,42031,42034,41665,-67,-261,-117,3,-369,97,439,433,397,402,124,424,396,438,423,-27,15,37,-41,-21,4,23,20,25,25,-44,-325,-175,-11,-396,-40,-302,-155,14,-371,0,26,1,30,23 -10980,,,"Alpena, MI",Micropolitan Statistical Area,29598,29598,29546,29356,29240,29081,28988,-52,-190,-116,-159,-93,72,282,242,269,251,113,363,367,352,337,-41,-81,-125,-83,-86,2,14,14,15,15,-10,-103,-1,-98,8,-8,-89,13,-83,23,-3,-20,-4,7,-30 -10980,,26007,"Alpena County, MI",County or equivalent,29598,29598,29546,29356,29240,29081,28988,-52,-190,-116,-159,-93,72,282,242,269,251,113,363,367,352,337,-41,-81,-125,-83,-86,2,14,14,15,15,-10,-103,-1,-98,8,-8,-89,13,-83,23,-3,-20,-4,7,-30 -11060,,,"Altus, OK",Micropolitan Statistical Area,26446,26446,26472,26420,26261,26224,25998,26,-52,-159,-37,-226,111,437,469,458,468,45,259,273,227,204,66,178,196,231,264,22,42,127,79,72,-58,-272,-492,-326,-576,-36,-230,-365,-247,-504,-4,0,10,-21,14 -11060,,40065,"Jackson County, OK",County or equivalent,26446,26446,26472,26420,26261,26224,25998,26,-52,-159,-37,-226,111,437,469,458,468,45,259,273,227,204,66,178,196,231,264,22,42,127,79,72,-58,-272,-492,-326,-576,-36,-230,-365,-247,-504,-4,0,10,-21,14 -11140,,,"Americus, GA",Micropolitan Statistical Area,37829,37827,37728,37120,36620,36429,36395,-99,-608,-500,-191,-34,126,481,510,412,455,125,364,394,319,328,1,117,116,93,127,3,12,7,12,14,-103,-748,-629,-284,-188,-100,-736,-622,-272,-174,0,11,6,-12,13 -11140,,13249,"Schley County, GA",County or equivalent,5010,5010,5021,5025,4989,5072,5163,11,4,-36,83,91,20,62,48,45,49,1,30,40,22,28,19,32,8,23,21,0,0,0,0,0,-8,-26,-41,64,68,-8,-26,-41,64,68,0,-2,-3,-4,2 -11140,,13261,"Sumter County, GA",County or equivalent,32819,32817,32707,32095,31631,31357,31232,-110,-612,-464,-274,-125,106,419,462,367,406,124,334,354,297,300,-18,85,108,70,106,3,12,7,12,14,-95,-722,-588,-348,-256,-92,-710,-581,-336,-242,0,13,9,-8,11 -11220,,,"Amsterdam, NY",Micropolitan Statistical Area,50219,50236,50288,49965,49891,49830,49779,52,-323,-74,-61,-51,168,565,554,582,570,110,594,565,563,545,58,-29,-11,19,25,12,101,102,101,101,-7,-370,-167,-198,-164,5,-269,-65,-97,-63,-11,-25,2,17,-13 -11220,,36057,"Montgomery County, NY",County or equivalent,50219,50236,50288,49965,49891,49830,49779,52,-323,-74,-61,-51,168,565,554,582,570,110,594,565,563,545,58,-29,-11,19,25,12,101,102,101,101,-7,-370,-167,-198,-164,5,-269,-65,-97,-63,-11,-25,2,17,-13 -11380,,,"Andrews, TX",Micropolitan Statistical Area,14786,14786,14835,15393,16119,16808,17477,49,558,726,689,669,60,260,286,329,336,13,125,132,107,87,47,135,154,222,249,7,14,12,15,15,-2,404,547,454,405,5,418,559,469,420,-3,5,13,-2,0 -11380,,48003,"Andrews County, TX",County or equivalent,14786,14786,14835,15393,16119,16808,17477,49,558,726,689,669,60,260,286,329,336,13,125,132,107,87,47,135,154,222,249,7,14,12,15,15,-2,404,547,454,405,5,418,559,469,420,-3,5,13,-2,0 -11420,,,"Angola, IN",Micropolitan Statistical Area,34185,34183,34135,34058,34155,34294,34308,-48,-77,97,139,14,82,366,355,346,349,63,292,284,303,300,19,74,71,43,49,1,2,2,3,3,-67,-141,27,101,-41,-66,-139,29,104,-38,-1,-12,-3,-8,3 -11420,,18151,"Steuben County, IN",County or equivalent,34185,34183,34135,34058,34155,34294,34308,-48,-77,97,139,14,82,366,355,346,349,63,292,284,303,300,19,74,71,43,49,1,2,2,3,3,-67,-141,27,101,-41,-66,-139,29,104,-38,-1,-12,-3,-8,3 -11580,,,"Arcadia, FL",Micropolitan Statistical Area,34862,34862,34916,34636,34745,34616,35012,54,-280,109,-129,396,95,424,382,350,360,56,311,278,273,279,39,113,104,77,81,19,112,96,114,122,-2,-527,-91,-258,194,17,-415,5,-144,316,-2,22,0,-62,-1 -11580,,12027,"DeSoto County, FL",County or equivalent,34862,34862,34916,34636,34745,34616,35012,54,-280,109,-129,396,95,424,382,350,360,56,311,278,273,279,39,113,104,77,81,19,112,96,114,122,-2,-527,-91,-258,194,17,-415,5,-144,316,-2,22,0,-62,-1 -11620,,,"Ardmore, OK",Micropolitan Statistical Area,47557,47726,47778,48074,48114,48655,48821,52,296,40,541,166,145,626,628,657,673,114,641,585,572,617,31,-15,43,85,56,10,30,25,26,26,14,281,-24,413,94,24,311,1,439,120,-3,0,-4,17,-10 -11620,,40019,"Carter County, OK",County or equivalent,47557,47726,47778,48074,48114,48655,48821,52,296,40,541,166,145,626,628,657,673,114,641,585,572,617,31,-15,43,85,56,10,30,25,26,26,14,281,-24,413,94,24,311,1,439,120,-3,0,-4,17,-10 -11660,,,"Arkadelphia, AR",Micropolitan Statistical Area,22995,22995,22950,22953,22822,22697,22576,-45,3,-131,-125,-121,70,242,253,230,226,94,269,247,243,248,-24,-27,6,-13,-22,6,18,19,22,22,-27,24,-161,-152,-136,-21,42,-142,-130,-114,0,-12,5,18,15 -11660,,5019,"Clark County, AR",County or equivalent,22995,22995,22950,22953,22822,22697,22576,-45,3,-131,-125,-121,70,242,253,230,226,94,269,247,243,248,-24,-27,6,-13,-22,6,18,19,22,22,-27,24,-161,-152,-136,-21,42,-142,-130,-114,0,-12,5,18,15 -11680,,,"Arkansas City-Winfield, KS",Micropolitan Statistical Area,36311,36311,36308,36242,36264,36230,35963,-3,-66,22,-34,-267,123,479,455,466,460,67,452,438,389,396,56,27,17,77,64,13,40,37,47,48,-72,-129,-33,-185,-379,-59,-89,4,-138,-331,0,-4,1,27,0 -11680,,20035,"Cowley County, KS",County or equivalent,36311,36311,36308,36242,36264,36230,35963,-3,-66,22,-34,-267,123,479,455,466,460,67,452,438,389,396,56,27,17,77,64,13,40,37,47,48,-72,-129,-33,-185,-379,-59,-89,4,-138,-331,0,-4,1,27,0 -11740,,,"Ashland, OH",Micropolitan Statistical Area,53139,53139,53329,53288,53240,53117,53035,190,-41,-48,-123,-82,175,591,606,621,612,91,569,537,540,549,84,22,69,81,63,13,46,47,52,52,86,-110,-166,-257,-187,99,-64,-119,-205,-135,7,1,2,1,-10 -11740,,39005,"Ashland County, OH",County or equivalent,53139,53139,53329,53288,53240,53117,53035,190,-41,-48,-123,-82,175,591,606,621,612,91,569,537,540,549,84,22,69,81,63,13,46,47,52,52,86,-110,-166,-257,-187,99,-64,-119,-205,-135,7,1,2,1,-10 -11780,,,"Ashtabula, OH",Micropolitan Statistical Area,101497,101497,101409,101101,100264,99779,99175,-88,-308,-837,-485,-604,297,1142,1076,1121,1091,284,1153,1178,1102,1092,13,-11,-102,19,-1,7,56,60,57,58,-109,-326,-806,-539,-621,-102,-270,-746,-482,-563,1,-27,11,-22,-40 -11780,,39007,"Ashtabula County, OH",County or equivalent,101497,101497,101409,101101,100264,99779,99175,-88,-308,-837,-485,-604,297,1142,1076,1121,1091,284,1153,1178,1102,1092,13,-11,-102,19,-1,7,56,60,57,58,-109,-326,-806,-539,-621,-102,-270,-746,-482,-563,1,-27,11,-22,-40 -11820,,,"Astoria, OR",Micropolitan Statistical Area,37039,37037,37058,37183,37343,37121,37474,21,125,160,-222,353,91,417,428,421,421,74,359,365,399,395,17,58,63,22,26,7,26,59,45,40,0,52,44,-300,295,7,78,103,-255,335,-3,-11,-6,11,-8 -11820,,41007,"Clatsop County, OR",County or equivalent,37039,37037,37058,37183,37343,37121,37474,21,125,160,-222,353,91,417,428,421,421,74,359,365,399,395,17,58,63,22,26,7,26,59,45,40,0,52,44,-300,295,7,78,103,-255,335,-3,-11,-6,11,-8 -11860,,,"Atchison, KS",Micropolitan Statistical Area,16924,16924,16870,16785,16800,16717,16513,-54,-85,15,-83,-204,55,217,206,206,203,69,186,176,159,168,-14,31,30,47,35,1,3,3,4,4,-43,-125,-17,-109,-245,-42,-122,-14,-105,-241,2,6,-1,-25,2 -11860,,20005,"Atchison County, KS",County or equivalent,16924,16924,16870,16785,16800,16717,16513,-54,-85,15,-83,-204,55,217,206,206,203,69,186,176,159,168,-14,31,30,47,35,1,3,3,4,4,-43,-125,-17,-109,-245,-42,-122,-14,-105,-241,2,6,-1,-25,2 -11900,,,"Athens, OH",Micropolitan Statistical Area,64757,64773,65218,65117,64638,64515,64713,445,-101,-479,-123,198,132,554,565,567,582,155,522,458,481,466,-23,32,107,86,116,53,268,274,299,299,385,-398,-878,-508,-185,438,-130,-604,-209,114,30,-3,18,0,-32 -11900,,39009,"Athens County, OH",County or equivalent,64757,64773,65218,65117,64638,64515,64713,445,-101,-479,-123,198,132,554,565,567,582,155,522,458,481,466,-23,32,107,86,116,53,268,274,299,299,385,-398,-878,-508,-185,438,-130,-604,-209,114,30,-3,18,0,-32 -11940,,,"Athens, TN",Micropolitan Statistical Area,52266,52266,52224,52378,52452,52363,52626,-42,154,74,-89,263,144,568,597,531,559,171,663,587,620,605,-27,-95,10,-89,-46,6,45,44,50,50,-16,209,22,-48,301,-10,254,66,2,351,-5,-5,-2,-2,-42 -11940,,47107,"McMinn County, TN",County or equivalent,52266,52266,52224,52378,52452,52363,52626,-42,154,74,-89,263,144,568,597,531,559,171,663,587,620,605,-27,-95,10,-89,-46,6,45,44,50,50,-16,209,22,-48,301,-10,254,66,2,351,-5,-5,-2,-2,-42 -11980,,,"Athens, TX",Micropolitan Statistical Area,78532,78536,78648,78684,78942,78618,79290,112,36,258,-324,672,218,933,920,862,871,265,928,937,1020,992,-47,5,-17,-158,-121,7,18,17,24,28,149,34,267,-163,783,156,52,284,-139,811,3,-21,-9,-27,-18 -11980,,48213,"Henderson County, TX",County or equivalent,78532,78536,78648,78684,78942,78618,79290,112,36,258,-324,672,218,933,920,862,871,265,928,937,1020,992,-47,5,-17,-158,-121,7,18,17,24,28,149,34,267,-163,783,156,52,284,-139,811,3,-21,-9,-27,-18 -12140,,,"Auburn, IN",Micropolitan Statistical Area,42223,42223,42254,42413,42255,42302,42383,31,159,-158,47,81,117,517,519,461,488,68,389,363,377,384,49,128,156,84,104,2,11,11,13,15,-19,23,-331,-62,-8,-17,34,-320,-49,7,-1,-3,6,12,-30 -12140,,18033,"DeKalb County, IN",County or equivalent,42223,42223,42254,42413,42255,42302,42383,31,159,-158,47,81,117,517,519,461,488,68,389,363,377,384,49,128,156,84,104,2,11,11,13,15,-19,23,-331,-62,-8,-17,34,-320,-49,7,-1,-3,6,12,-30 -12180,,,"Auburn, NY",Micropolitan Statistical Area,80026,80025,79826,79803,79617,79335,78823,-199,-23,-186,-282,-512,191,819,792,809,790,204,740,737,758,690,-13,79,55,51,100,9,68,72,73,72,-186,-181,-307,-405,-680,-177,-113,-235,-332,-608,-9,11,-6,-1,-4 -12180,,36011,"Cayuga County, NY",County or equivalent,80026,80025,79826,79803,79617,79335,78823,-199,-23,-186,-282,-512,191,819,792,809,790,204,740,737,758,690,-13,79,55,51,100,9,68,72,73,72,-186,-181,-307,-405,-680,-177,-113,-235,-332,-608,-9,11,-6,-1,-4 -12300,,,"Augusta-Waterville, ME",Micropolitan Statistical Area,122151,122151,122053,121727,121586,121056,121112,-98,-326,-141,-530,56,261,1193,1204,1204,1191,352,1286,1188,1262,1270,-91,-93,16,-58,-79,8,17,27,27,27,-9,-218,-184,-472,163,-1,-201,-157,-445,190,-6,-32,0,-27,-55 -12300,,23011,"Kennebec County, ME",County or equivalent,122151,122151,122053,121727,121586,121056,121112,-98,-326,-141,-530,56,261,1193,1204,1204,1191,352,1286,1188,1262,1270,-91,-93,16,-58,-79,8,17,27,27,27,-9,-218,-184,-472,163,-1,-201,-157,-445,190,-6,-32,0,-27,-55 -12380,,,"Austin, MN",Micropolitan Statistical Area,39163,39163,39219,39322,39377,39318,39323,56,103,55,-59,5,157,502,527,480,484,62,371,383,353,353,95,131,144,127,131,14,76,64,70,73,-43,-113,-152,-252,-206,-29,-37,-88,-182,-133,-10,9,-1,-4,7 -12380,,27099,"Mower County, MN",County or equivalent,39163,39163,39219,39322,39377,39318,39323,56,103,55,-59,5,157,502,527,480,484,62,371,383,353,353,95,131,144,127,131,14,76,64,70,73,-43,-113,-152,-252,-206,-29,-37,-88,-182,-133,-10,9,-1,-4,7 -12460,,,"Bainbridge, GA",Micropolitan Statistical Area,27842,27842,27821,27663,27463,27372,27220,-21,-158,-200,-91,-152,101,372,371,364,366,58,313,318,300,307,43,59,53,64,59,-2,1,1,4,4,-64,-219,-258,-147,-232,-66,-218,-257,-143,-228,2,1,4,-12,17 -12460,,13087,"Decatur County, GA",County or equivalent,27842,27842,27821,27663,27463,27372,27220,-21,-158,-200,-91,-152,101,372,371,364,366,58,313,318,300,307,43,59,53,64,59,-2,1,1,4,4,-64,-219,-258,-147,-232,-66,-218,-257,-143,-228,2,1,4,-12,17 -12660,,,"Baraboo, WI",Micropolitan Statistical Area,61976,61976,62019,62405,62540,63063,63379,43,386,135,523,316,191,768,767,752,740,112,605,572,572,583,79,163,195,180,157,21,78,79,87,86,-43,64,-138,237,31,-22,142,-59,324,117,-14,81,-1,19,42 -12660,,55111,"Sauk County, WI",County or equivalent,61976,61976,62019,62405,62540,63063,63379,43,386,135,523,316,191,768,767,752,740,112,605,572,572,583,79,163,195,180,157,21,78,79,87,86,-43,64,-138,237,31,-22,142,-59,324,117,-14,81,-1,19,42 -12680,,,"Bardstown, KY",Micropolitan Statistical Area,43437,43437,43604,44013,44351,44492,44812,167,409,338,141,320,153,580,606,592,602,58,345,354,376,377,95,235,252,216,225,-3,-7,-6,-6,-3,73,193,94,-78,117,70,186,88,-84,114,2,-12,-2,9,-19 -12680,,21179,"Nelson County, KY",County or equivalent,43437,43437,43604,44013,44351,44492,44812,167,409,338,141,320,153,580,606,592,602,58,345,354,376,377,95,235,252,216,225,-3,-7,-6,-6,-3,73,193,94,-78,117,70,186,88,-84,114,2,-12,-2,9,-19 -12740,,,"Barre, VT",Micropolitan Statistical Area,59534,59535,59550,59543,59351,59221,58998,15,-7,-192,-130,-223,144,611,615,536,550,144,525,500,515,516,0,86,115,21,34,2,21,23,23,23,15,-94,-329,-194,-270,17,-73,-306,-171,-247,-2,-20,-1,20,-10 -12740,,50023,"Washington County, VT",County or equivalent,59534,59535,59550,59543,59351,59221,58998,15,-7,-192,-130,-223,144,611,615,536,550,144,525,500,515,516,0,86,115,21,34,2,21,23,23,23,15,-94,-329,-194,-270,17,-73,-306,-171,-247,-2,-20,-1,20,-10 -12780,,,"Bartlesville, OK",Micropolitan Statistical Area,50976,50977,51080,51524,51710,51567,51937,103,444,186,-143,370,178,664,623,602,616,120,584,588,606,621,58,80,35,-4,-5,12,60,60,69,69,36,335,97,-211,309,48,395,157,-142,378,-3,-31,-6,3,-3 -12780,,40147,"Washington County, OK",County or equivalent,50976,50977,51080,51524,51710,51567,51937,103,444,186,-143,370,178,664,623,602,616,120,584,588,606,621,58,80,35,-4,-5,12,60,60,69,69,36,335,97,-211,309,48,395,157,-142,378,-3,-31,-6,3,-3 -12820,,,"Bastrop, LA",Micropolitan Statistical Area,27979,27979,27888,27482,27431,27035,26760,-91,-406,-51,-396,-275,85,382,366,347,346,135,383,364,354,350,-50,-1,2,-7,-4,1,5,4,5,5,-42,-402,-55,-405,-270,-41,-397,-51,-400,-265,0,-8,-2,11,-6 -12820,,22067,"Morehouse Parish, LA",County or equivalent,27979,27979,27888,27482,27431,27035,26760,-91,-406,-51,-396,-275,85,382,366,347,346,135,383,364,354,350,-50,-1,2,-7,-4,1,5,4,5,5,-42,-402,-55,-405,-270,-41,-397,-51,-400,-265,0,-8,-2,11,-6 -12860,,,"Batavia, NY",Micropolitan Statistical Area,60079,60050,60032,60019,59874,59422,59162,-18,-13,-145,-452,-260,154,641,604,594,600,165,621,594,613,611,-11,20,10,-19,-11,10,70,72,77,78,-15,-76,-230,-525,-327,-5,-6,-158,-448,-249,-2,-27,3,15,0 -12860,,36037,"Genesee County, NY",County or equivalent,60079,60050,60032,60019,59874,59422,59162,-18,-13,-145,-452,-260,154,641,604,594,600,165,621,594,613,611,-11,20,10,-19,-11,10,70,72,77,78,-15,-76,-230,-525,-327,-5,-6,-158,-448,-249,-2,-27,3,15,0 -12900,,,"Batesville, AR",Micropolitan Statistical Area,36647,36647,36795,36803,36905,36843,36959,148,8,102,-62,116,108,456,486,473,472,111,389,404,402,403,-3,67,82,71,69,4,17,17,23,24,140,-62,4,-139,42,144,-45,21,-116,66,7,-14,-1,-17,-19 -12900,,5063,"Independence County, AR",County or equivalent,36647,36647,36795,36803,36905,36843,36959,148,8,102,-62,116,108,456,486,473,472,111,389,404,402,403,-3,67,82,71,69,4,17,17,23,24,140,-62,4,-139,42,144,-45,21,-116,66,7,-14,-1,-17,-19 -13060,,,"Bay City, TX",Micropolitan Statistical Area,36702,36702,36721,36714,36566,36537,36519,19,-7,-148,-29,-18,137,547,522,497,516,99,340,331,362,358,38,207,191,135,158,1,8,4,8,8,-19,-209,-346,-150,-166,-18,-201,-342,-142,-158,-1,-13,3,-22,-18 -13060,,48321,"Matagorda County, TX",County or equivalent,36702,36702,36721,36714,36566,36537,36519,19,-7,-148,-29,-18,137,547,522,497,516,99,340,331,362,358,38,207,191,135,158,1,8,4,8,8,-19,-209,-346,-150,-166,-18,-201,-342,-142,-158,-1,-13,3,-22,-18 -13100,,,"Beatrice, NE",Micropolitan Statistical Area,22311,22311,22286,21946,21735,21816,21663,-25,-340,-211,81,-153,55,230,232,260,252,94,286,269,264,266,-39,-56,-37,-4,-14,0,-3,-3,-3,-3,19,-274,-175,80,-132,19,-277,-178,77,-135,-5,-7,4,8,-4 -13100,,31067,"Gage County, NE",County or equivalent,22311,22311,22286,21946,21735,21816,21663,-25,-340,-211,81,-153,55,230,232,260,252,94,286,269,264,266,-39,-56,-37,-4,-14,0,-3,-3,-3,-3,19,-274,-175,80,-132,19,-277,-178,77,-135,-5,-7,4,8,-4 -13180,,,"Beaver Dam, WI",Micropolitan Statistical Area,88759,88761,88659,88737,88576,88399,88574,-102,78,-161,-177,175,224,861,820,843,826,207,904,822,846,865,17,-43,-2,-3,-39,9,52,51,57,58,-112,-81,-202,-179,172,-103,-29,-151,-122,230,-16,150,-8,-52,-16 -13180,,55027,"Dodge County, WI",County or equivalent,88759,88761,88659,88737,88576,88399,88574,-102,78,-161,-177,175,224,861,820,843,826,207,904,822,846,865,17,-43,-2,-3,-39,9,52,51,57,58,-112,-81,-202,-179,172,-103,-29,-151,-122,230,-16,150,-8,-52,-16 -13260,,,"Bedford, IN",Micropolitan Statistical Area,46134,46129,46138,46088,46045,45873,45704,9,-50,-43,-172,-169,130,478,472,507,492,147,501,553,548,528,-17,-23,-81,-41,-36,4,26,27,29,29,26,-34,15,-178,-132,30,-8,42,-149,-103,-4,-19,-4,18,-30 -13260,,18093,"Lawrence County, IN",County or equivalent,46134,46129,46138,46088,46045,45873,45704,9,-50,-43,-172,-169,130,478,472,507,492,147,501,553,548,528,-17,-23,-81,-41,-36,4,26,27,29,29,26,-34,15,-178,-132,30,-8,42,-149,-103,-4,-19,-4,18,-30 -13300,,,"Beeville, TX",Micropolitan Statistical Area,31861,31861,31901,32321,32451,32773,32863,40,420,130,322,90,103,338,381,383,380,98,249,241,218,215,5,89,140,165,165,2,11,12,14,15,34,319,-15,148,-73,36,330,-3,162,-58,-1,1,-7,-5,-17 -13300,,48025,"Bee County, TX",County or equivalent,31861,31861,31901,32321,32451,32773,32863,40,420,130,322,90,103,338,381,383,380,98,249,241,218,215,5,89,140,165,165,2,11,12,14,15,34,319,-15,148,-73,36,330,-3,162,-58,-1,1,-7,-5,-17 -13340,,,"Bellefontaine, OH",Micropolitan Statistical Area,45858,45858,45774,45621,45454,45466,45507,-84,-153,-167,12,41,128,582,514,534,536,149,451,435,489,496,-21,131,79,45,40,1,7,8,8,8,-64,-280,-258,-63,15,-63,-273,-250,-55,23,0,-11,4,22,-22 -13340,,39091,"Logan County, OH",County or equivalent,45858,45858,45774,45621,45454,45466,45507,-84,-153,-167,12,41,128,582,514,534,536,149,451,435,489,496,-21,131,79,45,40,1,7,8,8,8,-64,-280,-258,-63,15,-63,-273,-250,-55,23,0,-11,4,22,-22 -13420,,,"Bemidji, MN",Micropolitan Statistical Area,44442,44442,44585,45108,45241,45582,45664,143,523,133,341,82,189,724,704,740,730,68,434,378,372,380,121,290,326,368,350,11,32,33,34,34,13,183,-225,-22,-292,24,215,-192,12,-258,-2,18,-1,-39,-10 -13420,,27007,"Beltrami County, MN",County or equivalent,44442,44442,44585,45108,45241,45582,45664,143,523,133,341,82,189,724,704,740,730,68,434,378,372,380,121,290,326,368,350,11,32,33,34,34,13,183,-225,-22,-292,24,215,-192,12,-258,-2,18,-1,-39,-10 -13500,,,"Bennettsville, SC",Micropolitan Statistical Area,28933,28933,28907,28484,28157,27999,27924,-26,-423,-327,-158,-75,89,284,306,316,301,52,303,318,346,326,37,-19,-12,-30,-25,1,6,5,5,5,-61,-424,-326,-112,-42,-60,-418,-321,-107,-37,-3,14,6,-21,-13 -13500,,45069,"Marlboro County, SC",County or equivalent,28933,28933,28907,28484,28157,27999,27924,-26,-423,-327,-158,-75,89,284,306,316,301,52,303,318,346,326,37,-19,-12,-30,-25,1,6,5,5,5,-61,-424,-326,-112,-42,-60,-418,-321,-107,-37,-3,14,6,-21,-13 -13540,,,"Bennington, VT",Micropolitan Statistical Area,37125,37125,37077,36812,36669,36692,36445,-48,-265,-143,23,-247,74,314,327,343,341,124,436,416,408,431,-50,-122,-89,-65,-90,4,25,26,30,30,2,-144,-85,30,-182,6,-119,-59,60,-152,-4,-24,5,28,-5 -13540,,50003,"Bennington County, VT",County or equivalent,37125,37125,37077,36812,36669,36692,36445,-48,-265,-143,23,-247,74,314,327,343,341,124,436,416,408,431,-50,-122,-89,-65,-90,4,25,26,30,30,2,-144,-85,30,-182,6,-119,-59,60,-152,-4,-24,5,28,-5 -13620,,,"Berlin, NH-VT",Micropolitan Statistical Area,39361,39358,39254,38783,38193,38158,37778,-104,-471,-590,-35,-380,71,317,269,312,295,100,488,444,470,453,-29,-171,-175,-158,-158,5,16,16,20,20,-81,-312,-440,109,-255,-76,-296,-424,129,-235,1,-4,9,-6,13 -13620,,33007,"Coos County, NH",County or equivalent,33055,33052,32957,32460,31977,31962,31653,-95,-497,-483,-15,-309,58,254,223,263,248,92,434,389,417,400,-34,-180,-166,-154,-152,5,16,16,20,20,-70,-321,-343,125,-190,-65,-305,-327,145,-170,4,-12,10,-6,13 -13620,,50009,"Essex County, VT",County or equivalent,6306,6306,6297,6323,6216,6196,6125,-9,26,-107,-20,-71,13,63,46,49,47,8,54,55,53,53,5,9,-9,-4,-6,0,0,0,0,0,-11,9,-97,-16,-65,-11,9,-97,-16,-65,-3,8,-1,0,0 -13660,,,"Big Rapids, MI",Micropolitan Statistical Area,42798,42798,42824,43420,43482,43218,43186,26,596,62,-264,-32,95,411,427,418,412,81,364,370,395,362,14,47,57,23,50,10,52,53,58,58,7,509,-45,-357,-118,17,561,8,-299,-60,-5,-12,-3,12,-22 -13660,,26107,"Mecosta County, MI",County or equivalent,42798,42798,42824,43420,43482,43218,43186,26,596,62,-264,-32,95,411,427,418,412,81,364,370,395,362,14,47,57,23,50,10,52,53,58,58,7,509,-45,-357,-118,17,561,8,-299,-60,-5,-12,-3,12,-22 -13700,,,"Big Spring, TX",Micropolitan Statistical Area,36238,36238,36255,36249,36792,37522,37942,17,-6,543,730,420,125,418,443,472,494,118,397,366,383,360,7,21,77,89,134,11,79,61,73,77,3,-110,400,589,162,14,-31,461,662,239,-4,4,5,-21,47 -13700,,48173,"Glasscock County, TX",County or equivalent,1226,1226,1228,1231,1256,1245,1291,2,3,25,-11,46,2,11,16,12,12,2,8,1,10,6,0,3,15,2,6,0,3,2,2,2,2,-4,10,-13,35,2,-1,12,-11,37,0,1,-2,-2,3 -13700,,48227,"Howard County, TX",County or equivalent,35012,35012,35027,35018,35536,36277,36651,15,-9,518,741,374,123,407,427,460,482,116,389,365,373,354,7,18,62,87,128,11,76,59,71,75,1,-106,390,602,127,12,-30,449,673,202,-4,3,7,-19,44 -13720,,,"Big Stone Gap, VA",Micropolitan Statistical Area,61313,61318,61428,61164,60545,60086,59274,110,-264,-619,-459,-812,161,674,629,659,637,176,719,747,735,679,-15,-45,-118,-76,-42,5,11,9,14,15,113,-269,-514,-391,-779,118,-258,-505,-377,-764,7,39,4,-6,-6 -13720,,51051,"Dickenson County, VA",County or equivalent,15903,15892,15870,15765,15668,15449,15308,-22,-105,-97,-219,-141,39,182,177,152,156,77,195,212,195,186,-38,-13,-35,-43,-30,2,4,4,5,5,14,-107,-64,-175,-108,16,-103,-60,-170,-103,0,11,-2,-6,-8 -13720,,51195,"Wise County, VA",County or equivalent,41452,41480,41594,41384,40828,40620,39935,114,-210,-556,-208,-685,106,426,396,445,432,88,483,490,508,470,18,-57,-94,-63,-38,1,3,3,4,4,88,-174,-471,-163,-652,89,-171,-468,-159,-648,7,18,6,14,1 -13720,,51720,"Norton city, VA",County or equivalent,3958,3946,3964,4015,4049,4017,4031,18,51,34,-32,14,16,66,56,62,49,11,41,45,32,23,5,25,11,30,26,2,4,2,5,6,11,12,21,-53,-19,13,16,23,-48,-13,0,10,0,-14,1 -13940,,,"Blackfoot, ID",Micropolitan Statistical Area,45607,45607,45736,45884,45493,45408,45269,129,148,-391,-85,-139,192,742,745,776,760,59,322,338,299,308,133,420,407,477,452,1,-4,-6,-2,-1,-3,-253,-805,-561,-577,-2,-257,-811,-563,-578,-2,-15,13,1,-13 -13940,,16011,"Bingham County, ID",County or equivalent,45607,45607,45736,45884,45493,45408,45269,129,148,-391,-85,-139,192,742,745,776,760,59,322,338,299,308,133,420,407,477,452,1,-4,-6,-2,-1,-3,-253,-805,-561,-577,-2,-257,-811,-563,-578,-2,-15,13,1,-13 -14140,,,"Bluefield, WV-VA",Micropolitan Statistical Area,107342,107344,107470,107127,106606,106017,105237,126,-343,-521,-589,-780,327,1215,1223,1230,1212,325,1581,1580,1479,1503,2,-366,-357,-249,-291,11,30,32,35,35,118,10,-188,-362,-455,129,40,-156,-327,-420,-5,-17,-8,-13,-69 -14140,,51185,"Tazewell County, VA",County or equivalent,45078,45078,45157,44690,44248,44107,43452,79,-467,-442,-141,-655,128,456,421,461,449,160,683,633,605,611,-32,-227,-212,-144,-162,3,2,2,4,4,102,-235,-227,-20,-471,105,-233,-225,-16,-467,6,-7,-5,19,-26 -14140,,54055,"Mercer County, WV",County or equivalent,62264,62266,62313,62437,62358,61910,61785,47,124,-79,-448,-125,199,759,802,769,763,165,898,947,874,892,34,-139,-145,-105,-129,8,28,30,31,31,16,245,39,-342,16,24,273,69,-311,47,-11,-10,-3,-32,-43 -14180,,,"Blytheville, AR",Micropolitan Statistical Area,46480,46480,46371,46035,45550,44734,44235,-109,-336,-485,-816,-499,158,638,671,607,610,106,511,505,500,502,52,127,166,107,108,7,32,28,30,30,-165,-490,-681,-931,-645,-158,-458,-653,-901,-615,-3,-5,2,-22,8 -14180,,5093,"Mississippi County, AR",County or equivalent,46480,46480,46371,46035,45550,44734,44235,-109,-336,-485,-816,-499,158,638,671,607,610,106,511,505,500,502,52,127,166,107,108,7,32,28,30,30,-165,-490,-681,-931,-645,-158,-458,-653,-901,-615,-3,-5,2,-22,8 -14220,,,"Bogalusa, LA",Micropolitan Statistical Area,47168,47171,47119,47164,46664,46384,46286,-52,45,-500,-280,-98,148,578,546,537,540,83,549,558,587,591,65,29,-12,-50,-51,1,3,4,4,4,-114,30,-494,-227,-46,-113,33,-490,-223,-42,-4,-17,2,-7,-5 -14220,,22117,"Washington Parish, LA",County or equivalent,47168,47171,47119,47164,46664,46384,46286,-52,45,-500,-280,-98,148,578,546,537,540,83,549,558,587,591,65,29,-12,-50,-51,1,3,4,4,4,-114,30,-494,-227,-46,-113,33,-490,-223,-42,-4,-17,2,-7,-5 -14340,,,"Boone, IA",Micropolitan Statistical Area,26306,26306,26276,26336,26234,26352,26433,-30,60,-102,118,81,72,315,304,315,314,84,289,289,293,288,-12,26,15,22,26,1,2,1,1,1,-18,12,-118,121,54,-17,14,-117,122,55,-1,20,0,-26,0 -14340,,19015,"Boone County, IA",County or equivalent,26306,26306,26276,26336,26234,26352,26433,-30,60,-102,118,81,72,315,304,315,314,84,289,289,293,288,-12,26,15,22,26,1,2,1,1,1,-18,12,-118,121,54,-17,14,-117,122,55,-1,20,0,-26,0 -14380,,,"Boone, NC",Micropolitan Statistical Area,51079,51079,50993,51583,52064,52317,52560,-86,590,481,253,243,90,361,362,335,344,97,362,314,293,341,-7,-1,48,42,3,3,21,20,24,26,-81,570,404,241,239,-78,591,424,265,265,-1,0,9,-54,-25 -14380,,37189,"Watauga County, NC",County or equivalent,51079,51079,50993,51583,52064,52317,52560,-86,590,481,253,243,90,361,362,335,344,97,362,314,293,341,-7,-1,48,42,3,3,21,20,24,26,-81,570,404,241,239,-78,591,424,265,265,-1,0,9,-54,-25 -14420,,,"Borger, TX",Micropolitan Statistical Area,22150,22249,22212,21972,21948,21832,21773,-37,-240,-24,-116,-59,71,286,313,314,309,49,237,224,247,210,22,49,89,67,99,1,11,7,7,7,-61,-335,-117,-145,-170,-60,-324,-110,-138,-163,1,35,-3,-45,5 -14420,,48233,"Hutchinson County, TX",County or equivalent,22150,22249,22212,21972,21948,21832,21773,-37,-240,-24,-116,-59,71,286,313,314,309,49,237,224,247,210,22,49,89,67,99,1,11,7,7,7,-61,-335,-117,-145,-170,-60,-324,-110,-138,-163,1,35,-3,-45,5 -14580,,,"Bozeman, MT",Micropolitan Statistical Area,89513,89510,89599,91333,92604,94694,97308,89,1734,1271,2090,2614,268,1040,1103,1143,1152,148,517,495,515,539,120,523,608,628,613,31,104,106,119,119,-56,1043,552,1316,1784,-25,1147,658,1435,1903,-6,64,5,27,98 -14580,,30031,"Gallatin County, MT",County or equivalent,89513,89510,89599,91333,92604,94694,97308,89,1734,1271,2090,2614,268,1040,1103,1143,1152,148,517,495,515,539,120,523,608,628,613,31,104,106,119,119,-56,1043,552,1316,1784,-25,1147,658,1435,1903,-6,64,5,27,98 -14620,,,"Bradford, PA",Micropolitan Statistical Area,43450,43450,43354,43190,43234,42788,42554,-96,-164,44,-446,-234,109,439,428,381,375,157,527,516,519,512,-48,-88,-88,-138,-137,1,13,12,14,15,-51,-105,124,-286,-96,-50,-92,136,-272,-81,2,16,-4,-36,-16 -14620,,42083,"McKean County, PA",County or equivalent,43450,43450,43354,43190,43234,42788,42554,-96,-164,44,-446,-234,109,439,428,381,375,157,527,516,519,512,-48,-88,-88,-138,-137,1,13,12,14,15,-51,-105,124,-286,-96,-50,-92,136,-272,-81,2,16,-4,-36,-16 -14660,,,"Brainerd, MN",Micropolitan Statistical Area,91067,91067,91249,91023,91248,91652,91824,182,-226,225,404,172,277,1047,1090,1065,1056,211,885,935,911,919,66,162,155,154,137,8,28,36,33,33,116,-375,52,153,29,124,-347,88,186,62,-8,-41,-18,64,-27 -14660,,27021,"Cass County, MN",County or equivalent,28567,28567,28640,28371,28398,28527,28559,73,-269,27,129,32,85,295,361,347,347,52,283,292,313,298,33,12,69,34,49,0,3,4,5,5,41,-277,-40,82,-28,41,-274,-36,87,-23,-1,-7,-6,8,6 -14660,,27035,"Crow Wing County, MN",County or equivalent,62500,62500,62609,62652,62850,63125,63265,109,43,198,275,140,192,752,729,718,709,159,602,643,598,621,33,150,86,120,88,8,25,32,28,28,75,-98,92,71,57,83,-73,124,99,85,-7,-34,-12,56,-33 -14700,,,"Branson, MO",Micropolitan Statistical Area,83877,83877,83983,84543,84675,84859,85334,106,560,132,184,475,246,852,883,876,867,187,820,832,933,866,59,32,51,-57,1,40,118,112,127,127,44,388,-20,154,288,84,506,92,281,415,-37,22,-11,-40,59 -14700,,29209,"Stone County, MO",County or equivalent,32202,32202,32043,31853,31613,31351,31104,-159,-190,-240,-262,-247,76,241,268,253,257,64,336,342,378,366,12,-95,-74,-125,-109,2,5,6,7,7,-130,-126,-163,-59,-197,-128,-121,-157,-52,-190,-43,26,-9,-85,52 -14700,,29213,"Taney County, MO",County or equivalent,51675,51675,51940,52690,53062,53508,54230,265,750,372,446,722,170,611,615,623,610,123,484,490,555,500,47,127,125,68,110,38,113,106,120,120,174,514,143,213,485,212,627,249,333,605,6,-4,-2,45,7 -14720,,,"Breckenridge, CO",Micropolitan Statistical Area,27994,27994,28063,27960,28228,28755,29404,69,-103,268,527,649,62,306,309,239,271,3,54,56,39,59,59,252,253,200,212,35,148,135,146,149,-20,-534,-110,200,289,15,-386,25,346,438,-5,31,-10,-19,-1 -14720,,8117,"Summit County, CO",County or equivalent,27994,27994,28063,27960,28228,28755,29404,69,-103,268,527,649,62,306,309,239,271,3,54,56,39,59,59,252,253,200,212,35,148,135,146,149,-20,-534,-110,200,289,15,-386,25,346,438,-5,31,-10,-19,-1 -14780,,,"Brenham, TX",Micropolitan Statistical Area,33718,33708,33749,33972,33866,34169,34438,41,223,-106,303,269,125,437,379,410,401,109,373,380,343,356,16,64,-1,67,45,7,32,30,31,32,23,134,-138,170,179,30,166,-108,201,211,-5,-7,3,35,13 -14780,,48477,"Washington County, TX",County or equivalent,33718,33708,33749,33972,33866,34169,34438,41,223,-106,303,269,125,437,379,410,401,109,373,380,343,356,16,64,-1,67,45,7,32,30,31,32,23,134,-138,170,179,30,166,-108,201,211,-5,-7,3,35,13 -14820,,,"Brevard, NC",Micropolitan Statistical Area,33090,33090,33073,32819,32854,32925,33045,-17,-254,35,71,120,67,280,256,257,260,83,416,368,403,384,-16,-136,-112,-146,-124,5,24,24,27,27,2,-119,124,192,237,7,-95,148,219,264,-8,-23,-1,-2,-20 -14820,,37175,"Transylvania County, NC",County or equivalent,33090,33090,33073,32819,32854,32925,33045,-17,-254,35,71,120,67,280,256,257,260,83,416,368,403,384,-16,-136,-112,-146,-124,5,24,24,27,27,2,-119,124,192,237,7,-95,148,219,264,-8,-23,-1,-2,-20 -15020,,,"Brookhaven, MS",Micropolitan Statistical Area,34869,34869,34893,34855,34849,34750,34775,24,-38,-6,-99,25,123,437,488,449,452,67,404,394,389,378,56,33,94,60,74,4,7,6,7,7,-31,-76,-102,-180,-36,-27,-69,-96,-173,-29,-5,-2,-4,14,-20 -15020,,28085,"Lincoln County, MS",County or equivalent,34869,34869,34893,34855,34849,34750,34775,24,-38,-6,-99,25,123,437,488,449,452,67,404,394,389,378,56,33,94,60,74,4,7,6,7,7,-31,-76,-102,-180,-36,-27,-69,-96,-173,-29,-5,-2,-4,14,-20 -15060,,,"Brookings, OR",Micropolitan Statistical Area,22364,22364,22364,22457,22249,22299,22335,0,93,-208,50,36,44,180,190,184,191,78,343,349,345,340,-34,-163,-159,-161,-149,2,1,0,1,1,32,271,-46,206,170,34,272,-46,207,171,0,-16,-3,4,14 -15060,,41015,"Curry County, OR",County or equivalent,22364,22364,22364,22457,22249,22299,22335,0,93,-208,50,36,44,180,190,184,191,78,343,349,345,340,-34,-163,-159,-161,-149,2,1,0,1,1,32,271,-46,206,170,34,272,-46,207,171,0,-16,-3,4,14 -15100,,,"Brookings, SD",Micropolitan Statistical Area,31965,31965,32020,32130,32686,33087,33314,55,110,556,401,227,98,367,392,423,410,53,185,205,199,189,45,182,187,224,221,11,92,91,103,104,2,-158,271,74,-88,13,-66,362,177,16,-3,-6,7,0,-10 -15100,,46011,"Brookings County, SD",County or equivalent,31965,31965,32020,32130,32686,33087,33314,55,110,556,401,227,98,367,392,423,410,53,185,205,199,189,45,182,187,224,221,11,92,91,103,104,2,-158,271,74,-88,13,-66,362,177,16,-3,-6,7,0,-10 -15220,,,"Brownwood, TX",Micropolitan Statistical Area,38106,38106,38097,38001,37857,37908,37653,-9,-96,-144,51,-255,90,432,419,414,417,156,473,459,452,443,-66,-41,-40,-38,-26,4,28,28,32,32,62,-66,-128,38,-244,66,-38,-100,70,-212,-9,-17,-4,19,-17 -15220,,48049,"Brown County, TX",County or equivalent,38106,38106,38097,38001,37857,37908,37653,-9,-96,-144,51,-255,90,432,419,414,417,156,473,459,452,443,-66,-41,-40,-38,-26,4,28,28,32,32,62,-66,-128,38,-244,66,-38,-100,70,-212,-9,-17,-4,19,-17 -15340,,,"Bucyrus, OH",Micropolitan Statistical Area,43784,43784,43778,43307,42847,42770,42480,-6,-471,-460,-77,-290,127,510,455,462,469,96,492,544,475,460,31,18,-89,-13,9,0,7,7,7,7,-38,-477,-386,-27,-280,-38,-470,-379,-20,-273,1,-19,8,-44,-26 -15340,,39033,"Crawford County, OH",County or equivalent,43784,43784,43778,43307,42847,42770,42480,-6,-471,-460,-77,-290,127,510,455,462,469,96,492,544,475,460,31,18,-89,-13,9,0,7,7,7,7,-38,-477,-386,-27,-280,-38,-470,-379,-20,-273,1,-19,8,-44,-26 -15420,,,"Burley, ID",Micropolitan Statistical Area,43021,43021,43143,43313,43359,43652,43863,122,170,46,293,211,177,709,735,727,752,97,377,375,330,336,80,332,360,397,416,4,44,34,40,40,41,-221,-350,-109,-246,45,-177,-316,-69,-206,-3,15,2,-35,1 -15420,,16031,"Cassia County, ID",County or equivalent,22952,22958,23078,23146,23270,23342,23540,120,68,124,72,198,94,389,415,373,391,70,201,175,170,168,24,188,240,203,223,0,7,1,4,4,96,-137,-115,-109,-26,96,-130,-114,-105,-22,0,10,-2,-26,-3 -15420,,16067,"Minidoka County, ID",County or equivalent,20069,20063,20065,20167,20089,20310,20323,2,102,-78,221,13,83,320,320,354,361,27,176,200,160,168,56,144,120,194,193,4,37,33,36,36,-55,-84,-235,0,-220,-51,-47,-202,36,-184,-3,5,4,-9,4 -15460,,,"Burlington, IA-IL",Micropolitan Statistical Area,47656,47653,47575,47300,47290,47361,47171,-78,-275,-10,71,-190,123,531,498,509,506,165,543,531,530,519,-42,-12,-33,-21,-13,2,22,22,23,24,-32,-255,0,59,-184,-30,-233,22,82,-160,-6,-30,1,10,-17 -15460,,17071,"Henderson County, IL",County or equivalent,7331,7328,7325,7201,7019,6909,6916,-3,-124,-182,-110,7,10,55,40,38,45,8,91,82,80,81,2,-36,-42,-42,-36,0,-1,-1,-1,-1,-1,-83,-141,-66,47,-1,-84,-142,-67,46,-4,-4,2,-1,-3 -15460,,19057,"Des Moines County, IA",County or equivalent,40325,40325,40250,40099,40271,40452,40255,-75,-151,172,181,-197,113,476,458,471,461,157,452,449,450,438,-44,24,9,21,23,2,23,23,24,25,-31,-172,141,125,-231,-29,-149,164,149,-206,-2,-26,-1,11,-14 -15580,,,"Butte-Silver Bow, MT",Micropolitan Statistical Area,34200,34204,34239,34388,34493,34512,34680,35,149,105,19,168,109,396,429,360,377,120,401,392,395,399,-11,-5,37,-35,-22,11,45,46,50,50,34,111,24,-14,144,45,156,70,36,194,1,-2,-2,18,-4 -15580,,30093,"Silver Bow County, MT",County or equivalent,34200,34204,34239,34388,34493,34512,34680,35,149,105,19,168,109,396,429,360,377,120,401,392,395,399,-11,-5,37,-35,-22,11,45,46,50,50,34,111,24,-14,144,45,156,70,36,194,1,-2,-2,18,-4 -15620,,,"Cadillac, MI",Micropolitan Statistical Area,47584,47584,47575,47640,47631,47653,47923,-9,65,-9,22,270,149,605,564,571,571,150,523,479,483,492,-1,82,85,88,79,2,16,16,18,18,-8,-45,-109,-76,203,-6,-29,-93,-58,221,-2,12,-1,-8,-30 -15620,,26113,"Missaukee County, MI",County or equivalent,14849,14849,14817,14945,15037,15092,15037,-32,128,92,55,-55,38,164,190,166,187,55,160,134,145,158,-17,4,56,21,29,2,13,13,14,14,-17,103,24,35,-85,-15,116,37,49,-71,0,8,-1,-15,-13 -15620,,26165,"Wexford County, MI",County or equivalent,32735,32735,32758,32695,32594,32561,32886,23,-63,-101,-33,325,111,441,374,405,384,95,363,345,338,334,16,78,29,67,50,0,3,3,4,4,9,-148,-133,-111,288,9,-145,-130,-107,292,-2,4,0,7,-17 -15660,,,"Calhoun, GA",Micropolitan Statistical Area,55186,55186,55204,55508,55740,55830,56047,18,304,232,90,217,179,728,725,679,703,79,500,478,438,477,100,228,247,241,226,19,86,79,89,92,-102,1,-89,-237,-88,-83,87,-10,-148,4,1,-11,-5,-3,-13 -15660,,13129,"Gordon County, GA",County or equivalent,55186,55186,55204,55508,55740,55830,56047,18,304,232,90,217,179,728,725,679,703,79,500,478,438,477,100,228,247,241,226,19,86,79,89,92,-102,1,-89,-237,-88,-83,87,-10,-148,4,1,-11,-5,-3,-13 -15700,,,"Cambridge, MD",Micropolitan Statistical Area,32618,32618,32681,32712,32488,32612,32578,63,31,-224,124,-34,107,371,360,412,406,56,327,377,383,373,51,44,-17,29,33,2,17,13,16,16,15,-23,-224,51,-54,17,-6,-211,67,-38,-5,-7,4,28,-29 -15700,,24019,"Dorchester County, MD",County or equivalent,32618,32618,32681,32712,32488,32612,32578,63,31,-224,124,-34,107,371,360,412,406,56,327,377,383,373,51,44,-17,29,33,2,17,13,16,16,15,-23,-224,51,-54,17,-6,-211,67,-38,-5,-7,4,28,-29 -15740,,,"Cambridge, OH",Micropolitan Statistical Area,40087,40087,40102,39847,39813,39614,39590,15,-255,-34,-199,-24,98,465,453,466,455,81,457,433,419,443,17,8,20,47,12,0,2,2,3,3,1,-247,-52,-199,-41,1,-245,-50,-196,-38,-3,-18,-4,-50,2 -15740,,39059,"Guernsey County, OH",County or equivalent,40087,40087,40102,39847,39813,39614,39590,15,-255,-34,-199,-24,98,465,453,466,455,81,457,433,419,443,17,8,20,47,12,0,2,2,3,3,1,-247,-52,-199,-41,1,-245,-50,-196,-38,-3,-18,-4,-50,2 -15780,,,"Camden, AR",Micropolitan Statistical Area,31488,31489,31439,31026,30710,30232,30030,-50,-413,-316,-478,-202,93,376,361,346,348,135,416,398,403,391,-42,-40,-37,-57,-43,1,3,3,5,6,3,-433,-283,-405,-148,4,-430,-280,-400,-142,-12,57,1,-21,-17 -15780,,5013,"Calhoun County, AR",County or equivalent,5368,5368,5330,5280,5299,5219,5202,-38,-50,19,-80,-17,7,42,48,49,51,4,57,50,56,47,3,-15,-2,-7,4,0,0,0,0,0,-35,-71,20,-59,-24,-35,-71,20,-59,-24,-6,36,1,-14,3 -15780,,5103,"Ouachita County, AR",County or equivalent,26120,26121,26109,25746,25411,25013,24828,-12,-363,-335,-398,-185,86,334,313,297,297,131,359,348,347,344,-45,-25,-35,-50,-47,1,3,3,5,6,38,-362,-303,-346,-124,39,-359,-300,-341,-118,-6,21,0,-7,-20 -15820,,,"Campbellsville, KY",Micropolitan Statistical Area,24512,24512,24802,24997,25049,25190,25257,290,195,52,141,67,77,303,309,338,324,90,280,260,309,309,-13,23,49,29,15,8,33,32,35,35,273,151,-28,59,2,281,184,4,94,37,22,-12,-1,18,15 -15820,,21217,"Taylor County, KY",County or equivalent,24512,24512,24802,24997,25049,25190,25257,290,195,52,141,67,77,303,309,338,324,90,280,260,309,309,-13,23,49,29,15,8,33,32,35,35,273,151,-28,59,2,281,184,4,94,37,22,-12,-1,18,15 -15860,,,"Cañon City, CO",Micropolitan Statistical Area,46824,46824,46885,47431,47114,46463,46502,61,546,-317,-651,39,109,379,389,339,339,154,530,498,515,530,-45,-151,-109,-176,-191,12,53,43,48,50,94,609,-255,-536,184,106,662,-212,-488,234,0,35,4,13,-4 -15860,,8043,"Fremont County, CO",County or equivalent,46824,46824,46885,47431,47114,46463,46502,61,546,-317,-651,39,109,379,389,339,339,154,530,498,515,530,-45,-151,-109,-176,-191,12,53,43,48,50,94,609,-255,-536,184,106,662,-212,-488,234,0,35,4,13,-4 -15900,,,"Canton, IL",Micropolitan Statistical Area,37069,37069,37071,36973,36659,36369,36007,2,-98,-314,-290,-362,95,375,354,347,348,72,462,464,446,457,23,-87,-110,-99,-109,0,11,11,13,13,-14,-9,-214,-201,-295,-14,2,-203,-188,-282,-7,-13,-1,-3,29 -15900,,17057,"Fulton County, IL",County or equivalent,37069,37069,37071,36973,36659,36369,36007,2,-98,-314,-290,-362,95,375,354,347,348,72,462,464,446,457,23,-87,-110,-99,-109,0,11,11,13,13,-14,-9,-214,-201,-295,-14,2,-203,-188,-282,-7,-13,-1,-3,29 -16100,,,"Carlsbad-Artesia, NM",Micropolitan Statistical Area,53829,53829,53897,54021,54370,55486,56395,68,124,349,1116,909,187,767,699,867,823,109,578,509,519,519,78,189,190,348,304,0,-4,-3,1,1,-4,-44,169,843,550,-4,-48,166,844,551,-6,-17,-7,-76,54 -16100,,35015,"Eddy County, NM",County or equivalent,53829,53829,53897,54021,54370,55486,56395,68,124,349,1116,909,187,767,699,867,823,109,578,509,519,519,78,189,190,348,304,0,-4,-3,1,1,-4,-44,169,843,550,-4,-48,166,844,551,-6,-17,-7,-76,54 -16260,,,"Cedar City, UT",Micropolitan Statistical Area,46163,46163,46264,46658,46730,46706,47269,101,394,72,-24,563,237,877,831,843,811,80,262,292,269,274,157,615,539,574,537,11,39,43,42,42,-66,-278,-517,-652,10,-55,-239,-474,-610,52,-1,18,7,12,-26 -16260,,49021,"Iron County, UT",County or equivalent,46163,46163,46264,46658,46730,46706,47269,101,394,72,-24,563,237,877,831,843,811,80,262,292,269,274,157,615,539,574,537,11,39,43,42,42,-66,-278,-517,-652,10,-55,-239,-474,-610,52,-1,18,7,12,-26 -16340,,,"Cedartown, GA",Micropolitan Statistical Area,41475,41475,41532,41283,41127,41177,41133,57,-249,-156,50,-44,142,600,561,575,577,84,461,450,461,463,58,139,111,114,114,20,83,77,86,88,-20,-460,-351,-173,-244,0,-377,-274,-87,-156,-1,-11,7,23,-2 -16340,,13233,"Polk County, GA",County or equivalent,41475,41475,41532,41283,41127,41177,41133,57,-249,-156,50,-44,142,600,561,575,577,84,461,450,461,463,58,139,111,114,114,20,83,77,86,88,-20,-460,-351,-173,-244,0,-377,-274,-87,-156,-1,-11,7,23,-2 -16380,,,"Celina, OH",Micropolitan Statistical Area,40814,40814,40767,40795,40827,40724,40831,-47,28,32,-103,107,128,514,519,520,516,119,383,424,368,377,9,131,95,152,139,2,5,5,5,5,-61,-147,-67,-256,-22,-59,-142,-62,-251,-17,3,39,-1,-4,-15 -16380,,39107,"Mercer County, OH",County or equivalent,40814,40814,40767,40795,40827,40724,40831,-47,28,32,-103,107,128,514,519,520,516,119,383,424,368,377,9,131,95,152,139,2,5,5,5,5,-61,-147,-67,-256,-22,-59,-142,-62,-251,-17,3,39,-1,-4,-15 -16460,,,"Centralia, IL",Micropolitan Statistical Area,39437,39437,39455,39014,38923,38646,38571,18,-441,-91,-277,-75,130,490,503,495,491,165,553,488,422,403,-35,-63,15,73,88,1,7,7,7,7,58,-451,-113,-329,-150,59,-444,-106,-322,-143,-6,66,0,-28,-20 -16460,,17121,"Marion County, IL",County or equivalent,39437,39437,39455,39014,38923,38646,38571,18,-441,-91,-277,-75,130,490,503,495,491,165,553,488,422,403,-35,-63,15,73,88,1,7,7,7,7,58,-451,-113,-329,-150,59,-444,-106,-322,-143,-6,66,0,-28,-20 -16500,,,"Centralia, WA",Micropolitan Statistical Area,75455,75455,75487,75660,75532,75102,75128,32,173,-128,-430,26,223,924,861,863,846,158,869,811,802,791,65,55,50,61,55,11,46,42,46,46,-43,93,-224,-521,-152,-32,139,-182,-475,-106,-1,-21,4,-16,77 -16500,,53041,"Lewis County, WA",County or equivalent,75455,75455,75487,75660,75532,75102,75128,32,173,-128,-430,26,223,924,861,863,846,158,869,811,802,791,65,55,50,61,55,11,46,42,46,46,-43,93,-224,-521,-152,-32,139,-182,-475,-106,-1,-21,4,-16,77 -16660,,,"Charleston-Mattoon, IL",Micropolitan Statistical Area,64921,64921,64972,64819,64567,64512,64153,51,-153,-252,-55,-359,176,623,632,594,597,165,636,598,584,573,11,-13,34,10,24,12,37,33,39,39,38,-159,-316,-60,-410,50,-122,-283,-21,-371,-10,-18,-3,-44,-12 -16660,,17029,"Coles County, IL",County or equivalent,53873,53873,53931,53751,53631,53641,53320,58,-180,-120,10,-321,151,504,514,497,505,146,511,487,476,470,5,-7,27,21,35,7,25,22,25,25,53,-184,-166,-6,-358,60,-159,-144,19,-333,-7,-14,-3,-30,-23 -16660,,17035,"Cumberland County, IL",County or equivalent,11048,11048,11041,11068,10936,10871,10833,-7,27,-132,-65,-38,25,119,118,97,92,19,125,111,108,103,6,-6,7,-11,-11,5,12,11,14,14,-15,25,-150,-54,-52,-10,37,-139,-40,-38,-3,-4,0,-14,11 -17060,,,"Chillicothe, OH",Micropolitan Statistical Area,78064,78064,78126,77627,77485,77364,77159,62,-499,-142,-121,-205,208,776,910,807,828,171,842,819,788,785,37,-66,91,19,43,7,30,30,29,29,23,-465,-263,-124,-252,30,-435,-233,-95,-223,-5,2,0,-45,-25 -17060,,39141,"Ross County, OH",County or equivalent,78064,78064,78126,77627,77485,77364,77159,62,-499,-142,-121,-205,208,776,910,807,828,171,842,819,788,785,37,-66,91,19,43,7,30,30,29,29,23,-465,-263,-124,-252,30,-435,-233,-95,-223,-5,2,0,-45,-25 -17200,,,"Claremont-Lebanon, NH-VT",Micropolitan Statistical Area,218466,218458,218367,218178,217690,217666,217634,-91,-189,-488,-24,-32,478,1984,1984,1851,1892,541,1999,1962,2016,1946,-63,-15,22,-165,-54,55,320,331,364,366,-73,-422,-839,-148,-233,-18,-102,-508,216,133,-10,-72,-2,-75,-111 -17200,,33009,"Grafton County, NH",County or equivalent,89118,89114,89105,89067,89342,89628,89658,-9,-38,275,286,30,184,758,797,729,755,189,754,767,801,763,-5,4,30,-72,-8,45,246,252,281,281,-44,-260,-1,27,-197,1,-14,251,308,84,-5,-28,-6,50,-46 -17200,,33019,"Sullivan County, NH",County or equivalent,43742,43742,43720,43460,43188,42986,43103,-22,-260,-272,-202,117,109,414,409,381,389,114,420,391,443,414,-5,-6,18,-62,-25,2,25,25,25,26,-16,-262,-314,-84,146,-14,-237,-289,-59,172,-3,-17,-1,-81,-30 -17200,,50017,"Orange County, VT",County or equivalent,28936,28936,28941,29025,28933,28879,28859,5,84,-92,-54,-20,69,289,276,264,257,70,242,238,226,238,-1,47,38,38,19,0,9,9,11,12,8,35,-140,-73,-58,8,44,-131,-62,-46,-2,-7,1,-30,7 -17200,,50027,"Windsor County, VT",County or equivalent,56670,56666,56601,56626,56227,56173,56014,-65,25,-399,-54,-159,116,523,502,477,491,168,583,566,546,531,-52,-60,-64,-69,-40,8,40,45,47,47,-21,65,-384,-18,-124,-13,105,-339,29,-77,0,-20,4,-14,-42 -17220,,,"Clarksburg, WV",Micropolitan Statistical Area,94196,94196,94315,94374,94352,94335,94221,119,59,-22,-17,-114,246,1037,1062,1030,1031,259,1183,1164,1083,1122,-13,-146,-102,-53,-91,4,23,22,24,24,125,202,66,139,-86,129,225,88,163,-62,3,-20,-8,-127,39 -17220,,54017,"Doddridge County, WV",County or equivalent,8202,8202,8198,8183,8220,8417,8391,-4,-15,37,197,-26,18,67,63,69,70,28,77,86,79,71,-10,-10,-23,-10,-1,0,2,2,2,2,7,-35,60,223,-46,7,-33,62,225,-44,-1,28,-2,-18,19 -17220,,54033,"Harrison County, WV",County or equivalent,69099,69102,69240,69269,69148,68926,68761,138,29,-121,-222,-165,191,797,820,775,781,162,903,882,830,866,29,-106,-62,-55,-85,4,21,20,22,22,101,159,-74,-97,-126,105,180,-54,-75,-104,4,-45,-5,-92,24 -17220,,54091,"Taylor County, WV",County or equivalent,16895,16892,16877,16922,16984,16992,17069,-15,45,62,8,77,37,173,179,186,180,69,203,196,174,185,-32,-30,-17,12,-5,0,0,0,0,0,17,78,80,13,86,17,78,80,13,86,0,-3,-1,-17,-4 -17260,,,"Clarksdale, MS",Micropolitan Statistical Area,26151,26151,26114,25862,25685,25165,24807,-37,-252,-177,-520,-358,104,455,429,421,396,95,306,283,308,291,9,149,146,113,105,3,14,15,16,16,-50,-419,-342,-618,-482,-47,-405,-327,-602,-466,1,4,4,-31,3 -17260,,28027,"Coahoma County, MS",County or equivalent,26151,26151,26114,25862,25685,25165,24807,-37,-252,-177,-520,-358,104,455,429,421,396,95,306,283,308,291,9,149,146,113,105,3,14,15,16,16,-50,-419,-342,-618,-482,-47,-405,-327,-602,-466,1,4,4,-31,3 -17340,,,"Clearlake, CA",Micropolitan Statistical Area,64665,64665,64757,64279,63984,63843,64184,92,-478,-295,-141,341,175,740,726,720,731,169,795,840,769,769,6,-55,-114,-49,-38,4,10,6,11,17,78,-386,-178,-78,378,82,-376,-172,-67,395,4,-47,-9,-25,-16 -17340,,6033,"Lake County, CA",County or equivalent,64665,64665,64757,64279,63984,63843,64184,92,-478,-295,-141,341,175,740,726,720,731,169,795,840,769,769,6,-55,-114,-49,-38,4,10,6,11,17,78,-386,-178,-78,378,82,-376,-172,-67,395,4,-47,-9,-25,-16 -17380,,,"Cleveland, MS",Micropolitan Statistical Area,34145,34147,34121,33838,34061,34019,33768,-26,-283,223,-42,-251,158,589,569,548,551,75,402,423,438,418,83,187,146,110,133,1,-2,-2,-2,-1,-109,-483,81,-152,-385,-108,-485,79,-154,-386,-1,15,-2,2,2 -17380,,28011,"Bolivar County, MS",County or equivalent,34145,34147,34121,33838,34061,34019,33768,-26,-283,223,-42,-251,158,589,569,548,551,75,402,423,438,418,83,187,146,110,133,1,-2,-2,-2,-1,-109,-483,81,-152,-385,-108,-485,79,-154,-386,-1,15,-2,2,2 -17500,,,"Clewiston, FL",Micropolitan Statistical Area,39140,39140,39044,38816,37686,37750,38505,-96,-228,-1130,64,755,162,620,576,590,596,97,275,248,250,284,65,345,328,340,312,47,200,177,200,206,-222,-828,-1687,-445,256,-175,-628,-1510,-245,462,14,55,52,-31,-19 -17500,,12051,"Hendry County, FL",County or equivalent,39140,39140,39044,38816,37686,37750,38505,-96,-228,-1130,64,755,162,620,576,590,596,97,275,248,250,284,65,345,328,340,312,47,200,177,200,206,-222,-828,-1687,-445,256,-175,-628,-1510,-245,462,14,55,52,-31,-19 -17540,,,"Clinton, IA",Micropolitan Statistical Area,49116,49116,49109,49103,48723,48330,48051,-7,-6,-380,-393,-279,167,599,571,550,552,165,541,530,518,494,2,58,41,32,58,5,21,21,23,23,-11,-57,-449,-488,-340,-6,-36,-428,-465,-317,-3,-28,7,40,-20 -17540,,19045,"Clinton County, IA",County or equivalent,49116,49116,49109,49103,48723,48330,48051,-7,-6,-380,-393,-279,167,599,571,550,552,165,541,530,518,494,2,58,41,32,58,5,21,21,23,23,-11,-57,-449,-488,-340,-6,-36,-428,-465,-317,-3,-28,7,40,-20 -17580,,,"Clovis, NM",Micropolitan Statistical Area,48376,48376,48962,49681,50674,50580,50969,586,719,993,-94,389,222,955,949,901,915,73,374,388,368,354,149,581,561,533,561,53,94,348,229,193,361,32,71,-846,-352,414,126,419,-617,-159,23,12,13,-10,-13 -17580,,35009,"Curry County, NM",County or equivalent,48376,48376,48962,49681,50674,50580,50969,586,719,993,-94,389,222,955,949,901,915,73,374,388,368,354,149,581,561,533,561,53,94,348,229,193,361,32,71,-846,-352,414,126,419,-617,-159,23,12,13,-10,-13 -17700,,,"Coffeyville, KS",Micropolitan Statistical Area,35471,35471,35370,34744,34433,34396,34065,-101,-626,-311,-37,-331,103,426,517,476,494,134,452,446,398,363,-31,-26,71,78,131,8,31,31,32,32,-79,-668,-419,-122,-506,-71,-637,-388,-90,-474,1,37,6,-25,12 -17700,,20125,"Montgomery County, KS",County or equivalent,35471,35471,35370,34744,34433,34396,34065,-101,-626,-311,-37,-331,103,426,517,476,494,134,452,446,398,363,-31,-26,71,78,131,8,31,31,32,32,-79,-668,-419,-122,-506,-71,-637,-388,-90,-474,1,37,6,-25,12 -17740,,,"Coldwater, MI",Micropolitan Statistical Area,45248,45248,45164,43886,43756,43472,43545,-84,-1278,-130,-284,73,125,548,479,505,487,77,434,448,434,413,48,114,31,71,74,6,36,35,37,37,-142,-1483,-202,-367,-2,-136,-1447,-167,-330,35,4,55,6,-25,-36 -17740,,26023,"Branch County, MI",County or equivalent,45248,45248,45164,43886,43756,43472,43545,-84,-1278,-130,-284,73,125,548,479,505,487,77,434,448,434,413,48,114,31,71,74,6,36,35,37,37,-142,-1483,-202,-367,-2,-136,-1447,-167,-330,35,4,55,6,-25,-36 -18060,,,"Columbus, MS",Micropolitan Statistical Area,59779,59779,59820,59586,59641,59901,59730,41,-234,55,260,-171,197,788,804,828,827,135,589,557,517,562,62,199,247,311,265,30,44,145,96,79,-51,-457,-342,-168,-480,-21,-413,-197,-72,-401,0,-20,5,21,-35 -18060,,28087,"Lowndes County, MS",County or equivalent,59779,59779,59820,59586,59641,59901,59730,41,-234,55,260,-171,197,788,804,828,827,135,589,557,517,562,62,199,247,311,265,30,44,145,96,79,-51,-457,-342,-168,-480,-21,-413,-197,-72,-401,0,-20,5,21,-35 -18100,,,"Columbus, NE",Micropolitan Statistical Area,32237,32237,32268,32420,32558,32513,32666,31,152,138,-45,153,109,456,487,492,468,48,289,245,256,259,61,167,242,236,209,6,29,30,33,34,-34,-59,-131,-331,-88,-28,-30,-101,-298,-54,-2,15,-3,17,-2 -18100,,31141,"Platte County, NE",County or equivalent,32237,32237,32268,32420,32558,32513,32666,31,152,138,-45,153,109,456,487,492,468,48,289,245,256,259,61,167,242,236,209,6,29,30,33,34,-34,-59,-131,-331,-88,-28,-30,-101,-298,-54,-2,15,-3,17,-2 -18180,,,"Concord, NH",Micropolitan Statistical Area,146445,146442,146411,146681,146987,147150,147171,-31,270,306,163,21,337,1423,1296,1370,1334,340,1240,1266,1269,1228,-3,183,30,101,106,48,189,195,219,220,-72,-59,107,-265,-241,-24,130,302,-46,-21,-4,-43,-26,108,-64 -18180,,33013,"Merrimack County, NH",County or equivalent,146445,146442,146411,146681,146987,147150,147171,-31,270,306,163,21,337,1423,1296,1370,1334,340,1240,1266,1269,1228,-3,183,30,101,106,48,189,195,219,220,-72,-59,107,-265,-241,-24,130,302,-46,-21,-4,-43,-26,108,-64 -18220,,,"Connersville, IN",Micropolitan Statistical Area,24277,24302,24341,24163,23965,23839,23468,39,-178,-198,-126,-371,71,233,233,238,224,53,322,307,312,271,18,-89,-74,-74,-47,0,1,1,1,1,22,-78,-125,-43,-319,22,-77,-124,-42,-318,-1,-12,0,-10,-6 -18220,,18041,"Fayette County, IN",County or equivalent,24277,24302,24341,24163,23965,23839,23468,39,-178,-198,-126,-371,71,233,233,238,224,53,322,307,312,271,18,-89,-74,-74,-47,0,1,1,1,1,22,-78,-125,-43,-319,22,-77,-124,-42,-318,-1,-12,0,-10,-6 -18260,,,"Cookeville, TN",Micropolitan Statistical Area,106042,106050,106237,106547,106811,107143,107761,187,310,264,332,618,298,1252,1238,1236,1222,249,1044,1189,1181,1163,49,208,49,55,59,26,135,129,142,144,114,16,100,81,412,140,151,229,223,556,-2,-49,-14,54,3 -18260,,47087,"Jackson County, TN",County or equivalent,11638,11638,11607,11518,11529,11551,11568,-31,-89,11,22,17,29,93,110,117,117,20,132,146,161,151,9,-39,-36,-44,-34,0,-2,-2,-2,-2,-32,-42,49,57,50,-32,-44,47,55,48,-8,-6,0,11,3 -18260,,47133,"Overton County, TN",County or equivalent,22083,22084,22088,22177,22211,22039,22028,4,89,34,-172,-11,55,252,261,225,226,80,264,275,300,302,-25,-12,-14,-75,-76,1,3,3,4,4,28,97,49,-106,53,29,100,52,-102,57,0,1,-4,5,8 -18260,,47141,"Putnam County, TN",County or equivalent,72321,72328,72542,72852,73071,73553,74165,214,310,219,482,612,214,907,867,894,879,149,648,768,720,710,65,259,99,174,169,25,134,128,140,142,118,-39,2,130,309,143,95,130,270,451,6,-44,-10,38,-8 -18300,,,"Coos Bay, OR",Micropolitan Statistical Area,63043,63043,63010,62782,62690,62433,62475,-33,-228,-92,-257,42,165,607,587,640,620,237,835,881,838,857,-72,-228,-294,-198,-237,3,10,30,22,18,36,34,166,-112,227,39,44,196,-90,245,0,-44,6,31,34 -18300,,41011,"Coos County, OR",County or equivalent,63043,63043,63010,62782,62690,62433,62475,-33,-228,-92,-257,42,165,607,587,640,620,237,835,881,838,857,-72,-228,-294,-198,-237,3,10,30,22,18,36,34,166,-112,227,39,44,196,-90,245,0,-44,6,31,34 -18380,,,"Cordele, GA",Micropolitan Statistical Area,23439,23439,23407,23785,23657,23232,22934,-32,378,-128,-425,-298,84,336,292,294,284,29,252,227,263,266,55,84,65,31,18,0,6,6,8,8,-80,283,-204,-434,-316,-80,289,-198,-426,-308,-7,5,5,-30,-8 -18380,,13081,"Crisp County, GA",County or equivalent,23439,23439,23407,23785,23657,23232,22934,-32,378,-128,-425,-298,84,336,292,294,284,29,252,227,263,266,55,84,65,31,18,0,6,6,8,8,-80,283,-204,-434,-316,-80,289,-198,-426,-308,-7,5,5,-30,-8 -18420,,,"Corinth, MS",Micropolitan Statistical Area,37057,37057,37111,37303,37237,37364,37380,54,192,-66,127,16,112,445,439,445,446,78,442,448,432,431,34,3,-9,13,15,-1,26,25,24,24,21,186,-75,68,-2,20,212,-50,92,22,0,-23,-7,22,-21 -18420,,28003,"Alcorn County, MS",County or equivalent,37057,37057,37111,37303,37237,37364,37380,54,192,-66,127,16,112,445,439,445,446,78,442,448,432,431,34,3,-9,13,15,-1,26,25,24,24,21,186,-75,68,-2,20,212,-50,92,22,0,-23,-7,22,-21 -18460,,,"Cornelia, GA",Micropolitan Statistical Area,43041,43041,43095,43106,43463,43294,43752,54,11,357,-169,458,129,519,494,507,508,79,402,394,425,415,50,117,100,82,93,-1,-8,-5,-2,-1,8,-95,255,-273,348,7,-103,250,-275,347,-3,-3,7,24,18 -18460,,13137,"Habersham County, GA",County or equivalent,43041,43041,43095,43106,43463,43294,43752,54,11,357,-169,458,129,519,494,507,508,79,402,394,425,415,50,117,100,82,93,-1,-8,-5,-2,-1,8,-95,255,-273,348,7,-103,250,-275,347,-3,-3,7,24,18 -18500,,,"Corning, NY",Micropolitan Statistical Area,98990,98988,98939,99252,99048,98951,98394,-49,313,-204,-97,-557,274,1103,1127,1088,1107,214,959,982,965,973,60,144,145,123,134,16,84,84,91,91,-116,74,-425,-267,-771,-100,158,-341,-176,-680,-9,11,-8,-44,-11 -18500,,36101,"Steuben County, NY",County or equivalent,98990,98988,98939,99252,99048,98951,98394,-49,313,-204,-97,-557,274,1103,1127,1088,1107,214,959,982,965,973,60,144,145,123,134,16,84,84,91,91,-116,74,-425,-267,-771,-100,158,-341,-176,-680,-9,11,-8,-44,-11 -18620,,,"Corsicana, TX",Micropolitan Statistical Area,47735,47831,47848,48056,48131,48133,48195,17,208,75,2,62,164,668,669,707,678,124,466,489,469,505,40,202,180,238,173,0,22,22,28,31,-17,6,-129,-301,-151,-17,28,-107,-273,-120,-6,-22,2,37,9 -18620,,48349,"Navarro County, TX",County or equivalent,47735,47831,47848,48056,48131,48133,48195,17,208,75,2,62,164,668,669,707,678,124,466,489,469,505,40,202,180,238,173,0,22,22,28,31,-17,6,-129,-301,-151,-17,28,-107,-273,-120,-6,-22,2,37,9 -18660,,,"Cortland, NY",Micropolitan Statistical Area,49336,49303,49257,49520,49203,49149,49024,-46,263,-317,-54,-125,116,476,456,469,450,84,430,448,438,409,32,46,8,31,41,10,37,37,40,40,-79,122,-369,-80,-190,-69,159,-332,-40,-150,-9,58,7,-45,-16 -18660,,36023,"Cortland County, NY",County or equivalent,49336,49303,49257,49520,49203,49149,49024,-46,263,-317,-54,-125,116,476,456,469,450,84,430,448,438,409,32,46,8,31,41,10,37,37,40,40,-79,122,-369,-80,-190,-69,159,-332,-40,-150,-9,58,7,-45,-16 -18740,,,"Coshocton, OH",Micropolitan Statistical Area,36901,36901,36914,36903,36806,36700,36516,13,-11,-97,-106,-184,102,427,441,440,426,68,385,400,390,369,34,42,41,50,57,1,2,3,3,3,-19,-29,-143,-174,-242,-18,-27,-140,-171,-239,-3,-26,2,15,-2 -18740,,39031,"Coshocton County, OH",County or equivalent,36901,36901,36914,36903,36806,36700,36516,13,-11,-97,-106,-184,102,427,441,440,426,68,385,400,390,369,34,42,41,50,57,1,2,3,3,3,-19,-29,-143,-174,-242,-18,-27,-140,-171,-239,-3,-26,2,15,-2 -18780,,,"Craig, CO",Micropolitan Statistical Area,13795,13795,13802,13420,13167,13115,12928,7,-382,-253,-52,-187,49,186,164,193,179,44,68,120,84,76,5,118,44,109,103,2,13,12,13,13,1,-532,-316,-161,-323,3,-519,-304,-148,-310,-1,19,7,-13,20 -18780,,8081,"Moffat County, CO",County or equivalent,13795,13795,13802,13420,13167,13115,12928,7,-382,-253,-52,-187,49,186,164,193,179,44,68,120,84,76,5,118,44,109,103,2,13,12,13,13,1,-532,-316,-161,-323,3,-519,-304,-148,-310,-1,19,7,-13,20 -18820,,,"Crawfordsville, IN",Micropolitan Statistical Area,38124,38126,38096,38343,38202,38130,38146,-30,247,-141,-72,16,115,476,442,499,489,59,365,420,373,373,56,111,22,126,116,1,7,8,9,9,-83,148,-172,-173,-88,-82,155,-164,-164,-79,-4,-19,1,-34,-21 -18820,,18107,"Montgomery County, IN",County or equivalent,38124,38126,38096,38343,38202,38130,38146,-30,247,-141,-72,16,115,476,442,499,489,59,365,420,373,373,56,111,22,126,116,1,7,8,9,9,-83,148,-172,-173,-88,-82,155,-164,-164,-79,-4,-19,1,-34,-21 -18860,,,"Crescent City, CA",Micropolitan Statistical Area,28610,28610,28580,28485,28226,27827,27212,-30,-95,-259,-399,-615,107,335,324,300,294,93,295,284,233,246,14,40,40,67,48,3,15,14,16,17,-50,-146,-317,-443,-685,-47,-131,-303,-427,-668,3,-4,4,-39,5 -18860,,6015,"Del Norte County, CA",County or equivalent,28610,28610,28580,28485,28226,27827,27212,-30,-95,-259,-399,-615,107,335,324,300,294,93,295,284,233,246,14,40,40,67,48,3,15,14,16,17,-50,-146,-317,-443,-685,-47,-131,-303,-427,-668,3,-4,4,-39,5 -18900,,,"Crossville, TN",Micropolitan Statistical Area,56053,56053,56206,56600,57037,57492,57985,153,394,437,455,493,144,582,555,575,572,178,706,747,774,765,-34,-124,-192,-199,-193,4,15,15,16,16,176,469,614,551,675,180,484,629,567,691,7,34,0,87,-5 -18900,,47035,"Cumberland County, TN",County or equivalent,56053,56053,56206,56600,57037,57492,57985,153,394,437,455,493,144,582,555,575,572,178,706,747,774,765,-34,-124,-192,-199,-193,4,15,15,16,16,176,469,614,551,675,180,484,629,567,691,7,34,0,87,-5 -18980,,,"Cullman, AL",Micropolitan Statistical Area,80406,80410,80454,80455,80361,80783,81289,44,1,-94,422,506,231,996,927,967,968,228,909,965,961,952,3,87,-38,6,16,9,35,32,41,43,33,-114,-82,334,426,42,-79,-50,375,469,-1,-7,-6,41,21 -18980,,1043,"Cullman County, AL",County or equivalent,80406,80410,80454,80455,80361,80783,81289,44,1,-94,422,506,231,996,927,967,968,228,909,965,961,952,3,87,-38,6,16,9,35,32,41,43,33,-114,-82,334,426,42,-79,-50,375,469,-1,-7,-6,41,21 -19000,,,"Cullowhee, NC",Micropolitan Statistical Area,40271,40271,40352,40181,40516,40960,40981,81,-171,335,444,21,110,432,365,369,372,55,330,331,350,332,55,102,34,19,40,11,55,56,61,62,21,-314,243,359,-66,32,-259,299,420,-4,-6,-14,2,5,-15 -19000,,37099,"Jackson County, NC",County or equivalent,40271,40271,40352,40181,40516,40960,40981,81,-171,335,444,21,110,432,365,369,372,55,330,331,350,332,55,102,34,19,40,11,55,56,61,62,21,-314,243,359,-66,32,-259,299,420,-4,-6,-14,2,5,-15 -19220,,,"Danville, KY",Micropolitan Statistical Area,53174,53174,53407,53465,53456,54001,54151,233,58,-9,545,150,161,620,577,631,610,138,571,601,546,550,23,49,-24,85,60,3,5,6,6,6,192,21,1,431,102,195,26,7,437,108,15,-17,8,23,-18 -19220,,21021,"Boyle County, KY",County or equivalent,28432,28420,28651,28756,29048,29588,29706,231,105,292,540,118,72,296,287,305,294,58,321,326,275,286,14,-25,-39,30,8,3,6,7,7,7,200,129,320,466,115,203,135,327,473,122,14,-5,4,37,-12 -19220,,21137,"Lincoln County, KY",County or equivalent,24742,24754,24756,24709,24408,24413,24445,2,-47,-301,5,32,89,324,290,326,316,80,250,275,271,264,9,74,15,55,52,0,-1,-1,-1,-1,-8,-108,-319,-35,-13,-8,-109,-320,-36,-14,1,-12,4,-14,-6 -19260,,,"Danville, VA",Micropolitan Statistical Area,106561,106558,106504,105960,105684,105317,104827,-54,-544,-276,-367,-490,255,1054,1083,1092,1105,384,1322,1390,1431,1384,-129,-268,-307,-339,-279,7,48,44,50,52,54,-422,1,-127,-225,61,-374,45,-77,-173,14,98,-14,49,-38 -19260,,51143,"Pittsylvania County, VA",County or equivalent,63506,63492,63571,63374,62898,62547,62383,79,-197,-476,-351,-164,121,482,490,501,512,202,641,691,726,695,-81,-159,-201,-225,-183,4,33,31,34,36,146,-140,-300,-172,35,150,-107,-269,-138,71,10,69,-6,12,-52 -19260,,51590,"Danville city, VA",County or equivalent,43055,43066,42933,42586,42786,42770,42444,-133,-347,200,-16,-326,134,572,593,591,593,182,681,699,705,689,-48,-109,-106,-114,-96,3,15,13,16,16,-92,-282,301,45,-260,-89,-267,314,61,-244,4,29,-8,37,14 -19420,,,"Dayton, TN",Micropolitan Statistical Area,31809,31809,31877,32018,32307,32515,32641,68,141,289,208,126,105,383,372,377,362,58,354,335,356,357,47,29,37,21,5,5,16,16,17,19,18,104,234,150,126,23,120,250,167,145,-2,-8,2,20,-24 -19420,,47143,"Rhea County, TN",County or equivalent,31809,31809,31877,32018,32307,32515,32641,68,141,289,208,126,105,383,372,377,362,58,354,335,356,357,47,29,37,21,5,5,16,16,17,19,18,104,234,150,126,23,120,250,167,145,-2,-8,2,20,-24 -19540,,,"Decatur, IN",Micropolitan Statistical Area,34387,34387,34435,34351,34401,34685,34791,48,-84,50,284,106,163,636,678,702,695,59,316,316,279,252,104,320,362,423,443,2,5,6,7,7,-61,-414,-324,-116,-350,-59,-409,-318,-109,-343,3,5,6,-30,6 -19540,,18001,"Adams County, IN",County or equivalent,34387,34387,34435,34351,34401,34685,34791,48,-84,50,284,106,163,636,678,702,695,59,316,316,279,252,104,320,362,423,443,2,5,6,7,7,-61,-414,-324,-116,-350,-59,-409,-318,-109,-343,3,5,6,-30,6 -19580,,,"Defiance, OH",Micropolitan Statistical Area,39037,39035,39106,39024,38818,38515,38510,71,-82,-206,-303,-5,106,494,447,422,430,117,376,382,388,396,-11,118,65,34,34,3,18,17,20,20,78,-219,-291,-364,-63,81,-201,-274,-344,-43,1,1,3,7,4 -19580,,39039,"Defiance County, OH",County or equivalent,39037,39035,39106,39024,38818,38515,38510,71,-82,-206,-303,-5,106,494,447,422,430,117,376,382,388,396,-11,118,65,34,34,3,18,17,20,20,78,-219,-291,-364,-63,81,-201,-274,-344,-43,1,1,3,7,4 -19620,,,"Del Rio, TX",Micropolitan Statistical Area,48879,48879,49008,49001,48953,49059,48974,129,-7,-48,106,-85,208,881,873,868,866,120,332,334,369,348,88,549,539,499,518,34,93,173,131,123,11,-666,-770,-557,-718,45,-573,-597,-426,-595,-4,17,10,33,-8 -19620,,48465,"Val Verde County, TX",County or equivalent,48879,48879,49008,49001,48953,49059,48974,129,-7,-48,106,-85,208,881,873,868,866,120,332,334,369,348,88,549,539,499,518,34,93,173,131,123,11,-666,-770,-557,-718,45,-573,-597,-426,-595,-4,17,10,33,-8 -19700,,,"Deming, NM",Micropolitan Statistical Area,25095,25095,25116,25147,25019,24778,24673,21,31,-128,-241,-105,93,382,390,403,409,92,296,286,260,262,1,86,104,143,147,4,11,9,11,13,16,-63,-241,-389,-266,20,-52,-232,-378,-253,0,-3,0,-6,1 -19700,,35029,"Luna County, NM",County or equivalent,25095,25095,25116,25147,25019,24778,24673,21,31,-128,-241,-105,93,382,390,403,409,92,296,286,260,262,1,86,104,143,147,4,11,9,11,13,16,-63,-241,-389,-266,20,-52,-232,-378,-253,0,-3,0,-6,1 -19760,,,"DeRidder, LA",Micropolitan Statistical Area,35654,35654,35824,36046,36254,36223,36198,170,222,208,-31,-25,116,460,510,497,500,113,313,317,352,367,3,147,193,145,133,9,14,53,35,25,152,71,-35,-234,-166,161,85,18,-199,-141,6,-10,-3,23,-17 -19760,,22011,"Beauregard Parish, LA",County or equivalent,35654,35654,35824,36046,36254,36223,36198,170,222,208,-31,-25,116,460,510,497,500,113,313,317,352,367,3,147,193,145,133,9,14,53,35,25,152,71,-35,-234,-166,161,85,18,-199,-141,6,-10,-3,23,-17 -19860,,,"Dickinson, ND",Micropolitan Statistical Area,24199,24199,24353,25168,26921,28377,30372,154,815,1753,1456,1995,75,297,411,441,452,35,239,211,221,236,40,58,200,220,216,12,57,54,62,63,97,676,1461,1194,1682,109,733,1515,1256,1745,5,24,38,-20,34 -19860,,38089,"Stark County, ND",County or equivalent,24199,24199,24353,25168,26921,28377,30372,154,815,1753,1456,1995,75,297,411,441,452,35,239,211,221,236,40,58,200,220,216,12,57,54,62,63,97,676,1461,1194,1682,109,733,1515,1256,1745,5,24,38,-20,34 -19940,,,"Dixon, IL",Micropolitan Statistical Area,36031,36031,35970,35515,35141,34881,34735,-61,-455,-374,-260,-146,108,353,374,358,354,44,371,336,343,376,64,-18,38,15,-22,0,0,0,2,2,-114,-446,-417,-223,-100,-114,-446,-417,-221,-98,-11,9,5,-54,-26 -19940,,17103,"Lee County, IL",County or equivalent,36031,36031,35970,35515,35141,34881,34735,-61,-455,-374,-260,-146,108,353,374,358,354,44,371,336,343,376,64,-18,38,15,-22,0,0,0,2,2,-114,-446,-417,-223,-100,-114,-446,-417,-221,-98,-11,9,5,-54,-26 -19980,,,"Dodge City, KS",Micropolitan Statistical Area,33848,33848,34062,34441,34773,34950,34795,214,379,332,177,-155,183,661,711,669,674,94,247,219,210,219,89,414,492,459,455,35,146,133,151,155,87,-199,-291,-454,-763,122,-53,-158,-303,-608,3,18,-2,21,-2 -19980,,20057,"Ford County, KS",County or equivalent,33848,33848,34062,34441,34773,34950,34795,214,379,332,177,-155,183,661,711,669,674,94,247,219,210,219,89,414,492,459,455,35,146,133,151,155,87,-199,-291,-454,-763,122,-53,-158,-303,-608,3,18,-2,21,-2 -20060,,,"Douglas, GA",Micropolitan Statistical Area,42356,42356,42738,42964,43093,43129,42811,382,226,129,36,-318,137,597,590,609,583,40,396,364,380,364,97,201,226,229,219,10,52,54,58,61,250,-20,-154,-251,-614,260,32,-100,-193,-553,25,-7,3,0,16 -20060,,13069,"Coffee County, GA",County or equivalent,42356,42356,42738,42964,43093,43129,42811,382,226,129,36,-318,137,597,590,609,583,40,396,364,380,364,97,201,226,229,219,10,52,54,58,61,250,-20,-154,-251,-614,260,32,-100,-193,-553,25,-7,3,0,16 -20140,,,"Dublin, GA",Micropolitan Statistical Area,58414,58418,58362,57921,57852,57703,57552,-56,-441,-69,-149,-151,188,712,787,765,744,167,594,649,661,635,21,118,138,104,109,1,12,14,15,15,-77,-657,-219,-287,-253,-76,-645,-205,-272,-238,-1,86,-2,19,-22 -20140,,13167,"Johnson County, GA",County or equivalent,9980,9984,9973,9918,9882,9776,9701,-11,-55,-36,-106,-75,25,85,90,85,87,7,86,100,94,97,18,-1,-10,-9,-10,0,0,0,0,0,-26,-73,-24,-91,-66,-26,-73,-24,-91,-66,-3,19,-2,-6,1 -20140,,13175,"Laurens County, GA",County or equivalent,48434,48434,48389,48003,47970,47927,47851,-45,-386,-33,-43,-76,163,627,697,680,657,160,508,549,567,538,3,119,148,113,119,1,12,14,15,15,-51,-584,-195,-196,-187,-50,-572,-181,-181,-172,2,67,0,25,-23 -20180,,,"DuBois, PA",Micropolitan Statistical Area,81642,81644,81560,81516,81503,81589,81191,-84,-44,-13,86,-398,178,729,697,791,741,275,912,893,946,922,-97,-183,-196,-155,-181,5,53,52,56,56,10,101,137,142,-204,15,154,189,198,-148,-2,-15,-6,43,-69 -20180,,42033,"Clearfield County, PA",County or equivalent,81642,81644,81560,81516,81503,81589,81191,-84,-44,-13,86,-398,178,729,697,791,741,275,912,893,946,922,-97,-183,-196,-155,-181,5,53,52,56,56,10,101,137,142,-204,15,154,189,198,-148,-2,-15,-6,43,-69 -20300,,,"Dumas, TX",Micropolitan Statistical Area,21904,21904,21996,22093,22399,22223,22148,92,97,306,-176,-75,89,406,411,419,408,19,140,148,105,128,70,266,263,314,280,46,195,198,217,218,-21,-366,-148,-719,-581,25,-171,50,-502,-363,-3,2,-7,12,8 -20300,,48341,"Moore County, TX",County or equivalent,21904,21904,21996,22093,22399,22223,22148,92,97,306,-176,-75,89,406,411,419,408,19,140,148,105,128,70,266,263,314,280,46,195,198,217,218,-21,-366,-148,-719,-581,25,-171,50,-502,-363,-3,2,-7,12,8 -20340,,,"Duncan, OK",Micropolitan Statistical Area,45048,45048,45089,45104,44837,44977,44493,41,15,-267,140,-484,129,550,553,546,555,118,555,559,550,525,11,-5,-6,-4,30,3,8,12,9,9,30,22,-273,137,-535,33,30,-261,146,-526,-3,-10,0,-2,12 -20340,,40137,"Stephens County, OK",County or equivalent,45048,45048,45089,45104,44837,44977,44493,41,15,-267,140,-484,129,550,553,546,555,118,555,559,550,525,11,-5,-6,-4,30,3,8,12,9,9,30,22,-273,137,-535,33,30,-261,146,-526,-3,-10,0,-2,12 -20380,,,"Dunn, NC",Micropolitan Statistical Area,114678,114678,115721,119208,122213,125137,126666,1043,3487,3005,2924,1529,428,1736,1777,1834,1845,248,781,833,952,939,180,955,944,882,906,76,153,422,311,273,741,2350,1601,1647,368,817,2503,2023,1958,641,46,29,38,84,-18 -20380,,37085,"Harnett County, NC",County or equivalent,114678,114678,115721,119208,122213,125137,126666,1043,3487,3005,2924,1529,428,1736,1777,1834,1845,248,781,833,952,939,180,955,944,882,906,76,153,422,311,273,741,2350,1601,1647,368,817,2503,2023,1958,641,46,29,38,84,-18 -20420,,,"Durango, CO",Micropolitan Statistical Area,51334,51334,51338,51770,52305,53334,53989,4,432,535,1029,655,136,544,535,507,541,84,249,334,303,328,52,295,201,204,213,6,35,29,38,38,-56,114,303,735,424,-50,149,332,773,462,2,-12,2,52,-20 -20420,,8067,"La Plata County, CO",County or equivalent,51334,51334,51338,51770,52305,53334,53989,4,432,535,1029,655,136,544,535,507,541,84,249,334,303,328,52,295,201,204,213,6,35,29,38,38,-56,114,303,735,424,-50,149,332,773,462,2,-12,2,52,-20 -20460,,,"Durant, OK",Micropolitan Statistical Area,42416,42416,42647,43163,43462,44217,44486,231,516,299,755,269,149,555,617,612,624,73,409,448,479,505,76,146,169,133,119,4,21,16,20,20,152,362,117,560,119,156,383,133,580,139,-1,-13,-3,42,11 -20460,,40013,"Bryan County, OK",County or equivalent,42416,42416,42647,43163,43462,44217,44486,231,516,299,755,269,149,555,617,612,624,73,409,448,479,505,76,146,169,133,119,4,21,16,20,20,152,362,117,560,119,156,383,133,580,139,-1,-13,-3,42,11 -20540,,,"Dyersburg, TN",Micropolitan Statistical Area,38335,38337,38321,38139,38223,38160,37935,-16,-182,84,-63,-225,115,475,520,482,482,107,441,413,401,427,8,34,107,81,55,5,15,16,17,17,-26,-234,-39,-183,-272,-21,-219,-23,-166,-255,-3,3,0,22,-25 -20540,,47045,"Dyer County, TN",County or equivalent,38335,38337,38321,38139,38223,38160,37935,-16,-182,84,-63,-225,115,475,520,482,482,107,441,413,401,427,8,34,107,81,55,5,15,16,17,17,-26,-234,-39,-183,-272,-21,-219,-23,-166,-255,-3,3,0,22,-25 -20580,,,"Eagle Pass, TX",Micropolitan Statistical Area,54258,54258,54499,55308,55766,56510,57023,241,809,458,744,513,248,1018,1037,1131,1111,97,324,341,374,349,151,694,696,757,762,11,126,92,112,117,79,16,-331,-138,-366,90,142,-239,-26,-249,0,-27,1,13,0 -20580,,48323,"Maverick County, TX",County or equivalent,54258,54258,54499,55308,55766,56510,57023,241,809,458,744,513,248,1018,1037,1131,1111,97,324,341,374,349,151,694,696,757,762,11,126,92,112,117,79,16,-331,-138,-366,90,142,-239,-26,-249,0,-27,1,13,0 -20660,,,"Easton, MD",Micropolitan Statistical Area,37782,37782,37864,37954,38062,37949,37643,82,90,108,-113,-306,71,354,318,330,334,72,421,415,440,447,-1,-67,-97,-110,-113,8,51,49,55,55,77,85,166,-18,-217,85,136,215,37,-162,-2,21,-10,-40,-31 -20660,,24041,"Talbot County, MD",County or equivalent,37782,37782,37864,37954,38062,37949,37643,82,90,108,-113,-306,71,354,318,330,334,72,421,415,440,447,-1,-67,-97,-110,-113,8,51,49,55,55,77,85,166,-18,-217,85,136,215,37,-162,-2,21,-10,-40,-31 -20780,,,"Edwards, CO",Micropolitan Statistical Area,52197,52197,52099,51755,51951,52441,52921,-98,-344,196,490,480,210,655,697,629,640,9,83,98,118,103,201,572,599,511,537,27,92,74,92,101,-340,-1072,-468,-60,-170,-313,-980,-394,32,-69,14,64,-9,-53,12 -20780,,8037,"Eagle County, CO",County or equivalent,52197,52197,52099,51755,51951,52441,52921,-98,-344,196,490,480,210,655,697,629,640,9,83,98,118,103,201,572,599,511,537,27,92,74,92,101,-340,-1072,-468,-60,-170,-313,-980,-394,32,-69,14,64,-9,-53,12 -20820,,,"Effingham, IL",Micropolitan Statistical Area,34242,34242,34197,34253,34322,34306,34320,-45,56,69,-16,14,104,438,444,448,441,98,350,349,333,324,6,88,95,115,117,0,6,5,5,5,-52,-43,-30,-160,-150,-52,-37,-25,-155,-145,1,5,-1,24,42 -20820,,17049,"Effingham County, IL",County or equivalent,34242,34242,34197,34253,34322,34306,34320,-45,56,69,-16,14,104,438,444,448,441,98,350,349,333,324,6,88,95,115,117,0,6,5,5,5,-52,-43,-30,-160,-150,-52,-37,-25,-155,-145,1,5,-1,24,42 -20900,,,"El Campo, TX",Micropolitan Statistical Area,41280,41280,41316,41250,41147,41215,41168,36,-66,-103,68,-47,136,549,537,545,542,139,392,398,430,407,-3,157,139,115,135,2,25,19,23,25,44,-255,-265,-74,-179,46,-230,-246,-51,-154,-7,7,4,4,-28 -20900,,48481,"Wharton County, TX",County or equivalent,41280,41280,41316,41250,41147,41215,41168,36,-66,-103,68,-47,136,549,537,545,542,139,392,398,430,407,-3,157,139,115,135,2,25,19,23,25,44,-255,-265,-74,-179,46,-230,-246,-51,-154,-7,7,4,4,-28 -20980,,,"El Dorado, AR",Micropolitan Statistical Area,41639,41639,41580,41386,40904,40675,40227,-59,-194,-482,-229,-448,137,527,531,484,503,81,580,478,508,542,56,-53,53,-24,-39,5,9,8,12,12,-117,-138,-558,-208,-434,-112,-129,-550,-196,-422,-3,-12,15,-9,13 -20980,,5139,"Union County, AR",County or equivalent,41639,41639,41580,41386,40904,40675,40227,-59,-194,-482,-229,-448,137,527,531,484,503,81,580,478,508,542,56,-53,53,-24,-39,5,9,8,12,12,-117,-138,-558,-208,-434,-112,-129,-550,-196,-422,-3,-12,15,-9,13 -21020,,,"Elizabeth City, NC",Micropolitan Statistical Area,64094,64094,64187,63894,64114,63557,63584,93,-293,220,-557,27,189,746,656,723,691,176,639,602,620,561,13,107,54,103,130,34,83,140,113,114,55,-504,29,-794,-229,89,-421,169,-681,-115,-9,21,-3,21,12 -21020,,37029,"Camden County, NC",County or equivalent,9980,9980,9997,10060,10054,10193,10331,17,63,-6,139,138,34,93,76,91,91,6,76,71,56,45,28,17,5,35,46,3,16,16,17,17,-8,4,-26,85,75,-5,20,-10,102,92,-6,26,-1,2,0 -21020,,37139,"Pasquotank County, NC",County or equivalent,40661,40661,40713,40378,40528,39761,39787,52,-335,150,-767,26,125,518,460,490,470,121,424,394,416,379,4,94,66,74,91,31,62,119,91,92,23,-486,-32,-961,-162,54,-424,87,-870,-70,-6,-5,-3,29,5 -21020,,37143,"Perquimans County, NC",County or equivalent,13453,13453,13477,13456,13532,13603,13466,24,-21,76,71,-137,30,135,120,142,130,49,139,137,148,137,-19,-4,-17,-6,-7,0,5,5,5,5,40,-22,87,82,-142,40,-17,92,87,-137,3,0,1,-10,7 -21120,,,"Elk City, OK",Micropolitan Statistical Area,22119,22119,22035,22312,23117,23548,23691,-84,277,805,431,143,78,347,350,391,378,36,220,246,244,255,42,127,104,147,123,3,14,10,12,13,-132,136,675,278,5,-129,150,685,290,18,3,0,16,-6,2 -21120,,40009,"Beckham County, OK",County or equivalent,22119,22119,22035,22312,23117,23548,23691,-84,277,805,431,143,78,347,350,391,378,36,220,246,244,255,42,127,104,147,123,3,14,10,12,13,-132,136,675,278,5,-129,150,685,290,18,3,0,16,-6,2 -21180,,,"Elkins, WV",Micropolitan Statistical Area,29405,29405,29376,29438,29420,29566,29429,-29,62,-18,146,-137,68,308,312,332,333,86,357,365,341,363,-18,-49,-53,-9,-30,0,4,4,6,6,-11,116,34,145,-112,-11,120,38,151,-106,0,-9,-3,4,-1 -21180,,54083,"Randolph County, WV",County or equivalent,29405,29405,29376,29438,29420,29566,29429,-29,62,-18,146,-137,68,308,312,332,333,86,357,365,341,363,-18,-49,-53,-9,-30,0,4,4,6,6,-11,116,34,145,-112,-11,120,38,151,-106,0,-9,-3,4,-1 -21220,,,"Elko, NV",Micropolitan Statistical Area,50805,50929,51069,51489,53074,54602,54784,140,420,1585,1528,182,194,706,638,730,814,51,289,249,295,325,143,417,389,435,489,15,46,44,55,59,-9,-49,1127,1089,-407,6,-3,1171,1144,-348,-9,6,25,-51,41 -21220,,32007,"Elko County, NV",County or equivalent,48818,48942,49074,49505,51078,52531,52766,132,431,1573,1453,235,188,684,623,710,790,39,277,239,286,319,149,407,384,424,471,15,44,42,53,57,-23,-26,1121,1028,-322,-8,18,1163,1081,-265,-9,6,26,-52,29 -21220,,32011,"Eureka County, NV",County or equivalent,1987,1987,1995,1984,1996,2071,2018,8,-11,12,75,-53,6,22,15,20,24,12,12,10,9,6,-6,10,5,11,18,0,2,2,2,2,14,-23,6,61,-85,14,-21,8,63,-83,0,0,-1,1,12 -21260,,,"Ellensburg, WA",Micropolitan Statistical Area,40915,40909,41011,41575,41638,41781,42522,102,564,63,143,741,101,423,405,409,412,95,282,271,294,274,6,141,134,115,138,18,69,69,79,79,80,348,-140,-43,530,98,417,-71,36,609,-2,6,0,-8,-6 -21260,,53037,"Kittitas County, WA",County or equivalent,40915,40909,41011,41575,41638,41781,42522,102,564,63,143,741,101,423,405,409,412,95,282,271,294,274,6,141,134,115,138,18,69,69,79,79,80,348,-140,-43,530,98,417,-71,36,609,-2,6,0,-8,-6 -21380,,,"Emporia, KS",Micropolitan Statistical Area,33690,33690,33632,33653,33529,33522,33212,-58,21,-124,-7,-310,101,419,424,421,411,46,312,277,252,258,55,107,147,169,153,26,104,102,115,117,-141,-195,-381,-314,-587,-115,-91,-279,-199,-470,2,5,8,23,7 -21380,,20111,"Lyon County, KS",County or equivalent,33690,33690,33632,33653,33529,33522,33212,-58,21,-124,-7,-310,101,419,424,421,411,46,312,277,252,258,55,107,147,169,153,26,104,102,115,117,-141,-195,-381,-314,-587,-115,-91,-279,-199,-470,2,5,8,23,7 -21420,,,"Enid, OK",Micropolitan Statistical Area,60580,60580,60730,60669,61318,62509,63091,150,-61,649,1191,582,222,961,935,970,960,175,714,642,665,648,47,247,293,305,312,48,216,297,263,250,54,-502,66,602,61,102,-286,363,865,311,1,-22,-7,21,-41 -21420,,40047,"Garfield County, OK",County or equivalent,60580,60580,60730,60669,61318,62509,63091,150,-61,649,1191,582,222,961,935,970,960,175,714,642,665,648,47,247,293,305,312,48,216,297,263,250,54,-502,66,602,61,102,-286,363,865,311,1,-22,-7,21,-41 -21460,,,"Enterprise, AL",Micropolitan Statistical Area,49948,49948,50179,50465,51217,50861,50909,231,286,752,-356,48,172,677,623,615,589,77,508,492,474,501,95,169,131,141,88,47,106,219,161,149,91,19,391,-673,-174,138,125,610,-512,-25,-2,-8,11,15,-15 -21460,,1031,"Coffee County, AL",County or equivalent,49948,49948,50179,50465,51217,50861,50909,231,286,752,-356,48,172,677,623,615,589,77,508,492,474,501,95,169,131,141,88,47,106,219,161,149,91,19,391,-673,-174,138,125,610,-512,-25,-2,-8,11,15,-15 -21540,,,"Escanaba, MI",Micropolitan Statistical Area,37069,37069,37061,36934,36831,36819,36559,-8,-127,-103,-12,-260,74,372,359,378,354,109,444,425,440,429,-35,-72,-66,-62,-75,1,1,3,4,4,31,-30,-41,26,-157,32,-29,-38,30,-153,-5,-26,1,20,-32 -21540,,26041,"Delta County, MI",County or equivalent,37069,37069,37061,36934,36831,36819,36559,-8,-127,-103,-12,-260,74,372,359,378,354,109,444,425,440,429,-35,-72,-66,-62,-75,1,1,3,4,4,31,-30,-41,26,-157,32,-29,-38,30,-153,-5,-26,1,20,-32 -21580,,,"Española, NM",Micropolitan Statistical Area,40246,40247,40318,40333,40260,40088,39777,71,15,-73,-172,-311,166,594,579,617,591,74,357,409,389,411,92,237,170,228,180,8,15,13,18,18,-25,-225,-260,-323,-495,-17,-210,-247,-305,-477,-4,-12,4,-95,-14 -21580,,35039,"Rio Arriba County, NM",County or equivalent,40246,40247,40318,40333,40260,40088,39777,71,15,-73,-172,-311,166,594,579,617,591,74,357,409,389,411,92,237,170,228,180,8,15,13,18,18,-25,-225,-260,-323,-495,-17,-210,-247,-305,-477,-4,-12,4,-95,-14 -21700,,,"Eureka-Arcata-Fortuna, CA",Micropolitan Statistical Area,134623,134623,135022,135250,134680,134620,134809,399,228,-570,-60,189,381,1547,1435,1489,1476,285,1189,1279,1289,1292,96,358,156,200,184,27,84,100,102,97,258,-138,-823,-328,-15,285,-54,-723,-226,82,18,-76,-3,-34,-77 -21700,,6023,"Humboldt County, CA",County or equivalent,134623,134623,135022,135250,134680,134620,134809,399,228,-570,-60,189,381,1547,1435,1489,1476,285,1189,1279,1289,1292,96,358,156,200,184,27,84,100,102,97,258,-138,-823,-328,-15,285,-54,-723,-226,82,18,-76,-3,-34,-77 -21740,,,"Evanston, WY",Micropolitan Statistical Area,21118,21118,21103,20917,20989,21031,20904,-15,-186,72,42,-127,74,325,311,314,319,49,139,115,125,137,25,186,196,189,182,2,-9,-9,-8,-8,-46,-369,-112,-150,-307,-44,-378,-121,-158,-315,4,6,-3,11,6 -21740,,56041,"Uinta County, WY",County or equivalent,21118,21118,21103,20917,20989,21031,20904,-15,-186,72,42,-127,74,325,311,314,319,49,139,115,125,137,25,186,196,189,182,2,-9,-9,-8,-8,-46,-369,-112,-150,-307,-44,-378,-121,-158,-315,4,6,-3,11,6 -21840,,,"Fairfield, IA",Micropolitan Statistical Area,16843,16843,16816,17011,17084,17276,17325,-27,195,73,192,49,26,129,146,151,147,48,163,142,157,159,-22,-34,4,-6,-12,30,154,159,174,174,-36,70,-89,24,-105,-6,224,70,198,69,1,5,-1,0,-8 -21840,,19101,"Jefferson County, IA",County or equivalent,16843,16843,16816,17011,17084,17276,17325,-27,195,73,192,49,26,129,146,151,147,48,163,142,157,159,-22,-34,4,-6,-12,30,154,159,174,174,-36,70,-89,24,-105,-6,224,70,198,69,1,5,-1,0,-8 -21900,,,"Fairmont, WV",Micropolitan Statistical Area,56418,56418,56518,56624,56787,56758,56803,100,106,163,-29,45,177,685,644,630,625,116,658,633,677,682,61,27,11,-47,-57,9,32,34,37,37,35,88,120,-48,105,44,120,154,-11,142,-5,-41,-2,29,-40 -21900,,54049,"Marion County, WV",County or equivalent,56418,56418,56518,56624,56787,56758,56803,100,106,163,-29,45,177,685,644,630,625,116,658,633,677,682,61,27,11,-47,-57,9,32,34,37,37,35,88,120,-48,105,44,120,154,-11,142,-5,-41,-2,29,-40 -21980,,,"Fallon, NV",Micropolitan Statistical Area,24877,24877,24798,24587,24317,24045,23989,-79,-211,-270,-272,-56,64,307,323,321,320,37,278,264,251,243,27,29,59,70,77,31,30,118,75,65,-137,-259,-458,-424,-206,-106,-229,-340,-349,-141,0,-11,11,7,8 -21980,,32001,"Churchill County, NV",County or equivalent,24877,24877,24798,24587,24317,24045,23989,-79,-211,-270,-272,-56,64,307,323,321,320,37,278,264,251,243,27,29,59,70,77,31,30,118,75,65,-137,-259,-458,-424,-206,-106,-229,-340,-349,-141,0,-11,11,7,8 -22060,,,"Faribault-Northfield, MN",Micropolitan Statistical Area,64142,64144,64297,64937,64904,64854,65151,153,640,-33,-50,297,206,762,698,755,732,79,441,454,473,452,127,321,244,282,280,28,98,100,115,116,-1,188,-384,-458,-126,27,286,-284,-343,-10,-1,33,7,11,27 -22060,,27131,"Rice County, MN",County or equivalent,64142,64144,64297,64937,64904,64854,65151,153,640,-33,-50,297,206,762,698,755,732,79,441,454,473,452,127,321,244,282,280,28,98,100,115,116,-1,188,-384,-458,-126,27,286,-284,-343,-10,-1,33,7,11,27 -22100,,,"Farmington, MO",Micropolitan Statistical Area,65359,65364,65521,65552,65835,66199,65960,157,31,283,364,-239,181,735,755,756,740,187,743,732,750,735,-6,-8,23,6,5,2,15,16,15,15,153,60,244,292,-267,155,75,260,307,-252,8,-36,0,51,8 -22100,,29187,"St. Francois County, MO",County or equivalent,65359,65364,65521,65552,65835,66199,65960,157,31,283,364,-239,181,735,755,756,740,187,743,732,750,735,-6,-8,23,6,5,2,15,16,15,15,153,60,244,292,-267,155,75,260,307,-252,8,-36,0,51,8 -22260,,,"Fergus Falls, MN",Micropolitan Statistical Area,57303,57303,57260,57307,57292,57591,57635,-43,47,-15,299,44,143,561,624,648,648,162,679,692,665,681,-19,-118,-68,-17,-33,9,57,56,58,60,-26,113,-3,287,55,-17,170,53,345,115,-7,-5,0,-29,-38 -22260,,27111,"Otter Tail County, MN",County or equivalent,57303,57303,57260,57307,57292,57591,57635,-43,47,-15,299,44,143,561,624,648,648,162,679,692,665,681,-19,-118,-68,-17,-33,9,57,56,58,60,-26,113,-3,287,55,-17,170,53,345,115,-7,-5,0,-29,-38 -22280,,,"Fernley, NV",Micropolitan Statistical Area,51980,51980,52065,51484,51158,51400,51789,85,-581,-326,242,389,154,575,537,533,517,150,498,497,513,529,4,77,40,20,-12,22,49,48,60,60,67,-720,-411,160,308,89,-671,-363,220,368,-8,13,-3,2,33 -22280,,32019,"Lyon County, NV",County or equivalent,51980,51980,52065,51484,51158,51400,51789,85,-581,-326,242,389,154,575,537,533,517,150,498,497,513,529,4,77,40,20,-12,22,49,48,60,60,67,-720,-411,160,308,89,-671,-363,220,368,-8,13,-3,2,33 -22300,,,"Findlay, OH",Micropolitan Statistical Area,74782,74782,74674,75080,75647,75712,75337,-108,406,567,65,-375,215,879,886,901,903,167,713,658,695,654,48,166,228,206,249,21,73,77,86,87,-178,119,270,-223,-673,-157,192,347,-137,-586,1,48,-8,-4,-38 -22300,,39063,"Hancock County, OH",County or equivalent,74782,74782,74674,75080,75647,75712,75337,-108,406,567,65,-375,215,879,886,901,903,167,713,658,695,654,48,166,228,206,249,21,73,77,86,87,-178,119,270,-223,-673,-157,192,347,-137,-586,1,48,-8,-4,-38 -22340,,,"Fitzgerald, GA",Micropolitan Statistical Area,17634,17634,17639,17599,17545,17490,17464,5,-40,-54,-55,-26,66,261,264,201,222,62,207,205,195,200,4,54,59,6,22,1,4,6,7,7,5,-90,-119,-72,-58,6,-86,-113,-65,-51,-5,-8,0,4,3 -22340,,13017,"Ben Hill County, GA",County or equivalent,17634,17634,17639,17599,17545,17490,17464,5,-40,-54,-55,-26,66,261,264,201,222,62,207,205,195,200,4,54,59,6,22,1,4,6,7,7,5,-90,-119,-72,-58,6,-86,-113,-65,-51,-5,-8,0,4,3 -22580,,,"Forest City, NC",Micropolitan Statistical Area,67810,67809,67781,67403,67243,66879,66600,-28,-378,-160,-364,-279,193,717,682,671,667,203,824,789,832,845,-10,-107,-107,-161,-178,8,26,26,30,30,-22,-283,-75,-216,-76,-14,-257,-49,-186,-46,-4,-14,-4,-17,-55 -22580,,37161,"Rutherford County, NC",County or equivalent,67810,67809,67781,67403,67243,66879,66600,-28,-378,-160,-364,-279,193,717,682,671,667,203,824,789,832,845,-10,-107,-107,-161,-178,8,26,26,30,30,-22,-283,-75,-216,-76,-14,-257,-49,-186,-46,-4,-14,-4,-17,-55 -22620,,,"Forrest City, AR",Micropolitan Statistical Area,28258,28258,28172,27952,27883,27302,26899,-86,-220,-69,-581,-403,85,356,367,349,330,36,274,257,301,304,49,82,110,48,26,3,18,18,21,22,-139,-336,-191,-624,-450,-136,-318,-173,-603,-428,1,16,-6,-26,-1 -22620,,5123,"St. Francis County, AR",County or equivalent,28258,28258,28172,27952,27883,27302,26899,-86,-220,-69,-581,-403,85,356,367,349,330,36,274,257,301,304,49,82,110,48,26,3,18,18,21,22,-139,-336,-191,-624,-450,-136,-318,-173,-603,-428,1,16,-6,-26,-1 -22700,,,"Fort Dodge, IA",Micropolitan Statistical Area,38013,38013,37865,37704,37253,37216,36955,-148,-161,-451,-37,-261,99,442,457,420,440,115,445,492,452,423,-16,-3,-35,-32,17,2,15,15,19,19,-137,-152,-433,9,-279,-135,-137,-418,28,-260,3,-21,2,-33,-18 -22700,,19187,"Webster County, IA",County or equivalent,38013,38013,37865,37704,37253,37216,36955,-148,-161,-451,-37,-261,99,442,457,420,440,115,445,492,452,423,-16,-3,-35,-32,17,2,15,15,19,19,-137,-152,-433,9,-279,-135,-137,-418,28,-260,3,-21,2,-33,-18 -22780,,,"Fort Leonard Wood, MO",Micropolitan Statistical Area,52274,52274,52869,53277,53389,53743,53436,595,408,112,354,-307,240,903,791,855,834,41,267,323,271,264,199,636,468,584,570,152,189,815,400,276,231,-439,-1197,-555,-1158,383,-250,-382,-155,-882,13,22,26,-75,5 -22780,,29169,"Pulaski County, MO",County or equivalent,52274,52274,52869,53277,53389,53743,53436,595,408,112,354,-307,240,903,791,855,834,41,267,323,271,264,199,636,468,584,570,152,189,815,400,276,231,-439,-1197,-555,-1158,383,-250,-382,-155,-882,13,22,26,-75,5 -22800,,,"Fort Madison-Keokuk, IA-IL-MO",Micropolitan Statistical Area,62105,62105,62090,61665,61444,60840,60767,-15,-425,-221,-604,-73,181,631,645,686,705,150,682,734,710,679,31,-51,-89,-24,26,4,11,12,13,13,-38,-375,-144,-559,-183,-34,-364,-132,-546,-170,-12,-10,0,-34,71 -22800,,17067,"Hancock County, IL",County or equivalent,19104,19104,19093,19019,18835,18531,18564,-11,-74,-184,-304,33,52,167,146,167,186,60,171,212,194,195,-8,-4,-66,-27,-9,0,2,3,4,4,0,-70,-122,-249,-56,0,-68,-119,-245,-52,-3,-2,1,-32,94 -22800,,19111,"Lee County, IA",County or equivalent,35862,35862,35860,35605,35622,35386,35286,-2,-255,17,-236,-100,111,390,414,435,431,77,430,436,430,415,34,-40,-22,5,16,4,8,9,9,9,-34,-215,32,-257,-99,-30,-207,41,-248,-90,-6,-8,-2,7,-26 -22800,,29045,"Clark County, MO",County or equivalent,7139,7139,7137,7041,6987,6923,6917,-2,-96,-54,-64,-6,18,74,85,84,88,13,81,86,86,69,5,-7,-1,-2,19,0,1,0,0,0,-4,-90,-54,-53,-28,-4,-89,-54,-53,-28,-3,0,1,-9,3 -22820,,,"Fort Morgan, CO",Micropolitan Statistical Area,28159,28159,28141,28498,28355,28389,28328,-18,357,-143,34,-61,97,461,427,430,429,39,279,271,222,220,58,182,156,208,209,19,105,99,115,115,-81,-35,-405,-276,-373,-62,70,-306,-161,-258,-14,105,7,-13,-12 -22820,,8087,"Morgan County, CO",County or equivalent,28159,28159,28141,28498,28355,28389,28328,-18,357,-143,34,-61,97,461,427,430,429,39,279,271,222,220,58,182,156,208,209,19,105,99,115,115,-81,-35,-405,-276,-373,-62,70,-306,-161,-258,-14,105,7,-13,-12 -22860,,,"Fort Polk South, LA",Micropolitan Statistical Area,52334,52334,52752,52334,54176,52828,52132,418,-418,1842,-1348,-696,276,1121,1014,1099,1004,100,354,355,340,363,176,767,659,759,641,109,91,554,307,221,122,-1302,612,-2434,-1576,231,-1211,1166,-2127,-1355,11,26,17,20,18 -22860,,22115,"Vernon Parish, LA",County or equivalent,52334,52334,52752,52334,54176,52828,52132,418,-418,1842,-1348,-696,276,1121,1014,1099,1004,100,354,355,340,363,176,767,659,759,641,109,91,554,307,221,122,-1302,612,-2434,-1576,231,-1211,1166,-2127,-1355,11,26,17,20,18 -23140,,,"Frankfort, IN",Micropolitan Statistical Area,33224,33224,33203,33043,32957,32958,32776,-21,-160,-86,1,-182,107,429,418,486,481,64,340,369,353,313,43,89,49,133,168,10,41,31,33,34,-73,-302,-169,-175,-382,-63,-261,-138,-142,-348,-1,12,3,10,-2 -23140,,18023,"Clinton County, IN",County or equivalent,33224,33224,33203,33043,32957,32958,32776,-21,-160,-86,1,-182,107,429,418,486,481,64,340,369,353,313,43,89,49,133,168,10,41,31,33,34,-73,-302,-169,-175,-382,-63,-261,-138,-142,-348,-1,12,3,10,-2 -23180,,,"Frankfort, KY",Micropolitan Statistical Area,70706,70706,70777,70867,71042,71413,71768,71,90,175,371,355,176,798,790,793,786,221,686,643,656,653,-45,112,147,137,133,16,59,62,64,65,111,-84,-30,152,133,127,-25,32,216,198,-11,3,-4,18,24 -23180,,21005,"Anderson County, KY",County or equivalent,21421,21421,21458,21560,21663,21752,21888,37,102,103,89,136,51,243,258,230,233,68,196,173,173,177,-17,47,85,57,56,1,1,1,1,2,58,54,19,38,79,59,55,20,39,81,-5,0,-2,-7,-1 -23180,,21073,"Franklin County, KY",County or equivalent,49285,49285,49319,49307,49379,49661,49880,34,-12,72,282,219,125,555,532,563,553,153,490,470,483,476,-28,65,62,80,77,15,58,61,63,63,53,-138,-49,114,54,68,-80,12,177,117,-6,3,-2,25,25 -23240,,,"Fredericksburg, TX",Micropolitan Statistical Area,24837,24837,24870,25022,25150,25334,25520,33,152,128,184,186,59,251,235,241,251,82,353,338,335,350,-23,-102,-103,-94,-99,2,25,20,21,23,52,223,214,226,228,54,248,234,247,251,2,6,-3,31,34 -23240,,48171,"Gillespie County, TX",County or equivalent,24837,24837,24870,25022,25150,25334,25520,33,152,128,184,186,59,251,235,241,251,82,353,338,335,350,-23,-102,-103,-94,-99,2,25,20,21,23,52,223,214,226,228,54,248,234,247,251,2,6,-3,31,34 -23300,,,"Freeport, IL",Micropolitan Statistical Area,47711,47711,47680,47396,46973,46782,46435,-31,-284,-423,-191,-347,139,489,517,489,503,165,522,519,517,537,-26,-33,-2,-28,-34,3,12,11,14,15,-2,-262,-438,-179,-310,1,-250,-427,-165,-295,-6,-1,6,2,-18 -23300,,17177,"Stephenson County, IL",County or equivalent,47711,47711,47680,47396,46973,46782,46435,-31,-284,-423,-191,-347,139,489,517,489,503,165,522,519,517,537,-26,-33,-2,-28,-34,3,12,11,14,15,-2,-262,-438,-179,-310,1,-250,-427,-165,-295,-6,-1,6,2,-18 -23340,,,"Fremont, NE",Micropolitan Statistical Area,36691,36691,36701,36979,36670,36617,36744,10,278,-309,-53,127,131,480,455,478,485,76,422,474,411,403,55,58,-19,67,82,3,19,18,20,21,-45,215,-316,-152,21,-42,234,-298,-132,42,-3,-14,8,12,3 -23340,,31053,"Dodge County, NE",County or equivalent,36691,36691,36701,36979,36670,36617,36744,10,278,-309,-53,127,131,480,455,478,485,76,422,474,411,403,55,58,-19,67,82,3,19,18,20,21,-45,215,-316,-152,21,-42,234,-298,-132,42,-3,-14,8,12,3 -23380,,,"Fremont, OH",Micropolitan Statistical Area,60944,60944,60907,60644,60560,60200,60179,-37,-263,-84,-360,-21,191,702,713,680,687,133,626,608,585,589,58,76,105,95,98,3,25,20,23,23,-99,-337,-216,-463,-136,-96,-312,-196,-440,-113,1,-27,7,-15,-6 -23380,,39143,"Sandusky County, OH",County or equivalent,60944,60944,60907,60644,60560,60200,60179,-37,-263,-84,-360,-21,191,702,713,680,687,133,626,608,585,589,58,76,105,95,98,3,25,20,23,23,-99,-337,-216,-463,-136,-96,-312,-196,-440,-113,1,-27,7,-15,-6 -23500,,,"Gaffney, SC",Micropolitan Statistical Area,55342,55467,55511,55588,55671,55743,56024,44,77,83,72,281,171,691,697,655,659,167,579,553,622,559,4,112,144,33,100,-1,4,4,6,6,45,-7,-61,59,211,44,-3,-57,65,217,-4,-32,-4,-26,-36 -23500,,45021,"Cherokee County, SC",County or equivalent,55342,55467,55511,55588,55671,55743,56024,44,77,83,72,281,171,691,697,655,659,167,579,553,622,559,4,112,144,33,100,-1,4,4,6,6,45,-7,-61,59,211,44,-3,-57,65,217,-4,-32,-4,-26,-36 -23620,,,"Gainesville, TX",Micropolitan Statistical Area,38437,38437,38445,38375,38733,38475,38761,8,-70,358,-258,286,128,477,521,554,539,71,380,413,403,411,57,97,108,151,128,6,37,24,28,30,-50,-217,225,-411,140,-44,-180,249,-383,170,-5,13,1,-26,-12 -23620,,48097,"Cooke County, TX",County or equivalent,38437,38437,38445,38375,38733,38475,38761,8,-70,358,-258,286,128,477,521,554,539,71,380,413,403,411,57,97,108,151,128,6,37,24,28,30,-50,-217,225,-411,140,-44,-180,249,-383,170,-5,13,1,-26,-12 -23660,,,"Galesburg, IL",Micropolitan Statistical Area,52919,52919,52919,52700,52314,52235,52069,0,-219,-386,-79,-166,115,521,542,557,545,180,695,691,603,583,-65,-174,-149,-46,-38,17,63,66,72,72,55,-71,-303,-80,-162,72,-8,-237,-8,-90,-7,-37,0,-25,-38 -23660,,17095,"Knox County, IL",County or equivalent,52919,52919,52919,52700,52314,52235,52069,0,-219,-386,-79,-166,115,521,542,557,545,180,695,691,603,583,-65,-174,-149,-46,-38,17,63,66,72,72,55,-71,-303,-80,-162,72,-8,-237,-8,-90,-7,-37,0,-25,-38 -23700,,,"Gallup, NM",Micropolitan Statistical Area,71492,71491,71766,73497,72716,73332,74098,275,1731,-781,616,766,310,1300,1266,1307,1302,145,508,563,515,515,165,792,703,792,787,3,31,26,30,31,104,927,-1536,-162,-28,107,958,-1510,-132,3,3,-19,26,-44,-24 -23700,,35031,"McKinley County, NM",County or equivalent,71492,71491,71766,73497,72716,73332,74098,275,1731,-781,616,766,310,1300,1266,1307,1302,145,508,563,515,515,165,792,703,792,787,3,31,26,30,31,104,927,-1536,-162,-28,107,958,-1510,-132,3,3,-19,26,-44,-24 -23780,,,"Garden City, KS",Micropolitan Statistical Area,40753,40753,40931,41075,41106,41035,41099,178,144,31,-71,64,195,808,745,773,753,74,228,245,224,220,121,580,500,549,533,37,162,156,166,172,21,-600,-625,-758,-651,58,-438,-469,-592,-479,-1,2,0,-28,10 -23780,,20055,"Finney County, KS",County or equivalent,36776,36776,36939,37112,37130,37131,37184,163,173,18,1,53,179,751,671,730,700,70,181,210,187,194,109,570,461,543,506,34,154,151,161,167,21,-552,-595,-679,-625,55,-398,-444,-518,-458,-1,1,1,-24,5 -23780,,20093,"Kearny County, KS",County or equivalent,3977,3977,3992,3963,3976,3904,3915,15,-29,13,-72,11,16,57,74,43,53,4,47,35,37,26,12,10,39,6,27,3,8,5,5,5,0,-48,-30,-79,-26,3,-40,-25,-74,-21,0,1,-1,-4,5 -23820,,,"Gardnerville Ranchos, NV",Micropolitan Statistical Area,46997,46997,47038,47028,46991,47081,47536,41,-10,-37,90,455,110,392,326,344,365,82,419,418,442,469,28,-27,-92,-98,-104,9,13,14,16,16,11,14,45,160,519,20,27,59,176,535,-7,-10,-4,12,24 -23820,,32005,"Douglas County, NV",County or equivalent,46997,46997,47038,47028,46991,47081,47536,41,-10,-37,90,455,110,392,326,344,365,82,419,418,442,469,28,-27,-92,-98,-104,9,13,14,16,16,11,14,45,160,519,20,27,59,176,535,-7,-10,-4,12,24 -23860,,,"Georgetown, SC",Micropolitan Statistical Area,60158,60158,60173,60196,60284,60520,60773,15,23,88,236,253,173,588,591,618,600,118,669,705,717,741,55,-81,-114,-99,-141,5,28,31,27,27,-36,-28,176,251,383,-31,0,207,278,410,-9,104,-5,57,-16 -23860,,45043,"Georgetown County, SC",County or equivalent,60158,60158,60173,60196,60284,60520,60773,15,23,88,236,253,173,588,591,618,600,118,669,705,717,741,55,-81,-114,-99,-141,5,28,31,27,27,-36,-28,176,251,383,-31,0,207,278,410,-9,104,-5,57,-16 -23940,,,"Gillette, WY",Micropolitan Statistical Area,46133,46133,46223,46590,47897,48210,48320,90,367,1307,313,110,189,722,767,760,754,83,240,239,219,288,106,482,528,541,466,6,20,22,28,28,-23,-132,738,-274,-377,-17,-112,760,-246,-349,1,-3,19,18,-7 -23940,,56005,"Campbell County, WY",County or equivalent,46133,46133,46223,46590,47897,48210,48320,90,367,1307,313,110,189,722,767,760,754,83,240,239,219,288,106,482,528,541,466,6,20,22,28,28,-23,-132,738,-274,-377,-17,-112,760,-246,-349,1,-3,19,18,-7 -23980,,,"Glasgow, KY",Micropolitan Statistical Area,52272,52272,52297,52486,52652,53009,53138,25,189,166,357,129,198,643,658,691,689,135,574,580,589,625,63,69,78,102,64,7,20,20,23,23,-42,62,67,200,63,-35,82,87,223,86,-3,38,1,32,-21 -23980,,21009,"Barren County, KY",County or equivalent,42173,42173,42178,42415,42669,43046,43148,5,237,254,377,102,167,508,524,563,564,117,438,466,460,492,50,70,58,103,72,7,21,21,23,23,-52,123,175,218,26,-45,144,196,241,49,0,23,0,33,-19 -23980,,21169,"Metcalfe County, KY",County or equivalent,10099,10099,10119,10071,9983,9963,9990,20,-48,-88,-20,27,31,135,134,128,125,18,136,114,129,133,13,-1,20,-1,-8,0,-1,-1,0,0,10,-61,-108,-18,37,10,-62,-109,-18,37,-3,15,1,-1,-2 -24060,,,"Glenwood Springs, CO",Micropolitan Statistical Area,73537,73537,73226,73130,74009,74483,75087,-311,-96,879,474,604,245,1034,914,940,925,99,351,304,309,343,146,683,610,631,582,35,141,133,155,169,-523,-924,141,-302,-140,-488,-783,274,-147,29,31,4,-5,-10,-7 -24060,,8045,"Garfield County, CO",County or equivalent,56389,56389,56077,56003,56777,57102,57461,-312,-74,774,325,359,215,861,789,817,806,82,295,256,277,310,133,566,533,540,496,21,81,74,90,102,-497,-717,169,-329,-231,-476,-636,243,-239,-129,31,-4,-2,24,-8 -24060,,8097,"Pitkin County, CO",County or equivalent,17148,17148,17149,17127,17232,17381,17626,1,-22,105,149,245,30,173,125,123,119,17,56,48,32,33,13,117,77,91,86,14,60,59,65,67,-26,-207,-28,27,91,-12,-147,31,92,158,0,8,-3,-34,1 -24100,,,"Gloversville, NY",Micropolitan Statistical Area,55531,55531,55451,55255,55013,54528,54105,-80,-196,-242,-485,-423,134,558,555,524,505,167,601,623,598,567,-33,-43,-68,-74,-62,3,24,25,30,30,-51,-220,-199,-415,-361,-48,-196,-174,-385,-331,1,43,0,-26,-30 -24100,,36035,"Fulton County, NY",County or equivalent,55531,55531,55451,55255,55013,54528,54105,-80,-196,-242,-485,-423,134,558,555,524,505,167,601,623,598,567,-33,-43,-68,-74,-62,3,24,25,30,30,-51,-220,-199,-415,-361,-48,-196,-174,-385,-331,1,43,0,-26,-30 -24380,,,"Grants, NM",Micropolitan Statistical Area,27213,27213,27303,27509,27318,27483,27349,90,206,-191,165,-134,93,427,375,453,429,29,259,224,273,271,64,168,151,180,158,5,13,9,12,12,22,12,-361,-44,-308,27,25,-352,-32,-296,-1,13,10,17,4 -24380,,35006,"Cibola County, NM",County or equivalent,27213,27213,27303,27509,27318,27483,27349,90,206,-191,165,-134,93,427,375,453,429,29,259,224,273,271,64,168,151,180,158,5,13,9,12,12,22,12,-361,-44,-308,27,25,-352,-32,-296,-1,13,10,17,4 -24460,,,"Great Bend, KS",Micropolitan Statistical Area,27674,27674,27684,27697,27553,27510,27385,10,13,-144,-43,-125,86,385,370,404,397,72,328,310,300,301,14,57,60,104,96,8,16,11,13,13,-11,-73,-214,-166,-225,-3,-57,-203,-153,-212,-1,13,-1,6,-9 -24460,,20009,"Barton County, KS",County or equivalent,27674,27674,27684,27697,27553,27510,27385,10,13,-144,-43,-125,86,385,370,404,397,72,328,310,300,301,14,57,60,104,96,8,16,11,13,13,-11,-73,-214,-166,-225,-3,-57,-203,-153,-212,-1,13,-1,6,-9 -24620,,,"Greeneville, TN",Micropolitan Statistical Area,68831,68831,68812,68962,68634,68235,68335,-19,150,-328,-399,100,148,567,634,593,583,171,854,841,845,825,-23,-287,-207,-252,-242,7,34,29,36,37,2,431,-147,-226,330,9,465,-118,-190,367,-5,-28,-3,43,-25 -24620,,47059,"Greene County, TN",County or equivalent,68831,68831,68812,68962,68634,68235,68335,-19,150,-328,-399,100,148,567,634,593,583,171,854,841,845,825,-23,-287,-207,-252,-242,7,34,29,36,37,2,431,-147,-226,330,9,465,-118,-190,367,-5,-28,-3,43,-25 -24640,,,"Greenfield Town, MA",Micropolitan Statistical Area,71372,71372,71317,71624,71544,71155,70862,-55,307,-80,-389,-293,159,635,673,609,619,141,670,644,660,657,18,-35,29,-51,-38,26,117,117,129,129,-89,267,-224,-446,-333,-63,384,-107,-317,-204,-10,-42,-2,-21,-51 -24640,,25011,"Franklin County, MA",County or equivalent,71372,71372,71317,71624,71544,71155,70862,-55,307,-80,-389,-293,159,635,673,609,619,141,670,644,660,657,18,-35,29,-51,-38,26,117,117,129,129,-89,267,-224,-446,-333,-63,384,-107,-317,-204,-10,-42,-2,-21,-51 -24700,,,"Greensburg, IN",Micropolitan Statistical Area,25740,25740,25795,25895,26083,26262,26524,55,100,188,179,262,79,317,291,341,327,29,257,246,262,254,50,60,45,79,73,8,42,41,45,45,1,10,105,71,131,9,52,146,116,176,-4,-12,-3,-16,13 -24700,,18031,"Decatur County, IN",County or equivalent,25740,25740,25795,25895,26083,26262,26524,55,100,188,179,262,79,317,291,341,327,29,257,246,262,254,50,60,45,79,73,8,42,41,45,45,1,10,105,71,131,9,52,146,116,176,-4,-12,-3,-16,13 -24740,,,"Greenville, MS",Micropolitan Statistical Area,51137,51135,51093,50450,50051,49638,48958,-42,-643,-399,-413,-680,207,819,838,757,756,95,583,603,603,655,112,236,235,154,101,1,-6,-8,-5,-6,-151,-878,-633,-544,-758,-150,-884,-641,-549,-764,-4,5,7,-18,-17 -24740,,28151,"Washington County, MS",County or equivalent,51137,51135,51093,50450,50051,49638,48958,-42,-643,-399,-413,-680,207,819,838,757,756,95,583,603,603,655,112,236,235,154,101,1,-6,-8,-5,-6,-151,-878,-633,-544,-758,-150,-884,-641,-549,-764,-4,5,7,-18,-17 -24820,,,"Greenville, OH",Micropolitan Statistical Area,52959,52959,52958,52672,52506,52351,52196,-1,-286,-166,-155,-155,151,590,616,599,594,149,553,518,573,579,2,37,98,26,15,2,11,11,10,10,-6,-335,-278,-218,-174,-4,-324,-267,-208,-164,1,1,3,27,-6 -24820,,39037,"Darke County, OH",County or equivalent,52959,52959,52958,52672,52506,52351,52196,-1,-286,-166,-155,-155,151,590,616,599,594,149,553,518,573,579,2,37,98,26,15,2,11,11,10,10,-6,-335,-278,-218,-174,-4,-324,-267,-208,-164,1,1,3,27,-6 -24900,,,"Greenwood, MS",Micropolitan Statistical Area,42914,42914,42928,42418,41979,41945,41676,14,-510,-439,-34,-269,169,648,549,555,530,54,444,499,484,459,115,204,50,71,71,10,41,40,45,45,-102,-789,-542,-166,-374,-92,-748,-502,-121,-329,-9,34,13,16,-11 -24900,,28015,"Carroll County, MS",County or equivalent,10597,10597,10597,10471,10413,10353,10254,0,-126,-58,-60,-99,33,97,80,84,76,7,96,111,103,103,26,1,-31,-19,-27,0,-1,-1,-1,-1,-21,-154,-25,-46,-70,-21,-155,-26,-47,-71,-5,28,-1,6,-1 -24900,,28083,"Leflore County, MS",County or equivalent,32317,32317,32331,31947,31566,31592,31422,14,-384,-381,26,-170,136,551,469,471,454,47,348,388,381,356,89,203,81,90,98,10,42,41,46,46,-81,-635,-517,-120,-304,-71,-593,-476,-74,-258,-4,6,14,10,-10 -24940,,,"Greenwood, SC",Micropolitan Statistical Area,95078,95077,95058,94902,94898,94697,94485,-19,-156,-4,-201,-212,291,1149,1168,1159,1143,227,968,909,981,1003,64,181,259,178,140,12,61,54,56,59,-93,-365,-312,-466,-406,-81,-304,-258,-410,-347,-2,-33,-5,31,-5 -24940,,45001,"Abbeville County, SC",County or equivalent,25417,25416,25345,25117,25065,25008,24965,-71,-228,-52,-57,-43,72,228,281,262,250,89,290,252,254,251,-17,-62,29,8,-1,3,17,19,19,19,-58,-171,-101,-93,-50,-55,-154,-82,-74,-31,1,-12,1,9,-11 -24940,,45047,"Greenwood County, SC",County or equivalent,69661,69661,69713,69785,69833,69689,69520,52,72,48,-144,-169,219,921,887,897,893,138,678,657,727,752,81,243,230,170,141,9,44,35,37,40,-35,-194,-211,-373,-356,-26,-150,-176,-336,-316,-3,-21,-6,22,6 -24980,,,"Grenada, MS",Micropolitan Statistical Area,21906,21906,21872,21593,21616,21552,21666,-34,-279,23,-64,114,72,261,295,243,248,94,256,288,269,246,-22,5,7,-26,2,0,-1,-1,-1,-1,-11,-286,20,-25,99,-11,-287,19,-26,98,-1,3,-3,-12,14 -24980,,28043,"Grenada County, MS",County or equivalent,21906,21906,21872,21593,21616,21552,21666,-34,-279,23,-64,114,72,261,295,243,248,94,256,288,269,246,-22,5,7,-26,2,0,-1,-1,-1,-1,-11,-286,20,-25,99,-11,-287,19,-26,98,-1,3,-3,-12,14 -25100,,,"Guymon, OK",Micropolitan Statistical Area,20640,20640,20811,21203,21533,22073,21853,171,392,330,540,-220,83,288,343,385,391,20,104,145,136,132,63,184,198,249,259,31,125,121,132,132,76,87,14,176,-643,107,212,135,308,-511,1,-4,-3,-17,32 -25100,,40139,"Texas County, OK",County or equivalent,20640,20640,20811,21203,21533,22073,21853,171,392,330,540,-220,83,288,343,385,391,20,104,145,136,132,63,184,198,249,259,31,125,121,132,132,76,87,14,176,-643,107,212,135,308,-511,1,-4,-3,-17,32 -25200,,,"Hailey, ID",Micropolitan Statistical Area,27701,27701,27616,27341,27471,27668,27837,-85,-275,130,197,169,75,347,308,298,312,54,160,121,111,128,21,187,187,187,184,6,51,43,46,47,-116,-543,-103,-35,-62,-110,-492,-60,11,-15,4,30,3,-1,0 -25200,,16013,"Blaine County, ID",County or equivalent,21376,21378,21295,21104,21140,21322,21482,-83,-191,36,182,160,55,243,225,217,223,39,108,84,74,87,16,135,141,143,136,7,45,40,43,42,-112,-389,-148,-3,-2,-105,-344,-108,40,40,6,18,3,-1,-16 -25200,,16025,"Camas County, ID",County or equivalent,1117,1117,1108,1099,1075,1039,1039,-9,-9,-24,-36,0,3,13,9,10,10,0,6,3,6,3,3,7,6,4,7,0,0,0,0,0,-12,-25,-30,-41,-17,-12,-25,-30,-41,-17,0,9,0,1,10 -25200,,16063,"Lincoln County, ID",County or equivalent,5208,5206,5213,5138,5256,5307,5316,7,-75,118,51,9,17,91,74,71,79,15,46,34,31,38,2,45,40,40,41,-1,6,3,3,5,8,-129,75,9,-43,7,-123,78,12,-38,-2,3,0,-1,6 -25300,,,"Hannibal, MO",Micropolitan Statistical Area,38948,38948,38967,39077,39047,39073,39175,19,110,-30,26,102,121,495,426,480,450,93,419,387,391,379,28,76,39,89,71,3,12,12,13,13,-7,25,-79,-59,49,-4,37,-67,-46,62,-5,-3,-2,-17,-31 -25300,,29127,"Marion County, MO",County or equivalent,28781,28781,28792,28796,28809,28901,28920,11,4,13,92,19,103,394,336,382,362,62,335,313,287,295,41,59,23,95,67,3,12,12,13,13,-31,-57,-20,-24,-38,-28,-45,-8,-11,-25,-2,-10,-2,8,-23 -25300,,29173,"Ralls County, MO",County or equivalent,10167,10167,10175,10281,10238,10172,10255,8,106,-43,-66,83,18,101,90,98,88,31,84,74,104,84,-13,17,16,-6,4,0,0,0,0,0,24,82,-59,-35,87,24,82,-59,-35,87,-3,7,0,-25,-8 -25460,,,"Harrison, AR",Micropolitan Statistical Area,45233,45233,45213,45314,45417,45457,45100,-20,101,103,40,-357,92,497,535,530,537,150,486,488,516,536,-58,11,47,14,1,-1,4,5,7,7,41,104,54,19,-364,40,108,59,26,-357,-2,-18,-3,0,-1 -25460,,5009,"Boone County, AR",County or equivalent,36903,36903,36888,37040,37333,37389,37196,-15,152,293,56,-193,80,412,467,464,463,115,395,398,433,436,-35,17,69,31,27,-1,4,5,7,7,23,147,224,-4,-224,22,151,229,3,-217,-2,-16,-5,22,-3 -25460,,5101,"Newton County, AR",County or equivalent,8330,8330,8325,8274,8084,8068,7904,-5,-51,-190,-16,-164,12,85,68,66,74,35,91,90,83,100,-23,-6,-22,-17,-26,0,0,0,0,0,18,-43,-170,23,-140,18,-43,-170,23,-140,0,-2,2,-22,2 -25580,,,"Hastings, NE",Micropolitan Statistical Area,31364,31364,31333,31224,31384,31581,31457,-31,-109,160,197,-124,99,399,400,399,411,104,293,289,284,303,-5,106,111,115,108,0,15,12,17,18,-26,-226,42,51,-260,-26,-211,54,68,-242,0,-4,-5,14,10 -25580,,31001,"Adams County, NE",County or equivalent,31364,31364,31333,31224,31384,31581,31457,-31,-109,160,197,-124,99,399,400,399,411,104,293,289,284,303,-5,106,111,115,108,0,15,12,17,18,-26,-226,42,51,-260,-26,-211,54,68,-242,0,-4,-5,14,10 -25700,,,"Hays, KS",Micropolitan Statistical Area,28452,28452,28451,28774,29090,29060,29013,-1,323,316,-30,-47,98,393,401,411,396,81,225,233,259,248,17,168,168,152,148,11,30,31,31,31,-29,131,116,-213,-213,-18,161,147,-182,-182,0,-6,1,0,-13 -25700,,20051,"Ellis County, KS",County or equivalent,28452,28452,28451,28774,29090,29060,29013,-1,323,316,-30,-47,98,393,401,411,396,81,225,233,259,248,17,168,168,152,148,11,30,31,31,31,-29,131,116,-213,-213,-18,161,147,-182,-182,0,-6,1,0,-13 -25720,,,"Heber, UT",Micropolitan Statistical Area,23530,23530,23673,24427,25374,26563,27714,143,754,947,1189,1151,110,371,380,406,422,37,124,107,93,109,73,247,273,313,313,7,26,21,24,27,61,467,639,828,807,68,493,660,852,834,2,14,14,24,4 -25720,,49051,"Wasatch County, UT",County or equivalent,23530,23530,23673,24427,25374,26563,27714,143,754,947,1189,1151,110,371,380,406,422,37,124,107,93,109,73,247,273,313,313,7,26,21,24,27,61,467,639,828,807,68,493,660,852,834,2,14,14,24,4 -25740,,,"Helena, MT",Micropolitan Statistical Area,74801,74801,75000,75687,76245,76838,77414,199,687,558,593,576,220,843,803,844,838,206,624,641,633,689,14,219,162,211,149,13,42,69,54,52,175,421,326,310,365,188,463,395,364,417,-3,5,1,18,10 -25740,,30043,"Jefferson County, MT",County or equivalent,11406,11406,11410,11450,11400,11505,11558,4,40,-50,105,53,36,87,73,97,88,31,89,98,109,119,5,-2,-25,-12,-31,2,5,5,5,5,1,5,-31,132,73,3,10,-26,137,78,-4,32,1,-20,6 -25740,,30049,"Lewis and Clark County, MT",County or equivalent,63395,63395,63590,64237,64845,65333,65856,195,647,608,488,523,184,756,730,747,750,175,535,543,524,570,9,221,187,223,180,11,37,64,49,47,174,416,357,178,292,185,453,421,227,339,1,-27,0,38,4 -25760,,,"Helena-West Helena, AR",Micropolitan Statistical Area,21757,21757,21686,21419,20772,20426,19930,-71,-267,-647,-346,-496,85,320,304,312,314,38,274,307,261,259,47,46,-3,51,55,1,2,2,2,2,-118,-327,-660,-351,-579,-117,-325,-658,-349,-577,-1,12,14,-48,26 -25760,,5107,"Phillips County, AR",County or equivalent,21757,21757,21686,21419,20772,20426,19930,-71,-267,-647,-346,-496,85,320,304,312,314,38,274,307,261,259,47,46,-3,51,55,1,2,2,2,2,-118,-327,-660,-351,-579,-117,-325,-658,-349,-577,-1,12,14,-48,26 -25780,,,"Henderson, NC",Micropolitan Statistical Area,45422,45419,45314,45258,45074,44730,44614,-105,-56,-184,-344,-116,169,557,598,572,567,154,448,432,526,507,15,109,166,46,60,-3,-3,-2,0,2,-121,-163,-354,-412,-148,-124,-166,-356,-412,-146,4,1,6,22,-30 -25780,,37181,"Vance County, NC",County or equivalent,45422,45419,45314,45258,45074,44730,44614,-105,-56,-184,-344,-116,169,557,598,572,567,154,448,432,526,507,15,109,166,46,60,-3,-3,-2,0,2,-121,-163,-354,-412,-148,-124,-166,-356,-412,-146,4,1,6,22,-30 -25820,,,"Hereford, TX",Micropolitan Statistical Area,19372,19372,19440,19476,19358,19187,19195,68,36,-118,-171,8,77,350,338,352,346,12,141,145,149,172,65,209,193,203,174,15,51,39,43,48,-7,-231,-357,-414,-208,8,-180,-318,-371,-160,-5,7,7,-3,-6 -25820,,48117,"Deaf Smith County, TX",County or equivalent,19372,19372,19440,19476,19358,19187,19195,68,36,-118,-171,8,77,350,338,352,346,12,141,145,149,172,65,209,193,203,174,15,51,39,43,48,-7,-231,-357,-414,-208,8,-180,-318,-371,-160,-5,7,7,-3,-6 -25840,,,"Hermiston-Pendleton, OR",Micropolitan Statistical Area,87062,87062,87245,87881,88160,88134,87892,183,636,279,-26,-242,301,1271,1240,1253,1262,154,743,666,665,711,147,528,574,588,551,14,43,43,48,55,31,79,-324,-654,-836,45,122,-281,-606,-781,-9,-14,-14,-8,-12 -25840,,41049,"Morrow County, OR",County or equivalent,11173,11173,11200,11192,11240,11266,11187,27,-8,48,26,-79,35,183,155,144,153,26,72,76,79,85,9,111,79,65,68,12,33,30,31,33,7,-159,-61,-67,-196,19,-126,-31,-36,-163,-1,7,0,-3,16 -25840,,41059,"Umatilla County, OR",County or equivalent,75889,75889,76045,76689,76920,76868,76705,156,644,231,-52,-163,266,1088,1085,1109,1109,128,671,590,586,626,138,417,495,523,483,2,10,13,17,22,24,238,-263,-587,-640,26,248,-250,-570,-618,-8,-21,-14,-5,-28 -25880,,,"Hillsdale, MI",Micropolitan Statistical Area,46688,46688,46600,46603,46264,46115,45830,-88,3,-339,-149,-285,121,567,493,537,510,109,478,446,438,451,12,89,47,99,59,0,0,1,1,3,-91,-89,-387,-199,-339,-91,-89,-386,-198,-336,-9,3,0,-50,-8 -25880,,26059,"Hillsdale County, MI",County or equivalent,46688,46688,46600,46603,46264,46115,45830,-88,3,-339,-149,-285,121,567,493,537,510,109,478,446,438,451,12,89,47,99,59,0,0,1,1,3,-91,-89,-387,-199,-339,-91,-89,-386,-198,-336,-9,3,0,-50,-8 -25900,,,"Hilo, HI",Micropolitan Statistical Area,185079,185079,185325,187039,188946,191409,194190,246,1714,1907,2463,2781,583,2453,2469,2389,2447,354,1389,1529,1625,1721,229,1064,940,764,726,161,685,699,772,770,-131,13,280,780,1221,30,698,979,1552,1991,-13,-48,-12,147,64 -25900,,15001,"Hawaii County, HI",County or equivalent,185079,185079,185325,187039,188946,191409,194190,246,1714,1907,2463,2781,583,2453,2469,2389,2447,354,1389,1529,1625,1721,229,1064,940,764,726,161,685,699,772,770,-131,13,280,780,1221,30,698,979,1552,1991,-13,-48,-12,147,64 -26020,,,"Hobbs, NM",Micropolitan Statistical Area,64727,64727,64644,65103,66286,68347,69999,-83,459,1183,2061,1652,272,1053,1124,1166,1207,196,516,513,487,471,76,537,611,679,736,11,84,63,73,81,-177,-161,514,1331,787,-166,-77,577,1404,868,7,-1,-5,-22,48 -26020,,35025,"Lea County, NM",County or equivalent,64727,64727,64644,65103,66286,68347,69999,-83,459,1183,2061,1652,272,1053,1124,1166,1207,196,516,513,487,471,76,537,611,679,736,11,84,63,73,81,-177,-161,514,1331,787,-166,-77,577,1404,868,7,-1,-5,-22,48 -26090,,,"Holland, MI",Micropolitan Statistical Area,111408,111408,111507,111552,111939,112485,113847,99,45,387,546,1362,346,1358,1348,1307,1341,191,906,917,900,894,155,452,431,407,447,11,62,58,65,66,-62,-676,-100,26,883,-51,-614,-42,91,949,-5,207,-2,48,-34 -26090,,26005,"Allegan County, MI",County or equivalent,111408,111408,111507,111552,111939,112485,113847,99,45,387,546,1362,346,1358,1348,1307,1341,191,906,917,900,894,155,452,431,407,447,11,62,58,65,66,-62,-676,-100,26,883,-51,-614,-42,91,949,-5,207,-2,48,-34 -26220,,,"Hood River, OR",Micropolitan Statistical Area,22346,22346,22442,22434,22628,22711,22885,96,-8,194,83,174,66,291,284,282,296,19,168,189,159,159,47,123,95,123,137,8,21,8,11,14,38,-143,98,-53,15,46,-122,106,-42,29,3,-9,-7,2,8 -26220,,41027,"Hood River County, OR",County or equivalent,22346,22346,22442,22434,22628,22711,22885,96,-8,194,83,174,66,291,284,282,296,19,168,189,159,159,47,123,95,123,137,8,21,8,11,14,38,-143,98,-53,15,46,-122,106,-42,29,3,-9,-7,2,8 -26340,,,"Houghton, MI",Micropolitan Statistical Area,38784,38784,38855,39138,39057,38910,38712,71,283,-81,-147,-198,109,422,392,389,391,66,385,366,365,361,43,37,26,24,30,34,165,170,180,179,2,36,-282,-345,-393,36,201,-112,-165,-214,-8,45,5,-6,-14 -26340,,26061,"Houghton County, MI",County or equivalent,36628,36628,36712,36909,36850,36729,36495,84,197,-59,-121,-234,108,403,375,371,373,65,363,347,350,349,43,40,28,21,24,34,165,170,180,179,11,-14,-262,-329,-423,45,151,-92,-149,-244,-4,6,5,7,-14 -26340,,26083,"Keweenaw County, MI",County or equivalent,2156,2156,2143,2229,2207,2181,2217,-13,86,-22,-26,36,1,19,17,18,18,1,22,19,15,12,0,-3,-2,3,6,0,0,0,0,0,-9,50,-20,-16,30,-9,50,-20,-16,30,-4,39,0,-13,0 -26460,,,"Hudson, NY",Micropolitan Statistical Area,63096,63096,63015,62644,62554,62289,62122,-81,-371,-90,-265,-167,145,574,536,524,520,139,700,644,627,624,6,-126,-108,-103,-104,12,73,71,75,75,-85,-324,-45,-259,-106,-73,-251,26,-184,-31,-14,6,-8,22,-32 -26460,,36021,"Columbia County, NY",County or equivalent,63096,63096,63015,62644,62554,62289,62122,-81,-371,-90,-265,-167,145,574,536,524,520,139,700,644,627,624,6,-126,-108,-103,-104,12,73,71,75,75,-85,-324,-45,-259,-106,-73,-251,26,-184,-31,-14,6,-8,22,-32 -26500,,,"Huntingdon, PA",Micropolitan Statistical Area,45913,46027,45998,46115,46018,45871,45750,-29,117,-97,-147,-121,96,426,420,410,414,115,424,446,472,474,-19,2,-26,-62,-60,2,11,11,11,11,-6,70,-81,-83,-39,-4,81,-70,-72,-28,-6,34,-1,-13,-33 -26500,,42061,"Huntingdon County, PA",County or equivalent,45913,46027,45998,46115,46018,45871,45750,-29,117,-97,-147,-121,96,426,420,410,414,115,424,446,472,474,-19,2,-26,-62,-60,2,11,11,11,11,-6,70,-81,-83,-39,-4,81,-70,-72,-28,-6,34,-1,-13,-33 -26540,,,"Huntington, IN",Micropolitan Statistical Area,37124,37124,37096,37171,36979,36841,36706,-28,75,-192,-138,-135,102,391,430,433,429,100,381,416,378,379,2,10,14,55,50,3,18,18,21,21,-35,48,-229,-221,-181,-32,66,-211,-200,-160,2,-1,5,7,-25 -26540,,18069,"Huntington County, IN",County or equivalent,37124,37124,37096,37171,36979,36841,36706,-28,75,-192,-138,-135,102,391,430,433,429,100,381,416,378,379,2,10,14,55,50,3,18,18,21,21,-35,48,-229,-221,-181,-32,66,-211,-200,-160,2,-1,5,7,-25 -26660,,,"Huntsville, TX",Micropolitan Statistical Area,82446,82536,82916,82932,82956,83853,84013,380,16,24,897,160,190,792,669,745,713,99,721,707,700,732,91,71,-38,45,-19,19,93,90,102,105,259,-121,-34,711,110,278,-28,56,813,215,11,-27,6,39,-36 -26660,,48455,"Trinity County, TX",County or equivalent,14585,14675,14697,14636,14300,14401,14224,22,-61,-336,101,-177,30,181,107,121,115,30,231,214,213,200,0,-50,-107,-92,-85,0,-5,-5,-3,-3,23,-10,-226,183,-81,23,-15,-231,180,-84,-1,4,2,13,-8 -26660,,48471,"Walker County, TX",County or equivalent,67861,67861,68219,68296,68656,69452,69789,358,77,360,796,337,160,611,562,624,598,69,490,493,487,532,91,121,69,137,66,19,98,95,105,108,236,-111,192,528,191,255,-13,287,633,299,12,-31,4,26,-28 -26700,,,"Huron, SD",Micropolitan Statistical Area,17398,17398,17412,17732,18000,18299,18169,14,320,268,299,-130,60,305,293,336,342,65,207,201,164,191,-5,98,92,172,151,18,134,130,138,138,3,89,48,21,-432,21,223,178,159,-294,-2,-1,-2,-32,13 -26700,,46005,"Beadle County, SD",County or equivalent,17398,17398,17412,17732,18000,18299,18169,14,320,268,299,-130,60,305,293,336,342,65,207,201,164,191,-5,98,92,172,151,18,134,130,138,138,3,89,48,21,-432,21,223,178,159,-294,-2,-1,-2,-32,13 -26740,,,"Hutchinson, KS",Micropolitan Statistical Area,64511,64511,64558,64393,64217,64155,63794,47,-165,-176,-62,-361,192,722,773,743,734,201,711,755,711,689,-9,11,18,32,45,1,9,9,10,12,59,-154,-202,-113,-410,60,-145,-193,-103,-398,-4,-31,-1,9,-8 -26740,,20155,"Reno County, KS",County or equivalent,64511,64511,64558,64393,64217,64155,63794,47,-165,-176,-62,-361,192,722,773,743,734,201,711,755,711,689,-9,11,18,32,45,1,9,9,10,12,59,-154,-202,-113,-410,60,-145,-193,-103,-398,-4,-31,-1,9,-8 -26780,,,"Hutchinson, MN",Micropolitan Statistical Area,36651,36651,36608,36408,36011,35953,35882,-43,-200,-397,-58,-71,116,434,394,435,418,105,295,323,317,320,11,139,71,118,98,2,12,12,14,14,-57,-378,-495,-209,-192,-55,-366,-483,-195,-178,1,27,15,19,9 -26780,,27085,"McLeod County, MN",County or equivalent,36651,36651,36608,36408,36011,35953,35882,-43,-200,-397,-58,-71,116,434,394,435,418,105,295,323,317,320,11,139,71,118,98,2,12,12,14,14,-57,-378,-495,-209,-192,-55,-366,-483,-195,-178,1,27,15,19,9 -26860,,,"Indiana, PA",Micropolitan Statistical Area,88880,88891,88810,88536,88209,88246,87706,-81,-274,-327,37,-540,201,838,847,924,883,231,896,877,855,869,-30,-58,-30,69,14,14,83,82,88,88,-54,-267,-379,-157,-589,-40,-184,-297,-69,-501,-11,-32,0,37,-53 -26860,,42063,"Indiana County, PA",County or equivalent,88880,88891,88810,88536,88209,88246,87706,-81,-274,-327,37,-540,201,838,847,924,883,231,896,877,855,869,-30,-58,-30,69,14,14,83,82,88,88,-54,-267,-379,-157,-589,-40,-184,-297,-69,-501,-11,-32,0,37,-53 -26940,,,"Indianola, MS",Micropolitan Statistical Area,29450,29450,29023,28574,28473,28003,27496,-427,-449,-101,-470,-507,98,371,358,323,311,38,327,292,281,278,60,44,66,42,33,1,-3,-3,-3,-3,-521,-509,-162,-506,-551,-520,-512,-165,-509,-554,33,19,-2,-3,14 -26940,,28133,"Sunflower County, MS",County or equivalent,29450,29450,29023,28574,28473,28003,27496,-427,-449,-101,-470,-507,98,371,358,323,311,38,327,292,281,278,60,44,66,42,33,1,-3,-3,-3,-3,-521,-509,-162,-506,-551,-520,-512,-165,-509,-554,33,19,-2,-3,14 -26960,,,"Ionia, MI",Micropolitan Statistical Area,63905,63905,63848,63845,63896,63996,64294,-57,-3,51,100,298,182,748,733,733,723,169,459,447,499,495,13,289,286,234,228,0,6,5,5,5,-72,-281,-244,-168,103,-72,-275,-239,-163,108,2,-17,4,29,-38 -26960,,26067,"Ionia County, MI",County or equivalent,63905,63905,63848,63845,63896,63996,64294,-57,-3,51,100,298,182,748,733,733,723,169,459,447,499,495,13,289,286,234,228,0,6,5,5,5,-72,-281,-244,-168,103,-72,-275,-239,-163,108,2,-17,4,29,-38 -27020,,,"Iron Mountain, MI-WI",Micropolitan Statistical Area,30591,30591,30561,30582,30700,30574,30438,-30,21,118,-126,-136,82,245,293,284,281,69,392,340,345,346,13,-147,-47,-61,-65,1,-1,-1,1,1,-45,147,166,-59,-73,-44,146,165,-58,-72,1,22,0,-7,1 -27020,,26043,"Dickinson County, MI",County or equivalent,26168,26168,26157,26084,26228,26057,25957,-11,-73,144,-171,-100,71,220,264,259,258,46,336,293,309,299,25,-116,-29,-50,-41,1,-1,-1,1,1,-38,66,173,-110,-58,-37,65,172,-109,-57,1,-22,1,-12,-2 -27020,,55037,"Florence County, WI",County or equivalent,4423,4423,4404,4498,4472,4517,4481,-19,94,-26,45,-36,11,25,29,25,23,23,56,47,36,47,-12,-31,-18,-11,-24,0,0,0,0,0,-7,81,-7,51,-15,-7,81,-7,51,-15,0,44,-1,5,3 -27160,,,"Jackson, OH",Micropolitan Statistical Area,33225,33225,33238,33116,32873,32784,32748,13,-122,-243,-89,-36,94,402,392,440,409,132,388,383,388,352,-38,14,9,52,57,1,0,0,0,0,51,-130,-256,-140,-86,52,-130,-256,-140,-86,-1,-6,4,-1,-7 -27160,,39079,"Jackson County, OH",County or equivalent,33225,33225,33238,33116,32873,32784,32748,13,-122,-243,-89,-36,94,402,392,440,409,132,388,383,388,352,-38,14,9,52,57,1,0,0,0,0,51,-130,-256,-140,-86,52,-130,-256,-140,-86,-1,-6,4,-1,-7 -27220,,,"Jackson, WY-ID",Micropolitan Statistical Area,31464,31464,31444,31661,31791,32676,33271,-20,217,130,885,595,114,419,382,420,417,28,122,94,103,100,86,297,288,317,317,6,73,47,54,59,-117,-162,-198,514,214,-111,-89,-151,568,273,5,9,-7,0,5 -27220,,16081,"Teton County, ID",County or equivalent,10170,10170,10154,10179,10087,10301,10341,-16,25,-92,214,40,45,159,151,164,162,18,35,33,25,28,27,124,118,139,134,1,19,10,11,13,-46,-128,-221,89,-104,-45,-109,-211,100,-91,2,10,1,-25,-3 -27220,,56039,"Teton County, WY",County or equivalent,21294,21294,21290,21482,21704,22375,22930,-4,192,222,671,555,69,260,231,256,255,10,87,61,78,72,59,173,170,178,183,5,54,37,43,46,-71,-34,23,425,318,-66,20,60,468,364,3,-1,-8,25,8 -27300,,,"Jacksonville, IL",Micropolitan Statistical Area,40902,40906,40888,40793,40574,40272,40133,-18,-95,-219,-302,-139,121,421,431,416,427,113,445,466,417,407,8,-24,-35,-1,20,3,20,21,24,24,-28,-83,-206,-294,-176,-25,-63,-185,-270,-152,-1,-8,1,-31,-7 -27300,,17137,"Morgan County, IL",County or equivalent,35547,35551,35553,35561,35279,35038,34929,2,8,-282,-241,-109,113,371,376,359,371,87,381,411,369,359,26,-10,-35,-10,12,3,20,21,24,24,-26,7,-268,-234,-137,-23,27,-247,-210,-113,-1,-9,0,-21,-8 -27300,,17171,"Scott County, IL",County or equivalent,5355,5355,5335,5232,5295,5234,5204,-20,-103,63,-61,-30,8,50,55,57,56,26,64,55,48,48,-18,-14,0,9,8,0,0,0,0,0,-2,-90,62,-60,-39,-2,-90,62,-60,-39,0,1,1,-10,1 -27380,,,"Jacksonville, TX",Micropolitan Statistical Area,50845,50845,50872,50965,51152,50965,50902,27,93,187,-187,-63,152,770,707,739,725,77,532,478,500,487,75,238,229,239,238,1,11,5,10,14,-40,-143,-43,-365,-306,-39,-132,-38,-355,-292,-9,-13,-4,-71,-9 -27380,,48073,"Cherokee County, TX",County or equivalent,50845,50845,50872,50965,51152,50965,50902,27,93,187,-187,-63,152,770,707,739,725,77,532,478,500,487,75,238,229,239,238,1,11,5,10,14,-40,-143,-43,-365,-306,-39,-132,-38,-355,-292,-9,-13,-4,-71,-9 -27420,,,"Jamestown, ND",Micropolitan Statistical Area,21100,21100,21114,20989,20958,21090,21129,14,-125,-31,132,39,55,217,236,231,239,39,246,256,233,224,16,-29,-20,-2,15,2,-1,-1,-1,-1,0,-90,-6,126,36,2,-91,-7,125,35,-4,-5,-4,9,-11 -27420,,38093,"Stutsman County, ND",County or equivalent,21100,21100,21114,20989,20958,21090,21129,14,-125,-31,132,39,55,217,236,231,239,39,246,256,233,224,16,-29,-20,-2,15,2,-1,-1,-1,-1,0,-90,-6,126,36,2,-91,-7,125,35,-4,-5,-4,9,-11 -27460,,,"Jamestown-Dunkirk-Fredonia, NY",Micropolitan Statistical Area,134905,134905,134839,134316,133458,133115,132053,-66,-523,-858,-343,-1062,381,1386,1410,1412,1402,392,1497,1411,1389,1363,-11,-111,-1,23,39,28,175,177,180,180,-83,-507,-1056,-536,-1196,-55,-332,-879,-356,-1016,0,-80,22,-10,-85 -27460,,36013,"Chautauqua County, NY",County or equivalent,134905,134905,134839,134316,133458,133115,132053,-66,-523,-858,-343,-1062,381,1386,1410,1412,1402,392,1497,1411,1389,1363,-11,-111,-1,23,39,28,175,177,180,180,-83,-507,-1056,-536,-1196,-55,-332,-879,-356,-1016,0,-80,22,-10,-85 -27540,,,"Jasper, IN",Micropolitan Statistical Area,54734,54733,54745,54948,54868,54984,54969,12,203,-80,116,-15,155,648,648,646,646,83,546,550,500,528,72,102,98,146,118,14,45,42,46,47,-73,35,-223,-105,-151,-59,80,-181,-59,-104,-1,21,3,29,-29 -27540,,18037,"Dubois County, IN",County or equivalent,41889,41889,41898,42193,42094,42318,42345,9,295,-99,224,27,119,508,508,511,519,65,401,411,365,388,54,107,97,146,131,14,44,41,45,46,-63,122,-239,7,-130,-49,166,-198,52,-84,4,22,2,26,-20 -27540,,18125,"Pike County, IN",County or equivalent,12845,12844,12847,12755,12774,12666,12624,3,-92,19,-108,-42,36,140,140,135,127,18,145,139,135,140,18,-5,1,0,-13,0,1,1,1,1,-10,-87,16,-112,-21,-10,-86,17,-111,-20,-5,-1,1,3,-9 -27600,,,"Jefferson, GA",Micropolitan Statistical Area,60485,60485,60777,60551,60472,60971,61870,292,-226,-79,499,899,228,804,781,743,775,92,493,536,555,509,136,311,245,188,266,4,30,32,41,41,153,-728,-356,234,562,157,-698,-324,275,603,-1,161,0,36,30 -27600,,13157,"Jackson County, GA",County or equivalent,60485,60485,60777,60551,60472,60971,61870,292,-226,-79,499,899,228,804,781,743,775,92,493,536,555,509,136,311,245,188,266,4,30,32,41,41,153,-728,-356,234,562,157,-698,-324,275,603,-1,161,0,36,30 -27700,,,"Jesup, GA",Micropolitan Statistical Area,30099,30099,30116,30355,30371,30058,29949,17,239,16,-313,-109,127,442,395,396,369,115,293,287,317,311,12,149,108,79,58,0,3,3,6,6,9,97,-94,-420,-166,9,100,-91,-414,-160,-4,-10,-1,22,-7 -27700,,13305,"Wayne County, GA",County or equivalent,30099,30099,30116,30355,30371,30058,29949,17,239,16,-313,-109,127,442,395,396,369,115,293,287,317,311,12,149,108,79,58,0,3,3,6,6,9,97,-94,-420,-166,9,100,-91,-414,-160,-4,-10,-1,22,-7 -27920,,,"Junction City, KS",Micropolitan Statistical Area,34362,34362,35263,35324,38003,36987,36713,901,61,2679,-1016,-274,230,1042,967,1046,976,77,192,207,203,206,153,850,760,843,770,100,160,567,345,288,606,-984,1307,-2239,-1339,706,-824,1874,-1894,-1051,42,35,45,35,7 -27920,,20061,"Geary County, KS",County or equivalent,34362,34362,35263,35324,38003,36987,36713,901,61,2679,-1016,-274,230,1042,967,1046,976,77,192,207,203,206,153,850,760,843,770,100,160,567,345,288,606,-984,1307,-2239,-1339,706,-824,1874,-1894,-1051,42,35,45,35,7 -27940,,,"Juneau, AK",Micropolitan Statistical Area,31275,31275,31386,32170,32411,32626,32406,111,784,241,215,-220,101,412,368,410,380,62,157,182,166,152,39,255,186,244,228,7,53,76,64,59,62,469,-15,-52,-528,69,522,61,12,-469,3,7,-6,-41,21 -27940,,2110,"Juneau City and Borough, AK",County or equivalent,31275,31275,31386,32170,32411,32626,32406,111,784,241,215,-220,101,412,368,410,380,62,157,182,166,152,39,255,186,244,228,7,53,76,64,59,62,469,-15,-52,-528,69,522,61,12,-469,3,7,-6,-41,21 -28060,,,"Kalispell, MT",Micropolitan Statistical Area,90928,90928,90902,91222,91692,93125,94924,-26,320,470,1433,1799,300,1100,1066,1108,1106,186,745,787,769,786,114,355,279,339,320,17,58,61,65,65,-161,-38,146,989,1306,-144,20,207,1054,1371,4,-55,-16,40,108 -28060,,30029,"Flathead County, MT",County or equivalent,90928,90928,90902,91222,91692,93125,94924,-26,320,470,1433,1799,300,1100,1066,1108,1106,186,745,787,769,786,114,355,279,339,320,17,58,61,65,65,-161,-38,146,989,1306,-144,20,207,1054,1371,4,-55,-16,40,108 -28180,,,"Kapaa, HI",Micropolitan Statistical Area,67091,67090,67217,67799,68553,69679,70475,127,582,754,1126,796,200,890,883,865,889,156,570,492,591,639,44,320,391,274,250,89,368,383,411,408,-2,-72,-13,386,167,87,296,370,797,575,-4,-34,-7,55,-29 -28180,,15007,"Kauai County, HI",County or equivalent,67091,67090,67217,67799,68553,69679,70475,127,582,754,1126,796,200,890,883,865,889,156,570,492,591,639,44,320,391,274,250,89,368,383,411,408,-2,-72,-13,386,167,87,296,370,797,575,-4,-34,-7,55,-29 -28260,,,"Kearney, NE",Micropolitan Statistical Area,52591,52591,52671,53412,54178,54611,54868,80,741,766,433,257,192,744,779,769,787,97,440,366,397,400,95,304,413,372,387,23,129,131,143,143,-37,317,218,-74,-268,-14,446,349,69,-125,-1,-9,4,-8,-5 -28260,,31019,"Buffalo County, NE",County or equivalent,46102,46102,46174,46839,47644,48058,48224,72,665,805,414,166,161,667,682,697,699,67,359,298,344,342,94,308,384,353,357,23,125,127,139,139,-45,238,291,-80,-326,-22,363,418,59,-187,0,-6,3,2,-4 -28260,,31099,"Kearney County, NE",County or equivalent,6489,6489,6497,6573,6534,6553,6644,8,76,-39,19,91,31,77,97,72,88,30,81,68,53,58,1,-4,29,19,30,0,4,4,4,4,8,79,-73,6,58,8,83,-69,10,62,-1,-3,1,-10,-1 -28300,,,"Keene, NH",Micropolitan Statistical Area,77117,77117,76914,76792,76758,76399,76115,-203,-122,-34,-359,-284,163,743,712,673,679,149,697,718,680,643,14,46,-6,-7,36,6,33,36,41,41,-239,-193,-65,-375,-321,-233,-160,-29,-334,-280,16,-8,1,-18,-40 -28300,,33005,"Cheshire County, NH",County or equivalent,77117,77117,76914,76792,76758,76399,76115,-203,-122,-34,-359,-284,163,743,712,673,679,149,697,718,680,643,14,46,-6,-7,36,6,33,36,41,41,-239,-193,-65,-375,-321,-233,-160,-29,-334,-280,16,-8,1,-18,-40 -28340,,,"Kendallville, IN",Micropolitan Statistical Area,47536,47536,47471,47460,47424,47511,47618,-65,-11,-36,87,107,148,569,579,598,586,129,448,442,434,432,19,121,137,164,154,-2,3,4,8,9,-83,-196,-179,-100,-26,-85,-193,-175,-92,-17,1,61,2,15,-30 -28340,,18113,"Noble County, IN",County or equivalent,47536,47536,47471,47460,47424,47511,47618,-65,-11,-36,87,107,148,569,579,598,586,129,448,442,434,432,19,121,137,164,154,-2,3,4,8,9,-83,-196,-179,-100,-26,-85,-193,-175,-92,-17,1,61,2,15,-30 -28380,,,"Kennett, MO",Micropolitan Statistical Area,31953,31953,31952,32031,31872,31692,31344,-1,79,-159,-180,-348,116,502,437,467,436,78,434,454,416,432,38,68,-17,51,4,4,3,2,4,5,-40,17,-143,-206,-378,-36,20,-141,-202,-373,-3,-9,-1,-29,21 -28380,,29069,"Dunklin County, MO",County or equivalent,31953,31953,31952,32031,31872,31692,31344,-1,79,-159,-180,-348,116,502,437,467,436,78,434,454,416,432,38,68,-17,51,4,4,3,2,4,5,-40,17,-143,-206,-378,-36,20,-141,-202,-373,-3,-9,-1,-29,21 -28500,,,"Kerrville, TX",Micropolitan Statistical Area,49625,49625,49641,49636,49798,49932,50562,16,-5,162,134,630,129,474,487,504,496,186,671,683,709,687,-57,-197,-196,-205,-191,11,49,35,43,46,67,146,323,236,712,78,195,358,279,758,-5,-3,0,60,63 -28500,,48265,"Kerr County, TX",County or equivalent,49625,49625,49641,49636,49798,49932,50562,16,-5,162,134,630,129,474,487,504,496,186,671,683,709,687,-57,-197,-196,-205,-191,11,49,35,43,46,67,146,323,236,712,78,195,358,279,758,-5,-3,0,60,63 -28540,,,"Ketchikan, AK",Micropolitan Statistical Area,13477,13477,13536,13654,13709,13695,13787,59,118,55,-14,92,54,187,188,167,172,14,103,108,58,68,40,84,80,109,104,7,41,54,50,47,12,-2,-80,-156,-71,19,39,-26,-106,-24,0,-5,1,-17,12 -28540,,2130,"Ketchikan Gateway Borough, AK",County or equivalent,13477,13477,13536,13654,13709,13695,13787,59,118,55,-14,92,54,187,188,167,172,14,103,108,58,68,40,84,80,109,104,7,41,54,50,47,12,-2,-80,-156,-71,19,39,-26,-106,-24,0,-5,1,-17,12 -28580,,,"Key West, FL",Micropolitan Statistical Area,73090,73090,73226,74151,74991,76536,77136,136,925,840,1545,600,170,719,715,723,750,127,678,636,641,695,43,41,79,82,55,87,409,426,435,429,14,483,339,968,163,101,892,765,1403,592,-8,-8,-4,60,-47 -28580,,12087,"Monroe County, FL",County or equivalent,73090,73090,73226,74151,74991,76536,77136,136,925,840,1545,600,170,719,715,723,750,127,678,636,641,695,43,41,79,82,55,87,409,426,435,429,14,483,339,968,163,101,892,765,1403,592,-8,-8,-4,60,-47 -28620,,,"Kill Devil Hills, NC",Micropolitan Statistical Area,38327,38327,38389,38524,38589,39024,39219,62,135,65,435,195,102,405,425,405,419,95,365,351,293,325,7,40,74,112,94,0,9,13,11,6,56,102,-32,306,83,56,111,-19,317,89,-1,-16,10,6,12 -28620,,37055,"Dare County, NC",County or equivalent,33920,33920,33980,34191,34458,34919,35104,60,211,267,461,185,91,362,387,362,379,91,300,305,272,289,0,62,82,90,90,0,10,15,13,8,58,154,167,336,78,58,164,182,349,86,2,-15,3,22,9 -28620,,37177,"Tyrrell County, NC",County or equivalent,4407,4407,4409,4333,4131,4105,4115,2,-76,-202,-26,10,11,43,38,43,40,4,65,46,21,36,7,-22,-8,22,4,0,-1,-2,-2,-2,-2,-52,-199,-30,5,-2,-53,-201,-32,3,-3,-1,7,-16,3 -28780,,,"Kingsville, TX",Micropolitan Statistical Area,32477,32477,32513,32533,32612,32564,32590,36,20,79,-48,26,133,476,495,494,494,86,257,246,210,229,47,219,249,284,265,29,106,145,130,124,-42,-302,-309,-459,-368,-13,-196,-164,-329,-244,2,-3,-6,-3,5 -28780,,48261,"Kenedy County, TX",County or equivalent,416,416,418,435,432,415,400,2,17,-3,-17,-15,0,5,1,9,7,0,0,3,1,0,0,5,-2,8,7,0,0,0,0,0,2,11,0,-24,-29,2,11,0,-24,-29,0,1,-1,-1,7 -28780,,48273,"Kleberg County, TX",County or equivalent,32061,32061,32095,32098,32180,32149,32190,34,3,82,-31,41,133,471,494,485,487,86,257,243,209,229,47,214,251,276,258,29,106,145,130,124,-44,-313,-309,-435,-339,-15,-207,-164,-305,-215,2,-4,-5,-2,-2 -28820,,,"Kinston, NC",Micropolitan Statistical Area,59495,59495,59452,59448,59181,58911,58485,-43,-4,-267,-270,-426,184,660,668,656,653,138,660,666,745,734,46,0,2,-89,-81,22,69,62,69,71,-104,-69,-326,-261,-382,-82,0,-264,-192,-311,-7,-4,-5,11,-34 -28820,,37107,"Lenoir County, NC",County or equivalent,59495,59495,59452,59448,59181,58911,58485,-43,-4,-267,-270,-426,184,660,668,656,653,138,660,666,745,734,46,0,2,-89,-81,22,69,62,69,71,-104,-69,-326,-261,-382,-82,0,-264,-192,-311,-7,-4,-5,11,-34 -28860,,,"Kirksville, MO",Micropolitan Statistical Area,30038,30038,30058,29992,30059,30072,29972,20,-66,67,13,-100,89,300,335,299,305,40,254,266,262,240,49,46,69,37,65,17,81,83,93,93,-42,-183,-81,-94,-256,-25,-102,2,-1,-163,-4,-10,-4,-23,-2 -28860,,29001,"Adair County, MO",County or equivalent,25607,25607,25619,25607,25671,25713,25602,12,-12,64,42,-111,73,244,274,242,250,29,205,219,210,190,44,39,55,32,60,17,83,85,95,95,-46,-122,-73,-73,-261,-29,-39,12,22,-166,-3,-12,-3,-12,-5 -28860,,29197,"Schuyler County, MO",County or equivalent,4431,4431,4439,4385,4388,4359,4370,8,-54,3,-29,11,16,56,61,57,55,11,49,47,52,50,5,7,14,5,5,0,-2,-2,-2,-2,4,-61,-8,-21,5,4,-63,-10,-23,3,-1,2,-1,-11,3 -28900,,,"Klamath Falls, OR",Micropolitan Statistical Area,66380,66380,66286,66292,66042,65848,65455,-94,6,-250,-194,-393,181,813,793,774,771,206,699,761,676,724,-25,114,32,98,47,5,28,48,34,32,-75,-99,-332,-236,-471,-70,-71,-284,-202,-439,1,-37,2,-90,-1 -28900,,41035,"Klamath County, OR",County or equivalent,66380,66380,66286,66292,66042,65848,65455,-94,6,-250,-194,-393,181,813,793,774,771,206,699,761,676,724,-25,114,32,98,47,5,28,48,34,32,-75,-99,-332,-236,-471,-70,-71,-284,-202,-439,1,-37,2,-90,-1 -29060,,,"Laconia, NH",Micropolitan Statistical Area,60088,60092,60109,60253,60394,60201,60305,17,144,141,-193,104,146,587,526,540,512,129,603,618,659,703,17,-16,-92,-119,-191,12,66,69,73,73,-9,127,168,-178,184,3,193,237,-105,257,-3,-33,-4,31,38 -29060,,33001,"Belknap County, NH",County or equivalent,60088,60092,60109,60253,60394,60201,60305,17,144,141,-193,104,146,587,526,540,512,129,603,618,659,703,17,-16,-92,-119,-191,12,66,69,73,73,-9,127,168,-178,184,3,193,237,-105,257,-3,-33,-4,31,38 -29260,,,"La Grande, OR",Micropolitan Statistical Area,25748,25744,25746,25888,25818,25539,25691,2,142,-70,-279,152,77,294,316,297,297,89,251,255,245,257,-12,43,61,52,40,7,21,20,22,23,11,84,-152,-313,92,18,105,-132,-291,115,-4,-6,1,-40,-3 -29260,,41061,"Union County, OR",County or equivalent,25748,25744,25746,25888,25818,25539,25691,2,142,-70,-279,152,77,294,316,297,297,89,251,255,245,257,-12,43,61,52,40,7,21,20,22,23,11,84,-152,-313,92,18,105,-132,-291,115,-4,-6,1,-40,-3 -29300,,,"LaGrange, GA",Micropolitan Statistical Area,67044,67044,67154,67773,68472,69007,69469,110,619,699,535,462,254,940,893,880,912,204,628,619,689,711,50,312,274,191,201,10,37,36,41,43,58,270,394,305,221,68,307,430,346,264,-8,0,-5,-2,-3 -29300,,13285,"Troup County, GA",County or equivalent,67044,67044,67154,67773,68472,69007,69469,110,619,699,535,462,254,940,893,880,912,204,628,619,689,711,50,312,274,191,201,10,37,36,41,43,58,270,394,305,221,68,307,430,346,264,-8,0,-5,-2,-3 -29380,,,"Lake City, FL",Micropolitan Statistical Area,67531,67532,67606,67340,67943,67563,67857,74,-266,603,-380,294,229,768,782,798,769,211,745,729,786,768,18,23,53,12,1,10,31,29,30,29,49,-278,509,-427,312,59,-247,538,-397,341,-3,-42,12,5,-48 -29380,,12023,"Columbia County, FL",County or equivalent,67531,67532,67606,67340,67943,67563,67857,74,-266,603,-380,294,229,768,782,798,769,211,745,729,786,768,18,23,53,12,1,10,31,29,30,29,49,-278,509,-427,312,59,-247,538,-397,341,-3,-42,12,5,-48 -29500,,,"Lamesa, TX",Micropolitan Statistical Area,13833,13833,13850,13805,13663,13273,13372,17,-45,-142,-390,99,51,193,197,175,191,52,136,131,123,129,-1,57,66,52,62,1,9,3,5,7,18,-114,-211,-470,38,19,-105,-208,-465,45,-1,3,0,23,-8 -29500,,48115,"Dawson County, TX",County or equivalent,13833,13833,13850,13805,13663,13273,13372,17,-45,-142,-390,99,51,193,197,175,191,52,136,131,123,129,-1,57,66,52,62,1,9,3,5,7,18,-114,-211,-470,38,19,-105,-208,-465,45,-1,3,0,23,-8 -29660,,,"Laramie, WY",Micropolitan Statistical Area,36299,36299,36440,36913,37363,37574,37811,141,473,450,211,237,116,412,443,397,409,31,189,192,191,176,85,223,251,206,233,10,104,104,121,121,42,137,97,-126,-131,52,241,201,-5,-10,4,9,-2,10,14 -29660,,56001,"Albany County, WY",County or equivalent,36299,36299,36440,36913,37363,37574,37811,141,473,450,211,237,116,412,443,397,409,31,189,192,191,176,85,223,251,206,233,10,104,104,121,121,42,137,97,-126,-131,52,241,201,-5,-10,4,9,-2,10,14 -29780,,,"Las Vegas, NM",Micropolitan Statistical Area,29393,29393,29377,29305,28953,28623,28239,-16,-72,-352,-330,-384,69,320,333,354,342,33,279,266,273,269,36,41,67,81,73,5,24,26,30,31,-55,-129,-444,-445,-521,-50,-105,-418,-415,-490,-2,-8,-1,4,33 -29780,,35047,"San Miguel County, NM",County or equivalent,29393,29393,29377,29305,28953,28623,28239,-16,-72,-352,-330,-384,69,320,333,354,342,33,279,266,273,269,36,41,67,81,73,5,24,26,30,31,-55,-129,-444,-445,-521,-50,-105,-418,-415,-490,-2,-8,-1,4,33 -29860,,,"Laurel, MS",Micropolitan Statistical Area,84823,84823,84868,84717,84920,85403,84891,45,-151,203,483,-512,338,1209,1186,1292,1234,215,852,892,935,962,123,357,294,357,272,-3,5,5,9,12,-70,-487,-97,120,-772,-73,-482,-92,129,-760,-5,-26,1,-3,-24 -29860,,28061,"Jasper County, MS",County or equivalent,17062,17062,16986,16796,16535,16517,16601,-76,-190,-261,-18,84,53,215,232,279,259,22,186,215,168,171,31,29,17,111,88,0,0,0,0,0,-105,-226,-282,-125,-10,-105,-226,-282,-125,-10,-2,7,4,-4,6 -29860,,28067,"Jones County, MS",County or equivalent,67761,67761,67882,67921,68385,68886,68290,121,39,464,501,-596,285,994,954,1013,975,193,666,677,767,791,92,328,277,246,184,-3,5,5,9,12,35,-261,185,245,-762,32,-256,190,254,-750,-3,-33,-3,1,-30 -29900,,,"Laurinburg, NC",Micropolitan Statistical Area,36157,36157,36099,36332,36157,36006,35576,-58,233,-175,-151,-430,140,476,447,457,448,129,358,389,410,391,11,118,58,47,57,4,14,14,18,18,-73,88,-252,-230,-505,-69,102,-238,-212,-487,0,13,5,14,0 -29900,,37165,"Scotland County, NC",County or equivalent,36157,36157,36099,36332,36157,36006,35576,-58,233,-175,-151,-430,140,476,447,457,448,129,358,389,410,391,11,118,58,47,57,4,14,14,18,18,-73,88,-252,-230,-505,-69,102,-238,-212,-487,0,13,5,14,0 -29980,,,"Lawrenceburg, TN",Micropolitan Statistical Area,41869,41869,41990,42053,42129,41973,42274,121,63,76,-156,301,125,562,568,548,546,142,480,502,494,476,-17,82,66,54,70,2,11,11,11,11,135,-10,6,-230,254,137,1,17,-219,265,1,-20,-7,9,-34 -29980,,47099,"Lawrence County, TN",County or equivalent,41869,41869,41990,42053,42129,41973,42274,121,63,76,-156,301,125,562,568,548,546,142,480,502,494,476,-17,82,66,54,70,2,11,11,11,11,135,-10,6,-230,254,137,1,17,-219,265,1,-20,-7,9,-34 -30060,,,"Lebanon, MO",Micropolitan Statistical Area,35571,35571,35654,35577,35412,35640,35439,83,-77,-165,228,-201,111,445,485,437,443,58,359,386,376,359,53,86,99,61,84,0,4,4,4,4,33,-171,-272,139,-285,33,-167,-268,143,-281,-3,4,4,24,-4 -30060,,29105,"Laclede County, MO",County or equivalent,35571,35571,35654,35577,35412,35640,35439,83,-77,-165,228,-201,111,445,485,437,443,58,359,386,376,359,53,86,99,61,84,0,4,4,4,4,33,-171,-272,139,-285,33,-167,-268,143,-281,-3,4,4,24,-4 -30220,,,"Levelland, TX",Micropolitan Statistical Area,22935,22935,22839,22965,23122,23520,23577,-96,126,157,398,57,81,322,343,339,361,73,216,185,179,201,8,106,158,160,160,8,35,34,37,38,-116,-21,-35,206,-141,-108,14,-1,243,-103,4,6,0,-5,0 -30220,,48219,"Hockley County, TX",County or equivalent,22935,22935,22839,22965,23122,23520,23577,-96,126,157,398,57,81,322,343,339,361,73,216,185,179,201,8,106,158,160,160,8,35,34,37,38,-116,-21,-35,206,-141,-108,14,-1,243,-103,4,6,0,-5,0 -30260,,,"Lewisburg, PA",Micropolitan Statistical Area,44947,44949,44972,45069,45139,44719,44874,23,97,70,-420,155,90,425,380,414,409,72,406,360,360,392,18,19,20,54,17,9,48,48,54,55,2,57,3,-543,102,11,105,51,-489,157,-6,-27,-1,15,-19 -30260,,42119,"Union County, PA",County or equivalent,44947,44949,44972,45069,45139,44719,44874,23,97,70,-420,155,90,425,380,414,409,72,406,360,360,392,18,19,20,54,17,9,48,48,54,55,2,57,3,-543,102,11,105,51,-489,157,-6,-27,-1,15,-19 -30280,,,"Lewisburg, TN",Micropolitan Statistical Area,30617,30617,30682,30900,30934,31098,31269,65,218,34,164,171,90,368,355,359,351,51,327,279,297,314,39,41,76,62,37,5,16,14,16,17,23,140,-50,67,131,28,156,-36,83,148,-2,21,-6,19,-14 -30280,,47117,"Marshall County, TN",County or equivalent,30617,30617,30682,30900,30934,31098,31269,65,218,34,164,171,90,368,355,359,351,51,327,279,297,314,39,41,76,62,37,5,16,14,16,17,23,140,-50,67,131,28,156,-36,83,148,-2,21,-6,19,-14 -30380,,,"Lewistown, PA",Micropolitan Statistical Area,46682,46683,46657,46787,46829,46701,46552,-26,130,42,-128,-149,135,542,576,595,581,164,515,482,510,506,-29,27,94,85,75,3,16,16,17,17,5,90,-70,-234,-207,8,106,-54,-217,-190,-5,-3,2,4,-34 -30380,,42087,"Mifflin County, PA",County or equivalent,46682,46683,46657,46787,46829,46701,46552,-26,130,42,-128,-149,135,542,576,595,581,164,515,482,510,506,-29,27,94,85,75,3,16,16,17,17,5,90,-70,-234,-207,8,106,-54,-217,-190,-5,-3,2,4,-34 -30420,,,"Lexington, NE",Micropolitan Statistical Area,26370,26370,26402,26277,26138,26126,26066,32,-125,-139,-12,-60,117,364,417,396,408,84,218,231,239,219,33,146,186,157,189,19,72,76,89,89,-19,-373,-409,-219,-330,0,-301,-333,-130,-241,-1,30,8,-39,-8 -30420,,31047,"Dawson County, NE",County or equivalent,24326,24326,24354,24324,24100,24152,24096,28,-30,-224,52,-56,111,341,391,374,387,72,192,214,217,201,39,149,177,157,186,19,71,75,88,88,-29,-254,-483,-166,-323,-10,-183,-408,-78,-235,-1,4,7,-27,-7 -30420,,31073,"Gosper County, NE",County or equivalent,2044,2044,2048,1953,2038,1974,1970,4,-95,85,-64,-4,6,23,26,22,21,12,26,17,22,18,-6,-3,9,0,3,0,1,1,1,1,10,-119,74,-53,-7,10,-118,75,-52,-6,0,26,1,-12,-1 -30580,,,"Liberal, KS",Micropolitan Statistical Area,22952,22952,22985,23223,23453,23470,23465,33,238,230,17,-5,119,449,474,452,455,53,130,128,121,116,66,319,346,331,339,17,87,86,106,109,-51,-163,-200,-409,-477,-34,-76,-114,-303,-368,1,-5,-2,-11,24 -30580,,20175,"Seward County, KS",County or equivalent,22952,22952,22985,23223,23453,23470,23465,33,238,230,17,-5,119,449,474,452,455,53,130,128,121,116,66,319,346,331,339,17,87,86,106,109,-51,-163,-200,-409,-477,-34,-76,-114,-303,-368,1,-5,-2,-11,24 -30660,,,"Lincoln, IL",Micropolitan Statistical Area,30305,30305,30283,30259,30003,29943,29746,-22,-24,-256,-60,-197,84,305,267,298,277,64,314,299,309,309,20,-9,-32,-11,-32,1,14,14,14,14,-39,-59,-243,-69,-159,-38,-45,-229,-55,-145,-4,30,5,6,-20 -30660,,17107,"Logan County, IL",County or equivalent,30305,30305,30283,30259,30003,29943,29746,-22,-24,-256,-60,-197,84,305,267,298,277,64,314,299,309,309,20,-9,-32,-11,-32,1,14,14,14,14,-39,-59,-243,-69,-159,-38,-45,-229,-55,-145,-4,30,5,6,-20 -30820,,,"Lock Haven, PA",Micropolitan Statistical Area,39238,39241,39230,39515,39730,39834,39745,-11,285,215,104,-89,109,385,435,433,419,115,361,409,385,383,-6,24,26,48,36,3,21,21,21,21,-4,243,172,13,-126,-1,264,193,34,-105,-4,-3,-4,22,-20 -30820,,42035,"Clinton County, PA",County or equivalent,39238,39241,39230,39515,39730,39834,39745,-11,285,215,104,-89,109,385,435,433,419,115,361,409,385,383,-6,24,26,48,36,3,21,21,21,21,-4,243,172,13,-126,-1,264,193,34,-105,-4,-3,-4,22,-20 -30880,,,"Logan, WV",Micropolitan Statistical Area,36743,36745,36725,36453,36336,35981,35348,-20,-272,-117,-355,-633,98,455,438,426,418,150,525,542,483,489,-52,-70,-104,-57,-71,0,-1,-1,-1,-1,33,-197,-8,-282,-576,33,-198,-9,-283,-577,-1,-4,-4,-15,15 -30880,,54045,"Logan County, WV",County or equivalent,36743,36745,36725,36453,36336,35981,35348,-20,-272,-117,-355,-633,98,455,438,426,418,150,525,542,483,489,-52,-70,-104,-57,-71,0,-1,-1,-1,-1,33,-197,-8,-282,-576,33,-198,-9,-283,-577,-1,-4,-4,-15,15 -30900,,,"Logansport, IN",Micropolitan Statistical Area,38966,38966,39002,38920,38746,38542,38438,36,-82,-174,-204,-104,136,514,503,515,508,66,340,403,415,404,70,174,100,100,104,27,83,83,92,92,-57,-342,-362,-392,-289,-30,-259,-279,-300,-197,-4,3,5,-4,-11 -30900,,18017,"Cass County, IN",County or equivalent,38966,38966,39002,38920,38746,38542,38438,36,-82,-174,-204,-104,136,514,503,515,508,66,340,403,415,404,70,174,100,100,104,27,83,83,92,92,-57,-342,-362,-392,-289,-30,-259,-279,-300,-197,-4,3,5,-4,-11 -30940,,,"London, KY",Micropolitan Statistical Area,126369,126369,126565,126967,126792,127104,127316,196,402,-175,312,212,415,1633,1687,1638,1649,319,1418,1404,1398,1443,96,215,283,240,206,20,50,49,53,54,84,-2,-506,-23,-73,104,48,-457,30,-19,-4,139,-1,42,25 -30940,,21121,"Knox County, KY",County or equivalent,31883,31883,31867,32081,31700,31837,31798,-16,214,-381,137,-39,98,378,417,468,455,126,386,354,408,417,-28,-8,63,60,38,4,6,6,6,6,10,144,-458,59,-100,14,150,-452,65,-94,-2,72,8,12,17 -30940,,21125,"Laurel County, KY",County or equivalent,58849,58849,59017,59377,59587,59681,60015,168,360,210,94,334,181,721,739,697,717,116,565,617,556,598,65,156,122,141,119,8,17,13,14,15,94,200,85,-82,174,102,217,98,-68,189,1,-13,-10,21,26 -30940,,21235,"Whitley County, KY",County or equivalent,35637,35637,35681,35509,35505,35586,35503,44,-172,-4,81,-83,136,534,531,473,477,77,467,433,434,428,59,67,98,39,49,8,27,30,33,33,-20,-346,-133,0,-147,-12,-319,-103,33,-114,-3,80,1,9,-18 -31060,,,"Los Alamos, NM",Micropolitan Statistical Area,17950,17950,18012,18181,18162,17831,17682,62,169,-19,-331,-149,38,187,167,161,170,43,110,121,109,105,-5,77,46,52,65,11,59,61,63,63,53,18,-129,-407,-311,64,77,-68,-344,-248,3,15,3,-39,34 -31060,,35028,"Los Alamos County, NM",County or equivalent,17950,17950,18012,18181,18162,17831,17682,62,169,-19,-331,-149,38,187,167,161,170,43,110,121,109,105,-5,77,46,52,65,11,59,61,63,63,53,18,-129,-407,-311,64,77,-68,-344,-248,3,15,3,-39,34 -31220,,,"Ludington, MI",Micropolitan Statistical Area,28705,28705,28725,28644,28669,28665,28824,20,-81,25,-4,159,75,300,278,280,289,52,355,354,306,308,23,-55,-76,-26,-19,2,12,11,14,14,-1,-36,91,7,179,1,-24,102,21,193,-4,-2,-1,1,-15 -31220,,26105,"Mason County, MI",County or equivalent,28705,28705,28725,28644,28669,28665,28824,20,-81,25,-4,159,75,300,278,280,289,52,355,354,306,308,23,-55,-76,-26,-19,2,12,11,14,14,-1,-36,91,7,179,1,-24,102,21,193,-4,-2,-1,1,-15 -31260,,,"Lufkin, TX",Micropolitan Statistical Area,86771,86771,86920,87299,87585,87613,87750,149,379,286,28,137,288,1241,1242,1178,1202,180,851,816,877,878,108,390,426,301,324,3,19,19,21,23,43,28,-160,-347,-195,46,47,-141,-326,-172,-5,-58,1,53,-15 -31260,,48005,"Angelina County, TX",County or equivalent,86771,86771,86920,87299,87585,87613,87750,149,379,286,28,137,288,1241,1242,1178,1202,180,851,816,877,878,108,390,426,301,324,3,19,19,21,23,43,28,-160,-347,-195,46,47,-141,-326,-172,-5,-58,1,53,-15 -31300,,,"Lumberton, NC",Micropolitan Statistical Area,134168,134168,134425,135056,135368,134956,134760,257,631,312,-412,-196,548,2001,1805,1923,1832,254,1202,1234,1314,1288,294,799,571,609,544,18,70,66,72,79,-35,-219,-318,-1099,-744,-17,-149,-252,-1027,-665,-20,-19,-7,6,-75 -31300,,37155,"Robeson County, NC",County or equivalent,134168,134168,134425,135056,135368,134956,134760,257,631,312,-412,-196,548,2001,1805,1923,1832,254,1202,1234,1314,1288,294,799,571,609,544,18,70,66,72,79,-35,-219,-318,-1099,-744,-17,-149,-252,-1027,-665,-20,-19,-7,6,-75 -31380,,,"Macomb, IL",Micropolitan Statistical Area,32612,32612,32596,32501,32545,32420,31880,-16,-95,44,-125,-540,66,304,293,315,308,51,299,286,279,283,15,5,7,36,25,13,44,45,46,45,-37,-128,-6,-190,-685,-24,-84,39,-144,-640,-7,-16,-2,-17,75 -31380,,17109,"McDonough County, IL",County or equivalent,32612,32612,32596,32501,32545,32420,31880,-16,-95,44,-125,-540,66,304,293,315,308,51,299,286,279,283,15,5,7,36,25,13,44,45,46,45,-37,-128,-6,-190,-685,-24,-84,39,-144,-640,-7,-16,-2,-17,75 -31500,,,"Madison, IN",Micropolitan Statistical Area,32428,32428,32425,32298,32506,32511,32494,-3,-127,208,5,-17,94,331,372,369,372,99,367,340,342,335,-5,-36,32,27,37,1,12,9,12,12,3,-83,170,-23,-60,4,-71,179,-11,-48,-2,-20,-3,-11,-6 -31500,,18077,"Jefferson County, IN",County or equivalent,32428,32428,32425,32298,32506,32511,32494,-3,-127,208,5,-17,94,331,372,369,372,99,367,340,342,335,-5,-36,32,27,37,1,12,9,12,12,3,-83,170,-23,-60,4,-71,179,-11,-48,-2,-20,-3,-11,-6 -31580,,,"Madisonville, KY",Micropolitan Statistical Area,46920,46920,46890,46896,46702,46556,46376,-30,6,-194,-146,-180,151,562,553,513,526,178,510,602,582,531,-27,52,-49,-69,-5,2,12,13,13,13,0,-27,-160,-118,-182,2,-15,-147,-105,-169,-5,-31,2,28,-6 -31580,,21107,"Hopkins County, KY",County or equivalent,46920,46920,46890,46896,46702,46556,46376,-30,6,-194,-146,-180,151,562,553,513,526,178,510,602,582,531,-27,52,-49,-69,-5,2,12,13,13,13,0,-27,-160,-118,-182,2,-15,-147,-105,-169,-5,-31,2,28,-6 -31620,,,"Magnolia, AR",Micropolitan Statistical Area,24552,24552,24729,24670,24401,24266,23933,177,-59,-269,-135,-333,55,285,296,290,284,117,312,316,295,289,-62,-27,-20,-5,-5,6,42,37,38,41,217,-64,-292,-133,-361,223,-22,-255,-95,-320,16,-10,6,-35,-8 -31620,,5027,"Columbia County, AR",County or equivalent,24552,24552,24729,24670,24401,24266,23933,177,-59,-269,-135,-333,55,285,296,290,284,117,312,316,295,289,-62,-27,-20,-5,-5,6,42,37,38,41,217,-64,-292,-133,-361,223,-22,-255,-95,-320,16,-10,6,-35,-8 -31660,,,"Malone, NY",Micropolitan Statistical Area,51599,51597,51582,51547,51813,51335,51262,-15,-35,266,-478,-73,97,542,493,546,529,82,447,472,463,471,15,95,21,83,58,13,82,86,95,96,-33,-206,160,-690,-198,-20,-124,246,-595,-102,-10,-6,-1,34,-29 -31660,,36033,"Franklin County, NY",County or equivalent,51599,51597,51582,51547,51813,51335,51262,-15,-35,266,-478,-73,97,542,493,546,529,82,447,472,463,471,15,95,21,83,58,13,82,86,95,96,-33,-206,160,-690,-198,-20,-124,246,-595,-102,-10,-6,-1,34,-29 -31680,,,"Malvern, AR",Micropolitan Statistical Area,32923,32923,33145,33047,33386,33440,33368,222,-98,339,54,-72,96,383,332,355,345,55,356,382,376,355,41,27,-50,-21,-10,2,0,-1,-1,0,168,-113,380,69,-40,170,-113,379,68,-40,11,-12,10,7,-22 -31680,,5059,"Hot Spring County, AR",County or equivalent,32923,32923,33145,33047,33386,33440,33368,222,-98,339,54,-72,96,383,332,355,345,55,356,382,376,355,41,27,-50,-21,-10,2,0,-1,-1,0,168,-113,380,69,-40,170,-113,379,68,-40,11,-12,10,7,-22 -31820,,,"Manitowoc, WI",Micropolitan Statistical Area,81442,81442,81286,81139,80816,80623,80160,-156,-147,-323,-193,-463,186,839,854,821,826,190,821,771,805,803,-4,18,83,16,23,7,40,43,44,44,-155,-253,-456,-235,-482,-148,-213,-413,-191,-438,-4,48,7,-18,-48 -31820,,55071,"Manitowoc County, WI",County or equivalent,81442,81442,81286,81139,80816,80623,80160,-156,-147,-323,-193,-463,186,839,854,821,826,190,821,771,805,803,-4,18,83,16,23,7,40,43,44,44,-155,-253,-456,-235,-482,-148,-213,-413,-191,-438,-4,48,7,-18,-48 -31930,,,"Marietta, OH",Micropolitan Statistical Area,61778,61778,61691,61559,61508,61393,61213,-87,-132,-51,-115,-180,131,615,611,618,623,150,734,720,667,693,-19,-119,-109,-49,-70,7,20,20,23,23,-76,8,41,-39,-117,-69,28,61,-16,-94,1,-41,-3,-50,-16 -31930,,39167,"Washington County, OH",County or equivalent,61778,61778,61691,61559,61508,61393,61213,-87,-132,-51,-115,-180,131,615,611,618,623,150,734,720,667,693,-19,-119,-109,-49,-70,7,20,20,23,23,-76,8,41,-39,-117,-69,28,61,-16,-94,1,-41,-3,-50,-16 -31940,,,"Marinette, WI-MI",Micropolitan Statistical Area,65778,65778,65678,65376,65236,65332,65012,-100,-302,-140,96,-320,149,580,568,662,638,214,764,789,710,686,-65,-184,-221,-48,-48,1,18,18,18,18,-34,-124,78,156,-237,-33,-106,96,174,-219,-2,-12,-15,-30,-53 -31940,,26109,"Menominee County, MI",County or equivalent,24029,24029,23973,23922,23748,23835,23714,-56,-51,-174,87,-121,46,187,204,257,237,85,256,287,235,227,-39,-69,-83,22,10,0,6,6,6,6,-17,-11,-91,83,-121,-17,-5,-85,89,-115,0,23,-6,-24,-16 -31940,,55075,"Marinette County, WI",County or equivalent,41749,41749,41705,41454,41488,41497,41298,-44,-251,34,9,-199,103,393,364,405,401,129,508,502,475,459,-26,-115,-138,-70,-58,1,12,12,12,12,-17,-113,169,73,-116,-16,-101,181,85,-104,-2,-35,-9,-6,-37 -31980,,,"Marion, IN",Micropolitan Statistical Area,70061,70063,70002,69669,69283,69044,68569,-61,-333,-386,-239,-475,239,784,740,756,733,247,825,720,777,792,-8,-41,20,-21,-59,6,23,23,29,29,-59,-271,-430,-245,-395,-53,-248,-407,-216,-366,0,-44,1,-2,-50 -31980,,18053,"Grant County, IN",County or equivalent,70061,70063,70002,69669,69283,69044,68569,-61,-333,-386,-239,-475,239,784,740,756,733,247,825,720,777,792,-8,-41,20,-21,-59,6,23,23,29,29,-59,-271,-430,-245,-395,-53,-248,-407,-216,-366,0,-44,1,-2,-50 -32000,,,"Marion, NC",Micropolitan Statistical Area,44996,44996,45069,44952,44967,44959,44965,73,-117,15,-8,6,126,460,441,468,452,56,489,500,479,472,70,-29,-59,-11,-20,1,4,2,5,6,9,-84,79,22,42,10,-80,81,27,48,-7,-8,-7,-24,-22 -32000,,37111,"McDowell County, NC",County or equivalent,44996,44996,45069,44952,44967,44959,44965,73,-117,15,-8,6,126,460,441,468,452,56,489,500,479,472,70,-29,-59,-11,-20,1,4,2,5,6,9,-84,79,22,42,10,-80,81,27,48,-7,-8,-7,-24,-22 -32020,,,"Marion, OH",Micropolitan Statistical Area,66501,66501,66450,66542,66235,65910,65720,-51,92,-307,-325,-190,191,808,780,773,769,186,623,695,705,688,5,185,85,68,81,5,17,19,19,19,-59,-77,-414,-400,-247,-54,-60,-395,-381,-228,-2,-33,3,-12,-43 -32020,,39101,"Marion County, OH",County or equivalent,66501,66501,66450,66542,66235,65910,65720,-51,92,-307,-325,-190,191,808,780,773,769,186,623,695,705,688,5,185,85,68,81,5,17,19,19,19,-59,-77,-414,-400,-247,-54,-60,-395,-381,-228,-2,-33,3,-12,-43 -32100,,,"Marquette, MI",Micropolitan Statistical Area,67077,67077,67101,67446,67790,67663,67676,24,345,344,-127,13,147,638,691,629,651,172,653,588,638,648,-25,-15,103,-9,3,4,15,17,20,20,47,362,218,-178,38,51,377,235,-158,58,-2,-17,6,40,-48 -32100,,26103,"Marquette County, MI",County or equivalent,67077,67077,67101,67446,67790,67663,67676,24,345,344,-127,13,147,638,691,629,651,172,653,588,638,648,-25,-15,103,-9,3,4,15,17,20,20,47,362,218,-178,38,51,377,235,-158,58,-2,-17,6,40,-48 -32140,,,"Marshall, MN",Micropolitan Statistical Area,25857,25857,25856,25808,25618,25674,25665,-1,-48,-190,56,-9,87,380,343,354,345,67,206,209,209,226,20,174,134,145,119,8,49,50,53,53,-30,-263,-385,-134,-184,-22,-214,-335,-81,-131,1,-8,11,-8,3 -32140,,27083,"Lyon County, MN",County or equivalent,25857,25857,25856,25808,25618,25674,25665,-1,-48,-190,56,-9,87,380,343,354,345,67,206,209,209,226,20,174,134,145,119,8,49,50,53,53,-30,-263,-385,-134,-184,-22,-214,-335,-81,-131,1,-8,11,-8,3 -32180,,,"Marshall, MO",Micropolitan Statistical Area,23370,23370,23409,23331,23472,23258,23347,39,-78,141,-214,89,79,311,324,296,308,37,245,263,259,248,42,66,61,37,60,11,53,53,58,58,-8,-188,31,-306,-16,3,-135,84,-248,42,-6,-9,-4,-3,-13 -32180,,29195,"Saline County, MO",County or equivalent,23370,23370,23409,23331,23472,23258,23347,39,-78,141,-214,89,79,311,324,296,308,37,245,263,259,248,42,66,61,37,60,11,53,53,58,58,-8,-188,31,-306,-16,3,-135,84,-248,42,-6,-9,-4,-3,-13 -32220,,,"Marshall, TX",Micropolitan Statistical Area,65631,65632,65711,67338,67284,67185,67336,79,1627,-54,-99,151,211,870,862,815,818,100,615,550,661,628,111,255,312,154,190,10,72,61,69,70,-25,1260,-436,-263,-71,-15,1332,-375,-194,-1,-17,40,9,-59,-38 -32220,,48203,"Harrison County, TX",County or equivalent,65631,65632,65711,67338,67284,67185,67336,79,1627,-54,-99,151,211,870,862,815,818,100,615,550,661,628,111,255,312,154,190,10,72,61,69,70,-25,1260,-436,-263,-71,-15,1332,-375,-194,-1,-17,40,9,-59,-38 -32260,,,"Marshalltown, IA",Micropolitan Statistical Area,40648,40648,40682,40982,41058,41022,40866,34,300,76,-36,-156,135,538,552,575,566,139,459,460,474,469,-4,79,92,101,97,36,153,137,146,149,2,79,-154,-290,-403,38,232,-17,-144,-254,0,-11,1,7,1 -32260,,19127,"Marshall County, IA",County or equivalent,40648,40648,40682,40982,41058,41022,40866,34,300,76,-36,-156,135,538,552,575,566,139,459,460,474,469,-4,79,92,101,97,36,153,137,146,149,2,79,-154,-290,-403,38,232,-17,-144,-254,0,-11,1,7,1 -32280,,,"Martin, TN",Micropolitan Statistical Area,35021,35021,35026,34962,34712,34424,34373,5,-64,-250,-288,-51,99,348,363,342,342,56,378,373,365,344,43,-30,-10,-23,-2,1,7,8,7,7,-34,-47,-255,-238,-39,-33,-40,-247,-231,-32,-5,6,7,-34,-17 -32280,,47183,"Weakley County, TN",County or equivalent,35021,35021,35026,34962,34712,34424,34373,5,-64,-250,-288,-51,99,348,363,342,342,56,378,373,365,344,43,-30,-10,-23,-2,1,7,8,7,7,-34,-47,-255,-238,-39,-33,-40,-247,-231,-32,-5,6,7,-34,-17 -32300,,,"Martinsville, VA",Micropolitan Statistical Area,67972,67964,67834,67051,66571,66275,65792,-130,-783,-480,-296,-483,160,774,710,666,668,168,957,914,944,901,-8,-183,-204,-278,-233,14,66,63,69,71,-129,-782,-339,-118,-287,-115,-716,-276,-49,-216,-7,116,0,31,-34 -32300,,51089,"Henry County, VA",County or equivalent,54151,54143,54094,53274,52824,52527,52081,-49,-820,-450,-297,-446,111,511,474,474,468,141,724,656,732,699,-30,-213,-182,-258,-231,15,61,58,63,65,-31,-724,-328,-130,-250,-16,-663,-270,-67,-185,-3,56,2,28,-30 -32300,,51690,"Martinsville city, VA",County or equivalent,13821,13821,13740,13777,13747,13748,13711,-81,37,-30,1,-37,49,263,236,192,200,27,233,258,212,202,22,30,-22,-20,-2,-1,5,5,6,6,-98,-58,-11,12,-37,-99,-53,-6,18,-31,-4,60,-2,3,-4 -32340,,,"Maryville, MO",Micropolitan Statistical Area,23370,23370,23375,23428,23367,23229,23081,5,53,-61,-138,-148,69,221,223,225,220,26,198,211,172,173,43,23,12,53,47,1,23,26,28,28,-36,1,-99,-225,-215,-35,24,-73,-197,-187,-3,6,0,6,-8 -32340,,29147,"Nodaway County, MO",County or equivalent,23370,23370,23375,23428,23367,23229,23081,5,53,-61,-138,-148,69,221,223,225,220,26,198,211,172,173,43,23,12,53,47,1,23,26,28,28,-36,1,-99,-225,-215,-35,24,-73,-197,-187,-3,6,0,6,-8 -32380,,,"Mason City, IA",Micropolitan Statistical Area,51749,51749,51677,51539,51230,51046,50878,-72,-138,-309,-184,-168,124,551,566,520,534,149,546,594,551,545,-25,5,-28,-31,-11,11,29,30,34,34,-55,-162,-317,-188,-181,-44,-133,-287,-154,-147,-3,-10,6,1,-10 -32380,,19033,"Cerro Gordo County, IA",County or equivalent,44151,44151,44100,43965,43711,43505,43254,-51,-135,-254,-206,-251,112,478,484,446,453,133,463,501,463,482,-21,15,-17,-17,-29,11,29,30,34,34,-41,-166,-271,-229,-251,-30,-137,-241,-195,-217,0,-13,4,6,-5 -32380,,19195,"Worth County, IA",County or equivalent,7598,7598,7577,7574,7519,7541,7624,-21,-3,-55,22,83,12,73,82,74,81,16,83,93,88,63,-4,-10,-11,-14,18,0,0,0,0,0,-14,4,-46,41,70,-14,4,-46,41,70,-3,3,2,-5,-5 -32460,,,"Mayfield, KY",Micropolitan Statistical Area,37121,37121,37207,37513,37535,37380,37618,86,306,22,-155,238,118,520,487,468,469,89,434,459,441,403,29,86,28,27,66,17,72,68,74,74,41,164,-77,-232,121,58,236,-9,-158,195,-1,-16,3,-24,-23 -32460,,21083,"Graves County, KY",County or equivalent,37121,37121,37207,37513,37535,37380,37618,86,306,22,-155,238,118,520,487,468,469,89,434,459,441,403,29,86,28,27,66,17,72,68,74,74,41,164,-77,-232,121,58,236,-9,-158,195,-1,-16,3,-24,-23 -32500,,,"Maysville, KY",Micropolitan Statistical Area,17490,17490,17508,17544,17463,17309,17166,18,36,-81,-154,-143,58,219,196,230,220,32,207,171,186,180,26,12,25,44,40,0,2,2,2,2,-6,18,-110,-166,-192,-6,20,-108,-164,-190,-2,4,2,-34,7 -32500,,21161,"Mason County, KY",County or equivalent,17490,17490,17508,17544,17463,17309,17166,18,36,-81,-154,-143,58,219,196,230,220,32,207,171,186,180,26,12,25,44,40,0,2,2,2,2,-6,18,-110,-166,-192,-6,20,-108,-164,-190,-2,4,2,-34,7 -32540,,,"McAlester, OK",Micropolitan Statistical Area,45837,45837,45803,45666,45131,44873,44626,-34,-137,-535,-258,-247,165,523,540,551,545,160,604,594,534,564,5,-81,-54,17,-19,4,7,1,5,5,-33,-34,-433,-206,-241,-29,-27,-432,-201,-236,-10,-29,-49,-74,8 -32540,,40121,"Pittsburg County, OK",County or equivalent,45837,45837,45803,45666,45131,44873,44626,-34,-137,-535,-258,-247,165,523,540,551,545,160,604,594,534,564,5,-81,-54,17,-19,4,7,1,5,5,-33,-34,-433,-206,-241,-29,-27,-432,-201,-236,-10,-29,-49,-74,8 -32620,,,"McComb, MS",Micropolitan Statistical Area,53535,53535,53555,53597,53083,52910,52687,20,42,-514,-173,-223,181,743,736,692,682,94,635,629,629,660,87,108,107,63,22,1,13,10,10,10,-62,-79,-645,-255,-233,-61,-66,-635,-245,-223,-6,0,14,9,-22 -32620,,28005,"Amite County, MS",County or equivalent,13131,13128,13112,13177,12972,12895,12629,-16,65,-205,-77,-266,32,143,148,132,124,11,132,141,148,149,21,11,7,-16,-25,0,0,0,0,0,-33,30,-217,-53,-233,-33,30,-217,-53,-233,-4,24,5,-8,-8 -32620,,28113,"Pike County, MS",County or equivalent,40404,40407,40443,40420,40111,40015,40058,36,-23,-309,-96,43,149,600,588,560,558,83,503,488,481,511,66,97,100,79,47,1,13,10,10,10,-29,-109,-428,-202,0,-28,-96,-418,-192,10,-2,-24,9,17,-14 -32660,,,"McMinnville, TN",Micropolitan Statistical Area,39839,39840,39859,39885,39755,39866,39969,19,26,-130,111,103,106,508,441,455,450,78,525,439,418,428,28,-17,2,37,22,2,13,11,20,21,-6,35,-144,63,69,-4,48,-133,83,90,-5,-5,1,-9,-9 -32660,,47177,"Warren County, TN",County or equivalent,39839,39840,39859,39885,39755,39866,39969,19,26,-130,111,103,106,508,441,455,450,78,525,439,418,428,28,-17,2,37,22,2,13,11,20,21,-6,35,-144,63,69,-4,48,-133,83,90,-5,-5,1,-9,-9 -32700,,,"McPherson, KS",Micropolitan Statistical Area,29180,29180,29141,29213,29341,29606,29241,-39,72,128,265,-365,76,319,340,388,378,98,345,364,370,365,-22,-26,-24,18,13,4,16,16,19,19,-19,69,142,232,-389,-15,85,158,251,-370,-2,13,-6,-4,-8 -32700,,20113,"McPherson County, KS",County or equivalent,29180,29180,29141,29213,29341,29606,29241,-39,72,128,265,-365,76,319,340,388,378,98,345,364,370,365,-22,-26,-24,18,13,4,16,16,19,19,-19,69,142,232,-389,-15,85,158,251,-370,-2,13,-6,-4,-8 -32740,,,"Meadville, PA",Micropolitan Statistical Area,88765,88765,88672,88085,87660,87411,87175,-93,-587,-425,-249,-236,249,916,927,957,933,283,1021,903,947,930,-34,-105,24,10,3,4,12,12,14,14,-60,-500,-463,-180,-185,-56,-488,-451,-166,-171,-3,6,2,-93,-68 -32740,,42039,"Crawford County, PA",County or equivalent,88765,88765,88672,88085,87660,87411,87175,-93,-587,-425,-249,-236,249,916,927,957,933,283,1021,903,947,930,-34,-105,24,10,3,4,12,12,14,14,-60,-500,-463,-180,-185,-56,-488,-451,-166,-171,-3,6,2,-93,-68 -32860,,,"Menomonie, WI",Micropolitan Statistical Area,43857,43857,43886,43885,43930,44221,44305,29,-1,45,291,84,124,471,432,463,442,92,296,284,296,298,32,175,148,167,144,0,20,18,23,24,-2,-235,-119,80,-128,-2,-215,-101,103,-104,-1,39,-2,21,44 -32860,,55033,"Dunn County, WI",County or equivalent,43857,43857,43886,43885,43930,44221,44305,29,-1,45,291,84,124,471,432,463,442,92,296,284,296,298,32,175,148,167,144,0,20,18,23,24,-2,-235,-119,80,-128,-2,-215,-101,103,-104,-1,39,-2,21,44 -32940,,,"Meridian, MS",Micropolitan Statistical Area,107449,107454,107548,107519,107132,106997,106201,94,-29,-387,-135,-796,340,1318,1329,1300,1297,211,1178,1127,1142,1098,129,140,202,158,199,36,65,162,111,100,-62,-188,-770,-364,-1076,-26,-123,-608,-253,-976,-9,-46,19,-40,-19 -32940,,28023,"Clarke County, MS",County or equivalent,16732,16732,16704,16658,16495,16389,16299,-28,-46,-163,-106,-90,44,185,196,181,186,21,209,200,178,181,23,-24,-4,3,5,0,2,2,2,2,-45,-19,-163,-95,-106,-45,-17,-161,-93,-104,-6,-5,2,-16,9 -32940,,28069,"Kemper County, MS",County or equivalent,10456,10461,10474,10270,10366,10276,10163,13,-204,96,-90,-113,34,93,90,83,77,10,105,103,93,100,24,-12,-13,-10,-23,0,1,1,1,1,-10,-207,105,-81,-86,-10,-206,106,-80,-85,-1,14,3,0,-5 -32940,,28075,"Lauderdale County, MS",County or equivalent,80261,80261,80370,80591,80271,80332,79739,109,221,-320,61,-593,262,1040,1043,1036,1034,180,864,824,871,817,82,176,219,165,217,36,62,159,108,97,-7,38,-712,-188,-884,29,100,-553,-80,-787,-2,-55,14,-24,-23 -32980,,,"Merrill, WI",Micropolitan Statistical Area,28743,28743,28747,28440,28472,28676,28493,4,-307,32,204,-183,66,262,272,269,267,51,326,326,291,295,15,-64,-54,-22,-28,0,2,2,2,2,-6,-228,83,226,-134,-6,-226,85,228,-132,-5,-17,1,-2,-23 -32980,,55069,"Lincoln County, WI",County or equivalent,28743,28743,28747,28440,28472,28676,28493,4,-307,32,204,-183,66,262,272,269,267,51,326,326,291,295,15,-64,-54,-22,-28,0,2,2,2,2,-6,-228,83,226,-134,-6,-226,85,228,-132,-5,-17,1,-2,-23 -33020,,,"Mexico, MO",Micropolitan Statistical Area,25529,25529,25461,25593,25610,25635,25887,-68,132,17,25,252,91,362,336,322,311,103,279,290,275,283,-12,83,46,47,28,1,1,1,2,2,-58,40,-30,-20,227,-57,41,-29,-18,229,1,8,0,-4,-5 -33020,,29007,"Audrain County, MO",County or equivalent,25529,25529,25461,25593,25610,25635,25887,-68,132,17,25,252,91,362,336,322,311,103,279,290,275,283,-12,83,46,47,28,1,1,1,2,2,-58,40,-30,-20,227,-57,41,-29,-18,229,1,8,0,-4,-5 -33060,,,"Miami, OK",Micropolitan Statistical Area,31848,31848,31863,31928,32252,32280,32105,15,65,324,28,-175,118,388,430,478,471,66,386,463,476,498,52,2,-33,2,-27,1,20,20,22,22,-31,24,331,1,-207,-30,44,351,23,-185,-7,19,6,3,37 -33060,,40115,"Ottawa County, OK",County or equivalent,31848,31848,31863,31928,32252,32280,32105,15,65,324,28,-175,118,388,430,478,471,66,386,463,476,498,52,2,-33,2,-27,1,20,20,22,22,-31,24,331,1,-207,-30,44,351,23,-185,-7,19,6,3,37 -33180,,,"Middlesborough, KY",Micropolitan Statistical Area,28691,28691,28705,28631,28152,27905,27778,14,-74,-479,-247,-127,77,352,383,370,371,92,379,375,377,352,-15,-27,8,-7,19,1,4,4,4,4,27,-54,-500,-215,-148,28,-50,-496,-211,-144,1,3,9,-29,-2 -33180,,21013,"Bell County, KY",County or equivalent,28691,28691,28705,28631,28152,27905,27778,14,-74,-479,-247,-127,77,352,383,370,371,92,379,375,377,352,-15,-27,8,-7,19,1,4,4,4,4,27,-54,-500,-215,-148,28,-50,-496,-211,-144,1,3,9,-29,-2 -33300,,,"Milledgeville, GA",Micropolitan Statistical Area,55149,55237,55095,54449,55485,55037,54418,-142,-646,1036,-448,-619,131,595,554,543,540,133,458,489,443,511,-2,137,65,100,29,9,40,41,45,45,-148,-846,894,-574,-670,-139,-806,935,-529,-625,-1,23,36,-19,-23 -33300,,13009,"Baldwin County, GA",County or equivalent,45720,45835,45685,45081,46455,46139,45909,-150,-604,1374,-316,-230,116,499,464,476,467,129,370,397,378,416,-13,129,67,98,51,9,39,41,45,45,-147,-797,1236,-441,-301,-138,-758,1277,-396,-256,1,25,30,-18,-25 -33300,,13141,"Hancock County, GA",County or equivalent,9429,9402,9410,9368,9030,8898,8509,8,-42,-338,-132,-389,15,96,90,67,73,4,88,92,65,95,11,8,-2,2,-22,0,1,0,0,0,-1,-49,-342,-133,-369,-1,-48,-342,-133,-369,-2,-2,6,-1,2 -33420,,,"Mineral Wells, TX",Micropolitan Statistical Area,28111,28111,28102,28137,27883,27924,28096,-9,35,-254,41,172,120,336,390,376,383,94,303,283,290,318,26,33,107,86,65,-1,13,10,12,12,-33,-31,-370,-28,90,-34,-18,-360,-16,102,-1,20,-1,-29,5 -33420,,48363,"Palo Pinto County, TX",County or equivalent,28111,28111,28102,28137,27883,27924,28096,-9,35,-254,41,172,120,336,390,376,383,94,303,283,290,318,26,33,107,86,65,-1,13,10,12,12,-33,-31,-370,-28,90,-34,-18,-360,-16,102,-1,20,-1,-29,5 -33500,,,"Minot, ND",Micropolitan Statistical Area,69540,69540,69961,72296,73818,76518,77959,421,2335,1522,2700,1441,261,1140,1218,1263,1315,108,573,561,589,577,153,567,657,674,738,70,66,407,222,163,189,1665,461,1808,521,259,1731,868,2030,684,9,37,-3,-4,19 -33500,,38049,"McHenry County, ND",County or equivalent,5395,5395,5395,5483,5784,5904,5988,0,88,301,120,84,12,55,68,77,77,4,61,56,63,59,8,-6,12,14,18,0,4,4,4,4,-5,83,279,105,57,-5,87,283,109,61,-3,7,6,-3,5 -33500,,38075,"Renville County, ND",County or equivalent,2470,2470,2476,2495,2554,2616,2587,6,19,59,62,-29,10,21,32,36,29,1,18,32,30,22,9,3,0,6,7,0,2,2,2,2,0,14,56,56,-45,0,16,58,58,-43,-3,0,1,-2,7 -33500,,38101,"Ward County, ND",County or equivalent,61675,61675,62090,64318,65480,67998,69384,415,2228,1162,2518,1386,239,1064,1118,1150,1209,103,494,473,496,496,136,570,645,654,713,70,60,401,216,157,194,1568,126,1647,509,264,1628,527,1863,666,15,30,-10,1,7 -33580,,,"Mitchell, SD",Micropolitan Statistical Area,22835,22835,22863,23005,23192,23246,23304,28,142,187,54,58,93,296,311,320,315,87,196,242,204,183,6,100,69,116,132,2,28,22,23,25,24,14,100,-71,-98,26,42,122,-48,-73,-4,0,-4,-14,-1 -33580,,46035,"Davison County, SD",County or equivalent,19504,19504,19515,19615,19798,19839,19885,11,100,183,41,46,72,245,266,268,264,76,176,223,191,172,-4,69,43,77,92,2,28,22,23,25,18,6,119,-63,-55,20,34,141,-40,-30,-5,-3,-1,4,-16 -33580,,46061,"Hanson County, SD",County or equivalent,3331,3331,3348,3390,3394,3407,3419,17,42,4,13,12,21,51,45,52,51,11,20,19,13,11,10,31,26,39,40,0,0,0,0,0,6,8,-19,-8,-43,6,8,-19,-8,-43,1,3,-3,-18,15 -33620,,,"Moberly, MO",Micropolitan Statistical Area,25414,25414,25446,25259,25305,24954,25072,32,-187,46,-351,118,89,284,271,288,279,44,245,271,277,255,45,39,0,11,24,0,-1,-1,-1,-1,-9,-217,44,-373,92,-9,-218,43,-374,91,-4,-8,3,12,3 -33620,,29175,"Randolph County, MO",County or equivalent,25414,25414,25446,25259,25305,24954,25072,32,-187,46,-351,118,89,284,271,288,279,44,245,271,277,255,45,39,0,11,24,0,-1,-1,-1,-1,-9,-217,44,-373,92,-9,-218,43,-374,91,-4,-8,3,12,3 -33940,,,"Montrose, CO",Micropolitan Statistical Area,41276,41278,41177,40910,40722,40744,40873,-101,-267,-188,22,129,108,498,399,465,439,67,399,458,365,388,41,99,-59,100,51,7,63,49,56,59,-154,-421,-170,-116,-11,-147,-358,-121,-60,48,5,-8,-8,-18,30 -33940,,8085,"Montrose County, CO",County or equivalent,41276,41278,41177,40910,40722,40744,40873,-101,-267,-188,22,129,108,498,399,465,439,67,399,458,365,388,41,99,-59,100,51,7,63,49,56,59,-154,-421,-170,-116,-11,-147,-358,-121,-60,48,5,-8,-8,-18,30 -33980,,,"Morehead City, NC",Micropolitan Statistical Area,66469,66469,66749,67399,67779,68516,68811,280,650,380,737,295,184,617,645,621,626,176,728,756,734,765,8,-111,-111,-113,-139,32,73,161,118,96,227,728,326,672,329,259,801,487,790,425,13,-40,4,60,9 -33980,,37031,"Carteret County, NC",County or equivalent,66469,66469,66749,67399,67779,68516,68811,280,650,380,737,295,184,617,645,621,626,176,728,756,734,765,8,-111,-111,-113,-139,32,73,161,118,96,227,728,326,672,329,259,801,487,790,425,13,-40,4,60,9 -34020,,,"Morgan City, LA",Micropolitan Statistical Area,54650,54650,54562,54136,53526,53533,53162,-88,-426,-610,7,-371,211,717,737,776,750,152,552,518,558,521,59,165,219,218,229,5,50,48,47,48,-152,-630,-898,-221,-629,-147,-580,-850,-174,-581,0,-11,21,-37,-19 -34020,,22101,"St. Mary Parish, LA",County or equivalent,54650,54650,54562,54136,53526,53533,53162,-88,-426,-610,7,-371,211,717,737,776,750,152,552,518,558,521,59,165,219,218,229,5,50,48,47,48,-152,-630,-898,-221,-629,-147,-580,-850,-174,-581,0,-11,21,-37,-19 -34140,,,"Moscow, ID",Micropolitan Statistical Area,37244,37244,37274,37881,38157,38221,38411,30,607,276,64,190,102,482,430,445,455,83,217,217,230,209,19,265,213,215,246,8,79,79,87,88,5,258,-15,-210,-138,13,337,64,-123,-50,-2,5,-1,-28,-6 -34140,,16057,"Latah County, ID",County or equivalent,37244,37244,37274,37881,38157,38221,38411,30,607,276,64,190,102,482,430,445,455,83,217,217,230,209,19,265,213,215,246,8,79,79,87,88,5,258,-15,-210,-138,13,337,64,-123,-50,-2,5,-1,-28,-6 -34180,,,"Moses Lake, WA",Micropolitan Statistical Area,89120,89120,89592,90781,91688,92084,93147,472,1189,907,396,1063,398,1615,1577,1545,1557,199,648,681,660,654,199,967,896,885,903,19,127,103,125,133,255,142,-74,-551,81,274,269,29,-426,214,-1,-47,-18,-63,-54 -34180,,53025,"Grant County, WA",County or equivalent,89120,89120,89592,90781,91688,92084,93147,472,1189,907,396,1063,398,1615,1577,1545,1557,199,648,681,660,654,199,967,896,885,903,19,127,103,125,133,255,142,-74,-551,81,274,269,29,-426,214,-1,-47,-18,-63,-54 -34220,,,"Moultrie, GA",Micropolitan Statistical Area,45498,45498,45648,45804,46095,46288,46102,150,156,291,193,-186,196,762,726,676,680,72,445,458,505,449,124,317,268,171,231,18,71,62,70,73,11,-216,-38,-46,-467,29,-145,24,24,-394,-3,-16,-1,-2,-23 -34220,,13071,"Colquitt County, GA",County or equivalent,45498,45498,45648,45804,46095,46288,46102,150,156,291,193,-186,196,762,726,676,680,72,445,458,505,449,124,317,268,171,231,18,71,62,70,73,11,-216,-38,-46,-467,29,-145,24,24,-394,-3,-16,-1,-2,-23 -34260,,,"Mountain Home, AR",Micropolitan Statistical Area,41513,41513,41551,41287,41077,40996,40857,38,-264,-210,-81,-139,97,335,329,352,329,135,676,674,649,661,-38,-341,-345,-297,-332,0,2,0,0,0,76,84,132,197,243,76,86,132,197,243,0,-9,3,19,-50 -34260,,5005,"Baxter County, AR",County or equivalent,41513,41513,41551,41287,41077,40996,40857,38,-264,-210,-81,-139,97,335,329,352,329,135,676,674,649,661,-38,-341,-345,-297,-332,0,2,0,0,0,76,84,132,197,243,76,86,132,197,243,0,-9,3,19,-50 -34300,,,"Mountain Home, ID",Micropolitan Statistical Area,27038,27038,27108,26187,26199,26156,26094,70,-921,12,-43,-62,123,467,477,472,441,22,171,176,158,174,101,296,301,314,267,46,28,203,112,89,-80,-1272,-499,-466,-427,-34,-1244,-296,-354,-338,3,27,7,-3,9 -34300,,16039,"Elmore County, ID",County or equivalent,27038,27038,27108,26187,26199,26156,26094,70,-921,12,-43,-62,123,467,477,472,441,22,171,176,158,174,101,296,301,314,267,46,28,203,112,89,-80,-1272,-499,-466,-427,-34,-1244,-296,-354,-338,3,27,7,-3,9 -34340,,,"Mount Airy, NC",Micropolitan Statistical Area,73673,73673,73714,73644,73568,73062,72968,41,-70,-76,-506,-94,217,797,798,739,746,183,874,801,829,829,34,-77,-3,-90,-83,18,67,60,69,72,-9,-105,-133,-557,-51,9,-38,-73,-488,21,-2,45,0,72,-32 -34340,,37171,"Surry County, NC",County or equivalent,73673,73673,73714,73644,73568,73062,72968,41,-70,-76,-506,-94,217,797,798,739,746,183,874,801,829,829,34,-77,-3,-90,-83,18,67,60,69,72,-9,-105,-133,-557,-51,9,-38,-73,-488,21,-2,45,0,72,-32 -34380,,,"Mount Pleasant, MI",Micropolitan Statistical Area,70311,70311,70318,70621,70552,70424,70616,7,303,-69,-128,192,184,646,630,652,623,135,465,435,434,419,49,181,195,218,204,27,128,130,147,146,-68,-10,-387,-493,-135,-41,118,-257,-346,11,-1,4,-7,0,-23 -34380,,26073,"Isabella County, MI",County or equivalent,70311,70311,70318,70621,70552,70424,70616,7,303,-69,-128,192,184,646,630,652,623,135,465,435,434,419,49,181,195,218,204,27,128,130,147,146,-68,-10,-387,-493,-135,-41,118,-257,-346,11,-1,4,-7,0,-23 -34420,,,"Mount Pleasant, TX",Micropolitan Statistical Area,32334,32334,32408,32441,32693,32654,32506,74,33,252,-39,-148,128,495,519,480,493,63,259,271,252,248,65,236,248,228,245,4,36,26,35,37,7,-238,-12,-283,-437,11,-202,14,-248,-400,-2,-1,-10,-19,7 -34420,,48449,"Titus County, TX",County or equivalent,32334,32334,32408,32441,32693,32654,32506,74,33,252,-39,-148,128,495,519,480,493,63,259,271,252,248,65,236,248,228,245,4,36,26,35,37,7,-238,-12,-283,-437,11,-202,14,-248,-400,-2,-1,-10,-19,7 -34460,,,"Mount Sterling, KY",Micropolitan Statistical Area,44396,44396,44512,44867,44993,45613,45967,116,355,126,620,354,164,612,600,669,663,99,468,472,459,489,65,144,128,210,174,2,9,7,7,7,52,207,-2,387,145,54,216,5,394,152,-3,-5,-7,16,28 -34460,,21011,"Bath County, KY",County or equivalent,11591,11591,11623,11715,11799,12008,12206,32,92,84,209,198,44,144,146,186,182,18,155,133,128,146,26,-11,13,58,36,0,0,0,0,0,8,100,73,148,151,8,100,73,148,151,-2,3,-2,3,11 -34460,,21165,"Menifee County, KY",County or equivalent,6306,6306,6355,6406,6314,6323,6287,49,51,-92,9,-36,15,74,75,69,72,10,68,69,66,83,5,6,6,3,-11,0,-1,-1,-1,-1,42,49,-95,2,-25,42,48,-96,1,-26,2,-3,-2,5,1 -34460,,21173,"Montgomery County, KY",County or equivalent,26499,26499,26534,26746,26880,27282,27474,35,212,134,402,192,105,394,379,414,409,71,245,270,265,260,34,149,109,149,149,2,10,8,8,8,2,58,20,237,19,4,68,28,245,27,-3,-5,-3,8,16 -34500,,,"Mount Vernon, IL",Micropolitan Statistical Area,38827,38825,38804,38791,38730,38721,38534,-21,-13,-61,-9,-187,143,452,460,469,464,140,446,416,430,428,3,6,44,39,36,10,48,46,50,50,-33,-56,-150,-72,-254,-23,-8,-104,-22,-204,-1,-11,-1,-26,-19 -34500,,17081,"Jefferson County, IL",County or equivalent,38827,38825,38804,38791,38730,38721,38534,-21,-13,-61,-9,-187,143,452,460,469,464,140,446,416,430,428,3,6,44,39,36,10,48,46,50,50,-33,-56,-150,-72,-254,-23,-8,-104,-22,-204,-1,-11,-1,-26,-19 -34540,,,"Mount Vernon, OH",Micropolitan Statistical Area,60921,60930,61095,61311,60817,60923,61167,165,216,-494,106,244,197,675,737,768,763,121,617,637,624,600,76,58,100,144,163,4,7,7,8,8,81,166,-617,-63,80,85,173,-610,-55,88,4,-15,16,17,-7 -34540,,39083,"Knox County, OH",County or equivalent,60921,60930,61095,61311,60817,60923,61167,165,216,-494,106,244,197,675,737,768,763,121,617,637,624,600,76,58,100,144,163,4,7,7,8,8,81,166,-617,-63,80,85,173,-610,-55,88,4,-15,16,17,-7 -34660,,,"Murray, KY",Micropolitan Statistical Area,37191,37191,37425,37831,38228,38141,38282,234,406,397,-87,141,85,396,392,391,400,118,390,385,379,389,-33,6,7,12,11,23,112,110,126,127,230,296,274,-226,34,253,408,384,-100,161,14,-8,6,1,-31 -34660,,21035,"Calloway County, KY",County or equivalent,37191,37191,37425,37831,38228,38141,38282,234,406,397,-87,141,85,396,392,391,400,118,390,385,379,389,-33,6,7,12,11,23,112,110,126,127,230,296,274,-226,34,253,408,384,-100,161,14,-8,6,1,-31 -34700,,,"Muscatine, IA",Micropolitan Statistical Area,42745,42747,42758,42799,42905,42918,42903,11,41,106,13,-15,162,555,533,556,555,60,381,408,383,339,102,174,125,173,216,8,39,36,42,42,-97,-161,-54,-182,-270,-89,-122,-18,-140,-228,-2,-11,-1,-20,-3 -34700,,19139,"Muscatine County, IA",County or equivalent,42745,42747,42758,42799,42905,42918,42903,11,41,106,13,-15,162,555,533,556,555,60,381,408,383,339,102,174,125,173,216,8,39,36,42,42,-97,-161,-54,-182,-270,-89,-122,-18,-140,-228,-2,-11,-1,-20,-3 -34780,,,"Muskogee, OK",Micropolitan Statistical Area,70990,70988,71105,70725,70528,70269,69966,117,-380,-197,-259,-303,248,978,1004,943,924,160,974,859,898,891,88,4,145,45,33,7,39,30,35,36,27,-396,-378,-378,-388,34,-357,-348,-343,-352,-5,-27,6,39,16 -34780,,40101,"Muskogee County, OK",County or equivalent,70990,70988,71105,70725,70528,70269,69966,117,-380,-197,-259,-303,248,978,1004,943,924,160,974,859,898,891,88,4,145,45,33,7,39,30,35,36,27,-396,-378,-378,-388,34,-357,-348,-343,-352,-5,-27,6,39,16 -34860,,,"Nacogdoches, TX",Micropolitan Statistical Area,64524,64524,64645,65632,65841,65190,65301,121,987,209,-651,111,217,935,902,880,870,99,581,543,552,545,118,354,359,328,325,19,95,89,105,110,-12,550,-241,-1123,-359,7,645,-152,-1018,-249,-4,-12,2,39,35 -34860,,48347,"Nacogdoches County, TX",County or equivalent,64524,64524,64645,65632,65841,65190,65301,121,987,209,-651,111,217,935,902,880,870,99,581,543,552,545,118,354,359,328,325,19,95,89,105,110,-12,550,-241,-1123,-359,7,645,-152,-1018,-249,-4,-12,2,39,35 -35020,,,"Natchez, MS-LA",Micropolitan Statistical Area,53119,53119,53429,53250,52587,52518,52203,310,-179,-663,-69,-315,190,649,695,592,621,98,654,609,648,654,92,-5,86,-56,-33,4,22,15,20,23,196,-181,-767,-7,-304,200,-159,-752,13,-281,18,-15,3,-26,-1 -35020,,22029,"Concordia Parish, LA",County or equivalent,20822,20822,20833,20823,20446,20475,20466,11,-10,-377,29,-9,71,247,301,268,280,32,243,211,234,243,39,4,90,34,37,-1,0,-2,-2,-1,-26,-7,-471,18,-51,-27,-7,-473,16,-52,-1,-7,6,-21,6 -35020,,28001,"Adams County, MS",County or equivalent,32297,32297,32596,32427,32141,32043,31737,299,-169,-286,-98,-306,119,402,394,324,341,66,411,398,414,411,53,-9,-4,-90,-70,5,22,17,22,24,222,-174,-296,-25,-253,227,-152,-279,-3,-229,19,-8,-3,-5,-7 -35060,,,"Natchitoches, LA",Micropolitan Statistical Area,39566,39566,39509,39517,39461,39140,39166,-57,8,-56,-321,26,101,562,530,513,514,125,376,369,411,380,-24,186,161,102,134,3,15,11,16,18,-33,-254,-222,-413,-125,-30,-239,-211,-397,-107,-3,61,-6,-26,-1 -35060,,22069,"Natchitoches Parish, LA",County or equivalent,39566,39566,39509,39517,39461,39140,39166,-57,8,-56,-321,26,101,562,530,513,514,125,376,369,411,380,-24,186,161,102,134,3,15,11,16,18,-33,-254,-222,-413,-125,-30,-239,-211,-397,-107,-3,61,-6,-26,-1 -35140,,,"Newberry, SC",Micropolitan Statistical Area,37508,37508,37559,37491,37563,37568,37783,51,-68,72,5,215,105,434,415,454,424,55,446,452,378,409,50,-12,-37,76,15,9,54,53,61,62,-3,-111,56,-152,142,6,-57,109,-91,204,-5,1,0,20,-4 -35140,,45071,"Newberry County, SC",County or equivalent,37508,37508,37559,37491,37563,37568,37783,51,-68,72,5,215,105,434,415,454,424,55,446,452,378,409,50,-12,-37,76,15,9,54,53,61,62,-3,-111,56,-152,142,6,-57,109,-91,204,-5,1,0,20,-4 -35220,,,"New Castle, IN",Micropolitan Statistical Area,49462,49462,49474,49343,49259,49066,48995,12,-131,-84,-193,-71,116,440,468,475,457,100,548,589,545,550,16,-108,-121,-70,-93,2,8,9,9,9,8,-84,29,-176,54,10,-76,38,-167,63,-14,53,-1,44,-41 -35220,,18065,"Henry County, IN",County or equivalent,49462,49462,49474,49343,49259,49066,48995,12,-131,-84,-193,-71,116,440,468,475,457,100,548,589,545,550,16,-108,-121,-70,-93,2,8,9,9,9,8,-84,29,-176,54,10,-76,38,-167,63,-14,53,-1,44,-41 -35260,,,"New Castle, PA",Micropolitan Statistical Area,91108,91140,91033,90386,89797,89306,88771,-107,-647,-589,-491,-535,271,861,948,996,979,271,1100,1080,1130,1089,0,-239,-132,-134,-110,6,26,27,34,34,-109,-423,-496,-347,-402,-103,-397,-469,-313,-368,-4,-11,12,-44,-57 -35260,,42073,"Lawrence County, PA",County or equivalent,91108,91140,91033,90386,89797,89306,88771,-107,-647,-589,-491,-535,271,861,948,996,979,271,1100,1080,1130,1089,0,-239,-132,-134,-110,6,26,27,34,34,-109,-423,-496,-347,-402,-103,-397,-469,-313,-368,-4,-11,12,-44,-57 -35420,,,"New Philadelphia-Dover, OH",Micropolitan Statistical Area,92582,92582,92546,92492,92488,92767,92788,-36,-54,-4,279,21,265,1074,1129,1080,1098,257,940,973,989,970,8,134,156,91,128,14,83,84,91,91,-62,-257,-248,47,-132,-48,-174,-164,138,-41,4,-14,4,50,-66 -35420,,39157,"Tuscarawas County, OH",County or equivalent,92582,92582,92546,92492,92488,92767,92788,-36,-54,-4,279,21,265,1074,1129,1080,1098,257,940,973,989,970,8,134,156,91,128,14,83,84,91,91,-62,-257,-248,47,-132,-48,-174,-164,138,-41,4,-14,4,50,-66 -35440,,,"Newport, OR",Micropolitan Statistical Area,46034,46032,45990,45844,46152,46300,46406,-42,-146,308,148,106,112,435,415,454,448,176,591,566,522,543,-64,-156,-151,-68,-95,5,24,26,27,28,21,-2,429,267,208,26,22,455,294,236,-4,-12,4,-78,-35 -35440,,41041,"Lincoln County, OR",County or equivalent,46034,46032,45990,45844,46152,46300,46406,-42,-146,308,148,106,112,435,415,454,448,176,591,566,522,543,-64,-156,-151,-68,-95,5,24,26,27,28,21,-2,429,267,208,26,22,455,294,236,-4,-12,4,-78,-35 -35460,,,"Newport, TN",Micropolitan Statistical Area,35662,35662,35653,35394,35488,35354,35374,-9,-259,94,-134,20,90,358,399,397,387,106,427,462,479,450,-16,-69,-63,-82,-63,10,26,26,30,30,-2,-204,131,-47,83,8,-178,157,-17,113,-1,-12,0,-35,-30 -35460,,47029,"Cocke County, TN",County or equivalent,35662,35662,35653,35394,35488,35354,35374,-9,-259,94,-134,20,90,358,399,397,387,106,427,462,479,450,-16,-69,-63,-82,-63,10,26,26,30,30,-2,-204,131,-47,83,8,-178,157,-17,113,-1,-12,0,-35,-30 -35500,,,"Newton, IA",Micropolitan Statistical Area,36842,36842,36805,36624,36544,36731,36872,-37,-181,-80,187,141,105,368,453,420,420,122,333,376,356,357,-17,35,77,64,63,3,8,10,11,11,-22,-210,-172,112,90,-19,-202,-162,123,101,-1,-14,5,0,-23 -35500,,19099,"Jasper County, IA",County or equivalent,36842,36842,36805,36624,36544,36731,36872,-37,-181,-80,187,141,105,368,453,420,420,122,333,376,356,357,-17,35,77,64,63,3,8,10,11,11,-22,-210,-172,112,90,-19,-202,-162,123,101,-1,-14,5,0,-23 -35580,,,"New Ulm, MN",Micropolitan Statistical Area,25893,25893,25875,25680,25423,25293,25292,-18,-195,-257,-130,-1,76,252,292,243,248,85,282,277,286,270,-9,-30,15,-43,-22,1,3,3,5,5,-10,-159,-280,-93,23,-9,-156,-277,-88,28,0,-9,5,1,-7 -35580,,27015,"Brown County, MN",County or equivalent,25893,25893,25875,25680,25423,25293,25292,-18,-195,-257,-130,-1,76,252,292,243,248,85,282,277,286,270,-9,-30,15,-43,-22,1,3,3,5,5,-10,-159,-280,-93,23,-9,-156,-277,-88,28,0,-9,5,1,-7 -35700,,,"Nogales, AZ",Micropolitan Statistical Area,47420,47420,47384,47618,47433,47121,46695,-36,234,-185,-312,-426,157,710,661,686,662,40,273,278,292,300,117,437,383,394,362,8,96,68,79,88,-159,-287,-652,-828,-898,-151,-191,-584,-749,-810,-2,-12,16,43,22 -35700,,4023,"Santa Cruz County, AZ",County or equivalent,47420,47420,47384,47618,47433,47121,46695,-36,234,-185,-312,-426,157,710,661,686,662,40,273,278,292,300,117,437,383,394,362,8,96,68,79,88,-159,-287,-652,-828,-898,-151,-191,-584,-749,-810,-2,-12,16,43,22 -35740,,,"Norfolk, NE",Micropolitan Statistical Area,48271,48271,48339,48393,48395,48499,48445,68,54,2,104,-54,182,716,663,653,659,63,426,442,476,482,119,290,221,177,177,11,55,54,61,62,-54,-314,-270,-113,-317,-43,-259,-216,-52,-255,-8,23,-3,-21,24 -35740,,31119,"Madison County, NE",County or equivalent,34876,34876,34950,35016,35122,35251,35174,74,66,106,129,-77,135,562,507,508,505,51,325,323,367,375,84,237,184,141,130,8,49,48,55,56,-12,-228,-125,-75,-274,-4,-179,-77,-20,-218,-6,8,-1,8,11 -35740,,31139,"Pierce County, NE",County or equivalent,7266,7266,7261,7196,7180,7164,7202,-5,-65,-16,-16,38,27,70,78,89,88,10,53,69,73,71,17,17,9,16,17,0,1,1,1,1,-22,-86,-22,-19,22,-22,-85,-21,-18,23,0,3,-4,-14,-2 -35740,,31167,"Stanton County, NE",County or equivalent,6129,6129,6128,6181,6093,6084,6069,-1,53,-88,-9,-15,20,84,78,56,66,2,48,50,36,36,18,36,28,20,30,3,5,5,5,5,-20,0,-123,-19,-65,-17,5,-118,-14,-60,-2,12,2,-15,15 -35820,,,"North Platte, NE",Micropolitan Statistical Area,37590,37590,37573,37382,37305,37379,37063,-17,-191,-77,74,-316,127,426,466,447,446,105,353,353,344,347,22,73,113,103,99,4,34,32,32,33,-44,-291,-225,-75,-460,-40,-257,-193,-43,-427,1,-7,3,14,12 -35820,,31111,"Lincoln County, NE",County or equivalent,36288,36288,36267,36069,36029,36092,35815,-21,-198,-40,63,-277,124,415,452,433,437,104,342,344,341,340,20,73,108,92,97,4,34,32,32,33,-47,-297,-181,-79,-415,-43,-263,-149,-47,-382,2,-8,1,18,8 -35820,,31113,"Logan County, NE",County or equivalent,763,763,768,767,771,764,750,5,-1,4,-7,-14,1,9,10,13,9,0,6,6,1,6,1,3,4,12,3,0,0,0,0,0,5,-5,0,-16,-19,5,-5,0,-16,-19,-1,1,0,-3,2 -35820,,31117,"McPherson County, NE",County or equivalent,539,539,538,546,505,523,498,-1,8,-41,18,-25,2,2,4,1,0,1,5,3,2,1,1,-3,1,-1,-1,0,0,0,0,0,-2,11,-44,20,-26,-2,11,-44,20,-26,0,0,2,-1,2 -35860,,,"North Vernon, IN",Micropolitan Statistical Area,28525,28525,28465,28196,28182,28272,28000,-60,-269,-14,90,-272,84,345,320,357,348,83,295,239,280,281,1,50,81,77,67,2,10,10,10,10,-65,-337,-104,16,-337,-63,-327,-94,26,-327,2,8,-1,-13,-12 -35860,,18079,"Jennings County, IN",County or equivalent,28525,28525,28465,28196,28182,28272,28000,-60,-269,-14,90,-272,84,345,320,357,348,83,295,239,280,281,1,50,81,77,67,2,10,10,10,10,-65,-337,-104,16,-337,-63,-327,-94,26,-327,2,8,-1,-13,-12 -35900,,,"North Wilkesboro, NC",Micropolitan Statistical Area,69340,69340,69223,69181,69210,69012,68838,-117,-42,29,-198,-174,166,680,671,676,670,164,695,709,804,777,2,-15,-38,-128,-107,-2,-3,1,4,5,-101,-147,75,-108,-14,-103,-150,76,-104,-9,-16,123,-9,34,-58 -35900,,37193,"Wilkes County, NC",County or equivalent,69340,69340,69223,69181,69210,69012,68838,-117,-42,29,-198,-174,166,680,671,676,670,164,695,709,804,777,2,-15,-38,-128,-107,-2,-3,1,4,5,-101,-147,75,-108,-14,-103,-150,76,-104,-9,-16,123,-9,34,-58 -35940,,,"Norwalk, OH",Micropolitan Statistical Area,59626,59626,59599,59431,59295,58889,58714,-27,-168,-136,-406,-175,189,736,713,703,706,153,524,605,551,541,36,212,108,152,165,8,33,26,30,32,-72,-411,-269,-589,-351,-64,-378,-243,-559,-319,1,-2,-1,1,-21 -35940,,39077,"Huron County, OH",County or equivalent,59626,59626,59599,59431,59295,58889,58714,-27,-168,-136,-406,-175,189,736,713,703,706,153,524,605,551,541,36,212,108,152,165,8,33,26,30,32,-72,-411,-269,-589,-351,-64,-378,-243,-559,-319,1,-2,-1,1,-21 -36020,,,"Oak Harbor, WA",Micropolitan Statistical Area,78506,78506,78692,78969,79230,78589,79275,186,277,261,-641,686,227,912,894,877,858,114,677,641,614,628,113,235,253,263,230,86,71,383,245,261,-8,-13,-369,-1234,144,78,58,14,-989,405,-5,-16,-6,85,51 -36020,,53029,"Island County, WA",County or equivalent,78506,78506,78692,78969,79230,78589,79275,186,277,261,-641,686,227,912,894,877,858,114,677,641,614,628,113,235,253,263,230,86,71,383,245,261,-8,-13,-369,-1234,144,78,58,14,-989,405,-5,-16,-6,85,51 -36300,,,"Ogdensburg-Massena, NY",Micropolitan Statistical Area,111944,111944,111821,112370,112466,112019,111400,-123,549,96,-447,-619,304,1272,1216,1247,1213,281,1009,1036,1008,1014,23,263,180,239,199,34,154,176,179,174,-181,170,-250,-873,-928,-147,324,-74,-694,-754,1,-38,-10,8,-64 -36300,,36089,"St. Lawrence County, NY",County or equivalent,111944,111944,111821,112370,112466,112019,111400,-123,549,96,-447,-619,304,1272,1216,1247,1213,281,1009,1036,1008,1014,23,263,180,239,199,34,154,176,179,174,-181,170,-250,-873,-928,-147,324,-74,-694,-754,1,-38,-10,8,-64 -36340,,,"Oil City, PA",Micropolitan Statistical Area,54984,54983,54945,54707,54235,53908,53529,-38,-238,-472,-327,-379,142,567,543,581,568,125,691,654,681,654,17,-124,-111,-100,-86,1,13,13,14,14,-50,-121,-376,-256,-293,-49,-108,-363,-242,-279,-6,-6,2,15,-14 -36340,,42121,"Venango County, PA",County or equivalent,54984,54983,54945,54707,54235,53908,53529,-38,-238,-472,-327,-379,142,567,543,581,568,125,691,654,681,654,17,-124,-111,-100,-86,1,13,13,14,14,-50,-121,-376,-256,-293,-49,-108,-363,-242,-279,-6,-6,2,15,-14 -36380,,,"Okeechobee, FL",Micropolitan Statistical Area,39996,39996,40039,39441,39285,39076,39149,43,-598,-156,-209,73,140,549,539,507,514,78,420,390,381,385,62,129,149,126,129,12,75,68,71,77,-28,-1001,-375,-417,-101,-16,-926,-307,-346,-24,-3,199,2,11,-32 -36380,,12093,"Okeechobee County, FL",County or equivalent,39996,39996,40039,39441,39285,39076,39149,43,-598,-156,-209,73,140,549,539,507,514,78,420,390,381,385,62,129,149,126,129,12,75,68,71,77,-28,-1001,-375,-417,-101,-16,-926,-307,-346,-24,-3,199,2,11,-32 -36460,,,"Olean, NY",Micropolitan Statistical Area,80317,80317,80227,79820,79342,78996,78600,-90,-407,-478,-346,-396,250,934,928,886,883,258,832,806,784,803,-8,102,122,102,80,7,61,62,66,66,-92,-547,-665,-478,-512,-85,-486,-603,-412,-446,3,-23,3,-36,-30 -36460,,36009,"Cattaraugus County, NY",County or equivalent,80317,80317,80227,79820,79342,78996,78600,-90,-407,-478,-346,-396,250,934,928,886,883,258,832,806,784,803,-8,102,122,102,80,7,61,62,66,66,-92,-547,-665,-478,-512,-85,-486,-603,-412,-446,3,-23,3,-36,-30 -36580,,,"Oneonta, NY",Micropolitan Statistical Area,62259,62253,62225,62015,61880,61644,61128,-28,-210,-135,-236,-516,142,531,516,519,513,112,614,600,600,609,30,-83,-84,-81,-96,13,62,62,67,67,-61,-178,-114,-147,-461,-48,-116,-52,-80,-394,-10,-11,1,-75,-26 -36580,,36077,"Otsego County, NY",County or equivalent,62259,62253,62225,62015,61880,61644,61128,-28,-210,-135,-236,-516,142,531,516,519,513,112,614,600,600,609,30,-83,-84,-81,-96,13,62,62,67,67,-61,-178,-114,-147,-461,-48,-116,-52,-80,-394,-10,-11,1,-75,-26 -36620,,,"Ontario, OR-ID",Micropolitan Statistical Area,53936,53935,53970,53330,53279,53215,53195,35,-640,-51,-64,-20,214,760,705,761,724,82,521,481,454,447,132,239,224,307,277,3,1,-4,0,3,-102,-908,-271,-346,-322,-99,-907,-275,-346,-319,2,28,0,-25,22 -36620,,16075,"Payette County, ID",County or equivalent,22623,22623,22638,22550,22673,22591,22836,15,-88,123,-82,245,92,320,303,311,310,28,202,186,185,187,64,118,117,126,123,0,-3,-4,-4,-3,-50,-199,11,-192,133,-50,-202,7,-196,130,1,-4,-1,-12,-8 -36620,,41045,"Malheur County, OR",County or equivalent,31313,31312,31332,30780,30606,30624,30359,20,-552,-174,18,-265,122,440,402,450,414,54,319,295,269,260,68,121,107,181,154,3,4,0,4,6,-52,-709,-282,-154,-455,-49,-705,-282,-150,-449,1,32,1,-13,30 -36660,,,"Opelousas, LA",Micropolitan Statistical Area,83384,83384,83500,83426,83483,83472,83709,116,-74,57,-11,237,311,1345,1248,1249,1250,189,879,901,991,989,122,466,347,258,261,1,8,7,9,9,-4,-513,-294,-340,-12,-3,-505,-287,-331,-3,-3,-35,-3,62,-21 -36660,,22097,"St. Landry Parish, LA",County or equivalent,83384,83384,83500,83426,83483,83472,83709,116,-74,57,-11,237,311,1345,1248,1249,1250,189,879,901,991,989,122,466,347,258,261,1,8,7,9,9,-4,-513,-294,-340,-12,-3,-505,-287,-331,-3,-3,-35,-3,62,-21 -36700,,,"Orangeburg, SC",Micropolitan Statistical Area,92501,92495,92312,91755,91429,90726,90090,-183,-557,-326,-703,-636,327,1197,1145,1107,1077,269,1055,957,1016,1065,58,142,188,91,12,5,34,38,41,41,-250,-724,-540,-844,-632,-245,-690,-502,-803,-591,4,-9,-12,9,-57 -36700,,45075,"Orangeburg County, SC",County or equivalent,92501,92495,92312,91755,91429,90726,90090,-183,-557,-326,-703,-636,327,1197,1145,1107,1077,269,1055,957,1016,1065,58,142,188,91,12,5,34,38,41,41,-250,-724,-540,-844,-632,-245,-690,-502,-803,-591,4,-9,-12,9,-57 -36820,,,"Oskaloosa, IA",Micropolitan Statistical Area,22381,22381,22397,22505,22417,22412,22370,16,108,-88,-5,-42,71,306,248,277,265,30,222,234,220,223,41,84,14,57,42,2,13,15,15,15,-25,11,-118,-66,-95,-23,24,-103,-51,-80,-2,0,1,-11,-4 -36820,,19123,"Mahaska County, IA",County or equivalent,22381,22381,22397,22505,22417,22412,22370,16,108,-88,-5,-42,71,306,248,277,265,30,222,234,220,223,41,84,14,57,42,2,13,15,15,15,-25,11,-118,-66,-95,-23,24,-103,-51,-80,-2,0,1,-11,-4 -36830,,,"Othello, WA",Micropolitan Statistical Area,18728,18728,18760,18830,18914,19073,19179,32,70,84,159,106,96,425,402,395,392,48,116,97,106,113,48,309,305,289,279,0,17,13,25,30,-18,-283,-233,-114,-210,-18,-266,-220,-89,-180,2,27,-1,-41,7 -36830,,53001,"Adams County, WA",County or equivalent,18728,18728,18760,18830,18914,19073,19179,32,70,84,159,106,96,425,402,395,392,48,116,97,106,113,48,309,305,289,279,0,17,13,25,30,-18,-283,-233,-114,-210,-18,-266,-220,-89,-180,2,27,-1,-41,7 -36840,,,"Ottawa, KS",Micropolitan Statistical Area,25992,25996,26006,25887,25878,25790,25611,10,-119,-9,-88,-179,77,337,323,308,319,90,233,250,240,248,-13,104,73,68,71,1,15,15,17,17,27,-231,-98,-167,-268,28,-216,-83,-150,-251,-5,-7,1,-6,1 -36840,,20059,"Franklin County, KS",County or equivalent,25992,25996,26006,25887,25878,25790,25611,10,-119,-9,-88,-179,77,337,323,308,319,90,233,250,240,248,-13,104,73,68,71,1,15,15,17,17,27,-231,-98,-167,-268,28,-216,-83,-150,-251,-5,-7,1,-6,1 -36860,,,"Ottawa-Peru, IL",Micropolitan Statistical Area,154908,154906,154765,154071,153094,151948,150895,-141,-694,-977,-1146,-1053,411,1623,1559,1498,1478,342,1748,1752,1633,1642,69,-125,-193,-135,-164,16,58,51,65,66,-218,-656,-844,-1074,-861,-202,-598,-793,-1009,-795,-8,29,9,-2,-94 -36860,,17011,"Bureau County, IL",County or equivalent,34978,34978,34905,34640,34337,34084,33840,-73,-265,-303,-253,-244,79,330,330,331,328,64,393,375,319,368,15,-63,-45,12,-40,2,15,14,16,16,-83,-240,-277,-238,-194,-81,-225,-263,-222,-178,-7,23,5,-43,-26 -36860,,17099,"LaSalle County, IL",County or equivalent,113924,113922,113866,113463,112882,112039,111241,-56,-403,-581,-843,-798,324,1243,1173,1110,1093,273,1302,1322,1267,1210,51,-59,-149,-157,-117,14,43,37,49,50,-123,-396,-475,-788,-668,-109,-353,-438,-739,-618,2,9,6,53,-63 -36860,,17155,"Putnam County, IL",County or equivalent,6006,6006,5994,5968,5875,5825,5814,-12,-26,-93,-50,-11,8,50,56,57,57,5,53,55,47,64,3,-3,1,10,-7,0,0,0,0,0,-12,-20,-92,-48,1,-12,-20,-92,-48,1,-3,-3,-2,-12,-5 -36900,,,"Ottumwa, IA",Micropolitan Statistical Area,44378,44378,44443,44218,44058,44143,43993,65,-225,-160,85,-150,166,581,549,558,562,92,493,489,466,458,74,88,60,92,104,15,52,44,54,54,-17,-361,-256,-30,-314,-2,-309,-212,24,-260,-7,-4,-8,-31,6 -36900,,19051,"Davis County, IA",County or equivalent,8753,8753,8791,8774,8709,8770,8781,38,-17,-65,61,11,49,132,139,123,136,14,90,85,78,77,35,42,54,45,59,0,-1,-1,0,0,4,-63,-117,24,-48,4,-64,-118,24,-48,-1,5,-1,-8,0 -36900,,19179,"Wapello County, IA",County or equivalent,35625,35625,35652,35444,35349,35373,35212,27,-208,-95,24,-161,117,449,410,435,426,78,403,404,388,381,39,46,6,47,45,15,53,45,54,54,-21,-298,-139,-54,-266,-6,-245,-94,0,-212,-6,-9,-7,-23,6 -36940,,,"Owatonna, MN",Micropolitan Statistical Area,36576,36576,36506,36551,36301,36429,36573,-70,45,-250,128,144,123,486,445,462,450,92,262,302,286,299,31,224,143,176,151,5,30,28,32,32,-112,-200,-431,-84,-58,-107,-170,-403,-52,-26,6,-9,10,4,19 -36940,,27147,"Steele County, MN",County or equivalent,36576,36576,36506,36551,36301,36429,36573,-70,45,-250,128,144,123,486,445,462,450,92,262,302,286,299,31,224,143,176,151,5,30,28,32,32,-112,-200,-431,-84,-58,-107,-170,-403,-52,-26,6,-9,10,4,19 -37020,,,"Owosso, MI",Micropolitan Statistical Area,70648,70648,70637,69981,69300,68916,68933,-11,-656,-681,-384,17,214,692,699,732,717,145,663,675,723,700,69,29,24,9,17,5,19,19,21,21,-84,-689,-743,-436,-10,-79,-670,-724,-415,11,-1,-15,19,22,-11 -37020,,26155,"Shiawassee County, MI",County or equivalent,70648,70648,70637,69981,69300,68916,68933,-11,-656,-681,-384,17,214,692,699,732,717,145,663,675,723,700,69,29,24,9,17,5,19,19,21,21,-84,-689,-743,-436,-10,-79,-670,-724,-415,11,-1,-15,19,22,-11 -37060,,,"Oxford, MS",Micropolitan Statistical Area,47351,47359,47535,48404,50416,51993,52930,176,869,2012,1577,937,122,508,579,586,597,59,336,385,377,386,63,172,194,209,211,22,121,122,139,140,84,533,1653,1195,522,106,654,1775,1334,662,7,43,43,34,64 -37060,,28071,"Lafayette County, MS",County or equivalent,47351,47359,47535,48404,50416,51993,52930,176,869,2012,1577,937,122,508,579,586,597,59,336,385,377,386,63,172,194,209,211,22,121,122,139,140,84,533,1653,1195,522,106,654,1775,1334,662,7,43,43,34,64 -37080,,,"Oxford, NC",Micropolitan Statistical Area,59916,57532,57650,57681,57818,58128,58500,118,31,137,310,372,145,608,544,544,553,63,485,467,490,519,82,123,77,54,34,12,51,45,49,50,34,-230,19,177,316,46,-179,64,226,366,-10,87,-4,30,-28 -37080,,37077,"Granville County, NC",County or equivalent,59916,57532,57650,57681,57818,58128,58500,118,31,137,310,372,145,608,544,544,553,63,485,467,490,519,82,123,77,54,34,12,51,45,49,50,34,-230,19,177,316,46,-179,64,226,366,-10,87,-4,30,-28 -37120,,,"Ozark, AL",Micropolitan Statistical Area,50251,50251,50340,50085,50310,49845,49484,89,-255,225,-465,-361,155,693,706,659,644,75,469,451,469,511,80,224,255,190,133,46,56,231,134,116,-28,-543,-260,-767,-592,18,-487,-29,-633,-476,-9,8,-1,-22,-18 -37120,,1045,"Dale County, AL",County or equivalent,50251,50251,50340,50085,50310,49845,49484,89,-255,225,-465,-361,155,693,706,659,644,75,469,451,469,511,80,224,255,190,133,46,56,231,134,116,-28,-543,-260,-767,-592,18,-487,-29,-633,-476,-9,8,-1,-22,-18 -37140,,,"Paducah, KY-IL",Micropolitan Statistical Area,98762,98760,98763,98920,98539,98010,97820,3,157,-381,-529,-190,282,1158,1124,1087,1099,290,1259,1227,1198,1207,-8,-101,-103,-111,-108,1,6,4,6,7,25,271,-281,-453,-82,26,277,-277,-447,-75,-15,-19,-1,29,-7 -37140,,17127,"Massac County, IL",County or equivalent,15429,15429,15400,15312,15143,14980,14905,-29,-88,-169,-163,-75,33,183,170,145,154,81,217,203,200,169,-48,-34,-33,-55,-15,0,1,1,2,2,27,-65,-138,-126,-60,27,-64,-137,-124,-58,-8,10,1,16,-2 -37140,,21007,"Ballard County, KY",County or equivalent,8249,8247,8259,8285,8304,8282,8240,12,26,19,-22,-42,20,99,80,83,81,16,105,102,105,99,4,-6,-22,-22,-18,0,1,1,1,1,9,21,39,3,-35,9,22,40,4,-34,-1,10,1,-4,10 -37140,,21139,"Livingston County, KY",County or equivalent,9519,9519,9538,9505,9447,9368,9359,19,-33,-58,-79,-9,25,98,97,102,104,46,139,115,104,115,-21,-41,-18,-2,-11,1,5,5,5,5,40,5,-45,-88,-12,41,10,-40,-83,-7,-1,-2,0,6,9 -37140,,21145,"McCracken County, KY",County or equivalent,65565,65565,65566,65818,65645,65380,65316,1,252,-173,-265,-64,204,778,777,757,760,147,798,807,789,824,57,-20,-30,-32,-64,0,-1,-3,-2,-1,-51,310,-137,-242,25,-51,309,-140,-244,24,-5,-37,-3,11,-24 -37220,,,"Pahrump, NV",Micropolitan Statistical Area,43946,43945,43864,43322,42923,42298,42282,-81,-542,-399,-625,-16,100,416,384,351,339,135,631,677,607,605,-35,-215,-293,-256,-266,8,32,31,38,38,-51,-359,-136,-463,201,-43,-327,-105,-425,239,-3,0,-1,56,11 -37220,,32023,"Nye County, NV",County or equivalent,43946,43945,43864,43322,42923,42298,42282,-81,-542,-399,-625,-16,100,416,384,351,339,135,631,677,607,605,-35,-215,-293,-256,-266,8,32,31,38,38,-51,-359,-136,-463,201,-43,-327,-105,-425,239,-3,0,-1,56,11 -37260,,,"Palatka, FL",Micropolitan Statistical Area,74364,74364,74221,73928,73119,72543,72143,-143,-293,-809,-576,-400,207,903,826,814,812,276,968,875,951,917,-69,-65,-49,-137,-105,10,56,61,61,63,-82,-271,-822,-394,-331,-72,-215,-761,-333,-268,-2,-13,1,-106,-27 -37260,,12107,"Putnam County, FL",County or equivalent,74364,74364,74221,73928,73119,72543,72143,-143,-293,-809,-576,-400,207,903,826,814,812,276,968,875,951,917,-69,-65,-49,-137,-105,10,56,61,61,63,-82,-271,-822,-394,-331,-72,-215,-761,-333,-268,-2,-13,1,-106,-27 -37300,,,"Palestine, TX",Micropolitan Statistical Area,58458,58458,58478,58353,58026,57934,57627,20,-125,-327,-92,-307,142,594,569,589,571,104,640,623,613,643,38,-46,-54,-24,-72,0,10,8,12,17,-16,-67,-283,-91,-227,-16,-57,-275,-79,-210,-2,-22,2,11,-25 -37300,,48001,"Anderson County, TX",County or equivalent,58458,58458,58478,58353,58026,57934,57627,20,-125,-327,-92,-307,142,594,569,589,571,104,640,623,613,643,38,-46,-54,-24,-72,0,10,8,12,17,-16,-67,-283,-91,-227,-16,-57,-275,-79,-210,-2,-22,2,11,-25 -37420,,,"Pampa, TX",Micropolitan Statistical Area,22535,22535,22466,22584,22833,22929,23044,-69,118,249,96,115,91,306,341,344,355,45,247,262,240,239,46,59,79,104,116,1,7,5,6,7,-117,25,165,5,-8,-116,32,170,11,-1,1,27,0,-19,0 -37420,,48179,"Gray County, TX",County or equivalent,22535,22535,22466,22584,22833,22929,23044,-69,118,249,96,115,91,306,341,344,355,45,247,262,240,239,46,59,79,104,116,1,7,5,6,7,-117,25,165,5,-8,-116,32,170,11,-1,1,27,0,-19,0 -37500,,,"Paragould, AR",Micropolitan Statistical Area,42090,42090,42193,42731,43158,43072,43694,103,538,427,-86,622,131,534,573,558,535,89,453,457,489,455,42,81,116,69,80,0,6,8,10,11,62,467,301,-168,534,62,473,309,-158,545,-1,-16,2,3,-3 -37500,,5055,"Greene County, AR",County or equivalent,42090,42090,42193,42731,43158,43072,43694,103,538,427,-86,622,131,534,573,558,535,89,453,457,489,455,42,81,116,69,80,0,6,8,10,11,62,467,301,-168,534,62,473,309,-158,545,-1,-16,2,3,-3 -37540,,,"Paris, TN",Micropolitan Statistical Area,32330,32330,32354,32333,32334,32171,32204,24,-21,1,-163,33,77,323,333,326,316,85,426,456,478,471,-8,-103,-123,-152,-155,4,14,15,16,16,26,89,108,-39,178,30,103,123,-23,194,2,-21,1,12,-6 -37540,,47079,"Henry County, TN",County or equivalent,32330,32330,32354,32333,32334,32171,32204,24,-21,1,-163,33,77,323,333,326,316,85,426,456,478,471,-8,-103,-123,-152,-155,4,14,15,16,16,26,89,108,-39,178,30,103,123,-23,194,2,-21,1,12,-6 -37580,,,"Paris, TX",Micropolitan Statistical Area,49793,49789,49844,49975,49856,49320,49523,55,131,-119,-536,203,184,647,670,636,628,157,550,594,634,650,27,97,76,2,-22,2,12,6,10,10,27,8,-195,-559,206,29,20,-189,-549,216,-1,14,-6,11,9 -37580,,48277,"Lamar County, TX",County or equivalent,49793,49789,49844,49975,49856,49320,49523,55,131,-119,-536,203,184,647,670,636,628,157,550,594,634,650,27,97,76,2,-22,2,12,6,10,10,27,8,-195,-559,206,29,20,-189,-549,216,-1,14,-6,11,9 -37660,,,"Parsons, KS",Micropolitan Statistical Area,21607,21607,21546,21432,21219,20969,20960,-61,-114,-213,-250,-9,71,254,274,288,284,81,282,272,231,225,-10,-28,2,57,59,2,15,14,17,17,-56,-100,-228,-307,-78,-54,-85,-214,-290,-61,3,-1,-1,-17,-7 -37660,,20099,"Labette County, KS",County or equivalent,21607,21607,21546,21432,21219,20969,20960,-61,-114,-213,-250,-9,71,254,274,288,284,81,282,272,231,225,-10,-28,2,57,59,2,15,14,17,17,-56,-100,-228,-307,-78,-54,-85,-214,-290,-61,3,-1,-1,-17,-7 -37740,,,"Payson, AZ",Micropolitan Statistical Area,53597,53597,53534,53469,53027,53063,53119,-63,-65,-442,36,56,175,659,590,616,610,204,692,697,682,760,-29,-33,-107,-66,-150,6,27,26,30,30,-27,-43,-357,8,180,-21,-16,-331,38,210,-13,-16,-4,64,-4 -37740,,4007,"Gila County, AZ",County or equivalent,53597,53597,53534,53469,53027,53063,53119,-63,-65,-442,36,56,175,659,590,616,610,204,692,697,682,760,-29,-33,-107,-66,-150,6,27,26,30,30,-27,-43,-357,8,180,-21,-16,-331,38,210,-13,-16,-4,64,-4 -37780,,,"Pecos, TX",Micropolitan Statistical Area,13783,13783,13813,13761,13892,14077,14349,30,-52,131,185,272,41,166,153,180,183,11,92,92,117,104,30,74,61,63,79,3,33,25,31,31,0,-169,46,103,156,3,-136,71,134,187,-3,10,-1,-12,6 -37780,,48389,"Reeves County, TX",County or equivalent,13783,13783,13813,13761,13892,14077,14349,30,-52,131,185,272,41,166,153,180,183,11,92,92,117,104,30,74,61,63,79,3,33,25,31,31,0,-169,46,103,156,3,-136,71,134,187,-3,10,-1,-12,6 -37940,,,"Peru, IN",Micropolitan Statistical Area,36903,36903,36795,36585,36502,36133,35954,-108,-210,-83,-369,-179,83,402,358,353,353,72,336,364,372,343,11,66,-6,-19,10,0,2,2,2,2,-122,-292,-78,-371,-172,-122,-290,-76,-369,-170,3,14,-1,19,-19 -37940,,18103,"Miami County, IN",County or equivalent,36903,36903,36795,36585,36502,36133,35954,-108,-210,-83,-369,-179,83,402,358,353,353,72,336,364,372,343,11,66,-6,-19,10,0,2,2,2,2,-122,-292,-78,-371,-172,-122,-290,-76,-369,-170,3,14,-1,19,-19 -38100,,,"Picayune, MS",Micropolitan Statistical Area,55834,55747,55723,55469,55090,54957,55224,-24,-254,-379,-133,267,165,661,685,630,613,160,577,574,594,596,5,84,111,36,17,-1,0,0,2,2,-25,-336,-497,-158,214,-26,-336,-497,-156,216,-3,-2,7,-13,34 -38100,,28109,"Pearl River County, MS",County or equivalent,55834,55747,55723,55469,55090,54957,55224,-24,-254,-379,-133,267,165,661,685,630,613,160,577,574,594,596,5,84,111,36,17,-1,0,0,2,2,-25,-336,-497,-158,214,-26,-336,-497,-156,216,-3,-2,7,-13,34 -38180,,,"Pierre, SD",Micropolitan Statistical Area,21361,21361,21425,21659,21863,21914,22063,64,234,204,51,149,76,302,289,287,287,31,171,176,139,162,45,131,113,148,125,1,13,14,14,14,18,92,80,-94,-2,19,105,94,-80,12,0,-2,-3,-17,12 -38180,,46065,"Hughes County, SD",County or equivalent,17022,17022,17062,17283,17441,17466,17642,40,221,158,25,176,51,250,229,240,240,22,138,147,123,150,29,112,82,117,90,0,4,5,4,4,12,106,72,-95,81,12,110,77,-91,85,-1,-1,-1,-1,1 -38180,,46117,"Stanley County, SD",County or equivalent,2966,2966,2989,2989,2977,2984,2983,23,0,-12,7,-1,21,37,41,35,33,9,20,19,11,5,12,17,22,24,28,0,0,0,0,0,9,-16,-31,-11,-36,9,-16,-31,-11,-36,2,-1,-3,-6,7 -38180,,46119,"Sully County, SD",County or equivalent,1373,1373,1374,1387,1445,1464,1438,1,13,58,19,-26,4,15,19,12,14,0,13,10,5,7,4,2,9,7,7,1,9,9,10,10,-3,2,39,12,-47,-2,11,48,22,-37,-1,0,1,-10,4 -38240,,,"Pinehurst-Southern Pines, NC",Micropolitan Statistical Area,88247,88247,88572,89349,90320,91576,93077,325,777,971,1256,1501,223,929,973,992,990,220,987,1001,1092,1107,3,-58,-28,-100,-117,24,31,104,83,79,284,798,872,1175,1498,308,829,976,1258,1577,14,6,23,98,41 -38240,,37125,"Moore County, NC",County or equivalent,88247,88247,88572,89349,90320,91576,93077,325,777,971,1256,1501,223,929,973,992,990,220,987,1001,1092,1107,3,-58,-28,-100,-117,24,31,104,83,79,284,798,872,1175,1498,308,829,976,1258,1577,14,6,23,98,41 -38260,,,"Pittsburg, KS",Micropolitan Statistical Area,39134,39134,39200,39204,39361,39330,39290,66,4,157,-31,-40,144,484,500,490,474,79,446,433,360,355,65,38,67,130,119,21,76,74,83,83,-19,-91,23,-268,-226,2,-15,97,-185,-143,-1,-19,-7,24,-16 -38260,,20037,"Crawford County, KS",County or equivalent,39134,39134,39200,39204,39361,39330,39290,66,4,157,-31,-40,144,484,500,490,474,79,446,433,360,355,65,38,67,130,119,21,76,74,83,83,-19,-91,23,-268,-226,2,-15,97,-185,-143,-1,-19,-7,24,-16 -38380,,,"Plainview, TX",Micropolitan Statistical Area,36273,36273,36355,36423,36316,35809,34720,82,68,-107,-507,-1089,174,556,555,525,516,98,315,273,294,306,76,241,282,231,210,4,25,24,28,34,4,-223,-420,-778,-1340,8,-198,-396,-750,-1306,-2,25,7,12,7 -38380,,48189,"Hale County, TX",County or equivalent,36273,36273,36355,36423,36316,35809,34720,82,68,-107,-507,-1089,174,556,555,525,516,98,315,273,294,306,76,241,282,231,210,4,25,24,28,34,4,-223,-420,-778,-1340,8,-198,-396,-750,-1306,-2,25,7,12,7 -38420,,,"Platteville, WI",Micropolitan Statistical Area,51208,51208,51187,51231,50991,51120,51829,-21,44,-240,129,709,129,530,543,520,533,107,492,474,447,472,22,38,69,73,61,5,20,19,22,22,-36,-9,-337,42,643,-31,11,-318,64,665,-12,-5,9,-8,-17 -38420,,55043,"Grant County, WI",County or equivalent,51208,51208,51187,51231,50991,51120,51829,-21,44,-240,129,709,129,530,543,520,533,107,492,474,447,472,22,38,69,73,61,5,20,19,22,22,-36,-9,-337,42,643,-31,11,-318,64,665,-12,-5,9,-8,-17 -38460,,,"Plattsburgh, NY",Micropolitan Statistical Area,82128,82128,82066,81849,81826,81773,81632,-62,-217,-23,-53,-141,199,794,790,772,761,159,703,692,692,678,40,91,98,80,83,25,134,135,156,156,-120,-502,-253,-318,-332,-95,-368,-118,-162,-176,-7,60,-3,29,-48 -38460,,36019,"Clinton County, NY",County or equivalent,82128,82128,82066,81849,81826,81773,81632,-62,-217,-23,-53,-141,199,794,790,772,761,159,703,692,692,678,40,91,98,80,83,25,134,135,156,156,-120,-502,-253,-318,-332,-95,-368,-118,-162,-176,-7,60,-3,29,-48 -38500,,,"Plymouth, IN",Micropolitan Statistical Area,47051,47051,47008,46981,47025,47037,47107,-43,-27,44,12,70,143,542,655,568,583,111,425,432,442,448,32,117,223,126,135,11,51,44,48,48,-90,-208,-227,-158,-80,-79,-157,-183,-110,-32,4,13,4,-4,-33 -38500,,18099,"Marshall County, IN",County or equivalent,47051,47051,47008,46981,47025,47037,47107,-43,-27,44,12,70,143,542,655,568,583,111,425,432,442,448,32,117,223,126,135,11,51,44,48,48,-90,-208,-227,-158,-80,-79,-157,-183,-110,-32,4,13,4,-4,-33 -38580,,,"Point Pleasant, WV-OH",Micropolitan Statistical Area,58258,58260,58392,58278,58027,57743,57413,132,-114,-251,-284,-330,156,632,680,643,647,182,681,667,668,677,-26,-49,13,-25,-30,3,10,10,11,11,151,-70,-278,-246,-341,154,-60,-268,-235,-330,4,-5,4,-24,30 -38580,,39053,"Gallia County, OH",County or equivalent,30934,30934,31057,30960,30805,30597,30397,123,-97,-155,-208,-200,89,355,381,369,364,109,351,340,346,345,-20,4,41,23,19,3,14,14,15,15,134,-111,-215,-240,-226,137,-97,-201,-225,-211,6,-4,5,-6,-8 -38580,,54053,"Mason County, WV",County or equivalent,27324,27326,27335,27318,27222,27146,27016,9,-17,-96,-76,-130,67,277,299,274,283,73,330,327,322,332,-6,-53,-28,-48,-49,0,-4,-4,-4,-4,17,41,-63,-6,-115,17,37,-67,-10,-119,-2,-1,-1,-18,38 -38620,,,"Ponca City, OK",Micropolitan Statistical Area,46562,46562,46428,45799,45657,45543,45478,-134,-629,-142,-114,-65,157,626,647,647,647,102,597,558,511,553,55,29,89,136,94,-2,-5,0,2,2,-193,-652,-230,-194,-123,-195,-657,-230,-192,-121,6,-1,-1,-58,-38 -38620,,40071,"Kay County, OK",County or equivalent,46562,46562,46428,45799,45657,45543,45478,-134,-629,-142,-114,-65,157,626,647,647,647,102,597,558,511,553,55,29,89,136,94,-2,-5,0,2,2,-193,-652,-230,-194,-123,-195,-657,-230,-192,-121,6,-1,-1,-58,-38 -38700,,,"Pontiac, IL",Micropolitan Statistical Area,38950,38950,38853,38844,38535,38243,37903,-97,-9,-309,-292,-340,110,438,427,473,457,141,382,456,393,358,-31,56,-29,80,99,2,16,16,18,18,-71,-79,-303,-366,-454,-69,-63,-287,-348,-436,3,-2,7,-24,-3 -38700,,17105,"Livingston County, IL",County or equivalent,38950,38950,38853,38844,38535,38243,37903,-97,-9,-309,-292,-340,110,438,427,473,457,141,382,456,393,358,-31,56,-29,80,99,2,16,16,18,18,-71,-79,-303,-366,-454,-69,-63,-287,-348,-436,3,-2,7,-24,-3 -38740,,,"Poplar Bluff, MO",Micropolitan Statistical Area,42794,42794,42809,42999,43012,42992,42972,15,190,13,-20,-20,137,541,579,610,591,146,566,514,554,539,-9,-25,65,56,52,1,5,7,8,8,23,231,-52,-33,-58,24,236,-45,-25,-50,0,-21,-7,-51,-22 -38740,,29023,"Butler County, MO",County or equivalent,42794,42794,42809,42999,43012,42992,42972,15,190,13,-20,-20,137,541,579,610,591,146,566,514,554,539,-9,-25,65,56,52,1,5,7,8,8,23,231,-52,-33,-58,24,236,-45,-25,-50,0,-21,-7,-51,-22 -38780,,,"Portales, NM",Micropolitan Statistical Area,19846,19846,20011,20459,20336,19983,19536,165,448,-123,-353,-447,75,284,295,258,267,41,158,161,159,164,34,126,134,99,103,5,18,17,21,21,122,295,-276,-468,-572,127,313,-259,-447,-551,4,9,2,-5,1 -38780,,35041,"Roosevelt County, NM",County or equivalent,19846,19846,20011,20459,20336,19983,19536,165,448,-123,-353,-447,75,284,295,258,267,41,158,161,159,164,34,126,134,99,103,5,18,17,21,21,122,295,-276,-468,-572,127,313,-259,-447,-551,4,9,2,-5,1 -38820,,,"Port Angeles, WA",Micropolitan Statistical Area,71404,71404,71526,71783,71848,72250,72715,122,257,65,402,465,163,684,656,655,656,197,920,940,924,941,-34,-236,-284,-269,-285,13,58,76,78,74,138,448,269,519,597,151,506,345,597,671,5,-13,4,74,79 -38820,,53009,"Clallam County, WA",County or equivalent,71404,71404,71526,71783,71848,72250,72715,122,257,65,402,465,163,684,656,655,656,197,920,940,924,941,-34,-236,-284,-269,-285,13,58,76,78,74,138,448,269,519,597,151,506,345,597,671,5,-13,4,74,79 -38840,,,"Port Clinton, OH",Micropolitan Statistical Area,41428,41434,41408,41436,41361,41160,41154,-26,28,-75,-201,-6,93,364,364,336,351,143,443,442,506,486,-50,-79,-78,-170,-135,3,9,12,11,11,27,77,-9,-49,81,30,86,3,-38,92,-6,21,0,7,37 -38840,,39123,"Ottawa County, OH",County or equivalent,41428,41434,41408,41436,41361,41160,41154,-26,28,-75,-201,-6,93,364,364,336,351,143,443,442,506,486,-50,-79,-78,-170,-135,3,9,12,11,11,27,77,-9,-49,81,30,86,3,-38,92,-6,21,0,7,37 -38920,,,"Port Lavaca, TX",Micropolitan Statistical Area,21381,21381,21336,21359,21567,21785,21797,-45,23,208,218,12,80,287,253,298,280,73,205,186,189,205,7,82,67,109,75,6,22,24,24,24,-60,-80,118,74,-84,-54,-58,142,98,-60,2,-1,-1,11,-3 -38920,,48057,"Calhoun County, TX",County or equivalent,21381,21381,21336,21359,21567,21785,21797,-45,23,208,218,12,80,287,253,298,280,73,205,186,189,205,7,82,67,109,75,6,22,24,24,24,-60,-80,118,74,-84,-54,-58,142,98,-60,2,-1,-1,11,-3 -39020,,,"Portsmouth, OH",Micropolitan Statistical Area,79499,79499,79531,79218,78572,78023,77258,32,-313,-646,-549,-765,221,869,904,906,867,217,906,946,933,885,4,-37,-42,-27,-18,4,12,11,15,15,28,-260,-620,-525,-731,32,-248,-609,-510,-716,-4,-28,5,-12,-31 -39020,,39145,"Scioto County, OH",County or equivalent,79499,79499,79531,79218,78572,78023,77258,32,-313,-646,-549,-765,221,869,904,906,867,217,906,946,933,885,4,-37,-42,-27,-18,4,12,11,15,15,28,-260,-620,-525,-731,32,-248,-609,-510,-716,-4,-28,5,-12,-31 -39060,,,"Pottsville, PA",Micropolitan Statistical Area,148289,148289,148225,147623,147288,146798,145797,-64,-602,-335,-490,-1001,359,1401,1408,1341,1330,415,1932,1946,1853,1835,-56,-531,-538,-512,-505,13,67,72,75,76,5,-136,139,79,-506,18,-69,211,154,-430,-26,-2,-8,-132,-66 -39060,,42107,"Schuylkill County, PA",County or equivalent,148289,148289,148225,147623,147288,146798,145797,-64,-602,-335,-490,-1001,359,1401,1408,1341,1330,415,1932,1946,1853,1835,-56,-531,-538,-512,-505,13,67,72,75,76,5,-136,139,79,-506,18,-69,211,154,-430,-26,-2,-8,-132,-66 -39220,,,"Price, UT",Micropolitan Statistical Area,21403,21403,21416,21328,21254,20931,20660,13,-88,-74,-323,-271,73,332,335,301,297,79,225,196,231,190,-6,107,139,70,107,3,18,17,18,18,17,-212,-230,-414,-393,20,-194,-213,-396,-375,-1,-1,0,3,-3 -39220,,49007,"Carbon County, UT",County or equivalent,21403,21403,21416,21328,21254,20931,20660,13,-88,-74,-323,-271,73,332,335,301,297,79,225,196,231,190,-6,107,139,70,107,3,18,17,18,18,17,-212,-230,-414,-393,20,-194,-213,-396,-375,-1,-1,0,3,-3 -39260,,,"Prineville, OR",Micropolitan Statistical Area,20978,20978,20891,20673,20636,20790,20998,-87,-218,-37,154,208,49,155,164,196,172,39,241,208,223,221,10,-86,-44,-27,-49,0,1,1,3,3,-100,-165,9,184,264,-100,-164,10,187,267,3,32,-3,-6,-10 -39260,,41013,"Crook County, OR",County or equivalent,20978,20978,20891,20673,20636,20790,20998,-87,-218,-37,154,208,49,155,164,196,172,39,241,208,223,221,10,-86,-44,-27,-49,0,1,1,3,3,-100,-165,9,184,264,-100,-164,10,187,267,3,32,-3,-6,-10 -39420,,,"Pullman, WA",Micropolitan Statistical Area,44776,44776,44778,45064,46590,46758,46827,2,286,1526,168,69,89,442,431,476,481,80,247,230,255,232,9,195,201,221,249,66,314,313,343,344,-72,-211,977,-411,-516,-6,103,1290,-68,-172,-1,-12,35,15,-8 -39420,,53075,"Whitman County, WA",County or equivalent,44776,44776,44778,45064,46590,46758,46827,2,286,1526,168,69,89,442,431,476,481,80,247,230,255,232,9,195,201,221,249,66,314,313,343,344,-72,-211,977,-411,-516,-6,103,1290,-68,-172,-1,-12,35,15,-8 -39500,,,"Quincy, IL-MO",Micropolitan Statistical Area,77314,77314,77362,77411,77359,77191,77126,48,49,-52,-168,-65,238,923,920,890,881,169,870,915,874,888,69,53,5,16,-7,3,15,14,17,17,-20,-31,-66,-257,-103,-17,-16,-52,-240,-86,-4,12,-5,56,28 -39500,,17001,"Adams County, IL",County or equivalent,67103,67103,67162,67172,67199,67046,66988,59,10,27,-153,-58,209,813,807,777,771,153,769,797,776,792,56,44,10,1,-21,3,12,11,13,13,2,-42,13,-224,-83,5,-30,24,-211,-70,-2,-4,-7,57,33 -39500,,29111,"Lewis County, MO",County or equivalent,10211,10211,10200,10239,10160,10145,10138,-11,39,-79,-15,-7,29,110,113,113,110,16,101,118,98,96,13,9,-5,15,14,0,3,3,4,4,-22,11,-79,-33,-20,-22,14,-76,-29,-16,-2,16,2,-1,-5 -39700,,,"Raymondville, TX",Micropolitan Statistical Area,22134,22134,22202,22114,22107,21953,21903,68,-88,-7,-154,-50,88,341,313,309,314,18,163,161,155,169,70,178,152,154,145,1,12,4,10,14,2,-284,-163,-322,-216,3,-272,-159,-312,-202,-5,6,0,4,7 -39700,,48489,"Willacy County, TX",County or equivalent,22134,22134,22202,22114,22107,21953,21903,68,-88,-7,-154,-50,88,341,313,309,314,18,163,161,155,169,70,178,152,154,145,1,12,4,10,14,2,-284,-163,-322,-216,3,-272,-159,-312,-202,-5,6,0,4,7 -39780,,,"Red Bluff, CA",Micropolitan Statistical Area,63463,63461,63638,63321,63263,63130,63067,177,-317,-58,-133,-63,226,734,724,791,773,161,599,563,591,592,65,135,161,200,181,16,59,57,63,63,93,-527,-275,-357,-322,109,-468,-218,-294,-259,3,16,-1,-39,15 -39780,,6103,"Tehama County, CA",County or equivalent,63463,63461,63638,63321,63263,63130,63067,177,-317,-58,-133,-63,226,734,724,791,773,161,599,563,591,592,65,135,161,200,181,16,59,57,63,63,93,-527,-275,-357,-322,109,-468,-218,-294,-259,3,16,-1,-39,15 -39860,,,"Red Wing, MN",Micropolitan Statistical Area,46183,46183,46184,46264,46393,46416,46423,1,80,129,23,7,130,542,552,511,511,115,494,448,462,453,15,48,104,49,58,8,25,22,25,25,-20,-70,10,-64,-69,-12,-45,32,-39,-44,-2,77,-7,13,-7 -39860,,27049,"Goodhue County, MN",County or equivalent,46183,46183,46184,46264,46393,46416,46423,1,80,129,23,7,130,542,552,511,511,115,494,448,462,453,15,48,104,49,58,8,25,22,25,25,-20,-70,10,-64,-69,-12,-45,32,-39,-44,-2,77,-7,13,-7 -39940,,,"Rexburg, ID",Micropolitan Statistical Area,50778,50778,50832,51010,50659,50484,50905,54,178,-351,-175,421,318,1220,1291,1275,1251,81,235,254,183,205,237,985,1037,1092,1046,-4,21,18,25,26,-184,-831,-1434,-1295,-658,-188,-810,-1416,-1270,-632,5,3,28,3,7 -39940,,16043,"Fremont County, ID",County or equivalent,13242,13242,13237,13126,12979,12912,12867,-5,-111,-147,-67,-45,54,203,210,186,192,41,107,110,81,94,13,96,100,105,98,0,0,-2,0,1,-16,-211,-250,-168,-140,-16,-211,-252,-168,-139,-2,4,5,-4,-4 -39940,,16065,"Madison County, ID",County or equivalent,37536,37536,37595,37884,37680,37572,38038,59,289,-204,-108,466,264,1017,1081,1089,1059,40,128,144,102,111,224,889,937,987,948,-4,21,20,25,25,-168,-620,-1184,-1127,-518,-172,-599,-1164,-1102,-493,7,-1,23,7,11 -39980,,,"Richmond, IN",Micropolitan Statistical Area,68917,69003,68959,68822,68371,67978,67671,-44,-137,-451,-393,-307,231,846,818,821,807,194,734,818,854,859,37,112,0,-33,-52,2,2,3,6,8,-84,-247,-467,-382,-220,-82,-245,-464,-376,-212,1,-4,13,16,-43 -39980,,18177,"Wayne County, IN",County or equivalent,68917,69003,68959,68822,68371,67978,67671,-44,-137,-451,-393,-307,231,846,818,821,807,194,734,818,854,859,37,112,0,-33,-52,2,2,3,6,8,-84,-247,-467,-382,-220,-82,-245,-464,-376,-212,1,-4,13,16,-43 -40080,,,"Richmond-Berea, KY",Micropolitan Statistical Area,99972,99972,100934,101940,102275,102936,104166,962,1006,335,661,1230,288,1115,1216,1198,1193,191,865,895,848,892,97,250,321,350,301,20,72,73,73,73,775,654,-47,195,840,795,726,26,268,913,70,30,-12,43,16 -40080,,21151,"Madison County, KY",County or equivalent,82916,82916,83868,84829,85206,86181,87340,952,961,377,975,1159,248,950,1006,1028,1015,170,665,678,654,658,78,285,328,374,357,20,72,73,73,73,780,583,-14,484,709,800,655,59,557,782,74,21,-10,44,20 -40080,,21203,"Rockcastle County, KY",County or equivalent,17056,17056,17066,17111,17069,16755,16826,10,45,-42,-314,71,40,165,210,170,178,21,200,217,194,234,19,-35,-7,-24,-56,0,0,0,0,0,-5,71,-33,-289,131,-5,71,-33,-289,131,-4,9,-2,-1,-4 -40100,,,"Rio Grande City, TX",Micropolitan Statistical Area,60968,60968,61178,61727,61951,62390,62955,210,549,224,439,565,332,1444,1317,1350,1343,106,388,366,388,369,226,1056,951,962,974,10,118,79,90,94,-28,-638,-816,-628,-498,-18,-520,-737,-538,-404,2,13,10,15,-5 -40100,,48427,"Starr County, TX",County or equivalent,60968,60968,61178,61727,61951,62390,62955,210,549,224,439,565,332,1444,1317,1350,1343,106,388,366,388,369,226,1056,951,962,974,10,118,79,90,94,-28,-638,-816,-628,-498,-18,-520,-737,-538,-404,2,13,10,15,-5 -40180,,,"Riverton, WY",Micropolitan Statistical Area,40123,40123,40224,40589,41125,41052,40703,101,365,536,-73,-349,165,616,613,577,583,146,381,412,468,454,19,235,201,109,129,2,8,5,7,7,81,112,320,-192,-472,83,120,325,-185,-465,-1,10,10,3,-13 -40180,,56013,"Fremont County, WY",County or equivalent,40123,40123,40224,40589,41125,41052,40703,101,365,536,-73,-349,165,616,613,577,583,146,381,412,468,454,19,235,201,109,129,2,8,5,7,7,81,112,320,-192,-472,83,120,325,-185,-465,-1,10,10,3,-13 -40260,,,"Roanoke Rapids, NC",Micropolitan Statistical Area,76790,76789,76522,76207,75234,74168,73433,-267,-315,-973,-1066,-735,199,787,799,752,765,252,917,883,962,962,-53,-130,-84,-210,-197,8,32,23,26,28,-213,-265,-927,-825,-543,-205,-233,-904,-799,-515,-9,48,15,-57,-23 -40260,,37083,"Halifax County, NC",County or equivalent,54691,54691,54515,54240,53923,53365,52970,-176,-275,-317,-558,-395,141,603,601,561,572,174,648,632,691,688,-33,-45,-31,-130,-116,8,32,25,28,30,-150,-279,-317,-457,-292,-142,-247,-292,-429,-262,-1,17,6,1,-17 -40260,,37131,"Northampton County, NC",County or equivalent,22099,22098,22007,21967,21311,20803,20463,-91,-40,-656,-508,-340,58,184,198,191,193,78,269,251,271,274,-20,-85,-53,-80,-81,0,0,-2,-2,-2,-63,14,-610,-368,-251,-63,14,-612,-370,-253,-8,31,9,-58,-6 -40300,,,"Rochelle, IL",Micropolitan Statistical Area,53497,53497,53448,53160,52839,52377,52085,-49,-288,-321,-462,-292,143,546,523,530,504,138,471,476,464,464,5,75,47,66,40,3,16,17,20,21,-61,-400,-390,-550,-323,-58,-384,-373,-530,-302,4,21,5,2,-30 -40300,,17141,"Ogle County, IL",County or equivalent,53497,53497,53448,53160,52839,52377,52085,-49,-288,-321,-462,-292,143,546,523,530,504,138,471,476,464,464,5,75,47,66,40,3,16,17,20,21,-61,-400,-390,-550,-323,-58,-384,-373,-530,-302,4,21,5,2,-30 -40460,,,"Rockingham, NC",Micropolitan Statistical Area,46639,46639,46624,46621,46381,46224,45733,-15,-3,-240,-157,-491,147,608,555,528,526,145,552,524,531,536,2,56,31,-3,-10,5,21,34,32,31,-17,-53,-312,-194,-529,-12,-32,-278,-162,-498,-5,-27,7,8,17 -40460,,37153,"Richmond County, NC",County or equivalent,46639,46639,46624,46621,46381,46224,45733,-15,-3,-240,-157,-491,147,608,555,528,526,145,552,524,531,536,2,56,31,-3,-10,5,21,34,32,31,-17,-53,-312,-194,-529,-12,-32,-278,-162,-498,-5,-27,7,8,17 -40540,,,"Rock Springs, WY",Micropolitan Statistical Area,43806,43806,43599,44048,45115,45205,45010,-207,449,1067,90,-195,174,640,595,663,612,76,251,273,270,248,98,389,322,393,364,5,10,5,9,13,-327,47,722,-239,-586,-322,57,727,-230,-573,17,3,18,-73,14 -40540,,56037,"Sweetwater County, WY",County or equivalent,43806,43806,43599,44048,45115,45205,45010,-207,449,1067,90,-195,174,640,595,663,612,76,251,273,270,248,98,389,322,393,364,5,10,5,9,13,-327,47,722,-239,-586,-322,57,727,-230,-573,17,3,18,-73,14 -40620,,,"Rolla, MO",Micropolitan Statistical Area,45156,45154,45316,45175,45183,44936,44847,162,-141,8,-247,-89,149,550,562,527,520,74,443,400,423,405,75,107,162,104,115,42,163,163,175,175,48,-401,-323,-498,-355,90,-238,-160,-323,-180,-3,-10,6,-28,-24 -40620,,29161,"Phelps County, MO",County or equivalent,45156,45154,45316,45175,45183,44936,44847,162,-141,8,-247,-89,149,550,562,527,520,74,443,400,423,405,75,107,162,104,115,42,163,163,175,175,48,-401,-323,-498,-355,90,-238,-160,-323,-180,-3,-10,6,-28,-24 -40700,,,"Roseburg, OR",Micropolitan Statistical Area,107667,107667,107651,107267,107082,106810,106972,-16,-384,-185,-272,162,254,1073,1082,1082,1081,360,1400,1399,1294,1330,-106,-327,-317,-212,-249,12,10,9,12,13,86,-12,140,-104,467,98,-2,149,-92,480,-8,-55,-17,32,-69 -40700,,41019,"Douglas County, OR",County or equivalent,107667,107667,107651,107267,107082,106810,106972,-16,-384,-185,-272,162,254,1073,1082,1082,1081,360,1400,1399,1294,1330,-106,-327,-317,-212,-249,12,10,9,12,13,86,-12,140,-104,467,98,-2,149,-92,480,-8,-55,-17,32,-69 -40740,,,"Roswell, NM",Micropolitan Statistical Area,65645,65645,65779,65726,65828,66041,65878,134,-53,102,213,-163,266,954,917,964,956,179,661,649,606,615,87,293,268,358,341,12,66,36,44,49,37,-419,-192,-101,-540,49,-353,-156,-57,-491,-2,7,-10,-88,-13 -40740,,35005,"Chaves County, NM",County or equivalent,65645,65645,65779,65726,65828,66041,65878,134,-53,102,213,-163,266,954,917,964,956,179,661,649,606,615,87,293,268,358,341,12,66,36,44,49,37,-419,-192,-101,-540,49,-353,-156,-57,-491,-2,7,-10,-88,-13 -40780,,,"Russellville, AR",Micropolitan Statistical Area,83939,83939,84269,84604,84528,84554,85152,330,335,-76,26,598,287,1122,1035,1090,1054,201,768,855,840,783,86,354,180,250,271,29,139,128,143,145,195,-139,-387,-284,126,224,0,-259,-141,271,20,-19,3,-83,56 -40780,,5115,"Pope County, AR",County or equivalent,61754,61754,62110,62662,62717,62747,63201,356,552,55,30,454,204,802,754,787,762,113,553,585,591,558,91,249,169,196,204,23,112,110,120,121,223,210,-229,-214,131,246,322,-119,-94,252,19,-19,5,-72,-2 -40780,,5149,"Yell County, AR",County or equivalent,22185,22185,22159,21942,21811,21807,21951,-26,-217,-131,-4,144,83,320,281,303,292,88,215,270,249,225,-5,105,11,54,67,6,27,18,23,24,-28,-349,-158,-70,-5,-22,-322,-140,-47,19,1,0,-2,-11,58 -40820,,,"Ruston, LA",Micropolitan Statistical Area,46735,46735,46868,47055,47146,47528,47617,133,187,91,382,89,131,573,570,589,581,68,357,308,405,395,63,216,262,184,186,68,234,235,253,254,5,-254,-410,-53,-336,73,-20,-175,200,-82,-3,-9,4,-2,-15 -40820,,22061,"Lincoln Parish, LA",County or equivalent,46735,46735,46868,47055,47146,47528,47617,133,187,91,382,89,131,573,570,589,581,68,357,308,405,395,63,216,262,184,186,68,234,235,253,254,5,-254,-410,-53,-336,73,-20,-175,200,-82,-3,-9,4,-2,-15 -40860,,,"Rutland, VT",Micropolitan Statistical Area,61642,61646,61573,61243,60875,60545,60086,-73,-330,-368,-330,-459,130,544,565,543,545,130,668,645,646,627,0,-124,-80,-103,-82,2,7,8,12,12,-78,-217,-302,-201,-353,-76,-210,-294,-189,-341,3,4,6,-38,-36 -40860,,50021,"Rutland County, VT",County or equivalent,61642,61646,61573,61243,60875,60545,60086,-73,-330,-368,-330,-459,130,544,565,543,545,130,668,645,646,627,0,-124,-80,-103,-82,2,7,8,12,12,-78,-217,-302,-201,-353,-76,-210,-294,-189,-341,3,4,6,-38,-36 -40940,,,"Safford, AZ",Micropolitan Statistical Area,37220,37220,37139,37081,36945,37435,37957,-81,-58,-136,490,522,149,559,528,621,556,46,282,269,280,267,103,277,259,341,289,1,-1,-2,1,2,-186,-333,-400,139,236,-185,-334,-402,140,238,1,-1,7,9,-5 -40940,,4009,"Graham County, AZ",County or equivalent,37220,37220,37139,37081,36945,37435,37957,-81,-58,-136,490,522,149,559,528,621,556,46,282,269,280,267,103,277,259,341,289,1,-1,-2,1,2,-186,-333,-400,139,236,-185,-334,-402,140,238,1,-1,7,9,-5 -41220,,,"St. Marys, GA",Micropolitan Statistical Area,50513,50513,50689,50332,51402,51517,52027,176,-357,1070,115,510,216,786,798,861,824,49,272,318,307,291,167,514,480,554,533,53,-1,272,128,94,-43,-874,322,-599,-126,10,-875,594,-471,-32,-1,4,-4,32,9 -41220,,13039,"Camden County, GA",County or equivalent,50513,50513,50689,50332,51402,51517,52027,176,-357,1070,115,510,216,786,798,861,824,49,272,318,307,291,167,514,480,554,533,53,-1,272,128,94,-43,-874,322,-599,-126,10,-875,594,-471,-32,-1,4,-4,32,9 -41400,,,"Salem, OH",Micropolitan Statistical Area,107841,107841,107843,107260,106438,105885,105686,2,-583,-822,-553,-199,273,1083,1081,1108,1095,261,1197,1185,1141,1140,12,-114,-104,-33,-45,10,27,21,26,26,-14,-468,-749,-518,-117,-4,-441,-728,-492,-91,-6,-28,10,-28,-63 -41400,,39029,"Columbiana County, OH",County or equivalent,107841,107841,107843,107260,106438,105885,105686,2,-583,-822,-553,-199,273,1083,1081,1108,1095,261,1197,1185,1141,1140,12,-114,-104,-33,-45,10,27,21,26,26,-14,-468,-749,-518,-117,-4,-441,-728,-492,-91,-6,-28,10,-28,-63 -41460,,,"Salina, KS",Micropolitan Statistical Area,61697,61697,61851,61818,61951,61901,61820,154,-33,133,-50,-81,210,858,826,809,822,95,629,617,505,515,115,229,209,304,307,24,84,84,90,91,18,-322,-159,-390,-473,42,-238,-75,-300,-382,-3,-24,-1,-54,-6 -41460,,20143,"Ottawa County, KS",County or equivalent,6091,6091,6093,6085,6061,6071,6065,2,-8,-24,10,-6,17,69,52,62,65,6,76,85,36,55,11,-7,-33,26,10,0,2,2,2,2,-10,-3,7,3,-20,-10,-1,9,5,-18,1,0,0,-21,2 -41460,,20169,"Saline County, KS",County or equivalent,55606,55606,55758,55733,55890,55830,55755,152,-25,157,-60,-75,193,789,774,747,757,89,553,532,469,460,104,236,242,278,297,24,82,82,88,89,28,-319,-166,-393,-453,52,-237,-84,-305,-364,-4,-24,-1,-33,-8 -41760,,,"Sandpoint, ID",Micropolitan Statistical Area,40877,40877,40927,40831,40447,40703,41585,50,-96,-384,256,882,107,391,379,397,403,95,378,423,372,368,12,13,-44,25,35,2,10,12,12,12,39,-143,-362,177,773,41,-133,-350,189,785,-3,24,10,42,62 -41760,,16017,"Bonner County, ID",County or equivalent,40877,40877,40927,40831,40447,40703,41585,50,-96,-384,256,882,107,391,379,397,403,95,378,423,372,368,12,13,-44,25,35,2,10,12,12,12,39,-143,-362,177,773,41,-133,-350,189,785,-3,24,10,42,62 -41780,,,"Sandusky, OH",Micropolitan Statistical Area,77079,77079,77013,76662,76442,76134,75828,-66,-351,-220,-308,-306,191,789,758,793,783,259,894,910,851,870,-68,-105,-152,-58,-87,6,25,23,24,25,1,-221,-86,-311,-220,7,-196,-63,-287,-195,-5,-50,-5,37,-24 -41780,,39043,"Erie County, OH",County or equivalent,77079,77079,77013,76662,76442,76134,75828,-66,-351,-220,-308,-306,191,789,758,793,783,259,894,910,851,870,-68,-105,-152,-58,-87,6,25,23,24,25,1,-221,-86,-311,-220,7,-196,-63,-287,-195,-5,-50,-5,37,-24 -41820,,,"Sanford, NC",Micropolitan Statistical Area,57866,57866,57896,58557,59368,59997,59662,30,661,811,629,-335,235,839,807,810,827,91,547,508,533,510,144,292,299,277,317,16,69,83,78,77,-124,317,431,271,-703,-108,386,514,349,-626,-6,-17,-2,3,-26 -41820,,37105,"Lee County, NC",County or equivalent,57866,57866,57896,58557,59368,59997,59662,30,661,811,629,-335,235,839,807,810,827,91,547,508,533,510,144,292,299,277,317,16,69,83,78,77,-124,317,431,271,-703,-108,386,514,349,-626,-6,-17,-2,3,-26 -42300,,,"Sault Ste. Marie, MI",Micropolitan Statistical Area,38520,38673,38598,38897,38996,38679,38321,-75,299,99,-317,-358,83,379,348,346,344,96,364,365,319,355,-13,15,-17,27,-11,6,46,58,53,50,-70,237,58,-405,-434,-64,283,116,-352,-384,2,1,0,8,37 -42300,,26033,"Chippewa County, MI",County or equivalent,38520,38673,38598,38897,38996,38679,38321,-75,299,99,-317,-358,83,379,348,346,344,96,364,365,319,355,-13,15,-17,27,-11,6,46,58,53,50,-70,237,58,-405,-434,-64,283,116,-352,-384,2,1,0,8,37 -42380,,,"Sayre, PA",Micropolitan Statistical Area,62622,62622,62588,63007,62813,62356,61784,-34,419,-194,-457,-572,154,721,732,763,739,159,717,623,667,702,-5,4,109,96,37,2,24,22,24,24,-23,390,-314,-562,-614,-21,414,-292,-538,-590,-8,1,-11,-15,-19 -42380,,42015,"Bradford County, PA",County or equivalent,62622,62622,62588,63007,62813,62356,61784,-34,419,-194,-457,-572,154,721,732,763,739,159,717,623,667,702,-5,4,109,96,37,2,24,22,24,24,-23,390,-314,-562,-614,-21,414,-292,-538,-590,-8,1,-11,-15,-19 -42420,,,"Scottsbluff, NE",Micropolitan Statistical Area,38971,38971,39070,38991,38996,38966,38532,99,-79,5,-30,-434,143,547,483,512,489,115,457,424,378,400,28,90,59,134,89,3,16,14,15,15,67,-216,-69,-131,-560,70,-200,-55,-116,-545,1,31,1,-48,22 -42420,,31007,"Banner County, NE",County or equivalent,690,690,698,741,773,777,764,8,43,32,4,-13,3,4,8,4,7,1,6,2,1,4,2,-2,6,3,3,1,5,5,5,5,5,4,20,-3,-31,6,9,25,2,-26,0,36,1,-1,10 -42420,,31157,"Scotts Bluff County, NE",County or equivalent,36970,36970,37060,36924,36902,36870,36465,90,-136,-22,-32,-405,139,533,466,499,474,113,443,417,372,390,26,90,49,127,84,2,11,9,10,10,61,-233,-80,-132,-499,63,-222,-71,-122,-489,1,-4,0,-37,0 -42420,,31165,"Sioux County, NE",County or equivalent,1311,1311,1312,1326,1321,1319,1303,1,14,-5,-2,-16,1,10,9,9,8,1,8,5,5,6,0,2,4,4,2,0,0,0,0,0,1,13,-9,4,-30,1,13,-9,4,-30,0,-1,0,-10,12 -42460,,,"Scottsboro, AL",Micropolitan Statistical Area,53227,53226,53159,53244,53048,52944,52665,-67,85,-196,-104,-279,125,573,600,570,574,131,647,693,655,642,-6,-74,-93,-85,-68,6,34,36,39,39,-66,111,-135,-46,-224,-60,145,-99,-7,-185,-1,14,-4,-12,-26 -42460,,1071,"Jackson County, AL",County or equivalent,53227,53226,53159,53244,53048,52944,52665,-67,85,-196,-104,-279,125,573,600,570,574,131,647,693,655,642,-6,-74,-93,-85,-68,6,34,36,39,39,-66,111,-135,-46,-224,-60,145,-99,-7,-185,-1,14,-4,-12,-26 -42620,,,"Searcy, AR",Micropolitan Statistical Area,77076,77076,77339,78132,78652,78661,78592,263,793,520,9,-69,254,946,995,1052,1005,136,806,829,789,776,118,140,166,263,229,7,49,47,54,55,131,590,305,-350,-320,138,639,352,-296,-265,7,14,2,42,-33 -42620,,5145,"White County, AR",County or equivalent,77076,77076,77339,78132,78652,78661,78592,263,793,520,9,-69,254,946,995,1052,1005,136,806,829,789,776,118,140,166,263,229,7,49,47,54,55,131,590,305,-350,-320,138,639,352,-296,-265,7,14,2,42,-33 -42740,,,"Sedalia, MO",Micropolitan Statistical Area,42201,42201,42244,42118,42279,42199,42225,43,-126,161,-80,26,143,600,578,576,571,116,459,395,395,387,27,141,183,181,184,9,45,46,53,55,10,-292,-66,-273,-185,19,-247,-20,-220,-130,-3,-20,-2,-41,-28 -42740,,29159,"Pettis County, MO",County or equivalent,42201,42201,42244,42118,42279,42199,42225,43,-126,161,-80,26,143,600,578,576,571,116,459,395,395,387,27,141,183,181,184,9,45,46,53,55,10,-292,-66,-273,-185,19,-247,-20,-220,-130,-3,-20,-2,-41,-28 -42780,,,"Selinsgrove, PA",Micropolitan Statistical Area,39702,39702,39741,39659,39796,40093,40323,39,-82,137,297,230,104,406,432,489,480,111,327,327,359,346,-7,79,105,130,134,4,35,36,38,38,51,-236,1,164,89,55,-201,37,202,127,-9,40,-5,-35,-31 -42780,,42109,"Snyder County, PA",County or equivalent,39702,39702,39741,39659,39796,40093,40323,39,-82,137,297,230,104,406,432,489,480,111,327,327,359,346,-7,79,105,130,134,4,35,36,38,38,51,-236,1,164,89,55,-201,37,202,127,-9,40,-5,-35,-31 -42820,,,"Selma, AL",Micropolitan Statistical Area,43820,43820,43836,43225,42839,42102,41711,16,-611,-386,-737,-391,165,583,585,530,539,76,544,505,544,530,89,39,80,-14,9,3,11,12,16,16,-73,-682,-486,-721,-404,-70,-671,-474,-705,-388,-3,21,8,-18,-12 -42820,,1047,"Dallas County, AL",County or equivalent,43820,43820,43836,43225,42839,42102,41711,16,-611,-386,-737,-391,165,583,585,530,539,76,544,505,544,530,89,39,80,-14,9,3,11,12,16,16,-73,-682,-486,-721,-404,-70,-671,-474,-705,-388,-3,21,8,-18,-12 -42860,,,"Seneca, SC",Micropolitan Statistical Area,74273,74275,74364,74226,74583,74913,75192,89,-138,357,330,279,212,801,809,772,770,226,795,812,860,854,-14,6,-3,-88,-84,5,7,6,13,14,99,-115,347,400,373,104,-108,353,413,387,-1,-36,7,5,-24 -42860,,45073,"Oconee County, SC",County or equivalent,74273,74275,74364,74226,74583,74913,75192,89,-138,357,330,279,212,801,809,772,770,226,795,812,860,854,-14,6,-3,-88,-84,5,7,6,13,14,99,-115,347,400,373,104,-108,353,413,387,-1,-36,7,5,-24 -42900,,,"Seneca Falls, NY",Micropolitan Statistical Area,35251,35244,35247,35377,35381,35273,34884,3,130,4,-108,-389,117,367,382,348,343,66,314,332,320,312,51,53,50,28,31,5,17,17,18,18,-46,62,-55,-128,-436,-41,79,-38,-110,-418,-7,-2,-8,-26,-2 -42900,,36099,"Seneca County, NY",County or equivalent,35251,35244,35247,35377,35381,35273,34884,3,130,4,-108,-389,117,367,382,348,343,66,314,332,320,312,51,53,50,28,31,5,17,17,18,18,-46,62,-55,-128,-436,-41,79,-38,-110,-418,-7,-2,-8,-26,-2 -42940,,,"Sevierville, TN",Micropolitan Statistical Area,89889,89876,90135,91336,92532,93693,95110,259,1201,1196,1161,1417,263,1044,1021,1026,1035,246,886,864,933,913,17,158,157,93,122,57,203,202,223,224,189,834,830,753,1017,246,1037,1032,976,1241,-4,6,7,92,54 -42940,,47155,"Sevier County, TN",County or equivalent,89889,89876,90135,91336,92532,93693,95110,259,1201,1196,1161,1417,263,1044,1021,1026,1035,246,886,864,933,913,17,158,157,93,122,57,203,202,223,224,189,834,830,753,1017,246,1037,1032,976,1241,-4,6,7,92,54 -42980,,,"Seymour, IN",Micropolitan Statistical Area,42376,42380,42584,42920,42990,43436,43705,204,336,70,446,269,135,579,520,593,587,86,449,447,437,418,49,130,73,156,169,17,66,60,66,67,130,145,-60,193,39,147,211,0,259,106,8,-5,-3,31,-6 -42980,,18071,"Jackson County, IN",County or equivalent,42376,42380,42584,42920,42990,43436,43705,204,336,70,446,269,135,579,520,593,587,86,449,447,437,418,49,130,73,156,169,17,66,60,66,67,130,145,-60,193,39,147,211,0,259,106,8,-5,-3,31,-6 -43020,,,"Shawano, WI",Micropolitan Statistical Area,46181,46187,46190,46150,45976,45976,46101,3,-40,-174,0,125,143,533,527,543,523,156,501,441,449,450,-13,32,86,94,73,7,32,37,42,42,12,-130,-294,-123,8,19,-98,-257,-81,50,-3,26,-3,-13,2 -43020,,55078,"Menominee County, WI",County or equivalent,4232,4232,4257,4372,4373,4382,4522,25,115,1,9,140,23,101,100,87,93,12,39,35,46,63,11,62,65,41,30,3,18,20,22,22,11,33,-86,-50,73,14,51,-66,-28,95,0,2,2,-4,15 -43020,,55115,"Shawano County, WI",County or equivalent,41949,41955,41933,41778,41603,41594,41579,-22,-155,-175,-9,-15,120,432,427,456,430,144,462,406,403,387,-24,-30,21,53,43,4,14,17,20,20,1,-163,-208,-73,-65,5,-149,-191,-53,-45,-3,24,-5,-9,-13 -43060,,,"Shawnee, OK",Micropolitan Statistical Area,69442,69442,69647,70148,70703,71190,71811,205,501,555,487,621,243,1012,911,894,900,178,781,770,767,786,65,231,141,127,114,4,35,36,38,39,135,229,385,322,485,139,264,421,360,524,1,6,-7,0,-17 -43060,,40125,"Pottawatomie County, OK",County or equivalent,69442,69442,69647,70148,70703,71190,71811,205,501,555,487,621,243,1012,911,894,900,178,781,770,767,786,65,231,141,127,114,4,35,36,38,39,135,229,385,322,485,139,264,421,360,524,1,6,-7,0,-17 -43140,,,"Shelby, NC",Micropolitan Statistical Area,98078,98083,98039,97614,97515,97077,97076,-44,-425,-99,-438,-1,304,1112,1083,1077,1081,301,1065,1118,1141,1124,3,47,-35,-64,-43,9,52,49,50,50,-55,-535,-114,-427,53,-46,-483,-65,-377,103,-1,11,1,3,-61 -43140,,37045,"Cleveland County, NC",County or equivalent,98078,98083,98039,97614,97515,97077,97076,-44,-425,-99,-438,-1,304,1112,1083,1077,1081,301,1065,1118,1141,1124,3,47,-35,-64,-43,9,52,49,50,50,-55,-535,-114,-427,53,-46,-483,-65,-377,103,-1,11,1,3,-61 -43180,,,"Shelbyville, TN",Micropolitan Statistical Area,45058,45058,45112,45313,45400,45849,46627,54,201,87,449,778,169,616,600,624,629,129,436,427,424,415,40,180,173,200,214,20,105,99,118,123,1,-101,-190,123,448,21,4,-91,241,571,-7,17,5,8,-7 -43180,,47003,"Bedford County, TN",County or equivalent,45058,45058,45112,45313,45400,45849,46627,54,201,87,449,778,169,616,600,624,629,129,436,427,424,415,40,180,173,200,214,20,105,99,118,123,1,-101,-190,123,448,21,4,-91,241,571,-7,17,5,8,-7 -43220,,,"Shelton, WA",Micropolitan Statistical Area,60699,60699,60750,60905,60751,60521,60711,51,155,-154,-230,190,159,605,653,657,647,164,624,638,599,611,-5,-19,15,58,36,12,66,71,80,80,45,136,-240,-312,125,57,202,-169,-232,205,-1,-28,0,-56,-51 -43220,,53045,"Mason County, WA",County or equivalent,60699,60699,60750,60905,60751,60521,60711,51,155,-154,-230,190,159,605,653,657,647,164,624,638,599,611,-5,-19,15,58,36,12,66,71,80,80,45,136,-240,-312,125,57,202,-169,-232,205,-1,-28,0,-56,-51 -43260,,,"Sheridan, WY",Micropolitan Statistical Area,29116,29116,29148,29275,29598,29836,30032,32,127,323,238,196,89,342,332,329,329,84,298,286,281,306,5,44,46,48,23,10,34,31,33,33,19,28,249,134,107,29,62,280,167,140,-2,21,-3,23,33 -43260,,56033,"Sheridan County, WY",County or equivalent,29116,29116,29148,29275,29598,29836,30032,32,127,323,238,196,89,342,332,329,329,84,298,286,281,306,5,44,46,48,23,10,34,31,33,33,19,28,249,134,107,29,62,280,167,140,-2,21,-3,23,33 -43320,,,"Show Low, AZ",Micropolitan Statistical Area,107449,107494,107649,107374,106973,107346,108101,155,-275,-401,373,755,424,1739,1607,1606,1635,202,882,916,981,960,222,857,691,625,675,4,38,31,36,39,-64,-1188,-1142,-267,48,-60,-1150,-1111,-231,87,-7,18,19,-21,-7 -43320,,4017,"Navajo County, AZ",County or equivalent,107449,107494,107649,107374,106973,107346,108101,155,-275,-401,373,755,424,1739,1607,1606,1635,202,882,916,981,960,222,857,691,625,675,4,38,31,36,39,-64,-1188,-1142,-267,48,-60,-1150,-1111,-231,87,-7,18,19,-21,-7 -43380,,,"Sidney, OH",Micropolitan Statistical Area,49423,49423,49348,49270,49142,49112,48951,-75,-78,-128,-30,-161,172,628,630,612,617,108,434,396,413,405,64,194,234,199,212,8,36,36,43,43,-152,-314,-406,-254,-395,-144,-278,-370,-211,-352,5,6,8,-18,-21 -43380,,39149,"Shelby County, OH",County or equivalent,49423,49423,49348,49270,49142,49112,48951,-75,-78,-128,-30,-161,172,628,630,612,617,108,434,396,413,405,64,194,234,199,212,8,36,36,43,43,-152,-314,-406,-254,-395,-144,-278,-370,-211,-352,5,6,8,-18,-21 -43460,,,"Sikeston, MO",Micropolitan Statistical Area,39191,39187,39259,39154,39149,39221,38903,72,-105,-5,72,-318,136,551,501,528,514,76,416,409,425,440,60,135,92,103,74,5,14,16,17,17,10,-239,-112,-35,-401,15,-225,-96,-18,-384,-3,-15,-1,-13,-8 -43460,,29201,"Scott County, MO",County or equivalent,39191,39187,39259,39154,39149,39221,38903,72,-105,-5,72,-318,136,551,501,528,514,76,416,409,425,440,60,135,92,103,74,5,14,16,17,17,10,-239,-112,-35,-401,15,-225,-96,-18,-384,-3,-15,-1,-13,-8 -43500,,,"Silver City, NM",Micropolitan Statistical Area,29514,29514,29383,29385,29339,29310,29096,-131,2,-46,-29,-214,81,319,326,308,323,113,324,375,312,322,-32,-5,-49,-4,1,12,47,48,52,52,-116,-35,-38,-64,-282,-104,12,10,-12,-230,5,-5,-7,-13,15 -43500,,35017,"Grant County, NM",County or equivalent,29514,29514,29383,29385,29339,29310,29096,-131,2,-46,-29,-214,81,319,326,308,323,113,324,375,312,322,-32,-5,-49,-4,1,12,47,48,52,52,-116,-35,-38,-64,-282,-104,12,10,-12,-230,5,-5,-7,-13,15 -43660,,,"Snyder, TX",Micropolitan Statistical Area,16921,16921,16954,16887,17106,17267,17328,33,-67,219,161,61,73,273,254,254,268,52,167,191,148,160,21,106,63,106,108,1,0,0,0,2,11,-177,158,63,-54,12,-177,158,63,-52,0,4,-2,-8,5 -43660,,48415,"Scurry County, TX",County or equivalent,16921,16921,16954,16887,17106,17267,17328,33,-67,219,161,61,73,273,254,254,268,52,167,191,148,160,21,106,63,106,108,1,0,0,0,2,11,-177,158,63,-54,12,-177,158,63,-52,0,4,-2,-8,5 -43700,,,"Somerset, KY",Micropolitan Statistical Area,63063,63063,63177,63386,63448,63688,63825,114,209,62,240,137,177,711,761,756,730,163,704,779,779,751,14,7,-18,-23,-21,3,16,14,14,15,96,184,71,244,148,99,200,85,258,163,1,2,-5,5,-5 -43700,,21199,"Pulaski County, KY",County or equivalent,63063,63063,63177,63386,63448,63688,63825,114,209,62,240,137,177,711,761,756,730,163,704,779,779,751,14,7,-18,-23,-21,3,16,14,14,15,96,184,71,244,148,99,200,85,258,163,1,2,-5,5,-5 -43740,,,"Somerset, PA",Micropolitan Statistical Area,77742,77748,77693,77313,77110,76722,76218,-55,-380,-203,-388,-504,159,647,702,685,679,172,1000,862,913,934,-13,-353,-160,-228,-255,2,11,12,17,17,-39,-41,-48,-140,-208,-37,-30,-36,-123,-191,-5,3,-7,-37,-58 -43740,,42111,"Somerset County, PA",County or equivalent,77742,77748,77693,77313,77110,76722,76218,-55,-380,-203,-388,-504,159,647,702,685,679,172,1000,862,913,934,-13,-353,-160,-228,-255,2,11,12,17,17,-39,-41,-48,-140,-208,-37,-30,-36,-123,-191,-5,3,-7,-37,-58 -43760,,,"Sonora, CA",Micropolitan Statistical Area,55365,55365,55168,54724,54100,53911,53831,-197,-444,-624,-189,-80,115,443,461,451,465,120,613,630,556,555,-5,-170,-169,-105,-90,9,46,43,50,53,-204,-334,-495,-97,-25,-195,-288,-452,-47,28,3,14,-3,-37,-18 -43760,,6109,"Tuolumne County, CA",County or equivalent,55365,55365,55168,54724,54100,53911,53831,-197,-444,-624,-189,-80,115,443,461,451,465,120,613,630,556,555,-5,-170,-169,-105,-90,9,46,43,50,53,-204,-334,-495,-97,-25,-195,-288,-452,-47,28,3,14,-3,-37,-18 -43940,,,"Spearfish, SD",Micropolitan Statistical Area,24097,24097,24170,24303,24360,24899,24657,73,133,57,539,-242,48,242,219,234,246,31,209,229,225,203,17,33,-10,9,43,1,0,0,1,1,57,99,69,497,-295,58,99,69,498,-294,-2,1,-2,32,9 -43940,,46081,"Lawrence County, SD",County or equivalent,24097,24097,24170,24303,24360,24899,24657,73,133,57,539,-242,48,242,219,234,246,31,209,229,225,203,17,33,-10,9,43,1,0,0,1,1,57,99,69,497,-295,58,99,69,498,-294,-2,1,-2,32,9 -43980,,,"Spencer, IA",Micropolitan Statistical Area,16667,16667,16624,16601,16563,16474,16515,-43,-23,-38,-89,41,46,198,179,210,194,59,194,193,188,173,-13,4,-14,22,21,0,1,1,2,2,-30,-22,-23,-130,32,-30,-21,-22,-128,34,0,-6,-2,17,-14 -43980,,19041,"Clay County, IA",County or equivalent,16667,16667,16624,16601,16563,16474,16515,-43,-23,-38,-89,41,46,198,179,210,194,59,194,193,188,173,-13,4,-14,22,21,0,1,1,2,2,-30,-22,-23,-130,32,-30,-21,-22,-128,34,0,-6,-2,17,-14 -44020,,,"Spirit Lake, IA",Micropolitan Statistical Area,16667,16667,16658,16879,16965,16949,16935,-9,221,86,-16,-14,37,140,180,165,161,51,199,186,208,190,-14,-59,-6,-43,-29,0,3,3,3,3,6,261,88,48,19,6,264,91,51,22,-1,16,1,-24,-7 -44020,,19059,"Dickinson County, IA",County or equivalent,16667,16667,16658,16879,16965,16949,16935,-9,221,86,-16,-14,37,140,180,165,161,51,199,186,208,190,-14,-59,-6,-43,-29,0,3,3,3,3,6,261,88,48,19,6,264,91,51,22,-1,16,1,-24,-7 -44260,,,"Starkville, MS",Micropolitan Statistical Area,47671,47671,47689,47853,48956,49284,49414,18,164,1103,328,130,123,559,563,573,567,33,291,284,281,355,90,268,279,292,212,26,134,137,153,153,-89,-293,664,-84,-262,-63,-159,801,69,-109,-9,55,23,-33,27 -44260,,28105,"Oktibbeha County, MS",County or equivalent,47671,47671,47689,47853,48956,49284,49414,18,164,1103,328,130,123,559,563,573,567,33,291,284,281,355,90,268,279,292,212,26,134,137,153,153,-89,-293,664,-84,-262,-63,-159,801,69,-109,-9,55,23,-33,27 -44340,,,"Statesboro, GA",Micropolitan Statistical Area,70217,70217,70638,72842,72824,71308,72087,421,2204,-18,-1516,779,188,842,811,844,775,146,490,465,476,488,42,352,346,368,287,29,125,121,133,134,330,1698,-498,-2106,344,359,1823,-377,-1973,478,20,29,13,89,14 -44340,,13031,"Bulloch County, GA",County or equivalent,70217,70217,70638,72842,72824,71308,72087,421,2204,-18,-1516,779,188,842,811,844,775,146,490,465,476,488,42,352,346,368,287,29,125,121,133,134,330,1698,-498,-2106,344,359,1823,-377,-1973,478,20,29,13,89,14 -44460,,,"Steamboat Springs, CO",Micropolitan Statistical Area,23509,23509,23426,23182,23207,23458,23865,-83,-244,25,251,407,54,227,215,207,196,33,88,92,83,102,21,139,123,124,94,5,20,20,23,23,-115,-416,-120,95,283,-110,-396,-100,118,306,6,13,2,9,7 -44460,,8107,"Routt County, CO",County or equivalent,23509,23509,23426,23182,23207,23458,23865,-83,-244,25,251,407,54,227,215,207,196,33,88,92,83,102,21,139,123,124,94,5,20,20,23,23,-115,-416,-120,95,283,-110,-396,-100,118,306,6,13,2,9,7 -44500,,,"Stephenville, TX",Micropolitan Statistical Area,37890,37890,37878,38972,39456,40003,40147,-12,1094,484,547,144,110,456,490,503,484,80,321,308,260,315,30,135,182,243,169,3,21,15,19,22,-41,845,285,266,-49,-38,866,300,285,-27,-4,93,2,19,2 -44500,,48143,"Erath County, TX",County or equivalent,37890,37890,37878,38972,39456,40003,40147,-12,1094,484,547,144,110,456,490,503,484,80,321,308,260,315,30,135,182,243,169,3,21,15,19,22,-41,845,285,266,-49,-38,866,300,285,-27,-4,93,2,19,2 -44540,,,"Sterling, CO",Micropolitan Statistical Area,22709,22709,22789,22687,22613,22407,22524,80,-102,-74,-206,117,50,212,223,251,245,29,185,184,212,204,21,27,39,39,41,-2,0,1,10,10,60,-134,-107,-276,67,58,-134,-106,-266,77,1,5,-7,21,-1 -44540,,8075,"Logan County, CO",County or equivalent,22709,22709,22789,22687,22613,22407,22524,80,-102,-74,-206,117,50,212,223,251,245,29,185,184,212,204,21,27,39,39,41,-2,0,1,10,10,60,-134,-107,-276,67,58,-134,-106,-266,77,1,5,-7,21,-1 -44580,,,"Sterling, IL",Micropolitan Statistical Area,58498,58498,58472,58151,57627,57274,56876,-26,-321,-524,-353,-398,170,608,556,577,605,122,644,692,625,605,48,-36,-136,-48,0,3,14,15,14,14,-80,-276,-412,-277,-378,-77,-262,-397,-263,-364,3,-23,9,-42,-34 -44580,,17195,"Whiteside County, IL",County or equivalent,58498,58498,58472,58151,57627,57274,56876,-26,-321,-524,-353,-398,170,608,556,577,605,122,644,692,625,605,48,-36,-136,-48,0,3,14,15,14,14,-80,-276,-412,-277,-378,-77,-262,-397,-263,-364,3,-23,9,-42,-34 -44620,,,"Stevens Point, WI",Micropolitan Statistical Area,70019,70019,69977,70156,70481,70587,70482,-42,179,325,106,-105,179,722,717,665,679,151,512,486,486,483,28,210,231,179,196,11,35,38,45,45,-74,-91,60,-108,-324,-63,-56,98,-63,-279,-7,25,-4,-10,-22 -44620,,55097,"Portage County, WI",County or equivalent,70019,70019,69977,70156,70481,70587,70482,-42,179,325,106,-105,179,722,717,665,679,151,512,486,486,483,28,210,231,179,196,11,35,38,45,45,-74,-91,60,-108,-324,-63,-56,98,-63,-279,-7,25,-4,-10,-22 -44660,,,"Stillwater, OK",Micropolitan Statistical Area,77350,77350,77444,77970,78479,79457,80264,94,526,509,978,807,214,959,883,934,914,128,542,568,525,540,86,417,315,409,374,75,357,368,399,400,-68,-232,-176,148,58,7,125,192,547,458,1,-16,2,22,-25 -44660,,40119,"Payne County, OK",County or equivalent,77350,77350,77444,77970,78479,79457,80264,94,526,509,978,807,214,959,883,934,914,128,542,568,525,540,86,417,315,409,374,75,357,368,399,400,-68,-232,-176,148,58,7,125,192,547,458,1,-16,2,22,-25 -44740,,,"Storm Lake, IA",Micropolitan Statistical Area,20260,20260,20328,20264,20548,20584,20578,68,-64,284,36,-6,90,295,322,338,345,34,228,168,169,161,56,67,154,169,184,9,67,58,66,69,8,-217,75,-169,-260,17,-150,133,-103,-191,-5,19,-3,-30,1 -44740,,19021,"Buena Vista County, IA",County or equivalent,20260,20260,20328,20264,20548,20584,20578,68,-64,284,36,-6,90,295,322,338,345,34,228,168,169,161,56,67,154,169,184,9,67,58,66,69,8,-217,75,-169,-260,17,-150,133,-103,-191,-5,19,-3,-30,1 -44780,,,"Sturgis, MI",Micropolitan Statistical Area,61295,61295,61259,61043,60902,60841,60946,-36,-216,-141,-61,105,189,843,839,758,791,123,626,586,630,577,66,217,253,128,214,4,36,35,35,36,-110,-451,-434,-252,-104,-106,-415,-399,-217,-68,4,-18,5,28,-41 -44780,,26149,"St. Joseph County, MI",County or equivalent,61295,61295,61259,61043,60902,60841,60946,-36,-216,-141,-61,105,189,843,839,758,791,123,626,586,630,577,66,217,253,128,214,4,36,35,35,36,-110,-451,-434,-252,-104,-106,-415,-399,-217,-68,4,-18,5,28,-41 -44860,,,"Sulphur Springs, TX",Micropolitan Statistical Area,35161,35161,35215,35333,35420,35499,35921,54,118,87,79,422,136,498,462,446,448,124,368,361,358,354,12,130,101,88,94,0,8,10,12,15,42,-40,-25,-29,290,42,-32,-15,-17,305,0,20,1,8,23 -44860,,48223,"Hopkins County, TX",County or equivalent,35161,35161,35215,35333,35420,35499,35921,54,118,87,79,422,136,498,462,446,448,124,368,361,358,354,12,130,101,88,94,0,8,10,12,15,42,-40,-25,-29,290,42,-32,-15,-17,305,0,20,1,8,23 -44900,,,"Summerville, GA",Micropolitan Statistical Area,26015,26015,25980,25705,25676,25120,24939,-35,-275,-29,-556,-181,71,303,292,255,278,96,266,316,314,287,-25,37,-24,-59,-9,5,15,18,19,19,-14,-321,-23,-523,-184,-9,-306,-5,-504,-165,-1,-6,0,7,-7 -44900,,13055,"Chattooga County, GA",County or equivalent,26015,26015,25980,25705,25676,25120,24939,-35,-275,-29,-556,-181,71,303,292,255,278,96,266,316,314,287,-25,37,-24,-59,-9,5,15,18,19,19,-14,-321,-23,-523,-184,-9,-306,-5,-504,-165,-1,-6,0,7,-7 -44920,,,"Summit Park, UT",Micropolitan Statistical Area,36324,36324,36503,37429,37893,38453,39105,179,926,464,560,652,107,473,433,425,434,46,128,116,135,135,61,345,317,290,299,17,71,67,76,77,96,493,87,238,285,113,564,154,314,362,5,17,-7,-44,-9 -44920,,49043,"Summit County, UT",County or equivalent,36324,36324,36503,37429,37893,38453,39105,179,926,464,560,652,107,473,433,425,434,46,128,116,135,135,61,345,317,290,299,17,71,67,76,77,96,493,87,238,285,113,564,154,314,362,5,17,-7,-44,-9 -44980,,,"Sunbury, PA",Micropolitan Statistical Area,94528,94517,94351,94480,94556,94138,93944,-166,129,76,-418,-194,225,1004,923,1016,994,309,1233,1144,1113,1080,-84,-229,-221,-97,-86,9,69,68,68,68,-90,322,231,-349,-97,-81,391,299,-281,-29,-1,-33,-2,-40,-79 -44980,,42097,"Northumberland County, PA",County or equivalent,94528,94517,94351,94480,94556,94138,93944,-166,129,76,-418,-194,225,1004,923,1016,994,309,1233,1144,1113,1080,-84,-229,-221,-97,-86,9,69,68,68,68,-90,322,231,-349,-97,-81,391,299,-281,-29,-1,-33,-2,-40,-79 -45000,,,"Susanville, CA",Micropolitan Statistical Area,34895,34895,34841,34297,33679,32212,31749,-54,-544,-618,-1467,-463,91,299,303,291,286,92,199,269,198,211,-1,100,34,93,75,3,32,30,34,34,-56,-685,-688,-1598,-577,-53,-653,-658,-1564,-543,0,9,6,4,5 -45000,,6035,"Lassen County, CA",County or equivalent,34895,34895,34841,34297,33679,32212,31749,-54,-544,-618,-1467,-463,91,299,303,291,286,92,199,269,198,211,-1,100,34,93,75,3,32,30,34,34,-56,-685,-688,-1598,-577,-53,-653,-658,-1564,-543,0,9,6,4,5 -45020,,,"Sweetwater, TX",Micropolitan Statistical Area,15216,15217,15240,15121,14877,15077,15093,23,-119,-244,200,16,47,172,201,206,207,23,202,172,170,180,24,-30,29,36,27,0,7,4,4,4,1,-96,-279,145,-33,1,-89,-275,149,-29,-2,0,2,15,18 -45020,,48353,"Nolan County, TX",County or equivalent,15216,15217,15240,15121,14877,15077,15093,23,-119,-244,200,16,47,172,201,206,207,23,202,172,170,180,24,-30,29,36,27,0,7,4,4,4,1,-96,-279,145,-33,1,-89,-275,149,-29,-2,0,2,15,18 -45140,,,"Tahlequah, OK",Micropolitan Statistical Area,46987,46985,47138,47764,48085,47973,48341,153,626,321,-112,368,170,635,648,592,595,119,459,448,518,464,51,176,200,74,131,2,10,10,11,12,100,409,110,-190,226,102,419,120,-179,238,0,31,1,-7,-1 -45140,,40021,"Cherokee County, OK",County or equivalent,46987,46985,47138,47764,48085,47973,48341,153,626,321,-112,368,170,635,648,592,595,119,459,448,518,464,51,176,200,74,131,2,10,10,11,12,100,409,110,-190,226,102,419,120,-179,238,0,31,1,-7,-1 -45180,,,"Talladega-Sylacauga, AL",Micropolitan Statistical Area,93830,94049,93824,93125,93039,92404,92208,-225,-699,-86,-635,-196,221,948,1003,961,969,211,1091,1086,1146,1135,10,-143,-83,-185,-166,-3,3,0,5,7,-224,-588,8,-352,-13,-227,-585,8,-347,-6,-8,29,-11,-103,-24 -45180,,1037,"Coosa County, AL",County or equivalent,11539,11758,11757,11344,11181,11065,10886,-1,-413,-163,-116,-179,20,95,107,89,93,11,163,140,100,106,9,-68,-33,-11,-13,-1,0,0,1,1,-5,-397,-127,-51,-177,-6,-397,-127,-50,-176,-4,52,-3,-55,10 -45180,,1121,"Talladega County, AL",County or equivalent,82291,82291,82067,81781,81858,81339,81322,-224,-286,77,-519,-17,201,853,896,872,876,200,928,946,1046,1029,1,-75,-50,-174,-153,-2,3,0,4,6,-219,-191,135,-301,164,-221,-188,135,-297,170,-4,-23,-8,-48,-34 -45340,,,"Taos, NM",Micropolitan Statistical Area,32937,32940,32906,32941,32817,33030,33084,-34,35,-124,213,54,79,334,321,312,316,77,250,279,273,283,2,84,42,39,33,3,20,15,17,18,-36,-84,-182,164,-5,-33,-64,-167,181,13,-3,15,1,-7,8 -45340,,35055,"Taos County, NM",County or equivalent,32937,32940,32906,32941,32817,33030,33084,-34,35,-124,213,54,79,334,321,312,316,77,250,279,273,283,2,84,42,39,33,3,20,15,17,18,-36,-84,-182,164,-5,-33,-64,-167,181,13,-3,15,1,-7,8 -45380,,,"Taylorville, IL",Micropolitan Statistical Area,34800,34800,34783,34720,34511,34171,33892,-17,-63,-209,-340,-279,88,351,379,346,346,108,417,416,388,377,-20,-66,-37,-42,-31,3,10,10,13,13,2,1,-181,-328,-240,5,11,-171,-315,-227,-2,-8,-1,17,-21 -45380,,17021,"Christian County, IL",County or equivalent,34800,34800,34783,34720,34511,34171,33892,-17,-63,-209,-340,-279,88,351,379,346,346,108,417,416,388,377,-20,-66,-37,-42,-31,3,10,10,13,13,2,1,-181,-328,-240,5,11,-171,-315,-227,-2,-8,-1,17,-21 -45520,,,"The Dalles, OR",Micropolitan Statistical Area,25213,25213,25259,25231,25457,25475,25515,46,-28,226,18,40,72,272,302,301,300,45,314,303,293,272,27,-42,-1,8,28,2,12,8,11,14,21,-2,221,-13,-2,23,10,229,-2,12,-4,4,-2,12,0 -45520,,41065,"Wasco County, OR",County or equivalent,25213,25213,25259,25231,25457,25475,25515,46,-28,226,18,40,72,272,302,301,300,45,314,303,293,272,27,-42,-1,8,28,2,12,8,11,14,21,-2,221,-13,-2,23,10,229,-2,12,-4,4,-2,12,0 -45580,,,"Thomaston, GA",Micropolitan Statistical Area,27153,27153,27067,26943,26615,26522,26256,-86,-124,-328,-93,-266,87,340,305,319,312,119,347,313,377,377,-32,-7,-8,-58,-65,5,10,7,11,11,-62,-123,-334,-52,-195,-57,-113,-327,-41,-184,3,-4,7,6,-17 -45580,,13293,"Upson County, GA",County or equivalent,27153,27153,27067,26943,26615,26522,26256,-86,-124,-328,-93,-266,87,340,305,319,312,119,347,313,377,377,-32,-7,-8,-58,-65,5,10,7,11,11,-62,-123,-334,-52,-195,-57,-113,-327,-41,-184,3,-4,7,6,-17 -45620,,,"Thomasville, GA",Micropolitan Statistical Area,44720,44719,44742,44588,44530,44848,44959,23,-154,-58,318,111,145,553,592,606,619,143,501,493,483,473,2,52,99,123,146,5,13,10,11,12,17,-220,-168,147,-58,22,-207,-158,158,-46,-1,1,1,37,11 -45620,,13275,"Thomas County, GA",County or equivalent,44720,44719,44742,44588,44530,44848,44959,23,-154,-58,318,111,145,553,592,606,619,143,501,493,483,473,2,52,99,123,146,5,13,10,11,12,17,-220,-168,147,-58,22,-207,-158,158,-46,-1,1,1,37,11 -45660,,,"Tiffin, OH",Micropolitan Statistical Area,56745,56745,56631,56420,56025,55756,55669,-114,-211,-395,-269,-87,143,602,583,525,532,156,565,624,577,549,-13,37,-41,-52,-17,9,28,30,31,31,-115,-275,-388,-296,-59,-106,-247,-358,-265,-28,5,-1,4,48,-42 -45660,,39147,"Seneca County, OH",County or equivalent,56745,56745,56631,56420,56025,55756,55669,-114,-211,-395,-269,-87,143,602,583,525,532,156,565,624,577,549,-13,37,-41,-52,-17,9,28,30,31,31,-115,-275,-388,-296,-59,-106,-247,-358,-265,-28,5,-1,4,48,-42 -45700,,,"Tifton, GA",Micropolitan Statistical Area,40118,40122,40246,41380,40994,40280,40704,124,1134,-386,-714,424,132,560,566,570,554,56,389,378,387,387,76,171,188,183,167,7,47,38,43,44,44,894,-622,-970,214,51,941,-584,-927,258,-3,22,10,30,-1 -45700,,13277,"Tift County, GA",County or equivalent,40118,40122,40246,41380,40994,40280,40704,124,1134,-386,-714,424,132,560,566,570,554,56,389,378,387,387,76,171,188,183,167,7,47,38,43,44,44,894,-622,-970,214,51,941,-584,-927,258,-3,22,10,30,-1 -45740,,,"Toccoa, GA",Micropolitan Statistical Area,26175,26175,26155,25751,25725,25595,25480,-20,-404,-26,-130,-115,71,305,313,299,328,92,323,349,348,305,-21,-18,-36,-49,23,4,19,17,18,18,-1,-433,-4,-102,-143,3,-414,13,-84,-125,-2,28,-3,3,-13 -45740,,13257,"Stephens County, GA",County or equivalent,26175,26175,26155,25751,25725,25595,25480,-20,-404,-26,-130,-115,71,305,313,299,328,92,323,349,348,305,-21,-18,-36,-49,23,4,19,17,18,18,-1,-433,-4,-102,-143,3,-414,13,-84,-125,-2,28,-3,3,-13 -45860,,,"Torrington, CT",Micropolitan Statistical Area,189927,189927,189742,188898,187415,186660,184993,-185,-844,-1483,-755,-1667,388,1555,1469,1430,1436,370,1671,1750,1795,1771,18,-116,-281,-365,-335,44,141,145,162,161,-233,-780,-1352,-502,-1444,-189,-639,-1207,-340,-1283,-14,-89,5,-50,-49 -45860,,9005,"Litchfield County, CT",County or equivalent,189927,189927,189742,188898,187415,186660,184993,-185,-844,-1483,-755,-1667,388,1555,1469,1430,1436,370,1671,1750,1795,1771,18,-116,-281,-365,-335,44,141,145,162,161,-233,-780,-1352,-502,-1444,-189,-639,-1207,-340,-1283,-14,-89,5,-50,-49 -45900,,,"Traverse City, MI",Micropolitan Statistical Area,143372,143372,143307,144390,145110,146451,147610,-65,1083,720,1341,1159,349,1340,1422,1438,1458,384,1356,1407,1395,1398,-35,-16,15,43,60,4,46,58,50,50,-26,947,652,1222,1032,-22,993,710,1272,1082,-8,106,-5,26,17 -45900,,26019,"Benzie County, MI",County or equivalent,17525,17525,17503,17433,17387,17406,17519,-22,-70,-46,19,113,34,147,147,151,153,60,200,204,204,200,-26,-53,-57,-53,-47,0,1,1,1,1,6,-43,12,69,171,6,-42,13,70,172,-2,25,-2,2,-12 -45900,,26055,"Grand Traverse County, MI",County or equivalent,86986,86986,86954,88141,89005,90024,90782,-32,1187,864,1019,758,224,872,925,934,940,209,771,776,804,788,15,101,149,130,152,0,20,33,24,24,-43,1077,678,863,536,-43,1097,711,887,560,-4,-11,4,2,46 -45900,,26079,"Kalkaska County, MI",County or equivalent,17153,17153,17125,17144,17082,17274,17394,-28,19,-62,192,120,43,160,181,178,191,46,187,204,161,178,-3,-27,-23,17,13,1,7,7,7,7,-24,50,-44,159,104,-23,57,-37,166,111,-2,-11,-2,9,-4 -45900,,26089,"Leelanau County, MI",County or equivalent,21708,21708,21725,21672,21636,21747,21915,17,-53,-36,111,168,48,161,169,175,174,69,198,223,226,232,-21,-37,-54,-51,-58,3,18,17,18,18,35,-137,6,131,221,38,-119,23,149,239,0,103,-5,13,-13 -45980,,,"Troy, AL",Micropolitan Statistical Area,32899,32899,32959,32922,33128,33682,33389,60,-37,206,554,-293,96,390,412,356,363,79,325,312,339,348,17,65,100,17,15,33,103,104,115,117,14,-210,7,391,-416,47,-107,111,506,-299,-4,5,-5,31,-9 -45980,,1109,"Pike County, AL",County or equivalent,32899,32899,32959,32922,33128,33682,33389,60,-37,206,554,-293,96,390,412,356,363,79,325,312,339,348,17,65,100,17,15,33,103,104,115,117,14,-210,7,391,-416,47,-107,111,506,-299,-4,5,-5,31,-9 -46020,,,"Truckee-Grass Valley, CA",Micropolitan Statistical Area,98764,98748,98752,98788,98333,98262,98893,4,36,-455,-71,631,192,771,772,819,815,192,925,912,921,877,0,-154,-140,-102,-62,15,59,57,65,67,2,168,-364,52,709,17,227,-307,117,776,-13,-37,-8,-86,-83 -46020,,6057,"Nevada County, CA",County or equivalent,98764,98748,98752,98788,98333,98262,98893,4,36,-455,-71,631,192,771,772,819,815,192,925,912,921,877,0,-154,-140,-102,-62,15,59,57,65,67,2,168,-364,52,709,17,227,-307,117,776,-13,-37,-8,-86,-83 -46100,,,"Tullahoma-Manchester, TN",Micropolitan Statistical Area,100210,100209,100126,100177,100270,100926,101344,-83,51,93,656,418,291,1057,1089,1066,1093,323,1182,1191,1132,1086,-32,-125,-102,-66,7,3,19,19,26,26,-47,207,185,682,420,-44,226,204,708,446,-7,-50,-9,14,-35 -46100,,47031,"Coffee County, TN",County or equivalent,52796,52795,52787,52894,53137,53316,53623,-8,107,243,179,307,169,636,632,623,637,169,635,653,619,614,0,1,-21,4,23,2,14,15,20,20,-5,118,249,168,278,-3,132,264,188,298,-5,-26,0,-13,-14 -46100,,47051,"Franklin County, TN",County or equivalent,41052,41052,40989,40871,40785,41297,41402,-63,-118,-86,512,105,111,375,409,396,411,126,482,470,455,428,-15,-107,-61,-59,-17,1,4,4,6,6,-49,19,-24,531,134,-48,23,-20,537,140,0,-34,-5,34,-18 -46100,,47127,"Moore County, TN",County or equivalent,6362,6362,6350,6412,6348,6313,6319,-12,62,-64,-35,6,11,46,48,47,45,28,65,68,58,44,-17,-19,-20,-11,1,0,1,0,0,0,7,70,-40,-17,8,7,71,-40,-17,8,-2,10,-4,-7,-3 -46180,,,"Tupelo, MS",Micropolitan Statistical Area,136268,136268,136351,137312,138831,139671,139723,83,961,1519,840,52,451,1833,1937,1858,1898,409,1412,1327,1461,1482,42,421,610,397,416,6,38,36,42,43,44,367,880,437,-444,50,405,916,479,-401,-9,135,-7,-36,37 -46180,,28057,"Itawamba County, MS",County or equivalent,23401,23401,23397,23320,23371,23461,23527,-4,-77,51,90,66,47,251,310,272,297,56,283,237,246,238,-9,-32,73,26,59,0,-1,-1,-1,-1,7,-72,-19,65,5,7,-73,-20,64,4,-2,28,-2,0,3 -46180,,28081,"Lee County, MS",County or equivalent,82910,82910,82931,84208,85115,85440,85246,21,1277,907,325,-194,297,1182,1195,1116,1134,258,853,840,975,1003,39,329,355,141,131,4,26,28,33,34,-15,841,535,159,-397,-11,867,563,192,-363,-7,81,-11,-8,38 -46180,,28115,"Pontotoc County, MS",County or equivalent,29957,29957,30023,29784,30345,30770,30950,66,-239,561,425,180,107,400,432,470,467,95,276,250,240,241,12,124,182,230,226,2,13,9,10,10,52,-402,364,213,-52,54,-389,373,223,-42,0,26,6,-28,-4 -46300,,,"Twin Falls, ID",Micropolitan Statistical Area,99604,99604,99976,100507,100907,102445,103732,372,531,400,1538,1287,432,1572,1586,1662,1660,166,868,801,884,880,266,704,785,778,780,59,177,155,179,185,52,-338,-545,547,332,111,-161,-390,726,517,-5,-12,5,34,-10 -46300,,16053,"Jerome County, ID",County or equivalent,22374,22374,22449,22514,22515,22606,22818,75,65,1,91,212,104,395,395,418,407,21,152,136,155,148,83,243,259,263,259,9,35,23,32,36,-17,-221,-286,-194,-77,-8,-186,-263,-162,-41,0,8,5,-10,-6 -46300,,16083,"Twin Falls County, ID",County or equivalent,77230,77230,77527,77993,78392,79839,80914,297,466,399,1447,1075,328,1177,1191,1244,1253,145,716,665,729,732,183,461,526,515,521,50,142,132,147,149,69,-117,-259,741,409,119,25,-127,888,558,-5,-20,0,44,-4 -46380,,,"Ukiah, CA",Micropolitan Statistical Area,87841,87840,87761,87460,87497,87471,87869,-79,-301,37,-26,398,261,1011,1121,1145,1138,181,838,811,788,817,80,173,310,357,321,25,105,85,96,98,-183,-576,-346,-428,61,-158,-471,-261,-332,159,-1,-3,-12,-51,-82 -46380,,6045,"Mendocino County, CA",County or equivalent,87841,87840,87761,87460,87497,87471,87869,-79,-301,37,-26,398,261,1011,1121,1145,1138,181,838,811,788,817,80,173,310,357,321,25,105,85,96,98,-183,-576,-346,-428,61,-158,-471,-261,-332,159,-1,-3,-12,-51,-82 -46460,,,"Union City, TN-KY",Micropolitan Statistical Area,38620,38620,38639,38415,37898,37485,37206,19,-224,-517,-413,-279,105,452,452,429,432,100,486,530,490,496,5,-34,-78,-61,-64,-1,-1,0,1,1,18,-182,-447,-346,-202,17,-183,-447,-345,-201,-3,-7,8,-7,-14 -46460,,21075,"Fulton County, KY",County or equivalent,6813,6813,6825,6730,6547,6385,6265,12,-95,-183,-162,-120,30,96,76,70,71,36,104,102,109,94,-6,-8,-26,-39,-23,0,0,0,0,0,19,-98,-159,-116,-98,19,-98,-159,-116,-98,-1,11,2,-7,1 -46460,,47131,"Obion County, TN",County or equivalent,31807,31807,31814,31685,31351,31100,30941,7,-129,-334,-251,-159,75,356,376,359,361,64,382,428,381,402,11,-26,-52,-22,-41,-1,-1,0,1,1,-1,-84,-288,-230,-104,-2,-85,-288,-229,-103,-2,-18,6,0,-15 -46500,,,"Urbana, OH",Micropolitan Statistical Area,40097,40097,40074,39878,39586,39475,39128,-23,-196,-292,-111,-347,111,426,394,444,423,66,404,371,384,376,45,22,23,60,47,3,13,13,13,13,-65,-253,-325,-184,-403,-62,-240,-312,-171,-390,-6,22,-3,0,-4 -46500,,39021,"Champaign County, OH",County or equivalent,40097,40097,40074,39878,39586,39475,39128,-23,-196,-292,-111,-347,111,426,394,444,423,66,404,371,384,376,45,22,23,60,47,3,13,13,13,13,-65,-253,-325,-184,-403,-62,-240,-312,-171,-390,-6,22,-3,0,-4 -46620,,,"Uvalde, TX",Micropolitan Statistical Area,26405,26405,26448,26574,26760,26916,27117,43,126,186,156,201,99,411,382,399,403,74,219,234,278,257,25,192,148,121,146,5,42,34,36,37,13,-92,5,-7,27,18,-50,39,29,64,0,-16,-1,6,-9 -46620,,48463,"Uvalde County, TX",County or equivalent,26405,26405,26448,26574,26760,26916,27117,43,126,186,156,201,99,411,382,399,403,74,219,234,278,257,25,192,148,121,146,5,42,34,36,37,13,-92,5,-7,27,18,-50,39,29,64,0,-16,-1,6,-9 -46740,,,"Valley, AL",Micropolitan Statistical Area,34215,34170,34111,34004,34087,34175,34076,-59,-107,83,88,-99,94,401,393,396,404,80,442,475,472,452,14,-41,-82,-76,-48,7,31,29,32,32,-76,-93,132,112,-88,-69,-62,161,144,-56,-4,-4,4,20,5 -46740,,1017,"Chambers County, AL",County or equivalent,34215,34170,34111,34004,34087,34175,34076,-59,-107,83,88,-99,94,401,393,396,404,80,442,475,472,452,14,-41,-82,-76,-48,7,31,29,32,32,-76,-93,132,112,-88,-69,-62,161,144,-56,-4,-4,4,20,5 -46780,,,"Van Wert, OH",Micropolitan Statistical Area,28744,28744,28673,28703,28729,28494,28462,-71,30,26,-235,-32,83,307,309,330,325,89,263,288,310,296,-6,44,21,20,29,2,13,14,14,14,-67,-66,-11,-281,-61,-65,-53,3,-267,-47,0,39,2,12,-14 -46780,,39161,"Van Wert County, OH",County or equivalent,28744,28744,28673,28703,28729,28494,28462,-71,30,26,-235,-32,83,307,309,330,325,89,263,288,310,296,-6,44,21,20,29,2,13,14,14,14,-67,-66,-11,-281,-61,-65,-53,3,-267,-47,0,39,2,12,-14 -46820,,,"Vermillion, SD",Micropolitan Statistical Area,13864,13864,13846,14035,14091,13937,13932,-18,189,56,-154,-5,36,158,143,163,150,29,90,99,97,81,7,68,44,66,69,-1,8,7,9,9,-24,108,6,-227,-91,-25,116,13,-218,-82,0,5,-1,-2,8 -46820,,46027,"Clay County, SD",County or equivalent,13864,13864,13846,14035,14091,13937,13932,-18,189,56,-154,-5,36,158,143,163,150,29,90,99,97,81,7,68,44,66,69,-1,8,7,9,9,-24,108,6,-227,-91,-25,116,13,-218,-82,0,5,-1,-2,8 -46860,,,"Vernal, UT",Micropolitan Statistical Area,32588,32586,32429,33258,34636,35690,36867,-157,829,1378,1054,1177,143,619,661,747,719,29,214,203,205,205,114,405,458,542,514,3,-1,0,4,4,-283,426,901,520,649,-280,425,901,524,653,9,-1,19,-12,10 -46860,,49047,"Uintah County, UT",County or equivalent,32588,32586,32429,33258,34636,35690,36867,-157,829,1378,1054,1177,143,619,661,747,719,29,214,203,205,205,114,405,458,542,514,3,-1,0,4,4,-283,426,901,520,649,-280,425,901,524,653,9,-1,19,-12,10 -46900,,,"Vernon, TX",Micropolitan Statistical Area,13535,13535,13505,13431,13262,13154,12973,-30,-74,-169,-108,-181,49,165,189,153,174,40,146,147,159,133,9,19,42,-6,41,2,11,8,9,9,-39,-97,-225,-87,-227,-37,-86,-217,-78,-218,-2,-7,6,-24,-4 -46900,,48487,"Wilbarger County, TX",County or equivalent,13535,13535,13505,13431,13262,13154,12973,-30,-74,-169,-108,-181,49,165,189,153,174,40,146,147,159,133,9,19,42,-6,41,2,11,8,9,9,-39,-97,-225,-87,-227,-37,-86,-217,-78,-218,-2,-7,6,-24,-4 -46980,,,"Vicksburg, MS",Micropolitan Statistical Area,58377,58371,58382,58032,57496,57463,57063,11,-350,-536,-33,-400,190,742,714,746,735,86,623,547,610,606,104,119,167,136,129,5,37,40,35,37,-93,-503,-755,-208,-543,-88,-466,-715,-173,-506,-5,-3,12,4,-23 -46980,,28021,"Claiborne County, MS",County or equivalent,9604,9598,9570,9779,9376,9177,9080,-28,209,-403,-199,-97,35,120,107,108,103,9,89,89,100,97,26,31,18,8,6,1,6,7,8,8,-56,164,-440,-219,-112,-55,170,-433,-211,-104,1,8,12,4,1 -46980,,28149,"Warren County, MS",County or equivalent,48773,48773,48812,48253,48120,48286,47983,39,-559,-133,166,-303,155,622,607,638,632,77,534,458,510,509,78,88,149,128,123,4,31,33,27,29,-37,-667,-315,11,-431,-33,-636,-282,38,-402,-6,-11,0,0,-24 -47080,,,"Vidalia, GA",Micropolitan Statistical Area,36346,36346,36405,36279,36126,36275,36273,59,-126,-153,149,-2,141,521,511,497,492,74,362,402,348,367,67,159,109,149,125,7,27,22,26,28,-16,-329,-290,-12,-147,-9,-302,-268,14,-119,1,17,6,-14,-8 -47080,,13209,"Montgomery County, GA",County or equivalent,9123,9123,9088,9039,8909,8973,8991,-35,-49,-130,64,18,30,112,103,108,102,34,86,75,68,72,-4,26,28,40,30,2,6,4,5,7,-36,-101,-166,40,-25,-34,-95,-162,45,-18,3,20,4,-21,6 -47080,,13279,"Toombs County, GA",County or equivalent,27223,27223,27317,27240,27217,27302,27282,94,-77,-23,85,-20,111,409,408,389,390,40,276,327,280,295,71,133,81,109,95,5,21,18,21,21,20,-228,-124,-52,-122,25,-207,-106,-31,-101,-2,-3,2,7,-14 -47180,,,"Vincennes, IN",Micropolitan Statistical Area,38440,38440,38383,38468,38051,38064,37938,-57,85,-417,13,-126,99,491,451,504,498,119,484,439,375,394,-20,7,12,129,104,7,39,33,37,38,-43,66,-472,-141,-258,-36,105,-439,-104,-220,-1,-27,10,-12,-10 -47180,,18083,"Knox County, IN",County or equivalent,38440,38440,38383,38468,38051,38064,37938,-57,85,-417,13,-126,99,491,451,504,498,119,484,439,375,394,-20,7,12,129,104,7,39,33,37,38,-43,66,-472,-141,-258,-36,105,-439,-104,-220,-1,-27,10,-12,-10 -47240,,,"Vineyard Haven, MA",Micropolitan Statistical Area,16535,16535,16553,16679,16796,17190,17356,18,126,117,394,166,38,173,149,162,159,19,147,134,130,129,19,26,15,32,30,5,12,11,15,15,-1,97,94,332,125,4,109,105,347,140,-5,-9,-3,15,-4 -47240,,25007,"Dukes County, MA",County or equivalent,16535,16535,16553,16679,16796,17190,17356,18,126,117,394,166,38,173,149,162,159,19,147,134,130,129,19,26,15,32,30,5,12,11,15,15,-1,97,94,332,125,4,109,105,347,140,-5,-9,-3,15,-4 -47340,,,"Wabash, IN",Micropolitan Statistical Area,32888,32888,32852,32581,32428,32348,32252,-36,-271,-153,-80,-96,79,367,352,324,333,87,410,416,412,395,-8,-43,-64,-88,-62,2,13,9,10,11,-30,-235,-99,-22,-52,-28,-222,-90,-12,-41,0,-6,1,20,7 -47340,,18169,"Wabash County, IN",County or equivalent,32888,32888,32852,32581,32428,32348,32252,-36,-271,-153,-80,-96,79,367,352,324,333,87,410,416,412,395,-8,-43,-64,-88,-62,2,13,9,10,11,-30,-235,-99,-22,-52,-28,-222,-90,-12,-41,0,-6,1,20,7 -47420,,,"Wahpeton, ND-MN",Micropolitan Statistical Area,22897,22897,22890,22834,22818,22871,22927,-7,-56,-16,53,56,55,215,216,260,263,57,226,180,200,216,-2,-11,36,60,47,3,5,6,7,7,-5,-45,-61,-28,1,-2,-40,-55,-21,8,-3,-5,3,14,1 -47420,,27167,"Wilkin County, MN",County or equivalent,6576,6576,6573,6579,6608,6550,6495,-3,6,29,-58,-55,13,72,70,70,68,6,82,74,87,85,7,-10,-4,-17,-17,0,0,0,0,0,-9,16,32,-43,-39,-9,16,32,-43,-39,-1,0,1,2,1 -47420,,38077,"Richland County, ND",County or equivalent,16321,16321,16317,16255,16210,16321,16432,-4,-62,-45,111,111,42,143,146,190,195,51,144,106,113,131,-9,-1,40,77,64,3,5,6,7,7,4,-61,-93,15,40,7,-56,-87,22,47,-2,-5,2,12,0 -47540,,,"Wapakoneta, OH",Micropolitan Statistical Area,45949,45949,45936,45815,45866,45876,45841,-13,-121,51,10,-35,130,572,513,516,513,106,462,453,517,479,24,110,60,-1,34,4,20,22,22,22,-43,-288,-27,-42,-109,-39,-268,-5,-20,-87,2,37,-4,31,18 -47540,,39011,"Auglaize County, OH",County or equivalent,45949,45949,45936,45815,45866,45876,45841,-13,-121,51,10,-35,130,572,513,516,513,106,462,453,517,479,24,110,60,-1,34,4,20,22,22,22,-43,-288,-27,-42,-109,-39,-268,-5,-20,-87,2,37,-4,31,18 -47620,,,"Warren, PA",Micropolitan Statistical Area,41815,41815,41753,41476,41212,40944,40703,-62,-277,-264,-268,-241,99,396,399,413,406,119,469,511,504,508,-20,-73,-112,-91,-102,0,6,6,8,8,-33,-189,-155,-181,-120,-33,-183,-149,-173,-112,-9,-21,-3,-4,-27 -47620,,42123,"Warren County, PA",County or equivalent,41815,41815,41753,41476,41212,40944,40703,-62,-277,-264,-268,-241,99,396,399,413,406,119,469,511,504,508,-20,-73,-112,-91,-102,0,6,6,8,8,-33,-189,-155,-181,-120,-33,-183,-149,-173,-112,-9,-21,-3,-4,-27 -47660,,,"Warrensburg, MO",Micropolitan Statistical Area,52595,52595,52702,53432,54418,54482,54362,107,730,986,64,-120,167,720,728,712,715,66,419,371,354,364,101,301,357,358,351,50,57,284,160,131,-41,357,347,-460,-597,9,414,631,-300,-466,-3,15,-2,6,-5 -47660,,29101,"Johnson County, MO",County or equivalent,52595,52595,52702,53432,54418,54482,54362,107,730,986,64,-120,167,720,728,712,715,66,419,371,354,364,101,301,357,358,351,50,57,284,160,131,-41,357,347,-460,-597,9,414,631,-300,-466,-3,15,-2,6,-5 -47700,,,"Warsaw, IN",Micropolitan Statistical Area,77358,77356,77346,77389,77654,77997,78564,-10,43,265,343,567,261,996,959,1072,1044,156,650,649,710,656,105,346,310,362,388,14,64,60,67,69,-129,-337,-106,-57,165,-115,-273,-46,10,234,0,-30,1,-29,-55 -47700,,18085,"Kosciusko County, IN",County or equivalent,77358,77356,77346,77389,77654,77997,78564,-10,43,265,343,567,261,996,959,1072,1044,156,650,649,710,656,105,346,310,362,388,14,64,60,67,69,-129,-337,-106,-57,165,-115,-273,-46,10,234,0,-30,1,-29,-55 -47780,,,"Washington, IN",Micropolitan Statistical Area,31648,31654,31713,31918,32116,32303,32729,59,205,198,187,426,114,522,536,545,536,92,329,351,299,316,22,193,185,246,220,8,26,25,28,28,36,3,-13,-65,189,44,29,12,-37,217,-7,-17,1,-22,-11 -47780,,18027,"Daviess County, IN",County or equivalent,31648,31654,31713,31918,32116,32303,32729,59,205,198,187,426,114,522,536,545,536,92,329,351,299,316,22,193,185,246,220,8,26,25,28,28,36,3,-13,-65,189,44,29,12,-37,217,-7,-17,1,-22,-11 -47820,,,"Washington, NC",Micropolitan Statistical Area,47759,47773,47767,47664,47491,47429,47585,-6,-103,-173,-62,156,128,511,498,503,503,114,535,544,567,564,14,-24,-46,-64,-61,9,28,30,33,36,-21,-104,-160,-69,199,-12,-76,-130,-36,235,-8,-3,3,38,-18 -47820,,37013,"Beaufort County, NC",County or equivalent,47759,47773,47767,47664,47491,47429,47585,-6,-103,-173,-62,156,128,511,498,503,503,114,535,544,567,564,14,-24,-46,-64,-61,9,28,30,33,36,-21,-104,-160,-69,199,-12,-76,-130,-36,235,-8,-3,3,38,-18 -47920,,,"Washington Court House, OH",Micropolitan Statistical Area,29030,29030,29017,28907,28850,28799,28800,-13,-110,-57,-51,1,88,356,375,378,377,100,348,340,323,300,-12,8,35,55,77,3,12,12,12,12,-3,-143,-102,-115,-91,0,-131,-90,-103,-79,-1,13,-2,-3,3 -47920,,39047,"Fayette County, OH",County or equivalent,29030,29030,29017,28907,28850,28799,28800,-13,-110,-57,-51,1,88,356,375,378,377,100,348,340,323,300,-12,8,35,55,77,3,12,12,12,12,-3,-143,-102,-115,-91,0,-131,-90,-103,-79,-1,13,-2,-3,3 -47980,,,"Watertown, SD",Micropolitan Statistical Area,27227,27227,27218,27399,27581,27855,27938,-9,181,182,274,83,90,372,382,390,377,71,242,260,201,217,19,130,122,189,160,3,12,12,14,14,-31,53,51,59,-70,-28,65,63,73,-56,0,-14,-3,12,-21 -47980,,46029,"Codington County, SD",County or equivalent,27227,27227,27218,27399,27581,27855,27938,-9,181,182,274,83,90,372,382,390,377,71,242,260,201,217,19,130,122,189,160,3,12,12,14,14,-31,53,51,59,-70,-28,65,63,73,-56,0,-14,-3,12,-21 -48020,,,"Watertown-Fort Atkinson, WI",Micropolitan Statistical Area,83686,83681,83686,83905,84408,84610,84395,5,219,503,202,-215,230,938,891,894,879,129,627,598,637,650,101,311,293,257,229,19,68,60,67,68,-107,-132,157,-81,-467,-88,-64,217,-14,-399,-8,-28,-7,-41,-45 -48020,,55055,"Jefferson County, WI",County or equivalent,83686,83681,83686,83905,84408,84610,84395,5,219,503,202,-215,230,938,891,894,879,129,627,598,637,650,101,311,293,257,229,19,68,60,67,68,-107,-132,157,-81,-467,-88,-64,217,-14,-399,-8,-28,-7,-41,-45 -48100,,,"Wauchula, FL",Micropolitan Statistical Area,27731,27731,27767,27684,27414,27410,27469,36,-83,-270,-4,59,117,406,408,380,386,72,199,195,178,168,45,207,213,202,218,21,103,95,112,116,-29,-387,-585,-343,-282,-8,-284,-490,-231,-166,-1,-6,7,25,7 -48100,,12049,"Hardee County, FL",County or equivalent,27731,27731,27767,27684,27414,27410,27469,36,-83,-270,-4,59,117,406,408,380,386,72,199,195,178,168,45,207,213,202,218,21,103,95,112,116,-29,-387,-585,-343,-282,-8,-284,-490,-231,-166,-1,-6,7,25,7 -48180,,,"Waycross, GA",Micropolitan Statistical Area,55070,55064,55168,54900,54649,54652,54506,104,-268,-251,3,-146,172,756,727,727,730,168,631,613,635,606,4,125,114,92,124,8,28,27,30,31,102,-489,-400,-111,-280,110,-461,-373,-81,-249,-10,68,8,-8,-21 -48180,,13229,"Pierce County, GA",County or equivalent,18758,18758,18802,18723,18835,18948,18991,44,-79,112,113,43,49,243,224,247,246,35,196,179,188,196,14,47,45,59,50,2,10,7,8,8,26,-139,61,64,-1,28,-129,68,72,7,2,3,-1,-18,-14 -48180,,13299,"Ware County, GA",County or equivalent,36312,36306,36366,36177,35814,35704,35515,60,-189,-363,-110,-189,123,513,503,480,484,133,435,434,447,410,-10,78,69,33,74,6,18,20,22,23,76,-350,-461,-175,-279,82,-332,-441,-153,-256,-12,65,9,10,-7 -48220,,,"Weatherford, OK",Micropolitan Statistical Area,27469,27469,27486,27730,28518,29295,29500,17,244,788,777,205,101,462,477,446,468,91,302,268,269,283,10,160,209,177,185,4,31,31,37,39,6,57,536,545,-17,10,88,567,582,22,-3,-4,12,18,-2 -48220,,40039,"Custer County, OK",County or equivalent,27469,27469,27486,27730,28518,29295,29500,17,244,788,777,205,101,462,477,446,468,91,302,268,269,283,10,160,209,177,185,4,31,31,37,39,6,57,536,545,-17,10,88,567,582,22,-3,-4,12,18,-2 -48460,,,"West Plains, MO",Micropolitan Statistical Area,40400,40400,40608,40642,40622,40298,40173,208,34,-20,-324,-125,162,560,509,511,493,87,496,468,529,504,75,64,41,-18,-11,6,17,17,20,20,121,-30,-77,-319,-124,127,-13,-60,-299,-104,6,-17,-1,-7,-10 -48460,,29091,"Howell County, MO",County or equivalent,40400,40400,40608,40642,40622,40298,40173,208,34,-20,-324,-125,162,560,509,511,493,87,496,468,529,504,75,64,41,-18,-11,6,17,17,20,20,121,-30,-77,-319,-124,127,-13,-60,-299,-104,6,-17,-1,-7,-10 -48580,,,"Whitewater-Elkhorn, WI",Micropolitan Statistical Area,102228,102228,102161,102783,103052,103079,103527,-67,622,269,27,448,266,1025,1035,1043,1019,191,864,849,883,877,75,161,186,160,142,21,70,53,66,70,-163,364,36,-251,249,-142,434,89,-185,319,0,27,-6,52,-13 -48580,,55127,"Walworth County, WI",County or equivalent,102228,102228,102161,102783,103052,103079,103527,-67,622,269,27,448,266,1025,1035,1043,1019,191,864,849,883,877,75,161,186,160,142,21,70,53,66,70,-163,364,36,-251,249,-142,434,89,-185,319,0,27,-6,52,-13 -48780,,,"Williston, ND",Micropolitan Statistical Area,22398,22398,22573,24379,26686,29563,32130,175,1806,2307,2877,2567,85,349,446,533,610,42,227,233,221,207,43,122,213,312,403,1,-11,-12,-11,-11,124,1627,2051,2664,2099,125,1616,2039,2653,2088,7,68,55,-88,76 -48780,,38105,"Williams County, ND",County or equivalent,22398,22398,22573,24379,26686,29563,32130,175,1806,2307,2877,2567,85,349,446,533,610,42,227,233,221,207,43,122,213,312,403,1,-11,-12,-11,-11,124,1627,2051,2664,2099,125,1616,2039,2653,2088,7,68,55,-88,76 -48820,,,"Willmar, MN",Micropolitan Statistical Area,42239,42239,42245,42248,42399,42403,42285,6,3,151,4,-118,134,577,540,543,541,112,387,372,377,334,22,190,168,166,207,18,82,84,91,91,-33,-277,-99,-240,-401,-15,-195,-15,-149,-310,-1,8,-2,-13,-15 -48820,,27067,"Kandiyohi County, MN",County or equivalent,42239,42239,42245,42248,42399,42403,42285,6,3,151,4,-118,134,577,540,543,541,112,387,372,377,334,22,190,168,166,207,18,82,84,91,91,-33,-277,-99,-240,-401,-15,-195,-15,-149,-310,-1,8,-2,-13,-15 -48940,,,"Wilmington, OH",Micropolitan Statistical Area,42040,42037,41892,41906,41831,41889,41835,-145,14,-75,58,-54,118,482,515,509,495,94,415,458,431,427,24,67,57,78,68,3,22,24,23,23,-176,-70,-155,-66,-116,-173,-48,-131,-43,-93,4,-5,-1,23,-29 -48940,,39027,"Clinton County, OH",County or equivalent,42040,42037,41892,41906,41831,41889,41835,-145,14,-75,58,-54,118,482,515,509,495,94,415,458,431,427,24,67,57,78,68,3,22,24,23,23,-176,-70,-155,-66,-116,-173,-48,-131,-43,-93,4,-5,-1,23,-29 -48980,,,"Wilson, NC",Micropolitan Statistical Area,81234,81234,81277,81449,81768,81598,81401,43,172,319,-170,-197,267,1017,986,909,925,224,800,744,878,875,43,217,242,31,50,18,83,76,89,95,-4,-233,11,-350,-284,14,-150,87,-261,-189,-14,105,-10,60,-58 -48980,,37195,"Wilson County, NC",County or equivalent,81234,81234,81277,81449,81768,81598,81401,43,172,319,-170,-197,267,1017,986,909,925,224,800,744,878,875,43,217,242,31,50,18,83,76,89,95,-4,-233,11,-350,-284,14,-150,87,-261,-189,-14,105,-10,60,-58 -49080,,,"Winnemucca, NV",Micropolitan Statistical Area,16528,16525,16603,16661,17101,17369,17279,78,58,440,268,-90,72,265,276,269,276,15,124,139,109,104,57,141,137,160,172,3,20,12,15,16,20,-128,290,133,-296,23,-108,302,148,-280,-2,25,1,-40,18 -49080,,32013,"Humboldt County, NV",County or equivalent,16528,16525,16603,16661,17101,17369,17279,78,58,440,268,-90,72,265,276,269,276,15,124,139,109,104,57,141,137,160,172,3,20,12,15,16,20,-128,290,133,-296,23,-108,302,148,-280,-2,25,1,-40,18 -49100,,,"Winona, MN",Micropolitan Statistical Area,51461,51461,51393,51347,51326,51262,51097,-68,-46,-21,-64,-165,95,424,471,472,472,69,388,394,411,427,26,36,77,61,45,17,66,63,69,69,-113,-130,-159,-208,-293,-96,-64,-96,-139,-224,2,-18,-2,14,14 -49100,,27169,"Winona County, MN",County or equivalent,51461,51461,51393,51347,51326,51262,51097,-68,-46,-21,-64,-165,95,424,471,472,472,69,388,394,411,427,26,36,77,61,45,17,66,63,69,69,-113,-130,-159,-208,-293,-96,-64,-96,-139,-224,2,-18,-2,14,14 -49220,,,"Wisconsin Rapids-Marshfield, WI",Micropolitan Statistical Area,74749,74749,74780,74619,74354,73944,73608,31,-161,-265,-410,-336,222,894,825,833,810,160,738,752,723,704,62,156,73,110,106,5,26,28,31,32,-29,-303,-370,-525,-426,-24,-277,-342,-494,-394,-7,-40,4,-26,-48 -49220,,55141,"Wood County, WI",County or equivalent,74749,74749,74780,74619,74354,73944,73608,31,-161,-265,-410,-336,222,894,825,833,810,160,738,752,723,704,62,156,73,110,106,5,26,28,31,32,-29,-303,-370,-525,-426,-24,-277,-342,-494,-394,-7,-40,4,-26,-48 -49260,,,"Woodward, OK",Micropolitan Statistical Area,20081,20081,19988,20096,20647,21225,21529,-93,108,551,578,304,77,296,317,345,345,25,188,186,212,242,52,108,131,133,103,4,18,19,19,19,-152,-15,395,419,169,-148,3,414,438,188,3,-3,6,7,13 -49260,,40153,"Woodward County, OK",County or equivalent,20081,20081,19988,20096,20647,21225,21529,-93,108,551,578,304,77,296,317,345,345,25,188,186,212,242,52,108,131,133,103,4,18,19,19,19,-152,-15,395,419,169,-148,3,414,438,188,3,-3,6,7,13 -49300,,,"Wooster, OH",Micropolitan Statistical Area,114520,114514,114501,114718,114990,115144,115537,-13,217,272,154,393,392,1471,1565,1491,1501,295,1040,1024,1070,1055,97,431,541,421,446,16,62,60,65,67,-129,-215,-333,-343,-98,-113,-153,-273,-278,-31,3,-61,4,11,-22 -49300,,39169,"Wayne County, OH",County or equivalent,114520,114514,114501,114718,114990,115144,115537,-13,217,272,154,393,392,1471,1565,1491,1501,295,1040,1024,1070,1055,97,431,541,421,446,16,62,60,65,67,-129,-215,-333,-343,-98,-113,-153,-273,-278,-31,3,-61,4,11,-22 -49380,,,"Worthington, MN",Micropolitan Statistical Area,21378,21378,21394,21568,21674,21719,21590,16,174,106,45,-129,98,375,348,325,335,27,164,190,176,175,71,211,158,149,160,45,167,163,182,185,-94,-201,-216,-229,-499,-49,-34,-53,-47,-314,-6,-3,1,-57,25 -49380,,27105,"Nobles County, MN",County or equivalent,21378,21378,21394,21568,21674,21719,21590,16,174,106,45,-129,98,375,348,325,335,27,164,190,176,175,71,211,158,149,160,45,167,163,182,185,-94,-201,-216,-229,-499,-49,-34,-53,-47,-314,-6,-3,1,-57,25 -49460,,,"Yankton, SD",Micropolitan Statistical Area,22438,22438,22455,22507,22591,22664,22684,17,52,84,73,20,57,260,249,269,264,67,221,206,204,191,-10,39,43,65,73,5,-5,-4,-3,-2,25,19,44,9,-42,30,14,40,6,-44,-3,-1,1,2,-9 -49460,,46135,"Yankton County, SD",County or equivalent,22438,22438,22455,22507,22591,22664,22684,17,52,84,73,20,57,260,249,269,264,67,221,206,204,191,-10,39,43,65,73,5,-5,-4,-3,-2,25,19,44,9,-42,30,14,40,6,-44,-3,-1,1,2,-9 -49780,,,"Zanesville, OH",Micropolitan Statistical Area,86074,86074,86185,86199,85838,85696,85818,111,14,-361,-142,122,262,1065,1017,1017,973,192,911,949,964,925,70,154,68,53,48,9,36,37,41,41,36,-118,-475,-234,99,45,-82,-438,-193,140,-4,-58,9,-2,-66 -49780,,39119,"Muskingum County, OH",County or equivalent,86074,86074,86185,86199,85838,85696,85818,111,14,-361,-142,122,262,1065,1017,1017,973,192,911,949,964,925,70,154,68,53,48,9,36,37,41,41,36,-118,-475,-234,99,45,-82,-438,-193,140,-4,-58,9,-2,-66 -49820,,,"Zapata, TX",Micropolitan Statistical Area,14018,14018,14056,14192,14232,14356,14319,38,136,40,124,-37,72,316,276,288,282,11,78,83,86,105,61,238,193,202,177,1,5,-1,0,1,-22,-112,-155,-80,-215,-21,-107,-156,-80,-214,-2,5,3,2,0 -49820,,48505,"Zapata County, TX",County or equivalent,14018,14018,14056,14192,14232,14356,14319,38,136,40,124,-37,72,316,276,288,282,11,78,83,86,105,61,238,193,202,177,1,5,-1,0,1,-22,-112,-155,-80,-215,-21,-107,-156,-80,-214,-2,5,3,2,0 diff --git a/data/Gaz_zcta_national.txt b/data/Gaz_zcta_national.txt new file mode 100755 index 00000000..3bf0043c --- /dev/null +++ b/data/Gaz_zcta_national.txt @@ -0,0 +1,33121 @@ +GEOID POP10 HU10 ALAND AWATER ALAND_SQMI AWATER_SQMI INTPTLAT INTPTLONG +00601 18570 7744 166659789 799296 64.348 0.309 18.180555 -66.749961 +00602 41520 18073 79288158 4446273 30.613 1.717 18.362268 -67.176130 +00603 54689 25653 81880442 183425 31.614 0.071 18.455183 -67.119887 +00606 6615 2877 109580061 12487 42.309 0.005 18.158345 -66.932911 +00610 29016 12618 93021467 4172001 35.916 1.611 18.290955 -67.125868 +00612 67010 30992 175106243 9809163 67.609 3.787 18.402239 -66.711400 +00616 11017 4896 29870473 149147 11.533 0.058 18.420412 -66.671979 +00617 24597 10594 39347158 3987969 15.192 1.540 18.445147 -66.559696 +00622 7853 8714 75077028 1694917 28.987 0.654 17.991245 -67.153993 +00623 43061 21426 98367847 1633540 37.980 0.631 18.083435 -67.153877 +00624 26241 9905 111791516 2524878 43.163 0.975 18.063275 -66.715966 +00627 35159 14431 120058334 3507026 46.355 1.354 18.415030 -66.861879 +00631 1852 842 10414662 669970 4.021 0.259 18.190607 -66.832041 +00637 25287 10962 89226022 25323 34.450 0.010 18.076713 -66.947389 +00638 18941 7805 171055117 493335 66.045 0.190 18.291088 -66.513306 +00641 31191 13358 242237480 3466212 93.528 1.338 18.262962 -66.714020 +00646 38199 16699 53611823 3321248 20.700 1.282 18.433167 -66.285941 +00647 6172 3482 39379804 8013314 15.205 3.094 17.963613 -66.947127 +00650 14998 6124 79052810 557181 30.522 0.215 18.349416 -66.578079 +00652 4715 1947 17906137 16436 6.914 0.006 18.451934 -66.603113 +00653 13307 6217 39477273 5203941 15.242 2.009 17.985452 -66.888933 +00656 21481 8680 83968290 4356121 32.420 1.682 18.053539 -66.792931 +00659 41953 17365 108211415 3039180 41.781 1.173 18.407222 -66.809008 +00660 17250 7783 29380814 486 11.344 0.000 18.134644 -67.116158 +00662 43282 20199 114907988 5341043 44.366 2.062 18.467481 -67.015974 +00664 16784 6590 117897373 3405 45.520 0.001 18.213419 -66.589613 +00667 25968 12508 156201164 28264208 60.310 10.913 18.003422 -67.035810 +00669 29744 12458 159419203 168344 61.552 0.065 18.270899 -66.866375 +00670 9807 3973 118025360 357819 45.570 0.138 18.236832 -66.990114 +00674 44457 19409 116400264 6903390 44.942 2.665 18.422908 -66.489337 +00676 40316 16887 130636635 56483 50.439 0.022 18.377751 -67.080344 +00677 15272 9730 37137111 3594951 14.339 1.388 18.332560 -67.227006 +00678 27819 11619 68274095 3796687 26.361 1.466 18.434099 -66.927384 +00680 58140 27992 166248984 19828643 64.189 7.656 18.181938 -67.133802 +00682 32615 15489 37348163 6330100 14.420 2.444 18.221443 -67.156062 +00683 33772 15219 135168308 29361 52.189 0.011 18.107800 -67.037263 +00685 42831 18877 200808224 2058239 77.532 0.795 18.332927 -66.959875 +00687 32610 12381 100675764 140026 38.871 0.054 18.318386 -66.418034 +00688 13543 5353 82401202 77467 31.815 0.030 18.382264 -66.626438 +00690 6255 2773 7291346 12393 2.815 0.005 18.495510 -67.098671 +00692 37511 16026 69307906 1999296 26.760 0.772 18.410188 -66.336556 +00693 61038 25884 101838924 3653903 39.320 1.411 18.423024 -66.397230 +00694 328 188 2043548 1957116 0.789 0.756 18.482370 -66.391079 +00698 41782 17924 180309254 7761848 69.618 2.997 18.064848 -66.856319 +00703 28605 11417 76855070 28384 29.674 0.011 18.248401 -66.130662 +00704 8577 3871 12627769 1773833 4.876 0.685 17.965770 -66.219555 +00705 25598 10297 82748292 72306 31.949 0.028 18.128961 -66.266683 +00707 12225 5546 54561503 3816670 21.066 1.474 18.013648 -65.920712 +00714 19566 8871 37859151 42765 14.618 0.017 18.000198 -66.042943 +00715 3656 1532 20434129 150234 7.890 0.058 18.011233 -66.560065 +00716 33779 14275 22081777 7967534 8.526 3.076 17.990567 -66.607542 +00717 18457 9518 5417561 109099 2.092 0.042 18.003222 -66.614037 +00718 26606 11970 117172329 3457285 45.240 1.335 18.231988 -65.759623 +00719 30990 11496 72527843 898356 28.003 0.347 18.289927 -66.253440 +00720 23129 9059 154368018 286519 59.602 0.111 18.217946 -66.428076 +00723 19277 9358 119554076 1319657 46.160 0.510 18.043822 -66.015578 +00725 89374 38678 109190812 1190612 42.159 0.460 18.218819 -66.042375 +00727 58382 23679 55827071 26963 21.555 0.010 18.215308 -66.073565 +00728 44908 16698 40524719 21618806 15.647 8.347 17.989853 -66.664116 +00729 53750 21688 87958918 364682 33.961 0.141 18.329829 -65.885142 +00730 35742 16253 16850026 123834 6.506 0.048 18.030831 -66.616838 +00731 15524 5962 123332268 3082106 47.619 1.190 18.108039 -66.634653 +00735 13730 7749 60362550 1842364 23.306 0.711 18.252604 -65.682494 +00736 51532 22315 142701655 79564 55.097 0.031 18.103624 -66.151667 +00738 34922 18383 76243980 78712514 29.438 30.391 18.304458 -65.698711 +00739 39678 15565 81792808 1113746 31.580 0.430 18.177265 -66.160577 +00740 2071 1008 1103423 40886 0.426 0.016 18.331160 -65.634120 +00741 4971 2196 6121151 2792707 2.363 1.078 18.163745 -65.754021 +00745 55062 24529 133676216 6155023 51.613 2.376 18.352840 -65.817813 +00751 23129 10808 121664561 29378177 46.975 11.343 18.001317 -66.252183 +00754 40828 17146 132164302 241740 51.029 0.093 18.147130 -65.976289 +00757 23263 9571 77246859 5609947 29.825 2.166 17.995441 -66.391334 +00765 9098 5339 49309561 1749411 19.039 0.675 18.130096 -65.439369 +00766 26488 9947 103701762 3739022 40.039 1.444 18.133196 -66.476916 +00767 38019 15831 143501366 6805011 55.406 2.627 18.069413 -65.896490 +00769 40248 16612 198168393 38999 76.513 0.015 18.103800 -66.357586 +00771 38394 16142 87591047 32514 33.819 0.013 18.187201 -65.871196 +00772 23105 10211 37975532 13639704 14.662 5.266 18.438969 -65.905174 +00773 20068 10968 62964008 2572484 24.311 0.993 18.343799 -65.726378 +00775 1786 1569 27344697 33437932 10.558 12.910 18.327485 -65.295977 +00777 40684 16867 68844419 327723 26.581 0.127 18.224133 -65.908542 +00778 45429 18127 76776403 1116806 29.644 0.431 18.263023 -65.979078 +00780 13800 5295 52032587 838321 20.090 0.324 18.102834 -66.568105 +00782 19304 7535 69008763 319734 26.644 0.123 18.225708 -66.221633 +00783 36557 13798 108382318 16292 41.847 0.006 18.303910 -66.326179 +00784 44637 19159 143887987 16278766 55.555 6.285 18.010721 -66.133613 +00786 357 145 666250 0 0.257 0.000 18.155424 -66.229907 +00791 53417 25871 95711037 2868576 36.954 1.108 18.136752 -65.821487 +00794 30585 11502 91419799 77809 35.297 0.030 18.199014 -66.309782 +00795 48736 19196 119811901 958123 46.260 0.370 18.060532 -66.499473 +00901 7080 4990 2534091 30548 0.978 0.012 18.465424 -66.104723 +00906 4 168 8247 0 0.003 0.000 18.464460 -66.094995 +00907 17458 13224 3132947 347421 1.210 0.134 18.452679 -66.078113 +00909 6230 3805 1575598 49304 0.608 0.019 18.441610 -66.067132 +00911 8623 6096 1245504 0 0.481 0.000 18.451128 -66.056223 +00912 6801 3884 854044 0 0.330 0.000 18.445289 -66.060139 +00913 9312 4065 843188 0 0.326 0.000 18.449970 -66.042664 +00915 32820 16538 3601480 820884 1.391 0.317 18.437179 -66.045571 +00917 21053 12348 3360017 46991 1.297 0.018 18.420674 -66.050105 +00918 18056 10850 5520556 101247 2.131 0.039 18.421022 -66.065789 +00920 17893 9322 7331380 135936 2.831 0.052 18.414292 -66.088042 +00921 37763 17728 6931388 0 2.676 0.000 18.392273 -66.088552 +00923 29086 13969 5283986 7303 2.040 0.003 18.409307 -66.038888 +00924 56691 24971 12143485 1620 4.689 0.001 18.399196 -66.012452 +00925 8696 5413 1158082 0 0.447 0.000 18.400296 -66.050602 +00926 108862 47317 62575083 1052384 24.160 0.406 18.345400 -66.051545 +00927 14936 7893 6804165 5831 2.627 0.002 18.387953 -66.072098 +00934 288 140 1940428 26786 0.749 0.010 18.411313 -66.124234 +00936 681 4 417955 0 0.161 0.000 18.395463 -66.073772 +00949 82278 33340 45604190 2130451 17.608 0.823 18.430696 -66.212833 +00950 9 5 6204986 1989345 2.396 0.768 18.463692 -66.234559 +00951 35 19 1075640 29541 0.415 0.011 18.427530 -66.253789 +00952 10008 4169 3207681 0 1.238 0.000 18.427441 -66.182032 +00953 73014 26609 69144842 1365378 26.697 0.527 18.360727 -66.251526 +00956 79304 32550 68564483 215310 26.473 0.083 18.319539 -66.168891 +00957 45680 18275 11965797 1407 4.620 0.001 18.368533 -66.187693 +00959 50560 22445 16609667 81790 6.413 0.032 18.388924 -66.154999 +00960 1779 0 2409664 2485 0.930 0.001 18.416919 -66.145795 +00961 32429 13394 13367398 205470 5.161 0.079 18.412230 -66.165168 +00962 22491 8939 9876249 1152266 3.813 0.445 18.442299 -66.145357 +00965 9134 3848 1689483 342594 0.652 0.132 18.433757 -66.114752 +00966 16676 7894 8401213 4490 3.244 0.002 18.401536 -66.117584 +00968 3478 2228 1180763 0 0.456 0.000 18.406077 -66.101223 +00969 42219 17775 12622328 39797 4.874 0.015 18.368062 -66.108062 +00971 30986 12895 41324409 94183 15.955 0.036 18.318832 -66.119215 +00976 65136 26564 43356810 738172 16.740 0.285 18.336408 -65.994057 +00979 17030 12765 4061150 504754 1.568 0.195 18.444389 -66.030129 +00982 16428 7402 3654231 19111 1.411 0.007 18.411261 -65.992045 +00983 39234 16985 8987630 622892 3.470 0.240 18.418007 -65.977070 +00985 36553 15241 21083058 759741 8.140 0.293 18.408588 -65.946933 +00987 63661 25557 64272333 453240 24.816 0.175 18.338161 -65.941083 +01001 16769 7557 29635470 2229770 11.442 0.861 42.062332 -72.628274 +01002 29049 10388 142556362 4280260 55.041 1.653 42.363977 -72.458507 +01003 10372 5 1842384 12788 0.711 0.005 42.389941 -72.524108 +01005 5079 2044 114586903 667042 44.242 0.258 42.418848 -72.106598 +01007 14649 5839 136345999 6943853 52.643 2.681 42.279010 -72.400468 +01008 1263 586 139331467 5086093 53.796 1.964 42.191846 -72.957325 +01009 741 341 2065002 23 0.797 0.000 42.211969 -72.341433 +01010 3609 1598 89982811 1420260 34.743 0.548 42.129477 -72.205302 +01011 1370 659 81884563 342573 31.616 0.132 42.300281 -72.968716 +01012 661 343 33977749 545075 13.119 0.210 42.375425 -72.858192 +01013 23188 10246 14567022 1731910 5.624 0.669 42.154904 -72.602804 +01020 29668 13688 32308345 1178303 12.474 0.455 42.172698 -72.561835 +01022 2451 1209 12322151 2118 4.758 0.001 42.197741 -72.542713 +01026 946 513 62170236 332515 24.004 0.128 42.465495 -72.918267 +01027 17660 8311 104896540 1189669 40.501 0.459 42.295008 -72.751877 +01028 15720 6106 33686035 181933 13.006 0.070 42.059614 -72.501234 +01029 789 1078 41047358 5315012 15.848 2.052 42.193395 -73.044647 +01030 11669 4582 30736637 469718 11.867 0.181 42.072925 -72.686972 +01031 1308 596 20959213 0 8.092 0.000 42.329398 -72.198190 +01032 570 363 30481491 887372 11.769 0.343 42.457613 -72.814780 +01033 6227 2454 72068288 667254 27.826 0.258 42.244958 -72.500034 +01034 2021 1145 185271061 5014353 71.534 1.936 42.098207 -72.961272 +01035 5250 2230 59791827 3939738 23.086 1.521 42.356482 -72.568576 +01036 5109 1937 50521716 105963 19.507 0.041 42.062946 -72.417297 +01037 838 253 34391428 235915 13.279 0.091 42.367961 -72.188710 +01038 2545 1181 25893889 2245685 9.998 0.867 42.385496 -72.606929 +01039 1336 640 34206722 595533 13.207 0.230 42.404278 -72.688922 +01040 39880 16384 55116741 4025645 21.281 1.554 42.211656 -72.642448 +01050 2530 1167 99270932 2581121 38.329 0.997 42.286750 -72.869693 +01053 1685 636 13289904 251888 5.131 0.097 42.356301 -72.713584 +01054 1851 811 59071058 425618 22.807 0.164 42.469588 -72.484502 +01056 21103 8383 70460584 2836425 27.205 1.095 42.188865 -72.459078 +01057 8534 3470 116307957 1607537 44.907 0.621 42.093596 -72.321494 +01060 15284 7307 28276974 3261695 10.918 1.259 42.321488 -72.630588 +01062 11150 4784 47018995 396854 18.154 0.153 42.328314 -72.703923 +01063 430 1 100502 0 0.039 0.000 42.318882 -72.638530 +01066 64 25 1839260 121053 0.710 0.047 42.406903 -72.655018 +01068 1902 711 53949370 1008115 20.830 0.389 42.350862 -72.044248 +01069 8469 3779 72688936 766584 28.065 0.296 42.187794 -72.308469 +01070 629 320 53200760 594033 20.541 0.229 42.518446 -72.919017 +01071 1596 638 40349276 803435 15.579 0.310 42.160060 -72.873853 +01072 1478 748 52021993 1342210 20.086 0.518 42.456968 -72.417244 +01073 5792 2337 72913678 2077741 28.152 0.802 42.226949 -72.741588 +01074 319 132 220752 52379 0.085 0.020 42.387603 -72.093230 +01075 17527 7162 45888980 1773571 17.718 0.685 42.256346 -72.580763 +01077 9502 3916 79825932 2153492 30.821 0.831 42.052570 -72.777353 +01079 692 325 2921898 108238 1.128 0.042 42.197424 -72.327020 +01080 2334 1093 4473453 258220 1.727 0.100 42.182218 -72.365654 +01081 1698 820 37544477 568325 14.496 0.219 42.061313 -72.234411 +01082 10322 4768 119411357 16183211 46.105 6.248 42.293533 -72.278599 +01083 2888 1270 40871193 156824 15.780 0.061 42.203642 -72.194599 +01084 176 88 23821014 222863 9.197 0.086 42.392370 -72.882235 +01085 41117 16363 155258467 2964576 59.946 1.145 42.153503 -72.771602 +01086 687 0 96152 0 0.037 0.000 42.130446 -72.793967 +01088 670 357 13468904 36984 5.200 0.014 42.391709 -72.646494 +01089 28391 12697 43286505 2094117 16.713 0.809 42.125451 -72.649734 +01092 1394 591 17359776 80681 6.703 0.031 42.191868 -72.235108 +01093 325 156 13063805 16741 5.044 0.006 42.435121 -72.654963 +01094 351 171 2942290 169907 1.136 0.066 42.359108 -72.136800 +01095 14319 5535 58570047 581247 22.614 0.224 42.127327 -72.427404 +01096 2217 1029 82059161 532858 31.683 0.206 42.397140 -72.763572 +01097 111 40 4426154 208868 1.709 0.081 42.178038 -72.832612 +01098 1101 610 81200703 384439 31.352 0.148 42.394315 -72.943115 +01103 2479 1661 1191989 205067 0.460 0.079 42.104106 -72.592027 +01104 22865 9381 13509560 212850 5.216 0.082 42.134009 -72.565378 +01105 12350 5586 3219040 306964 1.243 0.119 42.095207 -72.577579 +01106 16021 6107 24090566 1331605 9.301 0.514 42.047565 -72.571130 +01107 11611 4252 3903756 89142 1.507 0.034 42.121060 -72.607068 +01108 26688 10992 9643254 406401 3.723 0.157 42.080692 -72.560791 +01109 30250 10818 14094949 487865 5.442 0.188 42.119674 -72.549726 +01118 14071 5911 9312203 260877 3.595 0.101 42.093732 -72.525905 +01119 14152 5185 9194297 241739 3.550 0.093 42.124978 -72.511210 +01128 2631 1077 2892857 1287 1.117 0.000 42.092296 -72.489135 +01129 7019 2982 8867992 237886 3.424 0.092 42.119062 -72.487401 +01151 8698 3699 6134290 464565 2.368 0.179 42.151860 -72.509131 +01199 0 0 28277 0 0.011 0.000 42.120563 -72.604468 +01201 46504 22443 137058017 6752938 52.918 2.607 42.448236 -73.273727 +01220 8603 4434 63689337 204142 24.591 0.079 42.623799 -73.116736 +01222 829 361 8565484 333235 3.307 0.129 42.058703 -73.322175 +01223 2314 1986 180653860 5294145 69.751 2.044 42.312225 -73.110124 +01224 182 81 720507 82246 0.278 0.032 42.513356 -73.195594 +01225 3117 1466 65025449 1821072 25.106 0.703 42.563363 -73.153566 +01226 6945 2993 68319649 366617 26.378 0.142 42.481119 -73.135073 +01229 95 61 1897309 1745 0.733 0.001 42.276338 -73.335896 +01230 8430 4633 237032746 4530189 91.519 1.749 42.172941 -73.324463 +01235 2766 1507 118213863 2794609 45.643 1.079 42.430620 -73.064073 +01236 1509 784 12437975 157895 4.802 0.061 42.266496 -73.378393 +01237 2496 1334 160121626 1140685 61.823 0.440 42.547818 -73.268033 +01238 6047 3155 90217712 2706357 34.833 1.045 42.297501 -73.230148 +01240 4534 2920 55374233 1159162 21.380 0.448 42.367862 -73.269768 +01242 476 214 1288423 24934 0.497 0.010 42.333734 -73.249199 +01243 334 188 48306686 57277 18.651 0.022 42.350122 -73.024112 +01244 151 84 6345198 70886 2.450 0.027 42.118094 -73.257497 +01245 985 914 72467551 2047530 27.980 0.791 42.186893 -73.223105 +01247 16087 7785 136035510 1480109 52.524 0.571 42.698437 -73.084090 +01253 731 568 47310437 1044523 18.267 0.403 42.206683 -73.113214 +01254 972 591 37713379 147081 14.561 0.057 42.382019 -73.365492 +01255 915 671 134177247 3047061 51.806 1.176 42.107496 -73.118607 +01256 692 357 92838285 452299 35.845 0.175 42.594166 -73.022320 +01257 2121 1231 93848678 2221979 36.235 0.858 42.085245 -73.367482 +01258 374 338 66839821 399664 25.807 0.154 42.109280 -73.462886 +01259 635 431 65593267 2042077 25.326 0.788 42.075469 -73.234376 +01260 240 134 6503634 101867 2.511 0.039 42.295696 -73.342543 +01262 1238 1068 31167340 2127685 12.034 0.822 42.292202 -73.319209 +01264 137 109 29425420 90081 11.361 0.035 42.231590 -73.202428 +01266 1463 1096 67473737 780772 26.052 0.301 42.312338 -73.387824 +01267 7989 3202 141293372 342660 54.554 0.132 42.671616 -73.246981 +01270 778 441 82512104 420829 31.858 0.162 42.515272 -73.031166 +01301 17700 8485 66020418 1388444 25.491 0.536 42.626761 -72.601530 +01330 1506 771 86313800 631880 33.326 0.244 42.513947 -72.821517 +01331 13263 6028 137844144 3586460 53.222 1.385 42.562408 -72.191080 +01337 2596 1165 96405836 165266 37.223 0.064 42.689307 -72.582249 +01338 187 82 8946607 12299 3.454 0.005 42.572652 -72.824428 +01339 1438 787 142392158 630079 54.978 0.243 42.603776 -72.889644 +01340 1701 954 114430561 658628 44.182 0.254 42.694726 -72.711079 +01341 1833 801 92426089 465179 35.686 0.180 42.496937 -72.709414 +01342 1492 518 46190734 2211971 17.834 0.854 42.543889 -72.609458 +01343 75 38 12615499 76887 4.871 0.030 42.657625 -72.978931 +01344 1498 654 35313664 1342460 13.635 0.518 42.613418 -72.426427 +01346 533 429 54379277 99661 20.996 0.038 42.693275 -72.823113 +01347 166 75 1495232 221070 0.577 0.085 42.559294 -72.518753 +01349 1091 496 19874430 573426 7.674 0.221 42.563061 -72.482122 +01350 121 77 27768017 274112 10.721 0.106 42.727772 -72.985346 +01351 2270 1032 54198079 1126552 20.926 0.435 42.539880 -72.521689 +01354 1500 608 35647707 2665409 13.764 1.029 42.624076 -72.508643 +01355 878 418 122713549 35676837 47.380 13.775 42.458522 -72.327219 +01360 3032 1391 88796644 2812794 34.285 1.086 42.677091 -72.453876 +01364 7969 3652 101602863 2854976 39.229 1.102 42.615152 -72.289902 +01366 1277 566 104649746 1453531 40.405 0.561 42.475621 -72.192468 +01367 522 300 68727436 1770127 26.536 0.683 42.695532 -72.909148 +01368 1261 578 108369099 1829133 41.842 0.706 42.679456 -72.176935 +01370 4084 1976 129031063 1398461 49.819 0.540 42.593338 -72.726941 +01373 4600 2076 62576781 1471565 24.161 0.568 42.473862 -72.615612 +01375 3684 1729 36856254 1349204 14.230 0.521 42.466762 -72.546855 +01376 5247 2503 7149877 1465720 2.761 0.566 42.595280 -72.555002 +01378 774 441 88114809 812951 34.021 0.314 42.673533 -72.353213 +01379 813 420 78233305 962449 30.206 0.372 42.556310 -72.407148 +01420 40337 17128 78520256 1778875 30.317 0.687 42.584925 -71.816862 +01430 6089 2606 95807807 6750019 36.992 2.606 42.657005 -71.923442 +01431 3074 1191 61389725 1002029 23.703 0.387 42.676293 -71.832523 +01432 7089 3422 21888062 1219817 8.451 0.471 42.566573 -71.575135 +01434 1795 122 13678208 401234 5.281 0.155 42.539088 -71.611613 +01436 3336 1214 24849921 506517 9.595 0.196 42.603374 -72.088395 +01438 559 214 1403430 48435 0.542 0.019 42.562243 -72.031402 +01440 20347 9179 62268795 2487879 24.042 0.961 42.586516 -71.988062 +01450 10646 3989 84853731 2575943 32.762 0.995 42.611760 -71.565269 +01451 4747 1824 49550919 1682988 19.132 0.650 42.501908 -71.568201 +01452 4382 1662 106373488 2406515 41.071 0.929 42.489598 -72.002878 +01453 40883 17912 73735859 1369889 28.470 0.529 42.519960 -71.763075 +01460 8924 3477 42791669 2583059 16.522 0.997 42.535931 -71.490569 +01462 10086 4133 68579436 3269933 26.479 1.263 42.582607 -71.720464 +01463 11497 4348 58533407 1546295 22.600 0.597 42.670643 -71.602858 +01464 7211 2427 38884871 204034 15.014 0.079 42.573654 -71.640986 +01467 316 141 4908783 28882 1.895 0.011 42.492367 -71.609303 +01468 4021 1671 55425624 688465 21.400 0.266 42.542767 -72.068345 +01469 6801 2572 59261468 606711 22.881 0.234 42.665059 -71.695333 +01473 7277 2960 91766611 4719705 35.431 1.822 42.554600 -71.905440 +01474 2125 813 25690700 78185 9.919 0.030 42.669685 -71.752751 +01475 10270 4179 110986284 2716014 42.852 1.049 42.668160 -72.055644 +01501 16075 6770 40018190 2420118 15.451 0.934 42.198708 -71.846006 +01503 2866 1189 33598202 523984 12.972 0.202 42.384929 -71.633889 +01504 9026 3628 28685128 819182 11.075 0.316 42.039991 -71.532406 +01505 4355 1778 41598694 9562396 16.061 3.692 42.355049 -71.716157 +01506 3390 1493 40266781 2729462 15.547 1.054 42.181793 -72.107473 +01507 12981 4885 109254326 4179167 42.183 1.614 42.133935 -71.968025 +01510 13606 6397 14645926 4178501 5.655 1.613 42.411887 -71.690005 +01515 2183 931 25514944 1433058 9.851 0.553 42.209682 -72.040178 +01516 8500 3306 95201650 4019691 36.758 1.552 42.053072 -71.752241 +01518 2974 1326 22976455 1925342 8.871 0.743 42.127477 -72.118818 +01519 6595 2539 28261149 279201 10.912 0.108 42.203404 -71.679739 +01520 13997 5339 46830036 1794650 18.081 0.693 42.336372 -71.850626 +01521 2481 1365 31841683 1990803 12.294 0.769 42.046798 -72.180149 +01522 3310 1298 42419059 1399750 16.378 0.540 42.375634 -71.867382 +01523 7582 2462 65263989 1138106 25.199 0.439 42.482819 -71.675513 +01524 6696 2594 41375156 2508035 15.975 0.968 42.249603 -71.919217 +01525 290 120 1162429 81164 0.449 0.031 42.106794 -71.630518 +01527 13246 5618 40323227 1862226 15.569 0.719 42.192246 -71.777649 +01529 3190 1162 12706301 151536 4.906 0.059 42.036642 -71.578779 +01531 999 390 53842961 405495 20.789 0.157 42.319125 -72.130814 +01532 14155 5314 47852201 705487 18.476 0.272 42.323342 -71.646236 +01534 5631 2123 22682354 325730 8.758 0.126 42.142074 -71.643348 +01535 4680 2058 55084070 1759511 21.268 0.679 42.267564 -72.066876 +01536 6888 2794 21598203 755400 8.339 0.292 42.231309 -71.692642 +01537 2248 1077 18085937 295745 6.983 0.114 42.158966 -71.897051 +01540 11291 4395 50128319 2048507 19.355 0.791 42.116167 -71.857369 +01541 3413 1339 91709834 1032231 35.409 0.399 42.454125 -71.877540 +01542 2202 829 10426627 422661 4.026 0.163 42.204251 -71.908907 +01543 7973 2990 90918826 2972193 35.104 1.148 42.388977 -71.970514 +01545 35299 13955 53712526 2715591 20.739 1.048 42.284767 -71.714228 +01550 16719 7527 52512755 1627401 20.275 0.628 42.059669 -72.034040 +01560 4527 1844 9238873 270445 3.567 0.104 42.175395 -71.674223 +01561 330 102 319273 0 0.123 0.000 42.443970 -71.685583 +01562 11688 5295 85038323 3036877 32.833 1.173 42.247211 -71.991867 +01564 7808 2965 79343448 2761462 30.635 1.066 42.447924 -71.776045 +01566 6294 2663 73430539 2562230 28.352 0.989 42.103214 -72.079545 +01568 7480 2808 55529918 593264 21.440 0.229 42.176526 -71.603588 +01569 13569 5349 75315947 1580796 29.080 0.610 42.055892 -71.631294 +01570 16767 8011 32048670 5780810 12.374 2.232 42.047532 -71.846952 +01571 11390 4403 53915863 2717076 20.817 1.049 42.053778 -71.935075 +01581 18272 7350 53312878 2229292 20.584 0.861 42.268426 -71.613309 +01583 7591 2721 32672267 2354742 12.615 0.909 42.369417 -71.785036 +01585 4554 2049 66174237 1669484 25.550 0.645 42.240796 -72.162645 +01588 9733 3903 22296389 1660430 8.609 0.641 42.119228 -71.671822 +01590 8875 3360 82903473 4181050 32.009 1.614 42.132051 -71.750318 +01602 22819 9451 14936885 631588 5.767 0.244 42.271563 -71.849991 +01603 19916 7950 11691789 340396 4.514 0.131 42.244637 -71.843925 +01604 34677 15570 16677756 474175 6.439 0.183 42.253254 -71.767957 +01605 26221 11140 14612620 341309 5.642 0.132 42.289683 -71.787793 +01606 19077 8449 15358057 24039 5.930 0.009 42.315249 -71.795741 +01607 8351 3850 8199220 136988 3.166 0.053 42.225960 -71.788910 +01608 3888 1743 1159110 0 0.448 0.000 42.261980 -71.801462 +01609 22421 8307 9893464 56961 3.820 0.022 42.285114 -71.829987 +01610 23945 8321 5505953 9032 2.126 0.003 42.247049 -71.808366 +01611 2242 916 8915204 647961 3.442 0.250 42.237604 -71.875838 +01612 4845 1608 39666695 1982438 15.315 0.765 42.296636 -71.929607 +01701 31217 12590 43923156 1816225 16.959 0.701 42.320169 -71.440409 +01702 37206 14984 20957508 1972446 8.092 0.762 42.282576 -71.436760 +01718 469 205 121367 0 0.047 0.000 42.519816 -71.429283 +01719 4996 2073 26640078 316293 10.286 0.122 42.485985 -71.520985 +01720 21361 8294 51057015 1113826 19.713 0.430 42.483953 -71.438495 +01721 16593 6609 31933385 1395841 12.330 0.539 42.257755 -71.473526 +01730 13221 5372 35478046 460820 13.698 0.178 42.499331 -71.281905 +01731 1396 477 2049705 0 0.791 0.000 42.456748 -71.279484 +01740 4897 1738 51675247 348786 19.952 0.135 42.439937 -71.601876 +01741 4852 1758 39536091 641968 15.265 0.248 42.536620 -71.361832 +01742 17726 6964 63296150 3384588 24.439 1.307 42.462911 -71.364496 +01745 397 188 1033541 3023 0.399 0.001 42.293073 -71.499163 +01746 13547 5087 48288456 1071734 18.644 0.414 42.195951 -71.453430 +01747 5911 2285 13392801 443995 5.171 0.171 42.124080 -71.533416 +01748 14925 5128 68016796 4215056 26.261 1.627 42.224104 -71.540484 +01749 19063 7998 29841347 890275 11.522 0.344 42.389071 -71.545864 +01752 38499 16416 54041301 3200938 20.865 1.236 42.349617 -71.547214 +01754 10106 4447 13502214 407075 5.213 0.157 42.425955 -71.456256 +01756 5839 2091 46035300 552653 17.774 0.213 42.094470 -71.544902 +01757 28061 11436 38538162 711615 14.880 0.275 42.158692 -71.521419 +01760 32786 14039 38359306 2599042 14.811 1.003 42.284822 -71.348811 +01770 4119 1495 40966896 961380 15.817 0.371 42.233570 -71.374690 +01772 9370 3272 35264800 3918373 13.616 1.513 42.302877 -71.530828 +01773 5112 2154 35266029 2003417 13.616 0.774 42.425506 -71.310812 +01775 6590 2526 44839702 1739781 17.313 0.672 42.429688 -71.512514 +01776 17659 5951 62778117 1244383 24.239 0.480 42.383367 -71.421070 +01778 13109 5058 39388852 2080227 15.208 0.803 42.343687 -71.381186 +01801 38903 16737 32769438 806847 12.652 0.312 42.488659 -71.154425 +01803 24487 9664 30291646 324832 11.696 0.125 42.503227 -71.201713 +01810 33201 12423 79897507 3425223 30.849 1.322 42.648044 -71.161751 +01821 30310 11159 42910631 1026154 16.568 0.396 42.549330 -71.251725 +01824 24911 9849 45964727 1008300 17.747 0.389 42.590790 -71.355182 +01826 29422 11332 53421277 1706647 20.626 0.659 42.679723 -71.300680 +01827 3179 1098 42620556 784744 16.456 0.303 42.676078 -71.500517 +01830 25137 10751 35735901 3350990 13.798 1.294 42.796313 -71.053436 +01832 22060 9283 29420960 1250817 11.359 0.483 42.791114 -71.132859 +01833 8183 3044 33307258 750803 12.860 0.290 42.727885 -70.982034 +01834 6459 2439 23008816 1330583 8.884 0.514 42.753900 -71.015935 +01835 13682 5623 20235250 2287169 7.813 0.883 42.751157 -71.094242 +01840 4733 2347 1290418 200628 0.498 0.077 42.706763 -71.160403 +01841 47225 15506 8000223 462412 3.089 0.179 42.712015 -71.164873 +01843 24425 9287 8726317 579700 3.369 0.224 42.689974 -71.160383 +01844 47249 18337 57543453 2042287 22.218 0.789 42.742751 -71.178588 +01845 28352 10964 68133522 3720537 26.307 1.437 42.673909 -71.091334 +01850 15237 5938 3521737 305905 1.360 0.118 42.656045 -71.303309 +01851 30190 10760 8645533 115440 3.338 0.045 42.627812 -71.335330 +01852 33508 14430 12828750 627353 4.953 0.242 42.631849 -71.295785 +01854 27606 10315 10187861 1393292 3.934 0.538 42.649481 -71.348229 +01860 6338 2555 21907317 1027094 8.458 0.397 42.838603 -71.011997 +01862 10227 3491 23934124 1075799 9.241 0.415 42.578543 -71.295592 +01863 8891 3958 11973645 841571 4.623 0.325 42.633780 -71.389470 +01864 14892 5633 34032377 923752 13.140 0.357 42.578222 -71.084398 +01867 23956 9187 25733362 47893 9.936 0.018 42.535183 -71.105423 +01876 28667 10679 52981194 935803 20.456 0.361 42.611801 -71.227571 +01879 11305 4213 43464244 3639806 16.782 1.405 42.667762 -71.428820 +01880 24733 10323 17889529 1399492 6.907 0.540 42.501528 -71.067500 +01886 21951 7876 78391449 2854186 30.267 1.102 42.585295 -71.439826 +01887 22325 7808 43971880 464398 16.978 0.179 42.564647 -71.164516 +01890 21382 7988 15615337 818634 6.029 0.316 42.452752 -71.144319 +01901 1689 1034 641320 68753 0.248 0.027 42.460711 -70.946073 +01902 45139 18354 6223889 235638 2.403 0.091 42.471039 -70.941535 +01904 18203 7182 11708211 1303900 4.521 0.503 42.492456 -70.973930 +01905 25251 9187 9219345 1195154 3.560 0.461 42.465998 -70.975792 +01906 26660 10786 27973350 2606092 10.801 1.006 42.468432 -71.013946 +01907 14027 5960 7864226 1107037 3.036 0.427 42.474287 -70.905908 +01908 3410 1677 2708929 3559697 1.046 1.374 42.428256 -70.926041 +01913 16283 7110 31761151 3785528 12.263 1.462 42.851284 -70.955837 +01915 39502 16641 39091336 3958118 15.093 1.528 42.570269 -70.866996 +01921 7961 2756 61010486 2188501 23.556 0.845 42.683108 -71.018330 +01922 3108 1115 24831876 776283 9.588 0.300 42.757313 -70.914241 +01923 26342 11135 34194563 2348722 13.203 0.907 42.574174 -70.950516 +01929 3504 1600 36187007 5125535 13.972 1.979 42.634421 -70.776592 +01930 28789 14557 67847425 13972397 26.196 5.395 42.619910 -70.681824 +01937 151 0 189212 0 0.073 0.000 42.585723 -70.984051 +01938 13175 6006 78817223 13930917 30.432 5.379 42.683860 -70.842664 +01940 12108 4729 27320434 1710864 10.548 0.661 42.534118 -71.038574 +01944 5136 2394 23902799 3207908 9.229 1.239 42.576636 -70.767154 +01945 19808 8838 11360555 8555892 4.386 3.303 42.501835 -70.859126 +01949 8987 3045 34849382 2665532 13.455 1.029 42.606666 -71.010316 +01950 17416 8264 21621492 5985744 8.348 2.311 42.812358 -70.891095 +01951 3558 1821 35652314 6826542 13.765 2.636 42.773351 -70.850211 +01952 8283 4550 39960063 6038577 15.429 2.332 42.844793 -70.841476 +01960 50944 22024 41432495 1461233 15.997 0.564 42.534202 -70.969734 +01966 6952 4223 18106523 4167724 6.991 1.609 42.640741 -70.620242 +01969 5856 2253 45304086 4366203 17.492 1.686 42.720877 -70.891222 +01970 41109 19063 21002235 14198461 8.109 5.482 42.524435 -70.870859 +01982 7764 2880 36737604 1888109 14.184 0.729 42.626223 -70.857230 +01983 6089 2176 30880674 2324542 11.923 0.898 42.641379 -70.943440 +01984 4875 1430 19841456 1246967 7.661 0.481 42.600595 -70.883406 +01985 4235 1580 34838123 3299757 13.451 1.274 42.799516 -70.964411 +02019 16332 6365 47523223 1424298 18.349 0.550 42.076682 -71.474490 +02021 21561 8762 48682844 2114286 18.797 0.816 42.175737 -71.125385 +02025 7542 2980 25353993 2759142 9.789 1.065 42.236423 -70.814436 +02026 24711 10184 26532271 1037912 10.244 0.401 42.246872 -71.179462 +02030 5589 1969 39156781 816021 15.119 0.315 42.235239 -71.288033 +02032 4226 1593 6059763 155224 2.340 0.060 42.156882 -71.216187 +02035 16865 6895 51406167 2593185 19.848 1.001 42.061338 -71.245802 +02038 31635 11394 68961360 1038205 26.626 0.401 42.084858 -71.410571 +02043 22157 8953 57360231 2272722 22.147 0.878 42.216098 -70.881270 +02045 10293 5762 6884305 14237684 2.658 5.497 42.292253 -70.923919 +02047 180 264 619346 21837 0.239 0.008 42.133734 -70.685860 +02048 23184 8746 52040205 851508 20.093 0.329 42.017300 -71.217300 +02050 25429 11292 75312115 10899419 29.078 4.208 42.115139 -70.710331 +02052 12024 4237 37301542 605144 14.402 0.234 42.184599 -71.305307 +02053 12752 4613 29895562 335626 11.543 0.130 42.155816 -71.432781 +02054 7891 3158 31135982 602483 12.022 0.233 42.172551 -71.362811 +02056 10981 3121 38510383 1290280 14.869 0.498 42.116245 -71.329360 +02061 10506 3675 54233819 816474 20.940 0.315 42.164569 -70.818844 +02062 28602 12479 26828047 419990 10.358 0.162 42.187360 -71.195955 +02066 17656 7419 43831891 5690167 16.924 2.197 42.202273 -70.758184 +02067 17486 6414 58720809 2471504 22.672 0.954 42.107782 -71.181771 +02071 1707 321 2513156 33452 0.970 0.013 42.103425 -71.273589 +02072 26999 10799 41680231 969279 16.093 0.374 42.119006 -71.103650 +02081 18472 7156 46419365 1417966 17.923 0.547 42.146227 -71.270378 +02090 14636 5438 28215944 740388 10.894 0.286 42.219645 -71.216769 +02093 10955 3869 56218838 2344453 21.706 0.905 42.052671 -71.356858 +02108 3825 2278 354836 0 0.137 0.000 42.357767 -71.064848 +02109 3771 2462 449654 292691 0.174 0.113 42.367223 -71.050633 +02110 1733 1264 479769 234496 0.185 0.091 42.361962 -71.047846 +02111 7383 3628 669967 56933 0.259 0.022 42.350518 -71.059062 +02113 6915 4682 260829 0 0.101 0.000 42.365335 -71.055236 +02114 11999 7672 1164209 303495 0.450 0.117 42.363175 -71.068646 +02115 28441 10838 1834246 103612 0.708 0.040 42.336342 -71.104176 +02116 20628 12644 1632629 265681 0.630 0.103 42.350579 -71.076397 +02118 26498 12967 2850698 15328 1.101 0.006 42.337860 -71.069805 +02119 25346 11048 4136145 0 1.597 0.000 42.324026 -71.085021 +02120 15181 5335 1607730 0 0.621 0.000 42.332091 -71.096545 +02121 25978 10589 4520355 23476 1.745 0.009 42.306267 -71.085897 +02122 23479 8887 5263269 1641767 2.032 0.634 42.291413 -71.042158 +02124 47783 19053 7777026 186127 3.003 0.072 42.285805 -71.070571 +02125 33295 13263 5523791 799283 2.133 0.309 42.315748 -71.055896 +02126 25562 10151 5392506 62719 2.082 0.024 42.274016 -71.096790 +02127 31799 16409 5230991 1590045 2.020 0.614 42.334992 -71.039093 +02128 40508 15854 12561059 2952872 4.850 1.140 42.361129 -71.006975 +02129 16439 8648 3492181 1266666 1.348 0.489 42.379657 -71.061487 +02130 35401 16016 8635553 328448 3.334 0.127 42.309174 -71.113835 +02131 29826 12286 6714525 12766 2.592 0.005 42.284333 -71.126228 +02132 25861 11341 11813317 248109 4.561 0.096 42.280455 -71.162017 +02134 21503 9664 3435273 117848 1.326 0.046 42.358016 -71.128608 +02135 42780 20834 6824138 572755 2.635 0.221 42.349688 -71.153964 +02136 28488 11092 11887342 279164 4.590 0.108 42.255083 -71.129220 +02138 36314 14949 7097709 838564 2.740 0.324 42.379637 -71.135152 +02139 36349 15402 4031035 368360 1.556 0.142 42.362986 -71.103353 +02140 17607 8638 2987938 53843 1.154 0.021 42.392157 -71.133996 +02141 11910 6596 1657355 29054 0.640 0.011 42.370300 -71.082560 +02142 3141 1794 716170 577829 0.277 0.223 42.361471 -71.081994 +02143 24514 11752 3981832 15276 1.537 0.006 42.380985 -71.096552 +02144 23891 11389 2802134 6468 1.082 0.002 42.399655 -71.122550 +02145 25439 10520 3615157 234798 1.396 0.091 42.391577 -71.089910 +02148 59503 25191 13063769 99890 5.044 0.039 42.430140 -71.057694 +02149 41550 16662 8873256 630370 3.426 0.243 42.405938 -71.054649 +02150 35124 12596 5718794 638247 2.208 0.246 42.396824 -71.031348 +02151 51808 22125 15190546 3291332 5.865 1.271 42.418294 -71.001257 +02152 17497 8320 5108308 3079916 1.972 1.189 42.373055 -70.974807 +02155 57964 24032 21229511 1455993 8.197 0.562 42.423840 -71.107673 +02163 2582 712 256727 32165 0.099 0.012 42.366168 -71.122850 +02169 55055 26481 23235908 3796812 8.971 1.466 42.248386 -71.002279 +02170 19505 8041 5394724 186181 2.083 0.072 42.266412 -71.015573 +02171 17711 8316 6357853 4944053 2.455 1.909 42.292142 -71.020475 +02176 26983 11751 12117823 219781 4.679 0.085 42.455723 -71.059019 +02180 21437 9458 15589590 1631902 6.019 0.630 42.474208 -71.097665 +02184 35744 14302 35608882 2108884 13.749 0.814 42.205416 -71.002168 +02186 27003 9700 33697230 765195 13.011 0.295 42.241589 -71.082651 +02188 14608 6521 9632561 378900 3.719 0.146 42.204578 -70.957749 +02189 14559 6292 9905564 925710 3.825 0.357 42.208704 -70.931021 +02190 16119 6904 18436640 1374554 7.118 0.531 42.166731 -70.952363 +02191 8457 3763 5242350 2721859 2.024 1.051 42.243453 -70.942033 +02199 1146 927 148951 0 0.058 0.000 42.347463 -71.082039 +02203 0 0 80317 0 0.031 0.000 42.360598 -71.058775 +02210 2090 1358 2399614 1404157 0.926 0.542 42.347792 -71.039562 +02215 26125 9324 1979040 280050 0.764 0.108 42.347593 -71.102934 +02301 61025 23673 32204729 441571 12.434 0.170 42.078371 -71.042304 +02302 32741 11857 23025347 67031 8.890 0.026 42.088123 -70.998293 +02322 4356 1769 11112284 639902 4.290 0.247 42.132400 -71.053930 +02324 26563 8336 70749309 2834816 27.316 1.095 41.972387 -70.978778 +02330 11509 4600 96872155 6038938 37.403 2.332 41.878046 -70.744138 +02332 15059 5875 61481268 10661003 23.738 4.116 42.044373 -70.706115 +02333 13794 4906 44570841 842755 17.209 0.325 42.037278 -70.940459 +02338 7518 3014 41448333 3604915 16.003 1.392 42.003513 -70.863334 +02339 13879 4852 40427614 218489 15.609 0.084 42.122956 -70.856310 +02341 10218 3593 38991864 1801806 15.055 0.696 42.050335 -70.867161 +02343 10745 4261 18146751 280250 7.007 0.108 42.148913 -71.003737 +02346 23106 9020 178363551 7968490 68.867 3.077 41.878004 -70.869267 +02347 10612 4180 77093626 17019522 29.766 6.571 41.834474 -70.957040 +02351 16029 6399 25007126 617669 9.655 0.238 42.119964 -70.957216 +02356 12564 4406 35492978 827752 13.704 0.320 42.060485 -71.124970 +02357 1360 8 1246186 53728 0.481 0.021 42.055136 -71.081416 +02359 17828 6548 56402221 4410938 21.777 1.703 42.067804 -70.805713 +02360 56271 24800 247368929 33944781 95.510 13.106 41.883359 -70.631381 +02364 12629 5010 48321362 2940978 18.657 1.136 41.987196 -70.741942 +02366 197 0 2451742 69606 0.947 0.027 41.850570 -70.656046 +02367 2820 1043 38005424 1105747 14.674 0.427 41.959100 -70.802753 +02368 32158 12021 26096452 1518228 10.076 0.586 42.176446 -71.051567 +02370 17489 7051 26704840 217611 10.311 0.084 42.130399 -70.910615 +02375 9188 3741 37729521 359957 14.567 0.139 42.003041 -71.076928 +02379 6916 2669 39681845 913634 15.321 0.353 42.021617 -71.026717 +02382 14489 5522 17974070 59307 6.940 0.023 42.078974 -70.939390 +02420 14052 5251 17052453 126708 6.584 0.049 42.457055 -71.215464 +02421 17342 6768 25510908 417186 9.850 0.161 42.438547 -71.239573 +02445 20679 8974 6740785 119571 2.603 0.046 42.325483 -71.135045 +02446 29311 14229 3333660 11957 1.287 0.005 42.343503 -71.122248 +02451 17426 7898 14303526 1828792 5.523 0.706 42.397823 -71.255708 +02452 14238 5033 9580492 86311 3.699 0.033 42.392073 -71.218443 +02453 28968 11995 9061760 736213 3.499 0.284 42.369542 -71.240513 +02457 1432 90 413241 0 0.160 0.000 42.299388 -71.274242 +02458 12131 5341 5185782 97094 2.002 0.037 42.353410 -71.187882 +02459 19095 6763 12962330 218481 5.005 0.084 42.314779 -71.192017 +02460 8742 3774 3480934 23292 1.344 0.009 42.351824 -71.208490 +02461 7059 2771 3767371 36499 1.455 0.014 42.317362 -71.206508 +02462 1554 668 1369318 69749 0.529 0.027 42.328708 -71.255900 +02464 2953 1287 1463154 29494 0.565 0.011 42.312975 -71.218882 +02465 11710 4520 5809240 1401 2.243 0.001 42.348912 -71.226330 +02466 8096 3090 4638221 214162 1.791 0.083 42.344457 -71.248617 +02467 22491 7000 12618589 142371 4.872 0.055 42.314608 -71.153060 +02468 5273 1930 3833292 57129 1.480 0.022 42.328553 -71.229553 +02472 32014 15622 10440627 320456 4.031 0.124 42.369451 -71.177925 +02474 26312 12317 7905847 706806 3.052 0.273 42.420949 -71.156370 +02476 16532 7657 5422176 191590 2.094 0.074 42.415637 -71.175670 +02478 24664 10158 12035126 185797 4.647 0.072 42.395317 -71.180284 +02481 16244 5044 14612716 246885 5.642 0.095 42.311927 -71.275531 +02482 10306 4055 10898492 1043141 4.208 0.403 42.293137 -71.298122 +02492 19931 7382 24675395 910125 9.527 0.351 42.276029 -71.244543 +02493 11261 4008 43574801 1316917 16.824 0.508 42.360502 -71.303433 +02494 8955 3740 7166369 220234 2.767 0.085 42.299405 -71.232706 +02532 12690 6601 36913958 6866891 14.253 2.651 41.751767 -70.597596 +02534 842 657 5920954 1492817 2.286 0.576 41.667824 -70.620356 +02535 1177 2109 63129227 65865221 24.374 25.431 41.334413 -70.763059 +02536 19583 11956 71696166 9066635 27.682 3.501 41.596976 -70.567877 +02537 6293 3099 31330309 1594577 12.097 0.616 41.728423 -70.435818 +02538 3603 1739 11786097 1199921 4.551 0.463 41.776360 -70.648923 +02539 4067 5220 69429046 53111263 26.807 20.506 41.377660 -70.522091 +02540 8221 6605 27746696 4550024 10.713 1.757 41.574190 -70.628285 +02542 1139 449 79576588 127974 30.725 0.049 41.707839 -70.545520 +02543 635 863 25723427 52350280 9.932 20.213 41.478974 -70.766911 +02553 226 176 636142 1769252 0.246 0.683 41.712516 -70.620758 +02554 9852 10393 101337719 43413216 39.127 16.762 41.291167 -70.092826 +02556 3115 2593 10034104 1164445 3.874 0.450 41.639445 -70.624515 +02557 4491 4333 18660871 11124443 7.205 4.295 41.441299 -70.574093 +02558 2156 1792 3183300 2714452 1.229 1.048 41.745017 -70.653513 +02559 3376 2605 13033944 3840927 5.032 1.483 41.690243 -70.616283 +02561 539 266 1591817 218387 0.615 0.084 41.769348 -70.532595 +02562 2977 1574 8673478 835829 3.349 0.323 41.787209 -70.526717 +02563 10359 4742 34195598 2748064 13.203 1.061 41.728137 -70.476549 +02564 310 1203 14939825 2745176 5.768 1.060 41.270628 -69.986367 +02568 4000 3113 17279816 10058425 6.672 3.884 41.458594 -70.615920 +02571 10481 5629 51545392 12447645 19.902 4.806 41.761187 -70.695991 +02575 2725 2198 64751624 11033111 25.001 4.260 41.400252 -70.656934 +02576 3754 1775 25281005 1088191 9.761 0.420 41.772221 -70.762948 +02584 10 22 193854 0 0.075 0.000 41.258688 -70.007142 +02601 14089 8062 22253040 2151579 8.592 0.831 41.657863 -70.298442 +02630 1850 1142 10386956 5225394 4.010 2.018 41.704506 -70.303537 +02631 9679 7838 56908227 7192447 21.972 2.777 41.747016 -70.068779 +02632 10742 6171 18960855 3780163 7.321 1.460 41.659095 -70.346876 +02633 3884 4576 19564858 12631386 7.554 4.877 41.689729 -69.972128 +02635 3296 2184 14312729 2809147 5.526 1.085 41.622905 -70.438206 +02637 253 149 1811366 77848 0.699 0.030 41.705725 -70.270929 +02638 3207 3130 15284718 1503965 5.901 0.581 41.730204 -70.197411 +02639 2875 4912 7165342 954134 2.767 0.368 41.666904 -70.135645 +02641 532 637 5286447 683671 2.041 0.264 41.751246 -70.153472 +02642 4937 5925 35941612 8936074 13.877 3.450 41.841331 -69.977436 +02643 26 85 4904568 4657785 1.894 1.798 41.797777 -69.937327 +02644 3955 1480 9225733 569789 3.562 0.220 41.683488 -70.510786 +02645 9663 6222 43109614 4606194 16.645 1.778 41.705840 -70.058071 +02646 1676 2621 7798581 801405 3.011 0.309 41.670596 -70.071449 +02647 129 260 1226877 477504 0.474 0.184 41.631396 -70.308397 +02648 7301 3188 24027628 2665940 9.277 1.029 41.670946 -70.415370 +02649 14006 9887 60208417 10631766 23.247 4.105 41.617239 -70.489313 +02650 848 910 3744803 725520 1.446 0.280 41.701807 -69.963804 +02651 16 30 181584 0 0.070 0.000 41.874985 -70.003492 +02652 1175 1683 20714250 6477901 7.998 2.501 42.049537 -70.094989 +02653 5911 5303 31186211 13661465 12.041 5.275 41.768988 -69.973549 +02655 3518 3053 16911218 4559311 6.529 1.760 41.630252 -70.392536 +02657 2942 4494 25047886 12766243 9.671 4.929 42.059829 -70.200407 +02659 1108 1297 5298594 616486 2.046 0.238 41.681439 -70.023531 +02660 6261 4551 19964838 1368933 7.708 0.529 41.707700 -70.158560 +02663 173 412 3658101 2870102 1.412 1.108 41.894444 -70.012180 +02664 9371 7062 17964910 2264152 6.936 0.874 41.674727 -70.195648 +02666 828 1390 32944245 4790983 12.720 1.850 41.990779 -70.045721 +02667 2580 3902 48249844 16144940 18.629 6.234 41.921997 -70.023356 +02668 3278 1494 39046863 6347529 15.076 2.451 41.710853 -70.362696 +02669 285 550 2314379 510177 0.894 0.197 41.666646 -69.989702 +02670 1307 2330 5407196 1680718 2.088 0.649 41.660113 -70.170678 +02671 1023 1533 5215276 314663 2.014 0.121 41.670836 -70.113401 +02672 180 325 1280228 118006 0.494 0.046 41.635544 -70.314073 +02673 8402 6677 25868405 6815867 9.988 2.632 41.655182 -70.247476 +02675 6577 4040 23386325 1919492 9.030 0.741 41.704155 -70.231801 +02702 4125 1546 43494960 2932678 16.793 1.132 41.785113 -71.059047 +02703 43593 18019 69448027 2583322 26.814 0.997 41.931653 -71.294503 +02713 52 168 13095083 18327989 5.056 7.076 41.441295 -70.902217 +02715 3123 1124 29662098 1347569 11.453 0.520 41.815051 -71.157549 +02717 4745 1771 45791704 2062920 17.680 0.796 41.760108 -70.972874 +02718 6655 2442 26793703 853248 10.345 0.329 41.862486 -71.011690 +02719 15873 7475 31947040 8792564 12.335 3.395 41.632443 -70.871140 +02720 30287 14347 28154770 4365377 10.871 1.685 41.726343 -71.120746 +02721 26290 12538 10598682 5105238 4.092 1.971 41.675125 -71.148281 +02723 14767 7198 4136768 569121 1.597 0.220 41.692705 -71.129726 +02724 16908 8465 4811066 1475574 1.858 0.570 41.683936 -71.177500 +02725 2631 1035 6146870 6823597 2.373 2.635 41.722721 -71.185458 +02726 15534 6359 14313447 3521928 5.526 1.360 41.759700 -71.144592 +02738 4907 2445 36242423 15438122 13.993 5.961 41.704138 -70.752225 +02739 6045 3262 44939290 5666781 17.351 2.188 41.665794 -70.814531 +02740 43087 19943 14724476 2119935 5.685 0.819 41.637485 -70.938265 +02743 10307 4121 47725420 1356529 18.427 0.524 41.718217 -70.901151 +02744 11900 5340 3342654 1345734 1.291 0.520 41.606252 -70.913632 +02745 24576 10769 26749138 579370 10.328 0.224 41.700737 -70.950546 +02746 15342 6812 5480318 312026 2.116 0.120 41.661694 -70.941208 +02747 22927 7014 126401587 3917006 48.804 1.512 41.667013 -71.015965 +02748 11442 5519 58249951 8143593 22.490 3.144 41.553574 -70.971135 +02760 26739 10904 46544694 1334096 17.971 0.515 41.972493 -71.335208 +02762 8264 3482 28482636 1350192 10.997 0.521 42.012800 -71.336602 +02763 1973 692 2336585 30519 0.902 0.012 41.966696 -71.308178 +02764 3988 1476 27437198 149030 10.594 0.058 41.851929 -71.153598 +02766 19031 6741 72033187 3886006 27.812 1.500 41.957441 -71.179067 +02767 13566 5142 61665066 780810 23.809 0.301 41.940996 -71.048499 +02769 11608 4280 121568446 1409739 46.938 0.544 41.846963 -71.244503 +02770 5093 1833 83306341 6254147 32.165 2.415 41.759846 -70.838449 +02771 13708 5292 47566149 644150 18.365 0.249 41.837751 -71.320428 +02777 15840 6334 58720360 6717911 22.672 2.594 41.758175 -71.214202 +02779 6411 2187 42768262 2366395 16.513 0.914 41.838061 -71.077615 +02780 49036 21378 85565377 3569769 33.037 1.378 41.909112 -71.118346 +02790 15717 7086 139091966 26270579 53.704 10.143 41.599176 -71.082371 +02791 246 277 2728823 12397 1.054 0.005 41.528538 -71.078091 +02802 786 450 506432 47952 0.196 0.019 41.952130 -71.456233 +02804 2607 1051 26151288 232906 10.097 0.090 41.433934 -71.770314 +02806 16310 6386 21277195 18692444 8.215 7.217 41.734753 -71.319732 +02807 1051 1808 23521349 8258230 9.082 3.189 41.176840 -71.577096 +02808 2401 925 20630324 113236 7.965 0.044 41.408251 -71.749674 +02809 22938 9310 25438948 27921606 9.822 10.781 41.675730 -71.273331 +02812 1497 559 17189405 212756 6.637 0.082 41.478948 -71.652334 +02813 7831 5151 94433000 14161848 36.461 5.468 41.394479 -71.669861 +02814 7496 3161 115947905 6229826 44.768 2.405 41.895932 -71.700554 +02815 278 107 10805286 247502 4.172 0.096 41.774630 -71.647954 +02816 32611 13431 98019007 7663056 37.845 2.959 41.692046 -71.619116 +02817 6135 2370 130171360 2608393 50.259 1.007 41.637104 -71.678369 +02818 18082 8014 56516634 8882294 21.821 3.429 41.642919 -71.485719 +02822 6111 2401 144781539 2381582 55.900 0.920 41.570210 -71.626993 +02825 5377 2041 139970126 2741884 54.043 1.059 41.782067 -71.726833 +02826 791 332 6470179 86972 2.498 0.034 41.982746 -71.653144 +02827 2172 803 54595176 1039366 21.079 0.401 41.698748 -71.739118 +02828 7704 3226 12507949 840009 4.829 0.324 41.880083 -71.564311 +02830 5976 2444 50216380 1330588 19.389 0.514 41.974980 -71.654226 +02831 3515 1377 24910234 7226844 9.618 2.790 41.774762 -71.620289 +02832 4608 1959 57723107 1450412 22.287 0.560 41.514716 -71.729620 +02833 784 338 18300606 1279242 7.066 0.494 41.483583 -71.772112 +02835 5405 2998 24469397 14503819 9.448 5.600 41.510088 -71.378366 +02836 136 47 796196 3724 0.307 0.001 41.454574 -71.620332 +02837 3492 2367 53151692 11798979 20.522 4.556 41.518769 -71.167247 +02838 3400 1571 3703225 221915 1.430 0.086 41.965249 -71.476373 +02839 1902 769 11207815 408538 4.327 0.158 41.940757 -71.641513 +02840 23335 13108 18728198 8901093 7.231 3.437 41.478216 -71.322375 +02841 1392 4 1208304 2286566 0.467 0.883 41.511864 -71.332175 +02842 16095 7579 32873448 7031541 12.693 2.715 41.518611 -71.281685 +02852 22551 9796 80008827 8749508 30.892 3.378 41.588552 -71.459825 +02857 8412 3413 108120139 10464928 41.745 4.041 41.822761 -71.633605 +02858 570 206 1496468 114282 0.578 0.044 41.965375 -71.653424 +02859 6738 2675 73465725 3487782 28.365 1.347 41.959069 -71.757323 +02860 45199 20722 13980575 790327 5.398 0.305 41.870378 -71.388673 +02861 26178 11432 9231018 297809 3.564 0.115 41.878603 -71.353131 +02863 19385 7484 3110992 198711 1.201 0.077 41.890064 -71.393481 +02864 33396 13714 68323532 4675208 26.380 1.805 41.967599 -71.420477 +02865 16951 7090 43228908 1893178 16.691 0.731 41.913145 -71.448340 +02871 17171 7840 44091356 16237802 17.024 6.269 41.587259 -71.261269 +02872 218 454 15405407 10794746 5.948 4.168 41.597011 -71.321497 +02873 235 104 7272847 436515 2.808 0.169 41.533065 -71.780524 +02874 5860 2366 39249406 2646651 15.154 1.022 41.508687 -71.481857 +02875 307 138 2989259 16732 1.154 0.006 41.456486 -71.638865 +02876 430 270 348341 383006 0.134 0.148 41.994278 -71.585490 +02878 15780 7446 75250623 8363563 29.054 3.229 41.610137 -71.180471 +02879 20371 11222 96809526 13051486 37.378 5.039 41.424013 -71.534272 +02881 7841 1177 9361299 36212 3.614 0.014 41.478083 -71.524717 +02882 14184 8634 33140275 13112517 12.796 5.063 41.417110 -71.473206 +02885 10627 5154 15868796 6702395 6.127 2.588 41.724959 -71.258373 +02886 29269 13682 38654310 5649581 14.925 2.181 41.703849 -71.455568 +02888 19912 8889 15358671 3137217 5.930 1.211 41.747671 -71.406118 +02889 28217 12188 22521492 21182733 8.696 8.179 41.700591 -71.376927 +02891 21198 11716 68268331 12480943 26.359 4.819 41.361831 -71.789666 +02892 4988 1942 70949427 5028929 27.394 1.942 41.489847 -71.592808 +02893 29630 14289 20376824 602104 7.868 0.232 41.679006 -71.518688 +02894 722 254 11226698 297592 4.335 0.115 41.444470 -71.703237 +02895 41186 19214 20043727 501534 7.739 0.194 42.001706 -71.499949 +02896 11537 4798 61303231 2046638 23.669 0.790 41.975186 -71.544069 +02898 1696 618 29911041 327061 11.549 0.126 41.516047 -71.672436 +02903 10780 5578 4643515 1286186 1.793 0.497 41.818230 -71.409088 +02904 29359 14327 13453533 304730 5.194 0.118 41.858331 -71.436309 +02905 25223 9539 9707053 4780518 3.748 1.846 41.784725 -71.396103 +02906 28387 12949 8394524 1778284 3.241 0.687 41.840169 -71.390408 +02907 27445 10187 5700783 319815 2.201 0.123 41.798593 -71.424630 +02908 37467 14624 8186047 664 3.161 0.000 41.839825 -71.436794 +02909 43540 16832 8954986 70926 3.458 0.027 41.821521 -71.453869 +02910 21000 9042 8913159 466290 3.441 0.180 41.774999 -71.435594 +02911 15574 6975 6411107 131745 2.475 0.051 41.854888 -71.472812 +02912 1370 3 112446 0 0.043 0.000 41.825593 -71.402239 +02914 21963 9766 12653252 1002139 4.885 0.387 41.814295 -71.366169 +02915 16897 7895 14329687 6198671 5.533 2.393 41.772847 -71.354839 +02916 8139 3763 6617778 1042650 2.555 0.403 41.842653 -71.352424 +02917 13762 4689 55253789 2930064 21.334 1.131 41.905774 -71.523305 +02919 28790 12447 60827987 2290687 23.486 0.884 41.827440 -71.519879 +02920 37547 15260 23780134 587670 9.182 0.227 41.767344 -71.465508 +02921 12361 4506 34041167 297436 13.143 0.115 41.766854 -71.517296 +03031 11247 4302 89774262 1358119 34.662 0.524 42.874864 -71.600503 +03032 4953 1814 65270868 9068245 25.201 3.501 42.997261 -71.363424 +03033 4987 1698 51203527 935401 19.770 0.361 42.749989 -71.675830 +03034 3970 1512 85421126 969500 32.981 0.374 43.061446 -71.319997 +03036 4782 1602 67201175 316619 25.947 0.122 42.984657 -71.255213 +03037 4219 1725 124936065 3081566 48.238 1.190 43.141274 -71.248197 +03038 33269 13415 93204530 2253571 35.986 0.870 42.892761 -71.276763 +03042 6341 2698 67243946 561794 25.963 0.217 43.048512 -71.078737 +03043 1573 747 81180671 1398162 31.344 0.540 42.997000 -71.817788 +03044 4263 1565 43792587 722775 16.908 0.279 42.999856 -71.119714 +03045 13560 5202 92372713 1581693 35.665 0.611 43.021515 -71.563462 +03046 2758 1077 79985967 1237027 30.883 0.478 43.112454 -71.607480 +03047 1767 707 68326777 1442249 26.381 0.557 42.938740 -71.879424 +03048 3426 1483 76543803 143147 29.554 0.055 42.742343 -71.762060 +03049 7688 2931 82266249 1442104 31.763 0.557 42.749626 -71.585401 +03051 24480 9215 73397153 2414657 28.339 0.932 42.760508 -71.409494 +03052 8258 2909 38671274 906768 14.931 0.350 42.846073 -71.468297 +03053 23957 8651 106355191 332718 41.064 0.128 42.869670 -71.387919 +03054 25477 9807 84222976 2277135 32.519 0.879 42.853756 -71.520956 +03055 15086 6284 64379100 148030 24.857 0.057 42.818645 -71.673354 +03057 2500 905 43396473 212964 16.755 0.082 42.908885 -71.694199 +03060 29357 13009 16928572 918102 6.536 0.354 42.741295 -71.458792 +03062 26694 11020 31297883 416897 12.084 0.161 42.723884 -71.495387 +03063 16216 7038 20987772 373991 8.103 0.144 42.782146 -71.517930 +03064 14227 6101 10687706 976988 4.127 0.377 42.779378 -71.474918 +03070 5254 1940 111437362 970953 43.026 0.375 42.981207 -71.677524 +03071 5109 1917 84782332 819572 32.735 0.316 42.746257 -71.874434 +03076 12897 4598 68298210 1460658 26.370 0.564 42.730992 -71.337073 +03077 10155 4263 76176267 2062596 29.412 0.796 43.038038 -71.205107 +03079 28776 11810 64026012 2927425 24.721 1.130 42.788275 -71.221720 +03082 1615 658 73980829 297790 28.564 0.115 42.904156 -71.771414 +03084 1366 542 57575557 558160 22.230 0.216 42.826895 -71.875294 +03086 3728 1550 69876208 244914 26.979 0.095 42.832063 -71.759816 +03087 13592 5164 69428290 2739253 26.806 1.058 42.811092 -71.302688 +03101 3049 2007 2004383 301991 0.774 0.117 42.989027 -71.466111 +03102 31096 14412 23122461 878562 8.928 0.339 43.011915 -71.491119 +03103 36476 15040 25300566 988353 9.769 0.382 42.950538 -71.446547 +03104 32798 14784 21562259 383904 8.325 0.148 43.009552 -71.439782 +03106 13374 5155 94315385 2677210 36.415 1.034 43.082584 -71.446878 +03109 10314 4213 19074687 2269913 7.365 0.876 42.963734 -71.400350 +03110 21203 7634 85023294 751724 32.828 0.290 42.935584 -71.536871 +03215 247 1189 125552391 177915 48.476 0.069 43.942621 -71.447774 +03216 2159 993 99230223 1779557 38.313 0.687 43.451175 -71.797940 +03217 2076 1355 28461302 1379295 10.989 0.533 43.726075 -71.642508 +03218 960 395 35920012 921496 13.869 0.356 43.338034 -71.277262 +03220 7430 3639 80045126 4825717 30.906 1.863 43.474596 -71.482372 +03221 2091 1183 119052795 1795720 45.967 0.693 43.258003 -71.960169 +03222 5353 4249 188285939 14137587 72.698 5.459 43.642709 -71.789139 +03223 3427 2347 189667959 2123904 73.231 0.820 43.855414 -71.685470 +03224 2318 978 104115137 1974143 40.199 0.762 43.362490 -71.558020 +03225 3660 1936 74685885 4295110 28.836 1.658 43.363332 -71.239034 +03226 1117 811 34888726 8224632 13.471 3.176 43.710672 -71.515467 +03227 925 736 167114223 7977531 64.523 3.080 43.841356 -71.481080 +03229 5589 2381 112335445 4624061 43.373 1.785 43.203876 -71.697915 +03230 1231 725 105820083 932706 40.857 0.360 43.508650 -71.890242 +03231 202 124 5691388 520628 2.197 0.201 43.473341 -71.762339 +03233 115 87 1404333 4276 0.542 0.002 43.424042 -71.931188 +03234 4572 1841 88993924 527552 34.361 0.204 43.204812 -71.348563 +03235 8562 3967 76658454 4768742 29.598 1.841 43.449136 -71.674267 +03237 2254 1271 94659434 2732843 36.548 1.055 43.423067 -71.387249 +03238 75 43 7187877 118847 2.775 0.046 43.984428 -71.911271 +03240 1340 839 107947542 2420479 41.679 0.935 43.576693 -71.962546 +03241 876 810 107193585 5797562 41.388 2.238 43.751504 -71.817394 +03242 4836 1928 114051040 1769141 44.035 0.683 43.169421 -71.831189 +03243 1085 509 68293520 696119 26.368 0.269 43.528694 -71.768677 +03244 8092 3942 213115083 4945027 82.284 1.909 43.128103 -71.916940 +03245 2027 1498 78620240 13869746 30.355 5.355 43.745844 -71.594625 +03246 15963 9885 51907118 16893400 20.041 6.523 43.576423 -71.481025 +03249 7113 5108 100666488 38387399 38.868 14.821 43.522384 -71.367281 +03251 1662 2988 389909477 1532570 150.545 0.592 44.100673 -71.494074 +03253 6219 4690 100784482 36856111 38.913 14.230 43.631211 -71.498585 +03254 4049 4958 154116241 39207496 59.505 15.138 43.717721 -71.369179 +03255 2090 1571 95201212 6237765 36.757 2.408 43.314026 -72.024551 +03256 2169 1090 97312305 4275969 37.572 1.651 43.623326 -71.632625 +03257 4455 2290 59407967 7979377 22.938 3.081 43.417721 -71.990609 +03258 2517 961 54171126 256755 20.916 0.099 43.265259 -71.408835 +03259 368 291 60600664 252920 23.398 0.098 43.875712 -71.395018 +03260 809 404 63262340 917134 24.426 0.354 43.344231 -71.921638 +03261 4246 2146 72462607 5534024 27.978 2.137 43.210589 -71.215974 +03262 1231 1269 147467680 1165561 56.938 0.450 43.999889 -71.714447 +03263 4114 1772 63058514 704143 24.347 0.272 43.288501 -71.309368 +03264 7468 2444 95399381 1930074 36.834 0.745 43.738799 -71.702722 +03266 2163 1401 265266433 3989881 102.420 1.541 43.782889 -71.884746 +03268 1272 499 79092133 363032 30.538 0.140 43.388528 -71.769947 +03269 2966 1612 123300238 5568277 47.606 2.150 43.524186 -71.601607 +03273 312 229 15284920 751451 5.902 0.290 43.301982 -71.926953 +03275 11437 4753 111629686 700586 43.100 0.270 43.159633 -71.416755 +03276 8324 3788 102402502 3103411 39.538 1.198 43.431031 -71.575998 +03278 2952 1432 161197853 879831 62.239 0.340 43.309037 -71.835468 +03279 829 569 118341301 1379081 45.692 0.532 43.952771 -71.878102 +03280 1123 1093 117704177 5661070 45.446 2.186 43.178127 -72.087057 +03281 8785 3466 152386465 2713284 58.837 1.048 43.078061 -71.703612 +03282 902 528 107082675 1284848 41.345 0.496 43.858722 -71.923719 +03284 999 549 100284173 2235938 38.720 0.863 43.470501 -72.027553 +03285 2479 1822 129948859 1570232 50.174 0.606 43.947870 -71.635802 +03287 1295 621 68003168 416004 26.256 0.161 43.443115 -71.922637 +03290 4731 1947 118666228 4695074 45.817 1.813 43.129847 -71.131859 +03291 39 16 468160 0 0.181 0.000 43.179131 -71.142619 +03293 143 152 4201880 256899 1.622 0.099 43.970620 -71.679913 +03301 33008 14455 128255065 7137741 49.520 2.756 43.232270 -71.553012 +03303 15524 6699 174735473 4498282 67.466 1.737 43.311685 -71.665421 +03304 7519 2807 72603163 1013660 28.032 0.391 43.133177 -71.537242 +03307 5334 2098 128654532 1782638 49.674 0.688 43.333988 -71.446658 +03431 25280 10652 154023267 2010094 59.469 0.776 42.965044 -72.294803 +03440 2692 1352 93674070 2149359 36.168 0.830 43.052669 -71.988755 +03441 395 170 10142582 14217 3.916 0.005 42.780669 -72.446994 +03442 1491 685 28827061 671567 11.130 0.259 43.020281 -71.903693 +03443 742 319 28777183 288766 11.111 0.111 42.875727 -72.456114 +03444 1590 781 72683140 2860379 28.063 1.104 42.889279 -72.069849 +03445 691 312 51812080 489879 20.005 0.189 43.020616 -72.214374 +03446 6285 2679 110732975 591429 42.754 0.228 42.858271 -72.296360 +03447 2422 1260 90690658 3637278 35.016 1.404 42.753868 -72.153174 +03448 811 376 50385612 69497 19.454 0.027 43.052622 -72.274498 +03449 1654 864 77626641 3234024 29.972 1.249 42.977339 -71.997821 +03450 961 695 48126081 4073718 18.582 1.573 42.948318 -72.068558 +03451 4077 1843 55458810 5562051 21.413 2.148 42.809298 -72.504822 +03452 5457 2547 99227871 4488199 38.312 1.733 42.829254 -72.059901 +03455 2086 963 60901897 1181506 23.514 0.456 42.901769 -72.172904 +03456 742 408 67201281 1217456 25.947 0.470 43.138544 -72.208769 +03457 852 566 59525160 4054109 22.983 1.565 42.999759 -72.121568 +03458 6643 3124 138145111 1050414 53.338 0.406 42.868369 -71.940102 +03461 6014 2224 96281338 7127892 37.174 2.752 42.756663 -72.013247 +03462 1562 929 50616977 3286489 19.543 1.269 42.889215 -72.388934 +03464 1109 938 128934042 4990458 49.782 1.927 43.088157 -72.124299 +03465 2156 937 45644342 405681 17.623 0.157 42.828785 -72.188940 +03466 1332 568 39570237 1626415 15.278 0.628 42.890263 -72.502966 +03467 1842 666 91718664 2805200 35.413 1.083 42.968075 -72.430856 +03470 5033 2230 226214956 1911111 87.342 0.738 42.771336 -72.354694 +03561 5939 3075 131988339 10407106 50.961 4.018 44.343352 -71.795119 +03570 10051 4973 273397988 3464307 105.560 1.338 44.504596 -71.155466 +03574 2526 1517 234651984 915397 90.600 0.353 44.260435 -71.609203 +03575 124 387 71957724 56026 27.783 0.022 44.313744 -71.402889 +03576 3238 2489 368492454 2543014 142.276 0.982 44.912445 -71.385112 +03579 461 1163 1422872029 83246219 549.374 32.142 44.964771 -71.025563 +03580 1369 1055 246478333 841423 95.166 0.325 44.163382 -71.693299 +03581 3230 1709 389435567 3503716 150.362 1.353 44.289781 -71.152149 +03582 2577 1439 220743496 4112361 85.230 1.588 44.562046 -71.441428 +03583 1107 679 130386418 855647 50.342 0.330 44.396741 -71.464694 +03584 3774 1814 152855776 2524937 59.018 0.975 44.483853 -71.545865 +03585 2519 1385 209504380 2193646 80.890 0.847 44.222416 -71.877173 +03586 547 429 43098998 473829 16.641 0.183 44.218410 -71.800240 +03588 1641 1106 369200052 5483001 142.549 2.117 44.623040 -71.211846 +03590 1052 749 272724561 1803050 105.300 0.696 44.750929 -71.476720 +03592 1145 2182 852457298 31019764 329.136 11.977 45.116271 -71.260979 +03593 313 314 241865131 75654 93.385 0.029 44.302174 -71.299151 +03595 639 507 95162380 6315 36.742 0.002 44.305324 -71.497302 +03597 521 309 138354987 1966476 53.419 0.759 44.744505 -71.382495 +03598 3285 1916 159811764 2577297 61.704 0.995 44.378898 -71.628699 +03601 477 289 49731702 313496 19.202 0.121 43.236967 -72.288446 +03602 2654 1311 150241938 1680222 58.009 0.649 43.140832 -72.347568 +03603 5412 2415 110379750 5817280 42.618 2.246 43.246634 -72.383931 +03604 69 28 1262647 25256 0.488 0.010 43.127333 -72.376864 +03605 1160 682 83840974 1107124 32.371 0.427 43.236564 -72.184869 +03607 322 180 40320559 13 15.568 0.000 43.196510 -72.268353 +03608 2811 1287 87538488 3027468 33.799 1.169 43.076505 -72.395926 +03609 854 400 2310753 897631 0.892 0.347 43.143926 -72.446391 +03740 911 482 88787537 1097491 34.281 0.424 44.184322 -71.978799 +03741 4208 2090 199105097 4732706 76.875 1.827 43.674942 -72.008828 +03743 14103 6529 158428482 2586452 61.170 0.999 43.360725 -72.326929 +03745 1424 646 90516133 1869203 34.948 0.722 43.476455 -72.334150 +03746 216 101 18540035 0 7.158 0.000 43.494376 -72.257151 +03748 4762 2595 111258676 6690073 42.957 2.583 43.589031 -72.131929 +03750 870 365 32448349 339221 12.528 0.131 43.708188 -72.195047 +03751 583 352 7930840 497453 3.062 0.192 43.449753 -72.092311 +03752 810 444 58230518 238931 22.483 0.092 43.272295 -72.100485 +03753 2971 1760 70231641 2287193 27.117 0.883 43.516590 -72.149093 +03754 86 49 99446 0 0.038 0.000 43.377461 -72.138390 +03755 10538 3152 93501096 2945461 36.101 1.137 43.740983 -72.139134 +03765 503 249 11391216 375406 4.398 0.145 44.035227 -72.050203 +03766 8958 4525 82290818 1321571 31.773 0.510 43.633301 -72.235746 +03768 1716 810 139434680 2297796 53.836 0.887 43.816372 -72.094012 +03770 524 185 12816430 497 4.948 0.000 43.531300 -72.258815 +03771 754 355 57036410 3861788 22.022 1.491 44.296664 -71.980649 +03773 7841 3689 239102829 3128331 92.318 1.208 43.370546 -72.197494 +03774 1966 860 67092535 2098232 25.905 0.810 44.099753 -71.985475 +03777 1237 654 117316531 3364793 45.296 1.299 43.886181 -72.061138 +03779 790 476 103105717 3811670 39.809 1.472 43.961593 -72.001418 +03780 410 211 42118686 186983 16.262 0.072 44.046846 -71.988957 +03781 1840 799 122302895 1937605 47.221 0.748 43.560058 -72.299358 +03782 2945 2151 54686367 10134998 21.115 3.913 43.390088 -72.093129 +03784 4086 2080 21711602 1965851 8.383 0.759 43.638168 -72.306405 +03785 2400 1360 154699196 2080339 59.730 0.803 44.043516 -71.912200 +03801 21532 10947 61709181 14193990 23.826 5.480 43.074812 -70.805443 +03809 3716 2026 104420642 2623883 40.317 1.013 43.457846 -71.199131 +03810 1538 2263 59859217 47509608 23.112 18.344 43.513645 -71.293868 +03811 6753 2788 28852738 412792 11.140 0.159 42.839223 -71.166320 +03812 824 1388 156358082 655484 60.370 0.253 44.081130 -71.297237 +03813 3250 2023 249037888 5474229 96.154 2.114 44.127388 -71.060853 +03814 2329 1942 81982158 11288586 31.653 4.359 43.770937 -71.181505 +03816 1368 1069 75187121 14634126 29.030 5.650 43.686510 -71.269001 +03817 574 467 25632724 1324537 9.897 0.511 43.887170 -71.229402 +03818 3807 2378 219963235 2485032 84.928 0.959 43.959534 -71.275320 +03819 4377 1681 30342924 470661 11.715 0.182 42.927911 -71.120184 +03820 30039 13705 71925604 6505211 27.771 2.512 43.190665 -70.887661 +03823 1719 633 27454805 948967 10.600 0.366 43.174607 -70.941453 +03824 14638 3092 57959560 6236900 22.378 2.408 43.117346 -70.918420 +03825 8512 3635 119638678 4790456 46.193 1.850 43.215569 -71.038979 +03826 2470 1116 7366669 5519 2.844 0.002 42.890002 -71.130675 +03827 3150 1403 46024515 514243 17.770 0.199 42.903739 -70.995570 +03830 1610 1735 33330566 5212010 12.869 2.012 43.613563 -70.994500 +03832 395 294 64559964 3496268 24.927 1.350 43.906960 -71.047520 +03833 20955 8668 125711686 1583726 48.538 0.611 42.978415 -70.987522 +03835 6786 2832 96394821 824183 37.218 0.318 43.372560 -71.083259 +03836 1489 1580 90610392 8121798 34.985 3.136 43.842055 -71.075122 +03837 1519 839 52207029 1698332 20.157 0.656 43.422251 -71.336087 +03838 1031 1652 59534640 548608 22.986 0.212 44.112336 -71.225448 +03839 3735 1603 21940837 36123 8.471 0.014 43.262994 -70.991203 +03840 3566 1448 27002945 7437716 10.426 2.872 43.039732 -70.845622 +03841 6334 2683 27979295 1712894 10.803 0.661 42.881445 -71.183034 +03842 15345 9803 32995704 2596648 12.740 1.003 42.939601 -70.836728 +03844 2238 902 31896799 881127 12.315 0.340 42.924811 -70.886242 +03845 991 1148 34253090 180841 13.225 0.070 44.095422 -71.120516 +03846 799 992 168379170 99914 65.012 0.039 44.187473 -71.155786 +03847 294 245 2205977 3207 0.852 0.001 44.071875 -71.124033 +03848 6020 2477 50885764 3184188 19.647 1.229 42.913731 -71.073595 +03849 1585 1197 64729028 1518472 24.992 0.586 43.902455 -71.129871 +03850 372 367 7820672 2049267 3.020 0.791 43.690636 -71.297603 +03851 4040 1937 68325085 1591553 26.380 0.615 43.437254 -71.025435 +03852 558 244 17444288 1591653 6.735 0.615 43.495013 -70.986040 +03853 602 976 20518787 6696234 7.922 2.585 43.642126 -71.283253 +03854 968 537 2137294 3760000 0.825 1.452 43.060280 -70.718856 +03855 2638 1523 107514953 6832346 41.512 2.638 43.463672 -71.152216 +03856 1680 591 18376886 418204 7.095 0.161 43.038509 -70.967954 +03857 9006 4164 32630963 4198520 12.599 1.621 43.071424 -70.951365 +03858 4603 1751 25661608 393396 9.908 0.152 42.870369 -71.045915 +03860 4056 3259 52244890 819595 20.172 0.316 44.040239 -71.120959 +03861 4330 1765 51681417 540235 19.954 0.209 43.118537 -71.006511 +03862 4278 1909 35952959 119783 13.882 0.046 42.978317 -70.830109 +03864 1696 918 89456174 1019428 34.539 0.394 43.688305 -71.100411 +03865 7609 3018 27551140 27129 10.638 0.010 42.840703 -71.094993 +03867 20758 9464 77390106 875900 29.880 0.338 43.303528 -70.988238 +03868 5323 2331 19557049 20455 7.551 0.008 43.324241 -70.940177 +03869 2469 1072 18362386 767191 7.090 0.296 43.219845 -70.843112 +03870 5162 2790 31593114 1907076 12.198 0.736 43.008649 -70.758330 +03871 136 62 1079210 10611 0.417 0.004 42.980948 -70.777362 +03872 3809 2274 122511781 8617269 47.302 3.327 43.570559 -71.043233 +03873 5711 2119 34470970 1261550 13.309 0.487 42.934018 -71.183605 +03874 8776 4660 23141129 1846188 8.935 0.713 42.883123 -70.860823 +03875 833 629 36301459 4511306 14.016 1.742 43.895078 -71.189275 +03878 11824 5226 25883310 509147 9.994 0.197 43.253476 -70.887944 +03882 1465 963 99512206 3051804 38.422 1.178 43.746733 -71.041910 +03883 178 123 32951937 286027 12.723 0.110 43.808537 -71.320336 +03884 3964 1772 125478071 5755130 48.447 2.222 43.275599 -71.168991 +03885 7261 2864 39183503 944265 15.129 0.365 43.014997 -70.902586 +03886 2112 1400 98750503 1056816 38.128 0.408 43.864038 -71.296068 +03887 2154 1012 52342290 1905109 20.209 0.736 43.499637 -71.068085 +03890 327 200 11857668 153593 4.578 0.059 43.800602 -71.201489 +03894 6314 4466 126517894 27401966 48.849 10.580 43.603773 -71.177139 +03901 7246 2935 97503017 875282 37.646 0.338 43.299332 -70.842077 +03902 2211 1288 50748339 1991699 19.594 0.769 43.214916 -70.628806 +03903 6211 2671 51264299 3999811 19.793 1.544 43.146552 -70.774383 +03904 7703 3924 29002836 3697625 11.198 1.428 43.108051 -70.728595 +03905 1780 1016 17021886 4634935 6.572 1.790 43.086194 -70.686846 +03906 4647 1951 99067581 367786 38.250 0.142 43.351110 -70.778745 +03907 894 2033 10588098 1378363 4.088 0.532 43.255858 -70.611275 +03908 7233 2916 83310941 1313644 32.167 0.507 43.230492 -70.752426 +03909 9738 6475 89042009 10663113 34.379 4.117 43.166460 -70.679004 +03910 328 577 880516 153277 0.340 0.059 43.185309 -70.603455 +03911 250 285 900654 2593690 0.348 1.001 43.142223 -70.626355 +04001 2429 2182 93144479 8684962 35.963 3.353 43.519840 -70.923659 +04002 7351 3411 170961043 5603053 66.008 2.163 43.489069 -70.661906 +04003 330 524 2984238 51865836 1.152 20.026 43.727261 -69.956899 +04005 23146 10687 124061683 14460893 47.900 5.583 43.492125 -70.485368 +04006 96 130 194734 0 0.075 0.000 43.444292 -70.344570 +04008 2723 1195 92331539 16342864 35.649 6.310 44.034239 -69.867048 +04009 5151 4025 146675592 25387866 56.632 9.802 44.046241 -70.728424 +04010 1597 973 115175447 2547322 44.469 0.984 43.930799 -70.918584 +04011 20278 9599 121022203 19695964 46.727 7.605 43.896431 -69.973386 +04015 3808 2942 82235850 6181761 31.751 2.387 43.976287 -70.521109 +04017 341 525 9210888 41609162 3.556 16.065 43.738955 -70.088396 +04019 71 155 1864047 13363968 0.720 5.160 43.686216 -70.102838 +04020 1403 692 57434668 506347 22.176 0.196 43.767186 -70.808862 +04021 5820 2220 53424042 67211 20.627 0.026 43.792289 -70.266527 +04022 1148 1075 119457679 9871553 46.123 3.811 43.994630 -70.814547 +04024 608 305 41039400 482511 15.845 0.186 43.836320 -70.685245 +04027 6031 2540 142454022 2137322 55.002 0.825 43.399909 -70.912785 +04029 1725 1474 85120344 5228264 32.865 2.019 43.902532 -70.689564 +04030 2208 1214 43066152 2383067 16.628 0.920 43.589062 -70.696275 +04032 7879 3690 89883376 30472003 34.704 11.765 43.843503 -70.091699 +04037 3834 2076 213628639 19902731 82.482 7.684 44.094355 -70.946608 +04038 16381 5972 131094666 1725384 50.616 0.666 43.703617 -70.463780 +04039 7422 3525 105253986 2456725 40.639 0.949 43.904551 -70.367027 +04040 3111 2089 159555995 5635582 61.605 2.176 44.143452 -70.820154 +04041 1613 902 96909853 3415730 37.417 1.319 43.848913 -70.831569 +04042 4281 1801 82913900 2542498 32.013 0.982 43.631019 -70.614369 +04043 10810 5912 91372431 2401027 35.279 0.927 43.393277 -70.576994 +04046 7496 4589 114972813 7957381 44.391 3.072 43.429480 -70.474113 +04047 1892 1168 150842659 2651691 58.241 1.024 43.732787 -70.899154 +04048 2946 1587 72995461 2964413 28.184 1.145 43.688481 -70.781883 +04049 3659 1597 105863268 3434900 40.874 1.326 43.745004 -70.702980 +04050 230 381 3688589 33604355 1.424 12.975 43.685939 -70.153919 +04051 1153 1233 113058652 12293476 43.652 4.747 44.192471 -70.885803 +04055 3793 2970 80559314 14052069 31.104 5.426 43.975769 -70.639298 +04056 257 150 14607111 413619 5.640 0.160 43.659808 -70.877492 +04057 56 23 142740 0 0.055 0.000 44.101552 -70.698919 +04061 3369 1419 50924941 1806758 19.662 0.698 43.635495 -70.741783 +04062 17020 7171 121660712 7185722 46.973 2.774 43.794689 -70.405329 +04063 412 647 1735833 6356 0.670 0.002 43.499153 -70.394191 +04064 8212 6239 17519294 1802982 6.764 0.696 43.525044 -70.388250 +04066 539 534 4666654 6047666 1.802 2.335 43.769148 -69.965439 +04068 1505 819 81917280 3541182 31.628 1.367 43.838843 -70.947045 +04069 1465 610 59192594 38368 22.854 0.015 43.903914 -70.182018 +04071 4801 3669 96085048 16773660 37.099 6.476 43.928049 -70.450242 +04072 18482 8508 99620114 7750030 38.464 2.992 43.550411 -70.466341 +04073 16189 7397 96846448 2070322 37.393 0.799 43.418644 -70.747751 +04074 18760 8514 123200760 12983595 47.568 5.013 43.589627 -70.366191 +04076 2683 2047 100404927 6320470 38.767 2.440 43.554017 -70.832796 +04079 3871 3150 54992768 96593799 21.233 37.295 43.790591 -69.971530 +04083 4525 2028 25875459 447755 9.991 0.173 43.464121 -70.814398 +04084 8088 3767 121475337 4925934 46.902 1.902 43.762147 -70.566680 +04085 1786 658 31237424 793432 12.061 0.306 43.773320 -70.616514 +04086 8787 4170 83400642 8790297 32.201 3.394 43.964977 -69.955624 +04087 2116 941 49308319 551957 19.038 0.213 43.569932 -70.744025 +04088 1516 1041 124767848 6484470 48.173 2.504 44.202833 -70.722362 +04090 9589 8557 149318663 2842726 57.652 1.098 43.331432 -70.645586 +04091 911 385 50145966 1681378 19.361 0.649 43.839352 -70.744187 +04092 17515 8001 44387577 543689 17.138 0.210 43.707947 -70.352614 +04093 8034 3301 104955800 1834561 40.524 0.708 43.636387 -70.538831 +04095 1274 958 75210679 2639019 29.039 1.019 43.628909 -70.906834 +04096 8349 3819 34582021 24846646 13.352 9.593 43.787819 -70.159447 +04097 3574 1357 54977244 501695 21.227 0.194 43.850998 -70.234109 +04101 17227 9950 5134232 2392131 1.982 0.924 43.662607 -70.257949 +04102 17335 8387 15318671 1536163 5.915 0.593 43.657977 -70.304301 +04103 30606 14053 26438888 2107307 10.208 0.814 43.694130 -70.288071 +04105 11158 4732 75875677 17986607 29.296 6.945 43.740479 -70.277172 +04106 25175 11594 31630418 5251099 12.213 2.027 43.631402 -70.285989 +04107 8980 3944 37541117 16605863 14.495 6.412 43.587173 -70.236476 +04108 862 983 3084815 1703927 1.191 0.658 43.660255 -70.186052 +04109 93 308 3341947 28380971 1.290 10.958 43.637528 -70.171426 +04110 1391 682 5825410 8661080 2.249 3.344 43.746027 -70.180065 +04210 23045 11013 153542566 16596031 59.283 6.408 44.084537 -70.249649 +04216 640 527 354433713 13219020 136.848 5.104 44.708613 -70.855362 +04217 3312 2434 473357697 7346327 182.764 2.836 44.380100 -70.815239 +04219 1472 1079 158979683 3061725 61.382 1.182 44.400755 -70.558110 +04220 3077 1532 203068751 2496201 78.405 0.964 44.343734 -70.351732 +04221 1098 551 83090441 4838660 32.081 1.868 44.462329 -70.300563 +04222 3848 1548 99145260 1976266 38.280 0.763 43.964603 -70.126598 +04224 3040 1495 192329593 1410874 74.259 0.545 44.559953 -70.415749 +04226 190 128 27924372 61403 10.782 0.024 44.597872 -70.676912 +04227 79 36 1465452 0 0.566 0.000 44.568123 -70.293139 +04228 6 9 177187 42856 0.068 0.017 44.433489 -70.115250 +04231 236 339 88236368 2335031 34.068 0.902 44.263039 -70.875532 +04234 168 66 848752 0 0.328 0.000 44.623831 -70.191893 +04236 4350 1880 83594263 7536935 32.276 2.910 44.189754 -70.145088 +04237 238 235 18226000 1333151 7.037 0.515 44.494585 -70.734687 +04238 1416 483 58034589 342225 22.407 0.132 44.209257 -70.388878 +04239 4851 2252 125290110 2130894 48.375 0.823 44.516897 -70.202187 +04240 36592 16731 88439163 3595457 34.147 1.388 44.089594 -70.172185 +04250 4228 1850 30886554 2076551 11.925 0.802 44.010520 -70.127470 +04252 4799 2103 28235082 525139 10.902 0.203 44.036688 -70.058799 +04253 2095 1127 97435647 4596113 37.620 1.775 44.404127 -70.215560 +04254 3181 1525 50797160 1873832 19.613 0.723 44.445003 -70.137715 +04255 802 798 97986667 3648404 37.833 1.409 44.344761 -70.669830 +04256 3064 1310 29156999 419430 11.258 0.162 44.104897 -70.404680 +04257 2681 1404 60451775 603890 23.341 0.233 44.553364 -70.495771 +04258 2617 1059 76719052 480036 29.621 0.185 44.137940 -70.336334 +04259 3264 1636 76106090 12751335 29.385 4.923 44.233505 -70.014723 +04260 5542 2295 122048426 1765881 47.123 0.682 43.957508 -70.296011 +04261 444 1557 541911861 3729313 209.233 1.440 44.503368 -70.961471 +04263 2326 1018 103735410 8701812 40.052 3.360 44.295351 -70.133074 +04265 918 497 18292885 2450666 7.063 0.946 44.279255 -70.042845 +04267 37 48 5373655 460041 2.075 0.178 44.206591 -70.792354 +04268 5023 2808 118189133 5932315 45.633 2.290 44.225867 -70.610021 +04270 5880 3339 203680082 19357887 78.641 7.474 44.117335 -70.527478 +04271 67 43 467501 0 0.181 0.000 44.263611 -70.498190 +04274 5343 2668 108702334 12834996 41.970 4.956 44.048106 -70.393563 +04275 514 653 245332123 5094900 94.723 1.967 44.702191 -70.646426 +04276 5841 3287 177531573 3365395 68.545 1.299 44.559954 -70.625313 +04280 6474 2768 107888609 5384515 41.656 2.079 44.119863 -70.059358 +04281 5116 2376 105134108 513090 40.593 0.198 44.248001 -70.490816 +04282 5734 2481 153471153 8970709 59.256 3.464 44.265107 -70.247980 +04284 1138 755 43808086 14898437 16.914 5.752 44.362503 -70.061230 +04285 433 649 167375195 8818418 64.624 3.405 44.697513 -70.448975 +04286 47 22 145209 0 0.056 0.000 44.401438 -70.865079 +04287 3224 1283 115081964 305443 44.433 0.118 44.065403 -69.974982 +04289 1815 815 62822854 412979 24.256 0.159 44.319278 -70.522647 +04290 1541 909 120891992 2392221 46.677 0.924 44.473718 -70.430225 +04292 948 568 114760289 1547688 44.309 0.598 44.385909 -70.449596 +04294 3995 1993 149296132 4046798 57.644 1.562 44.637914 -70.275434 +04330 26086 12740 303247577 17174224 117.085 6.631 44.351875 -69.747639 +04342 1672 819 78871354 7150752 30.452 2.761 44.086084 -69.737021 +04343 25 30 1315314 0 0.508 0.000 44.328790 -69.891409 +04344 2951 1367 29085600 793073 11.230 0.306 44.260548 -69.827805 +04345 11646 5421 186660541 11072766 72.070 4.275 44.195062 -69.793915 +04346 1772 900 5516107 262892 2.130 0.102 44.236607 -69.751356 +04347 2355 1317 15209805 554970 5.873 0.214 44.287241 -69.818040 +04348 2976 1869 194868973 17845778 75.239 6.890 44.210864 -69.499152 +04349 1158 836 76240916 8059652 29.437 3.112 44.434007 -70.067034 +04350 3577 1827 96193173 5551259 37.140 2.143 44.172144 -69.934500 +04351 2571 1240 55080335 3101352 21.267 1.197 44.342538 -69.862257 +04352 1632 1093 97731016 12294827 37.734 4.747 44.466488 -69.960450 +04353 2300 1055 121252291 1787861 46.816 0.690 44.198048 -69.619628 +04354 1535 975 105047942 7796242 40.559 3.010 44.396114 -69.430630 +04355 2600 1303 75792547 4644338 29.264 1.793 44.381571 -69.945747 +04357 3399 1623 78723549 2988503 30.395 1.154 44.116833 -69.829607 +04358 4276 2290 128907712 18072446 49.772 6.978 44.414473 -69.535271 +04359 388 177 1860714 1096467 0.718 0.423 44.177786 -69.762624 +04360 560 409 62665007 3122513 24.195 1.206 44.554840 -69.999631 +04363 2575 1152 89742067 2261885 34.650 0.873 44.316673 -69.573032 +04364 6025 3230 79037654 16669664 30.517 6.436 44.309991 -69.963093 +04401 44899 20739 259596685 16299291 100.231 6.293 44.848517 -68.850405 +04406 819 739 233532086 6218652 90.167 2.401 45.229300 -69.596917 +04408 176 379 306480338 34507145 118.333 13.323 44.893162 -68.302785 +04410 1290 583 106666156 0 41.184 0.000 45.088260 -68.906681 +04411 1492 713 110258165 2937432 42.571 1.134 44.869056 -68.580470 +04412 9482 4457 39455711 1168417 15.234 0.451 44.784691 -68.735075 +04413 196 203 133069719 35302687 51.379 13.630 45.561415 -67.764628 +04414 1248 1224 637155140 25490616 246.007 9.842 45.442861 -69.114570 +04415 276 149 4097989 113125 1.582 0.044 45.400376 -69.057877 +04416 5468 2843 149650960 19468824 57.781 7.517 44.623798 -68.749742 +04417 370 445 161730677 7297540 62.445 2.818 45.231514 -68.341886 +04418 1771 961 381691643 1071485 147.372 0.414 45.088416 -68.461406 +04419 2794 1182 94612249 946574 36.530 0.365 44.800454 -69.003117 +04421 1366 704 20149824 31684544 7.780 12.233 44.409668 -68.814192 +04422 1409 546 105031183 33017 40.553 0.013 45.077653 -69.031437 +04424 823 962 272449306 42812276 105.193 16.530 45.680311 -67.876199 +04426 4720 3070 400074698 23412773 154.470 9.040 45.213059 -69.189134 +04427 2858 1223 104108159 0 40.196 0.000 44.980538 -69.010879 +04428 3146 1505 154153075 7568185 59.519 2.922 44.805781 -68.553983 +04429 4717 2717 182704788 16172556 70.543 6.244 44.720612 -68.616230 +04430 1728 875 23379537 2459400 9.027 0.950 45.636841 -68.575197 +04431 81 65 809372 310731 0.313 0.120 44.557581 -68.668816 +04434 1246 559 64253326 414393 24.808 0.160 44.785632 -69.132895 +04435 1092 491 99875579 63697 38.562 0.025 44.963218 -69.124994 +04438 1124 537 63737496 3359797 24.609 1.297 44.598953 -68.928337 +04441 1840 2662 1505788328 66124522 581.388 25.531 45.702416 -69.623233 +04442 93 281 193978471 7758796 74.896 2.996 45.497827 -69.727274 +04443 2537 1853 355821865 22465491 137.384 8.674 45.228047 -69.353525 +04444 8824 3694 178825188 2394965 69.045 0.925 44.728984 -68.949961 +04448 1431 862 285979789 10200676 110.417 3.939 45.296196 -68.711060 +04449 1489 725 96617667 5707899 37.304 2.204 44.992639 -68.888485 +04450 1368 610 43582796 0 16.827 0.000 44.916048 -68.927990 +04451 259 220 194057834 3054444 74.926 1.179 45.607010 -68.222173 +04453 779 420 175130341 726694 67.618 0.281 45.162250 -68.760531 +04454 69 78 128052284 9481266 49.441 3.661 45.552117 -67.561059 +04455 923 565 217986720 5987298 84.165 2.312 45.299494 -68.259756 +04456 2851 1146 77850598 28583 30.058 0.011 44.876869 -68.996713 +04457 5948 3308 426960087 17668608 164.850 6.822 45.413429 -68.479867 +04459 773 517 208678953 7268294 80.571 2.806 45.588735 -68.339985 +04460 1419 726 277008668 12080308 106.954 4.664 45.711395 -68.539963 +04461 3070 1391 114276977 430978 44.123 0.166 44.954787 -68.582438 +04462 4835 3859 3032137295 266249152 1170.715 102.799 45.972769 -69.012445 +04463 2847 1939 379742061 29183293 146.619 11.268 45.282330 -68.902540 +04464 684 646 518124717 21962061 200.049 8.480 45.417040 -69.276365 +04468 9521 4487 308944328 7834273 119.284 3.025 45.023431 -68.733419 +04469 2702 2 625565 0 0.242 0.000 44.901059 -68.668316 +04471 609 591 248672769 5556495 96.013 2.145 45.908290 -67.861428 +04472 2144 1405 120953878 14143834 46.701 5.461 44.576095 -68.670122 +04473 7660 3087 46480286 3645072 17.946 1.407 44.881679 -68.738649 +04474 3733 1612 64726304 6067965 24.991 2.343 44.706955 -68.770343 +04475 418 233 62703160 456050 24.210 0.176 45.183587 -68.589614 +04476 1259 880 103279722 17925047 39.877 6.921 44.482702 -68.706001 +04478 316 1004 1027296727 73858545 396.642 28.517 45.865230 -69.815675 +04479 1343 895 99560523 3521221 38.441 1.360 45.141180 -69.321792 +04481 559 378 80216894 2427977 30.972 0.937 45.245979 -69.092775 +04485 233 245 115413636 1507437 44.561 0.582 45.358461 -69.624361 +04487 964 1130 569227919 38700044 219.780 14.942 45.387737 -68.104471 +04488 1202 621 90623378 4290010 34.990 1.656 44.875433 -69.104698 +04489 197 79 519680 0 0.201 0.000 44.910384 -68.690173 +04490 273 246 683736939 38132771 263.992 14.723 45.436636 -67.867623 +04491 140 145 33522195 5855512 12.943 2.261 45.572693 -67.473356 +04492 166 127 120439975 455560 46.502 0.176 45.367045 -67.681322 +04493 1967 1253 172937683 19736841 66.772 7.620 45.236824 -68.524576 +04495 407 210 113177087 352009 43.698 0.136 45.454119 -68.333804 +04496 3757 1645 92007098 3970578 35.524 1.533 44.650384 -68.908890 +04497 389 424 622376193 8998406 240.301 3.474 45.754610 -68.060944 +04530 10818 5807 74492111 26592383 28.762 10.267 43.888240 -69.826702 +04535 709 346 54134939 1097290 20.902 0.424 44.098471 -69.629175 +04537 2073 1309 43411224 27831980 16.761 10.746 43.875516 -69.618394 +04538 2080 1960 12631730 5120392 4.877 1.977 43.851505 -69.627611 +04539 1168 663 42311034 1996193 16.336 0.771 43.974967 -69.500783 +04541 80 160 4764198 953600 1.839 0.368 43.894242 -69.476881 +04543 2218 1359 32162775 5941549 12.418 2.294 44.022865 -69.497588 +04544 724 943 8334256 3643948 3.218 1.407 43.844560 -69.582479 +04547 1152 896 36528521 23483713 14.104 9.067 43.979860 -69.334950 +04548 1042 1044 48130048 25903698 18.583 10.001 43.833447 -69.738561 +04551 806 651 42644648 29485815 16.465 11.385 43.975714 -69.430661 +04553 1752 992 75243635 9109512 29.052 3.517 44.052277 -69.567522 +04554 710 1008 11081429 4133021 4.279 1.596 43.864966 -69.512332 +04555 1643 1111 49052624 10826148 18.939 4.180 44.101202 -69.482767 +04556 1249 755 46808031 7015197 18.073 2.709 43.972254 -69.623536 +04558 308 298 10703522 3279335 4.133 1.266 43.885128 -69.514471 +04562 2216 1748 74026850 42198054 28.582 16.293 43.770817 -69.819176 +04563 1534 926 49817691 16197831 19.235 6.254 44.013924 -69.258706 +04564 489 488 22480844 8080099 8.680 3.120 43.931850 -69.457458 +04568 391 777 12851366 16354519 4.962 6.315 43.878003 -69.558472 +04570 2 112 706084 0 0.273 0.000 43.808546 -69.630765 +04571 323 257 5484033 4087108 2.117 1.578 43.896656 -69.674170 +04572 5075 2651 185179527 19073718 71.498 7.364 44.122083 -69.383350 +04573 501 299 21089125 4019303 8.143 1.552 43.951357 -69.552330 +04574 1510 787 98165483 2991782 37.902 1.155 44.260639 -69.391524 +04575 85 180 1702715 3989692 0.657 1.540 43.852011 -69.662658 +04576 604 939 13224487 9166754 5.106 3.539 43.813345 -69.662868 +04578 4450 2317 86613031 21901703 33.441 8.456 43.982445 -69.692754 +04579 3072 1412 90842229 16838664 35.074 6.501 43.959656 -69.769351 +04605 12974 8009 736852590 124263963 284.500 47.979 44.672809 -68.391841 +04606 1272 812 110407132 96716846 42.628 37.343 44.540726 -67.712364 +04607 1182 808 129284506 58286369 49.917 22.504 44.467314 -68.087772 +04609 5222 3482 109395350 50489510 42.238 19.494 44.397470 -68.263808 +04611 508 361 14547137 56734130 5.617 21.905 44.466957 -67.612596 +04612 589 476 14215197 26686385 5.489 10.304 44.231530 -68.414514 +04613 183 126 4839979 6427853 1.869 2.482 44.371929 -68.027288 +04614 2579 1849 155941483 62365193 60.209 24.079 44.402180 -68.569297 +04616 824 874 46423725 60238244 17.924 23.258 44.261324 -68.540355 +04617 811 757 65923853 51226964 25.453 19.779 44.351627 -68.760990 +04619 3121 1736 88890838 14981780 34.321 5.784 45.150327 -67.239189 +04622 1412 1441 666283130 19082055 257.253 7.368 44.750660 -67.966952 +04623 1054 789 352549500 3957705 136.120 1.528 44.744467 -67.733658 +04624 184 294 14783426 18125286 5.708 6.998 44.423951 -67.985876 +04625 47 198 5470241 11644253 2.112 4.496 44.259793 -68.261711 +04626 507 372 121606094 67801120 46.952 26.178 44.665569 -67.219358 +04627 1636 1480 55573442 61722725 21.457 23.831 44.237010 -68.607845 +04628 703 425 225037253 13102841 86.887 5.059 44.873113 -67.281078 +04629 107 87 5875673 15685 2.269 0.006 44.421885 -68.506597 +04630 1398 910 226523589 39937094 87.461 15.420 44.855066 -67.477913 +04631 1331 1083 9455354 22820209 3.651 8.811 44.910958 -67.008913 +04634 1923 1591 273901661 30527371 105.754 11.787 44.650904 -68.222036 +04635 61 76 11499122 44988316 4.440 17.370 44.172234 -68.351482 +04637 136 343 232099045 85137745 89.614 32.872 45.196253 -67.816030 +04640 2261 1373 71738212 22872841 27.698 8.831 44.524175 -68.285916 +04642 123 176 14644637 546827 5.654 0.211 44.330584 -68.809947 +04643 1018 682 55170397 57114113 21.301 22.052 44.538027 -67.818538 +04644 13 13 12857 0 0.005 0.000 44.413835 -68.252076 +04645 73 172 32428332 73218072 12.521 28.270 44.064664 -68.620985 +04646 94 177 2729276 28426395 1.054 10.975 44.245566 -68.224954 +04648 580 331 88926350 4621796 34.335 1.784 44.665425 -67.596330 +04649 1370 939 73851413 118860914 28.514 45.892 44.547110 -67.489830 +04650 235 306 9957379 5961547 3.845 2.302 44.287636 -68.713763 +04652 1690 1386 158722207 87149686 61.283 33.649 44.819713 -67.062328 +04653 490 416 7421786 13596050 2.866 5.249 44.209467 -68.334648 +04654 3424 2029 259083103 35004076 100.033 13.515 44.757153 -67.539894 +04655 1119 611 55450384 76475831 21.410 29.527 44.653005 -67.377551 +04657 363 466 261023849 23970063 100.782 9.255 44.970309 -67.415773 +04658 1353 1009 62794535 48232198 24.245 18.623 44.507910 -67.878004 +04660 1309 1265 74702148 41381858 28.843 15.978 44.338276 -68.346104 +04662 488 654 7011056 2237846 2.707 0.864 44.300959 -68.292452 +04664 1238 830 92870788 17410024 35.858 6.722 44.543335 -68.127353 +04666 1172 787 163164377 27611906 62.998 10.661 44.980584 -67.223672 +04667 1638 838 77278833 34163743 29.838 13.191 44.985316 -67.103562 +04668 1680 946 251927174 42848978 97.270 16.544 45.212926 -67.585966 +04669 204 213 7068086 4630049 2.729 1.788 44.408677 -68.015641 +04671 576 355 73004904 14362679 28.187 5.545 45.067375 -67.152172 +04673 112 110 7803253 671480 3.013 0.259 44.314352 -68.679144 +04674 484 368 21958828 48531722 8.478 18.738 44.274254 -68.458828 +04675 253 363 13264084 2804948 5.121 1.083 44.301347 -68.251148 +04676 1088 694 62191052 9896360 24.012 3.821 44.346880 -68.634365 +04677 274 314 10345152 26203295 3.994 10.117 44.476822 -68.181506 +04679 1767 1489 35542884 15018369 13.723 5.799 44.273005 -68.325159 +04680 1131 873 111434557 39440704 43.025 15.228 44.501482 -67.946457 +04681 1043 993 25403768 72591569 9.808 28.028 44.150464 -68.645327 +04683 104 150 11449244 175649750 4.421 67.819 44.245205 -68.787827 +04684 1466 1119 95759814 36665080 36.973 14.156 44.467361 -68.503190 +04685 332 483 37185466 139668681 14.357 53.926 44.151687 -68.465212 +04686 114 292 293252603 15766437 113.225 6.087 44.996537 -67.694027 +04691 441 355 121693920 13557762 46.986 5.235 44.760322 -67.255047 +04693 516 519 37191609 49678130 14.360 19.181 44.376493 -68.093624 +04694 2376 1531 339403636 43842267 131.044 16.928 45.115083 -67.477541 +04730 9992 4728 607893248 4482507 234.709 1.731 46.191043 -67.861028 +04732 1670 1099 1134489962 27819658 438.029 10.741 46.327493 -68.939198 +04733 221 191 136281559 2885165 52.619 1.114 45.757478 -68.404152 +04734 800 411 116907234 174460 45.138 0.067 46.468001 -67.956337 +04735 617 330 125577563 463265 48.486 0.179 46.416386 -67.866788 +04736 9876 4720 432056259 2389403 166.818 0.923 46.909532 -68.026095 +04739 1112 972 583276425 19294123 225.204 7.450 46.995906 -68.672927 +04740 1287 596 100266659 569958 38.713 0.220 46.633304 -67.847623 +04741 3 5 8658260 0 3.343 0.000 47.453712 -69.222921 +04742 3496 1674 198565962 4367896 76.667 1.686 46.776241 -67.859197 +04743 4676 2217 352059277 5914022 135.931 2.283 47.200266 -68.614333 +04745 1082 510 62091072 1181133 23.973 0.456 47.282101 -68.388783 +04746 470 268 95534601 2041436 36.886 0.788 47.256665 -68.136142 +04747 1337 991 421747378 23797918 162.838 9.188 46.004972 -68.233771 +04750 2603 1178 203043025 1452547 78.395 0.561 46.955064 -67.857723 +04756 3344 1894 46150965 264474 17.819 0.102 47.328079 -68.303525 +04757 2870 1415 334700805 3663844 129.229 1.415 46.667614 -68.168635 +04758 1498 691 91006829 191946 35.138 0.074 46.559272 -67.853225 +04760 795 473 259787771 547534 100.305 0.211 46.339341 -67.954874 +04761 529 427 47825569 2817463 18.466 1.088 46.117254 -67.975284 +04762 602 323 102998140 239357 39.768 0.092 46.958248 -68.124731 +04763 726 492 90794119 1977091 35.056 0.763 46.074387 -68.114066 +04764 66 84 170008341 1933731 65.641 0.747 46.398929 -68.585323 +04765 1262 1109 1480480446 59081627 571.617 22.812 46.158786 -68.591119 +04766 386 190 94620086 278430 36.533 0.108 46.892463 -68.215780 +04768 400 553 537310255 21542045 207.457 8.317 46.863157 -68.891724 +04769 9692 4608 196210371 4776762 75.757 1.844 46.688484 -67.993016 +04772 762 538 76728185 26913997 29.625 10.392 47.230084 -68.311449 +04773 723 558 101033989 1484494 39.009 0.573 47.267509 -68.223140 +04774 730 638 459157032 8558562 177.282 3.304 47.077040 -69.154500 +04776 925 513 221515480 2581310 85.528 0.997 45.871695 -68.324753 +04777 422 248 233410485 1188272 90.120 0.459 45.842521 -68.501076 +04779 398 629 246335515 46750936 95.111 18.051 47.114457 -68.331472 +04780 808 451 786888366 7013722 303.819 2.708 46.239244 -68.285281 +04781 560 318 126567227 3242019 48.868 1.252 47.150199 -68.613495 +04783 426 476 145659750 6564749 56.240 2.535 47.040124 -68.175050 +04785 2504 1449 264051658 4635905 101.951 1.790 47.111951 -67.994350 +04786 1970 897 182198907 2500462 70.347 0.965 46.794921 -68.192051 +04787 544 236 104225052 91298 40.242 0.035 46.534693 -67.972825 +04841 7297 3925 33258651 1946205 12.841 0.751 44.133536 -69.133822 +04843 4851 3168 47885623 14101491 18.489 5.445 44.238406 -69.064039 +04847 1536 805 56877124 4968373 21.960 1.918 44.240818 -69.189267 +04848 566 850 37009086 141389652 14.289 54.591 44.298880 -68.915250 +04849 3684 2627 158297229 45359123 61.119 17.513 44.316106 -69.025998 +04851 75 158 6014348 19800407 2.322 7.645 43.877110 -68.868680 +04852 69 164 2202210 985292 0.850 0.380 43.766543 -69.309772 +04853 354 512 29447552 31840147 11.370 12.294 44.136963 -68.867587 +04854 1580 1060 22990798 9203025 8.877 3.553 44.075525 -69.079854 +04855 307 347 5969256 7941994 2.305 3.066 43.935858 -69.263526 +04856 3330 1956 56043634 5975962 21.639 2.307 44.180452 -69.121696 +04858 1533 860 29501247 8359032 11.390 3.227 44.047854 -69.156345 +04859 724 612 17161745 22941269 6.626 8.858 43.999115 -69.144356 +04860 1591 1261 46195451 46887193 17.836 18.103 43.979596 -69.216050 +04861 2781 1385 28326258 1392261 10.937 0.538 44.107601 -69.171387 +04862 3592 1859 168344362 7915800 64.998 3.056 44.262706 -69.277723 +04863 1165 1295 60367605 75090567 23.308 28.993 44.068908 -68.853259 +04864 4751 1760 120361160 5899848 46.472 2.278 44.128546 -69.243193 +04901 26248 11921 204123376 7715264 78.812 2.979 44.540353 -69.575174 +04910 2041 923 100560698 1637669 38.827 0.632 44.508045 -69.445253 +04911 2136 1155 165093603 1620516 63.743 0.626 44.769927 -69.972548 +04912 1048 596 154367029 1033337 59.601 0.399 44.980705 -69.689878 +04915 8806 4744 189184086 16183652 73.044 6.249 44.463502 -69.037571 +04917 2849 1727 102858901 37101132 39.714 14.325 44.487708 -69.839488 +04918 349 480 9265168 945469 3.577 0.365 44.515730 -69.866232 +04920 1713 1204 659206338 27576990 254.521 10.648 45.142341 -69.854458 +04921 1593 817 122904915 2081439 47.454 0.804 44.560894 -69.136548 +04922 1164 714 100726143 6044800 38.891 2.334 44.688545 -69.384813 +04923 482 268 55316679 185148 21.358 0.071 45.029009 -69.445746 +04924 2275 1105 106594006 2510153 41.156 0.969 44.782241 -69.546315 +04925 75 264 147241863 8154706 56.850 3.149 45.212372 -69.903397 +04926 52 26 280174 0 0.108 0.000 44.480122 -69.513908 +04927 3486 1547 113631606 2377926 43.873 0.918 44.659788 -69.531675 +04928 2198 1075 100175076 2007967 38.678 0.775 44.943693 -69.258217 +04929 837 373 51499327 429316 19.884 0.166 44.772109 -69.302176 +04930 4295 2413 139740820 6254537 53.954 2.415 45.027572 -69.317970 +04932 1181 557 93987426 375583 36.289 0.145 44.697570 -69.143702 +04933 65 20 240546 0 0.093 0.000 44.816495 -69.231348 +04936 261 774 1141865719 19852214 440.877 7.665 45.421946 -70.624426 +04937 6645 2968 134914945 2058284 52.091 0.795 44.651653 -69.661276 +04938 9869 4741 317830320 7182137 122.715 2.773 44.661856 -70.103104 +04939 1105 552 97565112 696629 37.670 0.269 45.077258 -69.158771 +04940 118 57 1255054 42173 0.485 0.016 44.623994 -70.083293 +04941 1751 896 166233344 3045766 64.183 1.176 44.467190 -69.285662 +04942 1326 1180 373661098 8753902 144.271 3.380 45.077022 -69.586446 +04943 1792 1117 96168236 15153096 37.131 5.851 44.879823 -69.520500 +04944 42 20 4163214 91413 1.607 0.035 44.692647 -69.646718 +04945 1242 1502 2390964229 81471767 923.156 31.456 45.869719 -70.266346 +04947 1852 2851 326929202 768877 126.228 0.297 45.049549 -70.269486 +04949 913 718 67341357 6213280 26.001 2.399 44.371030 -69.333664 +04950 4855 2478 134368258 7623563 51.880 2.943 44.826354 -69.799713 +04951 906 468 104365450 275335 40.296 0.106 44.607516 -69.070760 +04952 1829 853 78207328 2822700 30.196 1.090 44.412796 -69.154791 +04953 3228 1753 76224618 19352979 29.430 7.472 44.860300 -69.236698 +04955 1362 681 115414644 1595347 44.562 0.616 44.647207 -69.993337 +04956 760 508 98267092 1433308 37.941 0.553 44.807906 -70.109840 +04957 4265 2041 210941928 4954480 81.445 1.913 44.702067 -69.843372 +04958 1954 1490 142217834 11985672 54.911 4.628 44.899067 -69.918836 +04961 972 1107 757571415 84191890 292.500 32.507 45.137779 -70.144293 +04962 125 65 213898 0 0.083 0.000 44.489077 -69.625946 +04963 7238 4050 132085455 22821128 50.998 8.811 44.589007 -69.887309 +04964 221 816 240427804 85809620 92.830 33.131 44.866916 -70.774098 +04965 1976 935 103942088 3313019 40.132 1.279 44.843151 -69.368356 +04966 1682 1242 516903826 1522371 199.578 0.588 44.814699 -70.427311 +04967 4230 1837 125724789 1385703 48.543 0.535 44.769841 -69.433670 +04969 1362 608 76937416 3409494 29.706 1.316 44.785285 -69.236275 +04970 1620 2728 597141754 42828556 230.558 16.536 45.008278 -70.617950 +04971 2005 1259 116007384 5979684 44.791 2.309 44.929680 -69.391278 +04973 1389 729 97677739 3614078 37.714 1.395 44.362192 -69.193930 +04974 2611 1508 74042852 35950819 28.588 13.881 44.471036 -68.927435 +04975 48 28 142318 0 0.055 0.000 44.625354 -69.588334 +04976 9903 4858 257908035 4722278 99.579 1.823 44.789280 -69.667690 +04978 799 605 39139863 12567288 15.112 4.852 44.642012 -69.800169 +04979 1064 673 113560523 2827138 43.846 1.092 44.939541 -69.807536 +04981 2316 1282 97912862 31859758 37.804 12.301 44.514122 -68.839047 +04982 630 658 138241683 1107386 53.375 0.428 45.097984 -70.430575 +04983 1752 1012 389149885 1701315 150.252 0.657 44.979981 -70.368401 +04984 523 323 61096111 590899 23.589 0.228 44.698619 -70.271152 +04985 114 541 519193363 14897769 200.462 5.752 45.369441 -69.931095 +04986 1721 791 143362761 516693 55.353 0.199 44.549460 -69.211292 +04987 1030 476 90451120 2598957 34.923 1.003 44.674148 -69.251844 +04988 2134 955 128937902 5118169 49.783 1.976 44.570148 -69.362441 +04989 4215 2000 114435388 9171136 44.184 3.541 44.427980 -69.649508 +04992 103 68 154631 0 0.060 0.000 44.663657 -70.162677 +05001 9123 5151 111919352 1841298 43.212 0.711 43.672188 -72.380193 +05031 218 205 25833524 417337 9.974 0.161 43.699932 -72.589826 +05032 2664 1414 181174122 970027 69.952 0.375 43.801566 -72.657740 +05033 2744 1259 74903469 638135 28.920 0.246 44.012180 -72.158312 +05034 310 181 14710739 96589 5.680 0.037 43.574500 -72.643241 +05035 638 491 82722713 206906 31.939 0.080 43.611670 -72.686400 +05036 1037 567 86424130 748365 33.369 0.289 44.023896 -72.587090 +05037 560 444 26949432 130037 10.405 0.050 43.457745 -72.493459 +05038 1230 691 102661608 125016 39.638 0.048 43.993916 -72.459992 +05039 1110 665 114225399 137932 44.103 0.053 44.063296 -72.313080 +05040 471 249 27529209 197308 10.629 0.076 44.069880 -72.198724 +05041 354 159 15233971 7373 5.882 0.003 43.955546 -72.538902 +05042 605 321 61643510 311783 23.801 0.120 44.222165 -72.096756 +05043 937 413 21188841 857134 8.181 0.331 43.805098 -72.204673 +05045 1758 1115 133895973 4715928 51.698 1.821 43.917846 -72.180296 +05046 1139 698 154846304 3125422 59.786 1.207 44.232453 -72.257516 +05048 2429 1103 71288603 301848 27.525 0.117 43.580615 -72.427711 +05050 146 74 1118799 0 0.432 0.000 44.266812 -72.064006 +05051 1549 1009 124386223 1861800 48.026 0.719 44.104485 -72.121743 +05052 348 157 6718383 426401 2.594 0.165 43.596988 -72.359713 +05053 332 189 22614226 51891 8.731 0.020 43.719447 -72.489225 +05055 3363 1529 106303595 569186 41.044 0.220 43.777628 -72.323984 +05056 567 815 110894448 1448422 42.817 0.559 43.506710 -72.704232 +05058 346 161 10624841 2823 4.102 0.001 43.881263 -72.272289 +05059 874 689 13695356 408881 5.288 0.158 43.637817 -72.427734 +05060 4415 2225 179970527 744458 69.487 0.287 43.967072 -72.708604 +05061 1679 577 67027651 103216 25.880 0.040 43.916763 -72.570184 +05062 702 475 110481570 479959 42.657 0.185 43.496493 -72.599969 +05065 1064 531 83375669 1020722 32.192 0.394 43.782477 -72.423363 +05067 258 176 42601406 20988 16.448 0.008 43.677373 -72.518063 +05068 3125 1691 133301036 1554440 51.468 0.600 43.780961 -72.547496 +05069 555 290 31106162 443705 12.010 0.171 44.204072 -72.131204 +05070 484 245 35445156 41229 13.685 0.016 43.851588 -72.344406 +05071 324 263 49993625 41173 19.303 0.016 43.561557 -72.546332 +05072 526 295 67841260 427403 26.194 0.165 43.898928 -72.372069 +05075 1113 562 66407506 635759 25.640 0.245 43.847073 -72.288607 +05076 412 271 74677961 145734 28.833 0.056 44.141854 -72.230959 +05077 1215 718 109418659 392720 42.247 0.152 43.908796 -72.459306 +05079 730 435 94503797 130034 36.488 0.050 43.956765 -72.326539 +05081 550 299 24094582 177195 9.303 0.068 44.122968 -72.065864 +05083 151 76 1865523 0 0.720 0.000 43.918897 -72.268095 +05084 140 58 6144723 67809 2.372 0.026 43.729848 -72.451442 +05086 793 408 63359508 118243 24.463 0.046 44.108969 -72.300719 +05089 4979 2515 106311086 861705 41.047 0.333 43.495591 -72.442313 +05091 3288 2033 173715267 1002921 67.072 0.387 43.634612 -72.577119 +05101 4643 2252 89069403 1805100 34.390 0.697 43.182144 -72.493221 +05141 112 65 2564606 56681 0.990 0.022 43.151168 -72.569224 +05142 680 430 69698388 491859 26.911 0.190 43.397517 -72.580475 +05143 4343 2503 245690001 1044106 94.861 0.403 43.277630 -72.640348 +05146 750 514 114587038 303912 44.242 0.117 43.184967 -72.633999 +05148 1140 1035 69779396 1159104 26.942 0.448 43.231362 -72.791008 +05149 2092 3417 114079846 1381898 44.046 0.534 43.380553 -72.712123 +05150 831 416 6194900 203890 2.392 0.079 43.334434 -72.530790 +05151 1553 789 72012508 1269106 27.804 0.490 43.395317 -72.496973 +05152 448 772 105467078 327699 40.721 0.127 43.233332 -72.939013 +05153 687 535 32540197 111335 12.564 0.043 43.418436 -72.642552 +05154 661 288 6863497 148011 2.650 0.057 43.135197 -72.546165 +05155 828 1798 107538268 646013 41.521 0.249 43.092921 -72.915891 +05156 9226 4241 156333531 1064896 60.361 0.411 43.310627 -72.461623 +05158 1049 491 29566089 150738 11.416 0.058 43.084054 -72.469725 +05161 552 549 89440904 515737 34.533 0.199 43.321441 -72.802903 +05201 14851 6739 241102399 908491 93.090 0.351 42.869481 -73.129196 +05250 3408 1929 237184139 804856 91.577 0.311 43.103754 -73.173044 +05251 1350 1061 90411653 126681 34.908 0.049 43.264183 -73.063631 +05252 274 173 100844368 672750 38.936 0.260 43.081011 -73.068759 +05253 685 393 34000321 207006 13.128 0.080 43.245763 -73.002022 +05254 273 302 5213000 39320 2.013 0.015 43.153807 -73.060906 +05255 4121 2560 102090167 282817 39.417 0.109 43.137364 -73.022200 +05257 2718 991 32887455 250439 12.698 0.097 42.958719 -73.260755 +05260 459 206 24920356 251841 9.622 0.097 42.808836 -73.265621 +05261 2738 1267 83109526 450447 32.089 0.174 42.782513 -73.195152 +05262 2547 1217 197253776 188886 76.160 0.073 42.973748 -73.075260 +05301 16820 8450 388097031 3634658 149.845 1.403 42.842769 -72.655573 +05340 763 1722 112748594 1227558 43.532 0.474 43.168974 -72.972359 +05341 407 301 34027325 51058 13.138 0.020 42.964292 -72.797860 +05342 581 389 39459873 283554 15.236 0.109 42.777498 -72.794821 +05343 917 970 116791431 1378315 45.093 0.532 43.103091 -72.820260 +05345 2119 1299 129887454 793863 50.150 0.307 42.987719 -72.684024 +05346 5184 2312 177969161 684095 68.714 0.264 43.037688 -72.536522 +05350 763 496 94088470 386495 36.328 0.149 42.790943 -72.972640 +05352 824 410 102312123 300271 39.503 0.116 42.808039 -73.076527 +05353 1072 670 95176769 1151636 36.748 0.445 43.071031 -72.682189 +05354 2210 926 50375952 1595409 19.450 0.616 42.764133 -72.522086 +05355 813 744 70979303 83285 27.405 0.032 43.020138 -72.813530 +05356 717 2753 57256311 178174 22.107 0.069 42.975529 -72.864581 +05358 148 119 32445516 13591 12.527 0.005 42.773345 -72.705469 +05359 594 501 76600700 214721 29.576 0.083 43.153015 -72.715939 +05360 251 385 125995126 7411114 48.647 2.861 43.000119 -72.946971 +05361 947 673 78687821 5750828 30.382 2.220 42.780694 -72.879131 +05362 127 80 6872692 178763 2.654 0.069 42.935303 -72.660004 +05363 2021 2607 166272330 5561752 64.198 2.147 42.882781 -72.893126 +05401 28185 12730 15341366 341170 5.923 0.132 44.476621 -73.209998 +05403 17593 8285 42477974 496476 16.401 0.192 44.444866 -73.173468 +05404 7240 3383 3697712 205994 1.428 0.080 44.495588 -73.184854 +05405 4406 3 602184 0 0.233 0.000 44.473733 -73.195609 +05408 10114 4308 10930278 714657 4.220 0.276 44.511852 -73.249611 +05439 1734 69 458147 29691 0.177 0.011 44.494539 -73.164415 +05440 1998 1370 75473054 1489385 29.140 0.575 44.957882 -73.291974 +05441 958 418 82423250 216243 31.824 0.083 44.805565 -72.720038 +05442 339 206 82799135 127632 31.969 0.049 44.757187 -72.671334 +05443 6656 2931 293742478 2779870 113.415 1.073 44.139443 -73.039930 +05444 1714 738 52426130 666930 20.242 0.258 44.649728 -72.896957 +05445 3754 1706 106859626 392842 41.259 0.152 44.309955 -73.220978 +05446 15373 7045 94936779 2183677 36.655 0.843 44.541385 -73.182904 +05447 79 38 790257 12378 0.305 0.005 44.932454 -72.701892 +05448 1134 495 105085952 409346 40.574 0.158 44.750291 -72.900865 +05450 4977 2135 307850027 2865616 118.862 1.106 44.894578 -72.795246 +05452 19710 8193 107559004 1236613 41.529 0.477 44.538872 -73.050085 +05454 4447 1752 122742033 3343760 47.391 1.291 44.710289 -73.028878 +05455 1080 413 86295058 642425 33.319 0.248 44.801687 -72.967393 +05456 1277 559 62050717 2507592 23.958 0.968 44.221416 -73.264596 +05457 1617 945 99545684 6083881 38.435 2.349 44.957693 -72.917923 +05458 2044 1178 42417581 39322 16.378 0.015 44.717847 -73.307486 +05459 2156 832 66399633 1290552 25.637 0.498 44.950060 -73.005367 +05461 4542 1906 106596690 1039868 41.157 0.401 44.332786 -73.087324 +05462 1938 821 98267202 257446 37.941 0.099 44.312539 -72.952108 +05463 471 454 20421034 30865 7.885 0.012 44.871324 -73.349200 +05464 3008 1417 167851782 1055581 64.808 0.408 44.646262 -72.818997 +05465 5355 2078 112764341 493875 43.539 0.191 44.464905 -72.959411 +05468 12942 5117 165434063 3920244 63.874 1.514 44.657371 -73.144488 +05471 896 662 133793753 150950 51.658 0.058 44.827981 -72.577366 +05472 1643 710 102067642 691897 39.409 0.267 44.102761 -73.155209 +05473 1413 749 48948666 942425 18.899 0.364 44.241936 -73.194663 +05474 803 966 34846755 45533 13.454 0.018 44.787732 -73.297992 +05476 3183 1458 165163747 1233414 63.770 0.476 44.955228 -72.643138 +05477 4397 1884 120206296 1353649 46.412 0.523 44.416769 -72.962422 +05478 14449 6621 156621128 1521260 60.472 0.587 44.809326 -73.081499 +05481 0 1 972298 1328 0.375 0.001 44.772921 -73.205391 +05482 7198 3101 63443661 2014070 24.496 0.778 44.380662 -73.211006 +05483 1303 637 52704287 2514454 20.349 0.971 44.889901 -72.963135 +05485 93 43 476408 0 0.184 0.000 44.900339 -72.970903 +05486 1654 1080 38682119 37479 14.935 0.014 44.642247 -73.307740 +05487 1498 684 116546973 323401 44.999 0.125 44.228435 -72.990128 +05488 7690 3763 167273145 4617138 64.585 1.783 44.921329 -73.125393 +05489 3174 1262 137270165 189138 53.000 0.073 44.570896 -72.901614 +05491 5909 2794 223217171 9004062 86.185 3.476 44.111961 -73.310796 +05492 682 323 42647742 149880 16.466 0.058 44.737614 -72.761719 +05494 1767 693 88606529 524348 34.211 0.202 44.607422 -73.003642 +05495 9341 3928 86689453 1313045 33.471 0.507 44.429068 -73.096245 +05602 11916 5806 210287146 3095894 81.192 1.195 44.274953 -72.609475 +05640 161 87 9628237 144980 3.717 0.056 44.341880 -72.499842 +05641 17169 7943 140073023 987484 54.082 0.381 44.188841 -72.472163 +05647 1141 630 76230027 1689546 29.433 0.652 44.402700 -72.282372 +05648 423 256 23100708 569851 8.919 0.220 44.382753 -72.492386 +05649 574 260 40440628 117979 15.614 0.046 44.166651 -72.347187 +05650 1123 612 60980569 1783729 23.545 0.689 44.380397 -72.436355 +05651 1546 651 44496815 480377 17.180 0.185 44.282307 -72.489262 +05652 776 333 81138885 895473 31.328 0.346 44.723235 -72.611082 +05653 547 379 82811407 1664632 31.974 0.643 44.714847 -72.472560 +05654 970 454 7464479 132495 2.882 0.051 44.140286 -72.475659 +05655 2868 1331 87894850 3254219 33.936 1.256 44.624817 -72.567051 +05656 3508 1372 120920167 993743 46.688 0.384 44.648124 -72.688840 +05657 56 95 363568 887257 0.140 0.343 44.535509 -72.526720 +05658 1402 676 97260005 2491302 37.552 0.962 44.364724 -72.354830 +05660 1660 841 102910453 478452 39.734 0.185 44.253995 -72.734479 +05661 5620 2721 171151061 1503249 66.082 0.580 44.532670 -72.620196 +05663 6773 2377 141990167 449980 54.823 0.174 44.147613 -72.691275 +05664 80 34 43125 0 0.017 0.000 44.167173 -72.653138 +05667 2166 1000 117134422 618428 45.226 0.239 44.269042 -72.388870 +05669 634 413 109852084 129526 42.414 0.050 44.064618 -72.729887 +05672 4314 3526 188029710 424423 72.599 0.164 44.491975 -72.713006 +05673 2574 1938 142010045 483504 54.830 0.187 44.199044 -72.840849 +05674 1705 2232 103409221 128832 39.927 0.050 44.112526 -72.874028 +05675 1064 576 102947135 138682 39.748 0.054 44.076165 -72.422633 +05676 4984 2391 262963370 3585965 101.531 1.385 44.298566 -72.827823 +05677 2232 1004 39857149 1591519 15.389 0.614 44.409206 -72.708265 +05678 163 77 1831705 118879 0.707 0.046 44.157597 -72.477807 +05679 3296 1436 102935788 472582 39.744 0.182 44.108943 -72.531907 +05680 2168 1012 171990350 1488876 66.406 0.575 44.540596 -72.471939 +05681 458 413 66106347 3025268 25.524 1.168 44.453217 -72.407139 +05682 1251 561 119607040 494344 46.181 0.191 44.401783 -72.565453 +05701 20802 10267 150827254 651406 58.235 0.252 43.624577 -72.910205 +05730 302 243 35911950 310195 13.866 0.120 43.437589 -72.788657 +05732 708 584 25461747 4088767 9.831 1.579 43.643813 -73.210774 +05733 5895 3145 295939588 4270532 114.263 1.649 43.810619 -73.090333 +05734 1306 702 114233931 542720 44.106 0.210 43.981724 -73.331937 +05735 4402 1751 110986031 6019353 42.852 2.324 43.635671 -73.167738 +05736 684 320 15512592 185264 5.989 0.072 43.633591 -73.008456 +05737 875 463 166225438 3145659 64.180 1.215 43.773353 -72.906187 +05738 1072 576 129702295 534159 50.078 0.206 43.528587 -72.860737 +05739 1407 757 141638614 479825 54.687 0.185 43.342621 -73.000196 +05740 25 15 72134 0 0.028 0.000 43.971751 -73.105275 +05742 597 416 66695489 738829 25.751 0.285 43.419653 -72.910801 +05743 4330 2331 256031317 5869876 98.854 2.266 43.677330 -73.304926 +05744 533 258 57617410 210963 22.246 0.081 43.694013 -73.080457 +05747 280 233 131031229 249744 50.591 0.096 44.005291 -72.841314 +05748 323 208 98481990 278678 38.024 0.108 43.905480 -72.921796 +05751 811 2609 120651071 705219 46.584 0.272 43.657584 -72.784410 +05753 10491 3921 219488982 2771945 84.745 1.070 43.989489 -73.178514 +05757 832 470 63406134 35581 24.481 0.014 43.480102 -73.123641 +05758 784 662 78064490 875265 30.141 0.338 43.450789 -72.757786 +05759 1827 857 46632446 483268 18.005 0.187 43.532157 -72.964768 +05760 1123 645 101458624 2037996 39.173 0.787 43.800615 -73.289701 +05761 1000 588 98392373 158621 37.990 0.061 43.360927 -73.151758 +05762 542 431 51775536 169832 19.991 0.066 43.804480 -72.836936 +05763 2747 1303 74482692 260478 28.758 0.101 43.730216 -72.995211 +05764 3452 1676 111862666 2727846 43.190 1.053 43.539940 -73.189191 +05765 1803 806 20466061 429477 7.902 0.166 43.651666 -73.034649 +05766 572 334 118297320 415774 45.675 0.161 43.984944 -72.996753 +05767 1143 836 147783985 780220 57.060 0.301 43.871952 -72.831850 +05769 1216 735 79408330 4357529 30.660 1.682 43.932071 -73.119822 +05770 1136 527 107000816 582042 41.313 0.225 43.881955 -73.324490 +05772 713 539 117891227 716981 45.518 0.277 43.750797 -72.760914 +05773 2136 1112 183022821 1124035 70.666 0.434 43.420232 -72.986994 +05774 1129 924 57728711 2273916 22.289 0.878 43.442986 -73.191086 +05775 623 306 32763435 379076 12.650 0.146 43.365956 -73.228386 +05776 714 482 115429345 96658 44.568 0.037 43.252732 -73.197361 +05777 3420 1546 124919107 171828 48.232 0.066 43.556446 -73.048764 +05778 733 313 64436792 507526 24.879 0.196 43.876421 -73.212537 +05819 9444 4364 235484662 6114349 90.921 2.361 44.404737 -71.983075 +05820 662 363 62188349 483677 24.011 0.187 44.763601 -72.375155 +05821 1269 769 90142483 2170805 34.804 0.838 44.311345 -72.114854 +05822 1873 1159 100207825 7103132 38.690 2.743 44.752720 -72.142891 +05824 1139 753 134108115 5575500 51.779 2.153 44.442519 -71.842937 +05825 191 93 6586438 69906 2.543 0.027 44.860534 -72.249316 +05826 983 509 81059665 300184 31.297 0.116 44.647727 -72.402091 +05827 309 190 38146793 1574432 14.729 0.608 44.676898 -72.362504 +05828 1928 962 139057565 388212 53.690 0.150 44.437504 -72.124822 +05829 2003 1118 65946490 4218120 25.462 1.629 44.967210 -72.068265 +05830 1502 849 81183397 1794872 31.345 0.693 44.973220 -71.985854 +05832 982 740 76002046 283232 29.345 0.109 44.578024 -71.917703 +05833 273 184 37418358 166031 14.447 0.064 44.842317 -71.959562 +05836 1068 607 73952556 717808 28.553 0.277 44.515314 -72.264672 +05837 353 232 119051448 122196 45.966 0.047 44.662982 -71.805063 +05839 775 486 62693329 1102863 24.206 0.426 44.673667 -72.202280 +05841 425 603 74238222 4449171 28.664 1.718 44.607670 -72.288602 +05842 522 257 47229613 303758 18.235 0.117 44.558929 -72.231568 +05843 2556 1212 93636031 827135 36.153 0.319 44.515785 -72.348111 +05845 1096 545 108321547 887861 41.823 0.343 44.800772 -72.290572 +05846 1252 969 144093051 3826064 55.635 1.477 44.800887 -71.862687 +05847 879 509 145028364 207786 55.996 0.080 44.793437 -72.458451 +05850 231 57 1049164 20883 0.405 0.008 44.541247 -72.014699 +05851 6528 2795 206592268 1801365 79.766 0.696 44.557132 -72.080590 +05853 711 789 77633277 7514706 29.974 2.901 44.888401 -71.939340 +05855 7170 3463 143800786 25070695 55.522 9.680 44.928285 -72.191141 +05857 1540 841 106880189 4820427 41.267 1.861 44.928911 -72.312700 +05858 368 279 202398883 684854 78.147 0.264 44.558787 -71.816917 +05859 1819 1326 144069604 818546 55.626 0.316 44.966671 -72.443035 +05860 2557 1580 195950882 5959543 75.657 2.301 44.802660 -72.103996 +05862 356 329 71202268 2335875 27.491 0.902 44.319675 -72.217809 +05866 732 436 84455941 667553 32.609 0.258 44.641631 -72.110075 +05867 899 430 93299585 506387 36.023 0.196 44.665071 -72.035973 +05868 364 199 36339228 121545 14.031 0.047 44.902167 -72.377864 +05871 1638 1051 122242413 1252477 47.198 0.484 44.689305 -71.936955 +05872 789 505 62474671 3545922 24.122 1.369 44.868527 -72.048033 +05873 675 558 76621505 1188689 29.584 0.459 44.424553 -72.195302 +05874 505 294 94844144 275414 36.620 0.106 44.883431 -72.484844 +05875 454 335 43472091 1685990 16.785 0.651 44.709712 -72.247090 +05901 20 175 92780261 4530286 35.823 1.749 44.939704 -71.660073 +05902 188 104 2741543 160056 1.059 0.062 45.009587 -71.487927 +05903 868 598 172662646 961362 66.665 0.371 44.935092 -71.588008 +05904 267 141 1479506 240607 0.571 0.093 44.416217 -71.706540 +05905 827 844 488514596 8232401 188.617 3.179 44.702005 -71.679421 +05906 1178 758 124684622 1627296 48.141 0.628 44.470995 -71.705947 +05907 177 335 285309325 4413400 110.159 1.704 44.912613 -71.818279 +06001 18385 7597 60750357 1218215 23.456 0.470 41.787159 -72.852046 +06002 20486 9019 67502002 428529 26.063 0.165 41.844930 -72.740951 +06010 60448 26996 68381017 1046767 26.402 0.404 41.681578 -72.940749 +06013 9326 3401 77047287 1725405 29.748 0.666 41.757517 -72.957561 +06016 6226 2682 38846825 169595 14.999 0.065 41.901899 -72.547432 +06018 2865 1435 31038044 15763 11.984 0.006 42.024629 -73.309616 +06019 10129 4272 59460853 1137672 22.958 0.439 41.857508 -72.902765 +06020 0 0 18987 0 0.007 0.000 41.834605 -72.928835 +06021 314 158 14622779 160987 5.646 0.062 42.017229 -73.104821 +06022 163 67 4196745 0 1.620 0.000 41.865433 -72.927326 +06023 1296 517 2373324 5730 0.916 0.002 41.612590 -72.720095 +06024 647 305 20576056 0 7.944 0.000 42.012137 -73.274264 +06026 5117 2138 43614027 235492 16.839 0.091 41.929719 -72.745378 +06027 1492 574 40819647 1718138 15.761 0.663 42.004930 -72.915699 +06029 15547 6644 87556774 1380869 33.806 0.533 41.915167 -72.444294 +06031 1287 790 99548245 893000 38.436 0.345 41.955257 -73.316785 +06032 17675 7867 58984447 1541344 22.774 0.595 41.725223 -72.830309 +06033 28762 11529 88936382 1442061 34.339 0.557 41.707461 -72.538930 +06035 7513 3018 39708852 373679 15.332 0.144 41.960682 -72.803846 +06037 18565 7620 65768256 1705949 25.393 0.659 41.605477 -72.778459 +06039 1942 1287 54333953 2458512 20.978 0.949 41.949929 -73.448303 +06040 35306 15450 43949945 393095 16.969 0.152 41.761415 -72.525608 +06042 22942 10549 27027751 327214 10.435 0.126 41.802778 -72.520987 +06043 4986 2018 37326699 766251 14.412 0.296 41.764588 -72.437576 +06051 30519 13318 10602237 0 4.094 0.000 41.665141 -72.769832 +06052 7858 3469 6604179 58558 2.550 0.023 41.655568 -72.803107 +06053 34863 14454 20831103 131729 8.043 0.051 41.690145 -72.791940 +06057 6707 2784 94463646 2940724 36.473 1.135 41.841041 -72.998680 +06058 1787 1007 131383772 3317801 50.728 1.281 41.969912 -73.178464 +06059 0 0 7586417 2909196 2.929 1.123 41.957180 -72.941950 +06060 2581 902 31265752 1525 12.072 0.001 42.009151 -72.847465 +06061 169 75 330786 0 0.128 0.000 41.875600 -72.966840 +06062 17715 8063 22634325 181508 8.739 0.070 41.673639 -72.859729 +06063 3285 1381 76659560 3762270 29.598 1.453 41.925197 -72.971286 +06065 882 350 24949077 35376 9.633 0.014 41.974623 -73.007693 +06066 29219 13911 45866666 970662 17.709 0.375 41.837523 -72.459123 +06067 19709 8843 34846672 997338 13.454 0.385 41.656624 -72.661779 +06068 1612 1167 80533460 4825290 31.094 1.863 42.007238 -73.422227 +06069 2535 1588 129705604 1955694 50.080 0.755 41.860761 -73.449213 +06070 15104 5792 56199044 602242 21.699 0.233 41.874256 -72.808940 +06071 11645 3496 74744876 304031 28.859 0.117 41.992781 -72.453630 +06073 5651 2122 43790996 933957 16.908 0.361 41.664442 -72.555040 +06074 25705 10241 72677501 1572274 28.061 0.607 41.838090 -72.577836 +06076 12659 5470 221722750 4442649 85.608 1.715 41.984442 -72.263453 +06078 12413 4089 66191877 1614298 25.557 0.623 41.992731 -72.651460 +06081 1381 674 1787093 164281 0.690 0.063 41.905187 -72.772551 +06082 44654 17558 86169677 2448012 33.270 0.945 41.983993 -72.555553 +06084 15067 5457 103265782 1630210 39.871 0.629 41.882488 -72.359068 +06085 7276 2987 12367991 338311 4.775 0.131 41.748955 -72.889415 +06088 4936 2363 29142176 1297022 11.252 0.501 41.912186 -72.585048 +06089 2813 1185 7007276 81405 2.706 0.031 41.837488 -72.821964 +06090 1232 460 35084682 0 13.546 0.000 41.946484 -72.863185 +06091 140 94 28774800 2178445 11.110 0.841 42.024228 -72.976917 +06092 4203 1468 22356020 39765 8.632 0.015 41.873452 -72.860524 +06093 3322 1380 43268546 142619 16.706 0.055 42.013210 -72.717371 +06095 29079 11781 76633889 3781523 29.589 1.460 41.871037 -72.675082 +06096 12498 5429 24860683 885163 9.599 0.342 41.927630 -72.659703 +06098 12426 6186 146433098 6733528 56.538 2.600 41.956185 -73.086362 +06103 1410 1168 1214033 60241 0.469 0.023 41.767208 -72.674257 +06105 19392 11179 6079380 0 2.347 0.000 41.774680 -72.705032 +06106 39902 15404 10951801 254096 4.229 0.098 41.748587 -72.696006 +06107 18786 7846 16897276 541093 6.524 0.209 41.752304 -72.758098 +06108 24307 9845 21005202 1143823 8.110 0.442 41.780375 -72.623945 +06109 26668 11677 31883298 2071376 12.310 0.800 41.702484 -72.669301 +06110 12650 5264 8639056 0 3.336 0.000 41.732684 -72.733602 +06111 30562 13011 34034916 0 13.141 0.000 41.686993 -72.730838 +06112 22879 9057 7065436 13593 2.728 0.005 41.793336 -72.695823 +06114 27449 10397 10466921 364560 4.041 0.141 41.740854 -72.670695 +06117 17267 5968 25732555 666960 9.935 0.258 41.785160 -72.763564 +06118 26956 11487 25665833 760959 9.910 0.294 41.748702 -72.609686 +06119 15474 7067 5284985 0 2.041 0.000 41.763421 -72.727208 +06120 12887 4893 9214593 1044842 3.558 0.403 41.789073 -72.664356 +06160 0 0 140568 0 0.054 0.000 41.766596 -72.691126 +06226 20114 7340 18729103 293953 7.231 0.113 41.708238 -72.208549 +06231 4083 1562 41181064 477282 15.900 0.184 41.633242 -72.367207 +06232 3297 1314 39996592 639655 15.443 0.247 41.732982 -72.374658 +06234 8244 3247 79282417 391220 30.611 0.151 41.793889 -71.953266 +06235 2257 965 50015880 352485 19.311 0.136 41.790890 -72.129540 +06237 5492 2311 55858842 1587989 21.567 0.613 41.694527 -72.305414 +06238 12428 5096 96800018 1748669 37.375 0.675 41.780099 -72.344021 +06239 11183 4817 58817022 1391356 22.709 0.537 41.794040 -71.854535 +06241 6650 2929 71065128 2539686 27.438 0.981 41.853901 -71.847371 +06242 1408 635 67468035 971351 26.050 0.375 41.895596 -72.093305 +06243 60 27 903761 257962 0.349 0.100 41.844870 -71.805029 +06247 2841 1158 88112010 1091788 34.020 0.422 41.767801 -72.075026 +06248 5603 2005 54485280 429890 21.037 0.166 41.688578 -72.409107 +06249 7308 3125 140113256 2986571 54.098 1.153 41.632955 -72.240090 +06250 4821 2008 43781464 2244670 16.904 0.867 41.772955 -72.198446 +06254 1922 771 50476265 205575 19.489 0.079 41.621212 -72.142609 +06255 4744 2060 58918134 1863254 22.748 0.719 41.991087 -71.901952 +06256 2154 1023 19364911 679441 7.477 0.262 41.732151 -72.157361 +06259 4498 1782 107684894 651006 41.577 0.251 41.871502 -71.987646 +06260 9510 4271 51760025 282504 19.985 0.109 41.908027 -71.870452 +06262 586 288 2467318 82324 0.953 0.032 42.019311 -71.948384 +06263 345 150 597883 0 0.231 0.000 41.835236 -71.899848 +06264 166 74 3749379 0 1.448 0.000 41.694210 -72.100366 +06266 495 207 2455634 68163 0.948 0.026 41.673661 -72.172813 +06268 11481 3776 68064113 359550 26.280 0.139 41.801119 -72.245399 +06269 9844 27 3311133 28584 1.278 0.011 41.804401 -72.293122 +06277 4140 1826 59550215 2578991 22.992 0.996 41.958388 -71.843920 +06278 4454 1976 102559760 1846484 39.599 0.713 41.897123 -72.171427 +06279 6041 2637 86230314 582495 33.294 0.225 41.897267 -72.251848 +06280 3162 1322 37637994 1420554 14.532 0.548 41.690986 -72.130094 +06281 6930 3082 143591360 2191136 55.441 0.846 41.973476 -72.014137 +06282 1096 525 14849290 901025 5.733 0.348 41.944128 -72.084200 +06320 27617 11838 14325302 5159756 5.531 1.992 41.347850 -72.102451 +06330 3282 1367 47409306 1522044 18.305 0.588 41.635570 -72.077527 +06331 5137 2045 103468837 683786 39.950 0.264 41.695706 -72.003414 +06332 258 110 1190715 11477 0.460 0.004 41.731216 -71.902335 +06333 6607 2505 60660513 1656168 23.421 0.639 41.388969 -72.232102 +06334 2592 1039 50196968 720872 19.381 0.278 41.544925 -72.173849 +06335 6729 2652 28068897 2954037 10.837 1.141 41.434707 -72.058533 +06336 84 38 1589389 2462 0.614 0.001 41.580577 -72.195867 +06339 8302 3319 69677180 1432085 26.903 0.553 41.441939 -71.990545 +06340 31242 14010 59092210 13941534 22.816 5.383 41.357477 -72.041780 +06350 67 27 604362 0 0.233 0.000 41.648507 -72.068444 +06351 16301 6854 134706676 7147702 52.011 2.760 41.589788 -71.948385 +06353 162 90 579882 392780 0.224 0.152 41.464427 -72.149606 +06354 6141 2524 53412083 515019 20.623 0.199 41.708858 -71.855134 +06355 12985 6246 36411555 6322441 14.059 2.441 41.366899 -71.976371 +06357 12552 5953 27389420 6534911 10.575 2.523 41.324532 -72.220077 +06359 5313 2314 140572851 1868236 54.275 0.721 41.471184 -71.872370 +06360 37541 17286 69800814 3366543 26.950 1.300 41.547860 -72.089488 +06365 4720 2016 79810446 2398364 30.815 0.926 41.518652 -72.006597 +06370 7429 2864 61077880 2550216 23.582 0.985 41.468318 -72.186089 +06371 9952 5964 141816504 15734473 54.756 6.075 41.362386 -72.323754 +06373 345 141 8767549 45596 3.385 0.018 41.681949 -71.797689 +06374 8373 3341 66999121 972661 25.869 0.376 41.681878 -71.910931 +06375 3660 1523 20632209 2190382 7.966 0.846 41.406338 -72.123236 +06376 57 280 259435 0 0.100 0.000 41.294060 -72.253950 +06377 2962 1179 43153488 83810 16.662 0.032 41.730545 -71.819313 +06378 5399 3040 55052205 5297923 21.256 2.046 41.383211 -71.908408 +06379 9038 4157 31102848 4305710 12.009 1.662 41.363472 -71.853195 +06380 2862 1336 2472526 117263 0.955 0.045 41.563417 -72.051631 +06382 11947 4444 46784724 2844918 18.064 1.098 41.467256 -72.122235 +06384 2672 1148 98412852 2152833 37.997 0.831 41.579192 -71.831228 +06385 15893 7122 64672309 5457800 24.970 2.107 41.361730 -72.156576 +06387 213 90 277797 0 0.107 0.000 41.741171 -71.913021 +06389 41 19 328568 0 0.127 0.000 41.564159 -72.129139 +06390 236 660 10555961 380880 4.076 0.147 41.273576 -71.968993 +06401 19237 8142 15556946 435209 6.007 0.168 41.344249 -73.069825 +06403 6033 2504 25033667 301429 9.666 0.116 41.443685 -73.051925 +06405 27860 13910 55025925 12664524 21.246 4.890 41.285007 -72.793548 +06409 693 362 3503015 203413 1.353 0.079 41.351081 -72.420167 +06410 29161 10388 84355611 723751 32.570 0.279 41.511827 -72.903617 +06412 3994 1923 41573139 2010890 16.051 0.776 41.409683 -72.484735 +06413 13235 6049 41948300 4026476 16.196 1.555 41.295610 -72.529125 +06414 214 71 751064 0 0.290 0.000 41.572231 -72.552319 +06415 16857 6841 140936818 2580679 54.416 0.996 41.551099 -72.348073 +06416 14005 6001 30071926 1290030 11.611 0.498 41.616551 -72.661604 +06417 4629 2096 34999963 1686023 13.514 0.651 41.367819 -72.477442 +06418 12914 5855 13125510 906988 5.068 0.350 41.326171 -73.082570 +06419 6525 2598 91506556 1170679 35.331 0.452 41.380739 -72.576659 +06420 4182 1648 75667050 2198054 29.215 0.849 41.489351 -72.258380 +06422 7388 2694 61276641 395267 23.659 0.153 41.468922 -72.684525 +06423 5097 2365 99625558 4347396 38.466 1.679 41.457501 -72.389223 +06424 12808 5466 104288107 4935712 40.266 1.906 41.560603 -72.502329 +06426 3245 1774 14807363 3516809 5.717 1.358 41.351587 -72.397624 +06437 22375 9596 122034645 6013762 47.118 2.322 41.331777 -72.696816 +06438 2550 1146 31816532 2380663 12.284 0.919 41.455264 -72.504397 +06441 5438 2172 67020488 955176 25.877 0.369 41.471081 -72.580378 +06442 2745 1125 8631794 43968 3.333 0.017 41.341858 -72.434679 +06443 18269 8049 93621175 4285429 36.147 1.655 41.346749 -72.625456 +06444 370 134 1702317 0 0.657 0.000 41.562682 -72.933270 +06447 6404 2389 60479195 444481 23.351 0.172 41.636439 -72.454002 +06450 36493 15440 36345690 380875 14.033 0.147 41.535812 -72.775686 +06451 24419 10473 25324028 559642 9.778 0.216 41.541906 -72.823409 +06455 3148 1320 28103982 1538526 10.851 0.594 41.514163 -72.717844 +06456 295 134 2253121 1030501 0.870 0.398 41.516690 -72.553751 +06457 47648 21223 106236270 3487775 41.018 1.347 41.549534 -72.657719 +06460 38207 17410 32513600 6395141 12.554 2.469 41.214266 -73.050812 +06461 14552 5664 24920446 1426969 9.622 0.551 41.239863 -73.075393 +06467 157 60 173168 0 0.067 0.000 41.567845 -72.899757 +06468 19479 6918 67527745 519191 26.073 0.200 41.339236 -73.222828 +06469 3209 1471 26051306 971355 10.058 0.375 41.510405 -72.444812 +06470 16003 5871 96624966 1787418 37.307 0.690 41.395083 -73.317663 +06471 7720 3207 23314690 419741 9.002 0.162 41.332109 -72.781000 +06472 6853 2484 42331844 4533556 16.344 1.750 41.382766 -72.775194 +06473 24388 9586 56066604 714423 21.647 0.276 41.381327 -72.856347 +06475 10242 5602 38963979 8877482 15.044 3.428 41.299897 -72.382734 +06477 13956 5345 44498729 616364 17.181 0.238 41.284951 -73.024637 +06478 12683 4746 84801350 1532834 32.742 0.592 41.444001 -73.147999 +06479 10431 4248 19058824 89251 7.359 0.034 41.574754 -72.911875 +06480 9508 4077 60476846 3895786 23.350 1.504 41.598834 -72.589071 +06481 1277 543 4655719 43125 1.798 0.017 41.536519 -72.698236 +06482 11557 4190 52710180 1862235 20.352 0.719 41.408157 -73.242514 +06483 16540 6968 37600488 1190041 14.518 0.459 41.385132 -73.083529 +06484 39559 16146 79320157 3307178 30.626 1.277 41.304515 -73.139041 +06488 19904 9091 100989927 2789065 38.992 1.077 41.476862 -73.230081 +06489 32067 12984 72031677 1803988 27.812 0.697 41.614398 -72.869567 +06492 45241 18981 102426702 2191161 39.547 0.846 41.461989 -72.805511 +06498 6963 3953 40905418 4827136 15.794 1.864 41.303695 -72.478017 +06510 2737 1734 622905 0 0.241 0.000 41.306521 -72.926004 +06511 53600 23553 15355567 318598 5.929 0.123 41.317046 -72.927295 +06512 29861 13136 27248328 5173981 10.521 1.998 41.278274 -72.875249 +06513 38978 15846 18730722 1038752 7.232 0.401 41.316686 -72.870791 +06514 26265 10864 29001567 456220 11.198 0.176 41.375791 -72.943431 +06515 17141 6970 11810240 75119 4.560 0.029 41.328039 -72.970840 +06516 55564 22446 27833855 3241760 10.747 1.252 41.272573 -72.964967 +06517 14853 6789 13173835 1139596 5.086 0.440 41.349206 -72.907174 +06518 19848 7465 42445316 131889 16.388 0.051 41.430806 -72.912031 +06519 16428 6166 4325211 1446607 1.670 0.559 41.293934 -72.932028 +06524 5563 2044 54724417 996204 21.129 0.385 41.422964 -72.994187 +06525 8990 3478 48722321 971941 18.812 0.375 41.363538 -73.003892 +06604 30313 11945 8110911 4858978 3.132 1.876 41.182920 -73.208027 +06605 23397 9618 6068574 1022912 2.343 0.395 41.162092 -73.217672 +06606 46236 17623 13703306 361561 5.291 0.140 41.212110 -73.206673 +06607 7843 3309 3028009 2002443 1.169 0.773 41.170744 -73.168038 +06608 13671 5104 2675495 340160 1.033 0.131 41.186475 -73.181251 +06610 22735 9405 7919728 132983 3.058 0.051 41.209283 -73.164603 +06611 36091 13182 61965814 623554 23.925 0.241 41.267861 -73.213691 +06612 7453 2700 69483622 3217796 26.828 1.242 41.264945 -73.300479 +06614 32929 13418 28473756 1455195 10.994 0.562 41.232717 -73.129767 +06615 18453 7671 16772820 4855281 6.476 1.875 41.171614 -73.132160 +06702 3654 2046 1655860 54618 0.639 0.021 41.556461 -73.045886 +06704 25139 10778 20658379 493049 7.976 0.190 41.588692 -73.035390 +06705 27122 11721 14644888 49227 5.654 0.019 41.547103 -72.992727 +06706 14324 5961 9614080 320865 3.712 0.124 41.532778 -73.023580 +06708 29418 12911 24571529 178268 9.487 0.069 41.550872 -73.068653 +06710 10715 4567 2554889 0 0.986 0.000 41.569145 -73.045817 +06712 9376 3465 36814143 626714 14.214 0.242 41.499248 -72.975635 +06716 16680 6276 52928424 1725754 20.436 0.666 41.596305 -72.969624 +06750 1446 740 19273268 542618 7.441 0.210 41.723731 -73.268144 +06751 3577 1564 49150811 740229 18.977 0.286 41.635768 -73.211411 +06752 1735 884 43234760 2363938 16.693 0.913 41.520294 -73.361093 +06754 1699 910 83823417 1383714 32.364 0.534 41.775432 -73.362981 +06755 1133 470 11675454 469706 4.508 0.181 41.650654 -73.479354 +06756 2853 1602 93379523 3571626 36.054 1.379 41.849537 -73.234002 +06757 2258 1211 89081057 1625947 34.394 0.628 41.741417 -73.457817 +06758 354 152 6814398 83802 2.631 0.032 41.676116 -73.246125 +06759 5720 2766 130086165 2243141 50.227 0.866 41.753640 -73.212028 +06762 7561 2887 45079835 1798741 17.405 0.694 41.530545 -73.121576 +06763 2033 1153 38049169 3434017 14.691 1.326 41.694322 -73.210000 +06770 31975 13107 43313788 240921 16.724 0.093 41.488428 -73.053383 +06776 26889 11198 144011110 4375439 55.603 1.689 41.601320 -73.422832 +06777 1733 1091 41187079 2712362 15.902 1.047 41.691303 -73.334410 +06778 1378 547 18386793 91229 7.099 0.035 41.713490 -73.111909 +06779 8324 3531 8276728 118087 3.196 0.046 41.594462 -73.082080 +06782 2376 940 19499383 593523 7.529 0.229 41.651536 -73.042744 +06783 2228 1152 66947807 143514 25.849 0.055 41.555498 -73.296011 +06784 3689 1884 60047482 4678883 23.184 1.807 41.577251 -73.492529 +06785 686 434 34878327 1119822 13.467 0.432 41.695051 -73.464792 +06786 9867 4169 37201523 556049 14.364 0.215 41.672734 -73.018048 +06787 7975 3309 31623842 612891 12.210 0.237 41.671080 -73.085047 +06790 36482 16819 107672549 1504916 41.573 0.581 41.834255 -73.131520 +06791 5666 2295 79921446 902024 30.858 0.348 41.761345 -73.060443 +06793 1140 701 36639484 121343 14.147 0.047 41.633703 -73.288900 +06794 1065 634 35185807 0 13.585 0.000 41.649454 -73.323557 +06795 14144 5552 67869352 1194612 26.205 0.461 41.622230 -73.126107 +06796 1009 749 96213920 292027 37.148 0.113 41.866022 -73.342081 +06798 9984 4569 94276358 632871 36.400 0.244 41.561632 -73.206096 +06801 18581 7306 43733115 100805 16.885 0.039 41.369778 -73.389503 +06804 16466 6569 51233125 1543913 19.781 0.596 41.469885 -73.393667 +06807 7150 2866 8132945 345444 3.140 0.133 41.056732 -73.592029 +06810 49482 19188 53579379 702851 20.687 0.271 41.374284 -73.457611 +06811 31400 11963 54906534 5126518 21.200 1.979 41.422586 -73.478364 +06812 13881 5593 52944492 12204578 20.442 4.712 41.482081 -73.487620 +06820 20732 7074 32777323 5998611 12.655 2.316 41.076202 -73.480080 +06824 33900 12108 52148067 3345678 20.134 1.292 41.173039 -73.280818 +06825 21123 7780 17422786 95744 6.727 0.037 41.196583 -73.243254 +06830 24027 10997 35062121 12544046 13.538 4.843 41.037605 -73.624339 +06831 14792 6217 71259445 1389214 27.513 0.536 41.088724 -73.658838 +06840 19738 7551 57484075 851634 22.195 0.329 41.161054 -73.501184 +06850 18078 7537 17353042 225748 6.700 0.087 41.126683 -73.447459 +06851 26703 11198 19762489 157816 7.630 0.061 41.138233 -73.401526 +06853 3646 1554 3101447 1057600 1.197 0.408 41.066100 -73.438006 +06854 29100 11566 12646839 6420038 4.883 2.479 41.083910 -73.426615 +06855 7892 3453 6160437 6891287 2.379 2.661 41.084489 -73.395757 +06856 3 0 9568 0 0.004 0.000 41.111223 -73.420860 +06870 7316 2802 5918751 3865378 2.285 1.492 41.022718 -73.570619 +06877 24677 9435 89603102 1320465 34.596 0.510 41.306249 -73.501019 +06878 8043 2818 6202728 2096487 2.395 0.809 41.030093 -73.583719 +06880 26647 10535 52109815 15235489 20.120 5.882 41.133235 -73.347921 +06883 10179 3674 51278336 2266804 19.799 0.875 41.228103 -73.366757 +06890 4306 1731 7495638 385627 2.894 0.149 41.148535 -73.287843 +06896 9110 3793 81363238 1432253 31.415 0.553 41.305415 -73.392584 +06897 18071 6478 69435124 1276093 26.809 0.493 41.206532 -73.437607 +06901 6828 4396 1204494 0 0.465 0.000 41.053607 -73.538141 +06902 63406 25273 26362119 6129760 10.178 2.367 41.059353 -73.544337 +06903 14499 5275 45312156 1983315 17.495 0.766 41.136018 -73.571142 +06905 19649 8097 12864711 25391 4.967 0.010 41.088293 -73.542669 +06906 9088 3740 3131658 0 1.209 0.000 41.071023 -73.522621 +06907 9016 3723 5372803 41550 2.074 0.016 41.100918 -73.520517 +07001 16305 5076 9794911 51030 3.782 0.020 40.582316 -74.271506 +07002 63031 27802 15113912 2095659 5.836 0.809 40.662411 -74.110228 +07003 47312 19468 13695411 63006 5.288 0.024 40.809128 -74.187155 +07004 7440 2715 26640205 425766 10.286 0.164 40.882508 -74.304593 +07005 15269 5989 48732295 4331798 18.816 1.673 40.932771 -74.417304 +07006 24812 9664 23950198 53397 9.247 0.021 40.851187 -74.282865 +07008 22844 8148 11525414 1508534 4.450 0.582 40.583790 -74.227457 +07009 12411 4661 11013616 325963 4.252 0.126 40.858023 -74.229791 +07010 23594 10665 2493329 0 0.963 0.000 40.822081 -73.987834 +07011 39710 13586 8613470 223925 3.326 0.086 40.878256 -74.144073 +07012 11703 5071 5430085 1698 2.097 0.001 40.848398 -74.160266 +07013 27051 11099 11276297 13238 4.354 0.005 40.869405 -74.173062 +07014 5184 1983 3572230 116010 1.379 0.045 40.831352 -74.135424 +07016 22625 8816 12508666 100262 4.830 0.039 40.656391 -74.304830 +07017 35945 15884 5815629 0 2.245 0.000 40.772089 -74.207161 +07018 28322 12909 4382846 0 1.692 0.000 40.755889 -74.218015 +07020 11513 6282 2421904 3849918 0.935 1.486 40.823800 -73.974237 +07021 2091 755 3644244 15289 1.407 0.006 40.828127 -74.276197 +07022 13835 5150 2182004 2824 0.842 0.001 40.821054 -74.003061 +07023 7318 2686 3475081 0 1.342 0.000 40.641700 -74.385676 +07024 35353 17815 6603744 897562 2.550 0.347 40.850640 -73.971007 +07026 30555 11814 5637477 164263 2.177 0.063 40.879797 -74.108250 +07027 4226 1870 1720229 0 0.664 0.000 40.651249 -74.323137 +07028 7618 2575 3351653 12131 1.294 0.005 40.804798 -74.204569 +07029 16026 6022 3381221 354047 1.305 0.137 40.743595 -74.154913 +07030 50005 26855 3272739 0 1.264 0.000 40.745268 -74.032021 +07031 15392 6573 6632772 159950 2.561 0.062 40.786256 -74.126220 +07032 40684 14180 22726429 3005574 8.775 1.160 40.753720 -74.120875 +07033 7914 2924 5587721 10391 2.157 0.004 40.677420 -74.289341 +07034 9360 3768 3239344 66322 1.251 0.026 40.879480 -74.380104 +07035 10607 4176 17395183 1373187 6.716 0.530 40.927501 -74.308334 +07036 41970 16586 28106043 1897016 10.852 0.732 40.625230 -74.237823 +07039 29358 10280 35748751 811813 13.803 0.313 40.785828 -74.329100 +07040 23876 8614 9025256 5604 3.485 0.002 40.730785 -74.268919 +07041 6868 2772 3414087 5291 1.318 0.002 40.722448 -74.301546 +07042 25599 11372 9778598 16089 3.776 0.006 40.813487 -74.219011 +07043 12138 4517 6729684 1990 2.598 0.001 40.844837 -74.200502 +07044 13584 5688 7193907 54374 2.778 0.021 40.834007 -74.242877 +07045 10127 3807 18261568 831913 7.051 0.321 40.912095 -74.368846 +07046 4194 1375 6814040 697636 2.631 0.269 40.889726 -74.440329 +07047 60773 23912 13296275 447678 5.134 0.173 40.794175 -74.024960 +07050 30074 12204 5684386 5154 2.195 0.002 40.768040 -74.235692 +07052 46182 17605 31223591 324329 12.055 0.125 40.785753 -74.265059 +07054 29305 11742 35543799 1717266 13.724 0.663 40.854906 -74.403515 +07055 69816 20449 8134406 252809 3.141 0.098 40.856413 -74.126940 +07057 11335 4946 2546494 132190 0.983 0.051 40.853084 -74.106323 +07058 5372 1996 7590037 288985 2.931 0.112 40.872514 -74.341776 +07059 15311 5258 50678074 199287 19.567 0.077 40.634588 -74.519044 +07060 44998 15499 13132829 39738 5.071 0.015 40.616667 -74.422042 +07062 12949 4701 4797686 9135 1.852 0.004 40.632358 -74.401184 +07063 13538 4157 4716093 10995 1.821 0.004 40.605118 -74.444522 +07064 3723 1338 3570249 219774 1.378 0.085 40.573310 -74.245640 +07065 27346 11300 10093781 339813 3.897 0.131 40.607152 -74.280531 +07066 14756 5751 11140723 499472 4.301 0.193 40.620620 -74.315442 +07067 18036 6398 10347270 10930 3.995 0.004 40.589252 -74.311310 +07068 5819 2432 9165263 53684 3.539 0.021 40.819861 -74.310168 +07069 6157 2378 16402236 71737 6.333 0.028 40.642845 -74.436233 +07070 18061 7278 7266584 351535 2.806 0.136 40.820314 -74.106041 +07071 20554 8787 11805644 870175 4.558 0.336 40.798004 -74.113250 +07072 6127 2495 10357741 631509 3.999 0.244 40.826424 -74.062338 +07073 8913 4018 9605612 888831 3.709 0.343 40.817097 -74.085024 +07074 2708 1053 3249396 27443 1.255 0.011 40.838127 -74.055268 +07075 7626 3051 2841244 303 1.097 0.000 40.850183 -74.087068 +07076 23480 8876 23305093 81901 8.998 0.032 40.633026 -74.372905 +07077 2766 1048 4014223 1595726 1.550 0.616 40.554147 -74.253060 +07078 13250 4325 16756280 1394978 6.470 0.539 40.742346 -74.334237 +07079 16316 5846 7403984 6077 2.859 0.002 40.748811 -74.261512 +07080 23377 8090 21495495 86837 8.299 0.034 40.574413 -74.414800 +07081 15808 6732 13394699 49191 5.172 0.019 40.697899 -74.334520 +07082 5384 1803 15643892 188641 6.040 0.073 40.926913 -74.342511 +07083 53053 18938 22399550 54510 8.649 0.021 40.695266 -74.269078 +07086 12554 6213 2092654 64162 0.808 0.025 40.767828 -74.020791 +07087 66515 24962 3336518 0 1.288 0.000 40.767374 -74.032326 +07088 3606 1321 1100952 0 0.425 0.000 40.717934 -74.286158 +07090 30338 10961 17414692 62226 6.724 0.024 40.651644 -74.343447 +07092 6730 2576 10421643 107234 4.024 0.041 40.680722 -74.360292 +07093 60884 24857 3116005 0 1.203 0.000 40.788079 -74.011357 +07094 16264 6846 15078302 2012171 5.822 0.777 40.781958 -74.067649 +07095 19844 7988 10681463 48681 4.124 0.019 40.552844 -74.286949 +07102 12579 5271 3041645 55104 1.174 0.021 40.735659 -74.173605 +07103 32698 12769 5511772 0 2.128 0.000 40.738731 -74.195573 +07104 50478 19373 6563525 308156 2.534 0.119 40.767910 -74.168380 +07105 46983 17401 12014618 1559878 4.639 0.602 40.723066 -74.138636 +07106 31298 13375 3679291 0 1.421 0.000 40.741798 -74.230329 +07107 37650 14692 4289946 22300 1.656 0.009 40.762918 -74.186559 +07108 24386 10341 3550737 0 1.371 0.000 40.723122 -74.200211 +07109 35897 14267 8665290 153563 3.346 0.059 40.795515 -74.161850 +07110 28351 11771 8768281 113632 3.385 0.044 40.820568 -74.156079 +07111 53942 23203 7584764 5417 2.928 0.002 40.723860 -74.232517 +07112 26417 11644 4720720 0 1.823 0.000 40.709368 -74.209645 +07114 14748 4756 19288215 3027438 7.447 1.169 40.697362 -74.170093 +07201 26263 9337 17211051 976170 6.645 0.377 40.688972 -74.165414 +07202 40849 14928 6007084 272749 2.319 0.105 40.652415 -74.216848 +07203 21085 7939 6866107 32524 2.651 0.013 40.652211 -74.260158 +07204 13297 5231 3190959 0 1.232 0.000 40.665265 -74.266706 +07205 21398 7531 7118385 27726 2.748 0.011 40.695889 -74.228800 +07206 26636 9048 4134749 1706712 1.596 0.659 40.651654 -74.183811 +07208 31219 12203 4554324 10790 1.758 0.004 40.673830 -74.226408 +07302 36352 20752 3810135 168718 1.471 0.065 40.719389 -74.046469 +07304 41233 16954 4856104 42037 1.875 0.016 40.716495 -74.072593 +07305 60104 24433 15035949 845965 5.805 0.327 40.697302 -74.082273 +07306 52669 22373 7048828 494069 2.722 0.191 40.734924 -74.071875 +07307 43812 17473 5801303 83399 2.240 0.032 40.750877 -74.056865 +07310 12838 6379 1592482 87137 0.615 0.034 40.730126 -74.036881 +07311 522 322 75303 0 0.029 0.000 40.720216 -74.032724 +07401 6494 2385 8006483 55929 3.091 0.022 41.032669 -74.133826 +07403 7603 3063 16453615 1108324 6.353 0.428 41.020920 -74.332852 +07405 17701 6738 50988924 3243014 19.687 1.252 40.984670 -74.380839 +07407 19403 7385 6857840 285067 2.648 0.110 40.904526 -74.119514 +07410 32457 12266 13310754 161293 5.139 0.062 40.935833 -74.117504 +07416 5781 2522 24283452 702301 9.376 0.271 41.112558 -74.599735 +07417 10580 3689 24284689 1214467 9.376 0.469 41.007529 -74.205652 +07418 2249 770 12130084 135807 4.683 0.052 41.242167 -74.486047 +07419 9160 4133 40500769 399682 15.637 0.154 41.153685 -74.568485 +07420 4942 1649 6449158 1535446 2.490 0.593 41.032305 -74.302086 +07421 7439 3204 67433981 5396814 26.036 2.084 41.174004 -74.352494 +07422 6616 2937 31762600 2983914 12.264 1.152 41.184034 -74.439868 +07423 4078 1462 4493814 36349 1.735 0.014 40.999485 -74.096574 +07424 26222 9750 14746042 584557 5.693 0.226 40.882454 -74.205834 +07430 25890 9868 66496320 1290236 25.674 0.498 41.083159 -74.185895 +07432 7128 2861 4028084 21025 1.555 0.008 40.995809 -74.141262 +07435 2405 1170 38702857 5441469 14.943 2.101 41.035529 -74.449126 +07436 12754 4470 21896569 708648 8.454 0.274 41.029980 -74.243842 +07438 11559 4386 71064455 4856215 27.438 1.875 41.028134 -74.518867 +07439 2456 922 6289402 117754 2.428 0.045 41.079609 -74.600766 +07440 4494 1677 4013388 548833 1.550 0.212 40.946468 -74.293040 +07442 11097 4341 7545280 721295 2.913 0.278 41.003095 -74.285455 +07444 11046 5117 13465111 547412 5.199 0.211 40.967407 -74.306967 +07446 14484 5553 14293358 183104 5.519 0.071 41.059136 -74.145931 +07450 24985 8752 14919300 171515 5.760 0.066 40.981591 -74.113506 +07452 11601 4016 7028152 63232 2.714 0.024 40.959471 -74.125202 +07456 12211 4324 65269407 7670676 25.201 2.962 41.102332 -74.273170 +07457 3559 1657 5217957 185213 2.015 0.072 40.995495 -74.315648 +07458 11360 4117 26378884 197352 10.185 0.076 41.046652 -74.096511 +07460 3457 1422 87003106 4366094 33.592 1.686 41.111812 -74.495093 +07461 19563 8297 217966976 2786114 84.158 1.076 41.246268 -74.610416 +07462 6885 3356 43655995 475786 16.856 0.184 41.198457 -74.495576 +07463 9615 3533 5343412 51283 2.063 0.020 41.013615 -74.125919 +07465 6244 2568 20386883 1796416 7.871 0.694 41.054855 -74.332764 +07470 54717 19768 61587257 3746198 23.779 1.446 40.945855 -74.245077 +07480 16122 6392 86535123 3515760 33.411 1.357 41.088259 -74.376390 +07481 16716 5834 16974334 156019 6.554 0.060 40.999093 -74.168849 +07495 0 0 65971 0 0.025 0.000 41.103887 -74.164353 +07501 33543 11476 4781540 103494 1.846 0.040 40.911998 -74.170965 +07502 15406 4655 2356754 92148 0.910 0.036 40.918574 -74.194088 +07503 18723 6030 4012727 62315 1.549 0.024 40.897548 -74.154121 +07504 12882 3993 2143575 81399 0.828 0.031 40.912548 -74.141615 +07505 2256 903 514084 0 0.198 0.000 40.916335 -74.171635 +07506 18791 7756 8634566 78862 3.334 0.030 40.956957 -74.158561 +07508 22600 8076 13168657 125096 5.084 0.048 40.955074 -74.183638 +07512 10804 3918 10213322 183463 3.943 0.071 40.903415 -74.219779 +07513 11508 3250 1532154 18369 0.592 0.007 40.906182 -74.148686 +07514 18289 6525 2409689 120993 0.930 0.047 40.926992 -74.143838 +07522 20883 6973 2125291 116763 0.821 0.045 40.924959 -74.179096 +07524 12709 4141 1953307 119376 0.754 0.046 40.931711 -74.156870 +07601 43010 19375 10842269 432604 4.186 0.167 40.889398 -74.045698 +07603 8187 2888 1981232 124911 0.765 0.048 40.874287 -74.029735 +07604 11842 4627 3961754 10295 1.530 0.004 40.862751 -74.075182 +07605 8950 3437 3991701 256514 1.541 0.099 40.863391 -73.988471 +07606 2310 853 1658573 53078 0.640 0.020 40.858477 -74.048473 +07607 9555 3769 3289353 3739 1.270 0.001 40.902885 -74.063457 +07608 67 27 3997358 7922 1.543 0.003 40.852999 -74.060355 +07620 1849 670 16603688 7306680 6.411 2.821 40.968149 -73.917150 +07621 26761 9201 7248098 21497 2.799 0.008 40.922334 -73.998001 +07624 8373 2860 8195853 339397 3.164 0.131 40.972890 -73.960315 +07626 8537 3103 5325171 26604 2.056 0.010 40.939786 -73.958581 +07627 4881 1659 5352683 29378 2.067 0.011 40.954576 -73.956563 +07628 17433 6528 5125262 7149 1.979 0.003 40.945239 -73.992428 +07630 7379 2545 5699340 507127 2.201 0.196 40.974990 -74.023248 +07631 27119 10679 12716501 59636 4.910 0.023 40.891197 -73.972515 +07632 5309 1940 5420585 3212569 2.093 1.240 40.889682 -73.942047 +07640 4664 1624 4744679 588648 1.832 0.227 40.991681 -73.980202 +07641 3382 1136 5036532 1065005 1.945 0.411 40.961713 -73.997437 +07642 10207 3560 7623845 19897 2.944 0.008 41.007127 -74.045119 +07643 10626 4439 3822333 586726 1.476 0.227 40.844332 -74.036164 +07644 24136 10127 5907712 52812 2.281 0.020 40.877915 -74.082500 +07645 7832 2867 10332617 23759 3.989 0.009 41.054594 -74.047298 +07646 16341 6362 5889657 87847 2.274 0.034 40.934161 -74.019453 +07647 5152 1713 5854388 25948 2.260 0.010 41.006364 -73.942772 +07648 5730 2015 7074820 17107 2.732 0.007 40.992252 -73.950917 +07649 7978 2831 6277728 395033 2.424 0.153 40.956651 -74.032858 +07650 19601 7356 3203430 63688 1.237 0.025 40.847017 -73.997061 +07652 26342 8915 27117162 128793 10.470 0.050 40.947309 -74.070989 +07656 8669 3440 6727780 53555 2.598 0.021 41.036300 -74.043561 +07657 11032 4145 6608347 785537 2.551 0.303 40.832337 -74.015134 +07660 12729 5164 4463833 506724 1.723 0.196 40.854705 -74.019926 +07661 11340 4261 4785271 104542 1.848 0.040 40.927354 -74.039611 +07662 5530 2170 2695378 55822 1.041 0.022 40.910694 -74.082895 +07663 13659 5485 6963701 70601 2.689 0.027 40.902976 -74.101061 +07666 39776 14024 15556670 570156 6.006 0.220 40.890317 -74.011478 +07670 14573 5004 12147715 1513107 4.690 0.584 40.918309 -73.950521 +07675 26339 10159 24893190 3049131 9.611 1.177 41.003506 -74.001778 +07676 9075 3332 7512741 130317 2.901 0.050 40.988306 -74.064693 +07677 5730 1980 8819278 519417 3.405 0.201 41.025977 -74.061061 +07701 23813 10272 24018553 3641137 9.274 1.406 40.361667 -74.078076 +07702 3809 1310 5614073 82604 2.168 0.032 40.326064 -74.059667 +07703 690 227 2244870 118588 0.867 0.046 40.315784 -74.039773 +07704 6133 2070 4164495 1333656 1.608 0.515 40.361940 -74.038775 +07711 1533 881 2137061 246466 0.825 0.095 40.238531 -74.008008 +07712 39158 17995 30758006 938489 11.876 0.362 40.249708 -74.053712 +07716 8574 3793 12762343 242649 4.928 0.094 40.401088 -74.032978 +07717 1901 1321 1104171 298376 0.426 0.115 40.191418 -74.015105 +07718 6263 2237 5523257 97675 2.133 0.038 40.420384 -74.085373 +07719 21538 10848 33758230 2451834 13.034 0.947 40.168908 -74.073226 +07720 4298 3180 1584909 54490 0.612 0.021 40.201604 -74.012056 +07721 2974 1128 2380649 9016 0.919 0.003 40.436522 -74.234672 +07722 10209 3771 95081135 2798574 36.711 1.081 40.285889 -74.171589 +07723 1020 1173 4219425 203270 1.629 0.078 40.249701 -73.997458 +07724 21710 9534 32117060 299106 12.400 0.115 40.298625 -74.074178 +07726 42508 15238 83798869 656464 32.355 0.253 40.282353 -74.346564 +07727 7050 2704 56950928 629909 21.989 0.243 40.204403 -74.149231 +07728 56257 20719 125779570 768913 48.564 0.297 40.225793 -74.285785 +07730 17396 6192 12674361 178566 4.894 0.069 40.425495 -74.176063 +07731 38304 12897 86812238 1052081 33.518 0.406 40.149318 -74.204208 +07732 5189 3243 10028061 5589242 3.872 2.158 40.430468 -73.990424 +07733 16849 5877 46425227 565914 17.925 0.219 40.374964 -74.173849 +07734 13269 5578 4590911 1124925 1.773 0.434 40.444151 -74.136810 +07735 19569 7762 13263490 625316 5.121 0.241 40.450109 -74.172274 +07737 4264 1551 6686724 21499 2.582 0.008 40.412373 -74.065759 +07738 6095 2146 13721357 560723 5.298 0.216 40.337907 -74.127066 +07739 5938 2273 6985397 1572690 2.697 0.607 40.336952 -74.034535 +07740 31038 14295 14069913 2613624 5.432 1.009 40.295372 -73.989899 +07746 18666 6262 33797367 164981 13.049 0.064 40.317727 -74.248318 +07747 30770 12027 32585573 829514 12.581 0.320 40.415326 -74.253906 +07748 28030 10052 34649600 98173 13.378 0.038 40.396300 -74.115274 +07750 3279 1981 2784894 2574007 1.075 0.994 40.335895 -73.985608 +07751 19736 6318 41784726 108802 16.133 0.042 40.361882 -74.262960 +07753 37554 16847 47387500 1725436 18.296 0.666 40.216763 -74.081834 +07755 6363 2508 7373964 10424 2.847 0.004 40.263635 -74.022877 +07756 3342 3132 963903 144722 0.372 0.056 40.211820 -74.006944 +07757 5356 2163 6441254 1483596 2.487 0.573 40.316313 -74.015897 +07758 4967 1842 3940531 92708 1.521 0.036 40.430684 -74.103295 +07760 9283 4104 19625299 8823239 7.577 3.407 40.369551 -74.002368 +07762 8403 5480 7261344 1099058 2.804 0.424 40.152911 -74.033876 +07764 8097 2528 7402799 92919 2.858 0.036 40.287904 -74.020019 +07801 25386 8495 25380427 870972 9.799 0.336 40.918693 -74.553551 +07803 3651 1380 7616187 233614 2.941 0.090 40.878175 -74.600780 +07820 39 17 6222653 10595 2.403 0.004 40.930738 -74.811976 +07821 9193 3731 112067383 3850185 43.269 1.487 40.965937 -74.754393 +07822 887 312 17185413 43243 6.635 0.017 41.139513 -74.708642 +07823 7571 3543 65483140 1207300 25.283 0.466 40.829451 -75.039497 +07825 9555 3672 200878246 4871361 77.560 1.881 40.971252 -74.975710 +07826 6180 2892 134971408 3409919 52.113 1.317 41.193195 -74.778167 +07827 4244 1975 128182351 3712647 49.491 1.433 41.280864 -74.730427 +07828 14150 5918 36785351 3870058 14.203 1.494 40.883935 -74.750312 +07830 6503 2473 62092441 366290 23.974 0.141 40.719283 -74.794021 +07832 3903 1533 120937778 3720068 46.694 1.436 40.962126 -75.053728 +07833 157 74 1151923 131339 0.445 0.051 40.892562 -75.069300 +07834 17722 7170 31766082 2207257 12.265 0.852 40.887246 -74.490462 +07836 12568 4779 41357794 317157 15.968 0.122 40.843103 -74.710722 +07838 3568 1343 64434144 607393 24.878 0.235 40.887907 -74.911639 +07840 29849 12373 90521733 1036674 34.951 0.400 40.853730 -74.835763 +07842 130 57 3389600 235687 1.309 0.091 40.942121 -74.512172 +07843 12241 5053 10441619 2629534 4.032 1.015 40.939241 -74.659474 +07846 89 40 355296 0 0.137 0.000 40.965940 -74.877068 +07847 1670 655 5564466 456904 2.148 0.176 40.889346 -74.623879 +07848 5026 1757 61403001 364299 23.708 0.141 41.103892 -74.687004 +07849 9054 3831 19172107 5168057 7.402 1.995 40.970527 -74.608296 +07850 6436 2475 8346083 1201361 3.222 0.464 40.906858 -74.662035 +07851 119 68 17283296 884860 6.673 0.342 41.231436 -74.846827 +07852 3609 1422 7769633 143304 3.000 0.055 40.883268 -74.668029 +07853 13325 4460 87920144 702393 33.946 0.271 40.780755 -74.789238 +07856 3944 2119 9086123 2122657 3.508 0.820 40.915783 -74.626675 +07857 3244 1451 2816213 207629 1.087 0.080 40.896755 -74.700322 +07860 26288 10994 260658128 9631947 100.641 3.719 41.056547 -74.819113 +07863 4332 1669 61421735 463770 23.715 0.179 40.808136 -74.957898 +07865 2189 889 35192330 341052 13.588 0.132 40.793808 -74.898346 +07866 22098 8525 57415649 5973390 22.168 2.306 40.954922 -74.488990 +07869 25291 9247 51999740 574984 20.077 0.222 40.841691 -74.578330 +07870 26 13 601577 0 0.232 0.000 40.803980 -74.819651 +07871 21165 7960 98195349 5377533 37.913 2.076 41.052354 -74.627880 +07874 8905 3347 32777404 2232699 12.655 0.862 40.923063 -74.735790 +07876 10619 3718 14783855 405957 5.708 0.157 40.854699 -74.656097 +07878 934 389 707543 4231 0.273 0.002 40.873007 -74.473755 +07880 192 66 569117 8405 0.220 0.003 40.871452 -74.888891 +07881 16 15 62289466 1689165 24.050 0.652 41.118632 -74.894040 +07882 14492 5936 81701109 372944 31.545 0.144 40.752640 -75.013787 +07885 10078 3983 38943107 1871402 15.036 0.723 40.910506 -74.599911 +07901 22806 8761 16392286 133290 6.329 0.051 40.714923 -74.366372 +07920 26747 10254 60221229 455917 23.252 0.176 40.678994 -74.564115 +07921 7621 4141 49423784 501536 19.083 0.194 40.656019 -74.678657 +07922 12246 4266 14319069 141168 5.529 0.055 40.676393 -74.425027 +07924 7534 2801 31316178 188319 12.091 0.073 40.730387 -74.592571 +07926 120 38 685287 773 0.265 0.000 40.801262 -74.570122 +07927 3403 1446 4993443 51092 1.928 0.020 40.821862 -74.454290 +07928 19144 7229 22371622 828724 8.638 0.320 40.725986 -74.412612 +07930 8559 3022 66243107 172982 25.577 0.067 40.781196 -74.683945 +07931 3296 1226 53454883 404117 20.639 0.156 40.681427 -74.616525 +07932 9868 4164 17543525 636196 6.774 0.246 40.777242 -74.392943 +07933 3251 1239 12881363 416409 4.974 0.161 40.698318 -74.462129 +07934 1501 593 9510008 14294 3.672 0.006 40.722624 -74.675589 +07935 313 139 5916204 288719 2.284 0.111 40.736004 -74.445887 +07936 11157 3976 20441016 632842 7.892 0.244 40.818553 -74.363742 +07939 228 1 1063713 0 0.411 0.000 40.667382 -74.553908 +07940 17278 5805 12049120 52176 4.652 0.020 40.760545 -74.427358 +07945 9539 3333 48513732 767787 18.731 0.296 40.781948 -74.599501 +07946 3144 1089 10776560 239544 4.161 0.092 40.677709 -74.508538 +07950 19564 7681 23498102 296980 9.073 0.115 40.846026 -74.482314 +07960 43747 17730 90676124 952084 35.010 0.368 40.784201 -74.500025 +07961 4 0 105678 0 0.041 0.000 40.780620 -74.432741 +07970 117 46 631520 1014 0.244 0.000 40.807897 -74.572814 +07974 11768 4300 10337640 64599 3.991 0.025 40.696910 -74.403867 +07976 754 333 18099984 1027848 6.988 0.397 40.728060 -74.479344 +07977 669 264 3845026 3492 1.485 0.001 40.705188 -74.670075 +07979 589 194 6200973 93094 2.394 0.036 40.702981 -74.724987 +07980 2307 898 7035539 82652 2.716 0.032 40.680423 -74.488915 +07981 8865 3580 17468281 393957 6.745 0.152 40.820387 -74.422469 +08001 844 317 6317687 175276 2.439 0.068 39.547880 -75.346384 +08002 22274 9644 18604377 328401 7.183 0.127 39.931978 -75.027557 +08003 30629 11306 28689176 39227 11.077 0.015 39.882703 -74.972036 +08004 12350 4389 32322296 267333 12.480 0.103 39.764747 -74.870626 +08005 22448 9866 122661615 3360633 47.360 1.298 39.767727 -74.312588 +08006 518 1164 1677227 1752978 0.648 0.677 39.752759 -74.106157 +08007 5250 2353 3351826 0 1.294 0.000 39.865825 -75.053823 +08008 6975 17855 28189743 70838887 10.884 27.351 39.542599 -74.298174 +08009 12854 5019 35441870 481295 13.684 0.186 39.760656 -74.932860 +08010 11539 5046 9919487 1374151 3.830 0.531 40.053356 -74.918438 +08011 33 15 366714 0 0.142 0.000 39.972764 -74.713117 +08012 38992 15639 38700797 546597 14.942 0.211 39.783815 -75.056068 +08014 504 222 7523384 6235619 2.905 2.408 39.817352 -75.349521 +08015 20763 8007 123560172 3332400 47.707 1.287 39.932089 -74.545375 +08016 33540 12681 58939938 3372991 22.757 1.302 40.069522 -74.824196 +08019 925 341 155286649 4797324 59.957 1.852 39.777292 -74.534219 +08020 2201 839 11218044 341931 4.331 0.132 39.791562 -75.224140 +08021 44833 19762 33648544 508394 12.992 0.196 39.806194 -75.000151 +08022 8783 3572 56960748 203595 21.993 0.079 40.067590 -74.705741 +08023 451 208 2566558 138185 0.991 0.053 39.686699 -75.496274 +08026 2274 809 5652715 100978 2.183 0.039 39.832872 -74.967175 +08027 4888 2042 19159930 7624605 7.398 2.944 39.833175 -75.290280 +08028 20078 7121 39670546 208893 15.317 0.081 39.695863 -75.121415 +08029 4784 1983 2681285 27864 1.035 0.011 39.840937 -75.067211 +08030 13410 5517 6915677 1186795 2.670 0.458 39.888896 -75.118078 +08031 11584 4884 7837168 347445 3.026 0.134 39.866356 -75.094670 +08033 16261 6830 10110134 138247 3.904 0.053 39.892421 -75.036651 +08034 18151 7506 15390120 14112 5.942 0.005 39.906532 -75.000166 +08035 7566 3198 4085674 13573 1.577 0.005 39.879127 -75.065918 +08036 5917 2227 15851696 668352 6.120 0.258 39.970569 -74.832209 +08037 24308 9214 302608875 4219339 116.838 1.629 39.640371 -74.765284 +08038 124 61 44866618 9711220 17.323 3.750 39.470004 -75.490291 +08039 137 54 2662930 4057 1.028 0.002 39.685628 -75.277370 +08041 1002 350 29504687 28973 11.392 0.011 40.039074 -74.678698 +08042 203 64 1722513 0 0.665 0.000 40.015387 -74.662278 +08043 29131 12260 29764464 392424 11.492 0.152 39.848539 -74.953498 +08045 2909 1158 3351005 0 1.294 0.000 39.867114 -75.029746 +08046 31587 11424 19032037 663509 7.348 0.256 40.027950 -74.886984 +08048 12495 4747 34149357 342997 13.185 0.132 39.958855 -74.802478 +08049 5350 2219 3234818 0 1.249 0.000 39.854390 -75.038544 +08050 24285 12729 78847087 18080855 30.443 6.981 39.713641 -74.231291 +08051 10758 4657 9732426 60670 3.758 0.023 39.786549 -75.175825 +08052 19172 9201 9915259 3021 3.828 0.001 39.952381 -74.994896 +08053 45538 18303 75844617 1097432 29.284 0.424 39.856677 -74.900810 +08054 41864 18249 56191082 722377 21.695 0.279 39.948992 -74.900247 +08055 27179 10195 103812747 2951044 40.082 1.139 39.862559 -74.821488 +08056 4736 1620 23657069 168933 9.134 0.065 39.783669 -75.255275 +08057 21090 7983 39430476 582803 15.224 0.225 39.979658 -74.941308 +08059 5612 2371 3118604 134243 1.204 0.052 39.884418 -75.092268 +08060 24713 9596 57466667 835410 22.188 0.323 40.007737 -74.790088 +08061 2672 964 3634809 743194 1.403 0.287 39.798865 -75.205363 +08062 15756 5265 79207060 355172 30.582 0.137 39.716068 -75.219240 +08063 3102 1181 2645784 1160718 1.022 0.448 39.867297 -75.185621 +08064 311 65 3301474 60577 1.275 0.023 39.962782 -74.640754 +08065 7398 3392 4831117 1863605 1.865 0.720 40.002615 -75.035273 +08066 8437 3863 12775681 2449818 4.933 0.946 39.834329 -75.228389 +08067 1635 648 49565011 2389260 19.137 0.922 39.739885 -75.411655 +08068 6727 2750 60305720 631261 23.284 0.244 39.961426 -74.665755 +08069 13076 5439 43614084 2164629 16.839 0.836 39.699258 -75.445180 +08070 13059 5768 53122392 8457928 20.511 3.266 39.619113 -75.512237 +08071 9551 3923 8536951 130105 3.296 0.050 39.731894 -75.133534 +08072 225 86 590195 40497 0.228 0.016 39.544308 -75.418704 +08073 203 81 247543 0 0.096 0.000 40.009542 -74.866779 +08074 58 30 886988 1625 0.342 0.001 39.716166 -75.163440 +08075 28894 11321 25644196 4490811 9.901 1.734 40.029586 -74.948936 +08077 18307 6855 21139320 2132251 8.162 0.823 40.000162 -74.991632 +08078 8385 3512 5231250 150304 2.020 0.058 39.851738 -75.074803 +08079 10987 5118 235793993 23276787 91.041 8.987 39.542408 -75.431684 +08080 37433 13512 74779995 436731 28.873 0.169 39.758292 -75.117210 +08081 50589 17805 69215174 665292 26.724 0.257 39.733564 -74.976771 +08083 9455 3751 6474425 30840 2.500 0.012 39.841266 -75.028593 +08084 7040 2761 4010049 0 1.548 0.000 39.828957 -75.015458 +08085 18737 6374 119552836 7963933 46.160 3.075 39.761129 -75.324060 +08086 7699 3527 18963882 4096702 7.322 1.582 39.854682 -75.198687 +08087 24104 12509 129426666 17750890 49.972 6.854 39.596035 -74.380612 +08088 24664 9813 357598297 4705178 138.069 1.817 39.851467 -74.693412 +08089 4253 1597 49562598 197049 19.136 0.076 39.717800 -74.826622 +08090 8358 3113 6638153 96833 2.563 0.037 39.799077 -75.150692 +08091 5357 2069 8370628 15365 3.232 0.006 39.807116 -74.924178 +08092 3673 1569 59779399 7530766 23.081 2.908 39.651575 -74.281121 +08093 9741 4180 12056202 2318144 4.655 0.895 39.864643 -75.137452 +08094 39940 14800 136536068 2490425 52.717 0.962 39.650587 -74.959292 +08095 236 91 5245062 105618 2.025 0.041 39.648180 -74.861065 +08096 36116 14892 39130072 862862 15.108 0.333 39.826854 -75.126663 +08097 3293 1217 3566732 24084 1.377 0.009 39.813376 -75.150617 +08098 9090 3582 145985411 1310551 56.365 0.506 39.639535 -75.329849 +08102 7565 2824 2464398 925092 0.952 0.357 39.952558 -75.120999 +08103 15190 5865 5587450 1129664 2.157 0.436 39.935834 -75.113921 +08104 23851 9786 8025452 1168622 3.099 0.451 39.916435 -75.113179 +08105 29077 9392 6724051 482624 2.596 0.186 39.951825 -75.091486 +08106 9874 4289 4254576 67808 1.643 0.026 39.890992 -75.073329 +08107 13675 6188 4626019 333271 1.786 0.129 39.907845 -75.083563 +08108 18045 8200 7070556 278621 2.730 0.108 39.914668 -75.060862 +08109 22407 9048 12601071 336031 4.865 0.130 39.951291 -75.050129 +08110 19008 6429 16614191 3998583 6.415 1.544 39.971893 -75.057876 +08201 10007 4091 14598870 4913462 5.637 1.897 39.423563 -74.493025 +08202 1444 5618 16153043 11237175 6.237 4.339 39.095265 -74.731415 +08203 9454 9226 16717729 17850937 6.455 6.892 39.425627 -74.392933 +08204 18557 12849 52504364 8726051 20.272 3.369 38.971087 -74.920979 +08205 28626 11394 109829121 24289222 42.405 9.378 39.482000 -74.452637 +08210 17167 7682 178273866 18860535 68.832 7.282 39.121668 -74.834282 +08212 294 617 2159187 2148604 0.834 0.830 38.933446 -74.953895 +08215 13442 5624 300049389 9282280 115.850 3.584 39.586506 -74.563656 +08217 70 17 119929 0 0.046 0.000 39.574192 -74.719915 +08221 7092 2798 10091284 978334 3.896 0.378 39.343718 -74.571049 +08223 4125 2419 33519969 7185446 12.942 2.774 39.278750 -74.655703 +08224 573 224 12211249 381773 4.715 0.147 39.601878 -74.467363 +08225 8659 3322 16144085 4077007 6.233 1.574 39.362667 -74.530934 +08226 11701 20871 16401788 16831782 6.333 6.499 39.263596 -74.604605 +08230 5599 2648 32579809 534844 12.579 0.207 39.209253 -74.718691 +08232 19292 6791 15318799 5533921 5.915 2.137 39.387525 -74.515196 +08234 42532 15844 156906068 7405993 60.582 2.859 39.388393 -74.620728 +08240 2371 1 4066207 230162 1.570 0.089 39.488059 -74.533973 +08241 1103 440 19158780 2852354 7.397 1.101 39.534381 -74.476981 +08242 3216 1746 13091831 134201 5.055 0.052 39.018576 -74.888905 +08243 2114 6900 5618390 5418897 2.169 2.092 39.151013 -74.696319 +08244 10849 5621 14948771 7956606 5.772 3.072 39.318968 -74.588458 +08246 92 123 839980 0 0.324 0.000 39.180965 -74.765806 +08247 925 3361 12816864 11219501 4.949 4.332 39.052267 -74.783628 +08248 158 447 1548736 2251846 0.598 0.869 39.195657 -74.657187 +08251 10364 6355 16252732 3700486 6.275 1.429 39.027715 -74.929514 +08260 13661 23597 41106308 23169799 15.871 8.946 38.994915 -74.837454 +08270 8492 3354 299839889 13074918 115.769 5.048 39.271519 -74.785925 +08302 46872 15215 370561644 12251866 143.075 4.730 39.438613 -75.260646 +08310 1670 828 29319262 81477 11.320 0.031 39.531345 -74.896623 +08311 2057 798 71389552 3493816 27.564 1.349 39.327866 -75.204035 +08312 7875 3009 15042696 498367 5.808 0.192 39.663756 -75.077505 +08314 2511 151 33888714 469277 13.085 0.181 39.221854 -74.940368 +08316 400 158 9764173 443074 3.770 0.171 39.269532 -74.949689 +08317 1344 473 18680658 49613 7.213 0.019 39.400688 -74.829634 +08318 12702 4766 206333873 2703729 79.666 1.044 39.557728 -75.177717 +08319 1253 483 36559812 65422 14.116 0.025 39.370409 -74.810816 +08320 1256 1 1093685 0 0.422 0.000 39.385080 -75.160600 +08321 247 317 24351116 4880348 9.402 1.884 39.223596 -75.143169 +08322 10524 3776 74195365 603886 28.647 0.233 39.610619 -75.048907 +08323 804 369 46193748 2578055 17.836 0.995 39.396273 -75.367551 +08324 526 237 22046717 425466 8.512 0.164 39.214626 -74.996612 +08326 1761 643 8925972 0 3.446 0.000 39.537672 -74.928273 +08327 3070 347 13795470 2751152 5.326 1.062 39.251549 -74.962801 +08328 1347 515 5430756 399702 2.097 0.154 39.578361 -75.058737 +08329 221 113 5903989 930898 2.280 0.359 39.275985 -75.007658 +08330 28167 11076 311957325 5935863 120.447 2.292 39.481949 -74.737379 +08332 36768 14650 274921746 10213066 106.148 3.943 39.377041 -75.023374 +08340 979 391 33994468 46082 13.125 0.018 39.437245 -74.876499 +08341 2239 961 6358219 2159 2.455 0.001 39.525424 -74.953020 +08343 5030 1819 86177818 466726 33.273 0.180 39.636316 -75.167607 +08344 5847 2286 63984283 753460 24.704 0.291 39.561745 -74.986037 +08345 805 460 52502713 5923636 20.271 2.287 39.277032 -75.165509 +08346 843 297 9803417 17360 3.785 0.007 39.564995 -74.854042 +08348 275 126 3759068 272616 1.451 0.105 39.309933 -74.971365 +08349 2347 940 105843068 7555632 40.866 2.917 39.273865 -75.071307 +08350 825 300 10371823 29077 4.005 0.011 39.487876 -74.882020 +08352 448 163 761761 0 0.294 0.000 39.475732 -75.127980 +08353 516 214 3127889 1564 1.208 0.001 39.462259 -75.292520 +08360 43355 15899 111070228 1056061 42.884 0.408 39.495524 -75.008665 +08361 17352 6714 78578403 546647 30.339 0.211 39.449369 -74.958827 +08401 39554 20009 27575373 15643824 10.647 6.040 39.377297 -74.451082 +08402 6354 7114 3664967 3128854 1.415 1.208 39.326385 -74.504473 +08403 997 1747 5434477 4087409 2.098 1.578 39.318681 -74.543485 +08406 10650 7829 5139069 4714530 1.984 1.820 39.341560 -74.480862 +08501 6582 2402 70131724 1179807 27.078 0.456 40.161709 -74.561983 +08502 11317 3744 33084323 222170 12.774 0.086 40.448217 -74.653244 +08505 17736 7353 54527240 2019843 21.053 0.780 40.103026 -74.733455 +08510 5231 1723 49732272 606711 19.202 0.234 40.191636 -74.417080 +08511 826 324 6688655 45794 2.583 0.018 40.042379 -74.557037 +08512 10105 4133 55075906 601168 21.265 0.232 40.324357 -74.525526 +08514 4477 1734 67782876 1291062 26.171 0.498 40.134327 -74.491787 +08515 4637 1592 54698177 480508 21.119 0.186 40.120242 -74.653491 +08518 4986 2228 4945598 586866 1.910 0.227 40.115428 -74.802088 +08520 27869 10664 45662428 310025 17.630 0.120 40.255265 -74.530078 +08525 4767 1967 57557271 166954 22.223 0.064 40.397648 -74.779412 +08527 54392 20193 220826833 2598845 85.262 1.003 40.108585 -74.357579 +08528 315 135 1644750 187986 0.635 0.073 40.387098 -74.618926 +08530 8071 3331 65806666 865455 25.408 0.334 40.370685 -74.908492 +08533 6945 2420 48349734 525792 18.668 0.203 40.071031 -74.500141 +08534 12929 4964 56662464 620034 21.878 0.239 40.329422 -74.792789 +08535 5385 1726 46047684 1176505 17.779 0.454 40.244304 -74.432096 +08536 20073 8637 18854550 474798 7.280 0.183 40.332286 -74.581039 +08540 47115 18408 134463061 2621058 51.916 1.012 40.363010 -74.655321 +08542 5189 1644 1322743 0 0.511 0.000 40.352913 -74.660366 +08550 19445 6720 48218551 1508668 18.617 0.582 40.280155 -74.614673 +08551 5532 1971 69835355 329323 26.964 0.127 40.441180 -74.844836 +08553 682 292 1603789 8312 0.619 0.003 40.400347 -74.638922 +08554 3818 1530 2737636 426365 1.057 0.165 40.117217 -74.777844 +08555 877 324 4456923 14029 1.721 0.005 40.218286 -74.470792 +08558 6629 2459 43146651 209262 16.659 0.081 40.413812 -74.703455 +08559 4982 2166 103538742 2158709 39.977 0.833 40.429224 -74.979065 +08560 3656 1428 35403477 1391280 13.669 0.537 40.315730 -74.857279 +08561 226 102 3037186 7650 1.173 0.003 40.249939 -74.578389 +08562 5371 2395 44137333 274482 17.042 0.106 40.061957 -74.591878 +08608 983 658 810941 177621 0.313 0.069 40.219297 -74.767770 +08609 13546 5409 3522746 22113 1.360 0.009 40.225747 -74.740906 +08610 30468 12413 19689832 879407 7.602 0.340 40.191174 -74.716603 +08611 28038 9562 7176174 1230071 2.771 0.475 40.183615 -74.740319 +08618 38229 15283 15698621 925283 6.061 0.357 40.249347 -74.789973 +08619 22723 9833 25848889 261666 9.980 0.101 40.242301 -74.696408 +08620 14693 4556 23126900 491197 8.929 0.190 40.170048 -74.651278 +08628 9054 4224 18137288 808418 7.003 0.312 40.264418 -74.827047 +08629 12331 4262 2062278 0 0.796 0.000 40.220669 -74.731201 +08638 22832 9170 14836819 72852 5.729 0.028 40.254018 -74.763385 +08640 7716 898 55421613 518109 21.398 0.200 40.004416 -74.591269 +08641 3553 1298 13116042 13678 5.064 0.005 40.020284 -74.590178 +08648 32263 12751 43313333 478767 16.723 0.185 40.284308 -74.717976 +08690 18567 7347 18331257 151941 7.078 0.059 40.224505 -74.660279 +08691 15104 5996 67353071 931675 26.005 0.360 40.208885 -74.594069 +08701 92843 26337 63699074 1050019 24.594 0.405 40.077041 -74.200383 +08720 843 250 3626169 145590 1.400 0.056 40.135366 -74.098050 +08721 20512 8420 40063040 11916377 15.468 4.601 39.902752 -74.152844 +08722 11045 3826 7375838 1469 2.848 0.001 39.928405 -74.202189 +08723 31641 14063 31264885 9802335 12.071 3.785 40.038584 -74.111600 +08724 42352 18036 35265500 4780572 13.616 1.846 40.086235 -74.110850 +08730 4774 2034 4549927 1600681 1.757 0.618 40.105062 -74.062755 +08731 20009 8580 123869895 5438227 47.826 2.100 39.865850 -74.263027 +08732 1484 751 1403935 767133 0.542 0.296 39.941792 -74.143814 +08733 2752 962 9431925 267860 3.642 0.103 40.023795 -74.320809 +08734 7651 2998 14808253 2587138 5.717 0.999 39.862755 -74.172064 +08735 3114 7278 4481261 4329290 1.730 1.672 39.982051 -74.070619 +08736 12578 6289 11973153 3683047 4.623 1.422 40.120018 -74.053257 +08738 1042 1970 2571536 5901053 0.993 2.278 40.022724 -74.059040 +08740 2010 1202 1150388 751672 0.444 0.290 39.927670 -74.132429 +08741 2488 1054 2024134 1131823 0.782 0.437 39.937116 -74.166931 +08742 24405 12888 14506355 4557806 5.601 1.760 40.080784 -74.059125 +08750 3528 2062 4894802 1065784 1.890 0.412 40.132812 -74.041715 +08751 4212 5760 3395246 4545950 1.311 1.755 39.951907 -74.088150 +08752 2074 4116 12395218 23901018 4.786 9.228 39.842500 -74.093433 +08753 63678 26159 59779904 11562071 23.081 4.464 39.979031 -74.160429 +08755 25302 10526 41276457 281656 15.937 0.109 40.008440 -74.221884 +08757 33217 18816 66671612 785017 25.742 0.303 39.942397 -74.251072 +08758 7043 3588 32330846 3509974 12.483 1.355 39.790361 -74.223349 +08759 33263 21962 167342428 2004350 64.611 0.774 39.975912 -74.351495 +08801 8551 3039 42280063 510393 16.324 0.197 40.622794 -74.886324 +08802 4067 1474 62133218 333775 23.990 0.129 40.671028 -75.017983 +08804 2771 1094 31892058 299771 12.314 0.116 40.646655 -75.095715 +08805 12254 4602 7320127 134373 2.826 0.052 40.573874 -74.537507 +08807 37972 14175 66390099 1040391 25.633 0.402 40.592247 -74.619323 +08808 86 61 103377 0 0.040 0.000 40.732130 -75.049029 +08809 6421 2154 16640232 5721046 6.425 2.209 40.651832 -74.934206 +08810 8401 2830 18775158 465485 7.249 0.180 40.368288 -74.491018 +08812 14296 5090 13690700 21005 5.286 0.008 40.598731 -74.478793 +08816 46298 16942 53199416 1295237 20.540 0.500 40.429119 -74.416287 +08817 44621 16292 27663590 519481 10.681 0.201 40.514658 -74.393104 +08820 39590 13557 26674707 25331 10.299 0.010 40.576806 -74.365750 +08821 354 136 774756 0 0.299 0.000 40.520045 -74.685662 +08822 30354 11659 165008669 790707 63.710 0.305 40.525122 -74.865273 +08823 9016 3756 9059396 17905 3.498 0.007 40.439990 -74.569007 +08824 12115 4002 10044432 3288 3.878 0.001 40.422086 -74.553237 +08825 4707 1980 75413763 880946 29.117 0.340 40.514186 -75.027170 +08826 5838 2230 53680336 191337 20.726 0.074 40.719257 -74.896762 +08827 4629 1774 48488945 344947 18.722 0.133 40.668619 -74.968085 +08828 2178 920 2200991 148473 0.850 0.057 40.378025 -74.423066 +08829 3725 1508 6399389 109384 2.471 0.042 40.669591 -74.890548 +08830 18459 6642 8231293 2713 3.178 0.001 40.569551 -74.314880 +08831 45620 20505 130529772 957688 50.398 0.370 40.319474 -74.428801 +08832 2863 1083 3758573 548857 1.451 0.212 40.517202 -74.306784 +08833 8796 3375 86401278 9304385 33.360 3.592 40.645542 -74.816261 +08835 10344 4277 6113833 228342 2.361 0.088 40.541269 -74.589273 +08836 3845 1412 12212500 95327 4.715 0.037 40.596376 -74.557320 +08837 15847 6480 23458757 1802475 9.057 0.696 40.513105 -74.344075 +08840 16558 6416 8055168 6323 3.110 0.002 40.543139 -74.358981 +08844 38367 14061 142458989 1278189 55.004 0.494 40.497692 -74.670505 +08846 13635 5148 9110608 58012 3.518 0.022 40.574627 -74.498259 +08848 8435 3317 86300829 1830459 33.321 0.707 40.594266 -75.096659 +08850 8281 3182 6355951 279883 2.454 0.108 40.447921 -74.439078 +08852 17220 6492 36438952 202637 14.069 0.078 40.388277 -74.549623 +08853 5247 1875 27916194 346877 10.779 0.134 40.529933 -74.742314 +08854 55961 17753 48766453 503716 18.829 0.194 40.545640 -74.460817 +08857 39898 14997 62820428 725820 24.255 0.280 40.392789 -74.330397 +08858 144 80 7101553 89876 2.742 0.035 40.682576 -74.737037 +08859 21526 8235 11677957 244403 4.509 0.094 40.458848 -74.302768 +08861 53099 17391 13448417 3250824 5.192 1.255 40.520494 -74.272943 +08863 12320 4740 6559395 333372 2.533 0.129 40.527688 -74.316230 +08865 29840 12895 111455506 2374366 43.033 0.917 40.708223 -75.147074 +08867 5042 1830 75603410 227100 29.191 0.088 40.574254 -74.966157 +08869 6881 2847 5162398 113591 1.993 0.044 40.572127 -74.646514 +08872 18811 7269 23172507 3140625 8.947 1.213 40.444335 -74.356884 +08873 49921 19455 83604069 1068798 32.280 0.413 40.496619 -74.532009 +08876 22179 8836 39361716 457041 15.198 0.176 40.589554 -74.685411 +08879 23537 9383 18577384 1825187 7.173 0.705 40.465802 -74.277900 +08880 4563 1865 1704415 250310 0.658 0.097 40.553947 -74.527455 +08882 16008 5957 7171382 385238 2.769 0.149 40.445652 -74.378459 +08884 8257 3242 5871602 530561 2.267 0.205 40.395687 -74.390089 +08886 7077 2504 39350596 145063 15.193 0.056 40.687502 -75.101127 +08887 1106 583 1852162 27362 0.715 0.011 40.522219 -74.796339 +08889 10063 3874 64545037 367599 24.921 0.142 40.609021 -74.754216 +08890 17 13 454730 123124 0.176 0.048 40.539039 -74.575423 +08901 55223 15053 16391704 1658627 6.329 0.640 40.483638 -74.442460 +08902 41153 15250 35258109 606337 13.613 0.234 40.439190 -74.484377 +08904 13982 6203 4685924 26487 1.809 0.010 40.500795 -74.427911 +10001 21102 12476 1609401 0 0.621 0.000 40.750672 -73.997281 +10002 81410 34541 2277670 0 0.879 0.000 40.715762 -73.986258 +10003 56024 31078 1493004 0 0.576 0.000 40.731829 -73.989181 +10004 3089 2197 1449744 0 0.560 0.000 40.688630 -74.018244 +10005 7135 5317 190416 0 0.074 0.000 40.705974 -74.008768 +10006 3011 1991 237784 0 0.092 0.000 40.709614 -74.012954 +10007 6988 3143 423358 0 0.163 0.000 40.713864 -74.007806 +10009 61347 31709 1596985 0 0.617 0.000 40.726408 -73.978636 +10010 31834 18030 1011819 0 0.391 0.000 40.739045 -73.982232 +10011 50984 33252 1705243 0 0.658 0.000 40.742002 -74.000594 +10012 24090 14633 837301 0 0.323 0.000 40.725581 -73.998078 +10013 27700 13460 1430444 0 0.552 0.000 40.720107 -74.004928 +10014 31959 21689 1474952 0 0.569 0.000 40.733698 -74.007033 +10016 54183 35617 1378326 0 0.532 0.000 40.745220 -73.978294 +10017 16575 12875 829152 0 0.320 0.000 40.752347 -73.972417 +10018 5229 4425 833392 0 0.322 0.000 40.755329 -73.993127 +10019 42870 31404 1761259 0 0.680 0.000 40.765793 -73.987067 +10020 0 0 71560 0 0.028 0.000 40.758236 -73.978833 +10021 43631 28628 1002597 0 0.387 0.000 40.769159 -73.958630 +10022 31924 23485 1130199 0 0.436 0.000 40.758555 -73.967817 +10023 60998 39402 1270408 0 0.491 0.000 40.775921 -73.982607 +10024 59283 33952 2221831 0 0.858 0.000 40.798452 -73.974414 +10025 94600 47617 1946717 0 0.752 0.000 40.798601 -73.966623 +10026 34003 15823 860745 0 0.332 0.000 40.802380 -73.952681 +10027 59707 25071 2257092 0 0.871 0.000 40.811819 -73.953224 +10028 45141 28139 813698 0 0.314 0.000 40.776426 -73.953493 +10029 76003 31121 2136945 0 0.825 0.000 40.791698 -73.943876 +10030 26999 12976 722465 0 0.279 0.000 40.818267 -73.942856 +10031 56438 22604 1685544 0 0.651 0.000 40.825294 -73.950056 +10032 57331 21417 1702842 0 0.657 0.000 40.838824 -73.942846 +10033 53926 20116 1565761 0 0.605 0.000 40.850538 -73.933863 +10034 38908 15671 2917184 0 1.126 0.000 40.867230 -73.924415 +10035 33969 13935 3616216 0 1.396 0.000 40.795652 -73.929731 +10036 24711 17958 1148108 0 0.443 0.000 40.759280 -73.989909 +10037 17416 9451 683722 0 0.264 0.000 40.812984 -73.937285 +10038 20300 10211 770757 0 0.298 0.000 40.709320 -74.002532 +10039 24527 10868 1199364 0 0.463 0.000 40.830856 -73.936069 +10040 41905 16506 976162 0 0.377 0.000 40.858298 -73.930520 +10044 11661 4913 625938 0 0.242 0.000 40.762050 -73.949933 +10065 32270 22754 1000544 0 0.386 0.000 40.764584 -73.963013 +10069 5199 3146 269802 0 0.104 0.000 40.775978 -73.990528 +10075 26121 16493 477958 0 0.185 0.000 40.773357 -73.956208 +10103 3 0 24776 0 0.010 0.000 40.760780 -73.977670 +10110 0 0 26711 0 0.010 0.000 40.754499 -73.982256 +10111 0 0 9576 0 0.004 0.000 40.759114 -73.977596 +10112 0 0 15253 0 0.006 0.000 40.759167 -73.979668 +10115 0 0 6618 0 0.003 0.000 40.810852 -73.963744 +10119 92 0 42613 0 0.016 0.000 40.750310 -73.992979 +10128 60453 35240 1219025 0 0.471 0.000 40.781430 -73.949942 +10152 0 0 12423 0 0.005 0.000 40.758404 -73.972031 +10153 0 0 12281 0 0.005 0.000 40.763622 -73.972439 +10154 0 0 12382 0 0.005 0.000 40.757779 -73.972487 +10162 1685 824 29442 0 0.011 0.000 40.769298 -73.949942 +10165 2 2 13058 0 0.005 0.000 40.752131 -73.978722 +10167 0 0 12396 0 0.005 0.000 40.754648 -73.974771 +10168 0 0 13211 0 0.005 0.000 40.751448 -73.977103 +10169 0 0 9924 0 0.004 0.000 40.754391 -73.976098 +10170 2 0 24921 0 0.010 0.000 40.752625 -73.975877 +10171 0 0 12470 0 0.005 0.000 40.755899 -73.973858 +10172 0 0 12415 0 0.005 0.000 40.755273 -73.974315 +10173 2 0 12297 0 0.005 0.000 40.754131 -73.979364 +10174 0 0 13224 0 0.005 0.000 40.751441 -73.975003 +10177 0 0 5421 0 0.002 0.000 40.755139 -73.975934 +10199 9 1 66729 0 0.026 0.000 40.751393 -73.997229 +10271 0 0 6779 0 0.003 0.000 40.708236 -74.010541 +10278 0 0 33630 0 0.013 0.000 40.715182 -74.003778 +10279 0 0 10805 0 0.004 0.000 40.712626 -74.008669 +10280 7853 4962 358650 0 0.138 0.000 40.708778 -74.016808 +10282 4783 2484 226578 0 0.087 0.000 40.716651 -74.015375 +10301 39706 16261 9476759 16101 3.659 0.006 40.627456 -74.094407 +10302 19088 6427 3093431 0 1.194 0.000 40.630688 -74.137776 +10303 26337 8811 8125465 73296 3.137 0.028 40.629885 -74.174130 +10304 42193 15467 10035690 19194 3.875 0.007 40.607994 -74.092859 +10305 41749 16187 11011994 63394 4.252 0.024 40.596691 -74.074866 +10306 55909 22017 19355176 152561 7.473 0.059 40.571768 -74.125950 +10307 14096 5354 5082132 17221 1.962 0.007 40.508321 -74.237137 +10308 27357 10715 5110510 12006 1.973 0.005 40.551884 -74.147646 +10309 32519 11686 17402201 108120 6.719 0.042 40.531515 -74.220971 +10310 24962 9043 4650151 0 1.795 0.000 40.632648 -74.116148 +10311 0 0 122886 0 0.047 0.000 40.605241 -74.179503 +10312 59304 22155 19887900 369053 7.679 0.142 40.545394 -74.180914 +10314 85510 32533 35520695 1668621 13.715 0.644 40.599263 -74.165748 +10451 45713 17779 2628487 3019 1.015 0.001 40.820479 -73.925084 +10452 75371 25866 2550148 0 0.985 0.000 40.837390 -73.923430 +10453 78309 27018 2372412 12725 0.916 0.005 40.852779 -73.912332 +10454 37337 12772 2699702 0 1.042 0.000 40.805518 -73.916590 +10455 39665 13851 1844518 0 0.712 0.000 40.814710 -73.908592 +10456 86547 29651 2637787 0 1.018 0.000 40.829881 -73.908120 +10457 70496 24364 2748734 0 1.061 0.000 40.847150 -73.898678 +10458 79492 27806 2613249 0 1.009 0.000 40.862545 -73.888145 +10459 47308 16496 2115928 0 0.817 0.000 40.825875 -73.892971 +10460 57311 20706 3407078 0 1.315 0.000 40.841764 -73.879569 +10461 50502 21127 6215148 0 2.400 0.000 40.847434 -73.840554 +10462 75784 31331 3833088 11823 1.480 0.005 40.843280 -73.860389 +10463 67970 30368 3745408 346374 1.446 0.134 40.880678 -73.906540 +10464 4534 2272 9070627 236605 3.502 0.091 40.867787 -73.799920 +10465 42230 16889 8882828 118 3.430 0.000 40.823277 -73.825602 +10466 67813 24854 5227062 5688 2.018 0.002 40.890964 -73.846239 +10467 97060 37432 6035762 0 2.330 0.000 40.869953 -73.865696 +10468 76103 26178 2784853 45100 1.075 0.017 40.868966 -73.899944 +10469 66631 24078 6414680 0 2.477 0.000 40.868570 -73.848218 +10470 15293 6882 3689950 3918 1.425 0.002 40.889527 -73.872660 +10471 22922 10054 6687174 28258 2.582 0.011 40.898814 -73.903310 +10472 66358 23386 2720837 0 1.051 0.000 40.829556 -73.869359 +10473 58519 21323 5645604 13868 2.180 0.005 40.818690 -73.858474 +10474 12281 3985 3970898 0 1.533 0.000 40.810614 -73.884412 +10475 40931 18911 4463108 250564 1.723 0.097 40.875259 -73.823817 +10501 1219 395 3624479 3860 1.399 0.001 41.295608 -73.758490 +10502 5487 1973 5491263 0 2.120 0.000 41.011602 -73.841433 +10503 108 84 38497 0 0.015 0.000 41.026556 -73.875310 +10504 7987 2735 42167008 5001469 16.281 1.931 41.128468 -73.707521 +10505 851 233 1689634 0 0.652 0.000 41.342090 -73.745449 +10506 5790 2139 42345182 584976 16.350 0.226 41.190889 -73.638479 +10507 6408 2209 18925701 128959 7.307 0.050 41.227896 -73.686047 +10509 19507 7457 93497187 8663391 36.099 3.345 41.410855 -73.594340 +10510 9988 3562 25699181 304770 9.923 0.118 41.138997 -73.834891 +10511 2246 943 3796934 147668 1.466 0.057 41.265428 -73.943192 +10512 25590 10241 141305626 14870704 54.558 5.742 41.444202 -73.714235 +10514 11946 4033 33207916 332234 12.822 0.128 41.172330 -73.768948 +10516 5289 2412 81617955 1596108 31.513 0.616 41.462100 -73.875003 +10517 539 224 850209 0 0.328 0.000 41.298243 -73.861993 +10518 1268 466 8929933 140362 3.448 0.054 41.266160 -73.588251 +10519 316 133 1927174 65850 0.744 0.025 41.352346 -73.652662 +10520 12810 5540 35631980 3375280 13.758 1.303 41.226478 -73.867787 +10522 10875 4191 6291700 1772 2.429 0.001 41.010310 -73.863746 +10523 7444 2676 9347439 5284 3.609 0.002 41.059341 -73.819457 +10524 4421 1771 53875656 839865 20.802 0.324 41.375242 -73.926122 +10526 1809 729 8528946 1375362 3.293 0.531 41.291114 -73.670532 +10527 908 297 6331136 20364 2.444 0.008 41.321183 -73.769878 +10528 12280 4885 9910757 3801 3.827 0.001 40.974752 -73.725777 +10530 12604 6169 9913590 21972 3.828 0.008 41.023712 -73.812810 +10532 4931 1743 4834526 0 1.867 0.000 41.099278 -73.800327 +10533 7322 2924 9207502 137607 3.555 0.053 41.036927 -73.854864 +10535 555 239 1169775 154348 0.452 0.060 41.335169 -73.793919 +10536 10739 3776 66377322 5695232 25.628 2.199 41.269098 -73.688694 +10537 2416 1043 2789284 246090 1.077 0.095 41.339740 -73.882349 +10538 16597 6477 9309984 131479 3.595 0.051 40.938637 -73.755906 +10541 26339 9425 64465346 4265642 24.890 1.647 41.378544 -73.754447 +10543 20135 7971 10581252 474555 4.085 0.183 40.952693 -73.736040 +10545 141 1 326173 0 0.126 0.000 41.178591 -73.835450 +10546 1277 476 2908559 12947 1.123 0.005 41.197237 -73.800418 +10547 7647 2851 13120787 514324 5.066 0.199 41.313334 -73.846039 +10548 3487 1190 6067787 296566 2.343 0.115 41.245696 -73.932977 +10549 16638 6305 49697618 1651398 19.188 0.638 41.200584 -73.723465 +10550 37144 15563 5145599 32763 1.987 0.013 40.905448 -73.835253 +10552 19786 9509 4291821 11814 1.657 0.005 40.924460 -73.826115 +10553 10170 3812 1790573 0 0.691 0.000 40.908584 -73.821652 +10560 4737 1905 54013618 3514991 20.855 1.357 41.340527 -73.597609 +10562 31796 11349 35699633 1422714 13.784 0.549 41.194480 -73.825254 +10566 23570 9705 11322930 605645 4.372 0.234 41.289470 -73.917823 +10567 19929 6907 57335255 1172419 22.137 0.453 41.289545 -73.897030 +10570 12680 4357 16882808 194174 6.518 0.075 41.130067 -73.786670 +10573 38352 13662 14183493 265612 5.476 0.103 41.015857 -73.677404 +10576 5116 2118 58277925 2150370 22.501 0.830 41.221577 -73.572332 +10577 6552 855 17397482 84358 6.717 0.033 41.038271 -73.711743 +10578 681 252 4101865 435996 1.584 0.168 41.320276 -73.678991 +10579 8675 3551 84879358 3613725 32.772 1.395 41.394225 -73.838660 +10580 17208 6475 21974258 1064698 8.484 0.411 40.978942 -73.693320 +10583 38982 14301 32018620 97925 12.362 0.038 40.988682 -73.789204 +10588 2282 867 5169908 69152 1.996 0.027 41.336623 -73.820007 +10589 8475 3972 20708928 1321633 7.996 0.510 41.328436 -73.702858 +10590 6767 2683 34956345 1347637 13.497 0.520 41.255441 -73.539322 +10591 22540 9047 25614414 597137 9.890 0.231 41.090097 -73.841014 +10594 5117 1694 6487422 10073 2.505 0.004 41.113425 -73.774292 +10595 8195 2420 15473636 2361833 5.974 0.912 41.085897 -73.782645 +10596 1729 724 1611723 149079 0.622 0.058 41.256258 -73.959177 +10597 968 395 8647618 645605 3.339 0.249 41.293021 -73.596568 +10598 28647 10644 68620383 7560259 26.494 2.919 41.288223 -73.792203 +10601 11376 6127 1640102 0 0.633 0.000 41.032932 -73.765071 +10603 17045 7070 8520506 7173 3.290 0.003 41.054400 -73.779287 +10604 11250 4252 17645709 3243369 6.813 1.252 41.062079 -73.743380 +10605 18126 7508 13158332 24949 5.080 0.010 41.010525 -73.745125 +10606 16499 6125 3912506 0 1.511 0.000 41.020572 -73.775846 +10607 6824 2374 5752851 29941 2.221 0.012 41.039089 -73.811368 +10701 63393 25511 10940538 0 4.224 0.000 40.945420 -73.880471 +10703 20301 8007 4563135 0 1.762 0.000 40.959829 -73.880302 +10704 30165 13292 6918814 355475 2.671 0.137 40.919729 -73.862651 +10705 38777 14554 5732006 59198 2.213 0.023 40.919705 -73.889928 +10706 8679 3621 7494736 0 2.894 0.000 40.989821 -73.867552 +10707 10097 4356 3363600 0 1.299 0.000 40.960533 -73.822732 +10708 21225 9667 7972300 3565 3.078 0.001 40.938267 -73.829922 +10709 9292 3781 3529311 224926 1.363 0.087 40.954635 -73.808184 +10710 25120 10464 11863704 673779 4.581 0.260 40.967157 -73.846339 +10801 40827 15154 8850509 38874 3.417 0.015 40.917570 -73.784858 +10803 12435 4498 5668104 20721 2.188 0.008 40.900458 -73.807138 +10804 14146 5183 11224987 316902 4.334 0.122 40.946841 -73.788051 +10805 18414 7975 4469017 54775 1.725 0.021 40.897721 -73.779258 +10901 23465 9391 46615179 218514 17.998 0.084 41.140772 -74.104976 +10910 21 17 5388402 109339 2.080 0.042 41.281570 -74.137958 +10911 2 2 2698775 54679 1.042 0.021 41.319158 -74.008159 +10913 5532 1635 10695374 272607 4.130 0.105 41.068258 -73.954975 +10914 414 155 6325876 44754 2.442 0.017 41.417717 -74.200026 +10915 119 47 373883 0 0.144 0.000 41.545359 -74.359321 +10916 4540 1500 52319620 234784 20.201 0.091 41.442463 -74.250674 +10917 1968 709 9624014 79242 3.716 0.031 41.319525 -74.117641 +10918 11647 4254 85261669 1145949 32.920 0.442 41.344192 -74.262177 +10919 1040 380 10661353 49527 4.116 0.019 41.525959 -74.387618 +10920 8554 3012 10814581 2524447 4.176 0.975 41.156213 -73.937748 +10921 4135 1545 21008695 41821 8.112 0.016 41.332062 -74.363412 +10922 1559 710 5889712 192888 2.274 0.074 41.332760 -73.996452 +10923 8732 3081 5093744 92119 1.967 0.036 41.202564 -74.000621 +10924 13120 4819 99312601 634758 38.345 0.245 41.381005 -74.352471 +10925 4539 2393 10076776 4292950 3.891 1.658 41.198181 -74.314759 +10926 3203 1305 13426644 1039699 5.184 0.401 41.301401 -74.122701 +10927 11910 3598 5092351 216458 1.966 0.084 41.191052 -73.967562 +10928 4175 1934 14096143 177778 5.443 0.069 41.348970 -73.998495 +10930 8958 3091 35938343 443317 13.876 0.171 41.361676 -74.113297 +10931 1023 381 16606678 102991 6.412 0.040 41.148792 -74.162522 +10932 60 27 386531 1009 0.149 0.000 41.482160 -74.464285 +10933 473 158 2828798 13227 1.092 0.005 41.367984 -74.512968 +10940 48418 18800 168071512 2771469 64.893 1.070 41.446544 -74.478741 +10941 13779 5131 82948357 509363 32.027 0.197 41.487318 -74.344437 +10950 47226 14106 94268120 3819903 36.397 1.475 41.317089 -74.201961 +10952 38917 9697 23654071 49894 9.133 0.019 41.111118 -74.078540 +10953 252 116 2854241 34680 1.102 0.013 41.404964 -74.077432 +10954 23045 8809 17820981 12015 6.881 0.005 41.099029 -74.012296 +10956 31521 10600 41890589 934798 16.174 0.361 41.157191 -73.993416 +10958 3291 1112 59221508 359347 22.866 0.139 41.371913 -74.432479 +10960 15093 6638 10862399 618 4.194 0.000 41.092068 -73.924648 +10962 5950 1879 15184121 731968 5.863 0.283 41.050066 -73.958585 +10963 4298 969 32820261 337411 12.672 0.130 41.463529 -74.543423 +10964 1472 601 6388185 0 2.466 0.000 41.016204 -73.914304 +10965 14791 5599 13608978 491381 5.254 0.190 41.061561 -74.007832 +10968 2353 1265 1504348 11711 0.581 0.005 41.036334 -73.921633 +10969 1267 501 29061020 20436 11.221 0.008 41.294796 -74.487978 +10970 9993 3918 35656952 866074 13.767 0.334 41.179603 -74.099794 +10973 2126 786 21742582 332902 8.395 0.129 41.380516 -74.480462 +10974 3152 1141 24125845 1977000 9.315 0.763 41.168058 -74.178013 +10975 281 173 15236998 314367 5.883 0.121 41.267079 -74.172263 +10976 2258 642 2973733 11983 1.148 0.005 41.022960 -73.928488 +10977 59048 15891 28751003 39834 11.101 0.015 41.118920 -74.048158 +10979 234 144 377418 0 0.146 0.000 41.182830 -74.314921 +10980 13383 4973 63144330 1639537 24.380 0.633 41.238902 -74.050013 +10983 5532 1967 5280099 16676 2.039 0.006 41.031088 -73.947703 +10984 2842 944 4149729 17457 1.602 0.007 41.202903 -74.022265 +10985 58 19 665812 0 0.257 0.000 41.583519 -74.373188 +10986 1974 720 27973507 447386 10.801 0.173 41.285235 -73.998710 +10987 3395 1542 96140065 4275671 37.120 1.651 41.186928 -74.237350 +10988 896 343 8156721 12120 3.149 0.005 41.302081 -74.548556 +10989 9293 3611 12780655 1676479 4.935 0.647 41.122955 -73.938031 +10990 20631 7835 157658362 2840738 60.872 1.097 41.267448 -74.364011 +10992 9621 3467 28725140 85125 11.091 0.033 41.426161 -74.164346 +10993 4769 1689 2994240 71359 1.156 0.028 41.209896 -73.973842 +10994 7085 2375 15831268 973831 6.112 0.376 41.098072 -73.972649 +10996 6756 841 8390527 118870 3.240 0.046 41.393700 -73.972175 +10998 3122 1064 48312250 365977 18.653 0.141 41.324048 -74.541192 +11001 26883 9598 5775030 34951 2.230 0.013 40.723317 -73.704949 +11003 41356 12850 10723323 113541 4.140 0.044 40.699176 -73.706166 +11004 14016 5152 2460789 0 0.950 0.000 40.746198 -73.711469 +11005 1806 1852 472584 0 0.182 0.000 40.756578 -73.714178 +11010 23821 8402 6151544 0 2.375 0.000 40.700587 -73.675018 +11020 5914 1966 5085564 128626 1.964 0.050 40.771442 -73.714819 +11021 17729 8392 6054699 115008 2.338 0.044 40.784319 -73.731488 +11023 9027 3261 4289289 328079 1.656 0.127 40.798700 -73.733702 +11024 8002 2389 9127289 1553130 3.524 0.600 40.816090 -73.741414 +11030 17962 6488 17284662 311709 6.674 0.120 40.793409 -73.688549 +11040 40782 13900 12388380 73573 4.783 0.028 40.745347 -73.680292 +11042 520 1 1527083 0 0.590 0.000 40.758538 -73.697224 +11050 30171 11863 25877534 4990344 9.991 1.927 40.839895 -73.693128 +11096 8344 2702 3165331 1225389 1.222 0.473 40.621346 -73.756990 +11101 25484 12317 6773846 301002 2.615 0.116 40.747130 -73.939736 +11102 34133 15499 2092161 7099 0.808 0.003 40.772884 -73.926295 +11103 38780 18518 1841677 0 0.711 0.000 40.762574 -73.913447 +11104 27232 12532 1010093 0 0.390 0.000 40.744617 -73.920214 +11105 36688 17416 4226734 0 1.632 0.000 40.778877 -73.906769 +11106 38875 18296 2219776 36652 0.857 0.014 40.762211 -73.931528 +11109 3523 2127 103922 25703 0.040 0.010 40.745115 -73.956928 +11201 51128 26390 3680347 14550 1.421 0.006 40.693682 -73.989693 +11203 76174 28087 5557080 0 2.146 0.000 40.649591 -73.934371 +11204 78134 28196 4115356 0 1.589 0.000 40.618779 -73.984826 +11205 40366 16409 2459479 0 0.950 0.000 40.694698 -73.966301 +11206 81677 29941 3715223 0 1.434 0.000 40.701954 -73.942358 +11207 93386 34202 6917454 0 2.671 0.000 40.670747 -73.894209 +11208 94469 32069 8951522 0 3.456 0.000 40.669689 -73.871371 +11209 68853 34679 5599867 0 2.162 0.000 40.621982 -74.030323 +11210 62008 22476 4250381 0 1.641 0.000 40.628147 -73.946324 +11211 90117 37180 5952757 191943 2.298 0.074 40.712597 -73.953098 +11212 84500 31847 3983224 0 1.538 0.000 40.662936 -73.913029 +11213 63767 24974 2825709 0 1.091 0.000 40.671078 -73.936336 +11214 88630 35261 5658758 7472 2.185 0.003 40.599148 -73.996090 +11215 63488 30073 5641351 54168 2.178 0.021 40.662688 -73.986740 +11216 54316 25964 2422753 0 0.935 0.000 40.680768 -73.949316 +11217 35881 17581 1944333 8495 0.751 0.003 40.682306 -73.978099 +11218 75220 26598 3699262 0 1.428 0.000 40.643476 -73.976043 +11219 92221 28693 3838518 0 1.482 0.000 40.632667 -73.996669 +11220 99598 31045 4639238 0 1.791 0.000 40.641221 -74.016863 +11221 78895 31784 3582802 0 1.383 0.000 40.691340 -73.927879 +11222 36934 18756 3947645 211281 1.524 0.082 40.727790 -73.947605 +11223 78731 32407 5372270 0 2.074 0.000 40.597139 -73.973428 +11224 47621 20768 3999168 91783 1.544 0.035 40.577372 -73.988706 +11225 56829 23588 2289249 0 0.884 0.000 40.663046 -73.954219 +11226 101572 37745 3339497 0 1.289 0.000 40.646448 -73.956649 +11228 41788 18234 3807131 0 1.470 0.000 40.616695 -74.013047 +11229 80018 34885 5611289 127424 2.167 0.049 40.601293 -73.944493 +11230 86408 34028 4765012 0 1.840 0.000 40.622164 -73.965105 +11231 33336 16149 3683315 82512 1.422 0.032 40.677916 -74.005154 +11232 28265 8980 3323376 1286 1.283 0.000 40.656527 -74.007331 +11233 67053 29074 3491031 0 1.348 0.000 40.678308 -73.919936 +11234 87757 33714 19547849 2143727 7.547 0.828 40.605080 -73.911721 +11235 79132 37619 5816304 501713 2.246 0.194 40.583949 -73.949096 +11236 93877 33313 9311387 89767 3.595 0.035 40.639413 -73.900664 +11237 49896 16724 2537578 45736 0.980 0.018 40.704160 -73.921139 +11238 49262 24525 2863622 0 1.106 0.000 40.679171 -73.963804 +11239 13393 6335 1477966 30120 0.571 0.012 40.647735 -73.879477 +11351 0 0 7592 0 0.003 0.000 40.780747 -73.825301 +11354 54878 22201 5612651 83889 2.167 0.032 40.768208 -73.827403 +11355 85871 30681 4493721 0 1.735 0.000 40.751475 -73.821031 +11356 23438 8303 4069871 0 1.571 0.000 40.784850 -73.841279 +11357 39150 15924 7256742 0 2.802 0.000 40.786394 -73.810862 +11358 37546 14068 5048954 0 1.949 0.000 40.760471 -73.796371 +11359 0 0 636668 0 0.246 0.000 40.791786 -73.776867 +11360 18884 9308 3691086 0 1.425 0.000 40.780294 -73.781206 +11361 28606 11195 4553960 49212 1.758 0.019 40.764191 -73.772775 +11362 17823 7347 6518633 108440 2.517 0.042 40.756574 -73.737845 +11363 6988 2797 2249596 0 0.869 0.000 40.772616 -73.746526 +11364 34555 13835 6386921 0 2.466 0.000 40.745296 -73.760607 +11365 42252 16098 6466314 46201 2.497 0.018 40.739634 -73.794490 +11366 13532 4723 2835025 0 1.095 0.000 40.728152 -73.785019 +11367 41047 15588 6162139 481784 2.379 0.186 40.730145 -73.827030 +11368 109931 30978 6816707 94491 2.632 0.036 40.749407 -73.852780 +11369 38615 12184 2765090 0 1.068 0.000 40.763336 -73.872443 +11370 39688 10244 3684369 0 1.423 0.000 40.765370 -73.893243 +11371 0 0 2602752 0 1.005 0.000 40.773836 -73.873399 +11372 66636 25100 1909994 0 0.737 0.000 40.751690 -73.883638 +11373 100820 33227 3956011 0 1.527 0.000 40.738825 -73.878508 +11374 43600 20225 2419933 0 0.934 0.000 40.726388 -73.861509 +11375 68733 34631 5129162 0 1.980 0.000 40.720936 -73.846151 +11377 89830 33545 6595693 0 2.547 0.000 40.744788 -73.905181 +11378 34981 13668 6614594 145653 2.554 0.056 40.724744 -73.909639 +11379 34821 14649 5372961 0 2.075 0.000 40.716748 -73.879601 +11385 98592 37251 9357002 82983 3.613 0.032 40.700671 -73.889433 +11411 18556 6164 3027435 0 1.169 0.000 40.694021 -73.736218 +11412 34882 11526 4264330 0 1.646 0.000 40.698095 -73.758986 +11413 38912 12975 8028308 85692 3.100 0.033 40.671659 -73.752568 +11414 26148 11330 5956106 224136 2.300 0.087 40.657604 -73.844804 +11415 19341 9206 1471500 0 0.568 0.000 40.707917 -73.828212 +11416 24861 7806 1724073 0 0.666 0.000 40.684654 -73.849548 +11417 28967 9714 2898286 0 1.119 0.000 40.676446 -73.844443 +11418 36256 11854 4229580 0 1.633 0.000 40.700272 -73.835971 +11419 47211 13454 2924898 0 1.129 0.000 40.688673 -73.822918 +11420 44354 13743 5382008 0 2.078 0.000 40.673584 -73.817733 +11421 39127 12695 3336083 0 1.288 0.000 40.694062 -73.858626 +11422 30425 9900 5098423 204780 1.969 0.079 40.660060 -73.736012 +11423 29987 10165 3654228 0 1.411 0.000 40.715606 -73.768471 +11424 0 0 87271 0 0.034 0.000 40.714304 -73.827263 +11425 0 0 98802 0 0.038 0.000 40.607754 -74.023937 +11426 17590 6389 3493966 0 1.349 0.000 40.736459 -73.722376 +11427 23593 7958 4082592 0 1.576 0.000 40.730887 -73.745676 +11428 19168 5780 2156475 0 0.833 0.000 40.721016 -73.742245 +11429 25105 7791 3369771 0 1.301 0.000 40.709770 -73.738665 +11430 184 0 18434911 663495 7.118 0.256 40.647126 -73.785630 +11432 60809 19518 5566224 0 2.149 0.000 40.715359 -73.793071 +11433 32687 11483 4019554 0 1.552 0.000 40.698162 -73.786893 +11434 59129 21681 8388456 172037 3.239 0.066 40.676808 -73.776425 +11435 53687 18963 3922755 0 1.515 0.000 40.701265 -73.809605 +11436 17949 5924 2040481 0 0.788 0.000 40.675820 -73.796617 +11451 0 0 91974 0 0.036 0.000 40.701282 -73.795972 +11501 19148 7841 5307491 0 2.049 0.000 40.746283 -73.638910 +11507 7406 2540 2796546 0 1.080 0.000 40.770847 -73.652260 +11509 2653 1394 2181024 740040 0.842 0.286 40.587963 -73.728528 +11510 33048 11104 10998551 1451207 4.247 0.560 40.650127 -73.607709 +11514 4673 1825 2323170 0 0.897 0.000 40.749891 -73.612476 +11516 7556 2655 2262295 0 0.873 0.000 40.625787 -73.726685 +11518 10549 4348 3554629 300498 1.372 0.116 40.637472 -73.666807 +11520 43341 14000 13192649 1088525 5.094 0.420 40.649401 -73.582951 +11530 27273 9474 18391308 63946 7.101 0.025 40.726854 -73.637009 +11542 27633 10610 17251485 632446 6.661 0.244 40.872605 -73.628622 +11545 12065 4331 29720330 32793 11.475 0.013 40.826321 -73.589365 +11547 793 298 1126461 54527 0.435 0.021 40.833670 -73.642687 +11548 2780 446 2369366 0 0.915 0.000 40.812868 -73.627405 +11549 2922 0 187386 0 0.072 0.000 40.717240 -73.602746 +11550 56435 16859 11034175 12386 4.260 0.005 40.701475 -73.621108 +11552 23616 7529 8844683 689091 3.415 0.266 40.692979 -73.652416 +11553 26034 6469 9069289 20461 3.502 0.008 40.706430 -73.591622 +11554 38132 12863 16183381 61309 6.248 0.024 40.720115 -73.558861 +11556 17 0 155327 0 0.060 0.000 40.719683 -73.583807 +11557 7823 2961 5235450 370943 2.021 0.143 40.637176 -73.691976 +11558 8370 3099 3878352 1352960 1.497 0.522 40.605357 -73.649046 +11559 8176 2821 10820799 2449971 4.178 0.946 40.605480 -73.716208 +11560 6464 2490 19430272 321812 7.502 0.124 40.880757 -73.588724 +11561 37280 18418 10099819 957319 3.900 0.370 40.589081 -73.648178 +11563 22666 9126 6207872 0 2.397 0.000 40.657253 -73.673728 +11565 8690 3213 2891203 0 1.116 0.000 40.675061 -73.671666 +11566 35321 12070 14121530 2471578 5.452 0.954 40.663239 -73.553779 +11568 4555 1124 23108293 0 8.922 0.000 40.786964 -73.596505 +11569 1398 770 1010876 0 0.390 0.000 40.589786 -73.582305 +11570 26646 10453 9525132 220954 3.678 0.085 40.666066 -73.638409 +11572 30574 11093 12369733 1206892 4.776 0.466 40.631772 -73.636624 +11575 16272 4369 4611705 26590 1.781 0.010 40.680422 -73.584877 +11576 12366 4630 11782385 729035 4.549 0.281 40.799414 -73.647467 +11577 12337 4441 7890474 0 3.047 0.000 40.783266 -73.638866 +11579 5055 2073 2907571 0 1.123 0.000 40.844016 -73.644006 +11580 40113 13506 10118686 40010 3.907 0.015 40.674900 -73.702154 +11581 20844 7270 6975425 552824 2.693 0.213 40.651028 -73.715325 +11590 45768 14450 17290910 62481 6.676 0.024 40.755182 -73.574338 +11596 10480 3782 3449390 0 1.332 0.000 40.759667 -73.642308 +11598 13328 4322 5158773 322616 1.992 0.125 40.630919 -73.712336 +11691 60035 21160 7339464 86654 2.834 0.033 40.601278 -73.761651 +11692 18540 6881 2586423 180416 0.999 0.070 40.594095 -73.792896 +11693 11916 5170 2582599 0 0.997 0.000 40.590692 -73.809749 +11694 20408 9341 3536999 1437 1.366 0.001 40.578270 -73.844762 +11697 4079 2698 5749269 750 2.220 0.000 40.555681 -73.920688 +11701 27109 9831 12354440 1384083 4.770 0.534 40.681433 -73.410099 +11702 14498 5850 23639541 914597 9.127 0.353 40.650581 -73.262413 +11703 16415 5964 8080675 110100 3.120 0.043 40.732670 -73.325925 +11704 40222 14088 20873713 531087 8.059 0.205 40.717504 -73.358203 +11705 8030 2944 9194715 195623 3.550 0.076 40.743277 -73.055841 +11706 62543 21776 44135882 3171985 17.041 1.225 40.722537 -73.252183 +11709 6669 2651 3913961 1307759 1.511 0.505 40.906478 -73.559505 +11710 34496 12080 12654170 1653516 4.886 0.638 40.671803 -73.533514 +11713 10401 3940 13077818 236372 5.049 0.091 40.776152 -72.943291 +11714 22658 8213 11199604 0 4.324 0.000 40.742553 -73.486081 +11715 4752 1752 4379300 14895 1.691 0.006 40.751006 -73.034877 +11716 10700 3925 22638758 95271 8.741 0.037 40.776697 -73.134857 +11717 60745 14217 28295333 0 10.925 0.000 40.783765 -73.252208 +11718 3103 1156 2448217 58407 0.945 0.023 40.723177 -73.268488 +11719 3589 1304 15517338 378017 5.991 0.146 40.782153 -72.912104 +11720 29189 9581 21112862 0 8.152 0.000 40.870291 -73.082097 +11721 6292 2421 6449113 3753280 2.490 1.449 40.900759 -73.372447 +11722 35177 10158 18885203 0 7.292 0.000 40.783033 -73.194927 +11724 3220 1059 9994932 507202 3.859 0.196 40.864224 -73.456383 +11725 29150 9883 25270477 0 9.757 0.000 40.840482 -73.280788 +11726 19857 6355 6651434 414310 2.568 0.160 40.678789 -73.395729 +11727 29030 11652 23567601 0 9.100 0.000 40.882073 -73.004014 +11729 28032 9895 16227590 9723 6.266 0.004 40.762698 -73.321445 +11730 14712 5035 19712137 4506974 7.611 1.740 40.716886 -73.169818 +11731 30184 10454 21698991 0 8.378 0.000 40.862648 -73.316948 +11732 3430 1417 3956466 0 1.528 0.000 40.844736 -73.536901 +11733 18949 6326 30672901 12286586 11.843 4.744 40.940247 -73.112784 +11735 32098 11438 27080017 51786 10.456 0.020 40.732747 -73.432789 +11738 17638 5610 13812407 0 5.333 0.000 40.838190 -73.038221 +11739 1223 413 2150905 225641 0.830 0.087 40.729371 -73.159874 +11740 9454 3517 9602404 0 3.708 0.000 40.865401 -73.361292 +11741 27655 9959 19382501 0 7.484 0.000 40.794828 -73.070330 +11742 13261 4798 12960866 0 5.004 0.000 40.810011 -73.041426 +11743 42230 15896 65710750 9614430 25.371 3.712 40.883386 -73.423641 +11746 67094 21578 61847153 9518 23.879 0.004 40.814268 -73.362276 +11747 19803 7529 34087733 1209 13.161 0.000 40.788528 -73.407298 +11749 3345 1092 5668090 0 2.188 0.000 40.806738 -73.170891 +11751 14961 5513 10350269 1616102 3.996 0.624 40.730486 -73.213924 +11752 9531 3173 9617687 60294 3.713 0.023 40.757114 -73.174012 +11753 12014 4295 10039259 41301 3.876 0.016 40.789722 -73.539911 +11754 18958 6975 18994228 2679084 7.334 1.034 40.885566 -73.249880 +11755 12387 4336 8391483 2832 3.240 0.001 40.857797 -73.116818 +11756 42791 14183 14296759 64664 5.520 0.025 40.724567 -73.516333 +11757 45700 16104 17602045 806503 6.796 0.311 40.689010 -73.373328 +11758 53804 18795 28487737 1601082 10.999 0.618 40.668934 -73.458448 +11762 22360 7651 7990423 134391 3.085 0.052 40.682744 -73.446664 +11763 28506 9629 35860857 4749 13.846 0.002 40.826881 -72.984928 +11764 13200 4393 23768611 3047313 9.177 1.177 40.938993 -72.979047 +11765 737 326 6335333 828974 2.446 0.320 40.882186 -73.558941 +11766 12635 4444 15967694 3735467 6.165 1.442 40.939219 -73.018666 +11767 14530 4938 10811386 14619 4.174 0.006 40.842949 -73.145216 +11768 21902 8325 39179738 29305846 15.127 11.315 40.923631 -73.339309 +11769 9506 4168 11434845 1072521 4.415 0.414 40.736277 -73.129837 +11770 137 1196 1130822 0 0.437 0.000 40.645842 -73.156596 +11771 10007 4078 27707560 9879871 10.698 3.815 40.872799 -73.525020 +11772 44837 17725 41943745 1152750 16.195 0.445 40.761780 -72.987407 +11776 24235 8606 17868679 0 6.899 0.000 40.913615 -73.046399 +11777 8968 3732 11295193 5451758 4.361 2.105 40.956068 -73.066659 +11778 12709 4971 17729423 3451017 6.845 1.332 40.948048 -72.937087 +11779 38421 13632 32515886 859817 12.554 0.332 40.812431 -73.116108 +11780 15524 5586 29809606 10257773 11.510 3.961 40.909287 -73.174729 +11782 15814 7012 14361077 167315 5.545 0.065 40.738088 -73.081670 +11783 21288 7400 9180354 86471 3.545 0.033 40.677612 -73.490014 +11784 24655 8380 14165787 0 5.469 0.000 40.868923 -73.041215 +11786 6344 2015 15005030 4292624 5.793 1.657 40.950485 -72.886658 +11787 35772 12658 38936036 1717027 15.033 0.663 40.852924 -73.211260 +11788 16821 6009 22221707 0 8.580 0.000 40.818075 -73.213084 +11789 7895 3105 4406952 2384608 1.702 0.921 40.962028 -72.971008 +11790 18511 5034 18548423 479500 7.162 0.185 40.905957 -73.127374 +11791 25076 8375 33613158 713179 12.978 0.275 40.828288 -73.505922 +11792 8523 3240 25501373 7080506 9.846 2.734 40.954997 -72.825588 +11793 32298 11023 24567561 731768 9.486 0.283 40.650294 -73.514561 +11794 3165 0 715212 0 0.276 0.000 40.913317 -73.124864 +11795 26030 8526 14718868 1132606 5.683 0.437 40.709005 -73.296337 +11796 4056 1363 3792345 0 1.464 0.000 40.731277 -73.099701 +11797 9041 3217 13312889 41196 5.140 0.016 40.820348 -73.472077 +11798 15347 4168 12346847 8646 4.767 0.003 40.752599 -73.378743 +11801 39553 13127 17183893 39056 6.635 0.015 40.762304 -73.524452 +11803 28127 9917 15682737 27297 6.055 0.011 40.781700 -73.473035 +11804 5010 1773 7467476 8861 2.883 0.003 40.759010 -73.457384 +11901 27172 11250 142757574 13300327 55.119 5.135 40.925735 -72.647924 +11930 1343 2452 23874994 21054193 9.218 8.129 40.989573 -72.098043 +11931 151 103 1173837 239390 0.453 0.092 40.933503 -72.613346 +11932 1398 1938 22374497 4795921 8.639 1.852 40.934344 -72.306647 +11933 6844 3577 71817314 6255304 27.729 2.415 40.941096 -72.767557 +11934 7263 2599 12055515 1074158 4.655 0.415 40.798359 -72.794297 +11935 3304 2069 26368809 3012744 10.181 1.163 41.021223 -72.486958 +11937 15398 12428 111088711 63980724 42.892 24.703 41.011627 -72.165487 +11939 926 953 5797380 13481917 2.238 5.205 41.123116 -72.315350 +11940 5210 2179 14268754 387141 5.509 0.149 40.812662 -72.752231 +11941 1986 928 6366959 338439 2.458 0.131 40.830160 -72.729761 +11942 4603 2948 22586450 2055225 8.721 0.794 40.850777 -72.582227 +11944 4299 2812 10548117 8978439 4.073 3.467 41.104030 -72.371541 +11946 14068 8176 34938413 6164116 13.490 2.380 40.870270 -72.521704 +11947 416 206 1683074 0 0.650 0.000 40.950659 -72.571053 +11948 1123 718 7035731 10998 2.717 0.004 40.963769 -72.553554 +11949 14573 5399 89461466 738338 34.541 0.285 40.866411 -72.804560 +11950 16268 5098 10683102 368143 4.125 0.142 40.808032 -72.847010 +11951 13680 5140 17356555 2910950 6.701 1.124 40.763164 -72.830344 +11952 4637 2685 24544324 8229876 9.477 3.178 41.001648 -72.547599 +11953 13553 5660 26579216 182859 10.262 0.071 40.893272 -72.951773 +11954 3326 4722 47942719 44916011 18.511 17.342 41.047565 -71.946386 +11955 3285 1707 7392391 589098 2.854 0.227 40.809125 -72.816096 +11956 349 308 3284727 157808 1.268 0.061 40.969049 -72.462175 +11957 743 772 16750096 39844847 6.467 15.384 41.192201 -72.148968 +11958 635 454 7448956 3179176 2.876 1.227 41.039067 -72.464419 +11959 939 1495 9938212 1095887 3.837 0.423 40.822586 -72.601345 +11960 1084 963 4888997 190434 1.888 0.074 40.810615 -72.706062 +11961 12834 6113 33129633 239983 12.791 0.093 40.905139 -72.888349 +11962 494 813 14198091 4409723 5.482 1.703 40.930895 -72.268719 +11963 6622 5628 34942545 6413376 13.491 2.476 40.993886 -72.320196 +11964 1858 1922 24189275 27128253 9.340 10.474 41.055701 -72.316976 +11965 534 832 7317534 16756735 2.825 6.470 41.096081 -72.288400 +11967 26583 8628 29314921 2296193 11.319 0.887 40.794778 -72.875477 +11968 11593 9398 69090110 15859437 26.676 6.123 40.905926 -72.415663 +11970 522 513 1454535 70265 0.562 0.027 40.938952 -72.577539 +11971 5818 4051 28660407 10660919 11.066 4.116 41.064037 -72.430926 +11972 1321 571 6252109 17177 2.414 0.007 40.848016 -72.702923 +11973 9 145 11417197 11567 4.408 0.004 40.867173 -72.882123 +11975 408 609 7387267 3084061 2.852 1.191 40.941107 -72.244466 +11976 1565 2201 31784245 5836969 12.272 2.254 40.922393 -72.350704 +11977 2467 1610 14897275 218195 5.752 0.084 40.827467 -72.678983 +11978 3255 3879 32628672 1521380 12.598 0.587 40.826323 -72.649008 +11980 4990 1646 33972329 318022 13.117 0.123 40.831652 -72.923760 +12007 60 28 3140703 7059 1.213 0.003 42.455665 -73.927143 +12008 497 195 2153229 452596 0.831 0.175 42.853488 -73.906535 +12009 7164 3076 135241924 2168637 52.217 0.837 42.697566 -74.035542 +12010 28937 13788 338547680 7032703 130.714 2.715 42.937626 -74.173332 +12015 3010 1641 34601819 1459366 13.360 0.563 42.294886 -73.824837 +12017 435 314 51687722 105154 19.957 0.041 42.321148 -73.455928 +12018 7930 3378 115351117 3228084 44.537 1.246 42.628833 -73.520770 +12019 14740 5944 76405457 1277357 29.500 0.493 42.934351 -73.881808 +12020 31192 13130 194766983 8111483 75.200 3.132 43.001589 -73.868123 +12022 929 494 83819019 155421 32.363 0.060 42.656947 -73.333838 +12023 2196 1088 149162633 693593 57.592 0.268 42.598558 -74.183022 +12024 31 26 2697849 0 1.042 0.000 42.476788 -73.533278 +12025 5505 3062 93930692 1103585 36.267 0.426 43.083346 -74.138092 +12027 3882 1527 18575312 57932 7.172 0.022 42.935415 -73.907815 +12028 1172 488 58463443 709660 22.573 0.274 42.934442 -73.442269 +12029 1113 783 52061012 655216 20.101 0.253 42.415956 -73.424965 +12031 175 76 8387429 15737 3.238 0.006 42.766037 -74.451610 +12032 836 1343 230002918 11506131 88.805 4.443 43.124008 -74.525070 +12033 7851 3283 69887469 1824339 26.984 0.704 42.543138 -73.705499 +12035 802 355 16135269 280123 6.230 0.108 42.730668 -74.357711 +12036 228 154 19181893 20982 7.406 0.008 42.541514 -74.673053 +12037 4015 2106 79850406 507311 30.830 0.196 42.344725 -73.567126 +12040 113 60 3384007 0 1.307 0.000 42.637350 -73.350721 +12041 481 195 4097531 0 1.582 0.000 42.577943 -73.952660 +12042 271 144 11251961 31391 4.344 0.012 42.416518 -73.938206 +12043 8509 3498 159961831 676450 61.762 0.261 42.693970 -74.530506 +12045 584 279 1900885 358876 0.734 0.139 42.482555 -73.800532 +12046 817 347 39752712 5389579 15.349 2.081 42.509465 -73.923521 +12047 19664 9738 22870488 3701161 8.830 1.429 42.784054 -73.726219 +12051 7070 2115 55230325 945824 21.325 0.365 42.345525 -73.842543 +12052 1568 756 78481366 2711667 30.302 1.047 42.754470 -73.478427 +12053 4587 1851 160164360 1705857 61.840 0.659 42.757543 -74.190866 +12054 16918 7144 40007380 78543 15.447 0.030 42.608547 -73.864416 +12056 2310 955 46631324 1265954 18.004 0.489 42.764785 -74.095150 +12057 1835 792 91071725 31927 35.163 0.012 42.968892 -73.346287 +12058 1445 709 49810354 793231 19.232 0.306 42.345129 -73.918376 +12059 1632 1021 67209122 1809795 25.950 0.699 42.619229 -74.060894 +12060 1507 874 89364743 342456 34.504 0.132 42.410399 -73.505286 +12061 9050 3827 52133318 292713 20.129 0.113 42.594948 -73.659578 +12062 1776 814 75007616 643940 28.961 0.249 42.538976 -73.504976 +12063 444 176 3690581 10502 1.425 0.004 42.568163 -73.638051 +12064 563 333 29600946 35429 11.429 0.014 42.614166 -74.655719 +12065 41776 18030 90379400 2575557 34.896 0.994 42.852284 -73.785597 +12066 2143 946 86932724 2823194 33.565 1.090 42.800729 -74.384535 +12067 1506 651 55453672 510205 21.411 0.197 42.557461 -73.920294 +12068 3201 1365 79798849 1790080 30.811 0.691 42.956072 -74.401834 +12069 256 101 1484746 306603 0.573 0.118 42.946168 -74.279640 +12070 1410 617 31705037 375959 12.241 0.145 42.986058 -74.263032 +12071 270 163 23909016 0 9.231 0.000 42.552669 -74.422657 +12072 2890 1155 124739689 1398850 48.162 0.540 42.884893 -74.356741 +12074 2963 1516 92324087 2225331 35.647 0.859 43.054217 -74.030006 +12075 3418 1595 101749208 539873 39.286 0.208 42.299922 -73.633627 +12076 1500 1440 194249588 4919019 75.000 1.899 42.410272 -74.395734 +12077 6246 2450 26121600 1025941 10.086 0.396 42.588163 -73.777695 +12078 23773 11840 280975365 9749260 108.485 3.764 43.134351 -74.339632 +12083 3795 1839 111677736 1265231 43.119 0.489 42.424859 -74.026509 +12084 4271 2205 9346116 42742 3.609 0.017 42.704563 -73.899429 +12085 479 203 454725 0 0.176 0.000 42.703313 -73.963261 +12086 1865 910 15708787 155065 6.065 0.060 43.009005 -74.086332 +12087 1073 456 50993000 659850 19.689 0.255 42.432250 -73.892894 +12089 69 36 1404809 0 0.542 0.000 42.867481 -73.312773 +12090 6262 2803 147700785 25125 57.028 0.010 42.876802 -73.351525 +12092 1304 604 38739078 444818 14.957 0.172 42.696079 -74.378715 +12093 1666 1265 170863049 517435 65.971 0.200 42.497796 -74.628095 +12094 2268 913 73126549 1506291 28.234 0.582 42.899423 -73.489795 +12095 12606 5441 157056471 836288 60.640 0.323 43.024817 -74.403815 +12106 2193 1057 37746223 103963 14.574 0.040 42.389554 -73.710951 +12108 416 940 366663777 18529296 141.570 7.154 43.573248 -74.451487 +12110 21908 7973 38035451 1164388 14.686 0.450 42.750910 -73.775205 +12115 189 113 13423448 89117 5.183 0.034 42.477297 -73.576704 +12116 1920 1112 99751107 2163604 38.514 0.835 42.538795 -74.911164 +12117 3256 2098 116176825 1761205 44.856 0.680 43.169293 -74.261094 +12118 13897 6296 81780324 3608284 31.576 1.393 42.913382 -73.708337 +12120 613 353 45353167 162006 17.511 0.063 42.449724 -74.148844 +12121 1916 750 53391274 7664387 20.614 2.959 42.839897 -73.607392 +12122 4582 2763 279921853 1005735 108.078 0.388 42.542052 -74.325860 +12123 5124 2283 84493279 1195782 32.623 0.462 42.526810 -73.605908 +12124 606 280 6825392 10400 2.635 0.004 42.453111 -73.797581 +12125 1373 763 46520294 7878 17.962 0.003 42.484748 -73.399844 +12130 987 480 1546252 0 0.597 0.000 42.442223 -73.659380 +12131 115 85 18298933 1048683 7.065 0.405 42.457514 -74.464577 +12132 338 172 4815480 0 1.859 0.000 42.470522 -73.630029 +12134 3516 2922 500349045 5838434 193.186 2.254 43.266222 -74.228535 +12136 804 487 47010531 49375 18.151 0.019 42.434836 -73.559506 +12137 1679 747 62101638 1025371 23.978 0.396 42.860351 -74.133057 +12138 3168 1761 207870806 1061903 80.259 0.410 42.748844 -73.370413 +12139 295 704 619226855 25959199 239.085 10.023 43.500184 -74.579588 +12140 1702 671 21464106 183219 8.287 0.071 42.696684 -73.540064 +12143 5137 2282 50145837 366180 19.361 0.141 42.489818 -73.855238 +12144 20555 9474 49036543 1506120 18.933 0.582 42.627836 -73.717842 +12147 499 315 50930855 479083 19.665 0.185 42.518611 -74.158840 +12148 4569 1797 40531079 3314537 15.649 1.280 42.827793 -73.848164 +12149 2474 1375 121105416 896126 46.759 0.346 42.616653 -74.563445 +12150 914 411 2839616 244070 1.096 0.094 42.880521 -74.052686 +12151 708 358 6711172 342057 2.591 0.132 42.922697 -73.787225 +12153 814 439 46691967 383844 18.028 0.148 42.629923 -73.473341 +12154 2818 1172 107880380 3214030 41.653 1.241 42.937460 -73.605775 +12155 1977 1178 147389187 343496 56.907 0.133 42.596357 -74.827655 +12156 848 379 37151693 1767252 14.344 0.682 42.483504 -73.747254 +12157 4061 1888 112845034 257274 43.570 0.099 42.669798 -74.286077 +12158 6309 2579 79239948 2443029 30.595 0.943 42.542092 -73.822124 +12159 7896 3456 36488590 114783 14.088 0.044 42.651428 -73.885894 +12160 944 415 45894459 361098 17.720 0.139 42.761621 -74.383153 +12161 160 65 1059939 16016 0.409 0.006 42.534769 -73.854863 +12164 365 572 120211587 7369717 46.414 2.845 43.587995 -74.358706 +12165 175 115 8358130 4590 3.227 0.002 42.305721 -73.510986 +12166 1363 619 113479961 783562 43.815 0.303 42.833604 -74.445493 +12167 2438 1506 118298378 819482 45.675 0.316 42.424942 -74.578036 +12168 1952 1025 90332204 297127 34.877 0.115 42.560862 -73.380714 +12169 306 160 24662218 166025 9.522 0.064 42.592887 -73.448036 +12170 4945 2007 78008401 1784987 30.119 0.689 43.001956 -73.667271 +12172 405 164 1144099 0 0.442 0.000 42.288764 -73.739212 +12173 1753 784 44535675 52966 17.195 0.020 42.380013 -73.759660 +12174 345 142 2976986 0 1.149 0.000 42.353449 -73.728436 +12175 797 498 57248843 286487 22.104 0.111 42.544713 -74.556231 +12176 198 102 8614680 257698 3.326 0.099 42.382017 -73.980862 +12177 518 234 1581935 94794 0.611 0.037 42.951223 -74.287066 +12180 53606 24331 142175880 2731859 54.894 1.055 42.748588 -73.599536 +12182 14733 6900 35586570 1490275 13.740 0.575 42.799699 -73.630864 +12183 2620 1408 1935063 482922 0.747 0.186 42.747870 -73.692595 +12184 7148 3105 99789705 1831181 38.529 0.707 42.420039 -73.653177 +12185 2037 840 62941528 679971 24.302 0.263 42.862521 -73.554112 +12186 6277 2728 81916907 1046805 31.628 0.404 42.633164 -73.977188 +12187 697 393 59619084 58871 23.019 0.023 42.618840 -74.463554 +12188 10980 4947 33615799 2765028 12.979 1.068 42.821229 -73.695521 +12189 17568 9032 16496067 477521 6.369 0.184 42.736341 -73.717521 +12190 674 780 457909250 4051721 176.800 1.564 43.475631 -74.285410 +12192 1722 771 44458248 111097 17.165 0.043 42.409031 -73.827676 +12193 2016 928 100695304 910350 38.879 0.351 42.522760 -74.043268 +12194 207 138 39961746 22439 15.429 0.009 42.528439 -74.447630 +12195 154 96 5064044 0 1.955 0.000 42.482789 -73.475088 +12196 3031 1228 22898561 553473 8.841 0.214 42.631786 -73.613946 +12197 2233 1394 173618477 937451 67.034 0.362 42.609999 -74.724749 +12198 7903 3281 33910049 634571 13.093 0.245 42.672768 -73.633574 +12202 9628 5207 5306156 575900 2.049 0.222 42.633752 -73.763248 +12203 29952 13677 29546226 163132 11.408 0.063 42.678763 -73.845869 +12204 7349 3798 10534351 861056 4.067 0.332 42.691525 -73.733797 +12205 26977 12204 40906445 243508 15.794 0.094 42.718785 -73.829240 +12206 16395 8208 5516300 0 2.130 0.000 42.674514 -73.782731 +12207 1948 1122 2746948 403576 1.061 0.156 42.657500 -73.746424 +12208 20702 10260 10861662 20810 4.194 0.008 42.653031 -73.809978 +12209 10121 4501 5544950 7882 2.141 0.003 42.638686 -73.790469 +12210 10158 6252 2321851 14749 0.896 0.006 42.659616 -73.756386 +12211 11303 4549 20537352 274582 7.930 0.106 42.703095 -73.763706 +12222 6489 0 1403589 15294 0.542 0.006 42.685261 -73.823230 +12302 27582 11968 109635377 3188881 42.330 1.231 42.878182 -73.982505 +12303 29857 12927 39875875 30397 15.396 0.012 42.753534 -73.926481 +12304 21482 9295 17640246 83611 6.811 0.032 42.774690 -73.898297 +12305 5716 3100 3859695 240546 1.490 0.093 42.811977 -73.950254 +12306 25636 11533 111612578 1723530 43.094 0.665 42.805431 -74.044234 +12307 7692 3387 1845434 11575 0.713 0.004 42.804981 -73.932822 +12308 15335 6588 5823815 164651 2.249 0.064 42.820980 -73.919670 +12309 29343 12449 42920576 2311113 16.572 0.892 42.799829 -73.864960 +12401 35040 16382 151373808 3445006 58.446 1.330 41.987541 -74.010273 +12404 3385 1945 92428414 613979 35.687 0.237 41.818967 -74.236062 +12405 780 447 18506273 75292 7.145 0.029 42.317909 -74.085995 +12406 823 719 111969347 206660 43.232 0.080 42.079945 -74.524094 +12407 173 156 8713930 0 3.364 0.000 42.317636 -74.358151 +12409 804 589 36953034 576782 14.268 0.223 42.039946 -74.182346 +12410 397 426 106657588 92306 41.181 0.036 42.066098 -74.424733 +12411 497 239 2427386 48057 0.937 0.019 41.876019 -74.044802 +12412 673 353 15721043 0 6.070 0.000 42.012729 -74.279585 +12413 2948 1658 42356213 235516 16.354 0.091 42.313984 -74.022160 +12414 10510 5404 154372187 1769794 59.603 0.683 42.232022 -73.913867 +12416 277 260 13170617 2078 5.085 0.001 42.103216 -74.280684 +12417 581 255 817159 74121 0.316 0.029 41.906422 -73.990723 +12418 537 395 35781550 0 13.815 0.000 42.358759 -74.161681 +12419 722 325 6202836 54141 2.395 0.021 41.860252 -74.102007 +12420 363 220 10732824 212110 4.144 0.082 41.672280 -74.371763 +12421 470 633 50778844 22667 19.606 0.009 42.250044 -74.546139 +12422 339 228 26387545 14148 10.188 0.005 42.391829 -74.213288 +12423 1097 722 32933741 0 12.716 0.000 42.379218 -74.109746 +12424 250 365 46027050 296981 17.771 0.115 42.248270 -74.115156 +12427 576 378 106188532 95296 41.000 0.037 42.134193 -74.136697 +12428 6602 3433 139812127 1500116 53.982 0.579 41.742833 -74.447304 +12429 281 139 5461450 10812 2.109 0.004 41.833329 -73.985378 +12430 1194 1157 102780377 96190 39.684 0.037 42.200758 -74.499160 +12431 1381 757 40058015 69166 15.466 0.027 42.362023 -74.023533 +12432 492 216 1575475 0 0.608 0.000 42.044420 -73.944531 +12433 483 290 9893657 223515 3.820 0.086 42.000525 -74.156458 +12434 751 520 35661204 1106926 13.769 0.427 42.363640 -74.502385 +12435 326 230 25789205 198624 9.957 0.077 41.730835 -74.513284 +12436 417 424 39763602 358425 15.353 0.138 42.195759 -74.077813 +12438 59 44 1137337 107475 0.439 0.041 42.205044 -74.601076 +12439 305 448 20285730 59392 7.832 0.023 42.277818 -74.210391 +12440 1980 1050 59870567 1126918 23.116 0.435 41.781151 -74.172876 +12441 114 188 16386105 3491 6.327 0.001 42.134422 -74.509215 +12442 953 1301 85919003 209406 33.174 0.081 42.182011 -74.222976 +12443 3825 1719 46667503 296305 18.018 0.114 41.934991 -74.084925 +12444 497 623 39944500 155090 15.423 0.060 42.264233 -74.297520 +12446 5061 2776 175885810 595657 67.910 0.230 41.809054 -74.326443 +12448 388 298 30202270 630494 11.661 0.243 42.090011 -74.157970 +12449 3367 1299 9378225 470175 3.621 0.182 41.992355 -73.993705 +12450 183 211 25634491 0 9.898 0.000 42.133247 -74.244280 +12451 1674 898 30576124 134106 11.806 0.052 42.304893 -73.948176 +12452 213 207 22230440 0 8.583 0.000 42.252385 -74.364938 +12453 366 174 1277726 0 0.493 0.000 42.093389 -73.936281 +12454 297 280 28838772 114432 11.135 0.044 42.286951 -74.149495 +12455 1988 1695 198660502 2917964 76.703 1.127 42.140710 -74.659523 +12456 639 245 1399184 52824 0.540 0.020 42.032997 -73.998278 +12457 763 553 36189767 0 13.973 0.000 42.044072 -74.252501 +12458 3232 1182 83665854 255786 32.304 0.099 41.822918 -74.432080 +12459 161 181 19706616 15716 7.609 0.006 42.240382 -74.678893 +12460 277 161 5344180 0 2.063 0.000 42.415615 -74.147590 +12461 1634 964 61872153 58368 23.889 0.023 41.904961 -74.267998 +12463 1484 825 28028103 66577 10.822 0.026 42.205593 -74.020774 +12464 1020 916 114332114 25209 44.144 0.010 42.027684 -74.359949 +12465 266 312 7493022 25678 2.893 0.010 42.157153 -74.460016 +12466 2471 1183 2688098 0 1.038 0.000 41.904345 -73.979025 +12468 1036 852 112952135 298023 43.611 0.115 42.304177 -74.427185 +12469 677 594 87813018 51694 33.905 0.020 42.447741 -74.238585 +12470 536 308 25344632 101505 9.786 0.039 42.300387 -74.095475 +12471 215 114 907991 531303 0.351 0.205 41.843871 -74.041344 +12472 1572 827 9243857 420147 3.569 0.162 41.847090 -74.079545 +12473 861 476 38891152 0 15.016 0.000 42.258166 -74.041007 +12474 1162 943 114363275 91280 44.156 0.035 42.323807 -74.583034 +12475 354 161 3183034 0 1.229 0.000 42.015237 -74.015432 +12477 18787 8842 170522601 1302706 65.839 0.503 42.091943 -73.990006 +12480 634 524 87890125 54349 33.935 0.021 42.135377 -74.391252 +12481 1356 704 32416793 289711 12.516 0.112 41.987348 -74.228435 +12482 680 345 5726553 0 2.211 0.000 42.268143 -73.955446 +12483 259 298 8608112 76906 3.324 0.030 41.672384 -74.422001 +12484 2733 1376 61600815 82433 23.784 0.032 41.861843 -74.176532 +12485 865 910 21729903 278203 8.390 0.107 42.204998 -74.144197 +12486 1523 661 8784846 489968 3.392 0.189 41.832417 -74.063984 +12487 3268 1437 40673239 734930 15.704 0.284 41.869399 -73.998795 +12489 1292 259 15922250 208220 6.148 0.080 41.750485 -74.358293 +12490 110 64 1352603 8150 0.522 0.003 42.122227 -73.925237 +12491 1675 815 23279872 771736 8.988 0.298 41.965186 -74.141441 +12492 271 298 99619938 0 38.463 0.000 42.184926 -74.335763 +12493 495 233 17854456 53565 6.894 0.021 41.785589 -73.974095 +12494 764 489 48545559 0 18.744 0.000 41.956599 -74.292894 +12495 265 244 23672913 0 9.140 0.000 42.084923 -74.240680 +12496 1634 2198 122209566 180755 47.185 0.070 42.337294 -74.269692 +12498 4851 3162 56454302 24959 21.797 0.010 42.046044 -74.109455 +12501 2457 1149 79187390 842379 30.574 0.325 41.863492 -73.573604 +12502 1164 745 84770055 1477400 32.730 0.570 42.086568 -73.664724 +12503 775 521 54466824 408931 21.030 0.158 42.035959 -73.580146 +12504 1395 47 3809756 2105941 1.471 0.813 42.034803 -73.912425 +12507 167 77 3608974 306020 1.393 0.118 42.008182 -73.918958 +12508 19880 7703 37721340 180243 14.564 0.070 41.495996 -73.953632 +12512 127 71 1155772 2167 0.446 0.001 41.548499 -73.968402 +12513 651 367 7561218 52857 2.919 0.020 42.219307 -73.720481 +12514 2938 1384 69011672 713327 26.646 0.275 41.877418 -73.764441 +12515 1549 616 12904933 116045 4.983 0.045 41.684774 -74.064840 +12516 1833 1018 39459703 1119495 15.235 0.432 42.106275 -73.563583 +12517 509 292 27089241 40338 10.459 0.016 42.114296 -73.507454 +12518 5870 2494 25591374 305894 9.881 0.118 41.416157 -74.043064 +12520 3109 1311 10238545 58816 3.953 0.023 41.428017 -73.996195 +12521 1644 1130 85181270 813505 32.889 0.314 42.171335 -73.650487 +12522 5172 2369 96671668 1148145 37.325 0.443 41.715067 -73.599402 +12523 1798 1014 56693421 478469 21.889 0.185 42.086878 -73.759502 +12524 15598 6369 42002747 503186 16.217 0.194 41.529535 -73.890419 +12525 3311 1516 60890860 922850 23.510 0.356 41.691551 -74.188198 +12526 3686 1862 82927404 416933 32.018 0.161 42.122234 -73.858769 +12527 147 62 402995 0 0.156 0.000 41.519426 -73.935670 +12528 13344 5454 106793691 1667175 41.233 0.644 41.722054 -74.009482 +12529 2859 1908 170926882 2511224 65.995 0.970 42.198740 -73.542728 +12530 124 65 900455 0 0.348 0.000 42.207467 -73.687763 +12531 3601 1450 45311426 2606887 17.495 1.007 41.540555 -73.671671 +12533 25307 9222 125881545 1960407 48.603 0.757 41.561643 -73.787605 +12534 17867 8716 225343752 3146261 87.006 1.215 42.217345 -73.752256 +12538 14578 5674 68315753 514961 26.377 0.199 41.792345 -73.893141 +12540 7802 2785 88356663 776738 34.115 0.300 41.671202 -73.724891 +12542 5913 2436 37073189 516313 14.314 0.199 41.613876 -74.015014 +12543 3001 1178 29725867 1596747 11.477 0.617 41.495540 -74.173101 +12545 4763 2431 140368268 2074452 54.196 0.801 41.782912 -73.669343 +12546 3039 1642 118132331 1306106 45.611 0.504 41.948000 -73.523357 +12547 2891 1174 26804787 452325 10.349 0.175 41.660687 -73.986567 +12548 1494 597 15205630 538480 5.871 0.208 41.657701 -74.101802 +12549 10201 3704 100515697 1355805 38.809 0.523 41.528031 -74.259365 +12550 54447 20342 89919649 3002177 34.718 1.159 41.539574 -74.057223 +12553 24438 9650 63896350 2362435 24.671 0.912 41.455714 -74.074901 +12561 18308 6733 154097024 2195836 59.497 0.848 41.759307 -74.096058 +12563 8084 2600 59105048 1405403 22.821 0.543 41.499189 -73.587226 +12564 7338 3052 105193151 1525869 40.615 0.589 41.582617 -73.582587 +12565 1487 705 3758959 113677 1.451 0.044 42.247128 -73.647638 +12566 10753 4322 140847882 543819 54.382 0.210 41.633519 -74.319661 +12567 2854 1579 118836781 1493278 45.883 0.577 41.986196 -73.642221 +12569 9826 4086 85571044 1448490 33.039 0.559 41.734557 -73.792840 +12570 7699 2662 55711916 689352 21.510 0.266 41.626321 -73.675662 +12571 9918 4548 150018905 1682551 57.923 0.650 42.002775 -73.809608 +12572 9123 4376 130943241 2525703 50.557 0.975 41.924885 -73.863664 +12574 329 189 1304571 0 0.504 0.000 41.917688 -73.945658 +12575 2258 781 25622807 657877 9.893 0.254 41.466705 -74.178871 +12577 2029 700 15203799 408016 5.870 0.158 41.424040 -74.122142 +12578 2411 979 40541503 428467 15.653 0.165 41.809125 -73.795859 +12580 4402 1844 55835535 598407 21.558 0.231 41.863649 -73.871534 +12581 2246 1231 104718236 1021190 40.432 0.394 41.901879 -73.700652 +12582 6191 1420 33105980 1043487 12.782 0.403 41.544293 -73.738443 +12583 2451 1084 33717176 211480 13.018 0.082 42.063367 -73.868652 +12585 885 335 12748970 204004 4.922 0.079 41.726404 -73.691510 +12586 12540 4740 61415272 1029698 23.713 0.398 41.562764 -74.170102 +12589 17228 5192 148535998 3334249 57.350 1.287 41.623791 -74.158771 +12590 35102 13905 89249211 1382142 34.459 0.534 41.592556 -73.886853 +12592 1486 653 48443596 598767 18.704 0.231 41.802074 -73.578624 +12594 4275 1692 62322881 1600457 24.063 0.618 41.684401 -73.557677 +12601 43398 17530 48707908 694108 18.806 0.268 41.701908 -73.911521 +12603 42810 16411 83725860 601969 32.327 0.232 41.675868 -73.864484 +12604 586 2 255320 0 0.099 0.000 41.688266 -73.892260 +12701 11324 6521 148945075 3585248 57.508 1.384 41.650261 -74.700396 +12719 1207 738 44632414 1147677 17.233 0.443 41.498250 -74.904285 +12720 172 151 33270953 1346408 12.846 0.520 41.645848 -74.907849 +12721 6627 2756 65672753 262339 25.356 0.101 41.581723 -74.422422 +12722 158 77 720906 0 0.278 0.000 41.590634 -74.374304 +12723 1826 1105 81985907 1297012 31.655 0.501 41.753100 -74.987694 +12724 245 189 19570755 1404 7.556 0.001 41.837621 -74.958711 +12725 277 314 175563256 268136 67.785 0.104 41.983131 -74.569700 +12726 1162 811 75838745 1681429 29.282 0.649 41.708209 -75.017203 +12729 1874 865 57485832 895285 22.195 0.346 41.475792 -74.623499 +12732 786 582 64922639 1967789 25.067 0.760 41.551929 -74.874588 +12733 1446 710 13190880 115040 5.093 0.044 41.724769 -74.617933 +12734 867 555 35669164 94065 13.772 0.036 41.734585 -74.750460 +12736 118 123 15763379 998 6.086 0.000 41.852843 -75.021754 +12737 1910 1242 92723187 6011768 35.801 2.321 41.501481 -74.798632 +12738 320 189 16988123 122383 6.559 0.047 41.676179 -74.586120 +12740 1886 1148 192577672 2721720 74.355 1.051 41.938918 -74.433956 +12741 351 230 21362293 316590 8.248 0.122 41.839141 -75.077725 +12742 181 131 5568508 20998 2.150 0.008 41.724328 -74.723518 +12743 389 333 21217377 1613736 8.192 0.623 41.548639 -74.831043 +12745 178 100 4161115 0 1.607 0.000 41.783433 -75.024648 +12746 937 400 36728527 837301 14.181 0.323 41.442383 -74.656826 +12747 1714 920 36139531 1169949 13.954 0.452 41.750928 -74.692894 +12748 2076 1160 56792304 398264 21.928 0.154 41.774642 -74.922609 +12749 300 439 7618590 66913 2.942 0.026 41.695254 -74.841166 +12750 187 120 11019331 571521 4.255 0.221 41.729237 -74.967508 +12751 1054 516 8850777 1203793 3.417 0.465 41.695871 -74.664427 +12752 242 248 4487698 365223 1.733 0.141 41.680039 -74.994190 +12754 7221 3915 68832503 457218 26.576 0.177 41.799066 -74.736412 +12758 4042 2902 394711185 3686289 152.399 1.423 41.940283 -74.739118 +12759 1649 1489 16019879 574943 6.185 0.222 41.781730 -74.658853 +12760 482 592 109596902 1044381 42.316 0.403 41.903930 -75.107835 +12762 512 279 16425311 1269555 6.342 0.490 41.664364 -74.792204 +12763 942 699 36955489 459645 14.269 0.177 41.676348 -74.522774 +12764 1802 1361 154042083 4610051 59.476 1.780 41.591553 -74.995556 +12765 885 419 32358677 122187 12.494 0.047 41.852332 -74.621157 +12766 437 296 20816277 13955 8.037 0.005 41.815208 -74.978854 +12767 126 81 7657508 40778 2.957 0.016 41.838093 -74.994415 +12768 1131 912 90234888 1349859 34.840 0.521 41.864443 -74.730022 +12769 253 164 12781739 0 4.935 0.000 41.657943 -74.467280 +12770 296 193 11652326 709961 4.499 0.274 41.449112 -74.843115 +12771 14511 6165 89661260 1948412 34.618 0.752 41.374380 -74.624279 +12775 2297 1557 27151049 2812798 10.483 1.086 41.615654 -74.592331 +12776 2180 2034 284054836 3539018 109.674 1.366 41.963382 -74.958681 +12777 764 536 136637261 3712633 52.756 1.433 41.561802 -74.709618 +12778 633 1064 14797059 289051 5.713 0.112 41.642678 -74.817550 +12779 2460 1489 22232718 950536 8.584 0.367 41.702466 -74.632195 +12780 2312 1102 61706612 1855552 23.825 0.716 41.440142 -74.727343 +12781 307 168 11051465 0 4.267 0.000 41.619677 -74.466384 +12783 1668 1308 86119538 2839651 33.251 1.096 41.738633 -74.833724 +12784 94 59 5854688 17004 2.261 0.007 41.669877 -74.638240 +12785 1024 460 43164075 2315153 16.666 0.894 41.532391 -74.561271 +12786 665 811 38752747 7226293 14.963 2.790 41.638630 -74.857203 +12787 452 256 9090606 4208 3.510 0.002 41.795396 -74.845023 +12788 2908 1373 60861148 548118 23.499 0.212 41.787539 -74.589314 +12789 1838 1564 24837343 351186 9.590 0.136 41.704127 -74.571025 +12790 4518 3048 114989586 4913713 44.398 1.897 41.592121 -74.517603 +12791 737 417 16984129 25567 6.558 0.010 41.817275 -74.892870 +12792 335 230 8783380 6194 3.391 0.002 41.513920 -74.959820 +12801 14707 7112 10226789 358646 3.949 0.138 43.311160 -73.645286 +12803 7567 3272 15328805 1268109 5.918 0.490 43.290078 -73.629363 +12804 26540 11902 137536468 5888953 53.103 2.274 43.340954 -73.685911 +12808 306 626 57457280 7381139 22.184 2.850 43.760148 -73.715618 +12809 3528 1759 131112433 3340957 50.623 1.290 43.237078 -73.454506 +12810 627 363 171986539 2953833 66.404 1.140 43.491968 -73.985941 +12811 127 65 4458806 0 1.722 0.000 43.605465 -74.028328 +12812 150 324 160448216 11741977 61.949 4.534 43.875794 -74.389767 +12814 1574 1822 117848404 849011 45.502 0.328 43.624539 -73.636202 +12815 871 1112 94772411 7707307 36.592 2.976 43.695952 -73.667874 +12816 4610 2400 163571713 1063436 63.155 0.411 43.044236 -73.382032 +12817 2274 2164 138758721 5656000 53.575 2.184 43.639585 -73.823628 +12819 403 247 75047529 1202575 28.976 0.464 43.590870 -73.468547 +12821 2750 141 14369840 158825 5.548 0.061 43.453564 -73.415995 +12822 6200 3110 170474238 3745524 65.820 1.446 43.228513 -73.922216 +12823 238 152 11034861 209331 4.261 0.081 43.179961 -73.409117 +12824 894 868 39273408 1260401 15.164 0.487 43.524757 -73.727177 +12827 3877 1860 319466275 4006896 123.347 1.547 43.460929 -73.529859 +12828 9448 3921 119981527 3634806 46.325 1.403 43.254993 -73.558355 +12831 17416 6748 173966676 2568303 67.169 0.992 43.195329 -73.691811 +12832 7106 3164 208192313 1646167 80.384 0.636 43.358467 -73.330271 +12833 4401 1833 91286323 393998 35.246 0.152 43.150000 -73.840896 +12834 6594 2914 224494051 2468500 86.678 0.953 43.094213 -73.500556 +12835 2603 2865 252273569 5089050 97.403 1.965 43.332745 -74.006336 +12836 574 731 113827959 1218492 43.949 0.470 43.712340 -73.605592 +12837 857 367 38317817 445621 14.795 0.172 43.476445 -73.255601 +12838 608 262 13159674 5586 5.081 0.002 43.329069 -73.404949 +12839 13588 5899 84244822 557730 32.527 0.215 43.354486 -73.553953 +12841 77 326 43945319 105970 16.967 0.041 43.605595 -73.533429 +12842 1166 1499 491170981 25654780 189.642 9.905 43.738345 -74.367058 +12843 600 421 151715893 1554764 58.578 0.600 43.565104 -73.972748 +12844 199 352 7089980 0 2.737 0.000 43.489396 -73.621194 +12845 4842 3744 114704533 787124 44.288 0.304 43.424048 -73.712740 +12846 3298 2106 150632234 3025615 58.159 1.168 43.345954 -73.789719 +12847 605 1316 1141125958 98234557 440.591 37.929 44.008384 -74.609231 +12849 385 159 7043412 28971 2.719 0.011 43.449567 -73.298320 +12850 2835 1390 121116231 2286569 46.763 0.883 43.102616 -73.981441 +12851 366 350 287843673 6315597 111.137 2.438 43.841891 -74.034467 +12852 436 692 316595914 13755025 122.238 5.311 43.936189 -74.163697 +12853 1770 1230 225188658 3765949 86.946 1.454 43.657786 -74.065037 +12855 259 300 471847623 8333748 182.181 3.218 44.027010 -73.758053 +12856 187 261 164699955 2777920 63.591 1.073 43.665940 -74.142961 +12857 498 494 111194421 1426818 42.932 0.551 43.819563 -73.890620 +12858 59 288 25343723 3748905 9.785 1.447 43.908933 -73.675780 +12859 2220 899 57024807 150828 22.017 0.058 43.171875 -73.920872 +12860 748 510 41666976 555306 16.088 0.214 43.757003 -73.843348 +12861 609 674 84928002 1465753 32.791 0.566 43.746887 -73.417527 +12862 17 29 6029642 519198 2.328 0.200 43.685403 -73.910321 +12863 533 247 9307447 0 3.594 0.000 43.060377 -73.931904 +12864 36 150 540542 0 0.209 0.000 43.727310 -74.305442 +12865 3663 1819 187378618 892399 72.347 0.345 43.214159 -73.347451 +12866 36915 17843 173572752 10608102 67.017 4.096 43.073715 -73.740236 +12870 1509 1765 276867285 18310301 106.899 7.070 43.830056 -73.761222 +12871 4084 1764 77071744 2195297 29.758 0.848 43.088569 -73.612965 +12872 31 60 790310 0 0.305 0.000 43.874656 -73.734418 +12873 736 406 54696406 569 21.118 0.000 43.117451 -73.311646 +12874 142 410 55472480 796414 21.418 0.307 43.690560 -73.549746 +12878 719 565 221646020 2699541 85.578 1.042 43.415025 -74.027450 +12883 5025 2900 206813734 5119218 79.851 1.977 43.836623 -73.552805 +12884 486 201 1290125 0 0.498 0.000 43.088396 -73.591291 +12885 4602 2463 186019419 4924927 71.823 1.902 43.523052 -73.806561 +12886 269 195 37497688 137940 14.478 0.053 43.682704 -73.934660 +12887 4972 2391 216721070 2581093 83.676 0.997 43.536760 -73.365798 +12901 33439 14456 196711665 1925075 75.951 0.743 44.704021 -73.471148 +12903 1217 649 1496374 6877 0.578 0.003 44.680303 -73.445883 +12910 2148 874 168194247 923425 64.940 0.357 44.855031 -73.636413 +12911 36 19 224627 131066 0.087 0.051 44.521440 -73.460805 +12912 1998 1241 234063678 11339146 90.372 4.378 44.480950 -73.772496 +12913 1157 646 70246208 5760885 27.122 2.224 44.430097 -74.002212 +12914 1044 421 82617750 425162 31.899 0.164 44.927419 -74.602942 +12916 2135 935 107389627 35657 41.463 0.014 44.834052 -74.515665 +12917 1403 609 111572726 0 43.078 0.000 44.927638 -74.178909 +12918 2381 1023 101768931 1075303 39.293 0.415 44.700736 -73.676657 +12919 3037 1514 99475036 801087 38.408 0.309 44.964535 -73.447082 +12920 2842 1544 240332312 3260016 92.793 1.259 44.882768 -74.066012 +12921 2410 1194 86036723 363044 33.219 0.140 44.891337 -73.438073 +12922 65 150 113875937 3637443 43.968 1.404 44.286614 -74.702114 +12923 632 344 135679160 75209 52.386 0.029 44.960311 -73.939425 +12924 158 75 7051378 196494 2.723 0.076 44.481354 -73.580617 +12926 2208 999 125565670 54989 48.481 0.021 44.950817 -74.328997 +12927 224 580 286462874 34203057 110.604 13.206 44.207326 -74.809703 +12928 2028 1117 195534606 2201775 75.496 0.850 43.963848 -73.583301 +12929 3938 510 3083885 0 1.191 0.000 44.720027 -73.719234 +12930 634 367 93669930 195597 36.166 0.076 44.720458 -74.543229 +12932 1236 806 165054727 2025047 63.728 0.782 44.214880 -73.610200 +12933 17 7 70856 0 0.027 0.000 44.890994 -73.845341 +12934 1074 506 152424209 54712 58.851 0.021 44.875311 -73.873753 +12935 1748 960 255406522 9100083 98.613 3.514 44.844657 -73.796933 +12936 599 539 79797317 246063 30.810 0.095 44.285062 -73.401450 +12937 1572 718 84759742 11744 32.726 0.005 44.960847 -74.478455 +12939 205 97 10712786 57867 4.136 0.022 44.432955 -74.160828 +12941 1428 941 104831845 718113 40.476 0.277 44.348458 -73.705667 +12942 646 589 137102053 316872 52.935 0.122 44.232563 -73.827579 +12943 459 603 266782108 1434185 103.005 0.554 44.122758 -73.883516 +12944 4080 2151 233415227 4819477 90.122 1.861 44.442367 -73.514751 +12945 638 611 86008134 18693727 33.208 7.218 44.309091 -74.240440 +12946 5492 3694 335263968 10506291 129.446 4.057 44.206113 -74.046280 +12950 929 425 122090752 366605 47.140 0.142 44.318369 -73.581246 +12952 546 392 74692925 0 28.839 0.000 44.708318 -73.905659 +12953 15836 5610 544978529 11224205 210.417 4.334 44.745188 -74.260113 +12955 381 361 79475690 10522730 30.686 4.063 44.806650 -73.970421 +12956 1259 547 23339134 475627 9.011 0.184 44.097612 -73.481333 +12957 1726 791 82758629 0 31.953 0.000 44.848323 -74.574604 +12958 1929 864 96217850 357588 37.150 0.138 44.960855 -73.572178 +12959 1369 636 100049168 261371 38.629 0.101 44.952351 -73.719912 +12960 1148 538 78741370 906675 30.402 0.350 44.015756 -73.572348 +12961 180 88 10361538 0 4.001 0.000 44.057111 -73.549539 +12962 5499 2283 111388378 1070268 43.007 0.413 44.701391 -73.605439 +12964 161 140 89349554 1836919 34.498 0.709 44.125919 -73.626721 +12965 516 226 24695575 63924 9.535 0.025 44.703456 -74.685289 +12966 2915 1305 223147842 174302 86.158 0.067 44.798893 -74.418686 +12967 1223 495 97402414 83171 37.607 0.032 44.774921 -74.657566 +12969 423 549 255505860 4808511 98.651 1.857 44.710879 -74.098205 +12970 963 296 130223819 9345884 50.280 3.608 44.478136 -74.307514 +12972 6364 2619 214262312 1511191 82.727 0.583 44.554081 -73.569296 +12973 187 136 92427930 3114229 35.687 1.202 44.287677 -74.594706 +12974 1599 838 20815331 37694 8.037 0.015 44.060141 -73.464831 +12975 265 170 7385720 0 2.852 0.000 44.529091 -73.430536 +12976 260 246 99378671 3101939 38.370 1.198 44.520475 -74.213593 +12977 1753 61 23166590 290683 8.945 0.112 44.277015 -74.072971 +12978 403 161 6769081 0 2.614 0.000 44.616360 -73.808712 +12979 2304 1175 8804362 0 3.399 0.000 44.991653 -73.373373 +12980 1304 1259 662489149 8880178 255.789 3.429 44.563851 -74.524079 +12981 2253 1080 274546708 2005451 106.003 0.774 44.627097 -73.845850 +12983 7494 4840 545251438 53331721 210.523 20.591 44.286420 -74.171593 +12985 1072 481 143316060 665874 55.335 0.257 44.560709 -73.738967 +12986 6120 3741 585953923 61745161 226.238 23.840 44.226011 -74.480931 +12987 201 142 16055169 38405 6.199 0.015 44.320841 -73.753460 +12989 1010 863 382676633 7289385 147.752 2.814 44.520107 -74.069770 +12992 4778 2046 164634896 331200 63.566 0.128 44.817451 -73.517698 +12993 1623 1197 186644554 612822 72.064 0.237 44.211345 -73.476221 +12996 2086 1650 131811853 2260753 50.893 0.873 44.355279 -73.448053 +12997 1239 827 168962963 602556 65.237 0.233 44.372798 -73.892043 +12998 526 262 31177925 319714 12.038 0.123 44.077800 -73.576545 +13020 150 54 1211234 0 0.468 0.000 42.816424 -76.074504 +13021 39506 18525 311324723 577631 120.203 0.223 42.922279 -76.558539 +13024 1733 0 107576 0 0.042 0.000 42.934596 -76.574232 +13026 1914 917 72911005 39923 28.151 0.015 42.744043 -76.652266 +13027 31637 13717 176272751 4807535 68.059 1.856 43.166437 -76.364345 +13028 1350 817 48400493 781132 18.688 0.302 43.301187 -75.926835 +13029 7109 2999 45892381 992796 17.719 0.383 43.225942 -76.151343 +13030 3892 1845 34495568 227742 13.319 0.088 43.152233 -75.962695 +13031 15551 6730 62949560 25879 24.305 0.010 43.044464 -76.310286 +13032 12790 5785 211148666 225951 81.525 0.087 43.081629 -75.766050 +13033 3556 1492 159671235 1329876 61.649 0.513 43.188494 -76.562626 +13034 1989 1089 62926173 243140 24.296 0.094 42.961986 -76.711189 +13035 8617 3542 193709202 5066142 74.792 1.956 42.940856 -75.830147 +13036 8680 3723 126354465 1266904 48.786 0.489 43.309256 -76.166775 +13037 8897 3727 105984908 234737 40.921 0.091 43.062303 -75.855983 +13039 17537 6805 58521744 18438 22.595 0.007 43.172142 -76.056249 +13040 2758 1313 248912987 1373899 96.106 0.530 42.559649 -75.930761 +13041 10705 3992 47296860 1109331 18.261 0.428 43.192089 -76.192302 +13042 2356 1265 86798635 929513 33.513 0.359 43.260450 -75.852580 +13044 2512 1090 71937295 792410 27.775 0.306 43.291249 -75.996241 +13045 30112 12112 276033075 889470 106.577 0.343 42.573807 -76.202102 +13051 153 71 610483 0 0.236 0.000 42.876725 -75.908639 +13052 1679 1104 125504924 2383795 48.458 0.920 42.712310 -75.865194 +13053 5015 2084 85939700 660726 33.182 0.255 42.479574 -76.267919 +13054 1582 633 57244069 469494 22.102 0.181 43.169352 -75.666823 +13057 14992 6828 72130925 553525 27.850 0.214 43.101955 -76.037919 +13060 2806 1191 41419807 46324 15.992 0.018 43.022862 -76.411872 +13061 1040 754 67308609 2528909 25.988 0.976 42.871851 -75.762082 +13062 173 87 467202 16917 0.180 0.007 42.484095 -76.384376 +13063 1898 719 90064298 272669 34.774 0.105 42.847849 -75.977961 +13064 64 122 459975 2948338 0.178 1.138 43.328996 -76.711915 +13066 12390 5551 38779103 757897 14.973 0.293 43.032475 -76.000667 +13068 5368 2281 132436583 814774 51.134 0.315 42.492431 -76.359199 +13069 24931 10482 277685461 9567052 107.215 3.694 43.329278 -76.380658 +13071 1023 430 64278146 65138 24.818 0.025 42.675103 -76.542586 +13072 1123 482 121858807 46852 47.050 0.018 42.762210 -75.763989 +13073 6423 2620 142190941 305530 54.900 0.118 42.583670 -76.387923 +13074 4488 1808 109971697 443363 42.460 0.171 43.310917 -76.549843 +13076 2393 918 39649587 18971 15.309 0.007 43.353717 -76.149319 +13077 6735 2948 182750477 1160209 70.560 0.448 42.727973 -76.211042 +13078 9866 3759 100804191 1199426 38.921 0.463 42.958484 -76.061077 +13080 3631 1772 72665577 6508492 28.056 2.513 43.093210 -76.485258 +13081 1169 671 75001738 30756 28.958 0.012 42.673617 -76.627152 +13082 4871 2099 61047647 1069998 23.571 0.413 43.102730 -75.959888 +13083 1809 825 150207362 166057 57.995 0.064 43.645972 -75.978676 +13084 4409 1876 111384869 29634 43.006 0.011 42.880541 -76.124474 +13087 168 102 529334 437468 0.204 0.169 42.708597 -76.154050 +13088 22156 10664 20613882 26880 7.959 0.010 43.112421 -76.189457 +13090 30124 12364 38997883 341769 15.057 0.132 43.153084 -76.212402 +13092 2606 1097 125679340 285569 48.525 0.110 42.654563 -76.419295 +13101 2508 1059 101286914 14017 39.107 0.005 42.589125 -76.056007 +13102 85 42 150735 2921 0.058 0.001 42.550304 -76.292002 +13103 326 118 885765 37654 0.342 0.015 43.325760 -76.109544 +13104 15567 6296 122382149 107771 47.252 0.042 42.963030 -75.948439 +13108 6175 2557 75560615 74517 29.174 0.029 42.964845 -76.331113 +13110 2338 1274 63645837 27177 24.574 0.010 42.895398 -76.280364 +13111 1700 689 68911379 234920 26.607 0.091 43.258488 -76.614264 +13112 1973 837 52456428 3440394 20.254 1.328 43.106266 -76.417239 +13113 287 103 1345153 0 0.519 0.000 43.162650 -76.538623 +13114 6356 2848 162872189 1891938 62.885 0.730 43.465706 -76.244786 +13115 224 99 1200818 0 0.464 0.000 43.398646 -76.478779 +13116 3457 1457 3421058 0 1.321 0.000 43.074797 -76.007947 +13117 188 85 2109606 0 0.815 0.000 43.009299 -76.707508 +13118 6382 2853 265442135 493369 102.488 0.190 42.755585 -76.387278 +13120 2328 1066 44284159 186204 17.098 0.072 42.933170 -76.175146 +13122 1174 453 48432164 38895 18.700 0.015 42.841182 -75.856505 +13123 314 170 6128027 0 2.366 0.000 43.233564 -75.769068 +13124 124 74 12135105 13637 4.685 0.005 42.661074 -75.823604 +13126 37205 15047 260997454 26021822 100.772 10.047 43.438798 -76.457454 +13131 3895 1580 137091413 416153 52.931 0.161 43.423243 -76.091802 +13132 4244 1780 61449007 1053733 23.726 0.407 43.271927 -76.251046 +13134 119 51 213790 0 0.083 0.000 42.967368 -75.684678 +13135 6617 2785 82736732 2990577 31.945 1.155 43.253687 -76.314375 +13136 534 286 48279592 23754 18.641 0.009 42.614098 -75.844788 +13138 61 25 102864 0 0.040 0.000 42.899087 -76.014634 +13140 4488 1957 135382944 4235923 52.272 1.635 43.060381 -76.650274 +13141 596 284 33939704 142894 13.104 0.055 42.752495 -76.185697 +13142 6451 3449 182678294 11761582 70.532 4.541 43.554899 -76.137872 +13143 2873 1199 111879849 1594678 43.197 0.616 43.235788 -76.714793 +13144 1531 843 99528004 1868541 38.428 0.721 43.568747 -75.977023 +13145 1926 1238 43217548 253038 16.686 0.098 43.650319 -76.119141 +13146 2443 960 140845258 1097616 54.381 0.424 43.085645 -76.750191 +13147 1281 506 92942861 18808 35.885 0.007 42.775406 -76.569608 +13148 10750 5188 155557345 8449111 60.061 3.262 42.914872 -76.783434 +13152 7941 4281 167464813 122084 64.659 0.047 42.890839 -76.372620 +13153 399 167 2316193 0 0.894 0.000 42.996557 -76.453627 +13155 663 327 52969188 138683 20.452 0.054 42.674546 -75.776726 +13156 2000 1315 77622264 3051023 29.970 1.178 43.325994 -76.661304 +13157 695 754 1436842 151905 0.555 0.059 43.206652 -75.721431 +13158 1855 815 184818311 222904 71.359 0.086 42.696935 -75.951068 +13159 5184 2238 202266690 3230886 78.096 1.247 42.802768 -76.111769 +13160 2027 946 55111472 46723 21.279 0.018 42.827598 -76.648904 +13162 385 325 4552385 56994 1.758 0.022 43.185045 -75.714741 +13163 339 146 1372678 18713 0.530 0.007 43.079679 -75.710522 +13164 2338 852 27779643 22712 10.726 0.009 43.096891 -76.312578 +13165 10741 4640 176074241 849128 67.983 0.328 42.916639 -76.883297 +13166 5610 2354 105720651 2064707 40.819 0.797 43.071922 -76.556820 +13167 3342 1479 88385560 449444 34.126 0.174 43.326421 -76.060260 +13202 5438 2594 2583576 0 0.998 0.000 43.043781 -76.150639 +13203 16029 8328 4402313 0 1.700 0.000 43.061111 -76.134924 +13204 19931 9681 11416575 96435 4.408 0.037 43.050817 -76.177473 +13205 19201 8693 8934477 0 3.450 0.000 43.005276 -76.142030 +13206 16443 8401 10226509 0 3.948 0.000 43.073466 -76.105820 +13207 13897 6070 8003301 121463 3.090 0.047 43.012868 -76.163401 +13208 22854 10211 10810716 0 4.174 0.000 43.078768 -76.145229 +13209 13243 6104 32949932 287324 12.722 0.111 43.068502 -76.224251 +13210 27606 8905 11826334 7491 4.566 0.003 43.031189 -76.127021 +13211 6517 2820 12198995 0 4.710 0.000 43.103572 -76.119484 +13212 20356 9118 27434413 3219 10.592 0.001 43.129697 -76.130154 +13214 8793 3327 9467889 20027 3.656 0.008 43.038709 -76.075591 +13215 15245 5653 87896162 112676 33.937 0.044 42.980793 -76.223386 +13219 15363 6781 12845078 49323 4.960 0.019 43.041266 -76.224195 +13224 8891 3968 7716206 0 2.979 0.000 43.037163 -76.102900 +13290 0 0 628183 30039 0.243 0.012 43.069136 -76.173017 +13301 98 147 6327547 423296 2.443 0.163 43.416050 -75.218175 +13302 1610 954 114374628 4436955 44.160 1.713 43.498110 -75.965068 +13303 1153 529 91659582 63556 35.390 0.025 43.367414 -75.468212 +13304 1684 764 45027709 603754 17.385 0.233 43.243880 -75.160287 +13305 293 111 2484758 0 0.959 0.000 43.892289 -75.421171 +13308 3625 1627 100115979 1716710 38.655 0.663 43.251266 -75.657668 +13309 5889 2818 376736298 1885156 145.459 0.728 43.452005 -75.355443 +13310 624 302 19620637 238378 7.576 0.092 42.889620 -75.571545 +13312 331 714 165097466 2623792 63.744 1.013 43.697077 -75.194701 +13313 526 230 5829804 0 2.251 0.000 42.880221 -75.272902 +13314 443 193 10036669 54450 3.875 0.021 42.816533 -75.319104 +13315 1419 718 127161872 439280 49.097 0.170 42.744144 -75.143611 +13316 6460 3021 420190728 717952 162.237 0.277 43.418917 -75.739740 +13317 3784 1722 119453916 1531432 46.121 0.591 42.854095 -74.590835 +13318 1325 522 65741288 29950 25.383 0.012 42.920182 -75.261538 +13319 1079 461 2295989 0 0.886 0.000 43.026436 -75.266925 +13320 2018 1190 199072520 380904 76.862 0.147 42.777805 -74.740798 +13321 1049 527 2089622 43875 0.807 0.017 43.087779 -75.370635 +13322 1076 574 31461243 132467 12.147 0.051 42.954345 -75.201657 +13323 11323 4459 98527749 88820 38.042 0.034 43.039976 -75.379366 +13324 2149 1438 309102925 11336698 119.345 4.377 43.325878 -74.966657 +13325 866 619 200439390 110658 77.390 0.043 43.582829 -75.527092 +13326 5561 3414 247054484 1647193 95.388 0.636 42.722511 -74.895371 +13327 2056 1217 345561793 6744210 133.422 2.604 43.972929 -75.262309 +13328 1267 548 41087158 0 15.864 0.000 42.985096 -75.429027 +13329 3889 1905 137117675 1222301 52.941 0.472 43.110979 -74.703510 +13331 189 919 208926889 12103204 80.667 4.673 43.866311 -74.880884 +13332 2460 1149 127381600 379821 49.182 0.147 42.764187 -75.581764 +13333 62 30 4404887 7598 1.701 0.003 42.836995 -74.818644 +13334 1374 846 75341782 1444363 29.090 0.558 42.827039 -75.656427 +13335 1590 686 98817757 97567 38.154 0.038 42.702260 -75.248224 +13337 790 438 47908553 300099 18.498 0.116 42.757804 -74.999545 +13338 1206 1567 629607816 14073530 243.093 5.434 43.510379 -74.982347 +13339 6941 2943 280178936 2253643 108.178 0.870 42.936896 -74.658660 +13340 8205 3499 149893995 834675 57.874 0.322 43.061642 -75.128570 +13341 102 40 476975 0 0.184 0.000 43.036086 -75.396891 +13342 165 88 20565960 145521 7.941 0.056 42.654143 -75.195234 +13343 1658 1164 145505915 2471472 56.180 0.954 43.751239 -75.311500 +13345 177 93 12791341 42214 4.939 0.016 43.687108 -75.321254 +13346 6735 2413 97926856 2676622 37.810 1.033 42.818504 -75.542907 +13348 1469 760 95759954 172530 36.973 0.067 42.709982 -75.066926 +13350 10093 4568 78789789 1428300 30.421 0.551 43.061160 -75.000618 +13352 65 33 434504 43070 0.168 0.017 43.313337 -75.116208 +13353 86 289 512594477 9624966 197.914 3.716 43.447326 -74.694618 +13354 3342 1369 134889972 139987 52.081 0.054 43.265093 -75.268497 +13355 905 381 75387380 35945 29.107 0.014 42.809841 -75.430434 +13357 11096 4885 81693149 368830 31.542 0.142 42.970962 -75.081183 +13360 333 1010 159703716 10137325 61.662 3.914 43.721790 -74.714836 +13361 824 328 73361022 6520 28.325 0.003 42.904352 -74.867560 +13362 60 21 714898 0 0.276 0.000 42.982178 -75.522003 +13363 2315 999 54876360 117109 21.188 0.045 43.324528 -75.513109 +13364 243 111 7656967 0 2.956 0.000 42.804977 -75.261071 +13365 8906 4424 347301945 4124737 134.094 1.593 43.125689 -74.853291 +13367 8830 4313 1174248862 45809018 453.380 17.687 43.757731 -75.532709 +13368 1118 632 118061419 2740664 45.584 1.058 43.638483 -75.286787 +13402 1534 714 65747343 281796 25.385 0.109 42.892391 -75.500514 +13403 7372 1697 69169426 960031 26.706 0.371 43.164533 -75.267645 +13404 236 93 7631020 0 2.946 0.000 43.736385 -75.471758 +13406 725 338 28257173 170269 10.910 0.066 43.134514 -74.924889 +13407 5453 2451 140608069 1368078 54.289 0.528 42.968799 -74.950590 +13408 4280 1188 97444354 320308 37.623 0.124 42.922949 -75.676749 +13409 2374 982 89291631 0 34.476 0.000 42.976461 -75.595139 +13410 241 108 256023 0 0.099 0.000 42.931174 -74.612520 +13411 3264 1627 177298507 742446 68.455 0.287 42.633789 -75.306457 +13413 16135 7198 51509884 180365 19.888 0.070 43.060356 -75.279420 +13415 77 50 5125170 0 1.979 0.000 42.596489 -75.198473 +13416 2271 1021 134693576 916800 52.005 0.354 43.187390 -74.970566 +13417 3305 1851 3377612 0 1.304 0.000 43.100965 -75.293793 +13418 255 106 13509603 953 5.216 0.000 42.845704 -75.380460 +13420 1266 2782 563552446 33412195 217.589 12.901 43.717768 -74.984147 +13421 14125 6209 108799052 211866 42.008 0.082 43.061915 -75.660092 +13424 2725 948 28871889 0 11.147 0.000 43.152368 -75.365215 +13425 1970 857 66154982 28200 25.543 0.011 42.964793 -75.487060 +13428 1635 704 40884211 314040 15.785 0.121 42.915071 -74.546238 +13431 2069 841 95460191 821782 36.857 0.317 43.209082 -75.073328 +13433 1820 852 112948222 2015058 43.610 0.778 43.589518 -75.242417 +13435 286 126 539473 0 0.208 0.000 43.304981 -75.150772 +13436 108 582 99291384 24892701 38.337 9.611 43.811023 -74.666226 +13437 460 721 248962713 1331910 96.125 0.514 43.580307 -75.803859 +13438 3789 2123 222255886 5815346 85.813 2.245 43.354138 -75.159613 +13439 3950 2337 223035886 1385563 86.115 0.535 42.857316 -74.995275 +13440 42986 18723 292348383 3634457 112.876 1.403 43.215771 -75.461779 +13441 51 15 9300659 0 3.591 0.000 43.226377 -75.408248 +13450 104 59 6166082 0 2.381 0.000 42.701925 -74.810298 +13452 4629 2096 197621769 2065756 76.302 0.798 43.043056 -74.630470 +13454 826 381 111497849 733374 43.050 0.283 43.219835 -74.757700 +13456 4164 1733 72707011 0 28.072 0.000 43.000029 -75.255495 +13459 2222 1091 131861852 352341 50.912 0.136 42.775005 -74.588674 +13460 4429 2039 185181562 481807 71.499 0.186 42.687037 -75.442842 +13461 3083 1392 6004726 0 2.318 0.000 43.070467 -75.599126 +13464 1189 592 99315539 158151 38.346 0.061 42.687973 -75.615788 +13468 451 229 25191145 280744 9.726 0.108 42.848254 -74.851925 +13469 847 332 10402989 189652 4.017 0.073 43.214828 -75.302367 +13470 725 607 173305539 4341056 66.914 1.676 43.209651 -74.610052 +13471 3540 1462 243048481 953871 93.842 0.368 43.357597 -75.577397 +13472 310 389 37411807 1100263 14.445 0.425 43.697411 -75.067836 +13473 766 463 119488091 434983 46.135 0.168 43.642941 -75.446375 +13475 28 16 39136 0 0.015 0.000 42.893741 -74.830529 +13476 3032 1364 55311988 28029 21.356 0.011 43.087503 -75.509514 +13477 1452 593 52448071 0 20.250 0.000 43.032894 -75.512948 +13478 3083 1286 92687502 22690 35.787 0.009 43.144012 -75.581897 +13480 3532 1492 139209433 464779 53.749 0.179 42.917856 -75.363163 +13483 256 118 17921423 213418 6.920 0.082 43.397335 -75.826061 +13484 176 74 6604476 0 2.550 0.000 42.866325 -75.659190 +13485 1132 545 114400134 414878 44.170 0.160 42.787528 -75.315224 +13486 815 368 76274708 8974835 29.450 3.465 43.345147 -75.344599 +13488 98 77 10837468 39386 4.184 0.015 42.688638 -74.750589 +13489 658 316 110591130 1302775 42.699 0.503 43.460774 -75.552463 +13490 1361 549 30647149 0 11.833 0.000 43.110080 -75.426511 +13491 3641 1607 187384011 125325 72.349 0.048 42.864135 -75.168133 +13492 11596 5173 39055977 8688 15.080 0.003 43.114604 -75.337680 +13493 2070 945 193054522 9506121 74.539 3.670 43.432843 -75.897509 +13494 314 608 45348993 1057533 17.509 0.408 43.532529 -75.141288 +13495 2144 1037 2260355 0 0.873 0.000 43.110890 -75.277497 +13501 38546 16932 22659189 152592 8.749 0.059 43.081283 -75.225833 +13502 33257 15249 139242008 1087841 53.762 0.420 43.141264 -75.154707 +13601 38158 16971 364423614 7133271 140.705 2.754 43.968892 -75.906501 +13602 3881 120 25250353 641363 9.749 0.248 44.066533 -75.778311 +13603 9760 3233 14130091 82655 5.456 0.032 44.035974 -75.793813 +13605 4777 2279 209099378 1574238 80.734 0.608 43.807294 -76.050285 +13606 2716 1093 91026778 380910 35.146 0.147 43.872567 -76.014721 +13607 1822 1812 46173096 585380 17.828 0.226 44.298512 -75.935736 +13608 1719 708 102578820 1366640 39.606 0.528 44.254686 -75.615340 +13612 2852 1197 45983348 515146 17.754 0.199 43.985237 -75.769370 +13613 2726 1224 215757308 2096411 83.304 0.809 44.870613 -74.750443 +13614 357 171 23220973 0 8.966 0.000 44.530892 -75.691167 +13615 1271 520 9941600 9796 3.838 0.004 44.029103 -75.988503 +13616 1880 815 14357373 4035 5.543 0.002 44.030078 -75.857573 +13617 11299 3836 330709940 2838508 127.688 1.096 44.580531 -75.142767 +13618 1711 2414 130439071 7171060 50.363 2.769 44.114766 -76.290981 +13619 10901 4688 282333950 4770902 109.010 1.842 43.978952 -75.600977 +13620 2197 855 119857295 1000031 46.277 0.386 43.908782 -75.448325 +13621 650 338 70465456 2135833 27.207 0.825 44.833691 -75.080272 +13622 2432 1478 150678056 3587339 58.177 1.385 44.099234 -76.109305 +13623 49 91 1026859 0 0.396 0.000 44.449786 -75.752462 +13624 5457 3582 164245713 2226689 63.416 0.860 44.209480 -76.093055 +13625 1868 1151 143347678 3157275 55.347 1.219 44.538101 -74.928377 +13626 2267 1134 257188888 531722 99.301 0.205 43.830086 -75.734774 +13628 220 99 477227 125023 0.184 0.048 44.030542 -75.682394 +13630 1525 596 124333981 1004645 48.006 0.388 44.498619 -75.311532 +13633 345 190 51297309 2181394 19.806 0.842 44.497430 -75.455993 +13634 3984 2220 114377144 3745814 44.161 1.446 44.011290 -76.073698 +13635 1092 545 143939871 2089646 55.575 0.807 44.286726 -75.280789 +13636 282 112 8304333 0 3.206 0.000 43.743435 -76.116547 +13637 4491 1832 91224000 55143 35.222 0.021 44.106202 -75.818322 +13638 378 164 3160012 232666 1.220 0.090 44.019072 -75.741697 +13639 243 129 50187297 617388 19.377 0.238 44.263676 -75.150529 +13640 271 923 32011485 663410 12.360 0.256 44.303561 -76.028103 +13641 91 288 799487 10869 0.309 0.004 44.273801 -76.003351 +13642 10088 4159 469003445 9782132 181.083 3.777 44.335388 -75.455879 +13643 19 11 93794 0 0.036 0.000 44.031812 -75.717094 +13646 2211 2720 278100662 25963281 107.375 10.024 44.446084 -75.674193 +13647 69 32 236491 0 0.091 0.000 44.605875 -74.980580 +13648 2424 1640 474747890 12506390 183.301 4.829 44.150217 -75.318000 +13650 1391 1536 106864073 5937801 41.260 2.293 43.811310 -76.216091 +13651 127 194 6343483 523634 2.449 0.202 43.866156 -76.176962 +13652 1815 973 172157083 2202224 66.470 0.850 44.432661 -75.186773 +13654 2461 1062 172616477 10369220 66.648 4.004 44.577112 -75.436848 +13655 3512 1365 52372449 5831823 20.221 2.252 44.982056 -74.650084 +13656 2861 1076 220334088 1564162 85.071 0.604 44.192235 -75.955486 +13658 2357 985 203848065 271853 78.706 0.105 44.743083 -75.279399 +13659 593 416 147164928 236943 56.821 0.091 43.738005 -75.863380 +13660 1891 776 139279933 1446813 53.776 0.559 44.773868 -75.160958 +13661 1646 1114 119351259 11565196 46.082 4.465 43.709620 -76.098396 +13662 16582 7608 230103020 16341385 88.843 6.309 44.932334 -74.884038 +13664 399 250 2546420 108304 0.983 0.042 44.584013 -75.645460 +13665 882 440 112287419 525833 43.354 0.203 44.048460 -75.434366 +13666 266 184 101294633 8914206 39.110 3.442 44.218485 -74.926076 +13667 3181 1404 128469111 1077708 49.602 0.416 44.837267 -74.960097 +13668 3329 1463 95191348 3152651 36.754 1.217 44.754954 -74.986314 +13669 16452 7202 264889919 4388473 102.275 1.694 44.672777 -75.482342 +13670 430 398 188239926 2850191 72.680 1.100 44.167379 -75.116735 +13672 602 675 322967505 4443038 124.698 1.715 44.470543 -74.660706 +13673 2249 934 90398991 37921 34.903 0.015 44.164271 -75.717782 +13674 126 54 1469719 51800 0.567 0.020 43.738561 -76.048180 +13675 160 59 2727097 431205 1.053 0.166 44.281718 -75.846286 +13676 16646 5879 413128662 3815937 159.510 1.473 44.654960 -74.926222 +13677 93 34 508885 80224 0.196 0.031 44.512429 -75.179673 +13678 211 107 2033861 100693 0.785 0.039 44.813766 -74.992918 +13679 1853 1612 161820590 13052416 62.479 5.040 44.319891 -75.770605 +13680 1244 505 91021450 872135 35.144 0.337 44.595988 -75.323398 +13681 897 369 87534640 836252 33.797 0.323 44.428046 -75.373133 +13682 877 361 81186315 117423 31.346 0.045 43.843311 -75.901890 +13684 1131 737 408933727 3066887 157.890 1.184 44.356596 -75.013141 +13685 2272 1548 52169184 6065929 20.143 2.342 43.925467 -76.085519 +13687 479 676 348136526 25340053 134.416 9.784 44.432964 -74.836656 +13690 846 561 133748779 2182601 51.641 0.843 44.108365 -74.991203 +13691 3176 1709 187061361 8737619 72.225 3.374 44.227220 -75.773875 +13692 27 299 706798 0 0.273 0.000 44.288793 -76.026292 +13693 503 1117 50147109 4373294 19.362 1.689 43.985747 -76.246105 +13694 1507 777 57885671 1355163 22.350 0.523 44.857601 -75.146018 +13695 134 180 44032191 864198 17.001 0.334 44.102929 -74.922258 +13696 87 49 4823562 0 1.862 0.000 44.694736 -74.888042 +13697 2281 993 169696612 993127 65.520 0.383 44.754714 -74.810347 +13730 2805 1475 126998136 1492096 49.034 0.576 42.223238 -75.532720 +13731 1162 1287 232157250 7892272 89.636 3.047 42.128419 -74.787370 +13732 8153 3291 85342848 2095007 32.951 0.809 42.049447 -76.167535 +13733 5216 2552 234989100 1679915 90.730 0.649 42.301754 -75.479481 +13734 2287 952 93811937 1411041 36.221 0.545 42.069955 -76.409653 +13736 2338 987 157116315 95690 60.663 0.037 42.324084 -76.202038 +13739 953 642 104293437 197255 40.268 0.076 42.349124 -74.789149 +13740 554 507 102484359 128284 39.569 0.050 42.273814 -74.756993 +13743 3806 1659 152074160 264147 58.716 0.102 42.211894 -76.338222 +13744 1137 477 30009539 10155 11.587 0.004 42.243494 -75.907999 +13746 2539 1132 71832143 1250804 27.735 0.483 42.268926 -75.884667 +13748 3800 1657 34292998 1082924 13.241 0.418 42.042579 -75.822521 +13750 1092 640 69718236 423725 26.918 0.164 42.471014 -74.857921 +13751 189 84 5093557 87572 1.967 0.034 42.454193 -74.902857 +13752 782 646 125667120 3630541 48.520 1.402 42.190557 -74.897015 +13753 5848 2272 242736845 1643738 93.721 0.635 42.306960 -74.926915 +13754 3310 2049 206157848 3814187 79.598 1.473 42.088482 -75.447962 +13755 1228 937 148927403 9704875 57.501 3.747 42.055244 -74.966906 +13756 613 582 118825521 1669729 45.879 0.645 42.004099 -75.100670 +13757 1045 643 96343751 224573 37.199 0.087 42.410607 -74.891229 +13760 44264 20765 127378213 1168021 49.181 0.451 42.133387 -76.084713 +13774 201 131 7366066 386637 2.844 0.149 41.960129 -75.149396 +13775 1631 983 137491825 938589 53.086 0.362 42.327910 -75.134017 +13776 513 274 14726344 2152 5.686 0.001 42.470351 -75.332049 +13777 727 299 15589127 0 6.019 0.000 42.258166 -75.989587 +13778 5948 2818 250894158 1304760 96.871 0.504 42.359219 -75.759496 +13780 1045 560 57370528 611866 22.151 0.236 42.422485 -75.476583 +13782 755 566 95072285 246965 36.708 0.095 42.169631 -74.991294 +13783 2670 2113 295976803 13088200 114.277 5.053 41.993662 -75.266006 +13784 172 79 1211396 0 0.468 0.000 42.426878 -76.221343 +13786 464 339 40161145 226223 15.506 0.087 42.440980 -74.693941 +13787 3629 1642 164825142 1204222 63.639 0.465 42.212533 -75.671984 +13788 991 656 91475557 136814 35.319 0.053 42.339032 -74.665791 +13790 19104 9152 75014148 734840 28.963 0.284 42.165361 -76.001942 +13794 105 47 1858219 0 0.717 0.000 42.393236 -76.013719 +13795 3800 1618 52719091 897482 20.355 0.347 42.056638 -75.778938 +13796 1236 635 57779057 418336 22.309 0.162 42.557188 -75.132129 +13797 2250 919 86238872 282995 33.297 0.109 42.333665 -76.040401 +13801 1398 977 177555383 1340825 68.555 0.518 42.505085 -75.776970 +13802 718 284 26042703 56025 10.055 0.022 42.242134 -76.041266 +13803 3975 1690 232334083 766014 89.705 0.296 42.456883 -76.067124 +13804 391 221 39369327 85713 15.201 0.033 42.225702 -75.384220 +13806 205 111 8016591 10715 3.095 0.004 42.375535 -74.957114 +13807 1199 700 61664782 996272 23.809 0.385 42.607461 -74.988235 +13808 1771 917 95308754 173005 36.799 0.067 42.525233 -75.262202 +13809 1517 761 77896815 0 30.076 0.000 42.403813 -75.395542 +13810 1149 661 103672056 474869 40.028 0.183 42.606817 -75.108363 +13811 4354 1859 164294878 291536 63.435 0.113 42.234926 -76.164054 +13812 2348 1011 81768276 2430494 31.571 0.938 42.030060 -76.354752 +13813 977 529 72147918 1722104 27.856 0.665 42.163706 -75.551337 +13815 13999 6554 277767213 1532206 107.247 0.592 42.547866 -75.530855 +13820 22455 8840 277908485 1148710 107.301 0.444 42.483431 -75.036905 +13825 3442 1673 146447428 410652 56.544 0.159 42.435577 -75.204553 +13826 58 49 2170183 634707 0.838 0.245 42.099820 -75.638796 +13827 11759 5279 237014399 2346781 91.512 0.906 42.117827 -76.249166 +13830 5042 2510 286158055 2056889 110.486 0.794 42.435584 -75.627625 +13832 709 342 71832148 109133 27.735 0.042 42.658130 -75.672216 +13833 4255 1797 92550433 388600 35.734 0.150 42.198205 -75.768632 +13834 118 68 900860 106436 0.348 0.041 42.530981 -74.965895 +13835 1511 715 109334947 93101 42.214 0.036 42.383214 -76.178996 +13838 4409 2153 26687076 308754 10.304 0.119 42.285099 -75.388127 +13839 1405 855 102962117 401145 39.754 0.155 42.262039 -75.252051 +13841 529 316 30857994 1128072 11.914 0.436 42.406990 -75.842161 +13842 695 308 32351002 334747 12.491 0.129 42.376700 -74.723609 +13843 1888 992 140937101 203688 54.416 0.079 42.506711 -75.381410 +13844 724 368 62135980 106370 23.991 0.041 42.608179 -75.668317 +13845 83 39 1005039 8591 0.388 0.003 42.053431 -76.354924 +13846 305 167 21057938 87534 8.131 0.034 42.363723 -75.054746 +13847 67 43 8442092 59104 3.260 0.023 42.180595 -75.292138 +13849 4551 2372 171527403 1653180 66.227 0.638 42.350096 -75.309317 +13850 22004 9479 132469003 2211789 51.147 0.854 42.049395 -76.017594 +13856 6596 3976 479386472 11972925 185.092 4.623 42.171041 -75.183316 +13859 182 83 1242630 78414 0.480 0.030 42.372485 -75.245254 +13860 94 44 2371876 4229 0.916 0.002 42.447960 -74.941986 +13861 432 187 11420740 44221 4.410 0.017 42.508540 -75.151092 +13862 4189 1775 146342050 5646139 56.503 2.180 42.330958 -75.931008 +13863 688 366 39360404 462430 15.197 0.179 42.455495 -75.898915 +13864 1149 560 69024219 14637 26.650 0.006 42.271668 -76.388622 +13865 6371 3070 285731616 3248636 110.322 1.254 42.032061 -75.615617 +13901 19773 9685 60140090 2222381 23.220 0.858 42.183181 -75.876065 +13902 6177 0 1844246 0 0.712 0.000 42.088824 -75.968883 +13903 18763 8613 102581051 1247830 39.607 0.482 42.041886 -75.889073 +13904 9579 4256 60087700 277277 23.200 0.107 42.134123 -75.820206 +13905 28026 13468 70050582 614267 27.047 0.237 42.170436 -75.943434 +14001 9464 4254 170739900 419077 65.923 0.162 43.036593 -78.510856 +14004 12704 4290 124089792 874229 47.911 0.338 42.891371 -78.503687 +14005 1986 760 86567899 275566 33.424 0.106 42.920586 -78.250065 +14006 9858 4920 67000641 1435040 25.869 0.554 42.633130 -79.021745 +14008 1467 581 63330285 2221329 24.452 0.858 43.312726 -78.623166 +14009 5672 2757 191904437 620027 74.095 0.239 42.593267 -78.397520 +14011 9822 2633 173021991 246034 66.804 0.095 42.830674 -78.299709 +14012 2362 1036 83324961 3205987 32.172 1.238 43.332173 -78.532622 +14013 1751 723 104885665 945882 40.497 0.365 43.086290 -78.397746 +14020 23306 10303 178981326 940697 69.105 0.363 42.996190 -78.213412 +14024 1688 807 163629948 1155363 63.178 0.446 42.581363 -78.245468 +14025 3039 1275 57843049 0 22.333 0.000 42.622156 -78.726936 +14026 674 292 1949845 0 0.753 0.000 42.942313 -78.687987 +14028 1595 751 35059747 1325263 13.537 0.512 43.318040 -78.717617 +14030 1807 775 51451977 558665 19.866 0.216 42.564386 -78.507624 +14031 9392 3854 48489564 596144 18.722 0.230 42.983128 -78.614262 +14032 7989 2783 60102569 0 23.206 0.000 43.046729 -78.630773 +14033 2219 943 44771841 46515 17.287 0.018 42.654382 -78.692124 +14034 2742 793 66565427 23322 25.701 0.009 42.495740 -78.871196 +14035 125 67 591693 0 0.228 0.000 42.490778 -78.848389 +14036 5201 2201 140308108 495994 54.173 0.192 42.973851 -78.389527 +14037 1166 479 44825997 19887 17.307 0.008 42.802789 -78.453328 +14039 101 52 4838841 0 1.868 0.000 42.851480 -78.173096 +14040 2217 907 75697863 494435 29.227 0.191 42.890873 -78.376631 +14041 237 110 5888815 116110 2.274 0.045 42.398835 -78.971581 +14042 3969 1945 118221280 634111 45.645 0.245 42.475564 -78.488807 +14043 24742 11475 22510684 0 8.691 0.000 42.901970 -78.703411 +14047 6440 2757 34025341 2591446 13.137 1.001 42.687361 -78.986623 +14048 15072 7365 60355641 18952272 23.303 7.318 42.484359 -79.317005 +14051 19533 7476 42310745 180832 16.336 0.070 43.042842 -78.699413 +14052 17329 7271 160499167 206075 61.969 0.080 42.772537 -78.584397 +14054 1344 539 64381775 62158 24.858 0.024 42.919587 -78.126802 +14055 1405 609 83752175 88591 32.337 0.034 42.562879 -78.600126 +14057 8116 3296 124745885 173379 48.165 0.067 42.646574 -78.874782 +14058 2285 899 103204034 74652 39.847 0.029 43.102049 -78.168857 +14059 8933 3716 69748676 10290 26.930 0.004 42.833552 -78.634046 +14060 443 252 45947326 385574 17.740 0.149 42.450155 -78.296467 +14061 349 150 2481142 0 0.958 0.000 42.593878 -79.079302 +14062 3329 1547 187365718 791878 72.342 0.306 42.438404 -79.143107 +14063 14870 5761 130587982 790064 50.420 0.305 42.408411 -79.331104 +14065 1896 830 96586200 290312 37.292 0.112 42.484905 -78.312811 +14066 1318 617 104623601 401927 40.395 0.155 42.629054 -78.185536 +14067 5040 2018 128203664 276505 49.500 0.107 43.213204 -78.568403 +14068 7150 2991 8960289 0 3.460 0.000 43.027329 -78.756619 +14069 844 418 22054558 31308 8.515 0.012 42.615223 -78.642926 +14070 6732 2350 132370200 813394 51.108 0.314 42.419658 -78.917725 +14072 20374 8273 73228020 202194 28.273 0.078 43.017901 -78.962657 +14075 41937 18280 102358741 949523 39.521 0.367 42.713252 -78.833315 +14080 4330 1870 136958147 152299 52.880 0.059 42.648332 -78.548318 +14081 3095 1566 91088217 2344989 35.169 0.905 42.563205 -79.067832 +14082 426 204 25716706 288270 9.929 0.111 42.657556 -78.384873 +14085 7353 2658 18048173 894599 6.968 0.345 42.721647 -78.918650 +14086 31847 12609 87734538 623501 33.874 0.241 42.909063 -78.629256 +14091 1079 433 55066724 21135 21.261 0.008 42.538233 -78.893008 +14092 11086 5033 51046046 15318 19.709 0.006 43.173220 -78.993074 +14094 50666 22387 315801617 596989 121.932 0.230 43.157693 -78.702073 +14098 2958 1686 119284882 0 46.056 0.000 43.334373 -78.380616 +14101 1905 1110 109894823 1550413 42.431 0.599 42.392651 -78.538203 +14102 1281 484 9860812 26672 3.807 0.010 42.837026 -78.557725 +14103 11183 4808 207069032 1281084 79.950 0.495 43.211161 -78.376770 +14105 4566 1954 121985851 708107 47.099 0.273 43.199163 -78.483902 +14108 5882 2374 70163129 0 27.090 0.000 43.263343 -78.726950 +14109 1117 1 1226540 0 0.474 0.000 43.137950 -79.034160 +14111 3352 1449 93413117 447040 36.067 0.173 42.580261 -78.904703 +14112 85 28 103462 0 0.040 0.000 42.697963 -78.939953 +14113 703 313 44083112 310 17.021 0.000 42.671576 -78.339931 +14120 45100 20022 85216484 920367 32.902 0.355 43.079317 -78.842654 +14125 3782 1510 90965682 1875270 35.122 0.724 43.084919 -78.274609 +14126 588 383 1485339 874703 0.573 0.338 43.335882 -78.728636 +14127 29961 12586 106528538 205375 41.131 0.079 42.752803 -78.739697 +14129 1591 669 80023205 800107 30.897 0.309 42.481182 -79.017384 +14130 265 103 2820684 0 1.089 0.000 42.555981 -78.147652 +14131 5283 2259 109427574 1938105 42.250 0.748 43.238603 -78.899823 +14132 6218 2451 72723613 0 28.079 0.000 43.149330 -78.877732 +14134 104 45 2197743 0 0.849 0.000 42.527675 -78.523996 +14135 119 55 2675690 0 1.033 0.000 42.487694 -79.240898 +14136 5033 2375 59970495 10885742 23.155 4.203 42.517346 -79.174812 +14138 2018 861 121376289 1211367 46.864 0.468 42.379512 -79.036656 +14139 2125 938 61796292 82550 23.860 0.032 42.718405 -78.541402 +14141 7728 3313 182626533 392660 70.513 0.152 42.524967 -78.712076 +14143 1214 546 37452769 128201 14.461 0.049 42.971918 -78.063986 +14145 1618 674 72864290 63831 28.133 0.025 42.729606 -78.434328 +14150 41676 19750 38695331 177051 14.940 0.068 42.998084 -78.878256 +14167 1663 816 97561258 9927 37.669 0.004 42.750032 -78.324679 +14168 36 17 102648 0 0.040 0.000 42.520385 -78.990541 +14169 151 71 798388 0 0.308 0.000 42.766145 -78.523697 +14170 2286 974 31923358 140096 12.326 0.054 42.700245 -78.674307 +14171 2077 1029 132082514 441500 50.997 0.170 42.424674 -78.649832 +14172 3200 1591 63789246 5328479 24.629 2.057 43.272672 -78.812943 +14173 396 193 1499234 0 0.579 0.000 42.525971 -78.473102 +14174 5794 2616 63268229 8503023 24.428 3.283 43.249139 -78.998325 +14201 11549 6991 2661751 157983 1.028 0.061 42.896060 -78.886424 +14202 3911 2247 2150797 999478 0.830 0.386 42.881482 -78.877482 +14203 1618 936 6829294 3019157 2.637 1.166 42.869213 -78.869813 +14204 8691 5000 4651931 0 1.796 0.000 42.882135 -78.861327 +14206 20751 10885 12552705 16234 4.847 0.006 42.880078 -78.810472 +14207 23552 11053 10110620 49797 3.904 0.019 42.951932 -78.898883 +14208 11125 5594 3569130 5623 1.378 0.002 42.915890 -78.853098 +14209 7926 4683 2366994 0 0.914 0.000 42.913943 -78.866020 +14210 14694 7328 8301518 324608 3.205 0.125 42.862658 -78.828739 +14211 22611 12243 10464917 17591 4.041 0.007 42.906290 -78.819956 +14212 10641 6614 4939280 0 1.907 0.000 42.894207 -78.820121 +14213 24465 11532 5855257 296544 2.261 0.114 42.918097 -78.892406 +14214 19775 9142 7399335 0 2.857 0.000 42.939648 -78.840658 +14215 39999 18275 12743313 0 4.920 0.000 42.935317 -78.810669 +14216 22431 11740 7199114 105583 2.780 0.041 42.949615 -78.861119 +14217 23480 11384 8318459 0 3.212 0.000 42.971869 -78.876868 +14218 19039 9443 21231675 967166 8.198 0.373 42.819372 -78.830952 +14219 11536 5416 18213745 855940 7.032 0.330 42.788705 -78.826472 +14220 24227 11117 9850778 152682 3.803 0.059 42.845738 -78.822076 +14221 53555 23800 59550976 67469 22.993 0.026 42.984522 -78.722871 +14222 14046 7950 3326180 0 1.284 0.000 42.919916 -78.876943 +14223 22665 10241 8889745 0 3.432 0.000 42.973452 -78.846201 +14224 39889 17752 52478122 142438 20.262 0.055 42.837826 -78.747935 +14225 33385 16108 30632302 105687 11.827 0.041 42.928824 -78.752459 +14226 29267 13007 17909095 3829 6.915 0.001 42.971014 -78.796455 +14227 23426 11219 22374089 40835 8.639 0.016 42.886909 -78.730563 +14228 20857 9121 41079503 716934 15.861 0.277 43.044371 -78.777335 +14261 5713 2 3009917 93954 1.162 0.036 43.007631 -78.791517 +14301 12817 7396 4330451 0 1.672 0.000 43.095821 -79.040407 +14302 107 107 35992 0 0.014 0.000 43.093896 -79.049193 +14303 5981 3599 6362273 0 2.456 0.000 43.084976 -79.038403 +14304 30389 14307 57462795 0 22.187 0.000 43.099407 -78.951983 +14305 16898 8139 21262901 112762 8.210 0.044 43.122828 -79.023242 +14411 14491 5487 293400836 886715 113.283 0.342 43.235972 -78.216477 +14414 7142 3093 101798523 143171 39.305 0.055 42.890961 -77.743757 +14415 132 56 3760955 0 1.452 0.000 42.755495 -77.017084 +14416 3817 1568 96431728 240617 37.232 0.093 43.082686 -77.980122 +14418 1325 966 96771723 104511 37.364 0.040 42.604430 -77.216428 +14420 20467 7612 156867279 406707 60.567 0.157 43.211739 -77.934564 +14422 2468 1004 88109135 221767 34.019 0.086 43.084761 -78.066965 +14423 4799 2019 130733277 649870 50.476 0.251 42.933948 -77.821103 +14424 27007 12972 329349192 435686 127.162 0.168 42.856695 -77.303277 +14425 10717 4205 48376900 0 18.678 0.000 42.991514 -77.338020 +14427 1964 994 78231718 1306952 30.205 0.505 42.621589 -78.053905 +14428 8096 3280 132436198 925021 51.134 0.357 43.080517 -77.853568 +14432 5726 2358 100072291 0 38.638 0.000 42.957391 -77.143523 +14433 4629 1946 171381988 827550 66.171 0.320 43.082126 -76.877598 +14435 2941 1598 94886821 19530 36.636 0.008 42.712552 -77.663312 +14437 11415 4423 321418919 142089 124.101 0.055 42.574740 -77.736663 +14441 325 185 908445 14640 0.351 0.006 42.684610 -76.957603 +14445 8019 3687 4930012 19934 1.903 0.008 43.113060 -77.490301 +14450 41104 17504 82437138 773220 31.829 0.299 43.092647 -77.421023 +14454 11073 3560 131114264 50465 50.624 0.019 42.797774 -77.774638 +14456 20087 8724 202045213 449849 78.010 0.174 42.847695 -76.998972 +14462 655 258 31032584 0 11.982 0.000 42.686534 -77.751115 +14464 7524 2997 79395771 1647042 30.655 0.636 43.327044 -77.932164 +14466 1719 734 44610420 0 17.224 0.000 42.776517 -77.581042 +14467 9105 3855 27901531 675926 10.773 0.261 43.036432 -77.612005 +14468 17813 7162 137466746 7470636 53.076 2.884 43.293956 -77.802049 +14469 6220 2636 170822984 198565 65.955 0.077 42.877919 -77.471014 +14470 8016 3378 166045275 102382 64.110 0.040 43.205212 -78.057685 +14471 2672 1965 70268518 0 27.131 0.000 42.753761 -77.492189 +14472 8598 3469 113216677 759837 43.713 0.293 42.966819 -77.575134 +14475 234 92 3951645 0 1.526 0.000 42.937819 -77.498297 +14476 2288 974 64202239 88358 24.789 0.034 43.329379 -78.042800 +14477 1732 829 67798700 304762 26.177 0.118 43.333129 -78.140393 +14478 1595 703 30311215 0 11.703 0.000 42.577823 -77.126322 +14479 275 111 3833266 0 1.480 0.000 43.236262 -78.313775 +14480 833 455 3351845 41273 1.294 0.016 42.838492 -77.710359 +14481 1820 819 61560928 0 23.769 0.000 42.761795 -77.921452 +14482 8275 3647 151537862 327398 58.509 0.126 42.978904 -77.971534 +14485 4267 1792 91548060 117183 35.347 0.045 42.882635 -77.601026 +14486 308 128 14590487 0 5.633 0.000 42.894280 -77.921587 +14487 6025 2700 86513787 0 33.403 0.000 42.811758 -77.636006 +14489 7192 3133 175222370 1089526 67.654 0.421 43.088381 -76.994347 +14502 10691 4326 96611472 543120 37.302 0.210 43.096474 -77.335402 +14504 1701 771 2946897 0 1.138 0.000 42.968981 -77.231501 +14505 5393 2164 102573457 266736 39.604 0.103 43.159419 -77.168961 +14506 1325 505 7462231 10676 2.881 0.004 43.005513 -77.516652 +14507 1351 890 84757337 96350 32.725 0.037 42.684916 -77.254886 +14510 4895 2215 181085400 286760 69.917 0.111 42.683010 -77.869009 +14511 497 230 5980947 107583 2.309 0.042 42.999374 -77.891790 +14512 4721 2629 266149879 174 102.761 0.000 42.645241 -77.399770 +14513 13976 6073 121481099 637568 46.904 0.246 43.086309 -77.092116 +14514 6389 2614 9703221 32188 3.746 0.012 43.109961 -77.814930 +14516 2365 1119 73363779 4654598 28.326 1.797 43.201328 -76.919338 +14517 2883 1269 88409304 0 34.135 0.000 42.592426 -77.895852 +14519 11581 4709 105646954 223366 40.791 0.086 43.233972 -77.314631 +14521 2761 1390 97891381 53353 37.796 0.021 42.676642 -76.805003 +14522 9565 4185 121240714 260019 46.811 0.100 43.061905 -77.221976 +14525 2865 1137 118117556 205007 45.605 0.079 42.877514 -78.013331 +14526 19804 8308 43333217 96664 16.731 0.037 43.151464 -77.444396 +14527 12820 6670 350773846 303380 135.435 0.117 42.665508 -77.066309 +14529 67 33 1010136 0 0.390 0.000 42.539976 -77.638100 +14530 5575 2833 127684396 1046391 49.299 0.404 42.739910 -77.998746 +14532 4431 1869 105265502 891908 40.643 0.344 42.964101 -77.032088 +14533 2000 795 83234847 19315 32.137 0.007 42.838810 -77.888759 +14534 31426 12390 83726227 730821 32.327 0.282 43.056890 -77.521042 +14536 687 321 47193482 425175 18.222 0.164 42.543975 -78.083671 +14537 207 84 876090 0 0.338 0.000 43.035808 -77.163201 +14539 242 94 548223 0 0.212 0.000 42.834499 -77.874751 +14541 4129 1279 127482704 493092 49.221 0.190 42.757557 -76.848849 +14542 97 43 4793744 0 1.851 0.000 43.147329 -76.860121 +14543 3152 1261 65196375 918461 25.172 0.355 42.983680 -77.678319 +14544 2101 1117 73124615 64788 28.234 0.025 42.756251 -77.243735 +14545 173 78 3716761 0 1.435 0.000 42.664857 -77.701007 +14546 4695 2108 88473575 786459 34.160 0.304 43.032675 -77.780006 +14548 4249 1750 77896777 0 30.076 0.000 42.976072 -77.243870 +14549 91 52 291068 0 0.112 0.000 42.700031 -78.017273 +14550 1537 795 51804279 2284101 20.002 0.882 42.679902 -78.093487 +14551 5651 2468 113157907 308972 43.691 0.119 43.218114 -77.049402 +14555 974 971 8123085 8211313 3.136 3.170 43.260787 -76.975740 +14559 18057 7101 110117074 665953 42.516 0.257 43.189993 -77.819055 +14560 2164 1128 100587067 2870224 38.837 1.108 42.683429 -77.565904 +14561 3086 1156 134359298 0 51.876 0.000 42.820432 -77.131778 +14564 14487 5888 109044868 315032 42.102 0.122 42.986699 -77.434360 +14568 6048 2276 61489229 28857 23.741 0.011 43.160609 -77.281449 +14569 6211 2897 197585027 1112470 76.288 0.430 42.734693 -78.168593 +14571 1176 802 47540105 1309083 18.355 0.505 43.341652 -78.251742 +14572 5081 2463 193554768 830473 74.732 0.321 42.564925 -77.562598 +14580 50587 21001 110323109 5389645 42.596 2.081 43.217283 -77.444534 +14585 120 74 128258 0 0.050 0.000 42.906261 -77.553145 +14586 10256 3900 28867688 500369 11.146 0.193 43.041661 -77.689956 +14588 749 38 623657 0 0.241 0.000 42.680987 -76.870803 +14589 7854 3561 113469822 77394 43.811 0.030 43.249424 -77.174261 +14590 5446 3140 174903100 2981404 67.530 1.151 43.242547 -76.826243 +14591 1748 710 104664852 64307 40.411 0.025 42.832057 -78.107466 +14592 110 43 431978 0 0.167 0.000 42.872237 -77.895893 +14604 1743 1482 946704 45904 0.366 0.018 43.156212 -77.604741 +14605 12610 5304 4683397 57629 1.808 0.022 43.168428 -77.602642 +14606 28255 12090 25174139 177325 9.720 0.068 43.170996 -77.697914 +14607 16223 10568 4360329 0 1.684 0.000 43.150787 -77.586436 +14608 12268 6108 4518243 226730 1.745 0.088 43.153890 -77.623336 +14609 42571 19295 18781935 2117163 7.252 0.817 43.177093 -77.554873 +14610 14233 7618 11259788 108865 4.347 0.042 43.142643 -77.545602 +14611 17396 7849 7496798 57021 2.895 0.022 43.148316 -77.646987 +14612 34515 15020 44225456 7105942 17.076 2.744 43.266330 -77.676706 +14613 14730 6146 4731258 92831 1.827 0.036 43.182171 -77.640175 +14614 1224 76 628921 94229 0.243 0.036 43.157442 -77.615355 +14615 16099 7489 14999091 109711 5.791 0.042 43.201252 -77.654726 +14616 28534 12582 15391113 0 5.943 0.000 43.234623 -77.657664 +14617 22789 9897 19890573 1084897 7.680 0.419 43.225497 -77.593527 +14618 22920 8809 25012241 167696 9.657 0.065 43.113525 -77.553942 +14619 14749 6179 3771166 13673 1.456 0.005 43.136456 -77.649477 +14620 25141 12234 11613712 232116 4.484 0.090 43.128291 -77.605805 +14621 33802 14768 10678978 283075 4.123 0.109 43.189939 -77.603649 +14622 12108 5750 11934896 2489892 4.608 0.961 43.215741 -77.552402 +14623 27173 10169 49424146 971501 19.083 0.375 43.087333 -77.641867 +14624 36296 14868 72337716 440357 27.930 0.170 43.128271 -77.731354 +14625 10387 4801 19789324 485284 7.641 0.187 43.150039 -77.505521 +14626 30041 12885 35287528 116976 13.625 0.045 43.216527 -77.710806 +14627 2320 0 398890 0 0.154 0.000 43.128664 -77.629144 +14701 40730 19132 239271752 788493 92.383 0.304 42.080160 -79.256710 +14706 6356 2807 204048907 1666387 78.784 0.643 42.113246 -78.533146 +14707 239 114 5147207 0 1.987 0.000 42.077338 -78.060511 +14708 183 143 27189587 177993 10.498 0.069 42.019219 -78.063617 +14709 1535 992 130971886 78052 50.569 0.030 42.356494 -77.982064 +14710 3540 2297 125264642 147055 48.365 0.057 42.087770 -79.419847 +14711 1766 1031 103554871 852868 39.983 0.329 42.326725 -78.119435 +14712 3342 2237 67409466 192079 26.027 0.074 42.183745 -79.361923 +14714 487 300 47071994 209735 18.175 0.081 42.296728 -78.233633 +14715 2747 1439 112494206 73994 43.434 0.029 42.076532 -78.144755 +14716 3104 1029 32107143 15526446 12.397 5.995 42.390637 -79.445044 +14717 636 1062 70616866 785844 27.265 0.303 42.361647 -78.179701 +14718 2163 1022 85416294 1080421 32.979 0.417 42.345814 -79.287617 +14719 3497 1767 244316773 1516486 94.331 0.586 42.341958 -78.875953 +14720 675 338 634847 0 0.245 0.000 42.108592 -79.281179 +14721 230 145 9666433 0 3.732 0.000 42.013888 -78.266520 +14722 153 1224 858249 0 0.331 0.000 42.209489 -79.468361 +14723 1295 674 112001292 33957 43.244 0.013 42.317704 -79.157231 +14724 2540 1508 192441477 1523361 74.302 0.588 42.046328 -79.669830 +14726 2156 685 105329713 1080 40.668 0.000 42.253585 -79.020279 +14727 5450 3382 281532567 2133791 108.700 0.824 42.206974 -78.297252 +14728 1031 962 69400021 121437 26.795 0.047 42.263333 -79.423176 +14729 948 552 91341026 626628 35.267 0.242 42.408377 -78.743584 +14731 1576 2568 118642487 122229 45.808 0.047 42.307351 -78.655503 +14732 211 85 5794277 0 2.237 0.000 42.231862 -79.116414 +14733 3833 1804 71799900 482917 27.722 0.186 42.160122 -79.172199 +14735 2751 1555 214620527 1711660 82.865 0.661 42.452690 -78.096169 +14736 282 195 13535416 0 5.226 0.000 42.140845 -79.746108 +14737 4252 2653 285523891 930916 110.241 0.359 42.329050 -78.428611 +14738 3651 1809 170434243 583040 65.805 0.225 42.055006 -79.084541 +14739 2903 1809 204985815 169576 79.145 0.065 42.192604 -78.146295 +14740 1431 642 67466588 12952 26.049 0.005 42.223203 -79.181435 +14741 1873 1270 159498082 137638 61.583 0.053 42.219966 -78.611624 +14742 314 128 581623 0 0.225 0.000 42.120123 -79.306839 +14743 1783 953 112522248 78914 43.445 0.030 42.207941 -78.394917 +14744 2094 512 45143834 411100 17.430 0.159 42.428100 -78.206654 +14747 2289 1066 112740880 341951 43.529 0.132 42.153715 -79.094518 +14748 746 368 46367231 974765 17.902 0.376 42.157106 -78.643061 +14750 4426 2384 28745085 0 11.099 0.000 42.079766 -79.329244 +14752 169 173 649516 0 0.251 0.000 42.351728 -79.319857 +14753 1166 573 142509330 542390 55.023 0.209 42.036032 -78.664372 +14754 667 366 43028236 36063 16.613 0.014 42.021908 -78.201569 +14755 2916 1567 195274750 394967 75.396 0.152 42.233756 -78.804596 +14756 110 136 355130 0 0.137 0.000 42.198039 -79.421274 +14757 3487 2530 119619162 244818 46.185 0.095 42.237679 -79.504709 +14760 18775 9266 164347071 2114463 63.455 0.816 42.077027 -78.418429 +14767 2088 804 138165475 609875 53.346 0.235 42.057352 -79.514135 +14769 919 492 23612130 5153 9.117 0.002 42.367931 -79.472317 +14770 2963 1342 76684751 783022 29.608 0.302 42.037929 -78.300296 +14772 4255 1795 191303981 774427 73.863 0.299 42.157470 -78.952618 +14774 151 52 461338 0 0.178 0.000 42.088367 -78.149093 +14775 2537 1306 139959428 5652519 54.039 2.182 42.228753 -79.699933 +14777 667 706 37177259 2423457 14.354 0.936 42.386080 -78.273772 +14778 1453 2 1076111 0 0.415 0.000 42.077584 -78.483239 +14779 6932 3503 291889040 3003534 112.699 1.160 42.081230 -78.777986 +14781 2225 989 188068289 223972 72.614 0.086 42.161603 -79.601288 +14782 2401 1101 142328450 60703 54.953 0.023 42.265508 -79.263865 +14783 320 197 64535004 16640745 24.917 6.425 42.082135 -78.887355 +14784 1033 546 74978433 839750 28.949 0.324 42.311143 -79.385369 +14787 5121 2675 108797822 10348448 42.007 3.996 42.311648 -79.571405 +14788 163 67 545003 0 0.210 0.000 42.061991 -78.380108 +14801 5475 2522 281410630 1049217 108.653 0.405 42.104056 -77.292968 +14802 4135 560 2694190 0 1.040 0.000 42.253375 -77.789297 +14803 1174 609 64552064 250965 24.924 0.097 42.273416 -77.745296 +14804 1479 880 144718714 232123 55.876 0.090 42.317259 -77.847936 +14805 1100 527 71626806 1550160 27.655 0.599 42.351406 -76.720073 +14806 2269 1172 178016450 459603 68.733 0.177 42.171541 -77.772537 +14807 3076 1477 175202573 577235 67.646 0.223 42.420987 -77.711334 +14808 591 267 8726700 0 3.369 0.000 42.559639 -77.466860 +14809 2552 1249 144350779 331399 55.734 0.128 42.424318 -77.448755 +14810 12356 5955 312850512 1065607 120.792 0.411 42.349744 -77.343373 +14812 3478 1460 200834973 220128 77.543 0.085 42.300727 -77.005249 +14813 2520 1396 157509358 420848 60.815 0.162 42.252647 -77.995104 +14814 1931 825 22291331 761146 8.607 0.294 42.154488 -76.958827 +14815 946 776 44842487 3471673 17.314 1.340 42.374323 -77.086684 +14816 520 207 9975059 56624 3.851 0.022 42.197873 -76.732083 +14817 2380 1080 104360284 252245 40.294 0.097 42.357575 -76.334979 +14818 1745 983 96595946 14142 37.296 0.005 42.454933 -76.818927 +14819 733 401 106875746 147322 41.265 0.057 42.224194 -77.441939 +14820 784 358 79614973 66440 30.740 0.026 42.193280 -77.359900 +14821 3314 1394 140524424 319963 54.257 0.124 42.241574 -77.219254 +14822 1169 722 128106755 474368 49.462 0.183 42.424481 -77.851457 +14823 3754 1915 200848764 44261 77.548 0.017 42.249138 -77.558954 +14824 678 301 58725429 8629 22.674 0.003 42.259793 -76.699531 +14825 919 373 43694812 10603 16.871 0.004 42.056296 -76.618187 +14826 2216 1163 157542122 714354 60.827 0.276 42.491464 -77.497778 +14827 191 82 233078 0 0.090 0.000 42.180651 -77.142885 +14830 19850 9160 232758429 2074917 89.869 0.801 42.128119 -77.031973 +14836 1009 558 77612958 131305 29.967 0.051 42.542918 -77.878193 +14837 5648 3084 206377382 3554920 79.683 1.373 42.490667 -77.026107 +14838 1956 832 93327018 527204 36.034 0.204 42.188143 -76.662322 +14839 793 491 114089906 10792 44.050 0.004 42.119444 -77.640967 +14840 3061 2944 152429898 419118 58.854 0.162 42.440793 -77.194254 +14841 915 655 50774709 0 19.604 0.000 42.525338 -76.840915 +14842 938 594 43333204 17366 16.731 0.007 42.600505 -76.981134 +14843 13043 6231 260485531 902828 100.574 0.349 42.320079 -77.646339 +14845 20453 8939 206759519 1021186 79.830 0.394 42.215912 -76.834161 +14846 792 418 88472732 626065 34.160 0.242 42.532090 -78.001564 +14847 2398 1278 100938474 90954 38.973 0.035 42.608582 -76.734212 +14850 63886 26467 326231605 2259973 125.959 0.873 42.432194 -76.497024 +14853 2755 0 611084 37581 0.236 0.015 42.449002 -76.477551 +14854 37 15 58950 0 0.023 0.000 42.505802 -76.614769 +14855 956 362 72538765 84933 28.007 0.033 42.145700 -77.497396 +14856 215 92 976583 0 0.377 0.000 42.376717 -77.366506 +14858 1598 670 93550806 816438 36.120 0.315 42.029557 -77.135009 +14859 1029 485 80707317 156987 31.161 0.061 42.114838 -76.538139 +14860 1039 779 54357512 10449 20.988 0.004 42.591920 -76.831428 +14861 1404 641 88636457 675470 34.223 0.261 42.088212 -76.686236 +14864 1307 595 32250895 116718 12.452 0.045 42.275415 -76.840921 +14865 2607 1232 51653512 16170 19.944 0.006 42.348192 -76.833977 +14867 5569 2458 173709162 368029 67.069 0.142 42.343150 -76.618094 +14869 1378 604 52205360 16711 20.157 0.006 42.360831 -76.768968 +14870 9821 4374 158767759 1425906 61.301 0.551 42.160378 -77.127624 +14871 5456 1938 148082519 1293312 57.175 0.499 42.039625 -76.911418 +14872 605 283 16652444 19076 6.430 0.007 42.243653 -76.874902 +14873 2448 1770 191366308 363843 73.887 0.140 42.522288 -77.296985 +14874 250 245 5998235 0 2.316 0.000 42.530172 -77.175490 +14877 401 341 109526203 377875 42.288 0.146 42.057790 -77.680307 +14878 781 430 41541282 0 16.039 0.000 42.450262 -76.943405 +14879 2398 1041 111681435 933212 43.120 0.360 42.321946 -77.187158 +14880 1668 1028 142629247 161288 55.069 0.062 42.177487 -77.969226 +14881 192 111 3182031 3378 1.229 0.001 42.399901 -76.358994 +14882 3826 1747 86054843 256414 33.226 0.099 42.580097 -76.553256 +14883 4136 1850 186971270 1300173 72.190 0.502 42.243022 -76.472102 +14884 273 320 49628133 840161 19.162 0.324 42.479522 -77.893852 +14885 873 419 108874075 0 42.037 0.000 42.046486 -77.570328 +14886 6753 3181 201011933 582649 77.611 0.225 42.505751 -76.684980 +14889 1590 744 116419386 331489 44.950 0.128 42.234171 -76.578897 +14891 4149 2070 135111962 279469 52.167 0.108 42.377014 -76.946182 +14892 8189 3609 111048077 1388972 42.876 0.536 42.046025 -76.529114 +14893 6 27 58702 0 0.023 0.000 42.467714 -77.107721 +14894 1454 612 29204670 71939 11.276 0.028 42.019064 -76.777092 +14895 9616 4943 294154285 777271 113.574 0.300 42.081440 -77.940922 +14897 980 439 66126387 5524 25.532 0.002 42.020669 -77.792682 +14898 1734 747 151206957 73453 58.381 0.028 42.053364 -77.429500 +14901 16736 6617 96791377 2009354 37.371 0.776 42.087649 -76.746938 +14903 7567 3440 54026660 862295 20.860 0.333 42.131632 -76.871851 +14904 16269 7324 14548782 874836 5.617 0.338 42.069149 -76.800695 +14905 9070 4326 10790257 470938 4.166 0.182 42.087725 -76.843282 +15001 31964 14820 155516937 3449150 60.045 1.332 40.595263 -80.322877 +15003 11861 6199 16912197 948840 6.530 0.366 40.603640 -80.216424 +15004 351 153 811322 0 0.313 0.000 40.345102 -80.381297 +15005 9450 4168 40711517 702310 15.719 0.271 40.642533 -80.186188 +15006 240 118 637395 0 0.246 0.000 40.633590 -79.876889 +15007 323 136 861007 0 0.332 0.000 40.652233 -79.931679 +15009 15082 6839 63554326 3636775 24.538 1.404 40.697918 -80.365122 +15010 28425 12787 129573025 1397138 50.028 0.539 40.770882 -80.351497 +15012 15905 7326 86904411 975705 33.554 0.377 40.155434 -79.812961 +15014 3184 1617 1316565 115337 0.508 0.045 40.608072 -79.740428 +15015 1175 499 2423450 0 0.936 0.000 40.637248 -80.081101 +15017 16213 7875 33756097 125432 13.033 0.048 40.339614 -80.128217 +15018 821 389 4878525 414063 1.884 0.160 40.265885 -79.797067 +15019 1719 770 58794615 147877 22.701 0.057 40.406974 -80.328574 +15020 231 121 3418347 1185149 1.320 0.458 40.233411 -79.950296 +15021 7352 3294 237040192 69450 91.522 0.027 40.388565 -80.441527 +15022 10340 5391 46772529 624519 18.059 0.241 40.124908 -79.939333 +15024 9029 3924 43320050 585052 16.726 0.226 40.584970 -79.847315 +15025 15944 7814 42884841 1259013 16.558 0.486 40.297614 -79.923250 +15026 3390 1429 86778262 534939 33.505 0.207 40.504991 -80.353946 +15027 2201 1053 3728899 473269 1.440 0.183 40.666350 -80.240199 +15028 142 64 517475 234569 0.200 0.091 40.311313 -79.789560 +15030 1128 637 4868191 654829 1.880 0.253 40.591655 -79.782503 +15031 513 247 1207105 0 0.466 0.000 40.348228 -80.161128 +15033 4910 2771 5773168 384671 2.229 0.149 40.179104 -79.864709 +15034 1792 1000 2507585 245511 0.968 0.095 40.350816 -79.890602 +15035 2129 1155 1074654 0 0.415 0.000 40.384822 -79.807401 +15037 10894 4865 68522890 1423828 26.457 0.550 40.257714 -79.852770 +15038 325 158 1132242 201837 0.437 0.078 40.250809 -79.925568 +15042 8105 3629 43178835 345025 16.671 0.133 40.690315 -80.204823 +15043 2458 953 84730108 3494982 32.714 1.349 40.551695 -80.487856 +15044 27049 10496 107079609 45351 41.344 0.018 40.637986 -79.947904 +15045 4483 2255 4096331 530612 1.582 0.205 40.325814 -79.885985 +15046 2640 1131 5432400 546385 2.097 0.211 40.557753 -80.227975 +15047 151 72 495589 186266 0.191 0.072 40.318926 -79.808154 +15049 895 487 1116546 0 0.431 0.000 40.556113 -79.805574 +15050 2431 973 60637555 30664 23.412 0.012 40.563665 -80.434517 +15051 461 246 2144253 0 0.828 0.000 40.562602 -79.866913 +15052 3483 1507 45179152 193567 17.444 0.075 40.658561 -80.430767 +15053 154 70 227561 0 0.088 0.000 40.381001 -80.359879 +15054 375 180 338257 0 0.131 0.000 40.362377 -80.407683 +15055 1360 717 1731352 33748 0.668 0.013 40.306293 -80.123516 +15056 1140 589 2382658 454542 0.920 0.175 40.563890 -80.216015 +15057 13930 5614 141603046 211171 54.673 0.082 40.358656 -80.243904 +15059 4193 2096 36479548 1509080 14.085 0.583 40.677919 -80.485549 +15060 790 353 849816 0 0.328 0.000 40.366849 -80.292127 +15061 12799 5889 46565513 3626066 17.979 1.400 40.659904 -80.319701 +15062 7731 4244 8704851 435785 3.361 0.168 40.148786 -79.878186 +15063 11677 5505 73676839 1783317 28.447 0.689 40.191166 -79.922476 +15064 382 210 2132715 0 0.823 0.000 40.356339 -80.149928 +15065 11588 5639 32066841 1359603 12.381 0.525 40.644060 -79.725372 +15066 12785 5852 56070318 422128 21.649 0.163 40.747074 -80.256143 +15067 2281 1107 5278531 555633 2.038 0.215 40.207243 -79.962480 +15068 38785 18734 116797174 3059652 45.096 1.181 40.557925 -79.726079 +15071 9956 4402 47454570 0 18.322 0.000 40.412098 -80.187802 +15072 101 60 176019 0 0.068 0.000 40.139245 -79.856330 +15074 8874 4119 38782320 770968 14.974 0.298 40.734016 -80.208354 +15075 128 57 61429 0 0.024 0.000 40.586037 -79.826914 +15076 849 414 1891849 0 0.730 0.000 40.607346 -79.834668 +15077 198 94 2918006 271996 1.127 0.105 40.624986 -80.415781 +15078 523 287 1895632 0 0.732 0.000 40.355915 -80.384977 +15081 475 241 830784 220847 0.321 0.085 40.574948 -80.236071 +15082 350 156 809429 0 0.313 0.000 40.377841 -80.212916 +15083 952 432 9489252 413350 3.664 0.160 40.263984 -79.785752 +15084 10130 5005 72058774 444415 27.822 0.172 40.628590 -79.803264 +15085 7944 3612 24761294 0 9.560 0.000 40.385736 -79.722260 +15086 300 137 4249943 0 1.641 0.000 40.674953 -80.106364 +15087 234 110 1852269 533552 0.715 0.206 40.189522 -79.853422 +15088 535 260 521123 167544 0.201 0.065 40.272147 -79.896180 +15089 6262 3002 49562783 1000570 19.136 0.386 40.225327 -79.748788 +15090 21202 8254 54700120 33868 21.120 0.013 40.625887 -80.067535 +15101 24292 10372 52345769 269432 20.211 0.104 40.580328 -79.955241 +15102 29529 13050 26808460 0 10.351 0.000 40.321349 -80.036546 +15104 9038 4845 6341484 545393 2.448 0.211 40.403883 -79.862605 +15106 18536 9711 28932921 0 11.171 0.000 40.410123 -80.114205 +15108 40153 18268 102216563 1525979 39.466 0.589 40.500472 -80.201802 +15110 5565 3163 4708635 563601 1.818 0.218 40.373461 -79.850162 +15112 3292 1890 2165413 0 0.836 0.000 40.404483 -79.837706 +15116 14427 6103 20922947 0 8.078 0.000 40.526079 -79.932225 +15120 18931 9821 12102620 729718 4.673 0.282 40.395872 -79.907511 +15122 20131 9444 32655632 535253 12.608 0.207 40.362505 -79.898389 +15126 7014 3113 57341867 0 22.140 0.000 40.462422 -80.284452 +15129 10920 4629 20859252 0 8.054 0.000 40.293248 -79.996036 +15131 8240 4044 18874634 124920 7.288 0.048 40.338789 -79.796072 +15132 21472 11069 14621929 1164049 5.646 0.449 40.339767 -79.842782 +15133 6432 3004 7712475 166820 2.978 0.064 40.326376 -79.864408 +15135 5139 2343 10872538 295722 4.198 0.114 40.310836 -79.812893 +15136 21849 10653 28834294 978373 11.133 0.378 40.465188 -80.103905 +15137 10228 5218 20034344 428835 7.735 0.166 40.375736 -79.808765 +15139 6307 3235 5001000 591165 1.931 0.228 40.521697 -79.836210 +15140 3294 1866 1308209 0 0.505 0.000 40.407779 -79.776344 +15142 1163 487 3796186 38975 1.466 0.015 40.382059 -80.118682 +15143 19660 8581 95376065 1775887 36.825 0.686 40.568133 -80.146809 +15144 4142 2081 7144464 806295 2.758 0.311 40.548049 -79.777952 +15145 7132 3808 5104044 0 1.971 0.000 40.415277 -79.824085 +15146 28323 13458 51028679 15818 19.702 0.006 40.426328 -79.761358 +15147 17395 8539 26203545 853770 10.117 0.330 40.497284 -79.830770 +15148 2814 1554 2889759 0 1.116 0.000 40.393449 -79.795110 +15201 12713 6939 6422035 682799 2.480 0.264 40.474410 -79.950968 +15202 19685 10448 11387495 1008663 4.397 0.389 40.505165 -80.067830 +15203 9949 6312 3823795 563706 1.476 0.218 40.426225 -79.975630 +15204 8329 4017 4830272 225010 1.865 0.087 40.456867 -80.060630 +15205 21865 11181 26680905 0 10.302 0.000 40.438090 -80.099059 +15206 28615 15585 12369654 823687 4.776 0.318 40.472272 -79.913156 +15207 11268 5818 12418110 892168 4.795 0.344 40.403793 -79.928872 +15208 10406 5785 4167610 0 1.609 0.000 40.453191 -79.899498 +15209 12438 5906 11674854 397241 4.508 0.153 40.499771 -79.970593 +15210 25954 13207 12016589 394012 4.640 0.152 40.406634 -79.984725 +15211 11081 6489 4051826 0 1.564 0.000 40.430380 -80.015528 +15212 27895 16153 16116436 932211 6.223 0.360 40.456939 -79.990054 +15213 30844 11769 5519395 0 2.131 0.000 40.444043 -79.955247 +15214 14352 7323 12162850 7193 4.696 0.003 40.486557 -80.013953 +15215 12615 6166 15933677 765794 6.152 0.296 40.503693 -79.913220 +15216 23350 11657 8866636 0 3.423 0.000 40.402628 -80.034851 +15217 27220 12778 9858307 95099 3.806 0.037 40.430821 -79.920089 +15218 13851 7539 6141943 265929 2.371 0.103 40.423610 -79.889803 +15219 16696 6708 5942318 980912 2.294 0.379 40.442229 -79.982794 +15220 17718 8852 12786279 145851 4.937 0.056 40.419504 -80.047730 +15221 31060 17851 15921838 20299 6.147 0.008 40.435791 -79.864270 +15222 3294 2146 2103908 676361 0.812 0.261 40.447679 -79.993462 +15223 7236 3669 4965692 165715 1.917 0.064 40.505181 -79.952226 +15224 10141 5953 2607025 0 1.007 0.000 40.464234 -79.944805 +15225 1084 620 3965382 2109158 1.531 0.814 40.506673 -80.113842 +15226 13974 6810 6566989 0 2.536 0.000 40.395075 -80.013955 +15227 28156 13415 16006615 0 6.180 0.000 40.375703 -79.970572 +15228 17595 7771 8133684 0 3.140 0.000 40.370668 -80.044135 +15229 13825 6497 10480076 0 4.046 0.000 40.520343 -80.037048 +15232 11374 7020 2058658 0 0.795 0.000 40.452517 -79.931939 +15233 4451 1725 3219616 1156294 1.243 0.446 40.460862 -80.034917 +15234 14056 6751 8198923 0 3.166 0.000 40.368133 -80.017803 +15235 34580 16780 37977161 0 14.663 0.000 40.459801 -79.822420 +15236 29724 13843 28746387 0 11.099 0.000 40.347406 -79.975481 +15237 41895 18766 62709050 161752 24.212 0.062 40.549607 -80.043513 +15238 13162 6088 42425826 2074022 16.381 0.801 40.537201 -79.879444 +15239 21024 8746 41398514 0 15.984 0.000 40.483674 -79.738073 +15241 20395 7832 26939038 20331 10.401 0.008 40.333539 -80.081267 +15243 13406 5961 7789902 6712 3.008 0.003 40.375511 -80.072372 +15260 0 0 209620 0 0.081 0.000 40.443915 -79.953256 +15290 0 0 103613 0 0.040 0.000 40.457329 -80.019294 +15301 49331 22432 315753777 714279 121.913 0.276 40.153494 -80.253464 +15310 290 170 48030870 0 18.545 0.000 39.792724 -80.482197 +15311 1391 567 60948591 0 23.532 0.000 40.045914 -80.183933 +15312 3579 1556 194179227 73576 74.973 0.028 40.251528 -80.440702 +15313 377 175 1817018 0 0.702 0.000 40.067960 -80.023705 +15314 3788 1796 44816312 44563 17.304 0.017 40.146306 -80.016809 +15315 776 348 3425858 0 1.323 0.000 39.758289 -79.982684 +15316 131 52 1022410 729 0.395 0.000 39.724269 -80.252412 +15317 36535 15514 118423624 893051 45.724 0.345 40.277948 -80.175055 +15320 5384 2480 100570880 858886 38.831 0.332 39.876232 -79.990265 +15321 1676 717 2823159 0 1.090 0.000 40.323357 -80.187945 +15322 2018 938 36779910 145784 14.201 0.056 39.981643 -80.053364 +15323 4542 1916 179028967 32643 69.123 0.013 40.112251 -80.405659 +15324 632 333 995303 0 0.384 0.000 40.100777 -80.065715 +15325 439 194 626186 0 0.242 0.000 39.949429 -79.963374 +15327 1527 664 51486321 767986 19.879 0.297 39.744871 -79.960854 +15329 1709 731 105015222 72762 40.547 0.028 40.027715 -80.279927 +15330 5299 2264 116598464 63766 45.019 0.025 40.179368 -80.089973 +15331 1090 522 1972370 43216 0.762 0.017 40.105350 -80.022571 +15332 8148 3764 70637742 475678 27.273 0.184 40.240185 -79.993501 +15333 2150 989 35710221 235084 13.788 0.091 40.030787 -80.013210 +15334 113 47 4910845 0 1.896 0.000 39.808312 -79.967895 +15337 744 320 82659832 15730 31.915 0.006 39.952162 -80.378188 +15338 1606 735 48235683 1429017 18.624 0.552 39.784864 -79.991515 +15340 1469 631 40023010 0 15.453 0.000 40.283226 -80.317491 +15341 869 451 127441990 19674 49.206 0.008 39.824200 -80.343863 +15342 4818 2273 8654913 0 3.342 0.000 40.244231 -80.221186 +15344 1450 684 37099411 7069 14.324 0.003 39.915747 -80.061424 +15345 1642 799 50262601 0 19.406 0.000 40.022623 -80.105047 +15346 749 318 2351768 0 0.908 0.000 39.935438 -80.075344 +15347 582 288 1563588 0 0.604 0.000 40.220317 -80.221104 +15348 283 131 420084 173531 0.162 0.067 39.986895 -79.995437 +15349 1737 804 100005067 65355 38.612 0.025 39.762442 -80.093949 +15350 425 210 137216 0 0.053 0.000 40.293306 -80.200808 +15351 901 412 2826250 340949 1.091 0.132 39.884463 -79.924327 +15352 987 485 128817942 19794 49.737 0.008 39.752215 -80.382774 +15353 64 26 153322 0 0.059 0.000 39.962124 -80.310954 +15357 1661 724 20829600 1103023 8.042 0.426 39.941608 -79.980409 +15358 923 402 2189670 0 0.845 0.000 40.055388 -80.003007 +15359 174 78 367728 0 0.142 0.000 39.876488 -80.275766 +15360 1731 750 66293831 0 25.596 0.000 40.084912 -80.082379 +15361 151 68 245813 0 0.095 0.000 40.329012 -80.258411 +15362 767 347 67042845 111229 25.885 0.043 39.772465 -80.213926 +15363 760 351 597928 0 0.231 0.000 40.251799 -80.198050 +15364 869 368 96370936 30141 37.209 0.012 39.946322 -80.304781 +15366 164 84 922038 0 0.356 0.000 40.159548 -79.973027 +15367 8731 2970 23864300 61853 9.214 0.024 40.265968 -80.058058 +15368 473 230 493417 177300 0.191 0.068 40.013872 -79.989284 +15370 14870 5506 383317578 160258 148.000 0.062 39.880615 -80.171197 +15376 1740 725 99456108 447929 38.400 0.173 40.108900 -80.478959 +15377 724 321 106651295 26008 41.178 0.010 39.988469 -80.449057 +15378 106 50 145166 0 0.056 0.000 40.278384 -80.275081 +15379 132 64 1036166 0 0.400 0.000 40.243194 -80.425176 +15380 719 390 100186636 183244 38.682 0.071 39.867562 -80.467119 +15401 32288 15009 151007678 199635 58.304 0.077 39.899926 -79.745662 +15410 905 460 27406340 592101 10.582 0.229 39.911612 -79.902122 +15411 661 580 45317580 4440161 17.497 1.714 39.748580 -79.346892 +15412 470 242 5380093 191438 2.077 0.074 40.088771 -79.859227 +15413 551 274 1912872 0 0.739 0.000 39.985307 -79.871134 +15417 9469 4276 56585216 1660315 21.848 0.641 40.008601 -79.918268 +15419 4492 1676 4490316 438401 1.734 0.169 40.046955 -79.894985 +15420 251 118 1188544 0 0.459 0.000 39.960141 -79.865229 +15421 112 94 561962 0 0.217 0.000 39.845848 -79.597198 +15422 220 106 234243 0 0.090 0.000 39.981184 -79.811587 +15423 1781 792 42500878 191453 16.410 0.074 40.089905 -79.932521 +15424 2489 1802 187704434 4800209 72.473 1.853 39.819528 -79.359350 +15425 19270 8885 144312252 1325950 55.719 0.512 40.029511 -79.547910 +15427 1091 509 27077308 0 10.455 0.000 40.069947 -79.974807 +15428 1806 808 53104461 1189768 20.504 0.459 40.084267 -79.682026 +15429 126 71 802980 424401 0.310 0.164 40.003649 -79.938100 +15430 314 132 919199 94275 0.355 0.036 40.039350 -79.654282 +15431 4744 2061 126581922 653793 48.874 0.252 39.949851 -79.596338 +15432 427 224 1658724 333621 0.640 0.129 40.114094 -79.860274 +15433 741 350 37190963 2085990 14.360 0.805 39.982683 -79.948732 +15434 313 144 607190 205438 0.234 0.079 40.081867 -79.887389 +15435 437 224 2842972 30668 1.098 0.012 39.943714 -79.850270 +15436 2740 1158 18106141 0 6.991 0.000 39.817812 -79.724778 +15437 2573 1168 180791617 207835 69.804 0.080 39.780204 -79.612135 +15438 2221 1007 29831109 1264359 11.518 0.488 40.073207 -79.857770 +15440 349 184 39287469 0 15.169 0.000 39.735268 -79.616939 +15442 2105 990 38854612 75766 15.002 0.029 40.020301 -79.839819 +15443 377 156 4397241 0 1.698 0.000 39.919668 -79.880747 +15444 517 279 1637961 0 0.632 0.000 40.011976 -79.908804 +15445 2693 1284 54386676 19941 20.999 0.008 39.876092 -79.667827 +15446 324 155 3882527 0 1.499 0.000 40.030982 -79.402992 +15447 181 82 1013163 0 0.391 0.000 39.943822 -79.936893 +15448 192 86 2480188 149733 0.958 0.058 40.135979 -79.732512 +15449 184 96 404221 0 0.156 0.000 39.964329 -79.783355 +15450 2323 183 4126219 537422 1.593 0.207 40.001137 -79.974194 +15451 955 435 26321881 354486 10.163 0.137 39.737132 -79.836057 +15454 237 92 3343245 0 1.291 0.000 39.863151 -79.871733 +15455 298 152 1042214 0 0.402 0.000 40.003300 -79.642276 +15456 2976 1294 19762509 23627 7.630 0.009 39.926407 -79.652007 +15458 2379 1048 40540940 0 15.653 0.000 39.890125 -79.851171 +15459 1763 789 86421096 1011424 33.367 0.391 39.767136 -79.466755 +15460 120 47 1083961 181956 0.419 0.070 39.807966 -79.907168 +15461 4333 1992 27348492 619779 10.559 0.239 39.842683 -79.900068 +15462 398 168 3663336 0 1.414 0.000 40.064295 -79.378703 +15463 64 31 816354 0 0.315 0.000 39.965563 -79.899834 +15464 1536 667 119073944 1405531 45.975 0.543 39.930138 -79.436202 +15466 458 214 1105417 363120 0.427 0.140 40.075047 -79.890057 +15467 141 68 2590350 385152 1.000 0.149 39.784842 -79.925752 +15468 2303 1061 26011583 26824 10.043 0.010 39.950182 -79.832679 +15469 2331 975 87942217 276920 33.955 0.107 40.009819 -79.418394 +15470 982 512 81705154 491575 31.547 0.190 39.867154 -79.532018 +15472 306 130 630497 0 0.243 0.000 39.919373 -79.716851 +15473 3862 1792 60371945 445066 23.310 0.172 40.043825 -79.790742 +15474 2049 943 18174349 1003025 7.017 0.387 39.752149 -79.891941 +15475 1356 705 8371453 0 3.232 0.000 39.951649 -79.877545 +15476 157 79 98143 0 0.038 0.000 39.869730 -79.920611 +15477 855 417 490606 195520 0.189 0.075 40.078203 -79.863966 +15478 6446 2729 162629778 12003 62.792 0.005 39.787462 -79.804657 +15479 2113 948 54969797 769437 21.224 0.297 40.151237 -79.707539 +15480 1946 851 46857545 81072 18.092 0.031 39.985198 -79.773861 +15482 604 293 2990720 44428 1.155 0.017 40.061488 -79.766067 +15483 513 257 711436 97282 0.275 0.038 40.083020 -79.850922 +15484 328 146 1647825 0 0.636 0.000 39.892689 -79.783677 +15486 2303 987 50566480 433919 19.524 0.168 40.025886 -79.711164 +15489 389 174 2417238 0 0.933 0.000 39.966381 -79.696055 +15490 628 262 24863951 0 9.600 0.000 40.072382 -79.454496 +15492 108 53 1560968 165960 0.603 0.064 40.118305 -79.764298 +15501 16861 7700 346970117 1482666 133.966 0.572 40.039742 -79.129820 +15502 191 775 15500968 25358 5.985 0.010 40.041717 -79.241687 +15510 2229 1 876630 0 0.338 0.000 39.967492 -79.039908 +15520 293 120 1754124 0 0.677 0.000 40.106367 -79.060539 +15521 1872 793 92166462 10522 35.586 0.004 40.207596 -78.638662 +15522 12036 5967 485184074 2536615 187.331 0.979 39.941725 -78.548385 +15530 5368 2310 226665820 85830 87.516 0.033 39.940809 -78.924027 +15531 3861 1934 152781035 488142 58.989 0.188 40.183936 -79.082097 +15532 142 64 1748645 0 0.675 0.000 39.762035 -79.060801 +15533 1370 728 96472498 726360 37.248 0.280 39.992892 -78.224303 +15534 932 445 125654694 35062 48.516 0.014 39.899323 -78.691280 +15535 2203 1262 408605446 297285 157.763 0.115 39.821115 -78.443779 +15536 459 261 88070983 675 34.004 0.000 39.954555 -78.203555 +15537 7952 3801 290200532 2580147 112.047 0.996 40.000385 -78.366843 +15538 824 621 192681359 18826 74.395 0.007 39.863715 -78.834458 +15539 498 211 3567577 0 1.377 0.000 40.128409 -78.591380 +15540 290 257 93252205 1520263 36.005 0.587 39.797439 -79.239272 +15541 3721 1776 93121694 673623 35.954 0.260 40.043876 -78.971391 +15542 1175 529 84774169 0 32.731 0.000 39.875694 -79.071544 +15544 264 108 1506529 0 0.582 0.000 40.135638 -79.093436 +15545 2879 1333 128036412 466605 49.435 0.180 39.802265 -78.752510 +15546 386 172 1998155 0 0.771 0.000 40.136624 -79.047988 +15547 504 237 2346900 0 0.906 0.000 40.162146 -79.071708 +15550 1699 1041 140496123 501721 54.246 0.194 39.978253 -78.649618 +15551 860 443 93040958 16785 35.923 0.006 39.868549 -79.283167 +15552 6115 2753 270376039 89992 104.393 0.035 39.792770 -78.991010 +15554 2553 1197 92365552 295669 35.663 0.114 40.122918 -78.621785 +15555 112 51 194408 0 0.075 0.000 40.092408 -79.082247 +15557 3684 2110 235092082 297558 90.770 0.115 39.927663 -79.218371 +15558 2126 909 94122748 45120 36.341 0.017 39.748420 -79.110357 +15559 1968 937 120614646 2038808 46.570 0.787 40.060248 -78.691065 +15560 175 76 344077 0 0.133 0.000 40.016558 -78.907139 +15561 168 80 1481919 0 0.572 0.000 40.095599 -79.087672 +15562 201 74 4203501 15903 1.623 0.006 39.739533 -79.134556 +15563 3345 1645 147021510 7139 56.765 0.003 40.097575 -78.928920 +15564 50 28 3126150 0 1.207 0.000 39.729993 -78.837774 +15601 59483 26798 223247865 409333 86.196 0.158 40.315028 -79.535741 +15610 3738 1767 99891785 158133 38.568 0.061 40.146956 -79.417201 +15611 543 306 1784469 0 0.689 0.000 40.306516 -79.652640 +15612 474 205 6494180 0 2.507 0.000 40.137347 -79.599717 +15613 13933 6138 154714575 2124745 59.736 0.820 40.553591 -79.569029 +15615 387 154 2548093 0 0.984 0.000 40.365308 -79.734156 +15616 23 13 138418 17833 0.053 0.007 40.222755 -79.553298 +15617 367 164 1140917 6564 0.441 0.003 40.268182 -79.655373 +15618 2634 1202 71771097 798851 27.711 0.308 40.571026 -79.439869 +15620 911 441 2475983 0 0.956 0.000 40.323545 -79.338689 +15621 47 20 16634 0 0.006 0.000 40.213857 -79.483456 +15622 1387 1903 83898073 14139 32.393 0.005 40.049534 -79.329115 +15623 762 329 4507343 0 1.740 0.000 40.367199 -79.620342 +15624 410 217 1610872 0 0.622 0.000 40.364860 -79.470200 +15625 144 61 1519026 0 0.586 0.000 40.269506 -79.679749 +15626 5105 2493 10217810 0 3.945 0.000 40.406993 -79.576158 +15627 6544 3034 73550737 189283 28.398 0.073 40.351006 -79.300048 +15628 525 292 6611007 0 2.553 0.000 40.100489 -79.373415 +15629 676 367 332499 48467 0.128 0.019 40.597437 -79.562908 +15631 1075 494 2022063 0 0.781 0.000 40.087482 -79.585356 +15632 9363 4154 70186315 1733693 27.099 0.669 40.439145 -79.600116 +15633 293 137 1632462 0 0.630 0.000 40.357319 -79.523907 +15634 523 264 391411 0 0.151 0.000 40.323945 -79.604923 +15635 220 115 782033 13683 0.302 0.005 40.347904 -79.501557 +15636 3946 1433 7678207 0 2.965 0.000 40.365470 -79.657084 +15637 1861 893 12093561 0 4.669 0.000 40.264955 -79.711818 +15638 288 149 461825 0 0.178 0.000 40.264322 -79.398961 +15639 2301 1033 29854633 81041 11.527 0.031 40.203514 -79.593806 +15640 378 160 1871235 0 0.722 0.000 40.224626 -79.729265 +15641 500 237 622689 143230 0.240 0.055 40.631589 -79.589207 +15642 45286 19410 114475840 153967 44.199 0.059 40.318382 -79.723736 +15644 18836 9046 57207317 0 22.088 0.000 40.347383 -79.611245 +15646 233 123 3697987 0 1.428 0.000 40.082173 -79.326493 +15647 314 153 737101 0 0.285 0.000 40.342501 -79.729198 +15650 28432 12619 193336516 251950 74.648 0.097 40.277177 -79.392907 +15655 423 239 33374728 22763 12.886 0.009 40.190161 -79.160179 +15656 10298 4787 97476844 2972670 37.636 1.148 40.656904 -79.629005 +15658 8916 4835 254326324 816971 98.196 0.315 40.248486 -79.226466 +15660 323 142 1351936 0 0.522 0.000 40.244601 -79.774390 +15661 504 241 958675 0 0.370 0.000 40.322166 -79.360131 +15662 271 127 424967 0 0.164 0.000 40.334318 -79.478335 +15663 455 220 2543196 0 0.982 0.000 40.251846 -79.679271 +15665 1472 664 2237022 0 0.864 0.000 40.339497 -79.660846 +15666 16461 7631 142447025 495576 54.999 0.191 40.161024 -79.509814 +15668 13139 5446 61036704 17005 23.566 0.007 40.460564 -79.670009 +15670 3649 1627 99026685 274125 38.234 0.106 40.405600 -79.436918 +15671 865 381 8269715 0 3.193 0.000 40.356289 -79.321800 +15672 3334 1633 30067677 67340 11.609 0.026 40.243792 -79.621588 +15673 1296 599 1398119 142950 0.540 0.055 40.593808 -79.556616 +15675 1003 444 2397734 0 0.926 0.000 40.335305 -79.637074 +15676 437 199 2406431 0 0.929 0.000 40.240835 -79.465715 +15677 389 297 50883961 0 19.646 0.000 40.143126 -79.237310 +15678 476 235 1485175 0 0.573 0.000 40.287221 -79.726231 +15679 3343 1494 60879861 123500 23.506 0.048 40.175948 -79.653825 +15680 101 45 30739 0 0.012 0.000 40.520777 -79.499279 +15681 5241 2288 135416464 4108717 52.285 1.586 40.500308 -79.439346 +15683 8248 3805 40413195 19178 15.604 0.007 40.107213 -79.608307 +15684 841 410 13008184 0 5.022 0.000 40.460696 -79.520663 +15686 972 418 26309733 214235 10.158 0.083 40.623446 -79.431311 +15687 1476 686 74773608 339857 28.870 0.131 40.136223 -79.316448 +15688 641 302 4029923 0 1.556 0.000 40.168606 -79.584793 +15689 229 111 261668 0 0.101 0.000 40.221425 -79.491440 +15690 9078 4513 63204969 723212 24.404 0.279 40.641350 -79.549422 +15691 70 32 86131 0 0.033 0.000 40.295377 -79.686141 +15692 941 433 1178838 0 0.455 0.000 40.331755 -79.678914 +15693 189 89 179063 0 0.069 0.000 40.253148 -79.407701 +15695 337 153 1395835 0 0.539 0.000 40.197278 -79.693244 +15696 384 186 339420 0 0.131 0.000 40.280112 -79.366167 +15697 3038 1589 4652835 23955 1.796 0.009 40.241129 -79.579932 +15698 791 406 3914196 42911 1.511 0.017 40.214346 -79.688567 +15701 34704 14369 298614884 4467880 115.296 1.725 40.628381 -79.150041 +15710 266 119 4313724 11304 1.666 0.004 40.642728 -78.871669 +15711 412 192 3234775 13260 1.249 0.005 41.018425 -78.955620 +15712 151 72 4202679 0 1.623 0.000 40.790456 -78.847887 +15713 294 116 3405399 0 1.315 0.000 40.569757 -79.261680 +15714 5323 2409 71058754 7815 27.436 0.003 40.651306 -78.825059 +15715 621 294 1750897 49530 0.676 0.019 40.970724 -78.877430 +15716 683 297 2095417 5852 0.809 0.002 40.465148 -79.186897 +15717 10847 5018 245945346 5579729 94.960 2.154 40.457271 -79.243322 +15721 234 107 4987441 147746 1.926 0.057 40.816322 -78.792568 +15722 2432 1067 52883999 27915 20.419 0.011 40.595253 -78.723896 +15723 46 28 2718491 17919 1.050 0.007 40.698747 -79.158676 +15724 2412 1123 122370366 448512 47.247 0.173 40.735096 -78.813634 +15725 1446 636 77558381 1514537 29.945 0.585 40.518948 -79.348779 +15727 168 92 3548955 0 1.370 0.000 40.558009 -79.309754 +15728 3701 1635 110850354 225091 42.800 0.087 40.675665 -78.971780 +15729 1537 655 49266620 66194 19.022 0.026 40.706445 -78.915125 +15730 69 34 2152509 16822 0.831 0.006 41.057594 -79.094938 +15731 315 166 616923 0 0.238 0.000 40.503767 -79.176410 +15732 1669 693 76332518 200206 29.472 0.077 40.727686 -79.211872 +15733 108 45 1029791 18100 0.398 0.007 40.988862 -78.959295 +15734 322 147 3710171 0 1.433 0.000 40.724797 -79.001265 +15736 613 287 8532605 0 3.294 0.000 40.701250 -79.366445 +15737 83 46 457561 0 0.177 0.000 40.601258 -78.759013 +15738 265 127 6789686 0 2.622 0.000 40.691553 -78.785122 +15739 462 212 1646097 28850 0.636 0.011 40.674249 -79.168735 +15741 83 45 4543298 5873 1.754 0.002 40.802488 -78.891033 +15742 950 462 60815797 169372 23.481 0.065 40.816978 -78.864006 +15744 105 60 11502187 294438 4.441 0.114 40.922559 -79.084009 +15745 337 148 3682946 0 1.422 0.000 40.623001 -78.915191 +15746 135 71 3964649 17924 1.531 0.007 40.758509 -78.889294 +15747 2027 857 79163372 104237 30.565 0.040 40.775788 -79.145875 +15748 7060 3144 192179624 1722059 74.201 0.665 40.523638 -79.084150 +15750 245 125 1257773 0 0.486 0.000 40.484780 -79.180918 +15752 54 31 117143 0 0.045 0.000 40.540593 -79.283249 +15753 513 313 101349794 441777 39.131 0.171 40.795648 -78.653877 +15754 502 227 1120886 0 0.433 0.000 40.556656 -79.151524 +15756 207 97 2280580 2644 0.881 0.001 40.565527 -79.296945 +15757 1618 1105 205459653 1185718 79.328 0.458 40.891237 -78.739058 +15759 3004 1229 148326467 130398 57.269 0.050 40.773017 -79.031699 +15760 152 56 4079589 0 1.575 0.000 40.648324 -78.800199 +15761 111 46 2681155 0 1.035 0.000 40.632245 -78.889807 +15762 823 332 34615657 32898 13.365 0.013 40.594306 -78.829301 +15764 163 77 4399310 17821 1.699 0.007 40.992622 -79.028710 +15765 1707 766 97165620 1598121 37.516 0.617 40.597935 -78.991085 +15767 14668 6738 428089161 2170323 165.286 0.838 40.962153 -78.968171 +15770 184 89 10592931 51581 4.090 0.020 41.008788 -79.136717 +15771 991 524 86597248 444537 33.435 0.172 40.831556 -78.989145 +15772 1715 762 82609749 340831 31.896 0.132 40.870214 -78.898714 +15773 516 207 9852899 0 3.804 0.000 40.626766 -78.735444 +15774 3029 1335 138968033 2005434 53.656 0.774 40.654690 -79.323835 +15775 751 340 8961331 14751 3.460 0.006 40.632482 -78.788141 +15776 52 31 5632759 17302 2.175 0.007 41.010988 -79.111592 +15777 170 85 2906493 0 1.122 0.000 40.693760 -78.965439 +15778 140 67 2354798 3151 0.909 0.001 40.969117 -79.195246 +15779 414 100 20486348 311103 7.910 0.120 40.385675 -79.219703 +15780 148 60 3320410 1254 1.282 0.000 40.912437 -79.070466 +15781 94 50 2714810 0 1.048 0.000 40.963797 -78.986853 +15783 140 62 5379304 44901 2.077 0.017 40.607310 -79.349659 +15784 67 35 864326 22470 0.334 0.009 41.024426 -79.141266 +15801 19270 9247 167419747 2871706 64.641 1.109 41.125057 -78.722433 +15821 164 486 92000991 667966 35.522 0.258 41.350958 -78.368514 +15823 1431 694 95419042 239976 36.841 0.093 41.258613 -78.710427 +15824 5407 2475 189121805 815359 73.020 0.315 41.250833 -78.841186 +15825 9562 4773 415347068 2279647 160.366 0.880 41.174947 -79.034401 +15827 231 107 7455502 0 2.879 0.000 41.319159 -78.521654 +15828 286 555 60820778 1023029 23.483 0.395 41.384837 -79.115706 +15829 1274 661 91603501 472165 35.368 0.182 41.169298 -79.202144 +15832 328 834 280879710 2008730 108.448 0.776 41.349495 -78.187384 +15834 4533 2887 528717827 1536321 204.139 0.593 41.500749 -78.322815 +15840 1993 913 49715366 691813 19.195 0.267 41.171972 -78.822649 +15841 389 177 10826872 0 4.180 0.000 41.262939 -78.529883 +15845 3197 1611 80380824 1334971 31.035 0.515 41.494238 -78.689455 +15846 3636 1730 240145320 172829 92.721 0.067 41.319687 -78.572392 +15847 255 127 7032509 10600 2.715 0.004 41.090187 -79.032482 +15848 1027 427 52308145 250384 20.196 0.097 41.028097 -78.730381 +15849 1399 1012 202898179 523036 78.339 0.202 41.164492 -78.582254 +15851 6671 3062 242432841 1099426 93.604 0.424 41.102906 -78.910417 +15853 6578 3721 390223574 2674222 150.666 1.033 41.392343 -78.791631 +15856 889 517 94124910 992919 36.342 0.383 41.082255 -78.613385 +15857 13212 6190 259401633 526032 100.156 0.203 41.455283 -78.519875 +15860 1065 1725 321805149 2184550 124.250 0.843 41.333594 -79.018668 +15861 174 575 174553491 1595299 67.395 0.616 41.308530 -78.069054 +15863 225 108 1739826 0 0.672 0.000 41.014385 -78.839736 +15864 1845 854 94709389 494886 36.568 0.191 41.103580 -79.197538 +15865 1295 642 8699006 19883 3.359 0.008 41.044954 -78.828292 +15866 261 97 3211867 929 1.240 0.000 41.023892 -78.791035 +15868 1350 1012 245151790 1178640 94.654 0.455 41.301774 -78.327211 +15870 1326 1115 330472174 4964012 127.596 1.917 41.594121 -78.567901 +15901 4190 2851 3836779 140170 1.481 0.054 40.328742 -78.914292 +15902 12513 6503 23599705 127148 9.112 0.049 40.323205 -78.879287 +15904 16608 7309 79445855 516201 30.674 0.199 40.311595 -78.840989 +15905 21226 9971 92832747 706466 35.843 0.273 40.290673 -78.969902 +15906 11144 5876 90230908 962187 34.838 0.372 40.379677 -78.955677 +15909 5611 2642 44494654 216598 17.179 0.084 40.409742 -78.869741 +15920 922 396 20187128 11567 7.794 0.004 40.474500 -79.047534 +15921 176 77 851113 0 0.329 0.000 40.317338 -78.700860 +15922 177 81 1784285 0 0.689 0.000 40.517598 -78.876676 +15923 1770 788 67452166 418108 26.043 0.161 40.355220 -79.158504 +15924 1034 519 68917847 49603 26.609 0.019 40.103423 -78.762858 +15925 147 71 197872 0 0.076 0.000 40.408519 -78.640702 +15926 2676 1613 72740383 2037864 28.085 0.787 40.053269 -78.823632 +15927 1176 496 12326706 0 4.759 0.000 40.539999 -78.778646 +15928 1974 945 16182997 77645 6.248 0.030 40.239529 -78.918459 +15929 75 36 1496033 113728 0.578 0.044 40.468246 -79.008637 +15930 241 142 736773 0 0.284 0.000 40.294969 -78.719020 +15931 9148 3778 200843582 962228 77.546 0.372 40.506489 -78.758964 +15934 218 102 882866 0 0.341 0.000 40.279061 -78.803986 +15935 2620 1157 62442265 3588756 24.109 1.386 40.208131 -78.965027 +15936 1620 735 63681731 84058 24.588 0.032 40.160910 -78.892595 +15937 779 348 2498262 0 0.965 0.000 40.205329 -78.984732 +15938 2583 1086 51290685 62911 19.803 0.024 40.418854 -78.611126 +15940 3992 770 68904348 179489 26.604 0.069 40.517034 -78.625208 +15942 2079 889 48015006 568461 18.539 0.219 40.398324 -78.811023 +15943 3942 1836 49907726 122835 19.269 0.047 40.474268 -78.839052 +15944 3472 1613 170784467 1062637 65.940 0.410 40.363888 -79.079159 +15945 198 74 1524817 117810 0.589 0.045 40.358484 -78.867092 +15946 7093 3218 130795324 691865 50.500 0.267 40.370295 -78.637116 +15948 550 235 1912268 0 0.738 0.000 40.489957 -78.764640 +15949 672 294 6691010 468010 2.583 0.181 40.396682 -79.120654 +15951 453 239 2802468 17341 1.082 0.007 40.333148 -78.770700 +15952 1413 611 8572842 0 3.310 0.000 40.303506 -78.776141 +15953 83 37 2145376 1871 0.828 0.001 40.208513 -78.885159 +15954 2413 1102 46996990 624634 18.146 0.241 40.424054 -78.998119 +15955 2551 1140 65283483 1466669 25.206 0.566 40.322865 -78.697386 +15956 2739 1269 20853620 239360 8.052 0.092 40.350555 -78.795942 +15957 755 311 24551669 31858 9.479 0.012 40.557624 -78.902282 +15958 2301 949 49426462 95688 19.084 0.037 40.387524 -78.730422 +15960 425 198 12244862 122588 4.728 0.047 40.497161 -78.884169 +15961 854 401 43358311 427412 16.741 0.165 40.471096 -78.941795 +15962 149 65 523371 0 0.202 0.000 40.388180 -78.715039 +15963 11114 5264 253107104 534272 97.725 0.206 40.227773 -78.759251 +16001 40371 19019 190155984 3040997 73.420 1.174 40.910025 -79.945191 +16002 15877 6366 187002976 177567 72.202 0.069 40.815135 -79.855361 +16020 1150 490 66025419 0 25.493 0.000 41.115334 -79.898582 +16022 368 156 2079662 0 0.803 0.000 41.054140 -79.733691 +16023 4169 1923 68120212 0 26.301 0.000 40.785483 -79.750313 +16024 209 86 611593 0 0.236 0.000 40.742716 -80.038538 +16025 5564 2284 137814359 148853 53.210 0.057 40.942432 -79.753380 +16027 306 116 1373158 0 0.530 0.000 40.820154 -80.019183 +16028 1886 1184 41291276 1283922 15.943 0.496 40.951317 -79.635554 +16029 705 318 2241392 0 0.865 0.000 40.879153 -79.846169 +16030 316 146 2806303 0 1.084 0.000 41.136395 -79.796967 +16033 6165 2640 80026877 46584 30.899 0.018 40.783878 -80.051087 +16034 2054 815 51397356 24076 19.845 0.009 40.861209 -79.733208 +16035 122 48 1450105 7077 0.560 0.003 41.108993 -80.014526 +16036 200 112 5784808 1194319 2.234 0.461 41.134894 -79.666595 +16037 4589 1850 90256741 449725 34.848 0.174 40.842611 -80.133751 +16038 3517 1515 123890123 14262 47.834 0.006 41.164483 -79.953343 +16040 975 421 50811920 8983 19.619 0.003 41.094245 -79.840200 +16041 1888 929 71988736 0 27.795 0.000 41.005338 -79.714928 +16045 1195 626 1496365 0 0.578 0.000 40.852774 -79.916718 +16046 14396 5799 58879357 21211 22.733 0.008 40.702755 -80.023915 +16048 139 55 2861880 0 1.105 0.000 41.053202 -79.818427 +16049 3241 1715 239133719 5770607 92.330 2.228 41.094067 -79.671823 +16050 1546 640 63687358 17634 24.590 0.007 41.043999 -79.761561 +16051 3043 1373 100846238 7867335 38.937 3.038 40.944894 -80.138143 +16052 2447 1056 52113467 2309620 20.121 0.892 40.899377 -80.061572 +16053 4020 1699 55566721 0 21.454 0.000 40.811869 -79.983142 +16054 497 229 4893130 112899 1.889 0.044 41.153536 -79.663009 +16055 8486 3455 100864587 224138 38.944 0.087 40.717488 -79.747709 +16056 4791 2185 54870543 33891 21.186 0.013 40.724934 -79.841706 +16057 13909 5236 225939411 1623817 87.236 0.627 41.034074 -80.060300 +16059 7738 3283 66478812 189233 25.668 0.073 40.707082 -79.927088 +16061 2761 1151 113835425 773252 43.952 0.299 41.005109 -79.884740 +16063 6559 3264 46058024 166907 17.783 0.064 40.762315 -80.122900 +16066 28060 10756 57887280 13635 22.350 0.005 40.709967 -80.105642 +16101 34042 15658 184511410 1816197 71.240 0.701 40.983989 -80.290037 +16102 5755 2564 62263838 839191 24.040 0.324 40.960367 -80.424431 +16105 15448 7172 71042479 748111 27.430 0.289 41.057381 -80.340317 +16110 314 156 19499290 44612 7.529 0.017 41.505249 -80.380762 +16111 1409 476 72702699 0 28.071 0.000 41.520379 -80.282617 +16112 1571 691 17409600 773746 6.722 0.299 40.960467 -80.498397 +16113 448 175 1890756 236247 0.730 0.091 41.280826 -80.424148 +16114 606 249 26285241 425902 10.149 0.164 41.402848 -80.183931 +16115 3287 1422 104141404 315088 40.209 0.122 40.796605 -80.460695 +16116 3074 1395 68435087 1648814 26.423 0.637 41.044162 -80.449625 +16117 17185 7914 95301308 1601209 36.796 0.618 40.871839 -80.256197 +16120 2463 1107 85729592 383566 33.100 0.148 40.885089 -80.478966 +16121 4941 2520 5879404 0 2.270 0.000 41.211214 -80.497194 +16123 2237 977 52423519 622377 20.241 0.240 40.821932 -80.196513 +16124 2228 888 72566019 7040 28.018 0.003 41.336170 -80.276062 +16125 18186 8157 283333404 230218 109.396 0.089 41.406356 -80.372825 +16127 16145 5888 186045536 1343348 71.833 0.519 41.173009 -80.072998 +16130 2023 904 80148638 1301071 30.946 0.502 41.444632 -80.222949 +16131 933 400 54121371 447833 20.896 0.173 41.550522 -80.378230 +16132 355 178 4577508 621001 1.767 0.240 41.004767 -80.500832 +16133 1573 668 71833114 726786 27.735 0.281 41.267791 -80.114451 +16134 3886 2819 121305027 14386503 46.836 5.555 41.524926 -80.478857 +16136 801 401 1909517 91074 0.737 0.035 40.834939 -80.323707 +16137 12941 5179 279692703 1591169 107.990 0.614 41.231618 -80.238644 +16140 123 66 446348 0 0.172 0.000 41.095323 -80.514030 +16141 1806 839 53149607 295653 20.521 0.114 40.868089 -80.398468 +16142 7056 2282 108651272 262560 41.950 0.101 41.145414 -80.333181 +16143 2901 1293 67680098 409931 26.131 0.158 41.105824 -80.452682 +16145 2726 1326 125366980 5203380 48.404 2.009 41.380196 -80.078627 +16146 14040 7138 9896383 0 3.821 0.000 41.234113 -80.499672 +16148 16959 8086 83053048 275309 32.067 0.106 41.228484 -80.417588 +16150 7426 3328 59502091 6381194 22.974 2.464 41.285145 -80.453250 +16151 77 38 302185 0 0.117 0.000 41.443900 -80.206786 +16153 2624 1213 111992182 509396 43.240 0.197 41.322240 -80.086586 +16154 2492 1094 67463760 7143371 26.048 2.758 41.325901 -80.420117 +16155 103 46 1754358 0 0.677 0.000 41.067732 -80.510731 +16156 3319 1347 128997997 1102695 49.806 0.426 41.088767 -80.216432 +16157 3477 1532 64856557 1098326 25.041 0.424 40.888212 -80.333383 +16159 4706 2109 70592696 109492 27.256 0.042 41.153413 -80.475263 +16160 864 430 3234220 183778 1.249 0.071 40.930558 -80.356894 +16161 644 374 2264627 0 0.874 0.000 41.197090 -80.495844 +16201 18214 8360 296949508 2612792 114.653 1.009 40.805185 -79.469413 +16210 1014 523 51149310 2825365 19.749 1.091 40.895902 -79.510523 +16211 104 47 2621590 0 1.012 0.000 40.794443 -79.202555 +16212 339 163 2504442 313752 0.967 0.121 40.755157 -79.583624 +16213 204 100 372959 1093 0.144 0.000 41.125669 -79.557671 +16214 10127 4410 127467255 2491815 49.215 0.962 41.202672 -79.357224 +16217 101 163 14606240 114295 5.640 0.044 41.331192 -79.173680 +16218 1195 561 73462230 614713 28.364 0.237 40.933435 -79.590649 +16222 2526 1104 170416350 1511455 65.798 0.584 40.873676 -79.257028 +16223 154 73 2802938 0 1.082 0.000 40.975988 -79.363954 +16224 1181 527 51937648 247407 20.053 0.096 41.065080 -79.294860 +16226 8279 4197 149901519 4365362 57.877 1.685 40.711646 -79.486425 +16228 371 180 196837 0 0.076 0.000 40.760813 -79.535765 +16229 4997 2198 64478444 2586256 24.895 0.999 40.717124 -79.642747 +16230 494 204 2653923 154328 1.025 0.060 41.020475 -79.283324 +16232 4281 1973 147751720 952945 57.047 0.368 41.213586 -79.551242 +16233 1246 1180 104766751 542608 40.451 0.210 41.361240 -79.271067 +16235 1256 590 72958168 250360 28.169 0.097 41.322665 -79.352329 +16236 262 127 170198 209162 0.066 0.081 40.787838 -79.522661 +16238 410 183 240096 48952 0.093 0.019 40.787837 -79.520848 +16239 4172 2489 510545777 441391 197.123 0.170 41.496972 -79.137779 +16240 1533 736 138983329 1018288 53.662 0.393 41.036013 -79.225000 +16242 4693 2217 234358726 3253248 90.486 1.256 41.009881 -79.365745 +16244 265 112 3123148 0 1.206 0.000 40.792176 -79.276658 +16245 207 95 1536450 0 0.593 0.000 41.006720 -79.298366 +16246 252 118 876661 0 0.338 0.000 40.791720 -79.182154 +16248 3130 1487 134934581 2723611 52.099 1.052 41.034002 -79.502977 +16249 2089 931 71904500 1011194 27.762 0.390 40.761947 -79.312139 +16250 315 149 7137729 802587 2.756 0.310 40.768512 -79.232968 +16253 91 45 547158 0 0.211 0.000 40.951168 -79.342756 +16254 3471 1605 132044957 1412024 50.983 0.545 41.253345 -79.461458 +16255 1943 848 105947691 914827 40.907 0.353 41.128813 -79.466757 +16256 2084 639 103207236 1226682 39.849 0.474 40.855267 -79.134458 +16258 1869 1200 88369628 820680 34.120 0.317 41.236936 -79.278339 +16259 1934 1066 120056995 4245874 46.354 1.639 40.925711 -79.451859 +16260 296 266 24078247 108695 9.297 0.042 41.396463 -79.230763 +16262 3007 1288 90556479 0 34.964 0.000 40.839032 -79.652206 +16263 317 138 4066288 0 1.570 0.000 40.801717 -79.336609 +16301 16321 8118 276087712 5818345 106.598 2.246 41.454216 -79.623854 +16311 564 312 38032125 314970 14.684 0.122 41.462166 -80.042383 +16312 25 12 72297 0 0.028 0.000 41.932135 -79.303214 +16313 1848 1377 254732911 351850 98.353 0.136 41.733693 -79.122409 +16314 5507 2714 235998628 1237935 91.120 0.478 41.520676 -80.077072 +16316 5436 4141 123002962 4102811 47.492 1.584 41.601773 -80.303633 +16317 1456 703 77374554 0 29.874 0.000 41.532556 -79.853702 +16319 1355 581 88774531 44678 34.276 0.017 41.324204 -79.623458 +16321 76 95 3298560 0 1.274 0.000 41.571060 -79.399591 +16322 158 146 15812230 0 6.105 0.000 41.598847 -79.373564 +16323 16372 7587 260759368 5491250 100.680 2.120 41.411920 -79.828317 +16326 391 169 17696870 20225 6.833 0.008 41.376158 -79.431740 +16327 2978 1277 171473356 885189 66.206 0.342 41.637082 -79.959566 +16328 80 43 146501 0 0.057 0.000 41.653227 -79.725540 +16329 528 396 21283419 1854007 8.218 0.716 41.798643 -79.258874 +16331 88 32 3410081 14252 1.317 0.006 41.293731 -79.558676 +16332 53 34 7763614 25225 2.998 0.010 41.356717 -79.369545 +16333 240 186 16967118 808 6.551 0.000 41.697329 -78.916770 +16334 338 141 14090077 4255 5.440 0.002 41.290554 -79.449351 +16335 28445 13013 290584091 2942242 112.195 1.136 41.631017 -80.155868 +16340 1990 1322 249424925 0 96.304 0.000 41.802378 -79.417669 +16341 2030 1169 175020637 0 67.576 0.000 41.566080 -79.549355 +16342 2281 1142 159926421 1913937 61.748 0.739 41.321887 -79.941497 +16343 449 210 12312620 1864661 4.754 0.720 41.426030 -79.752655 +16344 523 230 2313735 0 0.893 0.000 41.470393 -79.684546 +16345 3543 1788 231070362 7686246 89.217 2.968 41.944404 -79.082916 +16346 3247 1494 42560123 0 16.433 0.000 41.378502 -79.671970 +16347 2238 1787 266382063 16619 102.851 0.006 41.659517 -79.069365 +16350 2737 1051 119224759 87080 46.033 0.034 41.956937 -79.334446 +16351 1716 2609 257430753 4585553 99.395 1.770 41.675353 -79.370344 +16352 245 164 33168304 0 12.806 0.000 41.767268 -79.038364 +16353 3348 5036 376178737 6527750 145.243 2.520 41.495720 -79.373001 +16354 11379 5388 320850567 0 123.881 0.000 41.613725 -79.706464 +16360 1383 608 74434920 265249 28.739 0.102 41.684105 -79.890935 +16361 53 44 5645684 6440 2.180 0.002 41.383889 -79.345873 +16362 1102 582 68180387 838334 26.325 0.324 41.450497 -79.965179 +16364 1347 582 86526280 26683 33.408 0.010 41.351411 -79.527344 +16365 18579 9299 377505325 5860035 145.756 2.263 41.840224 -79.157385 +16370 358 586 32587217 1136289 12.582 0.439 41.574811 -79.460024 +16371 3260 1580 79337796 10988 30.632 0.004 41.869947 -79.326122 +16372 499 240 3073209 7694 1.187 0.003 41.200166 -79.872877 +16373 3510 1926 207239582 6675060 80.016 2.577 41.208469 -79.698409 +16374 1968 1802 184543765 1323659 71.253 0.511 41.263498 -79.815085 +16401 6581 1902 147670104 992072 57.016 0.383 41.878476 -80.405160 +16402 956 414 57294362 90103 22.121 0.035 41.961028 -79.469799 +16403 7029 2718 239709397 949048 92.552 0.366 41.792998 -80.014121 +16404 3269 1497 233528699 160468 90.166 0.062 41.727006 -79.789388 +16405 922 411 62801609 8121 24.248 0.003 41.946543 -79.535939 +16406 3509 1470 198130948 122951 76.499 0.047 41.749512 -80.362140 +16407 11317 4851 278349557 858043 107.471 0.331 41.922164 -79.664251 +16410 1854 704 58348756 232334 22.529 0.090 41.922751 -80.308509 +16411 1477 762 46020067 5182266 17.768 2.001 41.977956 -80.447072 +16412 10480 4711 207444932 1666206 80.095 0.643 41.884930 -80.170371 +16415 8916 3399 61399724 2257121 23.707 0.871 42.037520 -80.230320 +16416 203 103 10128460 0 3.911 0.000 41.825729 -79.472696 +16417 8329 3516 120190870 913901 46.406 0.353 41.971411 -80.313819 +16420 650 472 125967298 0 48.636 0.000 41.696300 -79.547259 +16421 2518 1012 27451943 46151 10.599 0.018 42.171262 -79.931855 +16422 401 184 3565315 77993 1.377 0.030 41.667558 -80.310175 +16423 4450 1854 24508036 2949960 9.463 1.139 42.020652 -80.339572 +16424 4676 3939 176844902 36850953 68.280 14.228 41.661408 -80.438957 +16426 3730 1558 70136937 294383 27.080 0.114 41.979331 -80.142080 +16427 193 76 671496 0 0.259 0.000 41.877373 -79.967907 +16428 12478 5251 190106239 9791807 73.400 3.781 42.171464 -79.831488 +16433 5384 2207 145596780 1466190 56.215 0.566 41.735686 -80.142804 +16434 2990 1069 162200615 266621 62.626 0.103 41.796904 -79.668625 +16435 2108 910 144519277 2315 55.799 0.001 41.817035 -80.385386 +16436 756 520 120415166 80118 46.493 0.031 41.838920 -79.510451 +16438 8083 4164 267438486 2054381 103.259 0.793 41.892299 -79.845314 +16440 891 464 28350628 42406 10.946 0.016 41.782549 -80.126018 +16441 10136 4045 291772575 2267120 112.654 0.875 41.958490 -79.983551 +16442 2958 1132 130298072 818150 50.308 0.316 42.038485 -79.825705 +16443 1425 594 29206878 318659 11.277 0.123 41.939645 -80.484235 +16444 1717 0 679444 33641 0.262 0.013 41.871286 -80.120436 +16501 2044 1471 1762373 13680 0.680 0.005 42.121293 -80.088919 +16502 16664 7894 6606084 0 2.551 0.000 42.110702 -80.101358 +16503 16850 6980 6336664 11266 2.447 0.004 42.126936 -80.061565 +16504 17322 7159 7220367 0 2.788 0.000 42.109074 -80.049031 +16505 17168 8554 30734858 16300702 11.867 6.294 42.131338 -80.138303 +16506 23720 10345 36260590 72539 14.000 0.028 42.062345 -80.151707 +16507 11088 4766 5441490 2457967 2.101 0.949 42.136958 -80.084294 +16508 16050 7214 7316297 27626 2.825 0.011 42.096812 -80.094030 +16509 26810 12307 98751206 100635 38.128 0.039 42.060034 -80.038075 +16510 25625 10299 84885083 40261 32.774 0.016 42.108738 -79.954574 +16511 11382 5004 19410241 5673983 7.494 2.191 42.166262 -79.990170 +16546 1154 0 142166 0 0.055 0.000 42.104924 -80.053445 +16563 1621 0 1149898 890 0.444 0.000 42.117333 -79.986486 +16601 33870 14980 224050639 1074511 86.506 0.415 40.555264 -78.370416 +16602 29554 13515 38334662 61739 14.801 0.024 40.512604 -78.373901 +16611 2410 1125 110715008 117328 42.747 0.045 40.579959 -78.115671 +16613 1535 639 66397717 0 25.636 0.000 40.548031 -78.537565 +16616 116 66 5918790 18325 2.285 0.007 40.767547 -78.440079 +16617 2806 1255 4205263 25522 1.624 0.010 40.607470 -78.322365 +16619 347 168 34502521 40932 13.321 0.016 40.659513 -78.445778 +16620 414 194 2215232 37554 0.855 0.014 40.840687 -78.351837 +16621 737 346 33781232 0 13.043 0.000 40.232247 -78.125214 +16622 175 94 19289629 0 7.448 0.000 40.328640 -78.066403 +16623 567 329 33440032 0 12.911 0.000 40.271681 -78.052188 +16624 204 95 3039410 0 1.174 0.000 40.570425 -78.600475 +16625 3868 1938 83009292 10534 32.050 0.004 40.274926 -78.504980 +16627 2278 1130 84273984 498518 32.538 0.192 40.757881 -78.497822 +16630 5080 2169 28375242 0 10.956 0.000 40.456176 -78.576441 +16631 90 35 1558077 0 0.602 0.000 40.272766 -78.345602 +16633 200 90 875263 0 0.338 0.000 40.157386 -78.234926 +16634 302 158 8881648 0 3.429 0.000 40.210954 -78.173077 +16635 11321 4990 147002596 245296 56.758 0.095 40.410853 -78.499413 +16636 742 349 72708568 17741 28.073 0.007 40.600318 -78.501203 +16637 2873 1322 48557976 0 18.748 0.000 40.341102 -78.467242 +16638 67 37 1781343 0 0.688 0.000 40.336605 -78.203622 +16639 1494 793 93562147 83628 36.125 0.032 40.695498 -78.448137 +16640 817 571 34256424 270211 13.226 0.104 40.707479 -78.576281 +16641 2598 1158 43653057 0 16.855 0.000 40.489794 -78.484985 +16645 142 63 4569468 114649 1.764 0.044 40.799362 -78.498965 +16646 2558 1072 49542594 253 19.129 0.000 40.689332 -78.727262 +16647 764 694 57005716 15390694 22.010 5.942 40.400575 -78.103813 +16648 15538 6548 149190055 1201127 57.603 0.464 40.434448 -78.331000 +16650 2036 1023 116335746 1097479 44.917 0.424 40.120958 -78.288103 +16651 5813 1762 109915455 665016 42.439 0.257 40.851288 -78.380980 +16652 18028 7329 457912424 10494024 176.801 4.052 40.516022 -77.950096 +16655 1601 687 90399805 70604 34.904 0.027 40.227556 -78.503123 +16656 1297 608 74273398 406535 28.677 0.157 40.807205 -78.556084 +16657 1343 1017 134711792 7045079 52.013 2.720 40.324864 -78.180282 +16659 303 135 4710037 0 1.819 0.000 40.161554 -78.389730 +16661 951 472 52403609 736598 20.233 0.284 40.831088 -78.460928 +16662 6040 2565 153031091 13716 59.086 0.005 40.312725 -78.295450 +16664 2104 768 105830724 91390 40.861 0.035 40.180753 -78.423648 +16665 299 134 1046105 0 0.404 0.000 40.388705 -78.434236 +16666 2960 1393 67398715 288833 26.023 0.112 40.885800 -78.327310 +16667 1392 582 43914102 176756 16.955 0.068 40.178297 -78.531657 +16668 3569 1633 140276407 6172359 54.161 2.383 40.655088 -78.619468 +16669 2351 1333 274597062 779072 106.023 0.301 40.655953 -77.906687 +16670 47 25 412436 0 0.159 0.000 40.262378 -78.507952 +16671 505 247 6322535 17594 2.441 0.007 40.787552 -78.398242 +16672 187 91 11222306 112246 4.333 0.043 40.172252 -78.241163 +16673 5519 2421 80427830 0 31.053 0.000 40.312437 -78.391483 +16674 736 450 58511292 0 22.591 0.000 40.189417 -78.088273 +16677 481 236 5971505 0 2.306 0.000 40.811839 -78.243597 +16678 2689 1371 117554742 3082685 45.388 1.190 40.222577 -78.238232 +16679 844 405 54486580 1919 21.037 0.001 40.155370 -78.194649 +16680 427 219 17494136 58386 6.755 0.023 40.743203 -78.377591 +16682 117 51 555565 0 0.215 0.000 40.266061 -78.457822 +16683 383 249 39337631 212957 15.188 0.082 40.648730 -78.084079 +16685 249 231 23609324 0 9.116 0.000 40.287492 -78.082637 +16686 13488 5970 349968958 566154 135.124 0.219 40.668341 -78.251286 +16689 462 215 53070466 0 20.491 0.000 40.129985 -78.128990 +16691 314 172 74803851 0 28.882 0.000 40.077493 -78.145934 +16692 753 342 43621628 235057 16.842 0.091 40.750827 -78.710802 +16693 4185 1780 194015724 111172 74.910 0.043 40.475774 -78.211876 +16694 254 118 5733772 23257 2.214 0.009 40.155301 -78.148799 +16695 1198 445 40839971 71788 15.768 0.028 40.203025 -78.336765 +16699 1469 0 164936 0 0.064 0.000 40.447211 -78.560505 +16701 17980 8212 558815238 22586302 215.760 8.721 41.918457 -78.750614 +16720 1392 2257 758188102 546563 292.738 0.211 41.603964 -78.017545 +16724 143 80 5831725 35396 2.252 0.014 41.731993 -78.369239 +16725 166 77 1133071 19328 0.437 0.007 41.908177 -78.655324 +16726 542 248 65960730 12602 25.468 0.005 41.814590 -78.572463 +16727 211 91 11163493 0 4.310 0.000 41.981005 -78.530040 +16728 25 21 14440369 0 5.575 0.000 41.565765 -78.924183 +16729 761 352 35867187 18092 13.848 0.007 41.962550 -78.477022 +16730 121 67 1515059 36331 0.585 0.014 41.817813 -78.422813 +16731 2818 1349 153650944 1368100 59.325 0.528 41.951380 -78.360377 +16732 293 134 17083316 0 6.596 0.000 41.857255 -78.617264 +16733 222 128 29709580 6994 11.471 0.003 41.695510 -78.582749 +16734 287 134 2102805 2906 0.812 0.001 41.617607 -78.840217 +16735 6309 3879 709157128 2572242 273.807 0.993 41.636098 -78.813409 +16738 2679 823 169533611 271568 65.457 0.105 41.809793 -78.719738 +16740 1032 649 109598885 255071 42.316 0.098 41.740956 -78.681499 +16743 3942 1980 277936292 1070735 107.312 0.413 41.767638 -78.232975 +16744 332 136 17809438 0 6.876 0.000 41.867085 -78.567081 +16745 611 252 29026965 44764 11.207 0.017 41.922273 -78.480505 +16746 1265 749 107816789 2213 41.628 0.001 41.793875 -78.122491 +16748 2997 1602 267341057 530357 103.221 0.205 41.947228 -78.144487 +16749 4319 2392 424543204 1487619 163.917 0.574 41.779550 -78.443291 +16750 417 203 49958175 208048 19.289 0.080 41.888978 -78.291593 +16801 42812 18494 81068153 0 31.301 0.000 40.778930 -77.841359 +16802 12764 5 2159902 0 0.834 0.000 40.802605 -77.860639 +16803 23685 11144 62776845 0 24.238 0.000 40.801680 -77.899616 +16820 1217 547 73607250 0 28.420 0.000 40.895701 -77.392432 +16821 318 129 2777818 4958 1.073 0.002 40.964394 -78.200900 +16822 2283 1237 254640586 616146 98.317 0.238 41.148300 -77.697030 +16823 26617 11023 332236712 200982 128.277 0.078 40.939052 -77.772647 +16825 240 107 1391036 6008 0.537 0.002 40.986770 -78.316466 +16826 616 311 8492327 0 3.279 0.000 41.053921 -77.580410 +16827 3991 1755 45389704 4845 17.525 0.002 40.767497 -77.767837 +16828 4478 2120 145736965 283722 56.269 0.110 40.812110 -77.680555 +16829 666 406 83493718 8548 32.237 0.003 41.081640 -77.893573 +16830 13695 6840 331562276 3251930 128.017 1.256 41.078863 -78.428601 +16832 510 391 44744515 50179 17.276 0.019 40.840309 -77.478044 +16833 5342 2505 185014736 3454867 71.435 1.334 40.944306 -78.576575 +16834 299 151 47202846 641199 18.225 0.248 41.051824 -78.087077 +16835 238 109 432101 0 0.167 0.000 40.907430 -77.877404 +16836 1152 1112 316048008 1736930 122.027 0.671 41.159719 -78.273540 +16837 186 79 2191681 5841 0.846 0.002 40.945440 -78.474451 +16838 1821 873 105884038 371933 40.882 0.144 40.991458 -78.636587 +16839 489 222 2769408 2488 1.069 0.001 41.003854 -78.110537 +16840 510 250 1964018 8469 0.758 0.003 40.924257 -78.203082 +16841 5934 2784 340961887 4498789 131.646 1.737 41.044614 -77.698187 +16843 657 358 1034053 9136 0.399 0.004 41.002756 -78.465645 +16844 2769 1251 162272147 0 62.654 0.000 40.909068 -77.932075 +16845 1088 546 314452197 2677003 121.411 1.034 41.121953 -78.018430 +16847 335 145 3340046 9943 1.290 0.004 40.999329 -78.165435 +16848 319 165 989733 57309 0.382 0.022 41.010623 -77.535879 +16849 331 159 10659502 11973 4.116 0.005 40.961737 -78.114665 +16851 866 354 10665992 0 4.118 0.000 40.821867 -77.787183 +16852 371 146 8708295 0 3.362 0.000 40.937031 -77.518663 +16853 300 151 689779 0 0.266 0.000 40.939209 -77.787059 +16854 947 444 6186551 0 2.389 0.000 40.898021 -77.473100 +16855 282 129 6930244 75747 2.676 0.029 40.996457 -78.375664 +16858 3688 1674 139079393 900808 53.699 0.348 40.998490 -78.202871 +16859 542 306 59074158 0 22.809 0.000 41.040743 -78.023238 +16860 451 216 14092488 36709 5.441 0.014 40.937935 -78.179793 +16861 311 166 31399543 74480 12.123 0.029 40.859321 -78.520556 +16863 718 353 65836404 931170 25.420 0.360 40.907850 -78.474641 +16865 1839 775 90836624 26160 35.072 0.010 40.712045 -77.995913 +16866 9881 4268 415045559 1125122 160.250 0.434 40.829329 -78.181338 +16868 483 231 1554749 0 0.600 0.000 40.731973 -77.880499 +16870 7046 2765 176357636 47101 68.092 0.018 40.801698 -78.063337 +16871 46 112 64531742 900692 24.916 0.348 41.186615 -78.025727 +16872 1551 696 150012648 0 57.920 0.000 40.967475 -77.358425 +16874 1371 669 89408104 25753 34.521 0.010 40.984823 -77.976008 +16875 3945 1910 201632693 71811 77.851 0.028 40.840788 -77.587318 +16876 311 129 2825600 5509 1.091 0.002 40.965638 -78.287646 +16877 1762 727 81875742 0 31.612 0.000 40.738693 -78.060782 +16878 1762 820 52845398 90644 20.404 0.035 40.948941 -78.323571 +16879 532 229 5625442 17518 2.172 0.007 40.969884 -78.150238 +16881 2232 969 81281143 1084765 31.383 0.419 41.026792 -78.320258 +16882 300 254 68347480 0 26.389 0.000 40.912451 -77.323471 +16901 10243 5342 602389595 1531193 232.584 0.591 41.721291 -77.337283 +16911 332 188 22477009 123432 8.678 0.048 41.656040 -77.127371 +16912 1776 920 65519066 78664 25.297 0.030 41.678438 -77.043261 +16914 2347 1105 195875063 966674 75.628 0.373 41.854216 -76.783666 +16915 5929 3631 630950568 63528 243.611 0.025 41.775304 -77.971204 +16917 1437 735 115203745 81698 44.480 0.032 41.721702 -77.056756 +16920 2006 899 24740195 25916 9.552 0.010 41.973608 -77.280838 +16921 475 658 159397876 34591 61.544 0.013 41.724126 -77.556256 +16922 2002 2049 396722131 235909 153.175 0.091 41.666212 -77.702302 +16923 1470 880 202874370 60951 78.330 0.024 41.950572 -77.870544 +16925 3186 1505 199819643 610919 77.151 0.236 41.948502 -76.783646 +16926 872 373 62750792 211286 24.228 0.082 41.727085 -76.701713 +16927 651 338 48903927 0 18.882 0.000 41.958712 -77.658709 +16928 1387 649 89399158 0 34.517 0.000 41.953340 -77.434495 +16929 2320 1078 119696142 33625 46.215 0.013 41.961010 -77.133505 +16930 1300 635 172842934 329710 66.735 0.127 41.583782 -77.138826 +16932 734 330 55061345 99246 21.259 0.038 41.778620 -76.939295 +16933 7488 2917 252456480 250555 97.474 0.097 41.819424 -77.062502 +16935 1256 672 129575530 20551 50.029 0.008 41.877494 -77.304722 +16936 2095 972 124966031 146785 48.250 0.057 41.951125 -76.967113 +16937 172 100 19005921 12838 7.338 0.005 41.967896 -77.710941 +16938 747 813 273885553 412393 105.748 0.159 41.581131 -77.367730 +16939 295 144 6970422 19475 2.691 0.008 41.662022 -77.028939 +16940 302 132 6051912 0 2.337 0.000 41.985396 -77.238250 +16941 69 34 6306921 0 2.435 0.000 41.988299 -77.758044 +16942 847 400 61318720 0 23.675 0.000 41.962524 -77.352245 +16943 549 447 97651807 43527 37.704 0.017 41.830161 -77.612813 +16946 2484 1207 159585866 4758623 61.616 1.837 41.908746 -77.137752 +16947 4818 2344 298543687 1378819 115.268 0.532 41.759502 -76.804051 +16948 1634 1142 239426102 51437 92.443 0.020 41.854715 -77.759215 +16950 3378 2011 296876604 476716 114.625 0.184 41.899908 -77.531951 +17002 784 287 35400284 4602 13.668 0.002 40.502470 -77.848424 +17003 11720 4495 122909251 508563 47.456 0.196 40.362358 -76.569599 +17004 5000 1811 126490774 141155 48.838 0.055 40.601458 -77.729530 +17005 368 162 1473762 0 0.569 0.000 40.602849 -76.809700 +17006 1052 699 199107502 580326 76.876 0.224 40.286783 -77.546042 +17007 5591 2240 53812369 489580 20.777 0.189 40.125794 -77.118771 +17009 2007 909 3849241 36129 1.486 0.014 40.636112 -77.565287 +17010 182 77 89253 0 0.034 0.000 40.277992 -76.582841 +17011 34586 14266 33710364 1586102 13.016 0.612 40.234830 -76.928846 +17013 34575 14956 111114300 1331805 42.901 0.514 40.242686 -77.197284 +17015 20798 8579 294442609 2072789 113.685 0.800 40.177826 -77.229536 +17016 799 440 1876777 0 0.725 0.000 40.277475 -76.402287 +17017 1755 797 56658971 9485859 21.876 3.663 40.637788 -76.882189 +17018 4313 1933 103162756 9842496 39.831 3.800 40.422061 -76.826124 +17019 17721 7207 163068595 234581 62.961 0.091 40.094023 -77.022059 +17020 9047 3836 148973301 2660900 57.519 1.027 40.414171 -77.041503 +17021 1088 661 135084676 27234 52.156 0.011 40.330526 -77.668192 +17022 29602 11592 142485582 579361 55.014 0.224 40.167052 -76.608920 +17023 3535 1507 58298725 0 22.509 0.000 40.584266 -76.816261 +17024 1893 817 81775013 86317 31.574 0.033 40.406931 -77.306813 +17025 16778 7195 39092898 160375 15.094 0.062 40.294093 -76.974481 +17026 3616 1417 58184912 92632 22.465 0.036 40.458441 -76.431397 +17027 2141 152 970341 32910 0.375 0.013 40.155886 -76.995529 +17028 3720 1577 63106345 29310 24.365 0.011 40.396460 -76.659197 +17029 371 154 3536348 147750 1.365 0.057 40.558017 -77.616997 +17030 832 366 10534586 0 4.067 0.000 40.609235 -76.725609 +17032 8192 3502 286109168 16778473 110.467 6.478 40.489927 -76.832842 +17033 16972 6912 66562783 402914 25.700 0.156 40.271823 -76.637562 +17034 2414 1280 1926206 56780 0.744 0.022 40.208610 -76.785532 +17035 839 497 91495858 1972 35.327 0.001 40.403786 -77.581315 +17036 21913 9208 70854854 633959 27.357 0.245 40.268941 -76.713129 +17037 1126 621 63930702 107148 24.684 0.041 40.434053 -77.421670 +17038 8219 3292 186611277 98908 72.051 0.038 40.467880 -76.555856 +17039 37 14 1554716 25288 0.600 0.010 40.292709 -76.240707 +17040 2787 1200 129493740 867150 49.998 0.335 40.322798 -77.304095 +17041 213 76 1457661 0 0.563 0.000 40.216634 -76.539605 +17042 37133 15622 171321585 406014 66.148 0.157 40.294817 -76.424823 +17043 5957 3152 5234306 6477 2.021 0.003 40.247578 -76.900145 +17044 21209 10147 254084999 4067295 98.103 1.570 40.577237 -77.594258 +17045 3350 1477 101566658 201437 39.215 0.078 40.597093 -77.000928 +17046 29790 12370 99030512 360737 38.236 0.139 40.381858 -76.429627 +17047 2526 1018 119278826 599217 46.054 0.231 40.376547 -77.428302 +17048 4046 1757 89841200 17973 34.688 0.007 40.576792 -76.761348 +17049 3360 1472 103697139 0 40.038 0.000 40.653038 -77.256087 +17050 32815 14292 83118906 1974541 32.092 0.762 40.247992 -77.026578 +17051 4653 2300 228108823 2611165 88.073 1.008 40.459518 -77.775772 +17052 1635 814 103938441 655334 40.131 0.253 40.276913 -77.986345 +17053 5001 2200 74492551 39727 28.762 0.015 40.325040 -77.026474 +17055 34237 15388 107911256 698545 41.665 0.270 40.182917 -77.004599 +17056 128 54 218736 0 0.084 0.000 40.537288 -77.354260 +17057 21329 9602 83672014 17449529 32.306 6.737 40.193562 -76.724573 +17058 1909 896 102191734 405971 39.456 0.157 40.505427 -77.552442 +17059 7579 3176 212691369 2269924 82.121 0.876 40.589702 -77.391092 +17060 1334 563 65156288 128384 25.157 0.050 40.469261 -77.893956 +17061 7157 3193 88498717 13839164 34.170 5.343 40.566373 -76.909363 +17062 3979 1738 210586649 2508128 81.308 0.968 40.546912 -77.187476 +17063 3311 1866 242609926 777143 93.672 0.300 40.761026 -77.484947 +17064 645 543 3068576 0 1.185 0.000 40.242231 -76.476111 +17065 4222 1771 22350839 438751 8.630 0.169 40.110206 -77.189025 +17066 5348 2675 82875708 1967283 31.998 0.760 40.352823 -77.869187 +17067 14232 5725 127074339 220399 49.064 0.085 40.390370 -76.315043 +17068 4298 1759 86973347 271047 33.581 0.105 40.410416 -77.178369 +17069 133 71 126935 0 0.049 0.000 40.453987 -76.970039 +17070 15692 7269 34738655 151573 13.413 0.059 40.202401 -76.865678 +17071 108 140 21551203 11044 8.321 0.004 40.298415 -77.601934 +17072 193 81 172924 0 0.067 0.000 40.233731 -77.081728 +17073 5271 1989 67346997 88983 26.003 0.034 40.302838 -76.255161 +17074 7477 3441 164773975 3865094 63.620 1.492 40.478901 -77.148585 +17075 123 63 386640 58438 0.149 0.023 40.394279 -77.834155 +17076 48 21 394260 0 0.152 0.000 40.616186 -77.311762 +17077 46 16 9293 0 0.004 0.000 40.403009 -76.535937 +17078 20218 8852 78486293 97183 30.304 0.038 40.287452 -76.581080 +17080 298 138 1241600 0 0.479 0.000 40.640678 -76.803100 +17081 352 155 1582454 0 0.611 0.000 40.201020 -77.283453 +17082 3588 1616 150702238 1389072 58.186 0.536 40.499479 -77.435532 +17083 109 46 92567 0 0.036 0.000 40.277602 -76.437595 +17084 4340 1847 82832455 312620 31.982 0.121 40.675513 -77.626648 +17086 2499 1014 98910376 109710 38.190 0.042 40.690624 -77.122007 +17087 2767 1039 31775066 132516 12.268 0.051 40.435744 -76.280818 +17088 823 335 4734916 0 1.828 0.000 40.300678 -76.294224 +17090 5216 2191 87640960 679460 33.838 0.262 40.318207 -77.181043 +17093 801 304 971094 629 0.375 0.000 40.307209 -76.930571 +17094 2392 1086 77625508 495366 29.971 0.191 40.581169 -77.198280 +17097 925 432 7807976 0 3.015 0.000 40.580098 -76.677428 +17098 2528 1209 25205627 0 9.732 0.000 40.588957 -76.632327 +17099 1179 530 3972809 48089 1.534 0.019 40.632242 -77.576438 +17101 2212 1867 1227958 1515102 0.474 0.585 40.258655 -76.894376 +17102 7628 5072 2032017 2214922 0.785 0.855 40.270370 -76.905279 +17103 11848 5421 5327541 0 2.057 0.000 40.275965 -76.866332 +17104 20962 8747 6952677 1794350 2.684 0.693 40.254920 -76.862114 +17109 23131 11230 19466799 0 7.516 0.000 40.289955 -76.824317 +17110 24433 11559 33056665 11589075 12.763 4.475 40.315813 -76.886436 +17111 30714 13097 47726884 45088 18.427 0.017 40.267715 -76.787143 +17112 33850 14220 178728041 0 69.007 0.000 40.373101 -76.776511 +17113 10749 4741 11046325 6343446 4.265 2.449 40.225984 -76.827994 +17120 0 0 246180 0 0.095 0.000 40.265186 -76.882805 +17201 25293 11323 49063905 0 18.944 0.000 39.961056 -77.656165 +17202 30200 12214 308313411 89718 119.040 0.035 39.875125 -77.609075 +17210 193 102 31028817 13687 11.980 0.005 40.206345 -77.658449 +17211 368 250 64820580 45620 25.027 0.018 39.754149 -78.400966 +17212 702 324 91273810 6256 35.241 0.002 39.811597 -78.065972 +17213 639 363 103130935 9786 39.819 0.004 40.244192 -77.771225 +17214 1089 543 10303654 0 3.978 0.000 39.748111 -77.471320 +17215 347 163 30871896 15758 11.920 0.006 40.078237 -77.892945 +17217 150 57 9995047 0 3.859 0.000 40.238625 -77.721567 +17219 405 247 33901497 3264 13.089 0.001 40.241188 -77.687584 +17220 534 188 33797592 14129 13.049 0.005 40.191054 -77.738724 +17221 637 316 26709102 176661 10.312 0.068 40.068125 -77.816484 +17222 10749 4900 152141418 912631 58.742 0.352 39.896382 -77.493980 +17223 289 146 28202453 48630 10.889 0.019 40.086500 -77.942752 +17224 1834 893 94897222 0 36.640 0.000 39.967941 -77.897478 +17225 18879 7495 210895410 357723 81.427 0.138 39.783560 -77.762866 +17228 1183 529 74271741 0 28.676 0.000 39.987100 -78.093362 +17229 1276 643 70368651 13580 27.169 0.005 40.084004 -78.010139 +17233 5047 2475 206560917 967450 79.754 0.374 39.975605 -77.987160 +17235 672 268 1540549 0 0.595 0.000 39.857193 -77.698053 +17236 8895 3738 320918005 221158 123.907 0.085 39.797518 -77.946919 +17237 1917 649 7469337 0 2.884 0.000 39.838637 -77.541756 +17238 1794 790 141521979 0 54.642 0.000 39.858110 -78.130940 +17239 203 118 23203903 0 8.959 0.000 40.131795 -77.836771 +17240 3345 1196 124223525 462682 47.963 0.179 40.150871 -77.579686 +17241 11853 4854 290683071 1960770 112.233 0.757 40.176528 -77.408448 +17243 1329 889 154653073 0 59.712 0.000 40.277527 -77.819941 +17244 2407 959 67056482 305375 25.891 0.118 40.086764 -77.658616 +17246 195 84 4213929 0 1.627 0.000 40.054394 -77.660811 +17247 366 200 376686 0 0.145 0.000 39.798776 -77.579352 +17249 371 168 809379 0 0.313 0.000 40.241379 -77.899459 +17250 68 42 22724 0 0.009 0.000 39.737141 -77.524295 +17251 158 92 5773034 103618 2.229 0.040 40.131802 -77.685552 +17252 3608 1478 72053336 13434 27.820 0.005 39.913018 -77.822252 +17253 337 139 686397 0 0.265 0.000 40.213308 -78.006905 +17254 89 47 919800 0 0.355 0.000 39.970229 -77.590358 +17255 1125 577 77760816 0 30.024 0.000 40.161240 -77.862516 +17256 91 33 275089 0 0.106 0.000 39.782914 -77.677308 +17257 27996 10635 304175849 825827 117.443 0.319 40.046821 -77.493064 +17260 1164 569 92716675 22760 35.798 0.009 40.296045 -77.893701 +17261 193 0 6218769 0 2.401 0.000 39.860912 -77.508159 +17262 1462 542 69691840 7162 26.908 0.003 40.144998 -77.740213 +17263 467 194 912016 0 0.352 0.000 39.727222 -77.717855 +17264 2305 1284 141010681 0 54.445 0.000 40.179925 -77.993741 +17265 496 294 98233899 122319 37.928 0.047 40.027318 -77.781355 +17266 581 228 3485165 4508 1.346 0.002 40.088600 -77.412929 +17267 2810 1317 248143781 18445 95.809 0.007 39.807955 -78.239657 +17268 28285 12283 204952038 40164 79.132 0.016 39.774872 -77.575618 +17270 115 45 253687 0 0.098 0.000 39.854730 -77.797808 +17271 339 145 27585794 0 10.651 0.000 40.097754 -77.803092 +17272 294 146 474482 0 0.183 0.000 39.769525 -77.621818 +17301 4053 1579 34007289 108807 13.130 0.042 39.895240 -76.978971 +17302 3083 1259 99554417 354128 38.438 0.137 39.817290 -76.413678 +17304 3059 1191 62824964 337044 24.257 0.130 39.977245 -77.232739 +17306 318 129 891013 0 0.344 0.000 39.980581 -77.249398 +17307 5899 2482 154361597 250111 59.599 0.097 39.947765 -77.326817 +17309 2086 881 64194622 0 24.786 0.000 39.871334 -76.450129 +17311 252 114 142108 0 0.055 0.000 39.816546 -76.842472 +17313 10899 4562 27424127 90382 10.589 0.035 39.883976 -76.659451 +17314 5929 2475 91971692 1560640 35.510 0.603 39.755506 -76.326301 +17315 25756 10641 161886444 1483859 62.505 0.573 40.026601 -76.864066 +17316 8266 3316 108076237 1703797 41.728 0.658 39.965465 -77.007961 +17317 755 272 587515 0 0.227 0.000 39.970713 -76.523182 +17318 344 155 1551605 0 0.599 0.000 40.022258 -76.723016 +17319 10417 4092 44891589 7427 17.333 0.003 40.160522 -76.793940 +17320 7823 3196 143912415 422556 55.565 0.163 39.768626 -77.387563 +17321 2238 862 42239673 16109 16.309 0.006 39.751261 -76.442912 +17322 6012 2280 98863144 0 38.171 0.000 39.855909 -76.532733 +17324 4219 1968 135058457 627482 52.146 0.242 40.031811 -77.234957 +17325 27619 10978 332807406 1705737 128.498 0.659 39.826254 -77.227635 +17327 7565 3149 118948572 0 45.926 0.000 39.779507 -76.753258 +17329 2494 953 42368642 0 16.359 0.000 39.761844 -76.851125 +17331 50292 21115 196321654 5404048 75.800 2.087 39.789690 -76.977984 +17339 6940 2833 72665773 245720 28.056 0.095 40.134731 -76.885292 +17340 10896 4382 100227087 202268 38.698 0.078 39.755229 -77.116784 +17343 180 80 1981369 6942 0.765 0.003 39.869254 -77.334798 +17344 3656 1600 2069376 0 0.799 0.000 39.805688 -77.019219 +17345 7679 3212 26125068 526613 10.087 0.203 40.078089 -76.747503 +17347 6202 2367 35589213 1276273 13.741 0.493 40.057701 -76.688196 +17349 7570 2953 53711748 22309 20.738 0.009 39.744992 -76.647408 +17350 12886 5071 112376999 1086249 43.389 0.419 39.890088 -77.079399 +17352 1292 484 35706027 0 13.786 0.000 39.761201 -76.499847 +17353 3228 1436 105676905 152545 40.802 0.059 39.883180 -77.371845 +17355 261 114 1581217 0 0.611 0.000 39.759868 -76.696019 +17356 21610 8835 84216263 0 32.516 0.000 39.896585 -76.582259 +17360 5927 2299 69539556 360346 26.849 0.139 39.854372 -76.750390 +17361 5806 2414 8108044 0 3.131 0.000 39.765522 -76.677039 +17362 13397 5264 124904992 2171477 48.226 0.838 39.847679 -76.868704 +17363 9413 3621 97450914 0 37.626 0.000 39.768623 -76.586385 +17364 3907 1526 43265464 0 16.705 0.000 39.929394 -76.899328 +17365 2510 1091 51281885 1558582 19.800 0.602 40.056062 -76.937975 +17366 5499 2209 29174253 37958 11.264 0.015 39.932790 -76.556703 +17368 7322 3212 47477991 0 18.331 0.000 39.983858 -76.518703 +17370 5683 2250 29155958 409838 11.257 0.158 40.121440 -76.778402 +17371 257 111 519495 0 0.201 0.000 39.902712 -76.787965 +17372 4101 1629 84711519 237985 32.707 0.092 40.001467 -77.106153 +17401 17687 7458 3720684 113185 1.437 0.044 39.959462 -76.733457 +17402 36360 14346 49809181 41185 19.231 0.016 39.958485 -76.658667 +17403 39042 15987 52958231 1158203 20.447 0.447 39.923228 -76.712794 +17404 35517 14804 54888993 36295 21.193 0.014 40.002607 -76.773549 +17406 22156 9547 128337058 120332 49.551 0.046 40.014651 -76.640469 +17407 2355 857 3724019 255663 1.438 0.099 39.883773 -76.712102 +17408 22507 9675 66962165 199538 25.854 0.077 39.929011 -76.799600 +17501 4307 1880 3603127 17543 1.391 0.007 40.156599 -76.203959 +17502 2464 973 25630797 9987713 9.896 3.856 40.100904 -76.660147 +17505 1785 517 17870793 251462 6.900 0.097 40.063501 -76.192436 +17507 62 31 55706 0 0.022 0.000 40.198042 -76.016233 +17508 423 157 382285 0 0.148 0.000 40.124758 -76.218766 +17509 4664 1411 66791567 217145 25.788 0.084 39.912055 -76.036499 +17512 17836 7580 42161806 12618055 16.279 4.872 40.040169 -76.486282 +17516 4496 1768 53818300 1382091 20.779 0.534 39.941461 -76.371356 +17517 15391 5705 90502733 2485103 34.943 0.960 40.244751 -76.132881 +17518 1355 456 36641569 11451057 14.147 4.421 39.808930 -76.253014 +17519 6824 2246 57461231 512073 22.186 0.198 40.141438 -76.023423 +17520 4686 1844 4830491 21308 1.865 0.008 40.097518 -76.349193 +17522 32483 12752 113172567 1191328 43.696 0.460 40.171484 -76.169140 +17527 6080 1950 52902008 280249 20.426 0.108 40.008881 -75.991296 +17529 4317 1403 40651128 200888 15.695 0.078 40.041933 -76.097142 +17532 3381 1236 54906914 7199846 21.200 2.780 39.858156 -76.288008 +17535 2458 720 28069388 187742 10.838 0.072 39.982036 -76.022866 +17536 2839 884 56076111 1794186 21.651 0.693 39.848034 -76.073774 +17538 6045 2415 9941068 13195 3.838 0.005 40.082629 -76.414548 +17540 9791 3518 50689597 441630 19.571 0.171 40.097543 -76.189894 +17543 42626 16960 179550792 1541198 69.325 0.595 40.181032 -76.295380 +17545 21256 8531 183668606 1130976 70.915 0.437 40.178669 -76.434370 +17547 7378 3037 31078180 5841308 11.999 2.255 40.068478 -76.586368 +17550 790 349 460033 0 0.178 0.000 40.075890 -76.583396 +17551 10857 3622 26128822 545503 10.088 0.211 39.982202 -76.371419 +17552 17831 7551 84055411 620713 32.454 0.240 40.107241 -76.510775 +17554 7525 3254 8113381 22464 3.133 0.009 40.040303 -76.424173 +17555 7525 2318 90439624 513538 34.919 0.198 40.122346 -75.959407 +17557 13811 5302 84062366 413163 32.457 0.160 40.099850 -76.072742 +17560 5118 1976 41575314 254859 16.052 0.098 39.912675 -76.227681 +17562 4464 1394 44228388 222308 17.077 0.086 39.970438 -76.092067 +17563 3849 1374 81780550 8975825 31.576 3.466 39.760748 -76.193306 +17565 2537 967 35666455 7004079 13.771 2.704 39.897702 -76.331027 +17566 12019 4245 151145811 658000 58.358 0.254 39.867186 -76.147513 +17569 5448 2025 42369724 291663 16.359 0.113 40.271433 -76.096577 +17570 291 120 178897 0 0.069 0.000 40.129942 -76.568851 +17572 3859 1251 45068053 419285 17.401 0.162 39.975006 -76.120065 +17576 129 53 132304 9059 0.051 0.003 40.037195 -76.196760 +17578 7485 2684 39645549 330540 15.307 0.128 40.226099 -76.159806 +17579 5935 2179 36055738 198593 13.921 0.077 39.960406 -76.180752 +17581 951 367 867072 1047 0.335 0.000 40.160264 -76.048702 +17582 2026 772 23002339 19985493 8.881 7.716 39.993140 -76.469176 +17584 8957 3859 37573006 345479 14.507 0.133 39.954540 -76.259814 +17601 49779 20711 86274459 712454 33.311 0.275 40.074241 -76.314914 +17602 52452 20395 66383156 1108188 25.631 0.428 40.014623 -76.246351 +17603 61973 26317 77195090 998812 29.805 0.386 40.030839 -76.330432 +17606 392 247 121495 0 0.047 0.000 40.111670 -76.303907 +17701 44661 20039 231657028 3961139 89.443 1.529 41.345045 -76.857256 +17702 10721 4792 160297404 4903215 61.891 1.893 41.183488 -77.077271 +17721 1604 740 1913700 0 0.739 0.000 41.183625 -77.318405 +17723 34 94 34291055 1834 13.240 0.001 41.435023 -77.471376 +17724 5424 2547 290329056 1293151 112.097 0.499 41.642528 -76.805113 +17727 72 347 276830160 1805773 106.885 0.697 41.510688 -77.496451 +17728 5120 2173 122963170 705371 47.476 0.272 41.334774 -77.078567 +17729 159 638 282853456 135193 109.210 0.052 41.511224 -77.736116 +17730 257 109 437727 0 0.169 0.000 41.110449 -76.878410 +17731 185 466 35875346 548696 13.852 0.212 41.429408 -76.578670 +17737 6220 2852 186630600 1083165 72.058 0.418 41.299271 -76.685780 +17739 32 118 32485064 363713 12.543 0.140 41.397216 -77.401189 +17740 12754 5542 352740680 5346152 136.194 2.064 41.250630 -77.267758 +17742 39 23 196904 8474 0.076 0.003 41.238532 -76.602270 +17744 3175 1370 61989508 1544279 23.934 0.596 41.240970 -77.153274 +17745 19063 8305 559176112 6748847 215.899 2.606 41.277795 -77.464900 +17747 3073 1382 249898954 894109 96.487 0.345 41.032578 -77.331759 +17748 300 143 1366099 0 0.527 0.000 41.150402 -77.352941 +17749 244 106 277672 0 0.107 0.000 41.072241 -76.818889 +17750 167 68 3935431 16556 1.519 0.006 41.057866 -77.482253 +17751 7084 3185 326919577 4596852 126.224 1.775 41.153567 -77.544826 +17752 4635 1934 91712871 1699470 35.411 0.656 41.180139 -76.930251 +17754 12233 5318 155741260 3635251 60.132 1.404 41.311612 -76.889212 +17756 12408 4755 291198069 4115416 112.432 1.589 41.208004 -76.739806 +17758 919 789 212052208 1764174 81.874 0.681 41.360197 -76.535617 +17760 557 564 214802141 1709968 82.936 0.660 41.413260 -77.658475 +17762 503 218 1503792 42602 0.581 0.016 41.284230 -76.700158 +17763 309 152 64298378 1401528 24.826 0.541 41.507375 -76.976180 +17764 2327 1884 414515252 4934387 160.045 1.905 41.334750 -77.813637 +17765 1162 657 214025727 1108131 82.636 0.428 41.565735 -76.973451 +17767 91 41 66744 0 0.026 0.000 41.083874 -77.463161 +17768 377 577 76095175 235868 29.381 0.091 41.558836 -76.755985 +17771 3158 1735 558902828 4668149 215.794 1.802 41.437306 -77.035738 +17772 2399 941 58295718 133798 22.508 0.052 41.125057 -76.713033 +17774 1277 690 123469321 364383 47.672 0.141 41.281191 -76.533013 +17776 295 524 226664314 2146001 87.516 0.829 41.415059 -77.294106 +17777 7056 3064 97612638 3316896 37.688 1.281 41.106517 -76.821696 +17778 102 351 226113763 2159305 87.303 0.834 41.287820 -77.980212 +17779 235 127 3766228 10180 1.454 0.004 41.207320 -77.376887 +17801 16671 7763 171249352 14151532 66.120 5.464 40.834724 -76.755008 +17810 4683 832 146975389 817829 56.748 0.316 41.111360 -77.031372 +17812 1480 664 57979282 841277 22.386 0.325 40.740534 -77.227910 +17813 1979 890 88791490 1400234 34.283 0.541 40.780401 -77.172083 +17814 4860 2752 357316802 2158971 137.961 0.834 41.273237 -76.363142 +17815 30967 12002 351898233 8191173 135.869 3.163 41.020038 -76.420092 +17820 5556 2732 234198002 3887573 90.424 1.501 40.895639 -76.403739 +17821 18219 8053 345884664 7545301 133.547 2.913 40.989183 -76.643864 +17822 0 0 191017 0 0.074 0.000 40.968016 -76.605142 +17823 1273 532 88929476 277761 34.336 0.107 40.745495 -76.776193 +17824 4115 1944 68396595 340010 26.408 0.131 40.852310 -76.505353 +17827 657 310 4969541 2268 1.919 0.001 40.752860 -76.968032 +17829 244 89 2110442 0 0.815 0.000 40.900549 -77.155804 +17830 1947 950 79158822 6810293 30.563 2.629 40.686064 -76.805170 +17832 628 365 1011505 0 0.391 0.000 40.805945 -76.459020 +17834 3565 1814 13294452 93042 5.133 0.036 40.780210 -76.466875 +17835 219 97 1315283 1992 0.508 0.001 40.878987 -77.204312 +17836 266 118 10605537 18082 4.095 0.007 40.714342 -76.606462 +17837 19815 7047 161382144 783131 62.310 0.302 40.974977 -76.945150 +17840 533 234 6451810 0 2.491 0.000 40.772092 -76.433120 +17841 4779 2023 205092567 445446 79.187 0.172 40.724869 -77.352556 +17842 8910 3687 214643788 1512680 82.874 0.584 40.802950 -77.040151 +17844 10042 4431 290236118 1025918 112.061 0.396 40.973978 -77.085405 +17845 2245 1361 169609264 1258954 65.487 0.486 40.884370 -77.211570 +17846 3738 1650 120289209 483244 46.444 0.187 41.141745 -76.517122 +17847 12051 5597 121550349 4429761 46.931 1.710 41.007983 -76.811029 +17850 645 289 843921 0 0.326 0.000 40.965596 -76.857448 +17851 7841 4549 39235762 374547 15.149 0.145 40.803118 -76.434300 +17853 3221 1227 109537750 304061 42.293 0.117 40.694729 -77.006700 +17855 992 427 5056387 42148 1.952 0.016 40.890386 -76.966684 +17856 3365 1482 91943618 352861 35.500 0.136 41.065350 -76.947382 +17857 7505 3536 69369169 5977345 26.784 2.308 40.932136 -76.772972 +17859 3106 1449 99862393 903524 38.557 0.349 41.116964 -76.398094 +17860 1994 869 68368801 274085 26.397 0.106 40.866964 -76.611035 +17861 143 59 373434 595 0.144 0.000 40.773224 -77.082304 +17862 577 187 1065111 4263 0.411 0.002 40.860506 -77.056395 +17864 2445 826 51852569 110661 20.020 0.043 40.704727 -76.905819 +17865 92 43 402744 0 0.156 0.000 40.990180 -76.786769 +17866 10310 4181 64989398 245622 25.093 0.095 40.806510 -76.532457 +17867 169 77 9197320 0 3.551 0.000 40.714115 -76.688597 +17868 1052 464 1738796 361418 0.671 0.140 40.957721 -76.633968 +17870 14564 5623 116780964 2116704 45.089 0.817 40.817323 -76.888636 +17872 9943 5681 105062512 968359 40.565 0.374 40.753396 -76.697714 +17876 1698 837 4799224 99239 1.853 0.038 40.859744 -76.826665 +17878 1528 634 54597894 574139 21.080 0.222 41.176018 -76.323488 +17880 72 27 321697 0 0.124 0.000 40.892209 -77.121755 +17881 1556 767 12312416 10731 4.754 0.004 40.782906 -76.670014 +17884 305 152 1278765 11602 0.494 0.004 41.055983 -76.669463 +17885 141 269 28040583 402372 10.827 0.155 40.866349 -77.314016 +17886 895 484 2522769 0 0.974 0.000 41.016709 -76.875204 +17887 1778 209 2920322 50989 1.128 0.020 41.129220 -76.935982 +17888 326 163 7373768 36140 2.847 0.014 40.806775 -76.378479 +17889 2735 1126 58837246 609121 22.717 0.235 40.877442 -76.921646 +17901 23990 11387 202084600 904250 78.025 0.349 40.683828 -76.277542 +17920 331 169 11510672 76981 4.444 0.030 40.819666 -76.326917 +17921 7676 3227 97757756 83753 37.744 0.032 40.751575 -76.360586 +17922 4783 2172 78720194 1626141 30.394 0.628 40.582492 -76.110646 +17923 433 226 22461758 47142 8.673 0.018 40.632591 -76.319934 +17925 376 183 2531380 803 0.977 0.000 40.753377 -76.067802 +17929 1606 686 2608385 0 1.007 0.000 40.630703 -76.194039 +17930 476 214 7911630 0 3.055 0.000 40.708664 -76.115313 +17931 8472 2676 27075278 478269 10.454 0.185 40.786491 -76.214575 +17933 89 38 232629 0 0.090 0.000 40.604485 -76.243195 +17934 469 268 2451023 52976 0.946 0.020 40.796439 -76.211333 +17935 1737 958 11295485 59140 4.361 0.023 40.796140 -76.279682 +17936 763 362 1535778 0 0.593 0.000 40.750116 -76.339930 +17938 2442 1087 102594837 11681 39.612 0.005 40.651576 -76.516266 +17941 834 386 63913563 1428 24.677 0.001 40.685722 -76.609184 +17943 229 105 1502351 0 0.580 0.000 40.756660 -76.387810 +17944 205 103 354772 0 0.137 0.000 40.672540 -76.279256 +17945 180 99 2685878 16913 1.037 0.007 40.785436 -76.377026 +17946 263 160 4950553 35605 1.911 0.014 40.810364 -76.256372 +17948 5029 2880 66322801 505462 25.607 0.195 40.845385 -76.117468 +17949 263 150 260751 0 0.101 0.000 40.793926 -76.242345 +17951 325 141 478498 0 0.185 0.000 40.678556 -76.245246 +17952 282 149 9010610 0 3.479 0.000 40.755438 -76.058552 +17953 469 264 35405549 478320 13.670 0.185 40.751902 -76.120218 +17954 4564 2390 1802835 0 0.696 0.000 40.690420 -76.259688 +17957 328 145 407086 0 0.157 0.000 40.591824 -76.518212 +17959 1422 737 23370187 4637 9.023 0.002 40.732069 -76.149951 +17960 3868 1768 133731728 46970 51.634 0.018 40.697241 -75.947044 +17961 6958 3012 68942694 131487 26.619 0.051 40.649698 -76.060946 +17963 9317 4064 235046336 547741 90.752 0.211 40.561577 -76.382017 +17964 798 326 59322567 11518 22.905 0.004 40.714366 -76.502961 +17965 2067 975 1849199 0 0.714 0.000 40.698615 -76.165281 +17967 2457 1171 75397526 448899 29.111 0.173 40.856256 -76.216264 +17968 329 136 10125928 0 3.910 0.000 40.638679 -76.612300 +17970 3241 1716 3550463 0 1.371 0.000 40.720206 -76.191949 +17972 11627 5050 106065174 71218 40.952 0.027 40.592057 -76.205601 +17974 344 154 176177 0 0.068 0.000 40.695700 -76.236267 +17976 6937 4022 19867252 335359 7.671 0.129 40.819867 -76.210606 +17978 224 110 7189159 0 2.776 0.000 40.625448 -76.614963 +17979 168 90 2735393 0 1.056 0.000 40.561567 -76.199716 +17980 3238 1542 103105399 2429407 39.809 0.938 40.518647 -76.644717 +17981 2751 1153 70921777 94288 27.383 0.036 40.634301 -76.390115 +17982 430 217 12637039 0 4.879 0.000 40.785932 -76.021309 +17983 1620 763 6498258 0 2.509 0.000 40.642622 -76.547166 +17985 1226 638 67970633 345329 26.244 0.133 40.912303 -76.216648 +18011 5450 2164 42688619 187089 16.482 0.072 40.477974 -75.646324 +18013 17802 7381 155703566 4402023 60.117 1.700 40.848760 -75.177272 +18014 11387 4833 86423058 944548 33.368 0.365 40.764431 -75.409221 +18015 32832 11814 55003170 849334 21.237 0.328 40.585869 -75.367239 +18016 0 0 153758 0 0.059 0.000 40.632130 -75.392847 +18017 37549 15682 41992344 320424 16.213 0.124 40.659981 -75.387361 +18018 32413 14698 13344934 365716 5.153 0.141 40.627594 -75.395584 +18020 20447 7772 35827006 567567 13.833 0.219 40.670951 -75.321188 +18030 623 295 1162121 74118 0.449 0.029 40.802138 -75.664107 +18031 7528 3217 35657452 87417 13.767 0.034 40.552084 -75.648674 +18032 9285 4034 5200219 154390 2.008 0.060 40.656434 -75.467873 +18034 8256 2791 29355784 196174 11.334 0.076 40.546353 -75.415278 +18035 241 95 909615 2363 0.351 0.001 40.745426 -75.539119 +18036 12822 4970 75885082 212160 29.299 0.082 40.509151 -75.385940 +18037 7070 3006 18892795 419127 7.295 0.162 40.681817 -75.546121 +18038 3091 1208 33641110 748996 12.989 0.289 40.794881 -75.486087 +18040 15742 6017 43874273 738406 16.940 0.285 40.746007 -75.225665 +18041 5424 2105 35968461 8773 13.888 0.003 40.420460 -75.509926 +18042 41570 16642 54817856 2835263 21.165 1.095 40.654176 -75.223124 +18045 26391 10502 47869633 313272 18.483 0.121 40.693450 -75.272796 +18046 64 24 47260 0 0.018 0.000 40.548009 -75.560346 +18049 17341 7662 38841955 147570 14.997 0.057 40.515732 -75.489290 +18051 3327 1275 21657180 44223 8.362 0.017 40.595644 -75.667054 +18052 26902 11699 32809262 832179 12.668 0.321 40.657428 -75.504255 +18053 2375 907 42497913 124570 16.409 0.048 40.719230 -75.704117 +18054 4278 1824 42469973 663200 16.398 0.256 40.352369 -75.438736 +18055 11780 5324 55492712 580431 21.426 0.224 40.591504 -75.304385 +18056 943 435 4345873 14554 1.678 0.006 40.450942 -75.550389 +18058 9464 4146 133768252 1418423 51.648 0.548 40.889647 -75.493409 +18059 1228 469 4143034 351697 1.600 0.136 40.723506 -75.543081 +18062 24351 9644 55168217 192849 21.301 0.074 40.503935 -75.585180 +18063 548 262 2599264 365365 1.004 0.141 40.782592 -75.167286 +18064 24073 9438 99491064 942521 38.414 0.364 40.757009 -75.315959 +18066 6005 2326 118243859 640557 45.654 0.247 40.664462 -75.740100 +18067 17852 7672 64560354 1414786 24.927 0.546 40.715038 -75.474675 +18068 42 19 10470 0 0.004 0.000 40.484829 -75.520041 +18069 8017 2945 35787750 258895 13.818 0.100 40.625289 -75.615125 +18070 739 306 6173962 1572 2.384 0.001 40.434866 -75.535617 +18071 10578 4648 78965208 241002 30.489 0.093 40.834245 -75.555193 +18072 6571 2682 39041918 485355 15.074 0.187 40.844140 -75.259135 +18073 9350 3440 49541139 2429745 19.128 0.938 40.386499 -75.474430 +18074 5775 2287 48916560 310077 18.887 0.120 40.316737 -75.515686 +18076 2662 1229 3109083 0 1.200 0.000 40.374803 -75.480790 +18077 2370 1075 37739579 254432 14.571 0.098 40.570065 -75.237114 +18078 7074 2776 40815001 288764 15.759 0.111 40.673304 -75.620717 +18079 436 184 610352 2465 0.236 0.001 40.743873 -75.658519 +18080 11456 4881 79594197 848712 30.731 0.328 40.735856 -75.635308 +18081 357 153 1364577 10216 0.527 0.004 40.563893 -75.281409 +18083 530 221 1586877 50286 0.613 0.019 40.754952 -75.267086 +18085 1119 421 1322057 39277 0.510 0.015 40.741232 -75.254887 +18086 398 164 1230512 7134 0.475 0.003 40.736807 -75.547930 +18087 738 345 2867323 41930 1.107 0.016 40.553537 -75.594101 +18088 8375 3559 50240303 1215233 19.398 0.469 40.765692 -75.557509 +18091 5926 2520 39868957 723218 15.393 0.279 40.831388 -75.319795 +18092 3223 1279 38755178 91483 14.963 0.035 40.469697 -75.513140 +18101 3897 1821 903911 4030 0.349 0.002 40.602658 -75.469236 +18102 49779 18434 7762017 257200 2.997 0.099 40.608473 -75.476275 +18103 45336 18827 45607987 312343 17.609 0.121 40.570308 -75.488926 +18104 43236 17599 59828337 553498 23.100 0.214 40.611658 -75.546853 +18105 12 0 19947 0 0.008 0.000 40.601416 -75.493938 +18106 6889 2836 20997049 316024 8.107 0.122 40.568227 -75.560284 +18109 16932 7269 21229065 640099 8.197 0.247 40.636938 -75.439893 +18195 0 0 29340 0 0.011 0.000 40.584272 -75.624789 +18201 27516 12432 55774251 408496 21.535 0.158 40.947134 -75.957126 +18202 12083 5608 84642385 553490 32.681 0.214 40.954433 -76.045987 +18210 8258 5992 81054008 1104453 31.295 0.426 41.004434 -75.576536 +18211 1304 574 55290765 513004 21.348 0.198 40.744080 -75.830406 +18212 131 65 4422596 0 1.708 0.000 40.775254 -75.709569 +18214 2078 958 61961896 1000156 23.924 0.386 40.800261 -76.083954 +18216 1067 542 13387793 0 5.169 0.000 40.941496 -75.892858 +18218 2281 1154 5634253 0 2.175 0.000 40.819740 -75.916102 +18219 1436 659 2138821 0 0.826 0.000 40.990787 -76.057456 +18220 344 172 2381279 0 0.919 0.000 40.840529 -76.060382 +18221 389 173 5119940 0 1.977 0.000 41.001778 -75.917333 +18222 9020 3760 97252165 650526 37.549 0.251 41.036190 -76.000073 +18223 115 74 3230031 0 1.247 0.000 40.982353 -75.950287 +18224 6017 2916 41293154 274148 15.943 0.106 41.026275 -75.873263 +18225 114 63 111343 0 0.043 0.000 40.981311 -75.971311 +18229 8498 4636 160743330 2238902 62.063 0.864 40.931148 -75.673699 +18230 132 64 7053071 0 2.723 0.000 40.921083 -75.934528 +18231 535 259 2570208 0 0.992 0.000 40.904304 -76.007984 +18232 3941 2161 3979138 1611 1.536 0.001 40.832974 -75.884824 +18234 401 188 670491 0 0.259 0.000 40.992594 -75.964350 +18235 19353 8489 205052612 6788505 79.171 2.621 40.829796 -75.697860 +18237 3110 1577 16805400 280377 6.489 0.108 40.884881 -75.978492 +18239 232 117 697589 0 0.269 0.000 40.989337 -75.988272 +18240 3891 2034 76333827 3329560 29.473 1.286 40.864677 -75.872265 +18241 646 343 6067584 0 2.343 0.000 40.951524 -76.130802 +18242 235 156 3263164 0 1.260 0.000 40.911388 -76.124322 +18244 402 214 2467790 10067 0.953 0.004 40.822445 -75.670561 +18245 348 158 9338162 0 3.605 0.000 40.853214 -76.033518 +18246 143 71 5494920 0 2.122 0.000 40.957215 -76.195185 +18248 631 295 37322753 44221 14.410 0.017 40.902147 -76.091979 +18249 4129 1724 82682997 66402 31.924 0.026 40.987794 -76.116117 +18250 3034 1458 22510426 1071180 8.691 0.414 40.824963 -75.846201 +18251 46 23 275049 0 0.106 0.000 41.008051 -76.077381 +18252 11188 5322 153137563 572779 59.127 0.221 40.766755 -75.973775 +18254 871 420 4572626 0 1.766 0.000 40.915913 -75.965651 +18255 4337 2000 189310879 847804 73.093 0.327 40.933327 -75.829695 +18256 359 170 2814971 0 1.087 0.000 40.940886 -76.146755 +18301 28561 11168 102189326 2328468 39.456 0.899 41.042703 -75.175581 +18302 17362 8396 160300805 3290288 61.892 1.270 41.112150 -75.112800 +18321 1711 732 7098385 97636 2.741 0.038 41.025750 -75.283310 +18322 2781 1105 17868187 128651 6.899 0.050 40.918535 -75.393353 +18323 275 325 4817238 0 1.860 0.000 41.196579 -75.273469 +18324 9714 5650 118258652 3510118 45.660 1.355 41.158143 -75.000689 +18325 2465 1559 111459161 1792282 43.035 0.692 41.204887 -75.225146 +18326 4152 2115 86255814 190540 33.304 0.074 41.167220 -75.253037 +18327 700 370 4860055 343248 1.876 0.133 40.967874 -75.133837 +18328 7759 4842 215719411 8994608 83.290 3.473 41.226643 -74.971008 +18330 8927 3438 42465648 122275 16.396 0.047 40.968776 -75.449217 +18331 867 373 8874238 23388 3.426 0.009 40.909936 -75.443831 +18332 3085 1349 36031553 222138 13.912 0.086 41.094938 -75.261302 +18333 712 243 5563500 15587 2.148 0.006 40.906085 -75.490084 +18334 4156 2134 56442790 626520 21.793 0.242 41.054954 -75.431784 +18335 672 340 2325582 43984 0.898 0.017 41.068101 -75.103933 +18336 4082 1819 36190886 720711 13.973 0.278 41.374719 -74.742790 +18337 14572 6697 204437918 4131711 78.934 1.595 41.329110 -74.871787 +18340 174 104 8032703 704905 3.101 0.272 41.417841 -74.765303 +18342 492 262 2845569 0 1.099 0.000 41.170609 -75.273444 +18343 3982 1740 57518125 2498588 22.208 0.965 40.898529 -75.110092 +18344 3589 1628 18180738 108194 7.020 0.042 41.122996 -75.343042 +18346 2964 1397 28583716 1863402 11.036 0.719 41.142797 -75.421179 +18347 3364 4272 70019147 3458598 27.035 1.335 41.138865 -75.560205 +18349 132 83 3633677 304 1.403 0.000 41.101274 -75.367074 +18350 1931 2862 57445793 1712707 22.180 0.661 41.123825 -75.466143 +18351 518 241 953641 187186 0.368 0.072 40.922720 -75.099334 +18352 1098 496 9732440 690054 3.758 0.266 41.006831 -75.356087 +18353 12779 5000 122145849 444589 47.161 0.172 40.895293 -75.358074 +18354 951 388 8769224 34729 3.386 0.013 40.922603 -75.322095 +18355 1492 800 18529489 136551 7.154 0.053 41.076972 -75.358803 +18356 136 435 1684805 0 0.651 0.000 41.011079 -75.118103 +18357 104 143 10319276 429544 3.984 0.166 41.232813 -75.216499 +18360 28362 11667 205552867 720545 79.364 0.278 40.967389 -75.287970 +18370 1096 527 13500747 94178 5.213 0.036 41.092408 -75.339537 +18371 747 434 9143461 342705 3.530 0.132 41.157318 -75.041444 +18372 3210 1877 22876750 27145 8.833 0.010 41.044022 -75.336350 +18403 7087 2957 61618058 36148 23.791 0.014 41.509701 -75.535045 +18405 2561 1383 95549735 3914739 36.892 1.511 41.599551 -75.104240 +18407 13862 6566 108471599 2057073 41.881 0.794 41.593360 -75.528121 +18411 21985 9081 140723101 2353332 54.333 0.909 41.454492 -75.744541 +18413 151 80 2317909 0 0.895 0.000 41.648124 -75.589335 +18414 5452 2328 108920003 468264 42.054 0.181 41.541069 -75.741072 +18415 1245 909 85339112 1611255 32.950 0.622 41.743530 -75.124268 +18417 1121 980 151469642 3851894 58.483 1.487 41.809764 -75.201095 +18419 4634 2070 100109485 1242075 38.652 0.480 41.585933 -75.792369 +18420 57 22 726672 0 0.281 0.000 41.602006 -75.710133 +18421 4754 2287 91234923 1048505 35.226 0.405 41.664210 -75.492886 +18424 5613 4182 213719432 4749230 82.518 1.834 41.230478 -75.524965 +18425 1354 704 58178535 1435377 22.463 0.554 41.437562 -75.042345 +18426 4526 4665 153153856 7795396 59.133 3.010 41.325507 -75.239061 +18427 118 55 1764317 18097 0.681 0.007 41.404977 -75.406897 +18428 12012 9505 430000893 13254412 166.024 5.118 41.404302 -75.118060 +18430 33 14 4607510 18050 1.779 0.007 41.756459 -75.472457 +18431 12666 6251 347731101 8412857 134.260 3.248 41.616510 -75.257698 +18433 6508 3041 71808138 1011620 27.725 0.391 41.573307 -75.581330 +18434 4192 1954 17208312 125801 6.644 0.049 41.453600 -75.542128 +18435 795 1175 25679808 1379426 9.915 0.533 41.455609 -74.983238 +18436 13853 9944 235317804 9256007 90.857 3.574 41.442799 -75.393450 +18437 211 160 30646452 860878 11.833 0.332 41.871969 -75.316504 +18438 1172 1345 19043636 1080886 7.353 0.417 41.439159 -75.256488 +18439 500 418 79046546 3203499 30.520 1.237 41.825503 -75.348966 +18441 289 134 7564000 75734 2.920 0.029 41.656056 -75.613950 +18443 458 309 35550828 495719 13.726 0.191 41.662927 -75.102094 +18444 13778 5683 303363956 4313903 117.129 1.666 41.329074 -75.552770 +18445 2329 1301 94377434 1503313 36.439 0.580 41.297916 -75.359358 +18446 3733 1797 131487778 1732581 50.768 0.669 41.656159 -75.759149 +18447 10548 4829 53123945 50326 20.511 0.019 41.513448 -75.607166 +18451 448 580 12721679 9918864 4.912 3.830 41.396998 -75.217955 +18452 4802 2312 5094438 0 1.967 0.000 41.483628 -75.590282 +18453 1104 721 130925368 3356439 50.551 1.296 41.758495 -75.370789 +18454 64 185 7008449 991222 2.706 0.383 41.827285 -75.426144 +18455 105 53 11554153 593079 4.461 0.229 41.893001 -75.359193 +18456 423 201 12290440 949918 4.745 0.367 41.612796 -75.340433 +18457 82 54 1245085 41379 0.481 0.016 41.472094 -75.049165 +18458 3017 2597 141041671 5303158 54.456 2.048 41.395965 -74.919561 +18459 51 57 172879 108586 0.067 0.042 41.504102 -75.428839 +18460 184 107 8571564 148726 3.309 0.057 41.249931 -75.313104 +18461 404 331 55496872 1666899 21.427 0.644 41.929003 -75.327674 +18462 427 393 69474038 1303398 26.824 0.503 41.914344 -75.409089 +18463 199 87 7391394 85375 2.854 0.033 41.357556 -75.396934 +18464 1193 1257 31168297 647097 12.034 0.250 41.403012 -75.176950 +18465 1340 1156 121867677 3070396 47.053 1.185 41.831306 -75.516842 +18466 16681 7697 93141335 1473613 35.962 0.569 41.196442 -75.394233 +18469 357 203 23998260 513123 9.266 0.198 41.703684 -75.130492 +18470 2226 1620 159328538 2042158 61.517 0.788 41.724676 -75.535512 +18471 685 285 7156861 6853 2.763 0.003 41.529093 -75.691180 +18472 7521 2150 165941132 5670173 64.070 2.189 41.583410 -75.396687 +18473 495 254 3226016 90515 1.246 0.035 41.522142 -75.217206 +18503 1182 589 1199397 0 0.463 0.000 41.411106 -75.667469 +18504 21265 10093 22328294 0 8.621 0.000 41.425521 -75.699867 +18505 20586 9559 22039188 580748 8.509 0.224 41.386202 -75.651527 +18507 4891 2175 25200110 110961 9.730 0.043 41.359038 -75.681823 +18508 12292 5530 17620285 0 6.803 0.000 41.454947 -75.657937 +18509 13589 5573 7434725 0 2.871 0.000 41.430836 -75.642906 +18510 14119 5500 5551978 72874 2.144 0.028 41.407379 -75.636613 +18512 12218 5990 28989888 265877 11.193 0.103 41.426320 -75.601898 +18517 5274 2276 10862246 0 4.194 0.000 41.394640 -75.713641 +18518 8313 4040 10464474 0 4.040 0.000 41.375054 -75.739559 +18519 5104 2472 6236104 0 2.408 0.000 41.461938 -75.630719 +18602 257 155 5018058 255162 1.937 0.099 41.183232 -75.750771 +18603 19320 9021 133538080 4134724 51.559 1.596 41.082104 -76.258139 +18610 5008 2559 78138149 753347 30.169 0.291 41.069335 -75.549147 +18612 18051 6590 139594539 3163662 53.898 1.221 41.346088 -75.986380 +18614 2426 2105 357037465 1844593 137.853 0.712 41.524947 -76.496996 +18615 1867 900 47456438 1344286 18.323 0.519 41.461702 -75.857203 +18616 738 711 143221392 541812 55.298 0.209 41.504887 -76.635657 +18617 1924 1061 15681772 422288 6.055 0.163 41.169676 -76.080726 +18618 3793 2249 45805016 2600870 17.685 1.004 41.365093 -76.041417 +18619 273 382 89448639 48837 34.536 0.019 41.461696 -76.717816 +18621 6248 2358 115116651 3938957 44.447 1.521 41.248601 -76.098546 +18622 257 110 9511391 31583 3.672 0.012 41.201232 -76.273515 +18623 2733 1363 146083403 3288352 56.403 1.270 41.664801 -76.151984 +18624 718 1594 41588819 1275175 16.058 0.492 41.060643 -75.647170 +18625 491 437 1975030 748660 0.763 0.289 41.513387 -75.848822 +18626 516 504 66247756 618234 25.578 0.239 41.398268 -76.523881 +18628 192 292 52927714 1110483 20.436 0.429 41.430143 -76.313808 +18629 1801 923 241795753 3431714 93.358 1.325 41.517603 -76.141339 +18630 3556 1696 170601750 1957896 65.870 0.756 41.662144 -76.023636 +18631 1286 580 4445859 422625 1.717 0.163 41.029907 -76.304374 +18632 409 235 13478975 31808 5.204 0.012 41.459360 -76.377495 +18634 13569 6831 38407890 848003 14.829 0.327 41.185512 -76.022619 +18635 3881 1696 98942406 1272158 38.202 0.491 41.029240 -76.201347 +18636 1438 660 115229353 142097 44.490 0.055 41.391410 -76.113651 +18640 17155 8135 73464127 1203313 28.365 0.465 41.298230 -75.738725 +18641 6812 3183 11311524 50783 4.367 0.020 41.342515 -75.722968 +18642 4345 2062 14043916 495770 5.422 0.191 41.356348 -75.773181 +18643 12908 6013 49247546 2290370 19.015 0.884 41.370822 -75.840422 +18644 7546 3543 42491904 1027917 16.406 0.397 41.327911 -75.882405 +18651 8880 4519 31252323 1287303 12.067 0.497 41.254040 -75.959845 +18653 132 48 640121 181901 0.247 0.070 41.393759 -75.824277 +18655 6278 3050 187086660 2976671 72.235 1.149 41.187724 -76.203214 +18656 2195 1029 134939487 1393786 52.100 0.538 41.333037 -76.184840 +18657 11985 5484 319573446 9538755 123.388 3.683 41.522511 -75.959481 +18660 3702 1654 110054152 3938557 42.492 1.521 41.097733 -76.062014 +18661 5730 3589 349685566 2371700 135.014 0.916 41.076430 -75.740870 +18701 3447 1277 1384069 0 0.534 0.000 41.243648 -75.885029 +18702 40295 19284 179515934 4271212 69.311 1.649 41.230482 -75.757447 +18704 31206 15230 25918724 1163002 10.007 0.449 41.262553 -75.914636 +18705 14806 7210 14136973 163992 5.458 0.063 41.271834 -75.842735 +18706 16105 7811 68627226 828451 26.497 0.320 41.203365 -75.914623 +18707 15557 6229 128790227 1296415 49.726 0.501 41.135750 -75.933499 +18708 8817 3705 42795843 246346 16.524 0.095 41.295848 -75.963463 +18709 2903 1543 2044118 0 0.789 0.000 41.285469 -75.896388 +18801 8266 4166 420653870 2832079 162.415 1.093 41.826389 -75.939711 +18810 6162 2696 119055433 3413938 45.968 1.318 41.933295 -76.507130 +18812 1644 1077 81611587 1566218 31.510 0.605 41.973201 -75.964742 +18814 156 70 1511365 37247 0.584 0.014 41.784063 -76.607272 +18816 128 72 3014382 47808 1.164 0.018 41.757157 -75.915633 +18817 306 126 4768290 13197 1.841 0.005 41.872722 -76.631611 +18818 1394 731 118489500 425894 45.749 0.164 41.911258 -76.044011 +18821 1153 559 8947397 505237 3.455 0.195 41.989910 -75.722798 +18822 3642 1642 107710248 557281 41.587 0.215 41.970165 -75.794089 +18823 193 106 6905966 159 2.666 0.000 41.778310 -75.690089 +18824 1401 715 77362836 939689 29.870 0.363 41.697366 -75.787183 +18825 111 80 8575609 178139 3.311 0.069 41.807883 -75.607728 +18826 1910 958 118218767 1195865 45.645 0.462 41.745746 -75.748893 +18828 352 179 25967879 7439 10.026 0.003 41.806724 -76.096165 +18829 868 413 66842515 347735 25.808 0.134 41.837702 -76.173504 +18830 735 427 62514600 686852 24.137 0.265 41.959087 -76.114440 +18831 1039 507 75558360 718704 29.173 0.277 41.894223 -76.598118 +18832 1874 947 154354215 1043483 59.596 0.403 41.678555 -76.568614 +18833 2056 1352 275449694 1614724 106.352 0.623 41.597169 -76.483621 +18834 3691 2042 171937387 2079743 66.385 0.803 41.830968 -75.720933 +18837 3267 1466 233446847 1341369 90.134 0.518 41.915054 -76.302838 +18840 10731 5037 116630232 2047310 45.031 0.790 41.971552 -76.534965 +18842 278 132 10667928 15905 4.119 0.006 41.749695 -75.623434 +18843 277 135 2270571 0 0.877 0.000 41.794457 -75.899586 +18844 1870 826 88564108 837341 34.195 0.323 41.690970 -75.905239 +18845 297 172 25048667 320764 9.671 0.124 41.787369 -76.182163 +18846 847 503 69779390 1738306 26.942 0.671 41.621411 -76.229986 +18847 6024 3319 365326108 5865953 141.053 2.265 41.928820 -75.579031 +18848 9193 4494 274467812 6587601 105.973 2.543 41.751057 -76.454741 +18850 2357 1041 155895516 2053366 60.192 0.793 41.854257 -76.462384 +18851 706 483 72576739 629036 28.022 0.243 41.933902 -76.176463 +18853 4252 2205 265087140 6206893 102.351 2.396 41.721414 -76.276925 +18854 1510 671 68704014 1769231 26.527 0.683 41.790684 -76.355747 +18901 27598 11351 52197146 2103439 20.153 0.812 40.306267 -75.147144 +18902 20973 7377 72051064 164725 27.819 0.064 40.352134 -75.095680 +18912 39 16 1028451 4152 0.397 0.002 40.323952 -75.056407 +18913 185 111 3808373 20382 1.470 0.008 40.379390 -75.060010 +18914 21063 7620 45958106 194008 17.745 0.075 40.288824 -75.209814 +18915 1063 391 2727022 0 1.053 0.000 40.272097 -75.256828 +18917 2158 959 1509625 1078 0.583 0.000 40.376919 -75.205949 +18920 361 181 7068268 276530 2.729 0.107 40.497718 -75.084034 +18923 998 354 4502416 4925 1.738 0.002 40.359341 -75.173921 +18925 6195 2270 27816696 228204 10.740 0.088 40.288811 -75.058039 +18929 9306 3096 21042404 243881 8.125 0.094 40.255513 -75.080152 +18930 2721 1145 57790609 2036237 22.313 0.786 40.521074 -75.218673 +18932 388 158 3252770 3840 1.256 0.001 40.293616 -75.254708 +18935 116 58 186331 919 0.072 0.000 40.437016 -75.403473 +18936 4 2 1898739 0 0.733 0.000 40.224050 -75.230959 +18938 13989 6510 105989503 2419521 40.923 0.934 40.351048 -74.998049 +18940 28825 11274 84642791 560342 32.681 0.216 40.261315 -74.937775 +18942 3260 1410 58180099 697125 22.463 0.269 40.471159 -75.160467 +18944 24479 9262 119648058 2359606 46.196 0.911 40.389293 -75.234442 +18947 6172 2323 61924904 349012 23.909 0.135 40.422899 -75.117839 +18950 252 102 3009442 610340 1.162 0.236 40.445221 -75.074432 +18951 34651 13675 172538556 2682533 66.618 1.036 40.452359 -75.348942 +18954 9745 3292 17470536 118370 6.745 0.046 40.225470 -74.993015 +18955 1662 639 6821574 17955 2.634 0.007 40.476640 -75.313694 +18960 12473 5131 49882601 298486 19.260 0.115 40.366237 -75.325845 +18962 515 202 616824 973 0.238 0.000 40.346684 -75.271138 +18964 13812 5386 24215248 1175 9.350 0.000 40.303470 -75.337889 +18966 37999 14644 42020031 811329 16.224 0.313 40.188468 -75.009898 +18969 15273 5989 43876641 158356 16.941 0.061 40.326304 -75.368422 +18970 696 286 1055021 0 0.407 0.000 40.412007 -75.381170 +18972 3512 1691 60964965 2177131 23.539 0.841 40.527320 -75.124666 +18974 40953 16602 49402752 265188 19.075 0.102 40.217062 -75.072803 +18976 19795 7215 28055013 182299 10.832 0.070 40.248905 -75.143441 +18977 4291 1750 13540795 1162319 5.228 0.449 40.286862 -74.882113 +18980 510 197 6153923 28842 2.376 0.011 40.269965 -75.017182 +19001 17020 6562 8967866 0 3.463 0.000 40.125912 -75.125442 +19002 32412 12717 53797902 104826 20.771 0.040 40.186587 -75.206777 +19003 12519 5722 5029553 0 1.942 0.000 40.001553 -75.298929 +19004 9416 4046 7157127 18658 2.763 0.007 40.009753 -75.231508 +19006 21423 8313 33252628 0 12.839 0.000 40.150436 -75.033899 +19007 21125 8904 17658290 2513861 6.818 0.971 40.113179 -74.857650 +19008 20535 7697 16979770 3127 6.556 0.001 39.972605 -75.360258 +19009 864 267 3369251 0 1.301 0.000 40.137805 -75.064242 +19010 21103 8404 21830408 0 8.429 0.000 40.023624 -75.329727 +19012 6670 2385 4551521 0 1.757 0.000 40.059767 -75.105880 +19013 35130 14253 14821318 21716 5.723 0.008 39.848163 -75.378097 +19014 21206 7955 23301954 4468 8.997 0.002 39.864907 -75.432958 +19015 16632 7009 8491589 7369 3.279 0.003 39.868633 -75.392945 +19017 348 105 2305368 5365 0.890 0.002 39.892229 -75.460142 +19018 23360 10291 7005033 0 2.705 0.000 39.923075 -75.298595 +19020 55493 23235 44639241 2815027 17.235 1.087 40.100591 -74.938934 +19021 10074 3965 8841287 1816541 3.414 0.701 40.089651 -74.892183 +19022 3669 1652 3408153 0 1.316 0.000 39.861440 -75.337022 +19023 22164 8317 5172710 0 1.997 0.000 39.917140 -75.267387 +19025 5395 2022 7763440 0 2.997 0.000 40.146444 -75.161987 +19026 30738 13014 9378736 0 3.621 0.000 39.950318 -75.304042 +19027 19067 8422 10237780 4072 3.953 0.002 40.073118 -75.124431 +19029 3971 1788 5987237 326029 2.312 0.126 39.868345 -75.292496 +19030 12122 4810 11728264 216368 4.528 0.084 40.180468 -74.837263 +19031 4700 1993 7440789 0 2.873 0.000 40.109155 -75.217005 +19032 6606 2600 2631295 81372 1.016 0.031 39.891296 -75.278777 +19033 7777 3108 2856123 0 1.103 0.000 39.890882 -75.328434 +19034 5999 2255 16174631 0 6.245 0.000 40.134266 -75.204847 +19035 3780 1599 12328946 289524 4.760 0.112 40.051349 -75.277642 +19036 12942 5580 3959660 0 1.529 0.000 39.903578 -75.293355 +19038 31595 11875 20405047 4216 7.878 0.002 40.100418 -75.171761 +19040 20536 8551 15342762 0 5.924 0.000 40.176879 -75.105595 +19041 6248 2642 8552583 19720 3.302 0.008 40.007406 -75.315837 +19043 2664 1086 1025248 0 0.396 0.000 39.900283 -75.308850 +19044 15853 6919 21009428 0 8.112 0.000 40.186067 -75.152867 +19046 17809 8152 17154190 0 6.623 0.000 40.101404 -75.105519 +19047 35056 13507 45298748 1165253 17.490 0.450 40.179971 -74.912096 +19050 28073 12192 9542323 0 3.684 0.000 39.937537 -75.263665 +19053 25966 10086 27156876 199892 10.485 0.077 40.153681 -74.974991 +19054 17437 6564 10717438 339354 4.138 0.131 40.173024 -74.818822 +19055 13924 5016 7374405 51424 2.847 0.020 40.150307 -74.839218 +19056 15486 5661 9525374 49734 3.678 0.019 40.149339 -74.885815 +19057 17191 6523 11445666 72869 4.419 0.028 40.140815 -74.854040 +19060 11368 3923 20328240 0 7.849 0.000 39.849999 -75.493692 +19061 19997 8305 18171550 5888 7.016 0.002 39.828830 -75.435069 +19063 35704 15241 59767519 712926 23.076 0.275 39.920460 -75.416182 +19064 24459 8963 20617933 71135 7.961 0.027 39.933156 -75.340813 +19066 5864 1846 3534651 0 1.365 0.000 40.002583 -75.249064 +19067 51334 20684 73826009 6413719 28.504 2.476 40.206218 -74.818440 +19070 7277 2907 2807422 0 1.084 0.000 39.906248 -75.324733 +19072 9539 4261 8383326 76428 3.237 0.030 40.023891 -75.257741 +19073 18332 8072 53612613 1014972 20.700 0.392 39.979412 -75.435416 +19074 5890 2334 2012801 95830 0.777 0.037 39.885990 -75.295756 +19075 7354 2833 5852593 27173 2.260 0.010 40.113880 -75.185031 +19076 6525 2731 1930469 30132 0.745 0.012 39.886097 -75.307370 +19078 11067 4837 5238033 76206 2.022 0.029 39.874378 -75.322125 +19079 9168 3714 4783082 392783 1.847 0.152 39.898951 -75.266592 +19081 10337 3719 5786081 0 2.234 0.000 39.898048 -75.347159 +19082 40997 16142 6707198 0 2.590 0.000 39.960411 -75.270393 +19083 35878 13558 14391685 0 5.557 0.000 39.977025 -75.312066 +19085 8932 2028 15653036 11386 6.044 0.004 40.036973 -75.349913 +19086 11420 4476 9979474 0 3.853 0.000 39.890631 -75.370032 +19087 32225 12978 41348851 74098 15.965 0.029 40.061872 -75.402461 +19090 18832 7756 13917221 12539 5.373 0.005 40.157452 -75.124753 +19094 4406 1886 2077894 0 0.802 0.000 39.874881 -75.346642 +19095 7063 3385 5533178 0 2.136 0.000 40.086002 -75.151408 +19096 13572 5671 9075011 0 3.504 0.000 39.997882 -75.274178 +19102 4705 3513 489123 0 0.189 0.000 39.952783 -75.165586 +19103 21908 16612 1655022 35179 0.639 0.014 39.952896 -75.174298 +19104 51808 20039 7786929 332009 3.007 0.128 39.958719 -75.199069 +19106 11740 7576 2093078 1042727 0.808 0.403 39.948629 -75.142789 +19107 14875 8400 1422418 0 0.549 0.000 39.951735 -75.158654 +19109 0 0 8800 0 0.003 0.000 39.949652 -75.163654 +19111 63090 25613 12513063 729 4.831 0.000 40.060612 -75.080176 +19112 13 1 4504459 3340294 1.739 1.290 39.889877 -75.169141 +19113 120 50 8953142 57370 3.457 0.022 39.870698 -75.247123 +19114 30907 14010 14502413 797890 5.599 0.308 40.069361 -75.000264 +19115 33207 14507 14540073 151197 5.614 0.058 40.090698 -75.042868 +19116 33112 13729 12962332 12330 5.005 0.005 40.115569 -75.013276 +19118 9808 4708 8261391 109209 3.190 0.042 40.072443 -75.212415 +19119 27035 12980 8382957 13085 3.237 0.005 40.053348 -75.191112 +19120 68104 24009 8815347 73290 3.404 0.028 40.034147 -75.119198 +19121 36572 16390 5726826 343627 2.211 0.133 39.981980 -75.179120 +19122 21653 7427 3287314 0 1.269 0.000 39.977746 -75.145899 +19123 13416 7012 3273535 305265 1.264 0.118 39.964441 -75.145526 +19124 66691 24872 12625778 88860 4.875 0.034 40.017119 -75.092814 +19125 22958 10557 3564096 494740 1.376 0.191 39.976249 -75.125105 +19126 15758 6465 2959831 0 1.143 0.000 40.055390 -75.137560 +19127 5913 3053 1423543 284410 0.550 0.110 40.028146 -75.227549 +19128 35239 17333 18297700 266781 7.065 0.103 40.048483 -75.227934 +19129 10975 5192 5694606 255920 2.199 0.099 40.013014 -75.185402 +19130 24870 14360 3352518 222766 1.294 0.086 39.967935 -75.176073 +19131 43172 21192 13667979 895007 5.277 0.346 39.990184 -75.217795 +19132 36268 17675 5605765 0 2.164 0.000 39.996262 -75.170855 +19133 26063 10227 3368694 6252 1.301 0.002 39.993092 -75.141671 +19134 60675 23000 9086101 783394 3.508 0.302 39.989604 -75.109091 +19135 33091 13264 6031000 857509 2.329 0.331 40.022110 -75.048534 +19136 40647 14039 11926152 2406842 4.605 0.929 40.039406 -75.018555 +19137 8638 3515 6235598 2214628 2.408 0.855 39.993169 -75.072044 +19138 32273 13267 4462480 0 1.723 0.000 40.056002 -75.159048 +19139 41271 20327 4584293 4017 1.770 0.002 39.961352 -75.229334 +19140 54133 22209 7905263 14606 3.052 0.006 40.012177 -75.145495 +19141 31376 14086 4697165 0 1.814 0.000 40.037574 -75.145697 +19142 29595 10958 4366610 27116 1.686 0.010 39.921746 -75.233277 +19143 64849 29507 8256598 167363 3.188 0.065 39.942579 -75.225905 +19144 43329 21796 8891943 35907 3.433 0.014 40.033858 -75.174075 +19145 47261 20874 12604559 920045 4.867 0.355 39.909857 -75.198265 +19146 35113 19058 4376019 219600 1.690 0.085 39.939496 -75.184146 +19147 36228 19209 3645140 505788 1.407 0.195 39.935327 -75.152489 +19148 49732 21567 10937281 1579970 4.223 0.610 39.911612 -75.151475 +19149 55006 19984 6290280 0 2.429 0.000 40.037722 -75.065768 +19150 23378 10504 3904759 0 1.508 0.000 40.072496 -75.171824 +19151 29883 13090 6194458 45319 2.392 0.017 39.979570 -75.257036 +19152 33293 13730 7300416 38645 2.819 0.015 40.060946 -75.046985 +19153 12259 5524 18537214 3233849 7.157 1.249 39.893446 -75.229648 +19154 34196 13246 16409305 163243 6.336 0.063 40.096485 -74.983219 +19301 6402 2765 8705453 5551 3.361 0.002 40.040279 -75.480341 +19310 3066 1016 33732040 235885 13.024 0.091 39.935060 -75.972836 +19311 8584 2729 32619007 191350 12.594 0.074 39.821095 -75.771347 +19312 11539 4507 24549272 222130 9.479 0.086 40.031291 -75.454948 +19316 186 73 2306880 12894 0.891 0.005 40.054082 -75.833825 +19317 9530 3873 54664198 491071 21.106 0.190 39.860800 -75.599381 +19319 1130 58 1638822 625 0.633 0.000 39.924558 -75.520943 +19320 52342 20279 218888709 1958234 84.513 0.756 39.962514 -75.832374 +19330 5421 1962 87275400 386384 33.697 0.149 39.871898 -75.914423 +19333 6895 3236 8941452 39157 3.452 0.015 40.041872 -75.423597 +19335 46984 17889 110157148 2996160 42.532 1.157 40.022618 -75.721218 +19341 16709 7109 33409495 256470 12.899 0.099 40.039941 -75.640626 +19342 18099 7770 50510129 103418 19.502 0.040 39.906048 -75.496932 +19343 8142 2871 70186123 812654 27.099 0.314 40.100822 -75.754835 +19344 11919 4436 84521003 1372620 32.634 0.530 40.083633 -75.881815 +19345 689 1 523562 0 0.202 0.000 40.029437 -75.565339 +19348 22232 8388 95892423 692523 37.024 0.267 39.870280 -75.712913 +19350 10921 3854 72164459 721344 27.863 0.279 39.760017 -75.796677 +19352 10622 2796 49707754 348593 19.192 0.135 39.775919 -75.889657 +19355 24760 9708 99340208 597842 38.355 0.231 40.046834 -75.531359 +19358 526 205 812330 20964 0.314 0.008 39.965269 -75.805500 +19362 5815 2120 78170590 789498 30.182 0.305 39.750743 -76.070383 +19363 17055 5941 128884255 1660235 49.762 0.641 39.790137 -75.969405 +19365 7006 2725 46287924 170420 17.872 0.066 39.966371 -75.925129 +19367 171 78 437705 0 0.169 0.000 39.962992 -75.884023 +19372 1360 610 1513179 3314 0.584 0.001 39.998397 -75.758457 +19373 4273 864 10730219 38078 4.143 0.015 39.901816 -75.532483 +19374 1252 353 4454859 46882 1.720 0.018 39.824747 -75.759748 +19375 104 56 1068270 14958 0.412 0.006 39.900459 -75.740472 +19380 49534 20728 81710611 925462 31.549 0.357 39.989503 -75.604383 +19382 52388 20015 119869727 1518663 46.282 0.586 39.927670 -75.613444 +19383 3169 0 155201 0 0.060 0.000 39.951594 -75.601627 +19390 13425 4933 67625256 365668 26.110 0.141 39.836097 -75.842359 +19401 41753 17061 15621931 258449 6.032 0.100 40.130180 -75.331629 +19403 44260 18538 61462348 865752 23.731 0.334 40.149717 -75.378372 +19405 5127 2378 1873570 153252 0.723 0.059 40.103552 -75.341022 +19406 23441 10758 35808742 805911 13.826 0.311 40.095288 -75.382861 +19422 18506 7924 32865251 11978 12.689 0.005 40.156810 -75.279393 +19425 13922 4970 69784310 587643 26.944 0.227 40.101778 -75.651066 +19426 38831 12067 87804306 655625 33.901 0.253 40.191299 -75.437052 +19428 16580 8665 19684970 799683 7.600 0.309 40.080337 -75.300461 +19435 100 42 2010172 0 0.776 0.000 40.327484 -75.569174 +19436 640 377 908158 0 0.351 0.000 40.201504 -75.246987 +19437 757 290 2830590 0 1.093 0.000 40.182431 -75.258603 +19438 23765 9165 57775571 186324 22.307 0.072 40.268928 -75.390968 +19440 18038 7267 29188841 22734 11.270 0.009 40.286592 -75.290930 +19442 45 17 51079 0 0.020 0.000 40.129517 -75.583145 +19444 10519 4396 12546429 0 4.844 0.000 40.087755 -75.253168 +19446 55138 23035 58411963 14453 22.553 0.006 40.232824 -75.303178 +19453 1483 751 1706091 122229 0.659 0.047 40.140568 -75.497917 +19454 27870 11495 33802112 5916 13.051 0.002 40.223335 -75.243047 +19456 737 283 1061248 31165 0.410 0.012 40.133903 -75.461771 +19457 125 45 509931 7478 0.197 0.003 40.206378 -75.590117 +19460 40154 16748 91570030 3211790 35.355 1.240 40.126827 -75.530448 +19462 14658 6015 21925949 16452 8.466 0.006 40.115287 -75.281862 +19464 45788 19323 65736738 583727 25.381 0.225 40.258928 -75.615861 +19465 17038 6934 92713114 1668966 35.797 0.644 40.190531 -75.684443 +19468 25536 10468 42442583 714580 16.387 0.276 40.207638 -75.532067 +19472 74 32 436572 0 0.169 0.000 40.336934 -75.573783 +19473 15726 5872 63582665 548768 24.549 0.212 40.256574 -75.481495 +19474 733 356 503583 0 0.194 0.000 40.223528 -75.404036 +19475 11283 4496 42857227 862588 16.547 0.333 40.172197 -75.600000 +19477 146 17 132204 0 0.051 0.000 40.183315 -75.231457 +19492 717 369 3040747 0 1.174 0.000 40.285460 -75.491912 +19501 1047 440 2612833 9292 1.009 0.004 40.244212 -76.066211 +19503 1142 485 3873503 9266 1.496 0.004 40.406369 -75.571502 +19504 4998 1912 58340709 123951 22.525 0.048 40.416219 -75.588554 +19505 3226 1331 22939885 56734 8.857 0.022 40.379238 -75.622653 +19506 7356 2893 175934896 3213907 67.929 1.241 40.452953 -76.127974 +19507 3280 1285 97603533 280676 37.685 0.108 40.504847 -76.271180 +19508 15725 6236 98496778 1913019 38.030 0.739 40.263155 -75.833930 +19510 7639 2733 14478770 39879 5.590 0.015 40.447528 -75.877656 +19511 215 92 812715 4079 0.314 0.002 40.484220 -75.742724 +19512 16954 7260 112236651 427680 43.335 0.165 40.348327 -75.680555 +19518 14734 5500 93615164 1263482 36.145 0.488 40.270211 -75.752511 +19519 101 43 300556 12507 0.116 0.005 40.320657 -75.735108 +19520 5465 2299 96685029 1240089 37.330 0.479 40.163510 -75.793465 +19522 14229 5686 116385337 3310104 44.937 1.278 40.447368 -75.820496 +19523 250 103 3673253 52143 1.418 0.020 40.201036 -75.850448 +19525 14107 4943 43843656 6778 16.928 0.003 40.305649 -75.585013 +19526 11039 4835 149588946 1285042 57.757 0.496 40.547240 -75.996509 +19529 3131 1289 150379759 550166 58.062 0.212 40.631309 -75.864614 +19530 16432 5235 144578130 346160 55.822 0.134 40.539070 -75.781445 +19533 7686 2483 46398502 639888 17.915 0.247 40.425103 -75.992623 +19534 2041 905 52075448 317171 20.106 0.122 40.573419 -75.874898 +19535 23 10 118464 6724 0.046 0.003 40.339979 -75.804035 +19536 490 226 1000482 1293 0.386 0.000 40.480578 -75.758948 +19538 64 30 1247522 1705 0.482 0.001 40.547528 -75.702562 +19539 4597 1859 57289588 161306 22.120 0.062 40.496322 -75.683540 +19540 11723 4605 88112721 347722 34.021 0.134 40.236271 -75.966664 +19541 4403 1670 57956792 363925 22.377 0.141 40.486032 -76.030287 +19542 67 30 120316 0 0.046 0.000 40.261203 -75.767196 +19543 5905 2100 57384025 792238 22.156 0.306 40.177062 -75.901026 +19544 196 92 433423 1938 0.167 0.001 40.416876 -76.296566 +19545 428 186 1155290 0 0.446 0.000 40.341513 -75.624078 +19547 4222 1758 74017467 556759 28.578 0.215 40.380048 -75.768603 +19549 326 135 3607603 27390 1.393 0.011 40.584518 -76.020034 +19550 641 178 4183756 11435 1.615 0.004 40.454939 -76.249432 +19551 5034 1998 64413697 806623 24.870 0.311 40.361000 -76.137400 +19554 374 158 1172496 0 0.453 0.000 40.512925 -76.103746 +19555 3406 1498 35319873 1691737 13.637 0.653 40.494382 -75.953919 +19559 362 157 732795 1084 0.283 0.000 40.495223 -76.182401 +19560 7805 3254 21048459 150454 8.127 0.058 40.406182 -75.893801 +19562 2622 1208 2631129 3280 1.016 0.001 40.505379 -75.702653 +19564 90 52 534289 0 0.206 0.000 40.518731 -75.878310 +19565 8531 3497 49454218 1113960 19.094 0.430 40.342381 -76.087880 +19567 5388 2230 58466363 155805 22.574 0.060 40.388389 -76.209785 +19601 32998 13282 9611864 530441 3.711 0.205 40.355294 -75.940014 +19602 17900 8060 6400727 175574 2.471 0.068 40.328740 -75.914976 +19604 27658 9295 5686935 949 2.196 0.000 40.356825 -75.910242 +19605 18985 7949 43379611 1183990 16.749 0.457 40.397910 -75.943197 +19606 34416 14034 71222504 709252 27.499 0.274 40.338614 -75.858157 +19607 22544 10383 28980307 157381 11.189 0.061 40.291483 -75.944791 +19608 22719 8484 66514966 688358 25.682 0.266 40.310798 -76.034772 +19609 9946 4293 6536441 1395 2.524 0.001 40.328313 -75.997285 +19610 15258 6917 18179359 124935 7.019 0.048 40.341402 -75.974839 +19611 10589 4130 5242122 89029 2.024 0.034 40.324708 -75.942981 +19701 39194 14873 68921004 2056206 26.611 0.794 39.583153 -75.700909 +19702 51899 20138 73325367 637534 28.311 0.246 39.618200 -75.729724 +19703 14471 6511 10163643 2863831 3.924 1.106 39.801513 -75.453853 +19706 1822 759 9543807 1783166 3.685 0.688 39.573236 -75.596104 +19707 16483 6066 34191434 46344 13.201 0.018 39.785685 -75.683640 +19709 35107 12065 206236428 15708028 79.628 6.065 39.494582 -75.675004 +19710 41 15 289077 0 0.112 0.000 39.795167 -75.588092 +19711 51322 20429 70921117 6054 27.383 0.002 39.713598 -75.741073 +19713 30408 12622 35454077 0 13.689 0.000 39.670784 -75.712298 +19716 1568 2 136115 0 0.053 0.000 39.689560 -75.758391 +19717 3770 3 481212 0 0.186 0.000 39.678464 -75.752273 +19720 59250 22765 96096581 10076869 37.103 3.891 39.646922 -75.604852 +19730 451 188 3542019 165138 1.368 0.064 39.463828 -75.646933 +19731 252 114 2482501 241633 0.958 0.093 39.523585 -75.587574 +19732 25 9 1637589 0 0.632 0.000 39.783897 -75.570042 +19733 110 50 106227 0 0.041 0.000 39.555826 -75.651088 +19734 11651 4079 202495535 10178841 78.184 3.930 39.381644 -75.653322 +19735 12 8 501400 0 0.194 0.000 39.803172 -75.599718 +19736 32 14 343561 14400 0.133 0.006 39.804939 -75.674753 +19801 16286 7590 10721983 2700300 4.140 1.043 39.727781 -75.540718 +19802 24621 11195 8216055 98015 3.172 0.038 39.756764 -75.529302 +19803 21364 9046 32633427 25971 12.600 0.010 39.800665 -75.542415 +19804 17944 7726 19366704 348567 7.478 0.135 39.716862 -75.617677 +19805 40937 17071 13776226 4239 5.319 0.002 39.743799 -75.593842 +19806 9560 6081 4992923 59893 1.928 0.023 39.763305 -75.564142 +19807 7405 3615 50800985 887161 19.614 0.343 39.798650 -75.614358 +19808 38442 16318 36215724 5739 13.983 0.002 39.737615 -75.667057 +19809 14049 6656 18110812 4102419 6.993 1.584 39.757786 -75.500953 +19810 25011 10593 20450519 0 7.896 0.000 39.818780 -75.506400 +19901 35055 14389 206602384 25139622 79.770 9.706 39.181546 -75.473517 +19902 283 0 942108 0 0.364 0.000 39.125261 -75.481823 +19904 34132 13728 114145194 766469 44.072 0.296 39.171293 -75.587529 +19930 2768 8388 14612514 6280230 5.642 2.425 38.551362 -75.061096 +19931 211 123 2360498 0 0.911 0.000 38.573968 -75.623043 +19933 8535 3441 163945059 472577 63.300 0.182 38.728637 -75.619702 +19934 12805 5087 113499072 46817 43.822 0.018 39.082694 -75.628778 +19936 302 124 572563 0 0.221 0.000 39.219138 -75.584133 +19938 8357 3115 126270232 21890 48.753 0.008 39.260654 -75.705055 +19939 5979 3165 67446276 15064866 26.041 5.817 38.565774 -75.212753 +19940 5574 2271 107149243 17386 41.371 0.007 38.477562 -75.564931 +19941 2522 1015 87053537 164964 33.612 0.064 38.793658 -75.426062 +19943 11425 4761 170749870 940735 65.927 0.363 39.004436 -75.606986 +19944 620 1703 3281449 2745571 1.267 1.060 38.478535 -75.058146 +19945 6862 3936 162025236 4640309 62.558 1.792 38.505064 -75.228872 +19946 4420 1962 57339866 463835 22.139 0.179 39.034804 -75.449600 +19947 18799 6408 309966671 537541 119.679 0.208 38.666490 -75.398201 +19950 6951 2810 193463934 7806 74.697 0.003 38.818451 -75.596743 +19951 1733 787 26187882 369029 10.111 0.142 38.691757 -75.256875 +19952 10220 4201 228013725 291307 88.037 0.112 38.921424 -75.628425 +19953 4386 1694 75892243 21319 29.302 0.008 39.152487 -75.694133 +19954 1464 619 22352178 110079 8.630 0.043 38.897010 -75.520457 +19955 72 23 133154 0 0.051 0.000 39.225855 -75.668556 +19956 15500 6419 261786215 2616133 101.076 1.010 38.547724 -75.538143 +19958 19650 15089 127069786 25099942 49.062 9.691 38.729767 -75.167184 +19960 6295 2588 76518554 723105 29.544 0.279 38.850913 -75.408716 +19962 10206 3821 37591415 17805 14.514 0.007 39.068862 -75.488122 +19963 19206 8507 276214766 21143161 106.647 8.163 38.943253 -75.362567 +19964 1340 514 24601677 124385 9.499 0.048 39.089325 -75.720500 +19966 24601 16163 224234158 21408227 86.577 8.266 38.579422 -75.277196 +19967 354 268 3725917 0 1.439 0.000 38.538690 -75.122502 +19968 9549 4989 162410878 2185538 62.707 0.844 38.773918 -75.286880 +19970 6170 6934 25093019 8706107 9.688 3.361 38.559302 -75.097137 +19971 12385 15406 42848729 29103151 16.544 11.237 38.686005 -75.086681 +19973 23838 9902 203730949 4951601 78.661 1.912 38.638896 -75.615899 +19975 8253 6664 70499498 4563721 27.220 1.762 38.468423 -75.165154 +19977 22984 8011 215286331 14467454 83.123 5.586 39.298946 -75.546122 +19979 632 256 5235188 0 2.021 0.000 39.048818 -75.572566 +20001 38551 18751 5644604 159593 2.179 0.062 38.910353 -77.017739 +20002 52370 26166 13616347 579202 5.257 0.224 38.905026 -76.983607 +20003 26454 13216 5806697 671619 2.242 0.259 38.881904 -76.990935 +20004 1622 1543 901753 0 0.348 0.000 38.894888 -77.028635 +20005 12775 9218 1103659 0 0.426 0.000 38.904674 -77.031578 +20006 3227 940 878122 0 0.339 0.000 38.898613 -77.041468 +20007 26866 13849 7787301 1273527 3.007 0.492 38.914337 -77.079313 +20008 27525 17244 7865022 33133 3.037 0.013 38.936238 -77.059981 +20009 47992 29093 3405906 25630 1.315 0.010 38.919144 -77.037381 +20010 30138 13861 2807752 16379 1.084 0.006 38.933366 -77.030312 +20011 58536 25082 12631549 106587 4.877 0.041 38.952514 -77.022991 +20012 13414 6058 5857663 67595 2.262 0.026 38.976873 -77.032609 +20015 15332 6756 8940121 12516 3.452 0.005 38.966889 -77.058323 +20016 32519 14842 11499363 392741 4.440 0.152 38.937093 -77.091159 +20017 17735 7729 5722793 746 2.210 0.000 38.938188 -76.992126 +20018 16894 7652 7810833 31159 3.016 0.012 38.926576 -76.974446 +20019 54358 25109 15980842 804510 6.170 0.311 38.891412 -76.943575 +20020 49864 22753 11948308 381264 4.613 0.147 38.860413 -76.978933 +20024 11510 7732 6770280 2003315 2.614 0.773 38.876010 -77.025323 +20032 35653 15681 13604123 195990 5.253 0.076 38.833719 -77.006591 +20036 5435 4269 862180 0 0.333 0.000 38.907017 -77.041569 +20037 14642 8154 1668857 851783 0.644 0.329 38.898918 -77.055446 +20045 0 0 27766 0 0.011 0.000 38.896731 -77.030798 +20052 470 6 7062 0 0.003 0.000 38.900126 -77.046981 +20053 0 0 85108 0 0.033 0.000 38.884108 -77.011231 +20057 3888 0 434173 0 0.168 0.000 38.909123 -77.075774 +20064 1890 1 506097 0 0.195 0.000 38.936353 -76.999168 +20105 11315 3855 96165403 967824 37.130 0.374 38.953126 -77.602742 +20106 5142 2040 156013615 764493 60.237 0.295 38.693414 -78.002506 +20109 37265 13584 53069014 476060 20.490 0.184 38.793641 -77.531024 +20110 43876 14714 32703939 174896 12.627 0.068 38.747561 -77.484727 +20111 30590 10074 42168131 1083552 16.281 0.418 38.748968 -77.427873 +20112 25833 8448 101267184 1379392 39.099 0.533 38.661923 -77.432845 +20115 5838 2522 246556232 1172025 95.196 0.453 38.809947 -77.911841 +20117 2693 1469 115874751 1293092 44.739 0.499 38.998822 -77.733937 +20118 7 3 26677 0 0.010 0.000 38.968339 -77.737005 +20119 3946 1515 165400790 1095985 63.862 0.423 38.610380 -77.622006 +20120 40695 14217 44481402 698603 17.174 0.270 38.856401 -77.476371 +20121 27988 10357 22384742 1089125 8.643 0.421 38.811059 -77.463237 +20124 14857 5052 55085565 1672858 21.269 0.646 38.781332 -77.391333 +20129 618 216 8318702 30850 3.212 0.012 39.172018 -77.601254 +20130 281 161 21492906 50243 8.298 0.019 39.036981 -77.949319 +20132 15900 5466 214735943 1928920 82.910 0.745 39.166243 -77.719389 +20135 2834 1349 115422750 1646425 44.565 0.636 39.094939 -77.864902 +20136 28498 8483 37985987 648939 14.666 0.251 38.738325 -77.554552 +20137 1510 580 44574607 205268 17.210 0.079 38.806731 -77.722463 +20139 217 100 8476253 17201 3.273 0.007 38.658385 -77.697216 +20141 6131 2116 70525657 752212 27.230 0.290 39.112390 -77.790704 +20143 1216 408 19987138 194971 7.717 0.075 38.859556 -77.564143 +20144 1012 496 104135326 444194 40.207 0.172 38.922990 -77.946943 +20147 54086 19719 51473450 821789 19.874 0.317 39.041947 -77.478130 +20148 28310 9170 42153348 1613770 16.275 0.623 38.995234 -77.522341 +20151 21374 6828 40238355 348979 15.536 0.135 38.896524 -77.445141 +20152 24946 7876 64475266 789095 24.894 0.305 38.919145 -77.502426 +20155 29411 10357 74850910 2410381 28.900 0.931 38.810114 -77.617789 +20158 4288 1588 37695398 221935 14.554 0.086 39.139658 -77.657989 +20164 37747 12565 19193264 127008 7.411 0.049 39.013299 -77.395067 +20165 32383 11774 25410814 609497 9.811 0.235 39.057940 -77.392694 +20166 9521 3464 45191352 567670 17.448 0.219 38.986510 -77.455909 +20169 19801 6746 83476681 552846 32.231 0.213 38.879166 -77.645449 +20170 41236 13713 22695973 97047 8.763 0.037 38.980039 -77.380901 +20171 45887 16823 31347306 192665 12.103 0.074 38.924038 -77.396479 +20175 27169 10083 161750462 1926184 62.452 0.744 39.065167 -77.604118 +20176 46506 16166 147566009 1118991 56.976 0.432 39.184706 -77.544111 +20180 6549 2395 110690177 617997 42.738 0.239 39.268574 -77.637938 +20181 7877 2758 153267360 2390896 59.177 0.923 38.689126 -77.569610 +20184 839 471 102613083 733696 39.619 0.283 39.000671 -77.883754 +20186 14557 5977 166908469 959862 64.444 0.371 38.698163 -77.851394 +20187 15252 5343 125588620 1478220 48.490 0.571 38.722872 -77.748045 +20190 17529 9231 11681387 259271 4.510 0.100 38.959322 -77.339298 +20191 29128 12071 21299805 463333 8.224 0.179 38.934645 -77.351702 +20194 13165 5900 8177771 142297 3.157 0.055 38.981059 -77.340775 +20197 1840 661 34787023 327904 13.431 0.127 39.195454 -77.627818 +20198 2492 1229 188600032 797200 72.819 0.308 38.884110 -77.744761 +20202 0 0 18721 0 0.007 0.000 38.887071 -77.021010 +20204 0 0 14638 0 0.006 0.000 38.885559 -77.014429 +20228 0 0 81628 0 0.032 0.000 38.886413 -77.030240 +20230 0 0 55495 0 0.021 0.000 38.893794 -77.032798 +20240 0 0 31673 0 0.012 0.000 38.894456 -77.042605 +20245 0 0 64474 0 0.025 0.000 38.893340 -77.044460 +20260 0 0 44402 0 0.017 0.000 38.883670 -77.024998 +20307 353 0 342486 61 0.132 0.000 38.974772 -77.031354 +20317 903 1014 1180231 5298 0.456 0.002 38.934852 -77.014277 +20319 84 0 361932 279955 0.140 0.108 38.864838 -77.017003 +20373 131 0 936803 1808 0.362 0.001 38.858625 -77.007865 +20390 584 0 10935 0 0.004 0.000 38.879019 -76.993695 +20405 0 0 33011 0 0.013 0.000 38.896377 -77.042588 +20418 0 0 29418 0 0.011 0.000 38.892800 -77.047764 +20427 0 0 17366 0 0.007 0.000 38.902083 -77.047573 +20506 0 0 49203 0 0.019 0.000 38.897030 -77.038702 +20510 0 0 30810 0 0.012 0.000 38.892780 -77.006890 +20520 0 0 83728 0 0.032 0.000 38.894759 -77.048407 +20535 8 0 12919 0 0.005 0.000 38.894467 -77.024844 +20540 0 0 86892 0 0.034 0.000 38.887929 -77.004713 +20551 0 0 23513 0 0.009 0.000 38.892802 -77.045800 +20553 0 0 25135 0 0.010 0.000 38.886946 -77.022968 +20560 0 0 51472 0 0.020 0.000 38.888232 -77.026003 +20565 0 0 173126 0 0.067 0.000 38.890630 -77.019211 +20566 0 0 102187 0 0.039 0.000 38.895579 -77.055064 +20593 0 0 78201 0 0.030 0.000 38.866759 -77.010160 +20601 24156 8722 115635266 387684 44.647 0.150 38.613372 -76.851612 +20602 24955 9736 35830723 352762 13.834 0.136 38.583394 -76.894551 +20603 28967 10317 44239637 219356 17.081 0.085 38.630390 -76.976583 +20606 431 230 7501011 1248760 2.896 0.482 38.263046 -76.737309 +20607 9802 3504 54357590 448221 20.988 0.173 38.672666 -77.018549 +20608 919 426 45583064 5330329 17.600 2.058 38.582405 -76.700998 +20609 1120 554 25723294 6602735 9.932 2.549 38.270007 -76.767723 +20611 1078 413 18243786 33481 7.044 0.013 38.455014 -76.978244 +20612 261 142 604744 1337569 0.233 0.516 38.505060 -76.677210 +20613 11860 4424 195821362 3726835 75.607 1.439 38.671222 -76.805307 +20615 405 204 1883242 220896 0.727 0.085 38.416231 -76.548347 +20616 5857 2203 25397165 3717651 9.806 1.435 38.663663 -77.097480 +20617 781 301 16949455 17679 6.544 0.007 38.548459 -76.858802 +20618 607 280 14439547 2492573 5.575 0.962 38.285216 -76.786972 +20619 10503 4366 40517011 3714765 15.644 1.434 38.292364 -76.527888 +20620 1443 557 10023159 240541 3.870 0.093 38.233919 -76.528928 +20621 1373 777 35945451 4052045 13.879 1.565 38.325866 -76.800492 +20622 4900 1485 96821277 1645404 37.383 0.635 38.418591 -76.874412 +20623 2744 892 4987134 19273 1.926 0.007 38.741337 -76.842233 +20624 1282 487 32369763 1238952 12.498 0.478 38.338026 -76.733442 +20625 1062 609 1244964 289553 0.481 0.112 38.262223 -76.847270 +20626 373 230 3135030 3998116 1.210 1.544 38.229649 -76.769482 +20628 594 271 17224678 14584224 6.650 5.631 38.153439 -76.338415 +20629 535 341 1116993 448503 0.431 0.173 38.336582 -76.450404 +20630 348 174 14747899 6565539 5.694 2.535 38.164277 -76.475774 +20632 347 131 19035978 424172 7.350 0.164 38.432799 -76.957993 +20634 5927 2375 17757492 901110 6.856 0.348 38.269412 -76.506885 +20636 9937 3796 95184610 21321636 36.751 8.232 38.352141 -76.567187 +20637 5423 1882 80158456 3428515 30.949 1.324 38.525108 -76.755948 +20639 14227 4832 108425050 4964875 41.863 1.917 38.607278 -76.609784 +20640 10438 4089 107965919 18435586 41.686 7.118 38.525435 -77.213700 +20645 857 386 5686073 4075598 2.195 1.574 38.294500 -76.914752 +20646 18890 7015 213580764 1853415 82.464 0.716 38.523258 -77.002986 +20650 13717 5412 155914556 32039358 60.199 12.370 38.268654 -76.633157 +20653 24481 10066 84244771 9242954 32.527 3.569 38.236310 -76.432886 +20657 20483 7765 77903257 22483528 30.079 8.681 38.379757 -76.442883 +20658 854 377 7793913 14245 3.009 0.006 38.560582 -77.160419 +20659 23498 8150 242995087 29122140 93.821 11.244 38.418673 -76.732449 +20660 97 32 2358430 0 0.911 0.000 38.370232 -76.706614 +20662 2934 1229 147909322 25017475 57.108 9.659 38.428471 -77.205340 +20664 2987 1384 106512338 14123605 41.125 5.453 38.354485 -76.925395 +20667 494 222 5225924 951067 2.018 0.367 38.219073 -76.440438 +20670 1014 225 24425828 14642218 9.431 5.653 38.285279 -76.415708 +20674 830 511 5149701 10400008 1.988 4.015 38.134797 -76.503548 +20675 1671 613 15647644 0 6.042 0.000 38.580932 -77.022463 +20676 3871 1545 42872913 2991716 16.553 1.155 38.493224 -76.541273 +20677 2322 878 39910132 5019649 15.409 1.938 38.499329 -77.034991 +20678 11045 4121 110719859 21008404 42.749 8.111 38.522820 -76.601350 +20680 1119 585 15940938 4787193 6.155 1.848 38.112015 -76.377931 +20684 1125 503 23553634 3757413 9.094 1.451 38.142290 -76.409959 +20685 6471 2499 57649594 23161836 22.259 8.943 38.434862 -76.526706 +20686 1332 38 2818991 130001 1.088 0.050 38.178213 -76.429504 +20687 313 244 15402392 20928213 5.947 8.080 38.064296 -76.340757 +20688 1828 1188 3708374 5807342 1.432 2.242 38.327135 -76.464183 +20689 1694 579 20155032 61647 7.782 0.024 38.662952 -76.579405 +20690 740 369 4685435 1530708 1.809 0.591 38.157447 -76.533469 +20692 1051 434 22533055 1099702 8.700 0.425 38.181015 -76.502084 +20693 1088 424 52285009 13685613 20.187 5.284 38.457068 -77.089581 +20695 6794 2574 32761135 133483 12.649 0.052 38.591492 -76.970784 +20701 2 1 3428521 6563 1.324 0.003 39.125563 -76.785436 +20705 26188 9281 40930151 266150 15.803 0.103 39.049423 -76.900362 +20706 38692 13065 26832451 131889 10.360 0.051 38.965880 -76.851091 +20707 31538 13576 28896187 481328 11.157 0.186 39.099378 -76.882766 +20708 25546 10733 36245211 784570 13.994 0.303 39.057365 -76.825784 +20710 9313 3882 2847143 8094 1.099 0.003 38.942368 -76.925910 +20711 6643 2710 88051334 1420884 33.997 0.549 38.801058 -76.645108 +20712 9031 3927 1892811 12394 0.731 0.005 38.942361 -76.964578 +20714 4345 2179 6037605 4535724 2.331 1.751 38.723689 -76.552748 +20715 26382 9357 37644219 169230 14.535 0.065 38.989393 -76.741331 +20716 20787 8469 29884962 178423 11.539 0.069 38.926428 -76.715028 +20720 21031 7229 28942710 207151 11.175 0.080 38.982780 -76.785824 +20721 27016 9595 43235668 376606 16.693 0.145 38.915222 -76.785129 +20722 5711 1945 3810192 79461 1.471 0.031 38.934558 -76.950600 +20723 28972 10491 34017963 1095691 13.134 0.423 39.137569 -76.867942 +20724 16093 6615 20761159 0 8.016 0.000 39.101075 -76.804005 +20732 9919 3957 26384774 6619580 10.187 2.556 38.655142 -76.542568 +20733 2672 1108 8509429 1055182 3.286 0.407 38.805653 -76.532229 +20735 35421 12617 67167555 284829 25.934 0.110 38.750234 -76.905165 +20736 8904 3037 66156497 1655248 25.543 0.639 38.689075 -76.627765 +20737 20684 6227 10724278 76543 4.141 0.030 38.964265 -76.913538 +20740 28780 11011 20714189 159386 7.998 0.062 39.002866 -76.931652 +20742 7808 1 1918801 0 0.741 0.000 38.989629 -76.945690 +20743 38621 15511 25190668 21486 9.726 0.008 38.884230 -76.893317 +20744 50722 19468 68211790 323424 26.337 0.125 38.758348 -76.983786 +20745 28451 12165 16741975 262294 6.464 0.101 38.806809 -76.995859 +20746 28838 12548 20404769 42326 7.878 0.016 38.836403 -76.918265 +20747 40054 16486 19771363 5039 7.634 0.002 38.854996 -76.883307 +20748 38792 16684 23521810 12156 9.082 0.005 38.814902 -76.933436 +20751 2343 1107 13138777 3106769 5.073 1.200 38.794437 -76.561199 +20754 6951 2420 43684109 2131263 16.867 0.823 38.730710 -76.646639 +20755 9302 2714 21701209 31874 8.379 0.012 39.107783 -76.747196 +20758 721 283 10432083 0 4.028 0.000 38.733370 -76.593145 +20759 3355 1155 16425882 711849 6.342 0.275 39.153988 -76.931202 +20762 2973 1385 15270777 6924 5.896 0.003 38.809803 -76.869158 +20763 2664 1059 3662440 4924 1.414 0.002 39.135205 -76.820472 +20764 4176 1945 10576066 7504671 4.083 2.898 38.834356 -76.506137 +20765 514 246 1207947 516047 0.466 0.199 38.841890 -76.544916 +20769 6604 2150 19897450 268746 7.682 0.104 38.996697 -76.818660 +20770 25173 11407 21280621 195187 8.216 0.075 39.002985 -76.879165 +20772 42625 16207 185336844 3571338 71.559 1.379 38.780280 -76.766978 +20774 43013 17131 89954196 494052 34.732 0.191 38.874543 -76.774153 +20776 3289 1224 58404040 5967523 22.550 2.304 38.872408 -76.572429 +20777 3314 1111 19568844 110664 7.556 0.043 39.175020 -76.968988 +20778 2009 813 20343335 1738005 7.855 0.671 38.828682 -76.572609 +20779 1182 534 16812673 1629478 6.491 0.629 38.764781 -76.572586 +20781 11440 4093 6312229 205096 2.437 0.079 38.952860 -76.946296 +20782 30560 11552 10973600 99086 4.237 0.038 38.965814 -76.966259 +20783 44487 13891 14579957 25155 5.629 0.010 38.999757 -76.970698 +20784 29449 10155 11027347 1897 4.258 0.001 38.950547 -76.891720 +20785 35052 14864 25546966 43907 9.864 0.017 38.918291 -76.881948 +20794 14098 3202 26420064 32237 10.201 0.012 39.151138 -76.794631 +20812 255 100 496734 371058 0.192 0.143 38.967041 -77.143881 +20814 27642 14103 13166146 52953 5.083 0.020 39.004989 -77.101490 +20815 29082 13850 14066048 35097 5.431 0.014 38.983386 -77.079288 +20816 16208 6666 8975177 1552658 3.465 0.599 38.956950 -77.120006 +20817 36240 14020 35923615 186053 13.870 0.072 38.997229 -77.151871 +20818 1962 789 2676591 1118503 1.033 0.432 38.973938 -77.162143 +20832 24965 8863 26075340 58727 10.068 0.023 39.150630 -77.070708 +20833 7735 2545 49836780 2565340 19.242 0.990 39.207175 -77.054670 +20837 5789 2059 109773948 8443765 42.384 3.260 39.116506 -77.407115 +20838 259 109 6997600 21554 2.702 0.008 39.218101 -77.390831 +20839 214 81 12690683 41061 4.900 0.016 39.188307 -77.434971 +20841 10460 2908 67289814 2375725 25.981 0.917 39.191853 -77.327521 +20842 1824 781 135898668 9035801 52.471 3.489 39.199879 -77.415265 +20850 46340 19085 36523908 198966 14.102 0.077 39.091390 -77.182197 +20851 14191 5042 6147440 2088 2.374 0.001 39.079082 -77.121858 +20852 40365 20062 21555966 97342 8.323 0.038 39.051928 -77.122040 +20853 29673 10035 23335068 243486 9.010 0.094 39.101713 -77.094562 +20854 49611 17262 87422942 7215824 33.754 2.786 39.032995 -77.222312 +20855 14295 5018 33961240 635428 13.113 0.245 39.137633 -77.132021 +20860 2396 849 9857358 26973 3.806 0.010 39.142366 -77.025412 +20861 1875 668 9947174 18520 3.841 0.007 39.149747 -76.999591 +20862 343 124 3029792 15389 1.170 0.006 39.181230 -77.018806 +20866 13344 4652 18304211 618885 7.067 0.239 39.109331 -76.933852 +20868 790 250 5193925 5002 2.005 0.002 39.126395 -76.969321 +20871 13130 4295 53176080 138014 20.531 0.053 39.261341 -77.282547 +20872 13104 4575 54025176 110921 20.859 0.043 39.294465 -77.216125 +20874 57367 22256 54952005 3542188 21.217 1.368 39.130031 -77.298548 +20876 25496 8738 30193838 148752 11.658 0.057 39.208384 -77.237152 +20877 34321 12249 14964274 89555 5.778 0.035 39.139703 -77.185238 +20878 62446 23155 56550922 1136465 21.834 0.439 39.115209 -77.251610 +20879 24360 8371 19855864 103572 7.666 0.040 39.168041 -77.175386 +20880 450 204 615162 0 0.238 0.000 39.139726 -77.173557 +20882 14063 4654 99982538 427611 38.603 0.165 39.239122 -77.151071 +20886 33282 12759 12189201 192733 4.706 0.074 39.187415 -77.207136 +20895 19054 7475 10514230 78545 4.060 0.030 39.027030 -77.077539 +20896 906 352 640940 3372 0.247 0.001 39.035382 -77.092454 +20899 142 130 192140 0 0.074 0.000 39.143736 -77.216228 +20901 34832 12912 13946891 69938 5.385 0.027 39.020266 -77.008021 +20902 48841 17073 19634280 75384 7.581 0.029 39.045249 -77.039264 +20903 23625 7318 9335645 4751 3.605 0.002 39.022179 -76.984677 +20904 54612 21452 35402513 97435 13.669 0.038 39.066605 -76.980935 +20905 18044 5977 33328393 555453 12.868 0.214 39.109645 -76.988478 +20906 64696 25715 31358675 198767 12.108 0.077 39.087321 -77.057159 +20910 37445 19047 11796743 29906 4.555 0.012 39.002883 -77.036607 +20912 24807 10257 6903313 13926 2.665 0.005 38.981596 -77.001130 +21001 21487 8942 77441232 4109484 29.900 1.587 39.503048 -76.202092 +21005 2112 760 20637751 2153023 7.968 0.831 39.488112 -76.144520 +21009 29766 11620 29377217 2030042 11.343 0.784 39.466888 -76.295200 +21010 104 107 13302293 576115 5.136 0.222 39.390932 -76.292629 +21012 21317 8140 25280394 7074380 9.761 2.731 39.046835 -76.496133 +21013 4653 1743 39130829 70909 15.108 0.027 39.511502 -76.490788 +21014 36047 14355 36477493 188391 14.084 0.073 39.536084 -76.352157 +21015 27763 10221 80085894 562623 30.921 0.217 39.544175 -76.292469 +21017 7062 2880 7134553 6770 2.755 0.003 39.474778 -76.234410 +21028 3460 1296 35213245 136396 13.596 0.053 39.565977 -76.249469 +21029 11333 3515 41304709 536674 15.948 0.207 39.213616 -76.959448 +21030 24355 10994 61585318 1246811 23.778 0.481 39.490779 -76.670695 +21031 4 2 2515565 0 0.971 0.000 39.487208 -76.658010 +21032 8848 3488 45682249 4493846 17.638 1.735 39.028343 -76.604145 +21034 3387 1402 65082100 7322047 25.128 2.827 39.640719 -76.223028 +21035 7815 2733 73449277 465812 28.359 0.180 38.938300 -76.626588 +21036 2114 717 15774195 1774161 6.090 0.685 39.233122 -76.999238 +21037 20618 8449 44708019 12083162 17.262 4.665 38.919135 -76.543507 +21040 24420 9281 20633014 2989202 7.966 1.154 39.436500 -76.289966 +21042 38076 13587 97095136 440182 37.489 0.170 39.277181 -76.894602 +21043 42246 16308 44017823 185361 16.995 0.072 39.260580 -76.800106 +21044 41704 18371 31075560 262874 11.998 0.101 39.205869 -76.879110 +21045 38288 15283 25138579 244075 9.706 0.094 39.206042 -76.828234 +21046 15080 6262 20186665 147315 7.794 0.057 39.173116 -76.842028 +21047 11873 4293 60927725 170736 23.524 0.066 39.521387 -76.438784 +21048 10650 3993 70073338 3602168 27.055 1.391 39.488167 -76.915068 +21050 18202 6609 73589819 283819 28.413 0.110 39.585343 -76.392164 +21051 279 105 1029627 1425 0.398 0.001 39.472691 -76.455841 +21052 303 131 193870 175832 0.075 0.068 39.205885 -76.447118 +21053 3305 1223 58128997 140156 22.444 0.054 39.695532 -76.715068 +21054 10127 3850 46167989 25677 17.826 0.010 39.041032 -76.685980 +21056 267 230 3564220 10181970 1.376 3.931 39.072941 -76.428558 +21057 4112 1695 43517294 1245037 16.802 0.481 39.448749 -76.512474 +21060 29223 12076 32403463 2722648 12.511 1.051 39.169791 -76.580873 +21061 53684 22143 31439237 45320 12.139 0.017 39.161942 -76.629444 +21071 497 222 2568339 0 0.992 0.000 39.481656 -76.810954 +21074 15084 5777 97032422 792813 37.464 0.306 39.621612 -76.839847 +21075 26344 10215 37583125 152946 14.511 0.059 39.203363 -76.750444 +21076 12952 4956 32594710 8281 12.585 0.003 39.168512 -76.716355 +21077 224 98 1704393 0 0.658 0.000 39.156134 -76.697686 +21078 17603 7797 78161496 13860921 30.178 5.352 39.559237 -76.141217 +21082 654 263 11526426 11313 4.450 0.004 39.478136 -76.473523 +21084 7652 2806 63526032 272430 24.528 0.105 39.613561 -76.466441 +21085 16171 6552 46410077 1159004 17.919 0.447 39.445889 -76.357010 +21087 5451 2076 36286190 264213 14.010 0.102 39.449314 -76.413240 +21090 9784 3962 17065249 200451 6.589 0.077 39.208481 -76.672517 +21093 36465 16205 52336899 2206651 20.207 0.852 39.439448 -76.640811 +21102 11751 4245 104814610 1625419 40.469 0.628 39.682834 -76.850538 +21104 4601 1506 43981935 1909782 16.982 0.737 39.346904 -76.912757 +21105 65 28 303220 0 0.117 0.000 39.713941 -76.651296 +21108 17964 6517 33861012 186378 13.074 0.072 39.091266 -76.621098 +21111 4903 1883 90824166 490672 35.067 0.189 39.575537 -76.589692 +21113 30469 12705 37362578 0 14.426 0.000 39.053573 -76.716577 +21114 25225 9857 14422422 0 5.569 0.000 39.009642 -76.684221 +21117 53778 23010 84222858 447280 32.519 0.173 39.427563 -76.777976 +21120 6967 2540 109677132 3354891 42.347 1.295 39.646204 -76.674854 +21122 60576 22896 81061475 30087569 31.298 11.617 39.121745 -76.495300 +21128 12802 5053 17286862 14546 6.674 0.006 39.409428 -76.447460 +21130 187 90 1956896 0 0.756 0.000 39.477306 -76.194185 +21131 7253 2656 57565142 3575927 22.226 1.381 39.503655 -76.589870 +21132 2634 954 54914875 202181 21.203 0.078 39.694705 -76.440369 +21133 29998 11630 26247594 40957 10.134 0.016 39.373505 -76.815284 +21136 33781 13146 145011700 4291579 55.989 1.657 39.483767 -76.794244 +21140 3457 1364 3500425 995915 1.352 0.385 38.950564 -76.583949 +21144 31884 11447 41454184 0 16.006 0.000 39.120912 -76.677268 +21146 26705 9747 26495118 7098389 10.230 2.741 39.079136 -76.558698 +21152 5544 2425 59270022 208546 22.884 0.081 39.541052 -76.679892 +21153 323 131 5085252 16590 1.963 0.006 39.418385 -76.700918 +21154 6464 2396 104556045 472669 40.369 0.182 39.657449 -76.360475 +21155 2371 1002 56668337 174624 21.880 0.067 39.573619 -76.806079 +21156 358 142 3735257 1593 1.442 0.001 39.437208 -76.396486 +21157 36920 14399 198509198 465812 76.645 0.180 39.548569 -76.983558 +21158 20234 7692 192837563 589893 74.455 0.228 39.653737 -77.035092 +21160 2408 924 42825657 2329353 16.535 0.899 39.700255 -76.306537 +21161 5490 2074 125375715 457585 48.408 0.177 39.659903 -76.565060 +21162 3655 1392 19321366 2766755 7.460 1.068 39.390100 -76.405583 +21163 7026 2542 32691039 481716 12.622 0.186 39.337532 -76.848255 +21201 16972 11255 3340677 0 1.290 0.000 39.294794 -76.622228 +21202 22832 10372 4111039 331316 1.587 0.128 39.296526 -76.607016 +21204 20253 8274 15615168 179910 6.029 0.069 39.402268 -76.632295 +21205 16146 7059 5304530 0 2.048 0.000 39.302295 -76.564465 +21206 50846 21762 18667230 3869 7.207 0.001 39.338428 -76.538877 +21207 48133 20272 26710727 81229 10.313 0.031 39.324167 -76.719484 +21208 33917 15621 31925959 65741 12.327 0.025 39.385362 -76.731109 +21209 26465 12054 18354471 101926 7.087 0.039 39.373191 -76.670003 +21210 14292 5949 8579050 5635 3.312 0.002 39.359156 -76.632685 +21211 17351 9287 7219042 25184 2.787 0.010 39.329817 -76.639408 +21212 32322 14380 12042941 97316 4.650 0.038 39.368561 -76.614898 +21213 32733 14968 8833257 1899 3.411 0.001 39.314942 -76.577841 +21214 20564 8981 7394837 0 2.855 0.000 39.351797 -76.564402 +21215 60161 26995 17645223 10946 6.813 0.004 39.345241 -76.683566 +21216 32071 14934 8634688 145342 3.334 0.056 39.310595 -76.671717 +21217 37111 21096 5999196 191954 2.316 0.074 39.308473 -76.639154 +21218 49796 23730 10836080 316361 4.184 0.122 39.330107 -76.601451 +21219 9379 3816 21258354 10767333 8.208 4.157 39.227459 -76.443305 +21220 39199 16245 55824029 16798384 21.554 6.486 39.347315 -76.390009 +21221 42154 17966 38242330 16294079 14.765 6.291 39.289205 -76.434770 +21222 55786 23231 28389988 5688538 10.961 2.196 39.264840 -76.492566 +21223 26366 14343 6817146 48381 2.632 0.019 39.282778 -76.653992 +21224 49134 23112 24539976 8880483 9.475 3.429 39.274860 -76.542833 +21225 33545 13715 16741531 641895 6.464 0.248 39.226117 -76.615735 +21226 7561 3347 25718732 17453901 9.930 6.739 39.208888 -76.562926 +21227 33534 13611 29853685 570967 11.527 0.220 39.239970 -76.679450 +21228 47577 19985 40143654 107562 15.500 0.042 39.272857 -76.747741 +21229 45213 19681 15227940 9418 5.880 0.004 39.284272 -76.691405 +21230 33568 17478 16325575 5336342 6.303 2.060 39.266128 -76.623807 +21231 15748 9108 2259604 384090 0.872 0.148 39.287200 -76.591953 +21234 69752 31527 33648163 11024 12.992 0.004 39.393417 -76.534228 +21236 38474 16332 22187907 27168 8.567 0.010 39.388421 -76.483550 +21237 30059 12461 29708940 665797 11.471 0.257 39.341874 -76.495402 +21239 28793 12505 8375263 2110 3.234 0.001 39.367099 -76.589171 +21240 0 0 12553482 1056 4.847 0.000 39.173866 -76.671519 +21244 34611 14378 34747180 171979 13.416 0.066 39.334941 -76.776703 +21250 3205 1 634718 0 0.245 0.000 39.255611 -76.711179 +21251 934 0 461424 0 0.178 0.000 39.344713 -76.581242 +21252 2872 0 372524 0 0.144 0.000 39.393786 -76.607803 +21286 19206 8594 22060767 1043628 8.518 0.403 39.411836 -76.573235 +21401 36012 17412 51116387 5914452 19.736 2.284 38.987750 -76.552800 +21402 5217 344 5017093 2687880 1.937 1.038 38.987650 -76.472326 +21403 30269 14329 23530922 12274727 9.085 4.739 38.942123 -76.489628 +21405 544 340 2566889 1950935 0.991 0.753 39.027584 -76.557721 +21409 20064 7718 36247301 11631106 13.995 4.491 39.018435 -76.442533 +21502 44400 19499 232035115 4155097 89.589 1.604 39.643695 -78.755141 +21520 2074 1054 158522417 0 61.206 0.000 39.624738 -79.301479 +21521 1265 605 60100158 55227 23.205 0.021 39.551371 -79.041477 +21522 141 53 6684501 0 2.581 0.000 39.610245 -79.227754 +21523 286 124 1834884 63933 0.708 0.025 39.481678 -79.079493 +21524 626 275 8959348 0 3.459 0.000 39.707625 -78.801406 +21529 631 287 9382408 85941 3.623 0.033 39.703942 -78.767171 +21530 1591 801 146146286 440000 56.427 0.170 39.679640 -78.546123 +21531 2227 1278 160031728 2472012 61.789 0.954 39.643087 -79.428015 +21532 15620 6425 201557315 491015 77.822 0.190 39.647813 -78.983757 +21536 4121 1890 257799183 251375 99.537 0.097 39.656960 -79.165566 +21538 716 358 46293462 530742 17.874 0.205 39.409819 -79.224443 +21539 2819 1240 89834282 70929 34.685 0.027 39.561281 -78.969715 +21540 65 61 698918 111224 0.270 0.043 39.478161 -79.062465 +21541 1546 2293 68154240 3219605 26.315 1.243 39.541999 -79.380288 +21542 483 229 1772593 0 0.684 0.000 39.596073 -78.949988 +21543 140 61 3524518 868 1.361 0.000 39.656452 -78.960651 +21545 1940 868 37234974 21107 14.377 0.008 39.704066 -78.854521 +21550 14194 8203 526785492 6822965 203.393 2.634 39.388807 -79.392340 +21555 1936 1054 274428331 5883176 105.957 2.272 39.575827 -78.562474 +21557 1895 876 69760972 1235041 26.935 0.477 39.536233 -78.922790 +21561 2627 2699 240038317 8669494 92.679 3.347 39.491571 -79.194401 +21562 3141 1536 75067999 481011 28.984 0.186 39.514119 -79.040639 +21601 23597 11292 283350581 53718770 109.402 20.741 38.793812 -76.082437 +21607 583 236 47395591 0 18.300 0.000 39.132717 -75.854207 +21610 378 347 4580667 3630895 1.769 1.402 39.367085 -76.072577 +21612 492 377 14905132 16436690 5.755 6.346 38.751513 -76.275426 +21613 17330 8985 402573173 103610844 155.434 40.004 38.502789 -76.078875 +21617 9907 3897 283247829 23067121 109.363 8.906 39.049403 -76.044514 +21619 5848 2715 24230812 25316223 9.356 9.775 38.943608 -76.277789 +21620 12853 6159 302566585 43718996 116.822 16.880 39.200187 -76.097907 +21622 558 354 140619350 32322110 54.293 12.480 38.414465 -76.159253 +21623 2111 816 97170955 1918126 37.518 0.741 39.124035 -75.966748 +21624 143 99 2862461 6179583 1.105 2.386 38.844673 -76.269891 +21625 2719 1083 108023258 1497078 41.708 0.578 38.873205 -75.996027 +21626 120 122 75270424 8398918 29.062 3.243 38.341359 -76.098361 +21627 18 27 3633354 525536 1.403 0.203 38.233029 -76.046342 +21628 556 251 2733675 519445 1.055 0.201 39.232791 -75.921896 +21629 9555 3897 214651886 6377906 82.878 2.463 38.858889 -75.824999 +21631 2731 1216 67544406 10718158 26.079 4.138 38.582391 -75.938981 +21632 6353 2742 191895132 1298240 74.091 0.501 38.731398 -75.772428 +21634 305 307 12200561 20822861 4.711 8.040 38.292164 -76.199153 +21635 2098 1034 79654483 4063543 30.755 1.569 39.334792 -75.846612 +21636 1186 486 57175453 156310 22.076 0.060 39.025292 -75.802806 +21638 4934 2191 25480164 14298968 9.838 5.521 38.940201 -76.207604 +21639 4408 1779 85021451 341767 32.827 0.132 38.958616 -75.782373 +21640 1632 651 71646341 185174 27.663 0.071 39.068141 -75.820948 +21641 117 55 233483 6165 0.090 0.002 38.917924 -75.940168 +21643 5979 2576 123412463 5326122 47.650 2.056 38.645582 -75.869896 +21644 111 41 11140680 0 4.301 0.000 39.112428 -75.873521 +21645 1039 594 98637796 7812552 38.084 3.016 39.315859 -75.956142 +21647 289 184 8550190 1633573 3.301 0.631 38.812385 -76.283079 +21648 255 150 45632511 10852813 17.619 4.190 38.485356 -76.239330 +21649 1858 593 44118028 24292 17.034 0.009 39.134090 -75.769331 +21650 238 98 28668471 135772 11.069 0.052 39.316259 -75.813870 +21651 2898 1234 100850231 1988812 38.938 0.768 39.255497 -75.850227 +21652 183 154 1552741 2728348 0.600 1.053 38.703188 -76.274135 +21653 114 77 450150 123701 0.174 0.048 38.750464 -76.179733 +21654 1236 974 28411730 9892865 10.970 3.820 38.688756 -76.127833 +21655 5009 2165 137258137 8649488 52.996 3.340 38.744968 -75.912768 +21657 777 310 64427733 44319 24.876 0.017 38.969939 -75.986922 +21658 3862 1679 101617928 18832105 39.235 7.271 38.955536 -76.140688 +21659 1551 702 124235193 3349072 47.967 1.293 38.583928 -75.775560 +21660 4063 1557 85694837 384407 33.087 0.148 38.956135 -75.889093 +21661 2653 1792 83954615 56944688 32.415 21.986 39.096119 -76.219487 +21662 555 422 20686112 14697516 7.987 5.675 38.713549 -76.209515 +21663 3308 2167 31660228 17343594 12.224 6.696 38.788962 -76.229131 +21664 539 236 1121671 69471 0.433 0.027 38.607081 -75.944694 +21665 287 195 10578736 12869134 4.084 4.969 38.751800 -76.332597 +21666 12309 5085 57244987 27776801 22.102 10.725 38.939333 -76.337531 +21667 310 155 15242720 1468368 5.885 0.567 39.350621 -76.042108 +21668 1904 785 128608031 69190 49.656 0.027 39.191191 -75.853000 +21669 229 228 32129918 16008339 12.405 6.181 38.460081 -76.285161 +21671 756 619 5472625 8925148 2.113 3.446 38.695574 -76.335128 +21672 241 216 24966397 7552147 9.640 2.916 38.271699 -76.052704 +21673 3136 1456 133831191 43105240 51.673 16.643 38.642513 -76.043478 +21675 105 103 8431831 1929985 3.256 0.745 38.288979 -76.089600 +21676 398 260 16266947 20862861 6.281 8.055 38.773206 -76.353189 +21677 440 248 24178723 6875314 9.335 2.655 38.472684 -76.173233 +21678 2301 1144 97300721 12587823 37.568 4.860 39.313279 -76.112300 +21679 483 189 23175647 890864 8.948 0.344 38.913777 -76.091617 +21701 35293 15847 100783138 1751826 38.913 0.676 39.443550 -77.332940 +21702 38847 15617 104655311 282970 40.408 0.109 39.479827 -77.455987 +21703 32854 12772 86136850 106575 33.258 0.041 39.367031 -77.473482 +21704 13321 4439 67773106 547647 26.167 0.211 39.354763 -77.375659 +21705 8 0 61289 0 0.024 0.000 39.408860 -77.410008 +21710 4515 1710 66189037 1147935 25.556 0.443 39.297082 -77.448302 +21711 1029 418 61780568 1768548 23.854 0.683 39.668396 -78.019569 +21713 9502 3769 109393375 158957 42.237 0.061 39.529573 -77.675498 +21714 99 61 74855 0 0.029 0.000 39.419295 -77.504419 +21716 4885 2054 8365222 1745950 3.230 0.674 39.314453 -77.620019 +21717 54 25 950042 10584 0.367 0.004 39.336876 -77.435959 +21718 151 74 1175291 10427 0.454 0.004 39.393346 -77.627767 +21719 1548 660 8705488 68393 3.361 0.026 39.707956 -77.494228 +21722 5545 2186 153722385 3368086 59.353 1.300 39.662213 -77.920752 +21723 803 252 7900647 82192 3.050 0.032 39.329124 -77.002556 +21727 5850 1811 82894708 531553 32.006 0.205 39.688635 -77.329234 +21733 1163 428 15657081 0 6.045 0.000 39.549302 -77.758485 +21734 771 392 585226 0 0.226 0.000 39.607817 -77.707835 +21737 1458 466 13133861 139115 5.071 0.054 39.249219 -77.026665 +21738 3268 1062 18881608 104336 7.290 0.040 39.279844 -77.026706 +21740 61859 25858 180896936 758184 69.845 0.293 39.631916 -77.743611 +21742 31444 13555 130689423 73363 50.459 0.028 39.678217 -77.652688 +21746 1883 0 932545 0 0.360 0.000 39.565064 -77.711467 +21750 3766 1779 156366138 4206866 60.373 1.624 39.685043 -78.212939 +21754 6323 2198 61427395 105853 23.717 0.041 39.332124 -77.316215 +21755 5591 2103 89210936 1622831 34.445 0.627 39.359655 -77.568128 +21756 3612 1340 54112474 28102 20.893 0.011 39.462722 -77.704030 +21757 3036 1170 97513958 199030 37.650 0.077 39.591574 -77.268169 +21758 4921 1882 83996318 6288252 32.431 2.428 39.353204 -77.656816 +21762 249 100 952882 0 0.368 0.000 39.480830 -77.247089 +21766 700 396 97905209 2256741 37.801 0.871 39.670471 -78.387890 +21767 991 463 737107 0 0.285 0.000 39.697132 -77.747473 +21769 11236 4149 105626341 746756 40.783 0.288 39.442447 -77.568912 +21770 5164 1780 28486330 27444 10.999 0.011 39.350196 -77.256234 +21771 29563 10200 220312876 443148 85.063 0.171 39.394652 -77.163984 +21773 5460 2080 100274686 227721 38.716 0.088 39.542575 -77.551713 +21774 11662 4073 37289821 668023 14.398 0.258 39.407766 -77.268422 +21776 5735 2159 91194849 299382 35.211 0.116 39.517975 -77.099688 +21777 1470 528 5447272 2348483 2.103 0.907 39.271310 -77.519376 +21778 1094 438 45182828 1156015 17.445 0.446 39.615898 -77.334303 +21779 983 394 23202464 0 8.959 0.000 39.426808 -77.651631 +21780 1625 661 58239532 39452 22.486 0.015 39.677417 -77.465582 +21781 136 7 656097 0 0.253 0.000 39.571073 -77.759648 +21782 4097 1730 77664726 5502596 29.987 2.125 39.456811 -77.762346 +21783 9130 3522 116295091 140928 44.902 0.054 39.651829 -77.553549 +21784 37941 13454 149010950 5264230 57.533 2.033 39.401084 -76.973736 +21787 10693 4171 148804253 629914 57.454 0.243 39.677630 -77.172591 +21788 11622 4718 172898559 1379503 66.757 0.533 39.589979 -77.413861 +21790 100 44 10146412 34788 3.918 0.013 39.260865 -77.484901 +21791 5281 2053 127672231 204244 49.295 0.079 39.533255 -77.188143 +21793 9775 3591 52831424 36425 20.398 0.014 39.491577 -77.346614 +21794 2434 777 22605176 84882 8.728 0.033 39.298422 -76.966129 +21795 9233 3958 78228891 4404361 30.204 1.701 39.580608 -77.823698 +21797 8839 3079 112103676 602122 43.283 0.232 39.328183 -77.071411 +21798 2345 896 42827079 152589 16.536 0.059 39.536511 -77.302603 +21801 29961 11922 109651385 3756948 42.337 1.451 38.382300 -75.639577 +21802 89 0 136027 0 0.053 0.000 38.344771 -75.582696 +21804 38491 16184 192412299 1398919 74.291 0.540 38.314082 -75.532106 +21810 487 221 25003387 289819 9.654 0.112 38.300747 -75.711993 +21811 22550 14832 260737100 32252178 100.671 12.453 38.318877 -75.216741 +21813 2852 1345 64314060 18168184 24.832 7.015 38.424217 -75.155464 +21814 380 224 9597311 7762406 3.706 2.997 38.295829 -75.897056 +21817 5236 2897 37916876 10163392 14.640 3.924 37.981029 -75.836073 +21821 991 734 28297631 12589440 10.926 4.861 38.164595 -75.916660 +21822 1930 827 73145717 2284863 28.242 0.882 38.279782 -75.636782 +21824 198 181 5692314 1189430 2.198 0.459 37.980774 -76.036546 +21826 4837 2028 11422761 165880 4.410 0.064 38.316891 -75.626502 +21829 527 247 47170995 5926773 18.213 2.288 38.097659 -75.371456 +21830 4026 1591 81112328 2294778 31.318 0.886 38.402166 -75.737946 +21835 507 235 20827542 340679 8.042 0.132 38.531887 -75.948459 +21837 2614 1119 115023862 8456657 44.411 3.265 38.454572 -75.766315 +21838 1736 894 138436073 18580362 53.450 7.174 38.017906 -75.737920 +21840 375 276 13555319 19331009 5.234 7.464 38.248736 -75.900009 +21841 860 394 79837188 2394949 30.825 0.925 38.246944 -75.295806 +21842 11089 32844 23029459 17197937 8.892 6.640 38.350536 -75.128880 +21849 3238 1375 90013651 345848 34.754 0.134 38.377261 -75.461810 +21850 2790 1279 80528167 180164 31.092 0.070 38.361731 -75.397078 +21851 7315 3365 273836833 5198199 105.729 2.007 38.079871 -75.542418 +21853 11126 4431 308185662 26000207 118.991 10.039 38.203521 -75.720881 +21856 1035 440 90719319 9021175 35.027 3.483 38.330729 -75.794885 +21861 757 337 6787689 1260110 2.621 0.487 38.536443 -75.727340 +21862 106 54 3289065 5474 1.270 0.002 38.398091 -75.227184 +21863 5029 2192 300061689 9781536 115.854 3.777 38.187913 -75.399041 +21864 611 309 55088003 6539888 21.270 2.525 38.031539 -75.405558 +21865 470 286 41813534 10319144 16.144 3.984 38.287338 -75.841179 +21866 78 74 318387 0 0.123 0.000 37.967128 -76.021365 +21867 114 69 709892 0 0.274 0.000 38.109665 -75.793678 +21869 1006 561 245571192 34322672 94.816 13.252 38.438227 -75.896268 +21871 2124 1080 175572653 17958893 67.789 6.934 38.093785 -75.735688 +21872 718 307 46808316 216712 18.073 0.084 38.415162 -75.299133 +21874 2210 917 69407025 113317 26.798 0.044 38.391283 -75.351965 +21875 6467 2796 60796561 93909 23.474 0.036 38.439999 -75.544695 +21890 3240 0 342406 1649 0.132 0.001 38.157317 -75.704343 +21901 15875 6648 127422037 8413939 49.198 3.249 39.585407 -75.958955 +21902 471 43 2083319 0 0.804 0.000 39.551971 -76.063147 +21903 5687 2613 31427354 246434 12.134 0.095 39.573438 -76.039062 +21904 7252 2871 61208326 6533406 23.633 2.523 39.623317 -76.079163 +21911 11004 4081 96719926 686672 37.344 0.265 39.694668 -76.035968 +21912 1240 511 81697797 3624253 31.544 1.399 39.419399 -75.818633 +21913 663 264 1165581 0 0.450 0.000 39.404601 -75.867973 +21914 765 428 1903165 477110 0.735 0.184 39.572896 -75.978975 +21915 3030 1582 65591600 12194841 25.325 4.708 39.496143 -75.848164 +21916 37 0 233632 0 0.090 0.000 39.641278 -75.861559 +21917 2520 907 20265281 146369 7.824 0.057 39.671632 -76.097397 +21918 4284 1589 45741330 6628177 17.661 2.559 39.678190 -76.175874 +21919 3467 2179 112736603 22553121 43.528 8.708 39.416838 -75.933623 +21920 257 100 1290392 0 0.498 0.000 39.657497 -75.828324 +21921 44471 17232 244939298 14098236 94.572 5.443 39.627145 -75.859891 +21930 94 58 1907039 186920 0.736 0.072 39.375659 -75.887995 +22003 55990 19923 32219579 136730 12.440 0.053 38.829817 -77.215318 +22015 43102 15133 21686318 231445 8.373 0.089 38.787814 -77.278973 +22025 17379 6235 17633663 428335 6.808 0.165 38.592418 -77.346866 +22026 14258 4737 20883576 4143752 8.063 1.600 38.560850 -77.296099 +22027 2362 781 1650280 202 0.637 0.000 38.894844 -77.223065 +22030 55066 19487 48873146 245830 18.870 0.095 38.837138 -77.340466 +22031 29795 12048 17627151 138863 6.806 0.054 38.859531 -77.258547 +22032 29377 10009 19227808 252950 7.424 0.098 38.819046 -77.290301 +22033 37691 16083 19587566 181972 7.563 0.070 38.875215 -77.384701 +22035 0 0 438985 11821 0.169 0.005 38.854496 -77.357416 +22039 18364 6104 61231662 2267947 23.642 0.876 38.756070 -77.313969 +22041 27989 11174 7243208 349061 2.797 0.135 38.844726 -77.143197 +22042 33537 12495 17123432 116634 6.611 0.045 38.865024 -77.197125 +22043 24302 9767 12344913 16322 4.766 0.006 38.900852 -77.195909 +22044 14092 5909 5664142 233185 2.187 0.090 38.862044 -77.154372 +22046 16235 6649 7327552 6 2.829 0.000 38.886334 -77.180975 +22060 8878 2928 33717935 4564810 13.019 1.762 38.693440 -77.153084 +22066 18099 6054 69877828 629859 26.980 0.243 39.012049 -77.302566 +22079 32059 11245 75732023 17113213 29.240 6.607 38.674606 -77.209739 +22101 29887 11345 35335050 114880 13.643 0.044 38.940236 -77.164899 +22102 21985 10608 27151826 169583 10.483 0.065 38.949956 -77.229152 +22124 17558 6834 26244050 234082 10.133 0.090 38.892997 -77.332554 +22125 711 400 391803 46333 0.151 0.018 38.681900 -77.262219 +22134 6862 1379 61306654 3966217 23.671 1.531 38.521753 -77.385028 +22150 27105 9489 19456840 134375 7.512 0.052 38.772863 -77.186523 +22151 17456 5932 13247339 425104 5.115 0.164 38.804093 -77.207804 +22152 28550 10636 15386574 120834 5.941 0.047 38.774493 -77.232029 +22153 31285 10676 23030919 435719 8.892 0.168 38.744969 -77.235640 +22172 8699 3361 32710843 437319 12.630 0.169 38.564727 -77.371479 +22180 23491 8812 15052842 17193 5.812 0.007 38.895439 -77.256133 +22181 14879 5519 14741144 67927 5.692 0.026 38.906651 -77.293388 +22182 24863 9143 30458271 138862 11.760 0.054 38.937476 -77.273172 +22185 0 0 164619 0 0.064 0.000 38.874582 -77.303992 +22191 57598 20329 40948790 12305115 15.810 4.751 38.622914 -77.262938 +22192 53394 20113 48032111 1856631 18.545 0.717 38.683699 -77.314673 +22193 73047 23150 45776872 82755 17.675 0.032 38.643671 -77.348631 +22201 33476 18985 6058557 0 2.339 0.000 38.886566 -77.095250 +22202 22543 15278 10024542 237813 3.870 0.092 38.856835 -77.051484 +22203 21850 12018 3973848 0 1.534 0.000 38.873692 -77.117340 +22204 47233 21078 10647712 0 4.111 0.000 38.860785 -77.098984 +22205 17087 6628 7009397 0 2.706 0.000 38.883513 -77.139524 +22206 19051 10689 5303722 5728 2.048 0.002 38.843917 -77.089408 +22207 30920 11729 16704065 3491 6.449 0.001 38.906665 -77.124238 +22209 12314 7975 1553657 0 0.600 0.000 38.895023 -77.075463 +22211 648 61 4533967 0 1.751 0.000 38.880097 -77.070768 +22213 2936 1231 1475803 0 0.570 0.000 38.895203 -77.162457 +22214 0 0 105452 0 0.041 0.000 38.868808 -77.073946 +22301 11162 5017 3606878 0 1.393 0.000 38.819853 -77.059645 +22302 16485 8935 5819967 6251 2.247 0.002 38.827888 -77.083132 +22303 12601 6858 3773866 112661 1.457 0.043 38.794380 -77.078837 +22304 44300 22966 12000790 237133 4.634 0.092 38.813140 -77.112126 +22305 15440 6863 3497411 168639 1.350 0.065 38.836508 -77.062140 +22306 32326 12312 18763296 194128 7.245 0.075 38.755748 -77.097783 +22307 9581 4655 7472846 2298566 2.885 0.887 38.771982 -77.057273 +22308 12737 4741 11642034 1048692 4.495 0.405 38.732729 -77.058089 +22309 33220 12264 19515246 2186743 7.535 0.844 38.720527 -77.106668 +22310 29609 11818 18558813 37189 7.166 0.014 38.784071 -77.122817 +22311 17560 8744 3981467 16236 1.537 0.006 38.833608 -77.125432 +22312 30614 11919 13874964 97202 5.357 0.038 38.815789 -77.154271 +22314 29653 17584 9823110 686499 3.793 0.265 38.806860 -77.056439 +22315 26202 10988 14157309 413568 5.466 0.160 38.758337 -77.151192 +22401 24286 10467 27039905 182486 10.440 0.070 38.299272 -77.486658 +22405 29152 10632 136222590 5413669 52.596 2.090 38.313488 -77.403848 +22406 20757 7695 188091844 3572370 72.623 1.379 38.399244 -77.544009 +22407 54962 19758 146857832 3497951 56.702 1.351 38.283474 -77.575684 +22408 26851 9728 118934414 2336613 45.921 0.902 38.218940 -77.444023 +22427 3286 1318 394653345 4235785 152.377 1.635 38.093146 -77.271122 +22432 394 241 10708414 1993977 4.135 0.770 37.869524 -76.342347 +22433 232 89 10856312 35004 4.192 0.014 38.367057 -77.859386 +22435 2439 1193 66163371 4515587 25.546 1.743 37.971751 -76.567800 +22436 746 323 73924512 344301 28.542 0.133 38.084227 -77.117264 +22437 725 494 107388492 8797204 41.463 3.397 37.780878 -76.799890 +22438 463 232 107462271 13076989 41.491 5.049 38.041022 -76.980741 +22443 8083 4807 158004207 15775664 61.006 6.091 38.169503 -76.986786 +22448 599 192 10894986 1443999 4.207 0.558 38.336332 -77.028442 +22454 1796 1184 105303643 15703312 40.658 6.063 37.844086 -76.833638 +22460 1876 1082 149359948 13636267 57.668 5.265 37.868544 -76.615132 +22469 1921 1346 80671408 7925933 31.147 3.060 38.081058 -76.650166 +22473 5099 3618 291457357 26972422 112.532 10.414 37.887476 -76.420749 +22476 369 170 45371650 955098 17.518 0.369 38.051047 -77.072949 +22480 714 601 6616764 844684 2.555 0.326 37.662728 -76.412535 +22482 2993 1889 78884931 18653519 30.458 7.202 37.735631 -76.346113 +22485 23004 9293 454855462 19590752 175.621 7.564 38.277179 -77.162702 +22488 1398 888 70279291 7341696 27.135 2.835 38.049195 -76.587936 +22503 4334 2812 227860765 71244939 87.978 27.508 37.750398 -76.513471 +22504 263 153 23504104 8031782 9.075 3.101 37.768927 -76.720678 +22508 12696 5686 143471299 2641675 55.395 1.020 38.313187 -77.798472 +22509 31 18 29726069 7919901 11.477 3.058 38.120518 -77.079949 +22511 1240 1007 36563995 12081291 14.117 4.665 37.991033 -76.504028 +22514 2603 1101 225429178 3129834 87.039 1.208 38.005845 -77.327972 +22520 5402 3268 236923522 30047472 91.477 11.601 38.122285 -76.806212 +22529 335 161 28586257 11815 11.037 0.005 38.004462 -76.684016 +22530 126 192 3896605 1444914 1.504 0.558 37.897826 -76.293047 +22534 2796 990 87904005 287989 33.940 0.111 38.077579 -77.672859 +22535 580 284 24816444 5220146 9.582 2.016 38.148454 -77.162837 +22538 307 133 34314276 3345762 13.249 1.292 38.204245 -77.258893 +22539 2063 1921 44111431 14141565 17.032 5.460 37.860634 -76.286041 +22542 1950 758 53523500 137044 20.666 0.053 38.293517 -77.880863 +22546 15850 6479 420439733 4819702 162.333 1.861 37.942668 -77.448666 +22548 73 69 2588677 5073775 0.999 1.959 37.815803 -76.704785 +22551 19242 7274 450195610 7597002 173.822 2.933 38.169838 -77.700023 +22553 13935 4975 115586467 3208322 44.628 1.239 38.272028 -77.647788 +22554 51463 17173 171877394 15502531 66.362 5.986 38.426764 -77.376646 +22556 25675 8483 81931126 748300 31.634 0.289 38.472053 -77.510944 +22560 6704 3198 236169015 20308631 91.185 7.841 37.916112 -76.961200 +22567 3163 1227 122492528 199865 47.295 0.077 38.229702 -77.928353 +22572 7470 2782 358648135 45690077 138.475 17.641 37.965301 -76.771068 +22576 1785 1055 28520156 15612172 11.012 6.028 37.679576 -76.442195 +22578 2510 1801 48091389 54063147 18.568 20.874 37.636761 -76.356208 +22579 155 124 2176910 1252421 0.841 0.484 37.795598 -76.314938 +22580 5160 2104 232513274 2201040 89.774 0.850 38.109182 -77.445683 +22601 27813 12521 25566246 54101 9.871 0.021 39.174468 -78.173406 +22602 28443 11156 285534178 1124219 110.245 0.434 39.144249 -78.284807 +22603 13910 5671 253869993 931138 98.020 0.360 39.277686 -78.206659 +22610 1842 898 133716751 1981423 51.628 0.765 38.824656 -78.279142 +22611 8757 3676 209280984 1464394 80.804 0.565 39.168882 -77.984613 +22620 2348 1147 118474411 2647064 45.743 1.022 39.068189 -78.032277 +22623 670 271 3144304 879 1.214 0.000 38.848927 -78.140663 +22624 2565 999 49949933 179586 19.286 0.069 39.269784 -78.091841 +22625 3641 1534 113500475 764519 43.823 0.295 39.372811 -78.310739 +22627 637 362 84946969 310584 32.798 0.120 38.757455 -78.144226 +22630 30292 12856 338156945 5469832 130.563 2.112 38.930210 -78.174878 +22637 1970 881 115363165 869307 44.542 0.336 39.256651 -78.352993 +22639 560 267 48357435 425741 18.671 0.164 38.813779 -78.019064 +22640 532 284 61127958 156388 23.602 0.060 38.812015 -78.142119 +22641 361 178 17342788 34839 6.696 0.013 39.085146 -78.374963 +22642 4414 1894 132262929 503454 51.067 0.194 38.947146 -78.011905 +22643 197 95 14874100 24129 5.743 0.009 38.885568 -77.983339 +22644 2177 1057 97286012 457075 37.562 0.176 38.949772 -78.486478 +22645 3880 1675 92372136 938320 35.665 0.362 39.021862 -78.275470 +22646 205 107 5090172 3964 1.965 0.002 39.072518 -78.050929 +22650 978 541 74304098 1317245 28.689 0.509 38.765084 -78.364632 +22652 1399 810 182088626 745923 70.305 0.288 38.839587 -78.429396 +22654 640 374 160178306 133229 61.845 0.051 38.987823 -78.573422 +22655 19328 7559 91139222 348617 35.189 0.135 39.067742 -78.209123 +22656 2381 947 21720233 145108 8.386 0.056 39.219255 -78.089345 +22657 10956 4963 160401877 2331121 61.932 0.900 39.002622 -78.376112 +22660 1689 749 23793441 384513 9.187 0.148 38.944061 -78.431429 +22663 1536 578 57284674 222915 22.118 0.086 39.054740 -78.110604 +22664 8753 4013 129464517 2007038 49.987 0.775 38.888919 -78.532453 +22701 31444 12394 423232022 3524838 163.411 1.361 38.438777 -77.996261 +22709 874 369 33326994 101145 12.868 0.039 38.328731 -78.213737 +22711 92 43 5977554 3385 2.308 0.001 38.467169 -78.274975 +22712 8415 3013 93810456 514833 36.220 0.199 38.564008 -77.757247 +22713 1406 605 69025933 254304 26.651 0.098 38.560716 -78.118816 +22714 1129 416 57820752 531268 22.325 0.205 38.519671 -77.895419 +22715 1082 451 23490584 68989 9.070 0.027 38.410696 -78.185599 +22716 853 434 64747114 360331 24.999 0.139 38.629259 -78.104019 +22718 534 223 63588457 471792 24.552 0.182 38.477181 -77.827460 +22719 395 245 52715602 40774 20.354 0.016 38.534889 -78.281252 +22720 1059 445 53530640 291351 20.668 0.112 38.475948 -77.641881 +22722 273 121 9112554 17736 3.518 0.007 38.466262 -78.227068 +22723 128 61 11045506 61397 4.265 0.024 38.334605 -78.380361 +22724 2282 825 54642748 418740 21.098 0.162 38.614645 -77.893981 +22726 776 276 40835666 415327 15.767 0.160 38.402458 -77.820660 +22727 5547 2471 261922309 1102332 101.129 0.426 38.407594 -78.295292 +22728 3310 1241 117164798 613813 45.238 0.237 38.596620 -77.675263 +22729 1338 58 14315687 140219 5.527 0.054 38.374194 -78.017758 +22730 115 52 8806341 58578 3.400 0.023 38.375209 -78.158613 +22731 139 60 2296850 0 0.887 0.000 38.336564 -78.257331 +22732 191 80 4379734 0 1.691 0.000 38.314630 -78.189884 +22733 1469 559 123003363 731327 47.492 0.282 38.333588 -78.045724 +22734 3187 1172 77805050 860164 30.041 0.332 38.526185 -77.794564 +22735 2277 905 85970946 318774 33.194 0.123 38.476865 -78.174258 +22736 732 269 74656779 994737 28.825 0.384 38.398165 -77.704567 +22737 2936 1144 104357420 1070311 40.293 0.413 38.580508 -78.015056 +22738 1149 491 69922811 513378 26.997 0.198 38.293931 -78.280931 +22740 1313 757 204490936 168422 78.954 0.065 38.645690 -78.286953 +22741 182 80 21519036 143178 8.309 0.055 38.428949 -77.868642 +22742 1926 695 57396255 394692 22.161 0.152 38.466332 -77.715072 +22743 204 163 157622804 36366 60.859 0.014 38.539312 -78.380970 +22747 1132 676 100537784 368353 38.818 0.142 38.709056 -78.165674 +22749 349 194 49851502 178359 19.248 0.069 38.619655 -78.180235 +22801 37989 14072 84113556 327444 32.476 0.126 38.403645 -78.875125 +22802 26293 10815 234379912 521864 90.495 0.201 38.494488 -78.863045 +22807 3311 8 1122586 36839 0.433 0.014 38.433970 -78.867870 +22810 863 1257 64606971 249883 24.945 0.096 38.827091 -78.796534 +22811 500 286 82037098 78251 31.675 0.030 38.811609 -78.991643 +22812 8927 3359 111520567 1214274 43.058 0.469 38.378250 -79.027107 +22815 8355 3660 186178655 568340 71.884 0.219 38.712509 -78.841209 +22820 214 153 58277406 89176 22.501 0.034 38.704836 -79.019048 +22821 5753 2314 211779889 772272 81.769 0.298 38.475937 -79.129968 +22824 6018 2789 222746565 1420751 86.003 0.549 38.836074 -78.631822 +22827 10388 4651 353223269 2380481 136.380 0.919 38.410719 -78.596414 +22830 1773 824 291501615 753345 112.549 0.291 38.659814 -78.972242 +22831 813 402 157043481 687256 60.635 0.265 38.576395 -79.076132 +22832 1091 469 63175118 66612 24.392 0.026 38.454916 -78.759702 +22834 1250 499 46023805 130571 17.770 0.050 38.559256 -78.860046 +22835 11634 5803 390276888 4396442 150.687 1.697 38.670893 -78.453418 +22840 4354 3530 68309756 502990 26.375 0.194 38.421369 -78.716762 +22841 2791 1153 80932486 1070928 31.248 0.413 38.341793 -78.892489 +22842 5063 2698 187692899 839736 72.469 0.324 38.778048 -78.699661 +22843 2458 1084 293158395 1076498 113.189 0.416 38.373406 -79.147387 +22844 4528 2222 125612513 862259 48.499 0.333 38.655857 -78.661655 +22845 33 28 3422513 3920 1.321 0.002 38.786329 -78.816413 +22846 1855 694 28806456 72667 11.122 0.028 38.378772 -78.790693 +22847 1066 467 53766267 131752 20.759 0.051 38.730637 -78.717385 +22849 5044 2306 121696107 1912050 46.987 0.738 38.525686 -78.621982 +22850 899 418 31198992 39233 12.046 0.015 38.559677 -78.924344 +22851 5956 2748 142922623 763839 55.183 0.295 38.563053 -78.512907 +22853 4367 1957 94478945 595404 36.479 0.230 38.650252 -78.758320 +22901 32532 15139 135070759 2586663 52.151 0.999 38.087663 -78.556765 +22902 21223 9921 162600854 956001 62.781 0.369 37.910371 -78.522359 +22903 38229 16133 195884032 1142385 75.631 0.441 38.006654 -78.596294 +22904 4633 14 1716105 3990 0.663 0.002 38.034803 -78.524436 +22911 15971 7055 132251328 1476027 51.063 0.570 38.097076 -78.410109 +22920 4186 1997 195965133 324859 75.663 0.125 37.968980 -78.805298 +22922 1993 962 130952389 1001333 50.561 0.387 37.693701 -78.921765 +22923 5035 1949 130240743 493304 50.286 0.190 38.188326 -78.318434 +22931 382 203 46970224 73730 18.135 0.028 37.898938 -78.727551 +22932 7488 3129 280653553 842104 108.361 0.325 38.147507 -78.696458 +22935 926 417 55747290 194791 21.524 0.075 38.253925 -78.562701 +22936 4853 2001 94359819 1735257 36.433 0.670 38.159998 -78.499128 +22937 1486 680 118302603 971177 45.677 0.375 37.798273 -78.613986 +22938 1444 701 109962610 333208 42.457 0.129 37.865862 -78.794527 +22939 5398 2109 43246068 236402 16.697 0.091 38.105772 -78.974107 +22940 1119 504 81426695 382797 31.439 0.148 38.159742 -78.556161 +22942 8113 3893 289411195 2022657 111.742 0.781 38.101601 -78.202164 +22943 444 219 14713930 83442 5.681 0.032 38.035826 -78.774051 +22946 244 111 11124098 9820 4.295 0.004 37.858585 -78.571382 +22947 4198 1931 113148348 625461 43.687 0.241 38.045602 -78.327642 +22948 305 104 14741730 295893 5.692 0.114 38.363407 -78.129177 +22949 1300 655 95279840 30167 36.788 0.012 37.790016 -78.879393 +22952 2029 922 127253774 560367 49.133 0.216 37.963562 -78.962741 +22958 1637 2931 75240115 203899 29.050 0.079 37.899997 -78.898664 +22959 1578 705 100631555 178550 38.854 0.069 37.937226 -78.656536 +22960 10722 4689 332214417 5244885 128.269 2.025 38.218996 -78.073339 +22963 15401 6489 315201052 4168795 121.700 1.610 37.848121 -78.305094 +22964 261 127 19312045 151631 7.456 0.059 37.709424 -78.977650 +22967 1956 1359 202051935 641598 78.013 0.248 37.797305 -79.014082 +22968 9815 3792 99904293 734267 38.573 0.284 38.240602 -78.400888 +22969 1437 706 113220305 386640 43.715 0.149 37.797482 -78.693382 +22971 1735 873 139213548 281329 53.751 0.109 37.745121 -78.793177 +22972 439 206 37027850 186992 14.297 0.072 38.215776 -78.230285 +22973 6191 2837 264947287 793413 102.297 0.306 38.335921 -78.479006 +22974 5385 1715 104482898 1053629 40.341 0.407 37.972639 -78.284439 +22976 339 214 100185087 320869 38.682 0.124 37.812790 -79.056728 +22980 31451 14222 192534958 1312749 74.338 0.507 38.099858 -78.880549 +22989 112 40 3808982 85586 1.471 0.033 38.288675 -78.132082 +23002 10439 4351 672736972 5226450 259.745 2.018 37.351060 -77.967875 +23004 851 433 102193630 624045 39.457 0.241 37.688882 -78.399222 +23005 15227 6156 174500594 1396874 67.375 0.539 37.759696 -77.481870 +23009 6279 2500 201252692 2222117 77.704 0.858 37.820938 -77.181166 +23011 1429 420 56500937 10934294 21.815 4.222 37.478311 -76.810563 +23015 4249 1638 210393268 1529207 81.233 0.590 37.929599 -77.626447 +23021 345 165 9263141 3978768 3.577 1.536 37.389948 -76.373522 +23022 930 459 67695110 1914657 26.137 0.739 37.731004 -78.263155 +23023 323 153 51647104 428603 19.941 0.165 37.782325 -76.962450 +23024 8120 4180 274504098 27335348 105.987 10.554 37.927752 -77.779274 +23025 233 134 3365700 454092 1.300 0.175 37.414830 -76.363440 +23027 1413 619 118073399 575353 45.588 0.222 37.645338 -78.132234 +23030 5128 2314 382705907 55184925 147.764 21.307 37.346490 -77.054808 +23032 283 147 44076309 51098 17.018 0.020 37.650965 -76.668109 +23035 1473 813 38092085 7421242 14.707 2.865 37.491911 -76.388232 +23038 1775 908 194141983 2530565 74.959 0.977 37.752969 -78.149405 +23039 1056 468 38355463 1133727 14.809 0.438 37.656565 -77.812465 +23040 4661 2068 381632865 2523462 147.349 0.974 37.504061 -78.245636 +23043 1692 1715 19478530 20480041 7.521 7.907 37.563338 -76.350255 +23045 96 72 6293741 1225299 2.430 0.473 37.425348 -76.268808 +23047 1952 811 122778552 2057360 47.405 0.794 37.843384 -77.473917 +23050 598 282 10715038 1217098 4.137 0.470 37.498909 -76.437118 +23055 915 375 40184632 799970 15.515 0.309 37.770451 -78.221898 +23056 458 249 15442376 10026802 5.962 3.871 37.356480 -76.362611 +23059 31919 12235 118919338 1197860 45.915 0.462 37.702234 -77.574006 +23060 33417 13488 39294586 414907 15.172 0.160 37.656174 -77.537787 +23061 21208 8854 405632941 89980296 156.616 34.742 37.428452 -76.538653 +23062 2340 1150 3734104 5211593 1.442 2.012 37.257069 -76.501938 +23063 5278 2008 259686582 9838199 100.266 3.799 37.712553 -78.006130 +23064 131 128 890813 355636 0.344 0.137 37.495789 -76.299432 +23065 1909 811 56193678 494909 21.697 0.191 37.805959 -77.932428 +23066 471 526 5217679 7511510 2.015 2.900 37.497060 -76.283582 +23068 257 201 2255618 4183219 0.871 1.615 37.501303 -76.334658 +23069 3197 1073 141205537 2242016 54.520 0.866 37.771537 -77.322377 +23070 431 227 7479562 1858538 2.888 0.718 37.552199 -76.388985 +23071 1563 1050 31028215 8796046 11.980 3.396 37.545430 -76.448576 +23072 11541 5103 95221648 85609130 36.765 33.054 37.292181 -76.448456 +23075 9819 4308 11873171 636087 4.584 0.246 37.557876 -77.313140 +23076 606 403 9792994 5286420 3.781 2.041 37.477520 -76.306854 +23079 437 289 54872083 16837804 21.186 6.501 37.730568 -76.671343 +23083 1732 760 147212467 216565 56.839 0.084 37.310449 -78.120611 +23084 1799 776 106722222 338168 41.206 0.131 37.884990 -78.115077 +23085 364 199 111497591 1533306 43.049 0.592 37.713508 -76.831539 +23086 3247 1348 214079107 8271159 82.656 3.194 37.667222 -77.055096 +23089 4914 2242 156976953 16549264 60.609 6.390 37.461143 -76.904680 +23091 309 154 60033075 1735810 23.179 0.670 37.655786 -76.799654 +23092 584 294 12706441 5890338 4.906 2.274 37.605859 -76.513826 +23093 12694 5822 540403334 5176347 208.651 1.999 38.005893 -78.042113 +23102 2659 1096 76852108 2649368 29.673 1.023 37.706554 -77.832239 +23103 4634 1998 96917345 3573280 37.420 1.380 37.648034 -77.723640 +23106 976 407 69705534 987155 26.913 0.381 37.716107 -77.201511 +23108 161 73 33031155 161995 12.753 0.063 37.646765 -76.740172 +23109 1821 958 44520881 4480231 17.190 1.730 37.431431 -76.332000 +23110 794 393 57313395 5999918 22.129 2.317 37.582820 -76.771108 +23111 36490 14351 202251211 2334718 78.090 0.901 37.613502 -77.242930 +23112 46982 18372 83923263 6086904 32.403 2.350 37.433405 -77.662862 +23113 23848 9471 91683844 876501 35.399 0.338 37.538846 -77.679628 +23114 17449 6719 29171308 171356 11.263 0.066 37.482226 -77.659771 +23115 146 62 14316106 0 5.527 0.000 37.810985 -76.914535 +23116 27228 9796 162693753 1487843 62.816 0.574 37.675824 -77.336603 +23117 9141 5286 354284136 17783366 136.790 6.866 37.977478 -77.874114 +23119 295 214 8550434 5322633 3.301 2.055 37.448174 -76.277178 +23120 5971 1935 165488923 1870765 63.896 0.722 37.422105 -77.781314 +23123 1860 916 105975331 1217237 40.917 0.470 37.651834 -78.301142 +23124 3185 1212 141165931 7283499 54.504 2.812 37.546860 -77.042180 +23125 223 222 5640041 4851928 2.178 1.873 37.324979 -76.286254 +23126 534 242 57849061 277706 22.336 0.107 37.923461 -77.144316 +23128 1045 574 30163349 8900058 11.646 3.436 37.437355 -76.430688 +23129 374 145 10408770 110563 4.019 0.043 37.681630 -77.770420 +23130 268 160 15346854 6133666 5.925 2.368 37.387286 -76.259439 +23138 953 610 21712227 35272020 8.383 13.619 37.343148 -76.303706 +23139 24425 9358 619225632 4948557 239.084 1.911 37.545674 -77.937577 +23140 5175 2140 194053204 1632137 74.924 0.630 37.435013 -77.038311 +23141 6471 2597 94184113 784309 36.365 0.303 37.528690 -77.156144 +23146 3093 1205 86699747 1310423 33.475 0.506 37.731490 -77.704529 +23148 1827 810 168150067 1096353 64.923 0.423 37.846428 -77.054640 +23149 3190 1357 130670904 9353642 50.452 3.611 37.575671 -76.609283 +23150 12045 5264 77188557 3544836 29.803 1.369 37.501136 -77.252612 +23153 1334 524 34241758 754100 13.221 0.291 37.770805 -77.947259 +23156 1555 775 103472068 13199545 39.951 5.096 37.521141 -76.706618 +23160 2708 1 9734694 123251 3.759 0.048 37.628163 -77.845916 +23161 173 106 28089502 1373592 10.845 0.530 37.715866 -76.935072 +23163 220 176 5125303 1629054 1.979 0.629 37.357691 -76.309595 +23168 6115 2360 60576347 4196789 23.389 1.620 37.395389 -76.824294 +23169 1325 820 24164947 22289294 9.330 8.606 37.600481 -76.458004 +23173 2820 39 1054356 54881 0.407 0.021 37.577676 -77.536969 +23175 1907 1285 42175414 8845094 16.284 3.415 37.654885 -76.625872 +23176 656 356 11169742 8101617 4.313 3.128 37.576384 -76.414601 +23177 616 329 52900087 3045763 20.425 1.176 37.751618 -77.014470 +23180 441 267 26291321 20512421 10.151 7.920 37.701404 -76.618655 +23181 5426 2301 169582534 19631143 65.476 7.580 37.597555 -76.888708 +23185 46370 20544 145107471 65650393 56.026 25.348 37.233458 -76.717042 +23187 267 0 251971 58014 0.097 0.022 37.268856 -76.720941 +23188 38733 17482 253699615 26488520 97.954 10.227 37.348905 -76.769554 +23192 7067 2666 197362390 2551955 76.202 0.985 37.820363 -77.680814 +23219 3781 2135 3974414 729233 1.535 0.282 37.539769 -77.435528 +23220 35545 16609 12440992 718393 4.803 0.277 37.549349 -77.460606 +23221 13680 7816 8552740 1693502 3.302 0.654 37.553306 -77.493558 +23222 24563 11001 21501009 105969 8.302 0.041 37.582968 -77.418907 +23223 47677 22017 43634302 983581 16.847 0.380 37.558305 -77.378183 +23224 33461 14828 30204495 743536 11.662 0.287 37.497492 -77.466135 +23225 39169 19869 37035106 1779913 14.299 0.687 37.518624 -77.512937 +23226 15805 7500 15287094 1054715 5.902 0.407 37.579912 -77.523347 +23227 24440 12763 29452838 1073139 11.372 0.414 37.611292 -77.438188 +23228 34198 16089 29005136 224053 11.199 0.087 37.626617 -77.492834 +23229 32283 13736 36956986 1591721 14.269 0.615 37.586772 -77.574165 +23230 5852 2917 10805372 68764 4.172 0.027 37.586479 -77.489411 +23231 34685 14438 228691699 17846066 88.298 6.890 37.441123 -77.315342 +23233 28908 12145 31970186 382397 12.344 0.148 37.646431 -77.624235 +23234 42989 16952 51093298 1740971 19.727 0.672 37.451423 -77.470660 +23235 30165 13449 45236418 122413 17.466 0.047 37.514570 -77.564758 +23236 25822 10219 37306118 228069 14.404 0.088 37.475810 -77.585285 +23237 21192 8311 52955796 23357 20.446 0.009 37.400878 -77.449054 +23238 25134 11598 55597515 2498765 21.466 0.965 37.595520 -77.647849 +23250 0 0 8056933 37877 3.111 0.015 37.504783 -77.320899 +23294 17558 8367 10721755 23440 4.140 0.009 37.629925 -77.541852 +23301 1831 795 70543263 17388712 27.237 6.714 37.681259 -75.633464 +23302 155 79 8610832 606451 3.325 0.234 37.865670 -75.520915 +23303 741 366 18425723 603770 7.114 0.233 37.911355 -75.504972 +23304 71 37 470952 207320 0.182 0.080 36.996135 -76.572107 +23306 1088 523 37765473 8500768 14.581 3.282 37.561215 -75.872258 +23307 769 391 20180527 290825 7.792 0.112 37.432053 -75.871350 +23308 2106 955 85475065 58321304 33.002 22.518 37.836799 -75.653786 +23310 4736 2955 155544834 24023601 60.056 9.276 37.258993 -75.963657 +23313 78 45 3172322 88473 1.225 0.034 37.197586 -75.942244 +23314 6991 2919 49593721 42931858 19.148 16.576 36.958955 -76.524465 +23315 1525 674 75495164 519631 29.149 0.201 36.737390 -76.840511 +23316 342 171 3622473 1071650 1.399 0.414 37.303098 -75.992901 +23320 51797 21820 84467231 3027113 32.613 1.169 36.751734 -76.217637 +23321 33653 12619 68206194 1283614 26.335 0.496 36.800209 -76.420759 +23322 60473 19878 390590521 3940095 150.808 1.521 36.618747 -76.227045 +23323 35906 12548 312217201 14675763 120.548 5.666 36.696963 -76.379928 +23324 22851 9259 17304420 1832312 6.681 0.707 36.799721 -76.273447 +23325 17592 7093 9912481 1293957 3.827 0.500 36.814548 -76.238429 +23336 2941 4519 50017669 76172817 19.312 29.410 37.954605 -75.334522 +23337 377 199 4727251 174313 1.825 0.067 37.930674 -75.486165 +23347 671 365 30515873 11119171 11.782 4.293 37.338648 -75.970712 +23350 3403 1920 72426780 8669555 27.964 3.347 37.512896 -75.862763 +23354 207 109 8786934 2502938 3.393 0.966 37.463334 -75.908828 +23356 1246 996 9194551 31806291 3.550 12.280 37.990790 -75.382404 +23357 776 316 16125199 149385 6.226 0.058 37.755646 -75.676028 +23358 152 119 14412743 8667880 5.565 3.347 37.656619 -75.862671 +23359 776 374 38751873 113231 14.962 0.044 37.884947 -75.587982 +23389 137 103 1504845 378123 0.581 0.146 37.660513 -75.834778 +23395 645 1177 33159805 1782437 12.803 0.688 37.975963 -75.461008 +23398 153 144 10398415 3193677 4.015 1.233 37.516128 -75.944072 +23401 212 112 5812909 0 2.244 0.000 37.627492 -75.779396 +23405 973 605 70720760 22534421 27.305 8.701 37.411565 -75.922216 +23407 411 166 16359165 467618 6.316 0.181 37.840957 -75.578774 +23408 77 48 4720356 33865 1.823 0.013 37.452913 -75.843474 +23409 84 49 21006112 3025295 8.111 1.168 37.887621 -75.662907 +23410 2015 997 74934072 2001556 28.932 0.773 37.637840 -75.736904 +23413 840 462 32647917 2607426 12.605 1.007 37.472853 -75.857763 +23414 100 46 3766302 8154 1.454 0.003 37.806814 -75.579897 +23415 1893 937 76578183 1832141 29.567 0.707 37.969553 -75.534703 +23416 356 169 14099875 0 5.444 0.000 37.933768 -75.563351 +23417 4047 2352 127796304 102648095 49.342 39.633 37.759052 -75.783815 +23418 863 465 25824321 646250 9.971 0.250 37.666867 -75.687163 +23420 2376 1172 83980981 11570442 32.425 4.467 37.584466 -75.815080 +23421 4255 1965 83707362 14345029 32.320 5.539 37.764621 -75.611647 +23422 278 142 10822531 472192 4.179 0.182 37.635389 -75.822735 +23423 344 265 88097659 85378992 34.015 32.965 37.525301 -75.714310 +23426 225 133 13478987 4490568 5.204 1.734 37.924102 -75.689541 +23427 243 181 12991465 36229390 5.016 13.988 37.938929 -75.720538 +23430 17281 7104 260403273 70720995 100.542 27.306 37.001261 -76.655932 +23432 1538 669 34273725 5395409 13.233 2.083 36.876314 -76.553889 +23433 1218 543 4401701 15294692 1.700 5.905 36.918069 -76.462863 +23434 47670 18973 526811515 21221835 203.403 8.194 36.703003 -76.592105 +23435 27053 9937 102435681 26047511 39.551 10.057 36.841457 -76.484849 +23436 942 382 4087121 2625108 1.578 1.014 36.894600 -76.505145 +23437 4283 1777 258036938 4324429 99.629 1.670 36.627115 -76.803197 +23438 1818 733 106354051 0 41.064 0.000 36.581413 -76.696875 +23440 727 377 4629052 1753435 1.787 0.677 37.829055 -75.984124 +23441 171 80 1607058 0 0.620 0.000 37.710268 -75.699685 +23442 1059 496 34581394 143220 13.352 0.055 37.904756 -75.575437 +23451 41544 23513 47651742 6061743 18.398 2.340 36.867408 -76.007229 +23452 59321 23662 37917640 6277024 14.640 2.424 36.845756 -76.092807 +23453 35960 12701 23841380 187852 9.205 0.073 36.783651 -76.071791 +23454 60283 24246 79273283 8623447 30.608 3.330 36.818048 -76.030783 +23455 47938 20439 41758611 8413397 16.123 3.248 36.891804 -76.146573 +23456 51748 18247 131040728 7639834 50.595 2.950 36.736543 -76.035478 +23457 4289 1656 176838245 87967987 68.278 33.965 36.612748 -76.024143 +23459 1091 270 3533561 0 1.364 0.000 36.924797 -76.018732 +23460 1201 0 562519 0 0.217 0.000 36.807977 -76.028412 +23461 287 0 157396 0 0.061 0.000 36.775402 -75.963250 +23462 61973 26087 30327788 741112 11.710 0.286 36.837313 -76.150514 +23464 72359 27058 43436767 2781220 16.771 1.074 36.797023 -76.187680 +23480 328 286 5001165 147265 1.931 0.057 37.618711 -75.690711 +23486 140 81 1001782 191791 0.387 0.074 37.513170 -75.813877 +23487 6298 2579 243727918 3651521 94.104 1.410 36.847368 -76.725048 +23488 201 90 18836359 2593912 7.273 1.002 37.947497 -75.598466 +23502 20678 8440 26178732 2224592 10.108 0.859 36.860941 -76.204908 +23503 30856 15006 13392436 6563183 5.171 2.534 36.949097 -76.266481 +23504 23483 8789 10749172 895970 4.150 0.346 36.857302 -76.265612 +23505 28503 13097 16624796 2600339 6.419 1.004 36.913604 -76.288896 +23507 25818 3535 2300013 270940 0.888 0.105 36.864564 -76.303218 +23508 20263 6696 9113420 5500052 3.519 2.124 36.884888 -76.310270 +23509 12817 5459 6649454 988850 2.567 0.382 36.882397 -76.263969 +23510 7031 3557 2913325 1008819 1.125 0.390 36.852122 -76.291682 +23511 2457 141 14240854 7561749 5.498 2.920 36.912232 -76.325805 +23513 29595 12341 13297095 0 5.134 0.000 36.889916 -76.238602 +23517 4484 2502 2067449 0 0.798 0.000 36.869679 -76.292570 +23518 28095 12581 16171981 1903938 6.244 0.735 36.916118 -76.215375 +23523 7793 2874 5597063 1932118 2.161 0.746 36.832389 -76.272082 +23551 930 0 875503 0 0.338 0.000 36.924048 -76.288625 +23601 25127 11500 19354371 22365038 7.473 8.635 37.038016 -76.476632 +23602 39676 16806 34597719 2475190 13.358 0.956 37.113416 -76.517947 +23603 3899 1499 18758267 939165 7.243 0.363 37.191057 -76.564535 +23604 5720 899 31356474 3598570 12.107 1.389 37.105026 -76.574793 +23605 13854 6683 9731056 7738 3.757 0.003 37.018444 -76.436250 +23606 29283 12297 24275625 27184994 9.373 10.496 37.064350 -76.519902 +23607 24519 10689 15085852 40977123 5.825 15.821 36.971747 -76.424372 +23608 42917 17619 27721745 556680 10.703 0.215 37.147813 -76.543036 +23651 696 329 1987424 5748516 0.767 2.220 37.007817 -76.304306 +23661 14113 6337 12171471 68255 4.699 0.026 37.009301 -76.386177 +23662 12150 4726 39669842 17787850 15.317 6.868 37.133319 -76.353027 +23663 14495 5837 7196095 889872 2.778 0.344 37.032442 -76.314908 +23664 10194 4799 13540727 7555325 5.228 2.917 37.078374 -76.289825 +23665 5120 1466 14334885 5481617 5.535 2.116 37.084498 -76.365498 +23666 49825 22464 51259800 1919283 19.792 0.741 37.058141 -76.406646 +23669 43148 17882 32277210 5224918 12.462 2.017 37.050277 -76.342873 +23690 3032 1176 19643435 4908289 7.584 1.895 37.222401 -76.517104 +23691 127 35 4727685 286262 1.825 0.111 37.255252 -76.549423 +23692 18846 7824 59070108 24017597 22.807 9.273 37.192438 -76.463582 +23693 23292 8745 35020571 2121454 13.522 0.819 37.123066 -76.447129 +23696 3669 1481 14542700 5231392 5.615 2.020 37.191585 -76.421080 +23701 25161 10336 19583028 1878083 7.561 0.725 36.812899 -76.371059 +23702 11424 4954 6558890 44876 2.532 0.017 36.798933 -76.329619 +23703 25739 10536 36651966 25537660 14.151 9.860 36.893339 -76.373292 +23704 18716 8682 13103745 1956541 5.059 0.755 36.824187 -76.310161 +23707 14236 6298 10441673 3816519 4.032 1.474 36.842301 -76.339628 +23708 181 0 427395 642561 0.165 0.248 36.849529 -76.305158 +23709 78 0 393269 0 0.152 0.000 36.812752 -76.305458 +23801 3393 866 16380888 0 6.325 0.000 37.235551 -77.335396 +23803 40542 18437 187057519 4780202 72.223 1.846 37.209159 -77.497484 +23805 19490 8723 189853579 969011 73.303 0.374 37.138544 -77.403475 +23806 2251 1 431312 0 0.167 0.000 37.238611 -77.418238 +23821 1597 820 168205899 259101 64.945 0.100 36.883676 -77.911996 +23824 7214 3374 458728087 3735547 177.116 1.442 37.085581 -77.972180 +23827 1443 681 132947772 192431 51.331 0.074 36.612313 -77.196878 +23828 395 180 91519492 95532 35.336 0.037 36.581562 -77.278414 +23829 2622 541 211952323 818284 81.835 0.316 36.732670 -77.217351 +23830 1491 638 120524744 496162 46.535 0.192 37.016961 -77.395057 +23831 33079 13140 62332748 632364 24.067 0.244 37.346253 -77.450566 +23832 33739 11953 102252358 1149977 39.480 0.444 37.387859 -77.592091 +23833 2297 970 147945456 5248127 57.122 2.026 37.207737 -77.673402 +23834 25612 10934 58486879 2094785 22.582 0.809 37.290584 -77.404112 +23836 11444 4674 65582986 5206367 25.322 2.010 37.345226 -77.346743 +23837 4298 1817 274844212 1219357 106.118 0.471 36.749583 -77.084152 +23838 15341 5586 258831440 6757195 99.935 2.609 37.319210 -77.633166 +23839 741 347 64837990 119750 25.034 0.046 37.079815 -76.920618 +23840 1858 754 123661919 170124 47.746 0.066 37.065325 -77.666008 +23841 3479 1440 189417672 617090 73.135 0.238 37.048042 -77.543937 +23842 6906 2746 338134706 2501511 130.555 0.966 37.131685 -77.221949 +23843 654 354 76240960 118473 29.437 0.046 36.846159 -77.822071 +23844 788 364 116906568 576254 45.138 0.222 36.680032 -77.326525 +23845 356 253 35360099 453591 13.653 0.175 36.578823 -77.977561 +23846 933 397 110889193 586539 42.815 0.226 37.066603 -76.834020 +23847 16962 6092 727787101 3903235 281.000 1.507 36.670258 -77.550253 +23850 1051 477 129985260 563410 50.188 0.218 37.220515 -77.765253 +23851 13715 6088 276466475 5536617 106.744 2.138 36.655976 -76.950650 +23856 1033 529 120838761 679351 46.656 0.262 36.784009 -77.702347 +23857 525 388 38936391 943813 15.033 0.364 36.584651 -77.883799 +23860 31970 12050 130463654 25550379 50.372 9.865 37.272031 -77.225393 +23866 2237 977 225484817 2609408 87.060 1.007 36.923676 -76.862401 +23867 2189 1089 239024545 915020 92.288 0.353 36.816602 -77.481624 +23868 7367 2503 314080723 502004 121.267 0.194 36.722009 -77.817381 +23872 2376 1038 248531101 216600 95.958 0.084 36.987994 -77.718798 +23874 1004 463 103931626 124248 40.128 0.048 36.608956 -77.085713 +23875 10878 4477 90940482 1216413 35.112 0.470 37.219762 -77.267410 +23876 456 237 93051886 131898 35.928 0.051 36.955753 -77.833610 +23878 1118 502 102095845 754117 39.419 0.291 36.825024 -77.025551 +23879 679 344 87220671 315883 33.676 0.122 36.592362 -77.596924 +23881 2176 1096 309808917 43775046 119.618 16.902 37.179903 -76.978431 +23882 2516 1232 415080534 1902221 160.263 0.734 36.926173 -77.421687 +23883 2551 1227 148005519 47271650 57.145 18.252 37.136130 -76.735795 +23884 93 6 917010 0 0.354 0.000 36.917234 -77.279442 +23885 2807 1138 87893350 2906961 33.936 1.122 37.190287 -77.572659 +23887 574 611 52880790 2477289 20.417 0.956 36.573362 -77.816917 +23888 2275 1093 225824991 1327201 87.192 0.512 36.949634 -76.975005 +23889 581 276 87232081 225492 33.680 0.087 36.900108 -77.745861 +23890 4249 1946 508111675 2473449 196.183 0.955 37.009176 -77.118319 +23891 2358 1 5994504 0 2.314 0.000 37.050821 -77.212429 +23893 454 227 67086614 80981 25.902 0.031 36.644073 -77.920776 +23894 673 301 83786376 146963 32.350 0.057 37.122207 -77.820822 +23897 595 313 153845344 699267 59.400 0.270 36.829095 -77.283462 +23898 2223 897 128537348 830372 49.629 0.321 36.834376 -76.861405 +23899 351 207 6488768 3830182 2.505 1.479 37.233638 -76.965858 +23901 16399 6858 518735927 6804904 200.285 2.627 37.321096 -78.421147 +23909 2027 0 99065 0 0.038 0.000 37.300584 -78.396639 +23915 1220 347 84797987 213608 32.741 0.082 36.693867 -78.287525 +23917 3684 1890 280920386 69198981 108.464 26.718 36.625554 -78.344856 +23919 2666 2857 84561295 9101951 32.649 3.514 36.594671 -78.132614 +23920 3489 1686 315290971 121697 121.735 0.047 36.724517 -77.975253 +23921 1991 1045 209303882 1205704 80.813 0.466 37.586332 -78.623542 +23922 3785 1014 175775470 419392 67.867 0.162 37.185508 -78.216409 +23923 2592 1263 229738607 449392 88.703 0.174 37.087129 -78.649776 +23924 6232 3114 355894300 465470 137.412 0.180 36.807989 -78.428438 +23927 4381 3330 195821573 52938939 75.607 20.440 36.587497 -78.564584 +23930 5690 2670 277328284 1291021 107.077 0.498 37.171003 -78.099611 +23934 681 338 93122438 462805 35.955 0.179 37.177152 -78.626705 +23936 8212 2820 565768045 2587552 218.444 0.999 37.534064 -78.476759 +23937 1970 974 188663422 792432 72.843 0.306 36.945141 -78.512503 +23938 407 208 51244920 135064 19.786 0.052 36.905314 -77.992026 +23942 1112 554 153026760 861740 59.084 0.333 37.134366 -78.289196 +23943 225 42 690570 13988 0.267 0.005 37.245545 -78.453666 +23944 4261 2134 362844404 522419 140.095 0.202 36.915054 -78.138337 +23947 4293 2133 345308266 714864 133.324 0.276 37.031092 -78.444709 +23950 3348 1573 158161667 205064 61.067 0.079 36.658969 -78.075746 +23952 217 105 34232250 29553 13.217 0.011 36.929940 -78.291851 +23954 2017 973 164598188 244561 63.552 0.094 37.104953 -78.378902 +23958 3170 1536 253330522 970426 97.811 0.375 37.264893 -78.659633 +23959 1264 614 151726014 45222 58.582 0.017 37.105192 -78.794749 +23960 1990 890 111381937 611923 43.005 0.236 37.313670 -78.560952 +23962 670 342 122395754 1863429 47.257 0.719 37.004660 -78.739340 +23963 587 264 56495512 20696 21.813 0.008 37.201059 -78.798347 +23964 1138 612 114174496 1961158 44.083 0.757 36.772427 -78.627089 +23966 2337 1047 138254302 2708141 53.380 1.046 37.293852 -78.270718 +23967 1118 581 122818202 219696 47.420 0.085 36.913121 -78.636592 +23968 837 464 81966746 151361 31.648 0.058 36.725263 -78.528509 +23970 8254 3918 314008276 1003281 121.239 0.387 36.750501 -78.190761 +23974 5012 1965 254644611 478976 98.319 0.185 36.970455 -78.255276 +23976 230 137 19915591 36904 7.689 0.014 36.844428 -78.585307 +24011 219 153 444735 909 0.172 0.000 37.270850 -79.941490 +24012 29015 13586 52860333 124485 20.409 0.048 37.308387 -79.900364 +24013 8684 3609 5854429 122353 2.260 0.047 37.266503 -79.923095 +24014 16570 8335 74151426 580750 28.630 0.224 37.221656 -79.914401 +24015 15255 7799 11667524 99090 4.505 0.038 37.256760 -79.981330 +24016 9047 4751 8409197 113843 3.247 0.044 37.273437 -79.954687 +24017 23392 10877 23224281 93911 8.967 0.036 37.297647 -79.990966 +24018 36432 16867 117608670 209169 45.409 0.081 37.212776 -80.041192 +24019 26502 11276 80114031 1052941 30.932 0.407 37.346523 -79.953580 +24020 455 34 708517 0 0.274 0.000 37.358216 -79.944179 +24053 2715 1452 142321016 113342 54.950 0.044 36.607233 -80.534079 +24054 6797 3171 278575842 541115 107.559 0.209 36.673945 -79.704095 +24055 13674 6652 225080088 2151364 86.904 0.831 36.756169 -79.997554 +24058 324 160 6065190 414066 2.342 0.160 37.176663 -80.622252 +24059 872 420 61294393 86092 23.666 0.033 37.163765 -80.130437 +24060 53311 20255 343481683 2094392 132.619 0.809 37.256076 -80.421951 +24064 4963 2070 85043782 35505 32.836 0.014 37.376020 -79.770367 +24065 6141 2771 221012683 342174 85.333 0.132 37.117253 -79.997517 +24066 4883 2387 416069984 3423150 160.646 1.322 37.537053 -79.681003 +24067 2230 1067 145483163 162044 56.171 0.063 37.031669 -80.060926 +24069 1879 884 85856363 729358 33.149 0.282 36.577818 -79.640539 +24070 1363 608 149686054 247463 57.794 0.096 37.356219 -80.225842 +24072 1298 605 71943295 14913 27.777 0.006 37.041976 -80.242363 +24073 29793 13314 229847653 641325 88.745 0.248 37.132450 -80.424902 +24076 972 517 93110822 12157 35.950 0.005 36.605192 -80.421039 +24077 932 447 2095509 21124 0.809 0.008 37.366211 -79.904022 +24078 7115 3559 17930807 59377 6.923 0.023 36.720605 -79.900228 +24079 1766 946 100087952 79335 38.644 0.031 37.056632 -80.160939 +24082 419 182 19372549 21262 7.480 0.008 36.621469 -80.112085 +24083 2587 1172 20676492 517037 7.983 0.200 37.405171 -79.920188 +24084 11304 5188 306084399 6276571 118.180 2.423 37.127950 -80.845746 +24085 2182 1295 454913498 4862787 175.643 1.878 37.679371 -79.821548 +24086 210 112 16495460 337636 6.369 0.130 37.275580 -80.632246 +24087 3914 1707 119038664 583684 45.961 0.225 37.214011 -80.256774 +24088 5408 2359 303566417 5716726 117.208 2.207 36.887904 -80.077927 +24089 2640 1327 29158110 21879 11.258 0.008 36.708518 -79.971555 +24090 4781 2057 245964294 826008 94.967 0.319 37.521699 -79.886553 +24091 7215 3650 452721598 1476504 174.797 0.570 36.920279 -80.329625 +24092 3063 1473 92066535 1508102 35.547 0.582 37.012031 -79.757851 +24093 192 97 13390572 2106942 5.170 0.813 37.385177 -80.868752 +24095 4677 2177 65352262 3958510 25.233 1.528 37.223210 -79.737268 +24101 6132 2942 143665288 4342015 55.469 1.676 37.172272 -79.798982 +24102 1697 1039 83092391 3592909 32.082 1.387 36.837285 -79.998307 +24104 3469 2608 193697219 20058757 74.787 7.745 37.133049 -79.489959 +24105 500 267 55572380 1924 21.457 0.001 36.911559 -80.603685 +24112 32646 16192 392877913 2226623 151.691 0.860 36.721554 -79.849362 +24120 1860 1288 185756167 683357 71.721 0.264 36.691636 -80.413917 +24121 10501 7241 245800014 27327991 94.904 10.551 37.168883 -79.647209 +24122 1683 778 74442010 28589 28.742 0.011 37.426197 -79.692130 +24124 4352 2057 187378628 2389628 72.347 0.923 37.311202 -80.854494 +24127 4261 2298 623013401 2215563 240.547 0.855 37.473129 -80.231734 +24128 1872 949 186689996 714350 72.081 0.276 37.339994 -80.482544 +24130 8 15 5889885 145801 2.274 0.056 37.609758 -80.002393 +24131 140 104 111805025 300319 43.168 0.116 37.570310 -80.232729 +24132 460 241 30363363 1079306 11.723 0.417 37.203787 -80.659249 +24133 2626 1340 112105546 0 43.284 0.000 36.669705 -80.134421 +24134 5741 2665 265803763 2923543 102.627 1.129 37.247923 -80.777559 +24136 3393 1671 126359359 2114727 48.788 0.817 37.331845 -80.601589 +24137 2582 2290 192299660 11445192 74.247 4.419 36.927763 -79.653317 +24138 1613 699 70079183 13331 27.058 0.005 37.042837 -80.306411 +24139 575 394 63379847 4171462 24.471 1.611 37.013166 -79.481073 +24141 20668 9967 165316693 8431073 63.829 3.255 37.096142 -80.568655 +24142 2470 0 257345 0 0.099 0.000 37.137882 -80.550906 +24147 1201 541 16793566 1131108 6.484 0.437 37.401494 -80.823621 +24148 8013 3853 184596896 589071 71.273 0.227 36.579801 -79.877967 +24149 3339 1516 137598522 1034072 53.127 0.399 37.021646 -80.429177 +24150 693 436 144524113 509479 55.801 0.197 37.406601 -80.602628 +24151 20000 9057 420911880 2798229 162.515 1.080 36.954022 -79.865200 +24153 37761 15939 272001342 2057009 105.020 0.794 37.302440 -80.114711 +24161 471 288 68494290 1590946 26.446 0.614 36.978085 -79.529113 +24162 2421 1123 120933678 410744 46.693 0.159 37.129445 -80.249698 +24165 1613 822 112374309 0 43.388 0.000 36.584884 -80.051921 +24167 345 157 13738803 67151 5.305 0.026 37.255259 -80.724536 +24168 187 102 2567395 0 0.991 0.000 36.734753 -79.946456 +24171 8250 4362 517194702 1270993 199.690 0.491 36.671941 -80.239037 +24174 2539 1200 88498862 63805 34.170 0.025 37.351716 -79.673095 +24175 8818 3645 186383436 589119 71.963 0.227 37.427955 -79.939737 +24176 1360 1300 56942013 9057733 21.985 3.497 37.005934 -79.691834 +24179 18616 8318 122496129 1050818 47.296 0.406 37.295038 -79.810524 +24184 4705 2408 110918865 6015472 42.826 2.323 37.090300 -79.779648 +24185 854 503 97665409 0 37.709 0.000 36.811592 -80.269238 +24201 17116 8469 26832166 147757 10.360 0.057 36.610715 -82.170050 +24202 12905 5916 330214604 898731 127.497 0.347 36.656310 -82.212219 +24210 16840 7966 366159371 1420855 141.375 0.549 36.768883 -82.027987 +24211 9922 4730 183082958 7515282 70.689 2.902 36.654088 -81.955070 +24216 2939 1436 174656225 475696 67.435 0.184 36.948295 -82.799411 +24217 406 224 52849306 126283 20.405 0.049 37.084846 -82.178539 +24219 11265 4652 188613531 1132246 72.824 0.437 36.849443 -82.758491 +24220 895 404 64479391 117064 24.896 0.045 37.143884 -82.244318 +24221 938 552 131980525 33146 50.958 0.013 36.625334 -82.999148 +24224 6734 3114 281240877 1650063 108.588 0.637 36.861431 -82.271754 +24225 1697 862 148954658 1339267 57.512 0.517 36.991910 -82.142704 +24226 1433 720 69341077 339374 26.773 0.131 37.140423 -82.320373 +24228 7016 3423 240776885 4370827 92.964 1.688 37.167087 -82.456473 +24230 9597 4386 332845222 1252268 128.512 0.484 36.956554 -82.453973 +24236 3085 1655 146329293 667917 56.498 0.258 36.652534 -81.746480 +24237 1192 625 147971234 173760 57.132 0.067 37.036159 -82.261943 +24239 113 65 7174704 25421 2.770 0.010 37.117682 -82.148525 +24243 2222 943 58015656 534715 22.400 0.206 36.773101 -82.926022 +24244 5723 2828 441215859 1318885 170.354 0.509 36.723769 -82.782264 +24245 1129 640 134352797 950941 51.874 0.367 36.838011 -82.512802 +24246 455 202 1271674 7137 0.491 0.003 36.865811 -82.745551 +24248 2596 1283 135704253 251566 52.396 0.097 36.625358 -83.514584 +24250 1319 703 136188215 1075236 52.583 0.415 36.756733 -82.596526 +24251 8773 4417 306911839 2160751 118.499 0.834 36.655848 -82.606159 +24256 3491 1590 150648983 2851630 58.166 1.101 37.216310 -82.286792 +24258 1624 807 107565253 1048081 41.531 0.405 36.645372 -82.422038 +24260 5734 2686 204746499 791053 79.053 0.305 37.030725 -82.014818 +24263 7950 3185 313755217 1657251 121.142 0.640 36.668226 -83.147399 +24265 930 441 101604638 950070 39.230 0.367 36.831887 -82.945802 +24266 9521 4427 313995878 1573446 121.234 0.608 36.858753 -82.120986 +24269 324 158 19844121 3544 7.662 0.001 37.072765 -82.380683 +24270 582 305 55449140 809010 21.409 0.312 36.729640 -82.250652 +24271 2689 1405 163128898 807435 62.984 0.312 36.749134 -82.416420 +24272 527 255 54153359 38328 20.909 0.015 37.013892 -82.314775 +24273 6262 3013 163912962 608969 63.287 0.235 36.964719 -82.661557 +24277 5849 2868 136947514 901861 52.876 0.348 36.744789 -83.038430 +24279 5541 2197 208995795 1191691 80.694 0.460 37.077709 -82.627486 +24280 823 363 27360425 65645 10.564 0.025 36.956077 -81.923315 +24281 2487 1272 142395669 338119 54.979 0.131 36.637323 -83.340226 +24282 727 367 40843322 31396 15.770 0.012 36.818659 -83.054647 +24283 2171 1053 66190378 401653 25.556 0.155 36.945645 -82.349330 +24290 1874 956 12827324 347575 4.953 0.134 36.612701 -82.567940 +24292 535 341 69448171 20708 26.814 0.008 36.617691 -81.578136 +24293 10791 4665 151528809 884977 58.506 0.342 37.004098 -82.550699 +24301 14366 7053 207790450 4417394 80.228 1.706 37.067710 -80.810743 +24311 1977 972 104992148 19768 40.538 0.008 36.874190 -81.422017 +24312 2401 1199 96550195 2020453 37.278 0.780 36.832976 -80.887055 +24313 884 400 18498985 78123 7.142 0.030 36.909891 -80.820003 +24314 1560 763 228480089 785933 88.217 0.303 37.147842 -81.228407 +24315 3774 1592 472337438 1387999 182.371 0.536 37.130839 -81.074077 +24316 50 20 10559708 54822 4.077 0.021 36.955705 -81.668988 +24317 3858 1995 97368475 147742 37.594 0.057 36.601166 -80.671347 +24318 639 442 173292895 147241 66.909 0.057 36.995958 -81.387124 +24319 6979 3144 208215525 623270 80.392 0.241 36.745188 -81.654976 +24322 174 98 34902108 207486 13.476 0.080 36.798845 -81.113703 +24323 644 314 48583069 39679 18.758 0.015 36.866475 -81.185373 +24324 2013 1050 90587943 2773681 34.976 1.071 36.974312 -80.776884 +24325 1039 813 135116321 701700 52.169 0.271 36.801832 -80.591555 +24326 1058 752 140887109 50278 54.397 0.019 36.729845 -81.202199 +24328 1726 1610 97319163 132779 37.575 0.051 36.645356 -80.700836 +24330 3401 1913 107554935 2039480 41.527 0.787 36.725798 -81.020688 +24333 17996 8879 373409421 4839492 144.174 1.869 36.639975 -80.934776 +24340 5657 2608 152633512 582217 58.932 0.225 36.753256 -81.767899 +24343 9267 4883 343154679 1510220 132.493 0.583 36.770411 -80.690913 +24347 1931 1094 205574956 4559260 79.373 1.760 36.960871 -80.652471 +24348 3958 2388 274825194 2987504 106.111 1.153 36.641574 -81.199058 +24350 1261 653 122922835 1849610 47.461 0.714 36.813309 -80.994235 +24351 668 345 29534821 32801 11.403 0.013 36.579431 -80.765127 +24352 890 565 74452707 277639 28.746 0.107 36.709011 -80.531193 +24354 15315 7295 274863795 1113841 106.126 0.430 36.829354 -81.539710 +24360 6169 2737 220653911 2396957 85.195 0.925 36.932895 -80.896896 +24361 5431 2185 145474222 894547 56.168 0.345 36.767265 -81.845258 +24363 1365 908 195466252 1616134 75.470 0.624 36.616640 -81.405157 +24366 781 415 70904249 30307 27.376 0.012 37.259482 -81.118583 +24368 4953 2303 214334212 486705 82.755 0.188 36.888029 -81.302492 +24370 6572 3146 389828452 2046542 150.514 0.790 36.911469 -81.689777 +24374 787 393 74967409 240084 28.945 0.093 36.792191 -81.210166 +24375 1611 991 159435199 142279 61.558 0.055 36.768931 -81.387771 +24377 348 220 91483456 81021 35.322 0.031 37.000304 -81.574148 +24378 1229 826 212361187 131139 81.993 0.051 36.686691 -81.443367 +24380 2639 1349 218589332 52869 84.398 0.020 36.859701 -80.508764 +24381 3816 1955 133986468 1024757 51.732 0.396 36.729989 -80.840655 +24382 14366 7189 518495872 1172485 200.192 0.453 36.960016 -81.101367 +24401 35499 17005 345091793 1455093 133.241 0.562 38.134404 -79.085514 +24411 112 50 1082560 0 0.418 0.000 38.105128 -79.311238 +24412 131 73 6793367 34873 2.623 0.013 38.053837 -79.815938 +24413 178 140 104321111 99105 40.279 0.038 38.543510 -79.598066 +24415 41 25 520770 0 0.201 0.000 37.925000 -79.317053 +24416 8807 3887 143951596 693440 55.580 0.268 37.722497 -79.360864 +24421 3868 1678 198277412 397546 76.555 0.153 38.244788 -79.245218 +24422 6315 3270 215830697 1544607 83.333 0.596 37.830403 -79.758834 +24426 14329 7110 861798125 7124886 332.742 2.751 37.763523 -80.084876 +24430 2643 718 91307847 93843 35.254 0.036 38.086984 -79.355774 +24431 2656 1137 36805475 261333 14.211 0.101 38.170011 -78.842838 +24432 336 221 130252915 480223 50.291 0.185 38.148002 -79.443356 +24433 99 59 38644107 5783 14.921 0.002 38.423418 -79.424235 +24435 1925 913 80997302 67376 31.273 0.026 37.872640 -79.301938 +24437 904 374 34514971 169353 13.326 0.065 38.220807 -78.935476 +24439 1253 733 245437770 3024559 94.764 1.168 37.993806 -79.489306 +24440 2916 1108 71846580 256698 27.740 0.099 37.999250 -79.165436 +24441 6140 2569 114371896 1078475 44.159 0.416 38.226067 -78.824873 +24442 120 144 125388661 143750 48.413 0.056 38.372539 -79.384583 +24445 2673 1590 274521746 624983 105.993 0.241 37.942225 -79.891931 +24448 376 177 794329 48395 0.307 0.019 37.797110 -79.788524 +24450 16741 7382 533005082 2392256 205.794 0.924 37.778993 -79.526578 +24457 270 140 18604298 100094 7.183 0.039 37.764571 -79.941307 +24458 442 370 224735867 532791 86.771 0.206 38.316163 -79.527755 +24459 818 408 131001983 59618 50.580 0.023 38.020842 -79.292320 +24460 1530 1090 636833120 3410482 245.883 1.317 38.019880 -79.656459 +24464 213 213 58683500 39401 22.658 0.015 37.874933 -79.093913 +24465 1382 1001 454476101 891731 175.474 0.344 38.384565 -79.647758 +24467 2212 918 60984718 378731 23.546 0.146 38.254985 -78.971321 +24471 1355 598 41973423 781509 16.206 0.302 38.313210 -78.784180 +24472 2271 1092 165641660 232159 63.955 0.090 37.941329 -79.208109 +24473 922 534 140055529 677349 54.076 0.262 37.934734 -79.415376 +24474 544 246 1664940 66732 0.643 0.026 37.805612 -79.845530 +24476 280 129 18199989 17677 7.027 0.007 37.974534 -79.227293 +24477 10573 4539 125697057 853765 48.532 0.330 38.004877 -79.042239 +24479 1537 709 156743042 421885 60.519 0.163 38.163944 -79.239044 +24482 4872 1840 39713881 696628 15.334 0.269 38.205935 -78.996676 +24483 587 381 186440102 312259 71.985 0.121 37.812333 -79.230553 +24484 741 643 461245444 9822651 178.088 3.793 38.160557 -79.784108 +24485 389 297 219337484 380741 84.687 0.147 38.267603 -79.333024 +24486 3490 1328 59097941 528480 22.818 0.204 38.296885 -78.924533 +24487 320 262 185265425 465235 71.531 0.180 38.193369 -79.583031 +24501 26757 11838 99789009 478541 38.529 0.185 37.359607 -79.141653 +24502 43426 17489 71834485 513835 27.735 0.198 37.360401 -79.221579 +24503 19331 8724 108323580 2164556 41.824 0.836 37.454015 -79.249736 +24504 9777 4586 83163981 1039670 32.110 0.401 37.365249 -79.048192 +24517 5693 2688 93328821 932186 36.034 0.360 37.147576 -79.237168 +24520 2450 1200 240284634 1908315 92.774 0.737 36.592461 -79.032394 +24521 10576 4767 599832088 2595581 231.596 1.002 37.632622 -79.100875 +24522 9213 4276 510235999 1193526 197.003 0.461 37.376805 -78.778792 +24523 18952 8760 583571207 1937112 225.318 0.748 37.344789 -79.523894 +24526 1593 780 169045958 1853100 65.269 0.715 37.543655 -79.406786 +24527 3027 1326 81781794 763854 31.576 0.295 36.736768 -79.341721 +24528 3200 1615 253712765 1394793 97.959 0.539 37.079686 -78.876229 +24529 1724 994 96753420 7323640 37.357 2.828 36.626619 -78.646754 +24530 1088 591 90877335 240639 35.088 0.093 36.806773 -79.619231 +24531 9203 4596 511478603 3192831 197.483 1.233 36.842264 -79.453378 +24534 1740 956 149823119 543135 57.847 0.210 36.867403 -78.770507 +24536 194 99 15258290 177226 5.891 0.068 37.495689 -79.326532 +24538 4742 2097 238465935 1345198 92.072 0.519 37.345256 -78.962285 +24539 134 86 19610518 11269 7.572 0.004 36.854591 -78.914535 +24540 32170 15757 196953985 1237096 76.044 0.478 36.634506 -79.426751 +24541 28221 14651 189072777 2769011 73.001 1.069 36.588822 -79.515100 +24549 4292 1964 132234851 286162 51.056 0.110 36.713997 -79.505199 +24550 7258 3126 168603358 589257 65.098 0.228 37.239462 -79.246429 +24551 20667 8302 176471454 1000787 68.136 0.386 37.356335 -79.324396 +24553 1902 969 327852446 5417328 126.585 2.092 37.548430 -78.812796 +24554 3995 1876 305731851 1566792 118.044 0.605 37.134836 -79.069868 +24555 2140 1044 60247386 768317 23.262 0.297 37.669829 -79.484088 +24556 3053 1267 110607552 357589 42.706 0.138 37.374818 -79.398561 +24557 7977 4286 425540689 4170535 164.302 1.610 36.969859 -79.306424 +24558 6347 3042 243047410 2960358 93.841 1.143 36.774341 -78.953963 +24562 426 220 46514040 1792744 17.959 0.692 37.694481 -78.627533 +24563 5489 2779 174593798 1505326 67.411 0.581 37.062500 -79.279115 +24565 1026 656 148789733 1045140 57.448 0.404 36.848582 -79.200674 +24566 1402 640 96247594 231153 37.161 0.089 36.731828 -79.252639 +24569 1064 489 93707329 1671995 36.181 0.646 37.042584 -79.125819 +24570 20 10 2352797 25375 0.908 0.010 37.346460 -79.424457 +24571 1979 1054 132886965 3411003 51.308 1.317 37.132961 -79.372748 +24572 16395 7016 165597603 5094671 63.938 1.967 37.464935 -79.095098 +24574 3977 1714 281871959 3444347 108.831 1.330 37.576150 -79.253367 +24577 5239 2775 497249391 2863308 191.989 1.106 36.937349 -78.982643 +24578 1056 516 90241052 56521 34.842 0.022 37.659883 -79.562257 +24579 1389 681 84903557 1142297 32.781 0.441 37.585803 -79.502698 +24580 613 298 53605412 140514 20.697 0.054 36.579054 -78.673121 +24581 23 27 11318824 798208 4.370 0.308 37.655293 -78.805801 +24586 5562 2618 137397857 619012 53.050 0.239 36.607044 -79.276609 +24588 9647 4025 188194987 466399 72.662 0.180 37.262151 -79.096232 +24589 2271 1099 201220989 13603900 77.692 5.252 36.760808 -78.758047 +24590 8074 3549 431586458 6742666 166.636 2.603 37.796421 -78.490289 +24592 13934 6707 325327013 3310564 125.609 1.278 36.675795 -78.965555 +24593 1963 916 93973327 232057 36.283 0.090 37.322490 -78.902729 +24594 1651 816 142184115 629840 54.898 0.243 36.646843 -79.178528 +24595 679 74 4771168 56145 1.842 0.022 37.559759 -79.082106 +24597 1257 636 128667968 677966 49.679 0.262 36.782508 -79.109496 +24598 1984 1034 191295312 3421850 73.860 1.321 36.604670 -78.788004 +24599 606 330 121179064 920509 46.788 0.355 37.623560 -78.723891 +24601 77 55 4958332 0 1.914 0.000 37.193732 -81.649243 +24602 962 456 128705229 2787 49.693 0.001 37.183213 -81.658510 +24603 978 499 53375504 315761 20.608 0.122 37.353341 -82.197201 +24604 342 176 10567316 3413 4.080 0.001 37.211983 -81.538085 +24605 9301 4293 124691736 116297 48.144 0.045 37.253367 -81.371368 +24606 170 92 6059118 1162 2.339 0.000 37.282935 -81.392098 +24607 462 220 32879293 28379 12.695 0.011 37.293533 -82.262524 +24609 7630 3569 269275611 1971237 103.968 0.761 37.009747 -81.808041 +24612 229 126 1372079 0 0.530 0.000 37.093350 -81.838141 +24613 911 433 29812404 444710 11.511 0.172 37.265157 -81.336881 +24614 8061 3925 331636907 997371 128.046 0.385 37.298652 -82.071085 +24620 2774 1344 198829348 257421 76.768 0.099 37.431325 -82.011712 +24622 1028 509 128010243 21272 49.425 0.008 37.214782 -81.789498 +24628 295 139 16513263 29844 6.376 0.012 37.282358 -82.222958 +24630 6774 3150 169941223 212262 65.615 0.082 37.178327 -81.465545 +24631 2843 1105 131058521 556973 50.602 0.215 37.217306 -81.990489 +24634 574 274 37660616 121826 14.541 0.047 37.276808 -81.887992 +24635 1650 330 15146544 76230 5.848 0.029 37.312452 -81.362984 +24637 3410 1480 73714394 545873 28.461 0.211 37.061082 -81.713894 +24639 3533 1646 109097052 119320 42.123 0.046 37.160378 -81.888205 +24641 5953 2934 49392455 151474 19.071 0.058 37.111816 -81.802451 +24646 750 372 30470177 4354 11.765 0.002 37.143396 -82.024538 +24649 2760 1260 114654883 670222 44.268 0.259 37.062876 -81.899934 +24651 6314 3051 406791642 620192 157.063 0.239 37.075529 -81.503095 +24656 3404 1724 177290531 202044 68.452 0.078 37.175055 -82.124994 +24657 321 173 43264321 116777 16.704 0.045 37.225846 -81.854783 +24701 20786 10339 166863182 1066700 64.426 0.412 37.305951 -81.204941 +24712 2063 731 22924880 97670 8.851 0.038 37.463059 -81.015010 +24714 257 132 32640588 2981 12.603 0.001 37.478110 -81.189180 +24715 594 332 25393556 151828 9.805 0.059 37.340389 -81.324613 +24716 508 238 53416359 57219 20.624 0.022 37.480093 -81.371928 +24719 223 98 2622539 0 1.013 0.000 37.487167 -81.326725 +24724 66 39 407737 0 0.157 0.000 37.330881 -81.299757 +24726 566 253 95381961 290972 36.827 0.112 37.514751 -81.352074 +24729 149 79 12576815 29272 4.856 0.011 37.453953 -81.257460 +24731 255 122 3307492 0 1.277 0.000 37.397966 -81.151064 +24733 853 385 15035083 22772 5.805 0.009 37.450768 -81.205194 +24736 902 477 74035461 28851 28.585 0.011 37.444268 -81.277515 +24737 243 107 270585 3926 0.104 0.002 37.352758 -81.250681 +24738 308 145 3281432 53968 1.267 0.021 37.302041 -81.309700 +24740 30435 14522 415274147 1525927 160.338 0.589 37.373761 -81.004649 +24747 3006 1386 102996799 770979 39.767 0.298 37.381781 -81.309037 +24801 3858 1940 142241881 208990 54.920 0.081 37.448883 -81.576989 +24808 675 419 42281851 20280 16.325 0.008 37.330026 -81.422403 +24811 599 276 40453363 337194 15.619 0.130 37.399018 -81.771063 +24813 511 235 33312873 114761 12.862 0.044 37.357412 -81.720113 +24815 559 292 55453464 230470 21.411 0.089 37.241667 -81.659603 +24816 151 88 1267333 47087 0.489 0.018 37.461102 -81.705939 +24817 954 451 29419425 150492 11.359 0.058 37.352309 -81.804746 +24818 1409 618 66405233 280399 25.639 0.108 37.602702 -81.624946 +24822 955 425 48091516 533684 18.568 0.206 37.647905 -81.697225 +24823 383 176 35309758 30260 13.633 0.012 37.671967 -81.751954 +24826 150 85 35888742 48345 13.857 0.019 37.293265 -81.623582 +24827 1501 618 100756161 105078 38.902 0.041 37.735449 -81.647584 +24828 927 430 56806358 202713 21.933 0.078 37.498914 -81.636642 +24830 139 111 22332919 8419 8.623 0.003 37.323123 -81.506110 +24831 250 119 4553564 503 1.758 0.000 37.394120 -81.411535 +24834 412 190 31842988 125380 12.295 0.048 37.547724 -81.630543 +24836 800 417 98388183 255157 37.988 0.099 37.333900 -81.558641 +24839 1523 757 120608570 1451939 46.567 0.561 37.560677 -81.738387 +24843 158 68 8624445 7818 3.330 0.003 37.487153 -81.710108 +24844 1810 909 146436604 792801 56.539 0.306 37.462452 -81.806627 +24845 282 155 8626822 0 3.331 0.000 37.517953 -81.817841 +24846 244 117 18536951 426011 7.157 0.164 37.529522 -81.912860 +24847 293 138 4626832 51382 1.786 0.020 37.577109 -81.418416 +24848 262 152 34460796 45225 13.305 0.017 37.303989 -81.460613 +24849 337 157 26914006 97210 10.392 0.038 37.665758 -81.542718 +24850 1093 524 39392526 343 15.210 0.000 37.317648 -81.845423 +24851 419 203 1939182 142096 0.749 0.055 37.601371 -81.833685 +24853 793 446 56506005 37798 21.817 0.015 37.435447 -81.511682 +24854 550 218 15235020 24263 5.882 0.009 37.753683 -81.555949 +24857 984 426 21356141 114226 8.246 0.044 37.672510 -81.660302 +24860 552 278 15405704 92331 5.948 0.036 37.660167 -81.607610 +24861 307 167 10367198 3144 4.003 0.001 37.350951 -81.363130 +24862 651 326 27758331 108462 10.718 0.042 37.469181 -81.964573 +24866 240 114 26391099 0 10.190 0.000 37.248133 -81.580323 +24867 409 166 34097864 123686 13.165 0.048 37.596266 -81.444454 +24868 1686 948 104792643 88286 40.461 0.034 37.438850 -81.390965 +24869 351 164 11998464 4511 4.633 0.002 37.562659 -81.838125 +24870 2874 1308 100875168 415133 38.948 0.160 37.765391 -81.510367 +24871 309 141 22651063 116295 8.746 0.045 37.359301 -81.468304 +24872 783 391 80236526 308309 30.979 0.119 37.449363 -81.920471 +24873 600 331 42773936 4892 16.515 0.002 37.366148 -81.878193 +24874 2729 1340 170934729 839200 65.998 0.324 37.560551 -81.525653 +24878 337 163 22935941 129415 8.856 0.050 37.435435 -81.620904 +24879 657 314 40474688 60821 15.627 0.023 37.313896 -81.758686 +24880 356 167 12648685 4322 4.884 0.002 37.651474 -81.530536 +24881 601 303 31435371 118199 12.137 0.046 37.431391 -81.684589 +24882 483 198 32122520 640061 12.403 0.247 37.625601 -81.766003 +24884 265 145 57801317 9555 22.317 0.004 37.233269 -81.605572 +24887 67 28 7537386 961 2.910 0.000 37.373345 -81.404173 +24888 167 93 14245525 26212 5.500 0.010 37.392785 -81.483288 +24892 1513 778 56511082 284834 21.819 0.110 37.326940 -81.687785 +24894 388 176 18537728 53677 7.157 0.021 37.274965 -81.713671 +24898 198 96 616023 107797 0.238 0.042 37.593824 -81.610269 +24901 9128 4696 225846369 1131911 87.200 0.437 37.855704 -80.451746 +24910 5383 2449 356198915 1942708 137.529 0.750 37.745946 -80.656318 +24915 590 517 130150271 32 50.251 0.000 38.465669 -79.777605 +24916 558 289 43567320 23951 16.821 0.009 37.828565 -80.581103 +24918 1677 825 113057935 363615 43.652 0.140 37.521102 -80.742662 +24920 346 283 182220145 85431 70.356 0.033 38.580079 -79.704212 +24924 512 369 61686939 612715 23.817 0.237 38.201776 -80.165546 +24925 935 463 90063531 508615 34.774 0.196 37.714707 -80.376437 +24927 365 424 103736433 22909 40.053 0.009 38.375261 -79.957193 +24931 1544 732 164265800 213412 63.423 0.082 37.919011 -80.588601 +24934 503 542 170027505 140670 65.648 0.054 38.333579 -79.891016 +24935 688 515 74376165 1205107 28.717 0.465 37.566530 -80.808493 +24938 1518 774 71927670 265897 27.771 0.103 37.893488 -80.387190 +24941 1059 837 182777576 249009 70.571 0.096 37.588268 -80.346462 +24944 401 416 77419563 0 29.892 0.000 38.389627 -79.783657 +24945 393 229 43139377 153007 16.656 0.059 37.541978 -80.677193 +24946 1533 1051 455456923 1108762 175.853 0.428 38.184420 -80.262312 +24951 1489 695 95170248 28454 36.745 0.011 37.484272 -80.643607 +24954 3514 2518 737484952 1982812 284.745 0.766 38.224907 -80.056049 +24957 346 155 9771661 8148 3.773 0.003 37.885119 -80.425302 +24962 186 112 8215584 473410 3.172 0.183 37.662419 -80.718342 +24963 4095 2023 138903044 1074210 53.631 0.415 37.436416 -80.758163 +24966 1286 847 510271628 3477155 197.017 1.343 38.077719 -80.362136 +24970 4575 2273 104445251 1770438 40.327 0.684 37.728085 -80.474498 +24974 299 128 18899578 63684 7.297 0.025 37.640060 -80.449320 +24976 1005 478 75213290 228341 29.040 0.088 37.656970 -80.511713 +24977 441 205 34189769 209649 13.201 0.081 37.897155 -80.687105 +24981 631 471 31870452 794954 12.305 0.307 37.630403 -80.737044 +24983 2443 1448 321969144 504873 124.313 0.195 37.574990 -80.518586 +24984 185 509 121672056 137310 46.978 0.053 37.493530 -80.405020 +24986 5216 3267 579971493 2252767 223.928 0.870 37.920943 -80.145636 +24991 521 327 123333065 54846 47.619 0.021 38.021608 -80.497446 +25002 112 68 6557573 0 2.532 0.000 38.135764 -81.241730 +25003 2782 1243 92856230 871844 35.852 0.337 38.252347 -81.784831 +25005 264 132 19153838 0 7.395 0.000 38.583444 -81.256426 +25007 604 246 13624518 67456 5.260 0.026 37.824840 -81.430458 +25008 210 91 29287088 13993 11.308 0.005 37.947065 -81.343967 +25009 1153 517 74643983 285652 28.820 0.110 38.202364 -81.684447 +25011 800 346 1032853 170269 0.399 0.066 38.508579 -81.839417 +25015 4691 2277 66515040 2380962 25.682 0.919 38.246135 -81.497256 +25019 575 249 58582157 30773 22.619 0.012 38.371626 -81.068876 +25021 305 149 17142462 92149 6.619 0.036 37.921980 -81.680502 +25022 153 89 91300082 205615 35.251 0.079 37.860342 -81.819040 +25024 586 252 14864376 74760 5.739 0.029 38.159091 -81.623740 +25025 230 102 40129946 2383 15.494 0.001 38.314657 -81.411336 +25028 381 167 8289480 62373 3.201 0.024 37.947147 -81.725572 +25030 414 205 40193597 138214 15.519 0.053 38.453317 -81.225847 +25031 615 342 11863023 353613 4.580 0.137 38.148617 -81.275148 +25033 2234 1013 64411946 1941769 24.870 0.750 38.612061 -81.924382 +25035 1112 567 29950088 645727 11.564 0.249 38.165242 -81.521007 +25036 468 209 21553915 32265 8.322 0.012 38.213690 -81.259152 +25039 1304 592 66242425 2731 25.576 0.001 38.234955 -81.363249 +25040 546 278 1365002 633125 0.527 0.244 38.126501 -81.235109 +25043 1659 890 309380149 1908140 119.452 0.737 38.424883 -81.006644 +25044 384 173 38017324 166407 14.679 0.064 37.911676 -81.368705 +25045 5801 2667 373940549 1737755 144.379 0.671 38.457263 -81.331794 +25047 411 181 19726215 168809 7.616 0.065 37.920527 -81.767625 +25048 38 23 68930 0 0.027 0.000 37.945828 -81.437333 +25049 630 262 40330045 83833 15.572 0.032 38.115290 -81.558223 +25051 164 75 1158527 22453 0.447 0.009 38.156947 -81.709791 +25053 4296 1933 121814413 423256 47.033 0.163 38.036791 -81.878882 +25054 426 182 43235959 145852 16.693 0.056 38.107389 -81.488643 +25057 337 158 2358981 287067 0.911 0.111 38.120375 -81.253436 +25059 678 291 27904235 4346 10.774 0.002 38.234940 -81.208855 +25060 618 276 64599708 275094 24.942 0.106 37.944540 -81.427325 +25061 756 327 26092525 127012 10.074 0.049 38.165182 -81.436542 +25062 230 108 8222394 22413 3.175 0.009 37.880313 -81.432653 +25063 1797 975 224631261 1155539 86.731 0.446 38.574617 -80.930807 +25064 9962 5102 17737460 1146814 6.848 0.443 38.377251 -81.748460 +25067 1120 525 14028089 629180 5.416 0.243 38.201537 -81.442911 +25070 1683 723 12091749 435180 4.669 0.168 38.545843 -81.931687 +25071 11697 5237 267777665 1530387 103.390 0.591 38.473561 -81.468452 +25075 976 421 141444354 212648 54.612 0.082 38.059716 -81.405170 +25076 298 128 21134306 7238 8.160 0.003 37.868750 -81.931094 +25081 1251 498 36452849 1687 14.075 0.001 38.075052 -81.754659 +25082 1673 773 135547580 2019207 52.335 0.780 38.604207 -82.031043 +25083 672 299 72510211 450603 27.996 0.174 38.069889 -81.367758 +25085 830 472 35883497 1074790 13.855 0.415 38.172681 -81.205401 +25086 928 361 1423150 557551 0.549 0.215 38.203982 -81.417350 +25088 164 80 40262267 59423 15.545 0.023 38.390103 -81.216286 +25090 203 104 3649430 648645 1.409 0.250 38.155129 -81.221003 +25093 207 98 19306518 2596 7.454 0.001 37.983077 -81.669509 +25102 349 156 2497413 248178 0.964 0.096 38.191015 -81.374818 +25103 366 184 10921842 410181 4.217 0.158 38.180779 -81.381150 +25106 642 310 42141046 1639932 16.271 0.633 38.788913 -82.083966 +25107 739 344 79542846 10415 30.712 0.004 38.229746 -81.621639 +25108 692 294 18791381 459 7.255 0.000 37.973603 -81.881159 +25109 661 295 2010914 440013 0.776 0.170 38.526763 -81.851908 +25110 599 287 57719180 146836 22.286 0.057 38.218430 -81.314979 +25111 694 322 79522145 124775 30.704 0.048 38.352883 -81.128837 +25112 166 0 85139 0 0.033 0.000 38.380263 -81.767141 +25113 957 449 82470156 973551 31.842 0.376 38.553543 -81.045750 +25114 557 266 29118534 61561 11.243 0.024 37.987328 -81.786334 +25115 90 48 20866626 1301279 8.057 0.502 38.122192 -81.182251 +25118 998 462 44089533 54342 17.023 0.021 38.111660 -81.305965 +25119 444 189 30592880 153993 11.812 0.059 38.041387 -81.276260 +25121 972 431 43105563 0 16.643 0.000 37.916211 -81.897277 +25123 3535 1748 308724990 2452979 119.199 0.947 38.730175 -81.900044 +25124 1214 556 77200736 10851 29.807 0.004 38.622490 -81.778935 +25125 1011 462 69717154 8154 26.918 0.003 38.315316 -81.206095 +25126 58 33 253087 27817 0.098 0.011 38.203247 -81.372605 +25130 3846 1777 58619413 445878 22.633 0.172 38.033022 -81.752254 +25132 276 125 47171775 9284 18.213 0.004 38.293784 -81.344305 +25133 922 420 41269738 8146 15.934 0.003 38.477099 -81.145070 +25134 423 223 19703646 88040 7.608 0.034 38.162811 -81.490597 +25136 1798 933 22283481 585035 8.604 0.226 38.150173 -81.327319 +25139 440 183 1432286 442737 0.553 0.171 38.137583 -81.291458 +25140 1012 520 145360926 389030 56.124 0.150 37.839918 -81.498507 +25141 195 98 14837949 1327 5.729 0.001 38.626822 -81.025297 +25142 416 190 11030773 42958 4.259 0.017 38.153554 -81.729882 +25143 8579 4134 22706211 1828943 8.767 0.706 38.418739 -81.822335 +25148 332 145 10032992 168138 3.874 0.065 38.045592 -81.561724 +25149 242 116 23073046 135371 8.909 0.052 37.944536 -81.758598 +25152 368 173 9158188 15127 3.536 0.006 38.059904 -81.248356 +25154 868 379 48020979 116517 18.541 0.045 38.121560 -81.707413 +25156 105 64 654477 691475 0.253 0.267 38.183259 -81.336855 +25159 5163 2179 91256277 1702120 35.234 0.657 38.523467 -81.788635 +25160 303 135 15438225 3124 5.961 0.001 38.282184 -81.272589 +25161 369 151 29220522 2927 11.282 0.001 38.052718 -81.318687 +25162 571 261 714800 124726 0.276 0.048 38.207558 -81.387342 +25164 1257 656 78416863 1182105 30.277 0.456 38.498552 -81.207800 +25165 612 289 10343348 122283 3.994 0.047 38.146029 -81.649431 +25168 2503 1108 83462079 1134756 32.225 0.438 38.560349 -81.879850 +25169 516 217 48945681 8307 18.898 0.003 38.175825 -81.789840 +25173 452 211 38768753 57130 14.969 0.022 38.091155 -81.229776 +25174 420 177 25581207 40121 9.877 0.015 37.865665 -81.410965 +25177 24084 11249 77784063 2526382 30.033 0.975 38.367284 -81.848331 +25180 83 41 8760874 13141 3.383 0.005 37.790226 -81.436523 +25181 1853 810 164444013 630851 63.492 0.244 38.049290 -81.641200 +25183 73 29 39482200 138910 15.244 0.054 37.926266 -81.801751 +25185 1042 0 178917 0 0.069 0.000 38.235187 -81.238016 +25186 881 507 23112924 560772 8.924 0.217 38.187353 -81.271384 +25187 719 370 106052340 1231248 40.947 0.475 38.722230 -82.025382 +25193 477 239 56064310 236625 21.647 0.091 38.035460 -81.507099 +25201 55 29 157383 0 0.061 0.000 38.335613 -81.490465 +25202 1370 548 29583087 403929 11.422 0.156 38.316375 -81.859088 +25203 89 31 4120369 0 1.591 0.000 38.015993 -81.882308 +25204 211 122 55997754 118991 21.621 0.046 37.925321 -81.614560 +25205 391 160 14304681 45834 5.523 0.018 38.019487 -81.793006 +25206 601 278 37165595 131706 14.350 0.051 37.994524 -81.697022 +25208 992 444 198022190 303434 76.457 0.117 37.849324 -81.634038 +25209 1227 639 69872781 381361 26.978 0.147 37.952993 -81.519903 +25211 135 64 20636477 99069 7.968 0.038 38.468707 -80.888472 +25213 5512 2306 92822649 3453100 35.839 1.333 38.512666 -81.913305 +25214 614 280 32768262 17674 12.652 0.007 38.187702 -81.538235 +25234 1200 598 119672522 702067 46.206 0.271 38.811456 -81.138257 +25235 949 419 88816125 8981 34.292 0.003 38.669541 -81.089455 +25239 1732 816 67467347 616405 26.049 0.238 38.838660 -81.846681 +25241 1710 756 56861411 336509 21.954 0.130 38.787975 -81.810031 +25243 899 444 122508290 0 47.301 0.000 38.686717 -81.479468 +25244 732 329 76305581 147825 29.462 0.057 38.767566 -81.550872 +25245 739 341 76411275 42951 29.503 0.017 38.697420 -81.755385 +25247 509 319 5352428 1074357 2.067 0.415 39.006264 -82.005535 +25248 3090 1361 190379508 112196 73.506 0.043 38.640588 -81.619887 +25251 429 204 38453831 0 14.847 0.000 38.620525 -81.236323 +25252 1071 540 152185630 182738 58.759 0.071 38.950961 -81.511177 +25253 2051 935 122613656 4560037 47.341 1.761 38.921064 -81.961490 +25259 699 349 98230825 0 37.927 0.000 38.673526 -81.251761 +25260 1577 918 7080183 1661016 2.734 0.641 39.003812 -82.031908 +25261 335 165 27954102 7453 10.793 0.003 38.821662 -81.080487 +25262 898 401 19284148 2475582 7.446 0.956 38.907802 -81.826041 +25264 441 220 17003872 1273776 6.565 0.492 38.859916 -81.893892 +25265 1564 769 4356202 1348686 1.682 0.521 38.986711 -81.958043 +25266 797 400 97845588 0 37.778 0.000 38.605981 -81.162323 +25267 758 441 174545695 791111 67.392 0.305 38.833597 -80.940896 +25268 871 458 102473739 58919 39.565 0.023 38.725109 -81.076324 +25270 972 471 103208542 1538 39.849 0.001 38.854429 -81.428712 +25271 9304 4220 252954192 1478678 97.666 0.571 38.786153 -81.685743 +25275 2287 1058 166875302 423996 64.431 0.164 38.921509 -81.610584 +25276 7752 3789 440208942 403142 169.966 0.156 38.781913 -81.328784 +25285 595 268 28892154 5080 11.155 0.002 38.539646 -81.101540 +25286 1692 853 178406908 0 68.883 0.000 38.615199 -81.407985 +25287 1272 325 49249648 3101269 19.015 1.197 38.954715 -82.051426 +25301 2771 1904 2835823 236631 1.095 0.091 38.350719 -81.630359 +25302 15078 8016 31650322 693219 12.220 0.268 38.393184 -81.595470 +25303 7112 3557 9121644 1264278 3.522 0.488 38.359561 -81.686130 +25304 8773 4150 26486664 1103689 10.227 0.426 38.306034 -81.593204 +25305 0 0 202349 0 0.078 0.000 38.337629 -81.612742 +25306 6417 3057 96429454 852796 37.232 0.329 38.312518 -81.499405 +25309 13356 6176 91503803 415651 35.330 0.160 38.308648 -81.749531 +25311 10815 5671 73178520 815270 28.254 0.315 38.366857 -81.557024 +25312 14886 6922 182487881 834252 70.459 0.322 38.448407 -81.659337 +25313 13436 6139 53880136 139572 20.803 0.054 38.422404 -81.757545 +25314 14542 6752 65148639 274372 25.154 0.106 38.308045 -81.640231 +25315 3255 1616 19326605 684853 7.462 0.264 38.222275 -81.560333 +25320 6084 2722 181055810 801879 69.906 0.310 38.539853 -81.633180 +25401 14622 6970 15187751 42877 5.864 0.017 39.456903 -77.972754 +25403 12591 4980 96698569 4287 37.336 0.002 39.474850 -78.011639 +25404 19551 8584 103651805 154583 40.020 0.060 39.483025 -77.890325 +25405 12029 4628 53912029 0 20.816 0.000 39.409179 -77.961532 +25411 12633 6579 363770054 199588 140.452 0.077 39.548748 -78.221470 +25413 7508 3067 57819472 14686 22.324 0.006 39.310588 -78.055948 +25414 17024 7008 141466646 1898126 54.621 0.733 39.242438 -77.866234 +25419 9251 4063 45509458 11983 17.571 0.005 39.575953 -77.895405 +25420 4024 1670 72473870 0 27.982 0.000 39.381565 -78.115041 +25422 1700 1728 181202866 1310898 69.963 0.506 39.544988 -78.354289 +25425 12835 5603 104227205 3241634 40.242 1.252 39.307386 -77.770147 +25427 14322 6882 352030917 828118 135.920 0.320 39.520704 -78.085289 +25428 10776 4231 59597168 17623 23.011 0.007 39.380635 -78.022210 +25430 8112 3156 123959752 55145 47.861 0.021 39.340972 -77.939311 +25431 453 307 37569700 232772 14.506 0.090 39.487274 -78.571804 +25432 121 54 2129722 0 0.822 0.000 39.305755 -77.784290 +25434 2521 1612 176463135 1587052 68.133 0.613 39.454503 -78.448570 +25437 212 128 29054751 77994 11.218 0.030 39.427797 -78.570489 +25438 6266 2697 23007462 2841 8.883 0.001 39.318363 -77.863135 +25442 1925 737 36789844 0 14.205 0.000 39.370206 -77.832590 +25443 7445 2907 71174161 76934 27.480 0.030 39.435389 -77.814724 +25444 605 349 50538567 277642 19.513 0.107 39.412854 -78.523889 +25446 1463 567 39860057 0 15.390 0.000 39.241562 -77.953418 +25501 1130 524 64755315 13036 25.002 0.005 38.153886 -81.969643 +25502 1034 498 55996213 581242 21.620 0.224 38.656399 -82.117158 +25503 729 350 39550759 1829498 15.271 0.706 38.612591 -82.120957 +25504 12661 5452 128454325 1308221 49.596 0.505 38.377182 -82.268103 +25505 477 210 5803500 95450 2.241 0.037 38.012336 -82.031411 +25506 5037 2361 269565316 1338081 104.080 0.517 38.204720 -82.187020 +25507 987 481 1750509 128116 0.676 0.049 38.395279 -82.563009 +25508 9837 4493 201488775 711988 77.795 0.275 37.964118 -82.021985 +25510 5074 2213 84198909 169017 32.509 0.065 38.382297 -82.082925 +25511 1092 520 236557902 2318956 91.336 0.895 38.051116 -82.335065 +25512 1237 631 124596063 143692 48.107 0.055 38.184728 -82.327278 +25514 4024 1836 180454645 1837062 69.674 0.709 38.100290 -82.528669 +25515 2335 1131 116478548 8270475 44.973 3.193 38.756595 -82.146860 +25517 2071 875 105565433 60706 40.759 0.023 38.108275 -82.443166 +25520 1561 734 102241815 1852690 39.476 0.715 38.561148 -82.182864 +25521 1101 486 80051015 16010 30.908 0.006 38.219782 -81.999378 +25523 2647 1267 108583194 411976 41.924 0.159 38.278741 -82.049129 +25524 3486 1543 249533419 481885 96.345 0.186 38.021447 -82.117505 +25526 21902 9047 237898732 659784 91.853 0.255 38.394397 -81.991274 +25529 1013 415 53429142 525389 20.629 0.203 38.152577 -81.846879 +25530 5877 2750 39388540 2112094 15.208 0.815 38.358380 -82.576287 +25534 282 164 60322999 2336360 23.291 0.902 38.084336 -82.274991 +25535 2783 1228 46343935 1045645 17.893 0.404 38.308576 -82.434831 +25537 1993 925 55003138 7166396 21.237 2.767 38.533383 -82.281971 +25540 290 137 32609808 51000 12.591 0.020 38.182605 -82.156474 +25541 9350 4179 181207869 648845 69.965 0.251 38.478647 -82.129153 +25545 4512 1872 72109917 564776 27.842 0.218 38.458992 -82.217439 +25547 969 457 19993800 205177 7.720 0.079 37.916034 -81.965478 +25550 9077 4270 127517348 5622254 49.235 2.171 38.865370 -82.071149 +25555 2325 1027 87965372 1195355 33.964 0.462 38.213946 -82.549929 +25557 1754 811 116865757 777188 45.122 0.300 38.105832 -82.171951 +25559 2152 941 52747892 504398 20.366 0.195 38.325152 -82.229426 +25560 7997 3260 60143453 526911 23.222 0.203 38.445477 -81.897836 +25564 1250 527 56479613 82081 21.807 0.032 38.272119 -81.901029 +25565 651 288 89346624 2013 34.497 0.001 38.102343 -81.964488 +25567 924 409 43654788 184024 16.855 0.071 38.215980 -81.870029 +25570 6640 2903 202580200 1831147 78.217 0.707 38.218908 -82.425254 +25571 2206 987 60584721 274669 23.392 0.106 38.313063 -82.155826 +25573 970 435 28794132 4324 11.117 0.002 38.232038 -81.942479 +25601 5206 2576 51242955 628704 19.785 0.243 37.862785 -82.009289 +25606 964 399 18207274 37517 7.030 0.014 37.765011 -81.819761 +25607 1140 480 25117494 123459 9.698 0.048 37.784925 -81.784110 +25608 1004 483 35554299 0 13.728 0.000 37.574102 -81.889362 +25611 682 287 10177221 88655 3.929 0.034 37.690560 -81.853229 +25617 999 451 43975251 134137 16.979 0.052 37.721068 -81.778250 +25621 2155 1048 118180344 1118305 45.630 0.432 37.626952 -81.941894 +25624 480 222 2920224 108090 1.128 0.042 37.900678 -81.981631 +25625 1452 550 38405791 4925 14.829 0.002 37.819353 -82.081279 +25628 539 250 5505123 30279 2.126 0.012 37.768193 -81.862489 +25630 683 276 60038073 73816 23.181 0.029 37.790345 -81.680696 +25632 834 375 63392249 656343 24.476 0.253 37.729913 -81.923925 +25634 771 309 13841017 85393 5.344 0.033 37.735864 -81.840590 +25635 1227 552 36022465 362380 13.908 0.140 37.707105 -81.885984 +25637 936 486 9304873 996 3.593 0.000 37.861769 -82.029476 +25638 1148 511 87557461 122380 33.806 0.047 37.758844 -81.990581 +25639 608 313 17942525 73419 6.928 0.028 37.881353 -81.958345 +25644 536 221 31888681 5702 12.312 0.002 37.715308 -82.030507 +25646 940 470 55978171 365957 21.613 0.141 37.847292 -81.883997 +25647 768 386 8267287 79857 3.192 0.031 37.786805 -81.984419 +25649 1397 660 28557557 5157 11.026 0.002 37.875432 -82.093093 +25650 547 259 63017776 452181 24.331 0.175 37.670367 -81.819109 +25651 737 333 65143566 161067 25.152 0.062 37.602972 -81.986941 +25652 1608 677 43766514 16056 16.898 0.006 37.790733 -82.045124 +25653 459 222 4661182 30430 1.800 0.012 37.828964 -81.998297 +25654 310 100 30706652 244942 11.856 0.095 37.795758 -81.874067 +25661 6837 3506 150761976 0 58.210 0.000 37.736166 -82.273926 +25666 654 283 73739949 0 28.471 0.000 37.926751 -82.248854 +25669 887 374 52866221 50211 20.412 0.019 37.932136 -82.391502 +25670 5829 2641 242903924 22089 93.786 0.009 37.721151 -82.158993 +25671 1286 580 81575525 0 31.496 0.000 37.883864 -82.191926 +25672 408 180 22192079 0 8.568 0.000 37.581336 -82.113087 +25674 3202 1379 116383448 0 44.936 0.000 37.868833 -82.351577 +25676 1250 526 76000579 91753 29.344 0.035 37.837064 -82.194528 +25678 1595 834 65617284 0 25.335 0.000 37.590304 -82.065234 +25688 448 184 12051970 0 4.653 0.000 37.621295 -82.119118 +25690 249 113 4544135 0 1.755 0.000 37.689780 -82.124445 +25692 1021 462 25688146 0 9.918 0.000 37.636278 -82.109744 +25696 295 143 5086814 0 1.964 0.000 37.679044 -82.115919 +25699 200 77 38240230 0 14.765 0.000 37.961653 -82.332550 +25701 23284 12666 92051658 932017 35.541 0.360 38.365689 -82.405250 +25702 7788 4004 30143680 4020593 11.639 1.552 38.434637 -82.314467 +25703 6751 2518 3089403 390885 1.193 0.151 38.424103 -82.418349 +25704 16441 7864 83673261 4870112 32.306 1.880 38.307571 -82.487372 +25705 20711 9975 30990944 403764 11.966 0.156 38.404576 -82.360178 +25801 33590 16078 213919453 1680466 82.595 0.649 37.822695 -81.265887 +25810 261 119 6123845 104677 2.364 0.040 37.596659 -81.349299 +25811 154 82 16809702 70627 6.490 0.027 37.558776 -81.291608 +25812 1902 929 48795349 362189 18.840 0.140 38.181993 -81.122676 +25813 8063 2552 155260311 1214586 59.946 0.469 37.761850 -81.101860 +25817 784 338 29142726 126615 11.252 0.049 37.758427 -81.397479 +25818 472 250 1314197 1906 0.507 0.001 37.860275 -81.191991 +25820 437 211 79007278 141951 30.505 0.055 37.511710 -81.163015 +25823 2176 980 36262669 99922 14.001 0.039 37.660654 -81.208062 +25825 2390 1079 67136068 421395 25.921 0.163 37.644069 -81.083912 +25826 296 121 549751 18084 0.212 0.007 37.576034 -81.358190 +25827 2488 1159 16511758 30541 6.375 0.012 37.739104 -81.252549 +25831 1421 731 154783549 505197 59.762 0.195 37.959313 -80.930792 +25832 3994 1848 31172767 186580 12.036 0.072 37.715225 -81.118980 +25836 488 232 5009982 10808 1.934 0.004 37.774944 -81.278687 +25837 391 177 14128689 14271 5.455 0.006 38.052767 -81.010679 +25839 691 300 8706326 45393 3.362 0.018 37.777777 -81.386631 +25840 8179 3683 187077506 2321502 72.231 0.896 38.043167 -81.124702 +25841 575 300 89900318 163203 34.711 0.063 37.556241 -81.093014 +25843 791 562 36501137 894959 14.093 0.346 37.610325 -81.118224 +25844 1417 620 31605877 78838 12.203 0.030 37.806236 -81.385805 +25845 627 264 14605154 38322 5.639 0.015 37.695336 -81.525185 +25846 363 174 33861450 35829 13.074 0.014 37.900972 -81.131900 +25848 443 216 22595256 9281 8.724 0.004 37.718151 -81.428283 +25849 266 125 1311070 234 0.506 0.000 37.730117 -81.279993 +25853 182 79 1668498 310 0.644 0.000 37.640411 -81.312103 +25854 1101 538 94708864 698918 36.567 0.270 38.136747 -80.979861 +25855 209 41 541374 3213 0.209 0.001 37.936810 -81.156453 +25857 308 143 56044917 19277 21.639 0.007 37.644269 -81.281591 +25862 266 160 11246232 10295 4.342 0.004 38.085516 -81.061427 +25864 309 172 59059600 355040 22.803 0.137 37.876046 -81.036063 +25865 1475 651 65884741 85300 25.438 0.033 37.711545 -81.363019 +25868 432 215 32740252 17343 12.641 0.007 38.071925 -80.966134 +25870 103 44 585331 28683 0.226 0.011 37.630167 -81.389341 +25871 695 347 1046665 0 0.404 0.000 37.769825 -81.210442 +25873 607 307 1798964 4051 0.695 0.002 37.750066 -81.213823 +25875 486 189 22508899 1330 8.691 0.001 37.679115 -81.460797 +25876 128 57 10878994 12293 4.200 0.005 37.631101 -81.449139 +25878 930 425 5270701 21442 2.035 0.008 37.715436 -81.229778 +25879 359 179 4207801 5583 1.625 0.002 37.983155 -81.105957 +25880 6928 3199 102307368 101557 39.501 0.039 37.878948 -81.207573 +25882 2033 1045 84389630 295384 32.583 0.114 37.632143 -81.393396 +25901 11920 5649 85063880 1013209 32.843 0.391 37.950702 -81.117050 +25902 420 193 72133183 45103 27.851 0.017 37.569831 -81.217430 +25904 365 168 17820375 23145 6.880 0.009 37.928295 -81.283508 +25906 287 136 3547206 20938 1.370 0.008 37.836873 -81.114415 +25907 123 85 4823492 501464 1.862 0.194 37.856017 -81.086212 +25908 172 94 18489653 6274 7.139 0.002 37.675320 -81.247167 +25911 55 46 85549 8851 0.033 0.003 37.758075 -81.167130 +25913 397 159 17229027 0 6.652 0.000 37.714061 -81.489465 +25915 311 174 23520763 37801 9.081 0.015 37.590135 -81.291226 +25916 202 91 5031733 0 1.943 0.000 37.675614 -81.498056 +25917 2139 1008 116114994 801395 44.832 0.309 37.991116 -81.218450 +25918 4430 1959 174528935 1877176 67.386 0.725 37.751991 -80.996992 +25920 221 97 13123190 5204 5.067 0.002 37.688993 -81.333946 +25921 2157 1059 41618441 87676 16.069 0.034 37.672265 -81.314129 +25922 299 128 11914754 248495 4.600 0.096 37.465967 -81.105042 +25928 375 181 30101138 100141 11.622 0.039 37.558117 -81.332526 +25932 339 133 10112292 10913 3.904 0.004 37.752260 -81.299605 +25936 43 62 37680293 1502141 14.548 0.580 37.923452 -81.039103 +25938 1287 598 84180109 992359 32.502 0.383 38.153070 -81.046855 +25942 162 77 33083922 224691 12.774 0.087 38.015920 -80.982514 +25951 6208 3717 279093796 9000035 107.759 3.475 37.662049 -80.866432 +25958 851 459 59007024 395591 22.783 0.153 38.022833 -80.750010 +25962 3806 1989 225999837 944667 87.259 0.365 37.983320 -80.808752 +25969 973 527 75921297 412916 29.313 0.159 37.617988 -81.001928 +25971 1130 739 52506984 183127 20.273 0.071 37.477422 -80.977447 +25972 299 151 10432868 20375 4.028 0.008 38.035706 -80.746123 +25976 2663 1362 233343103 1242747 90.094 0.480 37.849538 -80.845059 +25977 155 101 12734903 400486 4.917 0.155 37.798478 -80.903302 +25978 606 303 30253427 1118797 11.681 0.432 37.620672 -80.945014 +25979 893 542 120196641 4704104 46.408 1.816 37.510942 -80.913482 +25981 951 511 153113052 135603 59.117 0.052 38.097057 -80.711083 +25984 1886 958 127287923 677763 49.146 0.262 38.029233 -80.597366 +25985 430 243 91790461 164772 35.440 0.064 37.780600 -80.813137 +25989 280 123 6223188 178067 2.403 0.069 37.680938 -81.069851 +26003 43002 20880 245440446 8838945 94.765 3.413 40.069718 -80.645756 +26030 516 254 2169733 1045561 0.838 0.404 40.220204 -80.656282 +26031 1755 906 7087716 1458881 2.737 0.563 40.009395 -80.729265 +26032 1243 292 31226728 288999 12.057 0.112 40.192522 -80.540472 +26033 3044 1680 240993303 794768 93.048 0.307 39.830278 -80.578052 +26034 4905 2378 39204086 3186767 15.137 1.230 40.598473 -80.552334 +26035 2491 1071 46694641 957954 18.029 0.370 40.344930 -80.553545 +26036 425 214 29193725 77997 11.272 0.030 39.983046 -80.546742 +26037 6642 3041 17529587 1474457 6.768 0.569 40.335562 -80.584518 +26038 2855 1348 17088371 1558420 6.598 0.602 39.964591 -80.724103 +26039 1061 562 101619814 575953 39.236 0.222 39.799369 -80.674066 +26040 2103 1045 6009187 686672 2.320 0.265 39.988572 -80.715944 +26041 16183 7511 158952007 5193027 61.372 2.005 39.887229 -80.705474 +26047 6222 2880 110946815 3290075 42.837 1.270 40.520184 -80.589222 +26050 1575 768 7515128 5209275 2.902 2.011 40.607741 -80.607637 +26055 1756 857 190390468 7289129 73.510 2.814 39.754300 -80.782572 +26056 93 41 300056 0 0.116 0.000 40.531275 -80.577127 +26059 3082 1348 63644493 206212 24.573 0.080 40.057391 -80.604824 +26060 1881 831 61494455 130828 23.743 0.051 40.108313 -80.556795 +26062 21801 10532 71888233 3131990 27.756 1.209 40.426703 -80.560680 +26070 8441 3895 95737239 3014365 36.964 1.164 40.256898 -80.585563 +26074 1184 230 4260561 7888 1.645 0.003 40.155460 -80.591103 +26075 505 225 3527992 983378 1.362 0.380 40.193433 -80.668044 +26101 29999 14314 76426643 5109757 29.508 1.973 39.240324 -81.575872 +26104 16769 8044 96234378 530399 37.156 0.205 39.276141 -81.480363 +26105 12333 5905 32418567 2627871 12.517 1.015 39.329575 -81.514622 +26133 1415 623 101594399 2454521 39.226 0.948 39.123282 -81.672414 +26134 888 393 5470035 3379739 2.112 1.305 39.368717 -81.290434 +26136 644 368 69301101 748755 26.757 0.289 38.961575 -81.140697 +26137 939 529 135618308 55706 52.363 0.022 38.995599 -81.049373 +26138 127 74 13792941 259 5.325 0.000 39.023425 -81.206015 +26141 364 242 87758758 851798 33.884 0.329 38.933552 -81.245880 +26142 2574 1074 32864458 461173 12.689 0.178 39.206170 -81.447740 +26143 4547 2520 377141897 3457803 145.615 1.335 39.056426 -81.372678 +26146 1003 665 102311753 1160911 39.503 0.448 39.457065 -81.036844 +26147 2188 1157 119447875 1412766 46.119 0.545 38.904543 -81.075390 +26148 245 217 46248568 313619 17.857 0.121 39.060098 -81.182637 +26149 2452 1347 193046357 943440 74.536 0.364 39.483305 -80.825642 +26150 6309 2646 119947237 706061 46.312 0.273 39.157283 -81.535898 +26151 558 298 63490285 517139 24.514 0.200 38.879558 -81.172577 +26152 56 25 4702285 0 1.816 0.000 39.010062 -81.195907 +26155 8823 4311 306083784 5901953 118.180 2.279 39.630056 -80.763963 +26159 2745 1313 4372666 171129 1.688 0.066 39.600493 -80.928812 +26160 960 534 169463749 1576682 65.430 0.609 38.981202 -81.412057 +26161 480 333 124401455 616000 48.032 0.238 39.176689 -81.254683 +26164 8262 3833 276804355 11793751 106.875 4.554 39.010704 -81.701211 +26167 865 397 46715167 356151 18.037 0.138 39.538939 -80.743385 +26169 842 378 68967019 21890 26.628 0.008 39.072207 -81.571590 +26170 6137 2673 271673491 7600639 104.894 2.935 39.358134 -81.171268 +26175 3326 1668 116574200 8299558 45.010 3.204 39.537188 -80.974745 +26178 587 402 107339837 496579 41.444 0.192 39.058252 -81.038103 +26180 2284 1049 167695707 1078101 64.748 0.416 39.195010 -81.366571 +26181 6127 2560 98654763 7079278 38.091 2.733 39.210705 -81.666373 +26184 2361 977 100677568 368279 38.872 0.142 39.294993 -81.352720 +26187 5982 2675 52337725 6968401 20.208 2.691 39.373250 -81.447125 +26201 19701 8703 464579408 441936 179.375 0.171 39.003136 -80.199199 +26202 641 316 36125404 295168 13.948 0.114 38.215347 -80.639652 +26203 198 119 65477242 149641 25.281 0.058 38.548465 -80.587756 +26205 3690 1712 67077917 930854 25.899 0.359 38.326803 -80.650399 +26206 2976 1453 191261964 1186308 73.847 0.458 38.437440 -80.522355 +26208 973 500 217248722 1711690 83.880 0.661 38.323423 -80.505406 +26209 112 2067 73064083 25017 28.210 0.010 38.428758 -79.988943 +26215 167 99 25052315 56282 9.673 0.022 38.707125 -80.374966 +26217 354 284 71254004 288787 27.511 0.112 38.614266 -80.445436 +26218 2583 1307 171405813 0 66.180 0.000 38.844938 -80.266223 +26222 454 358 196084319 202778 75.709 0.078 38.658384 -80.366012 +26224 221 187 88537671 0 34.185 0.000 38.740310 -80.182939 +26228 109 55 23526138 0 9.083 0.000 38.754405 -80.370949 +26230 124 149 121216222 34444 46.802 0.013 38.671841 -80.175635 +26234 1454 812 137407333 0 53.053 0.000 38.773784 -80.315110 +26236 29 27 641559 0 0.248 0.000 38.744665 -80.234661 +26237 571 302 101595292 0 39.226 0.000 38.845411 -80.150680 +26238 739 363 56428225 10738 21.787 0.004 39.108642 -80.173971 +26241 14591 6929 335163400 350399 129.407 0.135 38.929499 -79.791319 +26250 5570 2364 227785099 818721 87.948 0.316 39.033465 -79.962538 +26253 3490 1628 178649519 43257 68.977 0.017 38.781087 -79.867783 +26254 303 217 169970789 37504 65.626 0.014 38.880658 -79.662794 +26257 957 393 49381849 0 19.066 0.000 38.919170 -80.003647 +26259 176 95 5091490 0 1.966 0.000 38.802897 -79.896058 +26260 1377 2068 407730358 513764 157.426 0.198 39.082330 -79.424054 +26261 2701 1634 255575404 1358198 98.678 0.524 38.202669 -80.544967 +26263 316 351 79050932 0 30.522 0.000 38.948910 -79.437597 +26264 642 455 269199097 0 103.938 0.000 38.575718 -79.827132 +26266 252 113 10349753 62080 3.996 0.024 38.411676 -80.476414 +26267 369 166 61515533 0 23.751 0.000 38.947718 -80.091877 +26268 82 190 160149939 0 61.834 0.000 38.748961 -79.738897 +26269 1018 483 54213667 560403 20.932 0.216 39.105610 -79.620053 +26270 755 490 198035813 0 76.462 0.000 38.863204 -79.578017 +26271 383 259 82741480 18364 31.947 0.007 39.034668 -79.558859 +26273 2041 500 328830477 11999 126.962 0.005 38.624955 -79.967506 +26275 744 318 10640797 197728 4.108 0.076 38.976177 -79.951043 +26276 356 179 39078053 106429 15.088 0.041 39.025525 -79.772894 +26278 591 268 158961733 0 61.375 0.000 38.825391 -80.030528 +26280 1710 811 179271169 0 69.217 0.000 38.729613 -80.029516 +26282 60 84 141936946 0 54.802 0.000 38.521675 -80.162470 +26283 1734 945 155308309 142801 59.965 0.055 39.062858 -79.812580 +26285 304 153 27698199 0 10.694 0.000 38.912935 -79.937516 +26287 3131 1811 393585687 4179371 151.964 1.614 39.166658 -79.688696 +26288 3603 2408 595907379 3849218 230.081 1.486 38.512693 -80.346995 +26291 165 156 163023602 0 62.944 0.000 38.394596 -80.154407 +26292 836 467 42937904 116997 16.578 0.045 39.141915 -79.533672 +26293 600 282 15205151 0 5.871 0.000 38.782444 -79.935790 +26294 729 557 204748382 0 79.054 0.000 38.531451 -80.034309 +26296 177 122 115982208 103578 44.781 0.040 38.764460 -79.553560 +26298 96 84 28739804 49560 11.097 0.019 38.471041 -80.253444 +26301 30435 14313 192146611 44883 74.188 0.017 39.301498 -80.393977 +26320 1000 627 145055298 960819 56.006 0.371 39.404013 -80.812350 +26321 354 202 64288455 319349 24.822 0.123 39.046486 -80.674599 +26323 602 274 2945965 0 1.137 0.000 39.262588 -80.290610 +26325 320 198 64849768 33404 25.039 0.013 39.098945 -80.904837 +26327 83 65 22233364 219492 8.584 0.085 39.122886 -80.942770 +26330 14377 6293 187382939 334912 72.349 0.129 39.285269 -80.220851 +26335 1378 693 122957387 1001302 47.474 0.387 38.843536 -80.684150 +26337 1218 743 167692652 646228 64.746 0.250 39.230234 -81.160994 +26338 629 327 102252733 154997 39.480 0.060 39.076885 -80.619541 +26339 255 159 54243700 4481 20.944 0.002 39.422189 -80.613994 +26342 509 279 124042254 190645 47.893 0.074 39.033601 -80.854830 +26343 445 264 54806764 120437 21.161 0.047 38.822230 -80.421981 +26346 972 480 72154994 209780 27.859 0.081 39.290022 -81.060068 +26347 2068 889 102155407 0 39.442 0.000 39.256558 -80.126099 +26348 196 95 32089531 1406 12.390 0.001 39.462602 -80.545355 +26349 132 58 1619980 0 0.625 0.000 39.235703 -80.130286 +26351 5120 1533 219368098 1703128 84.698 0.658 38.926223 -80.837520 +26354 11135 5035 261669237 7529846 101.031 2.907 39.348130 -80.031779 +26361 263 112 723362 0 0.279 0.000 39.366722 -80.317562 +26362 3378 1806 271612217 868253 104.870 0.335 39.152138 -81.065345 +26366 144 60 1033348 0 0.399 0.000 39.381255 -80.334489 +26369 762 330 3544055 0 1.368 0.000 39.333961 -80.331754 +26372 686 368 78883077 4267536 30.457 1.648 38.959145 -80.346629 +26374 1375 632 84591342 7211 32.661 0.003 39.452610 -79.879154 +26376 463 295 81478520 282739 31.459 0.109 38.784372 -80.453871 +26377 700 385 144702453 321335 55.870 0.124 39.496261 -80.647037 +26378 3820 1635 160969622 797098 62.151 0.308 39.121091 -80.437639 +26384 520 265 86898334 433431 33.552 0.167 38.981248 -80.706813 +26385 3872 1660 159612168 301417 61.627 0.116 39.159428 -80.355123 +26386 2411 1050 68537273 141975 26.462 0.055 39.395847 -80.405822 +26404 458 210 8796731 6373 3.396 0.002 39.335754 -80.306558 +26405 1179 602 136764948 1418593 52.805 0.548 39.225197 -79.910290 +26408 2852 1187 78220747 17546 30.201 0.007 39.196594 -80.306444 +26410 1037 510 59364840 22844 22.921 0.009 39.400820 -79.824426 +26411 707 411 190067376 340965 73.385 0.132 39.180080 -80.713340 +26412 546 300 118834488 788170 45.882 0.304 38.869275 -80.529764 +26415 4016 1751 265824161 918424 102.635 0.355 39.288302 -80.939200 +26416 7529 3498 356447750 1928556 137.625 0.745 39.157269 -80.023946 +26419 1131 564 96882595 516965 37.407 0.200 39.487689 -80.686390 +26421 262 141 43890326 25274 16.946 0.010 39.181955 -80.924287 +26422 606 265 8075780 0 3.118 0.000 39.294490 -80.443881 +26424 318 138 6513383 0 2.515 0.000 39.266882 -80.173598 +26425 1216 643 131043425 1810097 50.596 0.699 39.276594 -79.757831 +26426 7003 3198 342330557 437704 132.175 0.169 39.287032 -80.564431 +26430 466 217 31743119 184026 12.256 0.071 38.871117 -80.763594 +26431 5950 2767 96409962 36709 37.224 0.014 39.399028 -80.295345 +26435 98 40 391023 0 0.151 0.000 39.266587 -80.092281 +26436 204 85 6257505 68268 2.416 0.026 39.297412 -80.719495 +26437 645 334 83501047 18387 32.240 0.007 39.525977 -80.508946 +26438 176 81 151413 0 0.058 0.000 39.346605 -80.319108 +26440 1135 541 111299270 16129 42.973 0.006 39.321695 -79.918717 +26443 258 147 49560956 209115 19.136 0.081 39.075936 -80.753154 +26444 3639 1626 186840198 281843 72.139 0.109 39.363716 -79.770661 +26447 1055 537 165094693 4196397 63.743 1.620 38.908317 -80.475009 +26448 1421 603 97236304 16673 37.543 0.006 39.402814 -80.493319 +26451 685 306 3245562 0 1.253 0.000 39.207743 -80.402248 +26452 9676 4683 322934227 2254581 124.686 0.870 39.037122 -80.528230 +26456 3734 2059 391978051 1850168 151.344 0.714 39.262941 -80.774045 +26501 19616 8905 156032962 2318650 60.245 0.895 39.634230 -80.036833 +26505 38772 17781 33990087 830624 13.124 0.321 39.649954 -79.943818 +26508 29170 12705 315158376 8718065 121.683 3.366 39.602633 -79.895396 +26519 1836 867 167016248 913953 64.485 0.353 39.569184 -79.626971 +26520 778 372 5389858 0 2.081 0.000 39.496998 -79.823625 +26521 346 161 5814911 75527 2.245 0.029 39.711673 -80.225739 +26525 7064 2372 359694833 735612 138.879 0.284 39.653857 -79.626150 +26534 789 399 3479168 134917 1.343 0.052 39.648141 -80.001649 +26537 5721 2600 106877346 864375 41.266 0.334 39.488922 -79.712350 +26541 2624 1171 97850593 1263590 37.780 0.488 39.695021 -80.125254 +26542 2547 1221 93238463 754074 36.000 0.291 39.574706 -79.782823 +26543 252 141 2340223 30491 0.904 0.012 39.664628 -79.999923 +26547 2376 1007 38661524 485740 14.927 0.188 39.511738 -79.813851 +26554 41369 19466 350408858 5503471 135.294 2.125 39.465392 -80.109845 +26559 1269 584 1582041 83820 0.611 0.032 39.501274 -80.168209 +26560 227 99 535012 34834 0.207 0.013 39.541991 -80.146984 +26562 634 337 104073720 25062 40.183 0.010 39.638577 -80.468310 +26563 381 184 1518719 2045 0.586 0.001 39.482380 -80.273570 +26568 679 279 3411763 0 1.317 0.000 39.424890 -80.277841 +26570 3595 1563 174492560 313933 67.372 0.121 39.633933 -80.226841 +26571 1833 847 39248904 242660 15.154 0.094 39.526542 -80.261995 +26572 136 61 1184316 11193 0.457 0.004 39.486694 -80.307754 +26574 664 329 7262060 40169 2.804 0.016 39.588393 -80.188609 +26575 827 457 55736152 57401 21.520 0.022 39.677768 -80.441399 +26576 608 264 2265417 1619 0.875 0.001 39.493255 -80.256131 +26581 1104 557 126727920 267187 48.930 0.103 39.670691 -80.574747 +26582 5335 2448 259457343 617545 100.177 0.238 39.528793 -80.380088 +26585 479 259 61435401 37804 23.720 0.015 39.619189 -80.430619 +26586 209 86 1649198 103706 0.637 0.040 39.521960 -80.101624 +26587 432 183 3344079 89133 1.291 0.034 39.517883 -80.292761 +26588 2611 1213 71176823 1008131 27.482 0.389 39.582098 -80.145816 +26590 791 346 64622781 139002 24.951 0.054 39.669082 -80.312306 +26591 1511 697 36153966 291708 13.959 0.113 39.451607 -80.296284 +26601 4898 2363 339918368 7365030 131.243 2.844 38.617423 -80.626752 +26610 1090 532 145928241 330431 56.343 0.128 38.459204 -80.741752 +26611 224 117 29163581 267449 11.260 0.103 38.846104 -80.846298 +26615 245 120 29778833 14474 11.498 0.006 38.791186 -80.711975 +26617 187 112 19337780 996 7.466 0.000 38.501096 -80.832446 +26619 606 300 80414203 106990 31.048 0.041 38.751669 -80.705447 +26621 757 389 69912911 373369 26.994 0.144 38.713346 -80.543406 +26623 1189 618 150582771 644295 58.140 0.249 38.655481 -80.871616 +26624 2950 1511 189834785 722847 73.296 0.279 38.719427 -80.794837 +26627 447 242 51549922 269982 19.904 0.104 38.752473 -80.585065 +26629 309 137 17944933 72121 6.929 0.028 38.563670 -80.704268 +26631 352 252 66171934 1995186 25.549 0.770 38.811243 -80.537294 +26636 487 240 75233549 95169 29.048 0.037 38.743911 -80.958249 +26638 178 88 42137300 25408 16.269 0.010 38.767524 -81.015834 +26651 9650 4652 626825003 11698616 242.018 4.517 38.332558 -80.887236 +26656 401 177 23181378 350553 8.950 0.135 38.275784 -81.162670 +26660 255 119 15297587 32001 5.906 0.012 38.357600 -80.695718 +26662 1154 508 37964753 61149 14.658 0.024 38.271473 -80.742043 +26676 435 244 68910103 39807 26.606 0.015 38.160005 -80.647768 +26678 1247 578 37202625 565836 14.364 0.218 38.169609 -80.909681 +26679 1896 1137 136687212 2374728 52.775 0.917 38.169485 -80.800665 +26680 340 180 70383297 786977 27.175 0.304 38.093333 -80.872973 +26681 1486 689 93160084 545497 35.969 0.211 38.233199 -80.731681 +26684 116 54 4270492 2055 1.649 0.001 38.164963 -80.845681 +26690 584 265 74402694 1312246 28.727 0.507 38.175140 -81.089121 +26691 417 179 36467086 36818 14.080 0.014 38.395337 -80.658321 +26704 5663 2797 248428271 1056165 95.919 0.408 39.291551 -78.599287 +26705 1077 537 145530962 711123 56.190 0.275 39.324559 -79.584391 +26707 344 194 67905217 64688 26.218 0.025 39.216108 -79.395045 +26710 2133 1079 213572210 457255 82.461 0.177 39.301690 -78.967455 +26711 2655 1390 152083201 671085 58.720 0.259 39.283470 -78.469379 +26714 482 424 49505555 277312 19.114 0.107 39.188471 -78.655172 +26716 706 366 62187925 38672 24.011 0.015 39.252732 -79.529483 +26717 1170 549 108131425 1438792 41.750 0.556 39.334176 -79.182486 +26719 2785 1233 69576222 231722 26.864 0.089 39.482772 -78.774805 +26720 174 100 14987621 0 5.787 0.000 39.280293 -79.329586 +26722 599 404 55543378 667142 21.445 0.258 39.503126 -78.643193 +26726 13306 6096 378152145 1551307 146.005 0.599 39.403781 -78.984729 +26731 382 172 42760854 70079 16.510 0.027 39.168682 -79.074567 +26739 889 680 171028515 4738185 66.034 1.829 39.244131 -79.255092 +26743 1613 803 192565116 351804 74.350 0.136 39.293949 -79.075293 +26750 891 487 1146110 0 0.443 0.000 39.476642 -79.044670 +26753 6254 2826 66764842 49019 25.778 0.019 39.562746 -78.790215 +26755 833 540 114132259 116515 44.067 0.045 39.166189 -78.724462 +26757 6464 3316 362202029 2817249 139.847 1.088 39.311775 -78.745210 +26761 685 303 28472599 27844 10.993 0.011 39.272821 -78.694275 +26763 1540 1272 122214125 1502115 47.187 0.580 39.472525 -78.698319 +26764 4220 2352 230939968 426458 89.166 0.165 39.451931 -79.553174 +26767 768 385 6121465 0 2.364 0.000 39.615903 -78.757162 +26801 1118 739 189681554 236554 73.236 0.091 39.047799 -78.804288 +26802 1357 842 311278887 1736904 120.185 0.671 38.626845 -79.204429 +26804 709 430 216943703 696082 83.762 0.269 38.599317 -79.564487 +26807 2947 1820 455897001 924608 176.023 0.357 38.663020 -79.347015 +26808 967 476 51462388 295851 19.870 0.114 39.204897 -78.453266 +26810 329 414 83541903 433305 32.256 0.167 38.993302 -78.755302 +26812 1705 1273 267545097 168045 103.300 0.065 38.885787 -78.878037 +26814 415 276 162065887 274396 62.574 0.106 38.778567 -79.477829 +26815 646 515 217742844 327064 84.071 0.126 38.493516 -79.364475 +26817 443 223 51366646 482710 19.833 0.186 39.373862 -78.401808 +26818 709 292 50214636 107031 19.388 0.041 39.087725 -79.016431 +26823 198 132 55424595 36134 21.400 0.014 39.132607 -78.464071 +26833 2309 1107 312880978 1906866 120.804 0.736 39.088928 -79.220538 +26836 6578 3282 500422539 3109553 193.214 1.201 38.999713 -78.972336 +26845 898 463 90679356 674121 35.011 0.260 39.163318 -78.963319 +26847 6277 3200 316046143 199005 122.026 0.077 38.949140 -79.134534 +26851 2180 1351 281370733 1019523 108.638 0.394 39.047101 -78.611028 +26852 869 490 110283551 626448 42.581 0.242 39.246727 -78.896354 +26855 826 504 109663491 86759 42.341 0.033 38.948051 -79.269009 +26865 248 222 44239558 439074 17.081 0.170 39.205930 -78.512139 +26866 929 722 206727433 780889 79.818 0.302 38.800610 -79.234329 +26884 625 469 220189953 612725 85.016 0.237 38.906154 -79.391676 +27006 14150 6358 165351964 2807464 63.843 1.084 35.939004 -80.440264 +27007 2162 924 54972688 305603 21.225 0.118 36.389706 -80.588940 +27009 2647 1113 40885454 4480290 15.786 1.730 36.230931 -80.078657 +27011 5497 2608 137720300 1197156 53.174 0.462 36.216451 -80.698472 +27012 25461 10731 108494594 1600643 41.890 0.618 36.002681 -80.379125 +27013 6057 2562 195373700 295666 75.434 0.114 35.750492 -80.700079 +27014 840 407 1618473 48485 0.625 0.019 35.810044 -80.555743 +27016 1936 964 103491930 830192 39.958 0.321 36.446821 -80.219850 +27017 9597 4020 277781142 2790292 107.252 1.077 36.382016 -80.756218 +27018 7655 3472 212324418 2519281 81.979 0.973 36.197141 -80.518248 +27019 4032 1818 90794941 709162 35.056 0.274 36.286886 -80.237725 +27020 6421 2826 190225002 954685 73.446 0.369 36.102925 -80.804054 +27021 18106 7967 137817974 1313455 53.212 0.507 36.318059 -80.339273 +27022 1560 751 86149780 305542 33.263 0.118 36.512166 -80.215604 +27023 11873 4977 71895191 1597987 27.759 0.617 36.089764 -80.456727 +27024 2733 1379 114102457 464874 44.055 0.179 36.519237 -80.841179 +27025 11138 5055 254672730 1543536 98.330 0.596 36.379051 -79.969387 +27027 4385 2196 56571012 148797 21.842 0.057 36.441759 -79.988878 +27028 25839 11278 499537270 4728455 192.872 1.826 35.920228 -80.578522 +27030 38374 17735 441620720 2755346 170.511 1.064 36.490014 -80.629250 +27040 10893 4627 69138136 914924 26.694 0.353 36.169312 -80.393045 +27041 7554 3511 152784855 942288 58.991 0.364 36.425664 -80.486784 +27042 834 378 22308808 233459 8.613 0.090 36.350453 -80.062564 +27043 6615 3044 185563394 1845327 71.646 0.712 36.337246 -80.451911 +27045 8536 3828 60026851 177857 23.176 0.069 36.234398 -80.296070 +27046 2024 1014 105273495 336500 40.646 0.130 36.502219 -80.078264 +27047 1191 532 52606673 647600 20.312 0.250 36.316943 -80.572430 +27048 8609 3792 214951600 1085780 82.993 0.419 36.482516 -79.917678 +27050 3893 1727 64499009 537265 24.903 0.207 36.229963 -80.406485 +27051 7369 3197 47586660 104980 18.373 0.041 36.195940 -80.153395 +27052 10624 4919 271486085 8823253 104.821 3.407 36.318830 -80.150635 +27053 3007 1566 175045033 1008524 67.585 0.389 36.474276 -80.347850 +27054 2567 1050 75796439 105393 29.265 0.041 35.792540 -80.597888 +27055 14200 6227 276856922 1977783 106.895 0.764 36.113864 -80.631592 +27101 18901 9666 33046567 765162 12.759 0.295 36.111102 -80.200493 +27103 33208 16906 48068162 280858 18.559 0.108 36.058230 -80.321496 +27104 28485 14436 31921309 52877 12.325 0.020 36.095923 -80.321038 +27105 39568 17161 87369476 243537 33.734 0.094 36.162957 -80.234264 +27106 45015 21106 74226359 870519 28.659 0.336 36.143910 -80.323157 +27107 46963 18890 168444615 1457755 65.037 0.563 36.013158 -80.175491 +27109 2539 0 498745 0 0.193 0.000 36.133909 -80.277640 +27110 2127 0 488557 0 0.189 0.000 36.089260 -80.224960 +27127 34138 15310 77142347 565341 29.785 0.218 36.020077 -80.280122 +27201 63 35 342167 10102 0.132 0.004 36.034205 -79.484834 +27203 21108 9572 56702856 202496 21.893 0.078 35.727975 -79.786966 +27205 33216 13853 580477655 2278037 224.124 0.880 35.633598 -79.852391 +27207 3795 1714 220063310 688038 84.967 0.266 35.607613 -79.390517 +27208 1676 795 100626360 170092 38.852 0.066 35.563230 -79.542928 +27209 3933 1514 118260474 366468 45.661 0.141 35.343102 -79.753442 +27212 2580 702 125448452 333395 48.436 0.129 36.480076 -79.279650 +27214 10294 4143 124513773 6099633 48.075 2.355 36.209415 -79.670482 +27215 38807 18976 161282439 4765228 62.272 1.840 36.029833 -79.491610 +27217 36954 15633 319016251 9343257 123.173 3.607 36.190945 -79.380185 +27229 3929 1620 228273708 397790 88.137 0.154 35.265553 -79.775890 +27231 2148 962 94342950 1675763 36.426 0.647 36.207715 -79.169419 +27233 3390 1442 63384839 330358 24.473 0.128 35.892763 -79.705510 +27235 4136 1814 35107217 99676 13.555 0.038 36.089407 -80.012568 +27239 9079 4261 391503586 6018315 151.160 2.324 35.600845 -80.090334 +27242 2100 1031 139704483 637866 53.940 0.246 35.329799 -79.648525 +27243 4337 1837 102588768 708453 39.610 0.274 36.066916 -79.198148 +27244 14173 5049 130756709 1690070 50.485 0.653 36.212452 -79.488265 +27248 4524 1937 89263433 532576 34.465 0.206 35.783296 -79.716331 +27249 12486 5491 149330184 1974620 57.657 0.762 36.154141 -79.582389 +27252 2003 973 110975166 375493 42.848 0.145 35.566614 -79.349758 +27253 29827 13187 228143899 4774415 88.087 1.843 35.966209 -79.347414 +27258 6006 2628 44194615 591241 17.064 0.228 36.009543 -79.285685 +27260 24023 10903 31459460 117233 12.147 0.045 35.954467 -79.987882 +27262 23934 10802 34117466 16395 13.173 0.006 35.962642 -80.041638 +27263 21414 9382 100976225 1501864 38.987 0.580 35.910048 -79.937385 +27265 46690 20774 108586872 3505080 41.926 1.353 36.010794 -80.030991 +27278 24286 10286 262605703 2266314 101.393 0.875 36.090303 -79.086965 +27281 3100 1356 134862267 291070 52.071 0.112 35.187442 -79.625115 +27282 15906 6692 35779745 569125 13.815 0.220 35.994234 -79.929252 +27283 3141 1388 68208400 586447 26.335 0.226 35.951474 -79.635418 +27284 51136 22239 206972768 1661568 79.913 0.642 36.118637 -80.078270 +27288 24071 11813 175476018 2121812 67.752 0.819 36.497559 -79.749460 +27291 1662 1002 131428536 4474705 50.745 1.728 36.418424 -79.168636 +27292 39787 18550 376548128 22989572 145.386 8.876 35.738325 -80.207547 +27295 37211 16528 330459890 2524121 127.591 0.975 35.871767 -80.310180 +27298 10336 4633 246005551 2395773 94.983 0.925 35.885115 -79.567545 +27299 5190 2211 71283557 3969178 27.523 1.533 35.752324 -80.386149 +27301 8750 3569 86396685 1014364 33.358 0.392 36.113510 -79.665656 +27302 26412 11467 302409788 5024582 116.761 1.940 36.142031 -79.266154 +27305 1685 792 69114286 851952 26.685 0.329 36.526805 -79.233755 +27306 6176 4753 453884677 9077106 175.246 3.505 35.225194 -79.980245 +27310 6710 2424 41677239 386399 16.092 0.149 36.174072 -79.992233 +27311 3402 1607 119756923 180261 46.238 0.070 36.479651 -79.472563 +27312 18306 8666 440057980 17272044 169.907 6.669 35.755681 -79.210066 +27313 6962 2839 73560619 427668 28.402 0.165 35.930899 -79.758242 +27314 1051 509 67184768 1874875 25.940 0.724 36.310342 -79.196250 +27315 2243 1058 68254906 340090 26.353 0.131 36.509968 -79.403546 +27316 6650 2894 178917472 813090 69.080 0.314 35.697013 -79.625793 +27317 16959 7172 139006302 9358660 53.671 3.613 35.840737 -79.802499 +27320 39351 18061 651220238 8407291 251.438 3.246 36.341643 -79.657526 +27325 6704 3123 228334105 1665431 88.160 0.643 35.464346 -79.578926 +27326 4008 1882 183562638 872347 70.874 0.337 36.461684 -79.556413 +27330 37947 15821 532332805 7164848 205.535 2.766 35.512898 -79.194199 +27332 30236 12269 272020647 6036763 105.028 2.331 35.384729 -79.137188 +27340 120 76 146351 0 0.057 0.000 35.945873 -79.317167 +27341 5360 2475 245068497 204954 94.621 0.079 35.524152 -79.699421 +27343 1716 1248 119558869 13710816 46.162 5.294 36.503250 -79.091553 +27344 18022 7344 429544134 2934003 165.848 1.133 35.723031 -79.434604 +27349 5511 2393 157911293 1825176 60.970 0.705 35.901313 -79.416062 +27350 6530 2758 96391733 1648580 37.217 0.637 35.808253 -79.888213 +27355 2660 1167 89522312 213953 34.565 0.083 35.794966 -79.574007 +27356 3205 1545 145972959 154855 56.360 0.060 35.436865 -79.804272 +27357 7894 3340 109859880 4598651 42.417 1.776 36.266600 -79.970625 +27358 14075 5349 141060442 2927834 54.464 1.130 36.228232 -79.880061 +27360 46084 20070 228257879 1091835 88.131 0.422 35.859342 -80.100268 +27370 15052 6194 156770205 618984 60.529 0.239 35.809280 -79.978025 +27371 8132 3658 419185938 3412656 161.849 1.318 35.406855 -79.968144 +27376 9386 4418 180672387 4834984 69.758 1.867 35.243974 -79.522126 +27377 7104 3323 66301306 558455 25.599 0.216 36.042693 -79.608683 +27379 4661 2210 221252882 2089989 85.426 0.807 36.374099 -79.334513 +27401 21932 9340 16093119 83541 6.214 0.032 36.069144 -79.765156 +27403 21958 9286 15609734 10371 6.027 0.004 36.065973 -79.824383 +27405 44567 19784 80309965 706522 31.008 0.273 36.114409 -79.735752 +27406 56458 24862 179767712 2080411 69.409 0.803 36.000542 -79.764677 +27407 46242 21134 78460914 814193 30.294 0.314 36.008599 -79.878160 +27408 17296 8641 19749515 351590 7.625 0.136 36.103667 -79.813712 +27409 15621 8561 50385075 186537 19.454 0.072 36.103729 -79.939830 +27410 52388 24971 84668179 2496902 32.691 0.964 36.117523 -79.894239 +27455 28706 12833 76787939 4128690 29.648 1.594 36.184081 -79.810470 +27501 17571 7091 158391247 1363878 61.155 0.527 35.484941 -78.684570 +27502 30831 11175 73384488 6039813 28.334 2.332 35.712397 -78.915514 +27503 3471 1470 94454745 3528431 36.469 1.362 36.152584 -78.884277 +27504 14566 6224 234096126 1308251 90.385 0.505 35.400309 -78.518278 +27505 5896 2428 147186006 654835 56.829 0.253 35.423373 -79.000039 +27507 1929 913 123456682 2066983 47.667 0.798 36.513546 -78.569507 +27508 2053 781 27094655 65118 10.461 0.025 35.956577 -78.248240 +27509 10167 1617 40421069 205203 15.607 0.079 36.130409 -78.774373 +27510 14644 7571 9698281 14035 3.745 0.005 35.915783 -79.082604 +27511 32029 13926 30350436 561857 11.718 0.217 35.763369 -78.788169 +27513 40755 17067 40936671 1075262 15.806 0.415 35.802102 -78.802719 +27514 32110 11631 50317319 434865 19.428 0.168 35.966740 -79.049419 +27516 36139 14524 240587369 2212786 92.891 0.854 35.906197 -79.154855 +27517 23346 11279 119052760 14975202 45.967 5.782 35.850295 -79.023205 +27518 19630 8315 24922416 436004 9.623 0.168 35.729742 -78.773829 +27519 39178 14829 56392086 233322 21.773 0.090 35.809584 -78.884126 +27520 36357 14567 189103000 381928 73.013 0.147 35.617929 -78.476210 +27521 6035 2519 67232974 414285 25.959 0.160 35.412121 -78.655865 +27522 12335 5257 187269660 13721701 72.305 5.298 36.105486 -78.674974 +27523 9552 3984 107003318 14210457 41.314 5.487 35.773618 -78.956926 +27524 12338 5324 341578686 4183361 131.884 1.615 35.394563 -78.387595 +27525 13338 5797 239599847 752411 92.510 0.291 36.135982 -78.458070 +27526 38894 15278 251040959 2191140 96.927 0.846 35.541473 -78.831392 +27527 18216 6510 113755736 386313 43.921 0.149 35.653972 -78.381682 +27529 42128 16867 149627164 1541202 57.771 0.595 35.655625 -78.584906 +27530 40117 17619 273979554 4303055 105.784 1.661 35.381174 -78.062514 +27531 594 0 9295097 0 3.589 0.000 35.343004 -77.964379 +27534 31364 14048 187217437 1856264 72.285 0.717 35.373342 -77.896598 +27536 17289 7971 33045199 99254 12.759 0.038 36.326731 -78.409125 +27537 24319 10468 495400108 29659373 191.275 11.452 36.371801 -78.397878 +27539 18692 7020 81691157 1665381 31.541 0.643 35.676537 -78.813444 +27540 29363 10393 120103694 1380053 46.372 0.533 35.615610 -78.884033 +27541 3770 1684 179875200 656652 69.450 0.254 36.264862 -79.083217 +27542 9133 3983 222750480 4077698 86.004 1.574 35.618266 -78.136813 +27544 4449 1809 158147393 209850 61.061 0.081 36.199787 -78.446559 +27545 23006 9242 75112251 215514 29.001 0.083 35.783689 -78.478164 +27546 19471 7449 320547647 5353072 123.764 2.067 35.382695 -78.865980 +27549 24112 11332 625306525 4230524 241.432 1.633 36.101663 -78.232233 +27551 1962 1625 217709969 8415576 84.058 3.249 36.432843 -78.050170 +27553 2937 1202 95818381 16262234 36.996 6.279 36.486561 -78.305322 +27555 441 212 1003888 0 0.388 0.000 35.562683 -78.204133 +27556 346 146 4966279 0 1.917 0.000 36.408374 -78.314761 +27557 7509 3121 159318285 1969395 61.513 0.760 35.779135 -78.198512 +27559 2288 1024 125170083 4666022 48.328 1.802 35.628239 -79.103012 +27560 22623 10576 75500429 2185534 29.151 0.844 35.858473 -78.828272 +27562 1938 893 139267939 11657206 53.772 4.501 35.641786 -78.990376 +27563 5008 2402 183419753 521220 70.819 0.201 36.425621 -78.235797 +27565 25255 10876 858201297 2434159 331.353 0.940 36.361663 -78.649294 +27568 480 246 607843 0 0.235 0.000 35.510124 -78.245099 +27569 8022 3346 210880268 713635 81.421 0.276 35.429065 -78.182749 +27571 3893 1386 11439843 234711 4.417 0.091 35.919603 -78.458418 +27572 6546 2883 266254203 1249201 102.801 0.482 36.255158 -78.877507 +27573 11414 5411 46115632 112641 17.805 0.043 36.396597 -78.976099 +27574 14373 6374 485951291 13975675 187.627 5.396 36.478358 -78.864865 +27576 17091 7055 215299086 343050 83.127 0.132 35.579476 -78.260557 +27577 22911 9197 269652901 1396720 104.114 0.539 35.489722 -78.332954 +27581 3049 1291 88997480 1637378 34.362 0.632 36.204779 -78.725986 +27582 289 141 8233520 17604 3.179 0.007 36.467324 -78.576587 +27583 6921 2895 119863036 360807 46.279 0.139 36.292958 -78.935362 +27587 53078 20117 271400446 13612116 104.788 5.256 35.982413 -78.551748 +27589 8370 4027 449720248 1135122 173.638 0.438 36.322541 -78.133484 +27591 19589 7677 171748830 974973 66.313 0.376 35.784168 -78.388983 +27592 15244 5731 107842113 559464 41.638 0.216 35.560141 -78.673940 +27596 15619 6224 144387746 817417 55.748 0.316 36.004817 -78.440532 +27597 22181 9159 317628094 2128700 122.637 0.822 35.841015 -78.302680 +27601 9450 4189 4647348 0 1.794 0.000 35.773632 -78.634457 +27603 47033 19550 133665621 1294904 51.609 0.500 35.664646 -78.653597 +27604 42204 18433 55870836 665291 21.572 0.257 35.819972 -78.558701 +27605 4495 3031 2555890 0 0.987 0.000 35.790608 -78.654596 +27606 43210 19275 64224192 2330243 24.797 0.900 35.742323 -78.715478 +27607 25188 8127 41698584 71326 16.100 0.028 35.813744 -78.719617 +27608 10429 5196 8329144 0 3.216 0.000 35.809046 -78.647228 +27609 32964 16243 28937963 119519 11.173 0.046 35.843765 -78.633643 +27610 65648 23846 110636045 436529 42.717 0.169 35.744400 -78.546278 +27612 35028 18005 48588958 602179 18.760 0.233 35.853869 -78.708498 +27613 42690 18784 63722629 425643 24.603 0.164 35.926102 -78.711414 +27614 31516 12279 70149827 6056143 27.085 2.338 35.948310 -78.621619 +27615 42166 18672 50073590 352018 19.334 0.136 35.898505 -78.635489 +27616 42294 15973 57547787 240777 22.219 0.093 35.866924 -78.541695 +27617 15199 7615 21770058 5659 8.405 0.002 35.907871 -78.772968 +27701 21288 10501 13667543 1025 5.277 0.000 35.999240 -78.897944 +27703 41937 17221 141426611 8398834 54.605 3.243 35.959253 -78.806827 +27704 34517 14504 104393188 13288202 40.306 5.131 36.042446 -78.828771 +27705 46282 20402 113643537 932767 43.878 0.360 36.025937 -78.978858 +27707 45023 20962 55102696 226320 21.275 0.087 35.954525 -78.953317 +27709 1047 407 1011976 8545 0.391 0.003 35.924246 -78.832819 +27712 20035 8276 86685575 2451836 33.469 0.947 36.095297 -78.901077 +27713 46660 21901 84320245 1033318 32.556 0.399 35.895040 -78.923747 +27801 21740 9978 180246658 690749 69.594 0.267 35.913276 -77.730779 +27803 21227 9786 104418772 2012879 40.316 0.777 35.903051 -77.856172 +27804 29058 13402 109416477 549137 42.246 0.212 35.990635 -77.842350 +27805 3992 1846 287320404 0 110.935 0.000 36.207741 -77.084248 +27806 2331 1568 357680009 92660352 138.101 35.776 35.304999 -76.756067 +27807 6629 2647 129452204 534411 49.982 0.206 35.804496 -78.095516 +27808 2225 1482 108336448 48914890 41.829 18.886 35.467424 -76.759213 +27809 5091 2066 193815712 358616 74.833 0.138 36.016777 -77.741619 +27810 4377 2765 336920900 137138625 130.086 52.950 35.531731 -76.525506 +27812 2593 1246 160362102 0 61.916 0.000 35.815611 -77.369251 +27813 747 329 2873801 10166 1.110 0.004 35.634699 -77.937717 +27814 1676 1322 165410606 37722634 63.865 14.565 35.398663 -76.918808 +27816 2516 1148 156581335 630598 60.456 0.243 36.108991 -78.070319 +27817 7358 3601 291006008 11158988 112.358 4.309 35.451146 -77.069708 +27818 1344 679 158095299 3065602 61.041 1.184 36.499725 -77.018505 +27819 330 152 2800259 0 1.081 0.000 35.815994 -77.454941 +27820 3088 1489 145740495 423885 56.271 0.164 36.421515 -77.241567 +27821 358 199 16841458 256684 6.503 0.099 35.322066 -76.874087 +27822 8143 3578 236915683 1508827 91.474 0.583 35.804779 -77.839022 +27823 8201 3698 489295819 1886785 188.918 0.728 36.213482 -77.705710 +27824 1476 826 253883788 56841608 98.025 21.947 35.513209 -76.037172 +27825 103 59 1210510 0 0.467 0.000 35.832821 -77.174422 +27826 1379 363 190651231 3232177 73.611 1.248 35.588741 -76.215312 +27827 33 17 247835 0 0.096 0.000 35.696636 -77.513239 +27828 9071 4042 199132110 105736 76.885 0.041 35.585144 -77.577213 +27829 1930 956 127375095 212128 49.180 0.082 35.683966 -77.626466 +27830 4755 2324 156912697 184513 60.584 0.071 35.564168 -77.950309 +27831 3908 1895 170071959 6531632 65.665 2.522 36.459608 -77.577023 +27832 2847 1397 78295358 11012197 30.230 4.252 36.521558 -77.734725 +27834 52914 24429 458186307 2895762 176.907 1.118 35.657563 -77.380045 +27837 5903 2371 154340916 970927 59.591 0.375 35.516677 -77.211067 +27839 4001 1647 369104011 291749 142.512 0.113 36.280743 -77.555932 +27840 514 269 32637901 13587 12.602 0.005 35.982689 -77.214599 +27841 84 40 669650 0 0.259 0.000 35.908555 -77.276307 +27842 1493 1867 27953453 14227190 10.793 5.493 36.521734 -77.852102 +27843 1157 600 154276083 22615 59.566 0.009 35.995560 -77.399990 +27844 2950 1317 110483543 375768 42.658 0.145 36.249497 -77.943156 +27845 2394 991 258807198 1447685 99.926 0.559 36.371267 -77.439990 +27846 2988 1411 250829531 372917 96.846 0.144 35.758568 -76.897527 +27847 936 452 96622019 445201 37.306 0.172 36.183169 -77.194668 +27849 1544 705 198105542 1716098 76.489 0.663 36.077306 -77.215025 +27850 7247 5411 483645930 30167010 186.737 11.648 36.412391 -77.880191 +27851 5268 2213 116011820 54570 44.792 0.021 35.640053 -78.030662 +27852 2977 1349 125911614 529515 48.615 0.204 35.750459 -77.636931 +27853 673 320 110202533 266479 42.549 0.103 36.513730 -77.304210 +27855 6456 2752 141575343 952693 54.663 0.368 36.415640 -77.069346 +27856 17141 6917 336211410 1020758 129.812 0.394 36.013680 -77.980574 +27857 1298 699 163598581 132190 63.166 0.051 35.972793 -77.286253 +27858 55781 25070 156028841 530747 60.243 0.205 35.531714 -77.283895 +27860 2246 1093 371217107 4391861 143.328 1.696 35.650061 -76.676197 +27861 71 42 1576350 0 0.609 0.000 35.814846 -77.320207 +27862 877 429 103832393 609340 40.090 0.235 36.490195 -77.188266 +27863 11735 4796 175044059 460320 67.585 0.178 35.488143 -77.971726 +27864 4779 2004 104552165 124891 40.368 0.048 35.807047 -77.651355 +27865 1927 868 224094143 1259041 86.523 0.486 35.656239 -76.851605 +27866 855 390 67184780 225782 25.940 0.087 36.519869 -77.514565 +27869 2258 1177 212029688 2165746 81.865 0.836 36.267105 -77.313433 +27870 27236 12341 175988242 7424303 67.949 2.867 36.419006 -77.715856 +27871 4619 2223 249453081 48181 96.314 0.019 35.802069 -77.260565 +27872 375 210 32696454 58933 12.624 0.023 36.192755 -77.253865 +27873 397 187 1620173 0 0.626 0.000 35.653592 -77.775232 +27874 4861 2472 337809139 2163687 130.429 0.835 36.136662 -77.408584 +27875 517 285 142811214 98661660 55.140 38.093 35.455706 -76.504667 +27876 1302 705 108196265 554255 41.775 0.214 36.471995 -77.391332 +27878 1931 912 4756068 0 1.836 0.000 35.866879 -77.834929 +27879 311 168 761808 0 0.294 0.000 35.574391 -77.279486 +27880 3304 1319 67239591 4126817 25.961 1.593 35.730736 -78.080589 +27881 61 31 1760083 0 0.680 0.000 35.978414 -77.436573 +27882 7413 3335 256674000 773827 99.102 0.299 35.941655 -78.115598 +27883 3565 1578 198494531 674673 76.639 0.260 35.600536 -77.803696 +27884 1282 554 85630148 132165 33.062 0.051 35.702849 -77.270314 +27885 984 616 322728826 108586859 124.606 41.926 35.386195 -76.274910 +27886 21591 9121 499879103 2167227 193.004 0.837 35.904533 -77.511658 +27888 2560 1046 123267453 60109 47.594 0.023 35.589277 -77.715950 +27889 27468 12692 508396512 33055417 196.293 12.763 35.582635 -77.012004 +27890 2521 1217 23191883 132385 8.954 0.051 36.414180 -77.587745 +27891 5227 2299 366219966 573182 141.398 0.221 36.097735 -77.742789 +27892 15182 7095 500168811 235542 193.116 0.091 35.812281 -77.052228 +27893 39723 17743 285389492 3072202 110.190 1.186 35.692710 -77.900656 +27896 20130 8489 89567154 1235687 34.582 0.477 35.790772 -77.976797 +27897 2265 1098 110984693 0 42.851 0.000 36.324988 -77.210701 +27909 40699 16861 587670225 68502072 226.901 26.449 36.288750 -76.268410 +27910 12007 5413 351996713 159545 135.907 0.062 36.290066 -76.993185 +27915 777 1650 20597769 12288445 7.953 4.745 35.434104 -75.491567 +27916 747 333 20081953 0 7.754 0.000 36.322012 -75.915131 +27917 833 329 52096680 10704399 20.115 4.133 36.355205 -75.997594 +27919 1130 576 150799622 8506 58.224 0.003 36.308171 -76.504283 +27920 1326 877 9470003 2458221 3.656 0.949 35.259492 -75.553269 +27921 4805 1965 187556987 10105194 72.416 3.902 36.352062 -76.187929 +27922 1030 514 108746232 2551221 41.987 0.985 36.316755 -76.842210 +27923 598 329 18664473 66370276 7.206 25.626 36.401680 -75.928155 +27924 3140 1565 243750831 16781121 94.113 6.479 36.168447 -76.832521 +27925 4217 1965 624589597 111070847 241.155 42.885 35.856141 -76.193837 +27926 1915 770 92604145 13058 35.755 0.005 36.505115 -76.604925 +27927 542 4394 68957855 112688859 26.625 43.509 36.341348 -75.852576 +27928 1986 986 177630143 64912517 68.583 25.063 35.824423 -76.438639 +27929 1166 537 15347523 16953135 5.926 6.546 36.435452 -75.987038 +27932 12562 6209 306027666 12109568 118.158 4.676 36.107824 -76.607876 +27935 1698 764 155303288 5122251 59.963 1.978 36.431079 -76.868092 +27936 1091 1071 24333536 3891031 9.395 1.502 35.242195 -75.577839 +27937 4333 1763 218638474 1552072 84.417 0.599 36.504334 -76.780733 +27938 1505 659 131719675 5993484 50.857 2.314 36.384296 -76.716000 +27939 2361 1274 17120910 26473813 6.610 10.222 36.238431 -75.843084 +27941 536 259 8158609 0 3.150 0.000 36.102528 -75.816896 +27942 901 447 86253480 9210518 33.303 3.556 36.297368 -76.750654 +27943 504 876 7334054 5541476 2.832 2.140 35.224432 -75.678903 +27944 11909 6200 479101756 69823879 184.982 26.959 36.173431 -76.421264 +27946 1207 573 110576673 1315 42.694 0.001 36.363435 -76.601536 +27947 1230 587 31260825 3671356 12.070 1.418 36.193689 -75.877000 +27948 10862 9024 23945936 15894629 9.246 6.137 36.019229 -75.692172 +27949 6947 8569 39333499 58127518 15.187 22.443 36.108941 -75.760527 +27950 2006 912 77400757 57008649 29.885 22.011 36.509694 -75.996382 +27953 1021 573 713484971 175000638 275.478 67.568 35.779990 -75.881378 +27954 6111 3479 22887074 13851934 8.837 5.348 35.910154 -75.677781 +27956 340 130 12030150 30840 4.645 0.012 36.401576 -76.000725 +27957 1356 728 110061573 26306689 42.495 10.157 36.066297 -76.759059 +27958 10144 3887 228430869 19725530 88.198 7.616 36.484298 -76.138350 +27959 2789 4946 38034428 45416112 14.685 17.535 35.886943 -75.606402 +27960 948 983 22725476 19147396 8.774 7.393 35.073231 -75.998527 +27962 7792 3668 230788315 474204 89.108 0.183 35.789893 -76.744809 +27964 545 327 3823958 9655079 1.476 3.728 36.083046 -75.806214 +27965 527 285 41698460 30671302 16.100 11.842 36.267692 -75.927526 +27966 1052 485 26488239 43854584 10.227 16.932 36.149729 -75.802261 +27967 366 201 9594502 0 3.704 0.000 36.229468 -76.904956 +27968 298 654 20189282 13219774 7.795 5.104 35.732418 -75.509908 +27970 3409 1818 293904269 17950516 113.477 6.931 35.839106 -76.649296 +27972 244 641 3682046 3420722 1.422 1.321 35.552870 -75.471224 +27973 1323 546 97476799 156116 37.636 0.060 36.371209 -76.055514 +27974 1285 585 118838909 66292546 45.884 25.596 36.243022 -75.989505 +27976 3449 1365 275744749 0 106.466 0.000 36.487866 -76.350687 +27978 225 127 41620340 17565629 16.070 6.782 35.727405 -75.739872 +27979 1719 769 186729108 895870 72.097 0.346 36.436768 -76.560679 +27980 2182 1052 133771459 231486 51.649 0.089 36.245324 -76.619385 +27981 1643 794 20458029 5072692 7.899 1.959 35.852855 -75.637424 +27982 82 211 818871 0 0.316 0.000 35.565026 -75.466252 +27983 10416 4486 861125798 63417274 332.483 24.486 35.968459 -76.917928 +27985 283 148 2406546 4876 0.929 0.002 36.211603 -76.456674 +27986 2430 631 39990440 2952085 15.440 1.140 36.389887 -76.921042 +28001 26760 12475 344382730 4510803 132.967 1.742 35.338579 -80.208179 +28006 1130 509 13877819 18657 5.358 0.007 35.410411 -81.092319 +28007 611 299 3402388 0 1.314 0.000 35.104593 -80.109909 +28009 1121 601 7413324 1404114 2.862 0.542 35.409174 -80.108238 +28012 20048 8633 70867161 9896910 27.362 3.821 35.208087 -81.040035 +28016 13463 5963 111199231 1025820 42.934 0.396 35.315184 -81.283239 +28017 695 0 441239 0 0.170 0.000 35.247062 -81.670698 +28018 5562 2720 257096443 183923 99.265 0.071 35.490775 -81.802678 +28019 123 53 392422 0 0.152 0.000 35.276712 -81.787707 +28020 2322 1102 112819111 0 43.560 0.000 35.525046 -81.641414 +28021 13612 6030 162239295 2746675 62.641 1.060 35.400774 -81.403346 +28023 14175 5966 120001693 357663 46.333 0.138 35.567714 -80.602258 +28025 49160 20326 282046539 382587 108.899 0.148 35.382677 -80.523467 +28027 55435 22169 177682005 5103808 68.603 1.971 35.408065 -80.682200 +28031 24390 11619 37508358 30439655 14.482 11.753 35.473953 -80.898428 +28032 3105 1464 6037220 451502 2.331 0.174 35.233033 -81.079513 +28033 2749 1127 40241719 222640 15.537 0.086 35.419270 -81.328253 +28034 16642 7004 117454608 951107 45.349 0.367 35.353664 -81.178943 +28036 14654 5640 58511314 1557010 22.591 0.601 35.480547 -80.792539 +28037 18287 8266 114852360 22276587 44.345 8.601 35.509034 -81.020257 +28039 116 59 220166 0 0.085 0.000 35.678835 -80.437427 +28040 7969 3648 184345258 23306 71.176 0.009 35.389195 -81.758135 +28043 21055 9723 164111048 293898 63.364 0.113 35.306240 -81.872786 +28052 34932 14814 109155761 560177 42.145 0.216 35.214656 -81.233227 +28054 36270 16398 51784967 182719 19.994 0.071 35.262879 -81.149075 +28056 31418 12943 123160930 841208 47.553 0.325 35.216936 -81.125003 +28071 2802 1226 118071317 125634 45.588 0.049 35.517631 -80.316323 +28072 1357 578 2810890 0 1.085 0.000 35.614070 -80.445205 +28073 5621 2360 66431183 135755 25.649 0.052 35.198574 -81.483781 +28075 16143 5781 54811475 0 21.163 0.000 35.302748 -80.639937 +28076 722 358 3462588 0 1.337 0.000 35.259147 -81.788606 +28077 482 227 1514405 24382 0.585 0.009 35.404802 -81.202770 +28078 52133 20596 165245152 3775051 63.802 1.458 35.405286 -80.864020 +28079 31979 11431 113714884 1030955 43.906 0.398 35.114710 -80.600423 +28080 7299 2986 102312527 358922 39.503 0.139 35.453165 -81.109643 +28081 25190 10850 78789539 1107303 30.421 0.428 35.502816 -80.670173 +28083 23820 10548 51914685 1294372 20.044 0.500 35.489602 -80.580668 +28086 25895 11200 227955350 2097876 88.014 0.810 35.243945 -81.378942 +28088 2862 1316 6859334 0 2.648 0.000 35.544276 -80.614646 +28089 248 53 642772 0 0.248 0.000 35.318233 -81.659574 +28090 8342 3704 242502392 703019 93.631 0.271 35.454659 -81.559555 +28091 2158 1175 245190344 11584961 94.669 4.473 34.987392 -79.933002 +28092 38570 16585 317522973 1612218 122.596 0.622 35.486463 -81.253899 +28097 5369 2282 78751049 0 30.406 0.000 35.296715 -80.393050 +28098 3579 1568 8813403 178593 3.403 0.069 35.271041 -81.098623 +28101 698 306 2318621 133906 0.895 0.052 35.257964 -81.077722 +28102 78 33 1312799 0 0.507 0.000 34.818432 -79.972265 +28103 10311 4217 400268829 4544180 154.545 1.755 34.998925 -80.351327 +28104 28040 10148 75706335 873831 29.230 0.337 35.060868 -80.693292 +28105 39586 16107 61653058 427942 23.804 0.165 35.115597 -80.713708 +28107 6422 2664 128457652 100340 49.598 0.039 35.252860 -80.518680 +28108 54 22 516881 10775 0.200 0.004 34.934781 -80.681183 +28109 387 88 4357146 8576 1.682 0.003 35.496966 -80.288530 +28110 50365 18609 333162133 5012201 128.635 1.935 35.065318 -80.524866 +28112 26311 10254 342051649 4351884 132.067 1.680 34.889925 -80.549548 +28114 7554 3421 168974432 1678040 65.241 0.648 35.230441 -81.747702 +28115 34339 14162 191023006 429492 73.754 0.166 35.584580 -80.778871 +28117 35454 15417 103356776 41221105 39.906 15.916 35.565698 -80.898332 +28119 2801 1279 170920359 839760 65.993 0.324 34.851078 -80.016985 +28120 19807 8354 78768672 5320678 30.413 2.054 35.328651 -81.026393 +28124 6622 2654 147454668 436525 56.933 0.169 35.399652 -80.408792 +28125 2525 1069 99624303 106865 38.465 0.041 35.659025 -80.698613 +28127 7594 5033 180012360 24777540 69.503 9.567 35.468227 -80.182719 +28128 7476 3750 176772900 9609136 68.252 3.710 35.210696 -80.154523 +28129 5399 2437 110558339 0 42.687 0.000 35.231662 -80.327162 +28133 2878 1306 206949214 156592 79.904 0.060 34.844926 -80.265681 +28134 9453 4287 22172460 101080 8.561 0.039 35.085402 -80.893095 +28135 6123 1799 259249540 178580 100.097 0.069 35.029760 -80.217276 +28137 3120 1380 114548670 5086968 44.227 1.964 35.563109 -80.236391 +28138 10495 4398 114937346 174831 44.378 0.068 35.515381 -80.438760 +28139 20111 9304 453255406 436776 175.003 0.169 35.348363 -81.994737 +28144 24734 11233 77427982 1112419 29.895 0.430 35.706685 -80.464788 +28146 27614 12701 257071758 23480583 99.256 9.066 35.619299 -80.393298 +28147 24697 9845 203421091 22927 78.541 0.009 35.681117 -80.562942 +28150 28098 13068 277217736 3031880 107.034 1.171 35.342703 -81.576248 +28152 24735 10811 214222524 790138 82.712 0.305 35.242720 -81.599412 +28159 3108 1351 6384367 0 2.465 0.000 35.694752 -80.431873 +28160 3929 1866 14507217 0 5.601 0.000 35.361024 -81.922321 +28163 5233 2106 90942916 0 35.113 0.000 35.207494 -80.428517 +28164 14085 5857 109224682 927507 42.172 0.358 35.389444 -81.037135 +28166 8619 3836 74767961 4009956 28.868 1.548 35.682791 -80.875531 +28167 2362 1214 184327178 82864 71.169 0.032 35.508403 -81.966885 +28168 10230 4365 224665884 902336 86.744 0.348 35.552360 -81.425071 +28169 173 83 1450977 0 0.560 0.000 35.358470 -81.429395 +28170 12355 5712 484069848 1868381 186.900 0.721 34.998731 -80.098787 +28173 45097 15103 278478312 3735118 107.521 1.442 34.916155 -80.731415 +28174 8608 2905 93243223 1137064 36.001 0.439 34.969035 -80.439580 +28202 11195 6303 4666679 5315 1.802 0.002 35.227271 -80.844194 +28203 11315 7544 8592352 0 3.318 0.000 35.208185 -80.859107 +28204 4796 2986 4477542 0 1.729 0.000 35.214620 -80.827014 +28205 43931 20944 30619956 27032 11.822 0.010 35.218791 -80.789601 +28206 11898 4663 18279032 2917 7.058 0.001 35.256127 -80.820999 +28207 9280 4205 6520758 20241 2.518 0.008 35.194148 -80.824585 +28208 34167 14892 56999240 78919 22.008 0.030 35.230430 -80.907493 +28209 20317 11007 14202148 29335 5.483 0.011 35.178714 -80.853985 +28210 42263 21115 32901568 208017 12.703 0.080 35.129916 -80.856206 +28211 28523 13788 27907606 48682 10.775 0.019 35.166342 -80.797285 +28212 38457 16957 23932279 147847 9.240 0.057 35.187703 -80.744556 +28213 37309 15784 35786462 231452 13.817 0.089 35.286034 -80.734355 +28214 34721 13701 84799291 4576637 32.741 1.767 35.275252 -80.968144 +28215 53629 20940 79070842 532987 30.529 0.206 35.244979 -80.693471 +28216 47208 19213 77432284 1572804 29.897 0.607 35.311450 -80.887981 +28217 24204 10247 38369765 356208 14.815 0.138 35.168896 -80.908285 +28226 37286 16730 38634466 403743 14.917 0.156 35.102697 -80.822129 +28227 49635 19967 100221091 804236 38.696 0.311 35.189404 -80.645488 +28244 0 0 19679 0 0.008 0.000 35.224605 -80.843094 +28262 37547 15104 56235018 258611 21.712 0.100 35.322061 -80.739981 +28269 71048 28886 78817035 673145 30.431 0.260 35.337313 -80.803472 +28270 31525 12854 32668901 130891 12.614 0.051 35.112079 -80.764415 +28273 31478 13237 56686539 347841 21.887 0.134 35.127365 -80.946828 +28277 59664 25176 60593549 786567 23.395 0.304 35.052875 -80.817552 +28278 19283 7858 73759178 9591354 28.479 3.703 35.133403 -81.009373 +28280 10 6 19577 0 0.008 0.000 35.226332 -80.843091 +28282 0 0 18417 0 0.007 0.000 35.224815 -80.845277 +28301 17165 7693 31810217 361957 12.282 0.140 35.074800 -78.884257 +28303 30909 14646 43339459 622490 16.733 0.240 35.085957 -78.959520 +28304 37147 16029 42717170 568757 16.493 0.220 35.025528 -78.989604 +28305 6073 3366 6734527 150377 2.600 0.058 35.052609 -78.907244 +28306 39683 16069 177909773 2484549 68.691 0.959 34.958495 -78.896848 +28307 17631 5294 30294513 37064 11.697 0.014 35.138559 -78.981887 +28308 405 35 9593022 38531 3.704 0.015 35.171548 -79.017082 +28310 3459 0 11754789 54691 4.539 0.021 35.163471 -79.037914 +28311 34567 15746 97177782 1313750 37.521 0.507 35.167782 -78.887753 +28312 18538 8043 435367175 4022465 168.096 1.553 34.947752 -78.738133 +28314 54520 24124 59675644 1115275 23.041 0.431 35.052914 -79.029891 +28315 11681 5323 165609669 868885 63.942 0.335 35.116885 -79.432157 +28318 4627 2085 206311818 97373 79.657 0.038 35.019873 -78.613574 +28320 9229 4345 308446877 622304 119.092 0.240 34.558122 -78.772715 +28323 3182 1365 97374249 636973 37.596 0.246 35.314162 -78.834901 +28325 508 223 2203865 0 0.851 0.000 35.153922 -78.104138 +28326 17646 6599 301349381 1754809 116.352 0.678 35.273826 -79.159382 +28327 15433 6958 493234981 3445373 190.439 1.330 35.354586 -79.416505 +28328 27042 11377 660855146 1668060 255.158 0.644 35.003498 -78.337924 +28330 346 160 641824 0 0.248 0.000 34.909597 -79.821980 +28332 482 220 5126754 0 1.979 0.000 34.659039 -78.737889 +28333 11830 4906 122363731 1058022 47.245 0.409 35.284311 -78.012655 +28334 24908 11119 415086487 4054098 160.266 1.565 35.272208 -78.568104 +28337 10670 5994 413801824 10734819 159.770 4.145 34.657050 -78.561570 +28338 4607 2151 371233847 2483314 143.334 0.959 35.107707 -79.759691 +28339 6751 2962 92817363 1572156 35.837 0.607 35.310540 -78.732747 +28340 10765 4643 324660080 658674 125.352 0.254 34.471354 -79.134422 +28341 4257 1863 242685151 741572 93.701 0.286 35.120111 -78.174052 +28342 298 100 3212871 3762 1.240 0.001 35.191183 -78.651262 +28343 1685 737 46282477 68104 17.870 0.026 34.757362 -79.564875 +28344 3415 1316 100198515 195264 38.687 0.075 35.160500 -78.624483 +28345 12592 5605 183521227 1068589 70.858 0.413 34.873551 -79.670637 +28347 1983 515 133123138 487933 51.399 0.188 35.058323 -79.600604 +28348 33307 12919 114691472 1240503 44.283 0.479 34.915262 -78.926748 +28349 3724 1645 174739238 1352947 67.467 0.522 34.981158 -77.927065 +28350 305 138 1675908 216553 0.647 0.084 35.243159 -79.314018 +28351 4759 1998 146470607 1014001 56.553 0.392 34.848270 -79.563854 +28352 25641 10644 322296686 1162741 124.439 0.449 34.767332 -79.451076 +28356 5018 2098 142154953 1443114 54.886 0.557 35.235916 -78.791040 +28357 3125 1272 91792034 168251 35.441 0.065 34.901888 -79.082766 +28358 38738 15819 520480196 1010475 200.959 0.390 34.608106 -78.934474 +28360 14263 5322 170230377 398303 65.726 0.154 34.670334 -79.074938 +28363 1202 531 148408744 967463 57.301 0.374 34.957094 -79.546024 +28364 14809 5735 350911589 1039309 135.488 0.401 34.707179 -79.323457 +28365 17144 7425 498789986 2856065 192.584 1.103 35.172565 -78.052357 +28366 5061 2213 219057599 774703 84.579 0.299 35.230268 -78.361985 +28367 87 50 762765 0 0.295 0.000 35.172701 -79.725159 +28369 2652 1137 192050923 163324 74.151 0.063 34.423373 -79.029416 +28371 6519 2601 89745915 793819 34.651 0.306 34.903171 -78.979570 +28372 14783 5182 113441052 0 43.800 0.000 34.696873 -79.177622 +28373 2150 980 33485711 159418 12.929 0.062 35.091323 -79.488461 +28374 15990 9228 57526238 1834958 22.211 0.708 35.197454 -79.462959 +28375 102 49 740153 0 0.286 0.000 34.475744 -79.038553 +28376 37991 14771 374131953 1488076 144.453 0.575 34.992407 -79.242642 +28377 12666 4849 261198414 1191973 100.849 0.460 34.826879 -79.213242 +28379 26388 11968 401605339 9121842 155.061 3.522 34.930279 -79.778633 +28382 7056 3126 305868363 827426 118.096 0.319 34.971283 -78.517812 +28383 8080 3300 270280924 45418 104.356 0.018 34.576974 -79.262696 +28384 12097 4717 252427298 371438 97.463 0.143 34.797090 -78.960927 +28385 3029 1400 102224178 378830 39.469 0.146 35.048806 -78.491269 +28386 6319 2209 116645278 360184 45.037 0.139 34.853619 -79.129616 +28387 13921 7608 75431825 511245 29.124 0.197 35.179464 -79.376327 +28390 19942 9257 152837789 1359533 59.011 0.525 35.218735 -78.958164 +28391 5302 2262 91772755 87464 35.434 0.034 35.021629 -78.698798 +28392 1579 739 101955329 1234427 39.365 0.477 34.734941 -78.800703 +28393 2005 838 115182010 209811 44.472 0.081 34.980876 -78.189681 +28394 5164 2521 113036439 4979833 43.644 1.923 35.218967 -79.244848 +28395 2375 1031 124016266 893707 47.883 0.345 35.139367 -78.740661 +28396 2732 1229 129511725 382020 50.005 0.147 34.927252 -79.401588 +28398 8112 3566 251823873 1575673 97.230 0.608 34.995035 -78.071712 +28399 2140 947 241110180 6487373 93.093 2.505 34.784523 -78.709012 +28401 22094 11685 62576261 12918324 24.161 4.988 34.271985 -77.963628 +28403 36063 18000 36446116 718895 14.072 0.278 34.221684 -77.880633 +28405 29152 13933 62328515 1307318 24.065 0.505 34.263182 -77.866380 +28409 31296 13104 61681386 15204784 23.815 5.871 34.154846 -77.862676 +28411 31962 14105 108333518 5003406 41.828 1.932 34.301944 -77.792770 +28412 35573 17462 56229598 13397511 21.710 5.173 34.143756 -77.928152 +28420 3886 1742 363768364 721106 140.452 0.278 34.073706 -78.481116 +28421 1521 769 143410746 697892 55.371 0.269 34.505822 -78.168375 +28422 6641 3747 236138990 4768661 91.174 1.841 34.018953 -78.173965 +28423 2290 1001 207389701 206114 80.074 0.080 34.313913 -78.388900 +28424 128 66 382281 0 0.148 0.000 34.290291 -78.699689 +28425 10906 4661 387767927 1499900 149.718 0.579 34.562207 -77.894389 +28428 6033 5941 13319527 6039745 5.143 2.332 34.046841 -77.909659 +28429 8026 3238 101486016 5817392 39.184 2.246 34.341211 -77.900216 +28430 1900 863 105067839 126937 40.567 0.049 34.298389 -78.937388 +28431 7102 3379 195695871 412978 75.559 0.159 34.314264 -78.838420 +28432 1968 881 91369797 451806 35.278 0.174 34.168118 -78.758679 +28433 5050 2325 289084332 465999 111.616 0.180 34.488505 -78.616673 +28434 1329 693 209432503 1779579 80.862 0.687 34.468325 -78.465485 +28435 2490 1244 247647907 6423313 95.617 2.480 34.405910 -78.109108 +28436 2203 939 97838821 4666 37.776 0.002 34.275102 -78.267215 +28438 1845 877 121447744 194587 46.891 0.075 34.408974 -78.918311 +28439 1595 831 62210381 198160 24.020 0.077 34.286894 -79.001225 +28441 3198 1473 331316838 275539 127.922 0.106 34.804613 -78.431800 +28442 1647 829 145223325 0 56.071 0.000 34.288447 -78.600598 +28443 17512 8455 296767471 2230515 114.583 0.861 34.445036 -77.675712 +28444 2085 1089 231149064 7474647 89.247 2.886 34.698827 -78.322020 +28445 5676 6463 137371817 10323018 53.040 3.986 34.483968 -77.556317 +28447 1391 749 300379245 181225 115.977 0.070 34.599052 -78.263349 +28448 1243 682 244618644 1953528 94.448 0.754 34.491995 -78.317144 +28449 1692 1929 10332016 11167158 3.989 4.312 33.978811 -77.933743 +28450 2438 1379 101006097 35829311 38.999 13.834 34.324660 -78.515299 +28451 27112 12260 362010808 6060293 139.773 2.340 34.230517 -78.089706 +28452 694 299 15077508 4966 5.821 0.002 33.992284 -78.546504 +28453 3829 1636 213997786 1065509 82.625 0.411 34.886439 -78.076256 +28454 2545 1156 169487307 0 65.439 0.000 34.678126 -77.650871 +28455 2117 967 197727962 153131 76.343 0.059 34.111534 -78.631633 +28456 3658 1673 167060614 2698699 64.502 1.042 34.374410 -78.287094 +28457 9905 4019 334999903 4533086 129.344 1.750 34.449598 -77.886638 +28458 6444 2982 286347927 1706243 110.560 0.659 34.814773 -78.090782 +28460 7652 6112 90360164 21478317 34.888 8.293 34.542056 -77.418498 +28461 16126 10667 196143516 42825569 75.731 16.535 33.967234 -78.059091 +28462 11680 11906 241882180 6363965 93.391 2.457 34.026571 -78.289593 +28463 9799 3733 304957807 1614680 117.745 0.623 34.104765 -78.782385 +28464 2457 1035 59081020 346247 22.811 0.134 34.776640 -78.017320 +28465 6531 8714 27410876 8817164 10.583 3.404 33.912317 -78.102548 +28466 10103 4662 490873028 2090056 189.527 0.807 34.741253 -77.875651 +28467 8703 6519 46605323 1351722 17.994 0.522 33.919644 -78.593713 +28468 4375 5741 45170839 5053609 17.441 1.951 33.899623 -78.519137 +28469 5839 7411 56826245 4179728 21.941 1.614 33.926319 -78.467404 +28470 10644 6182 122752678 4665272 47.395 1.801 33.964096 -78.403407 +28472 19658 8771 472005762 1697132 182.242 0.655 34.298566 -78.689949 +28478 4588 2129 313617217 435883 121.088 0.168 34.641461 -78.040878 +28479 4903 2178 236533968 35342345 91.326 13.646 34.100688 -78.016511 +28480 2473 2750 7580267 2390242 2.927 0.923 34.225734 -77.797334 +28501 20389 10132 274891547 1996396 106.136 0.771 35.242923 -77.516659 +28504 21642 9597 320884329 1665582 123.894 0.643 35.224563 -77.634868 +28508 2737 1015 91455197 612312 35.311 0.236 35.099668 -77.824788 +28510 1502 1067 53669945 33391070 20.722 12.892 34.987612 -76.804461 +28511 694 522 21174431 21565091 8.175 8.326 34.901116 -76.345763 +28512 2896 7063 14925726 32108268 5.763 12.397 34.712151 -76.793416 +28513 10346 4645 235130235 0 90.784 0.000 35.441505 -77.388853 +28515 2915 1263 142046279 17529668 54.844 6.768 35.184068 -76.699387 +28516 11431 6796 545259559 265867196 210.526 102.652 34.903303 -76.550480 +28518 7909 3523 246865417 584796 95.315 0.226 34.894823 -77.747493 +28519 404 215 794576 1202601 0.307 0.464 35.119725 -77.026974 +28520 327 241 56986579 131399469 22.003 50.734 34.991933 -76.323297 +28521 2287 1057 108602310 281958 41.932 0.109 34.817902 -77.736618 +28523 2456 1119 145167731 288460 56.050 0.111 35.210915 -77.286014 +28524 426 267 14411177 24631622 5.564 9.510 34.790935 -76.468562 +28525 3132 1333 115053264 426794 44.422 0.165 35.125496 -77.691316 +28526 2489 1205 221441791 577035 85.499 0.223 35.270197 -77.356588 +28527 1140 499 143914334 456066 55.566 0.176 35.259463 -77.030444 +28528 644 395 7507805 2319143 2.899 0.895 34.732058 -76.538662 +28529 2193 1086 109508992 30263439 42.282 11.685 35.070527 -76.854760 +28530 7332 3164 183798361 794444 70.965 0.307 35.374768 -77.415297 +28531 1207 1177 5804739 4161900 2.241 1.607 34.698739 -76.558460 +28532 23320 9350 431693466 93696332 166.678 36.176 34.895340 -76.890571 +28533 2952 0 1150938 0 0.444 0.000 34.902869 -76.901473 +28537 137 147 65544780 34146807 25.307 13.184 35.232516 -76.527113 +28538 2175 991 75065502 25968 28.983 0.010 35.416645 -77.565077 +28539 15469 6303 126805727 12076453 48.960 4.663 34.696777 -77.213281 +28540 49252 19803 267282866 1442570 103.198 0.557 34.754586 -77.507427 +28543 4699 1430 5339136 1304352 2.061 0.504 34.734489 -77.376708 +28544 5368 2273 29403011 45459 11.353 0.018 34.718075 -77.308684 +28546 42696 16963 145098242 282779 56.023 0.109 34.798974 -77.356169 +28547 21884 1437 67399409 28526809 26.023 11.014 34.669025 -77.366970 +28551 14093 6144 342206638 1990415 132.127 0.769 35.321323 -77.780856 +28552 254 191 42409043 50279552 16.374 19.413 35.300932 -76.546476 +28553 454 337 3183544 5172864 1.229 1.997 34.729600 -76.512376 +28554 243 106 722658 0 0.279 0.000 35.478481 -77.586122 +28555 5175 2259 395823640 2189778 152.828 0.845 34.871187 -77.224973 +28556 963 681 117197002 74432461 45.250 28.739 35.114002 -76.625583 +28557 14429 8037 36782091 23534316 14.202 9.087 34.738960 -76.749232 +28560 28921 13616 303893492 65594351 117.334 25.326 35.125849 -76.977181 +28562 36176 16926 400972848 9456780 154.816 3.651 35.081631 -77.126893 +28570 21432 9900 323343546 22965092 124.844 8.867 34.781518 -76.857549 +28571 2585 1899 133775154 60647938 51.651 23.416 35.068472 -76.691654 +28572 6531 2896 274089208 1196979 105.826 0.462 35.027895 -77.736417 +28573 2176 1068 193611155 2309508 74.754 0.892 34.985070 -77.148842 +28574 15102 6007 331803082 399043 128.110 0.154 34.878931 -77.589588 +28575 316 1730 1557491 12337892 0.601 4.764 34.707959 -76.883568 +28577 522 308 6849785 14332581 2.645 5.534 34.864837 -76.373188 +28578 6363 2250 165364788 1313277 63.848 0.507 35.196952 -77.856972 +28579 622 326 9908690 8034129 3.826 3.102 34.759099 -76.510294 +28580 12657 4529 294956891 151410 113.883 0.058 35.453155 -77.679803 +28581 214 150 22737871 16109496 8.779 6.220 34.844375 -76.435463 +28582 1588 756 42063368 6465026 16.241 2.496 34.751399 -77.154380 +28583 281 143 4420021 794474 1.707 0.307 35.138820 -76.740716 +28584 11396 6294 149007656 29218815 57.532 11.281 34.736766 -77.077619 +28585 3942 1831 460056487 1624309 177.629 0.627 35.076923 -77.412405 +28586 8218 3281 338947740 3820697 130.868 1.475 35.313457 -77.167497 +28587 369 216 8851246 1948671 3.417 0.752 35.193948 -76.661669 +28589 180 99 28123030 2457665 10.858 0.949 34.808441 -76.510879 +28590 23407 9703 108105523 27027 41.740 0.010 35.520683 -77.416661 +28594 3655 6735 14845458 38177070 5.732 14.740 34.689904 -76.969688 +28601 50026 22696 119275835 8377827 46.053 3.235 35.772393 -81.326659 +28602 28981 12677 180485428 1124585 69.686 0.434 35.672123 -81.387667 +28604 6249 9051 170191767 191936 65.711 0.074 36.177700 -81.858589 +28605 3412 4239 74956882 540415 28.941 0.209 36.129632 -81.694929 +28606 2158 1010 112331936 1029122 43.372 0.397 36.053487 -81.322174 +28607 33059 16428 256402734 792893 98.998 0.306 36.218021 -81.652370 +28609 5864 2659 115276142 5204722 44.508 2.010 35.671692 -81.055604 +28610 9913 4154 104308867 1546294 40.274 0.597 35.730324 -81.135305 +28611 885 722 192703647 0 74.403 0.000 36.010955 -81.735254 +28612 12397 5385 216616026 2057469 83.636 0.794 35.650391 -81.537561 +28613 22759 9570 110627317 1796457 42.713 0.694 35.737687 -81.207681 +28615 1876 1236 172447339 590264 66.582 0.228 36.462963 -81.670360 +28616 493 239 6993587 0 2.700 0.000 36.023071 -81.920191 +28617 2261 1400 89363726 1013865 34.504 0.391 36.480702 -81.361979 +28618 2352 1449 102433695 29692 39.550 0.011 36.208178 -81.516799 +28619 1520 715 3090899 0 1.193 0.000 35.758603 -81.602494 +28621 10472 4858 181590160 1436844 70.112 0.555 36.275650 -80.914624 +28622 2527 1500 80286175 0 30.999 0.000 36.192676 -81.947333 +28623 1653 1098 74040514 464386 28.587 0.179 36.534328 -80.971405 +28624 1639 987 161550434 33150 62.375 0.013 36.127737 -81.410206 +28625 36189 15547 506953550 3290268 195.736 1.270 35.868681 -80.890284 +28626 2714 1866 83448106 680083 32.219 0.263 36.292547 -81.517798 +28627 1152 879 51940053 151271 20.054 0.058 36.458749 -81.003763 +28628 479 222 1334438 0 0.515 0.000 35.726329 -81.785107 +28629 75 51 6167955 10515 2.381 0.004 36.346063 -81.365327 +28630 20041 8686 155404170 5345270 60.002 2.064 35.827169 -81.421657 +28631 637 640 64606309 586248 24.945 0.226 36.547594 -81.410274 +28634 5225 2256 163160100 1091619 62.996 0.421 35.972899 -80.756960 +28635 3901 1737 109115604 0 42.130 0.000 36.305463 -81.126045 +28636 5522 2368 154127455 388119 59.509 0.150 35.939426 -81.063433 +28637 1746 765 7441189 0 2.873 0.000 35.718005 -81.419361 +28638 12302 5384 52472436 5519 20.260 0.002 35.845093 -81.477938 +28640 4719 2722 100618043 1264993 38.849 0.488 36.403077 -81.402662 +28642 5745 2718 94425199 671841 36.458 0.259 36.218398 -80.820312 +28643 3521 2168 180304332 895710 69.616 0.346 36.523609 -81.534236 +28644 1494 1209 177195022 770171 68.415 0.297 36.426225 -81.277976 +28645 47703 21948 853994288 1116132 329.729 0.431 35.979227 -81.547182 +28646 342 1201 55964717 142202 21.608 0.055 36.073331 -81.847093 +28647 89 91 15651541 0 6.043 0.000 35.938084 -81.972993 +28649 993 516 90574524 1831 34.971 0.001 36.333842 -81.209458 +28650 11883 4982 115401257 689501 44.557 0.266 35.571814 -81.150614 +28651 7132 3567 227647989 41807 87.895 0.016 36.306214 -81.308783 +28652 46 32 208819 0 0.081 0.000 36.100032 -81.987170 +28654 3495 1704 162746355 42545 62.837 0.016 36.058164 -81.159284 +28655 54996 24339 823748770 6448206 318.051 2.490 35.757931 -81.741356 +28657 9488 6748 413790076 167336 159.765 0.065 36.026471 -81.943352 +28658 27022 11321 190776710 1262764 73.659 0.488 35.637619 -81.235843 +28659 21134 9765 264192527 11719 102.005 0.005 36.214847 -81.144782 +28660 2249 944 82790920 615970 31.966 0.238 35.968615 -80.856248 +28662 140 86 4630794 0 1.788 0.000 36.021516 -81.899121 +28663 614 591 45266992 665536 17.478 0.257 36.532030 -81.309408 +28665 2571 1431 163579216 0 63.158 0.000 36.209834 -81.375474 +28666 368 195 1205998 0 0.466 0.000 35.725264 -81.470655 +28667 559 250 1562936 292950 0.603 0.113 35.771453 -81.426154 +28668 300 752 33855184 243848 13.072 0.094 36.407054 -80.990485 +28669 3146 1416 119911352 251408 46.298 0.097 36.223525 -80.993090 +28670 2719 1260 96255619 675053 37.165 0.261 36.194017 -80.914766 +28671 597 224 1920038 0 0.741 0.000 35.752670 -81.527898 +28672 35 29 5055767 424870 1.952 0.164 36.483565 -81.331342 +28673 5919 3125 65803628 12217585 25.407 4.717 35.619285 -80.994890 +28675 6621 4008 300983080 1991975 116.210 0.769 36.502709 -81.137222 +28676 3483 1644 74046602 358861 28.590 0.139 36.331894 -80.854910 +28677 32940 14914 213449124 7102669 82.413 2.742 35.736732 -80.922989 +28678 5226 2286 115732239 2487749 44.684 0.961 35.822882 -81.059596 +28679 2064 1133 67437479 492575 26.038 0.190 36.261278 -81.828310 +28681 25910 11264 433279304 6647453 167.290 2.567 35.922350 -81.224112 +28682 1129 693 8409239 7756965 3.247 2.995 35.588255 -80.965153 +28683 1697 843 86412652 300205 33.364 0.116 36.390489 -80.911085 +28684 2141 1566 136761910 616876 52.804 0.238 36.336123 -81.608522 +28685 2076 1075 157913903 0 60.971 0.000 36.360792 -81.059832 +28689 1712 799 115707375 436360 44.675 0.168 36.036555 -80.940896 +28690 9295 4466 55933619 295258 21.596 0.114 35.732737 -81.574229 +28692 4067 2443 99660102 79928 38.479 0.031 36.267524 -81.808495 +28693 1700 954 66799244 513987 25.791 0.198 36.473863 -81.564661 +28694 7744 4733 171378558 1316599 66.170 0.508 36.367456 -81.455877 +28697 12930 6043 164480485 4618958 63.506 1.783 36.134008 -81.165721 +28698 2256 1338 64949878 19496 25.077 0.008 36.340894 -81.736245 +28701 3635 1592 46253321 1244287 17.859 0.480 35.705254 -82.640099 +28702 366 524 51362547 4980779 19.831 1.923 35.406390 -83.605365 +28704 18821 8636 85327690 1884702 32.945 0.728 35.457151 -82.579542 +28705 6715 3867 326643062 844354 126.118 0.326 36.033544 -82.156728 +28707 94 176 28531169 0 11.016 0.000 35.397330 -83.065872 +28708 754 398 126174017 0 48.716 0.000 35.271316 -82.862620 +28709 2225 1058 136692522 13398 52.777 0.005 35.771714 -82.381416 +28711 13209 6968 258776647 1449129 99.914 0.560 35.604202 -82.293674 +28712 19347 10759 325450559 1735567 125.657 0.670 35.172713 -82.771532 +28713 8686 5896 353434267 11873393 136.462 4.584 35.369463 -83.499854 +28714 16753 10215 753705145 961002 291.007 0.371 35.889504 -82.303980 +28715 24582 11178 201729702 377822 77.888 0.146 35.511966 -82.711701 +28716 17477 8718 409291009 418353 158.028 0.162 35.439319 -82.847959 +28717 1729 2944 132758967 628607 51.259 0.243 35.049341 -83.093398 +28718 553 377 42820631 160681 16.533 0.062 35.161143 -82.633547 +28719 8048 3733 350060860 0 135.159 0.000 35.517884 -83.334158 +28720 114 212 8215083 0 3.172 0.000 35.450754 -82.253654 +28721 10063 5216 285496831 41953 110.231 0.016 35.662677 -82.958491 +28722 6371 3326 118038578 82880 45.575 0.032 35.208462 -82.061012 +28723 11329 5424 289666605 5629797 111.841 2.174 35.314207 -83.026128 +28725 43 27 706580 0 0.273 0.000 35.366645 -83.255082 +28726 3203 1473 6176921 19385 2.385 0.007 35.281157 -82.417476 +28729 2894 1424 11348960 140391 4.382 0.054 35.320503 -82.600376 +28730 9133 4193 128330892 137602 49.549 0.053 35.517414 -82.378030 +28731 7778 4241 70009086 384858 27.031 0.149 35.288036 -82.394669 +28732 16491 7220 110580921 424379 42.696 0.164 35.452565 -82.445784 +28733 21 138 20085516 2009463 7.755 0.776 35.429102 -83.815701 +28734 27040 16958 780246069 3367316 301.255 1.300 35.189201 -83.412049 +28735 256 325 9794309 0 3.782 0.000 35.475900 -82.350477 +28736 787 1089 91386875 136366 35.285 0.053 35.175631 -83.086520 +28739 19786 11204 173654103 1651960 67.048 0.638 35.260468 -82.553068 +28740 1364 902 143106431 1234857 55.254 0.477 36.091266 -82.272921 +28741 3197 5691 225154953 991125 86.933 0.383 35.059869 -83.214162 +28742 2710 1230 63386799 493083 24.474 0.190 35.382690 -82.651028 +28743 2125 1408 320453524 1429980 123.728 0.552 35.800359 -82.881144 +28745 551 685 1614121 601901 0.623 0.232 35.525282 -82.972046 +28746 2388 3181 121529136 3296014 46.923 1.273 35.461364 -82.168077 +28747 2198 2015 136383237 2186585 52.658 0.844 35.155183 -82.922658 +28748 11334 5021 219038138 0 84.571 0.000 35.649564 -82.757716 +28749 50 134 2677224 0 1.034 0.000 35.840722 -82.098559 +28751 2916 4091 115965926 0 44.775 0.000 35.505021 -83.120685 +28752 30600 13773 634388853 5832936 244.939 2.252 35.710565 -82.035893 +28753 11670 5756 683531002 3406719 263.913 1.315 35.864080 -82.712731 +28754 7679 3912 223736883 0 86.385 0.000 35.875581 -82.515681 +28756 4504 2400 232726710 1530138 89.856 0.591 35.351924 -82.186268 +28757 280 417 3155383 0 1.218 0.000 35.649746 -82.308567 +28759 6922 3170 60130909 528198 23.217 0.204 35.381462 -82.588562 +28761 7816 3694 280245863 17096190 108.204 6.601 35.685330 -81.910540 +28762 6857 3356 258300952 495182 99.731 0.191 35.626790 -82.231583 +28763 2725 1743 143656024 205258 55.466 0.079 35.028551 -83.466763 +28766 1262 635 15108018 0 5.833 0.000 35.251041 -82.619825 +28768 6813 3423 214833637 526889 82.948 0.203 35.325842 -82.707721 +28771 8558 5404 703906327 21458285 271.780 8.285 35.347020 -83.842814 +28772 1239 657 32643917 0 12.604 0.000 35.116966 -82.827217 +28773 3378 2393 144288592 438818 55.710 0.169 35.265429 -82.309708 +28774 1013 2096 117346720 481715 45.308 0.186 35.093531 -82.995061 +28775 296 309 25483900 21498 9.839 0.008 35.021414 -83.322870 +28777 10638 4768 176501999 132815 68.148 0.051 35.904438 -82.068523 +28778 10381 4413 89052068 277927 34.383 0.107 35.629121 -82.405196 +28779 16111 8828 277918185 0 107.305 0.000 35.355178 -83.211452 +28781 939 1016 202676409 6161772 78.254 2.379 35.224818 -83.635607 +28782 6584 3819 128527866 272888 49.625 0.105 35.233960 -82.147409 +28783 1593 1161 166267996 2990112 64.196 1.154 35.262145 -83.010412 +28785 7338 4821 395666892 1146853 152.768 0.443 35.653307 -83.139769 +28786 20714 11492 192974783 207589 74.508 0.080 35.462062 -82.989025 +28787 19718 9033 205997676 47337 79.536 0.018 35.741288 -82.515490 +28789 5097 3386 147711816 193682 57.032 0.075 35.407057 -83.316777 +28790 3205 1748 108463500 711622 41.878 0.275 35.214632 -82.514329 +28791 14171 7184 42601991 364366 16.449 0.141 35.356109 -82.508200 +28792 32689 16502 260554430 720985 100.601 0.278 35.383322 -82.369202 +28801 15019 7460 13162694 247417 5.082 0.096 35.594348 -82.557917 +28803 28693 14756 99274489 934858 38.330 0.361 35.531707 -82.523017 +28804 20507 9596 68832519 1500536 26.576 0.579 35.647839 -82.564371 +28805 17620 9221 67237743 42792 25.961 0.017 35.625161 -82.484588 +28806 38550 18005 98324483 892690 37.963 0.345 35.571971 -82.614729 +28901 5354 2990 163755960 0 63.227 0.000 35.198079 -83.810349 +28902 1373 811 58735974 123796 22.678 0.048 35.022285 -83.959171 +28904 8533 5936 491467446 15099758 189.757 5.830 35.068396 -83.733464 +28905 3129 1714 116495521 0 44.979 0.000 35.163946 -83.940087 +28906 18475 12516 864349646 29262798 333.727 11.298 35.100136 -84.138594 +28909 1030 602 25464510 0 9.832 0.000 35.001661 -83.904773 +29001 2148 942 170493258 123799 65.828 0.048 33.786644 -80.174065 +29003 6989 3244 364959513 2956126 140.912 1.141 33.241221 -81.023815 +29006 9565 4469 373930717 6924207 144.375 2.673 33.869101 -81.551078 +29009 2440 1175 280299379 805603 108.224 0.311 34.455300 -80.376154 +29010 13491 5207 534716082 1566720 206.455 0.605 34.223328 -80.272722 +29014 1891 907 426285615 363177 164.590 0.140 34.523382 -81.114513 +29015 1738 825 314370157 23891943 121.379 9.225 34.437442 -81.330125 +29016 16393 6469 223080730 1622092 86.132 0.626 34.202513 -80.996999 +29018 3749 1752 283888449 976157 109.610 0.377 33.348797 -80.639176 +29020 22463 10948 589290591 14001019 227.526 5.406 34.316649 -80.581590 +29030 1967 1018 235050121 10305305 90.753 3.979 33.576312 -80.647573 +29031 1349 750 316813523 1632578 122.322 0.630 34.548096 -81.492609 +29032 4424 1859 204580594 797025 78.989 0.308 34.345114 -80.445025 +29033 11603 5546 23106989 1311200 8.922 0.506 33.953426 -81.057439 +29036 19140 8296 139969420 43167166 54.042 16.667 34.134004 -81.339914 +29037 824 554 174068049 4727778 67.208 1.825 34.189937 -81.867693 +29038 2445 1154 207790922 917875 80.229 0.354 33.372643 -80.981506 +29039 4215 1774 66914393 532714 25.836 0.206 33.422420 -80.915021 +29040 8767 3656 145616098 703610 56.223 0.272 34.068795 -80.440478 +29042 5868 2649 169250574 1776013 65.348 0.686 33.297671 -81.158698 +29044 5652 2611 356958084 4777316 137.822 1.845 33.936526 -80.692350 +29045 21871 8694 181527960 2413509 70.088 0.932 34.185012 -80.806315 +29046 237 111 6456051 25174 2.493 0.010 34.102331 -80.153633 +29047 3683 2059 169519147 12339994 65.452 4.764 33.532715 -80.585847 +29048 4864 2864 123122222 26661457 47.538 10.294 33.390561 -80.295284 +29051 951 402 109938218 251080 42.447 0.097 33.861626 -80.127828 +29052 2021 835 148530092 790977 57.348 0.305 33.798397 -80.741126 +29053 18830 7574 210177413 2725531 81.150 1.052 33.827497 -81.090983 +29054 9612 4269 147383317 14983621 56.905 5.785 33.941953 -81.383081 +29055 4337 2029 91240942 4891449 35.228 1.889 34.574244 -80.914866 +29056 2448 1108 269935672 1171928 104.223 0.452 33.608671 -80.005756 +29058 4746 2130 367723819 4147041 141.979 1.601 34.555045 -80.742436 +29059 6068 2744 287508199 1383349 111.008 0.534 33.330030 -80.418508 +29061 13717 5628 230585372 3778118 89.030 1.459 33.897493 -80.850604 +29062 176 99 41937859 1122739 16.192 0.433 34.004286 -80.605521 +29063 32717 12659 103766253 5540647 40.064 2.139 34.142131 -81.206184 +29065 677 361 62561954 10643771 24.155 4.110 34.285140 -81.296583 +29067 10949 4329 505408577 696023 195.139 0.269 34.544166 -80.537094 +29069 5020 2229 198073646 488801 76.477 0.189 34.179848 -80.094729 +29070 15330 7370 428203657 22324833 165.330 8.620 33.916116 -81.453057 +29072 49566 20521 177334052 48956733 68.469 18.902 34.001778 -81.272410 +29073 40775 16511 207866345 2040533 80.258 0.788 33.892184 -81.235774 +29074 241 451 52355801 9480122 20.215 3.660 34.441645 -80.818150 +29075 2963 1284 109847485 1436066 42.412 0.554 34.218134 -81.299071 +29078 15293 6098 321408807 3964189 124.097 1.531 34.185150 -80.706336 +29079 151 78 552438 0 0.213 0.000 34.286517 -80.113717 +29080 3240 1435 342755115 353564 132.338 0.137 34.012164 -80.085577 +29081 1352 732 208845300 388344 80.636 0.150 33.089080 -81.047373 +29082 572 310 105234844 65958 40.631 0.025 33.038215 -80.939141 +29101 3023 1325 279028846 2752822 107.734 1.063 34.460246 -80.247858 +29102 18248 9053 635559722 21320190 245.391 8.232 33.641983 -80.188481 +29104 1531 704 154624299 184234 59.701 0.071 34.001026 -80.213437 +29105 1514 629 75787683 491380 29.262 0.190 33.807397 -81.593640 +29107 3166 1453 196883970 1418435 76.017 0.548 33.529824 -81.124331 +29108 20469 8784 539324317 4718607 208.234 1.822 34.305524 -81.627342 +29111 1632 657 167441848 107158 64.650 0.041 33.789038 -80.006369 +29112 4712 2296 299891455 1705460 115.789 0.658 33.626435 -81.079954 +29113 1618 748 111531650 590149 43.063 0.228 33.432423 -81.135334 +29114 2190 960 96031719 20304 37.078 0.008 33.956036 -79.932670 +29115 31128 14125 338071859 2070741 130.530 0.800 33.477355 -80.849100 +29117 1160 0 230705 0 0.089 0.000 33.498260 -80.848826 +29118 15861 6790 201880891 995269 77.947 0.384 33.567550 -80.885684 +29122 54 36 1131322 99823 0.437 0.039 34.238760 -81.328235 +29123 7617 3097 178855546 724624 69.057 0.280 33.764652 -81.271451 +29125 3072 1509 274366569 50549336 105.934 19.517 33.700612 -80.462564 +29126 2267 1051 199587495 6808916 77.061 2.629 34.328933 -81.419482 +29127 8333 4757 265594645 31477398 102.547 12.153 34.153252 -81.512463 +29128 5866 2274 279683401 3296921 107.986 1.273 34.095748 -80.526305 +29129 3164 1370 214286199 1576117 82.736 0.609 33.781876 -81.676812 +29130 6655 3495 390620096 18892658 150.819 7.294 34.331608 -80.880412 +29133 1044 467 141392332 100056 54.592 0.039 33.358911 -80.803127 +29135 8919 4154 498173594 3880495 192.346 1.498 33.692181 -80.787131 +29137 2539 1305 220670275 1343834 85.201 0.519 33.595632 -81.321382 +29138 10883 4540 572853943 5821916 221.180 2.248 34.042392 -81.776152 +29142 4890 2484 133857445 16878852 51.683 6.517 33.463477 -80.524523 +29145 837 496 115458370 284894 44.579 0.110 34.228719 -81.766201 +29146 1767 901 164577137 368778 63.544 0.142 33.508249 -81.295412 +29147 0 0 485430 0 0.187 0.000 34.091774 -80.966483 +29148 6230 4496 269438444 188581884 104.031 72.812 33.534198 -80.337458 +29150 40031 17878 111300031 1196299 42.973 0.462 33.874292 -80.353988 +29152 2393 894 12039288 65176 4.648 0.025 33.972299 -80.465806 +29153 15633 6625 370082042 524936 142.889 0.203 33.959249 -80.308378 +29154 28135 11707 205710796 2425108 79.425 0.936 33.879261 -80.440418 +29160 8255 3710 303697870 3090402 117.258 1.193 33.746888 -81.035516 +29161 11383 4865 348728034 399654 134.645 0.154 34.104703 -79.943496 +29162 4122 1136 86853718 121855 33.534 0.047 33.885889 -80.014019 +29163 1975 971 76750775 1265575 29.634 0.489 33.429587 -80.439904 +29164 4690 2147 261348813 2359621 100.907 0.911 33.662168 -81.416471 +29166 904 447 84970465 341370 32.807 0.132 33.901804 -81.705740 +29168 3582 1526 294616390 4860635 113.752 1.877 33.849319 -80.552297 +29169 22845 11454 31065704 913949 11.995 0.353 33.997527 -81.097406 +29170 19988 8588 62391008 894938 24.089 0.346 33.937674 -81.147203 +29172 9293 3894 65038176 1216940 25.111 0.470 33.912417 -81.076978 +29175 378 186 19439166 0 7.506 0.000 34.443849 -80.598356 +29178 3377 1805 379204014 1251042 146.411 0.483 34.492522 -81.604974 +29180 14267 6868 789924456 11530044 304.992 4.452 34.366465 -81.093684 +29201 20594 9861 29578724 1475856 11.420 0.570 33.982484 -81.028098 +29202 135 161 24408 0 0.009 0.000 33.993555 -81.031009 +29203 39843 17023 164068680 2599174 63.347 1.004 34.101723 -81.042085 +29204 19952 8973 16731714 21959 6.460 0.008 34.029148 -81.002526 +29205 24822 12913 17024521 0 6.573 0.000 33.990057 -80.997251 +29206 17788 9015 22201127 1978104 8.572 0.764 34.026415 -80.958995 +29207 11592 10 169398947 1993558 65.405 0.770 34.042447 -80.845986 +29208 695 0 171571 0 0.066 0.000 33.998133 -81.028152 +29209 33324 14765 134032184 2376159 51.750 0.917 33.926751 -80.950364 +29210 40356 18469 41346365 1886591 15.964 0.728 34.046162 -81.106580 +29212 28798 12912 58491696 23828341 22.584 9.200 34.076232 -81.198752 +29223 50141 22155 66070797 1570765 25.510 0.606 34.092634 -80.919271 +29225 1228 0 41936 0 0.016 0.000 33.996177 -81.025028 +29229 44229 16734 53138241 306743 20.517 0.118 34.139526 -80.888209 +29301 31051 13806 70933338 536679 27.388 0.207 34.934028 -82.010697 +29302 16571 7694 128697478 1499327 49.690 0.579 34.884446 -81.843603 +29303 25058 10308 80780452 282590 31.190 0.109 34.995782 -81.961056 +29306 15861 7557 49276251 709374 19.026 0.274 34.892662 -81.921576 +29307 18751 9252 116775125 1358374 45.087 0.524 34.982716 -81.831555 +29316 22281 8986 56396320 91913 21.775 0.035 35.043045 -81.975107 +29320 530 248 1405761 840 0.543 0.000 34.958401 -81.993676 +29321 2596 1236 101443132 42250 39.167 0.016 34.714662 -81.741065 +29322 8781 3729 151491229 1561034 58.491 0.603 35.121041 -82.132234 +29323 14446 6129 182036855 3437080 70.285 1.327 35.126341 -81.907463 +29324 167 79 571230 32402 0.221 0.013 34.983686 -81.826635 +29325 15222 6384 399943595 2167234 154.419 0.837 34.472020 -81.841751 +29329 278 119 595408 28558 0.230 0.011 34.994056 -81.835884 +29330 8401 3630 93785225 860447 36.211 0.332 35.052613 -81.804142 +29331 142 78 4604124 10209 1.778 0.004 34.651836 -81.844085 +29332 2435 1897 123614719 7823191 47.728 3.021 34.278760 -81.970367 +29333 374 175 984872 0 0.380 0.000 34.971205 -81.910208 +29334 11331 4793 57473615 1500662 22.191 0.579 34.905551 -82.124414 +29335 5654 2024 230560585 2050740 89.020 0.792 34.646690 -81.904455 +29338 85 45 235165 0 0.091 0.000 35.135513 -82.001598 +29340 20763 9049 422255926 5117040 163.034 1.976 34.972033 -81.585721 +29341 19330 8277 242750053 2756185 93.726 1.064 35.113676 -81.714522 +29346 307 129 550320 0 0.212 0.000 34.945078 -81.836373 +29349 30129 12399 201801353 7618646 77.916 2.942 35.069320 -82.071005 +29351 1563 763 12311866 19916 4.754 0.008 34.421034 -81.808045 +29353 4174 1969 241500643 777053 93.244 0.300 34.830743 -81.648605 +29355 810 376 177292655 219002 68.453 0.085 34.289571 -81.826418 +29356 8074 4214 212216093 1963578 81.937 0.758 35.142074 -82.280831 +29360 20977 9453 375330590 1249707 144.916 0.483 34.498634 -82.050627 +29364 592 302 8162923 1011113 3.152 0.390 34.762480 -81.470669 +29365 10146 4268 47295963 1882523 18.261 0.727 34.980988 -82.171851 +29368 68 57 413636 0 0.160 0.000 35.081579 -81.863411 +29369 13044 5338 73848623 1011670 28.513 0.391 34.865620 -82.019463 +29370 1045 475 123895647 144941 47.836 0.056 34.373805 -81.963361 +29372 4507 2176 110267217 708814 42.574 0.274 34.901747 -81.711273 +29373 297 140 1713021 174903 0.661 0.068 34.924954 -81.746754 +29374 3534 1526 133979406 733520 51.730 0.283 34.784549 -81.853472 +29375 95 49 368350 0 0.142 0.000 34.861302 -82.113804 +29376 6909 2752 96581139 1150547 37.290 0.444 34.811382 -81.944219 +29377 761 359 3392652 62329 1.310 0.024 34.930634 -82.095061 +29378 207 88 225320 0 0.087 0.000 34.966907 -81.968539 +29379 19186 9378 661439317 2222855 255.383 0.858 34.682438 -81.608705 +29384 3945 2644 122650557 9039543 47.356 3.490 34.343368 -82.090062 +29385 7221 3029 49439616 843226 19.089 0.326 34.972963 -82.101417 +29388 14470 6278 253365166 1899061 97.825 0.733 34.764315 -82.044633 +29401 10895 5595 4017465 4414377 1.551 1.704 32.777180 -79.932000 +29403 20818 10689 13837181 5473077 5.343 2.113 32.805900 -79.943180 +29404 1348 377 13171747 48625 5.086 0.019 32.898999 -80.049739 +29405 26328 11347 38502950 7170312 14.866 2.768 32.856252 -79.981994 +29406 29314 13211 37637298 1028544 14.532 0.397 32.937740 -80.035403 +29407 34827 17513 39752637 6653202 15.349 2.569 32.798930 -79.997803 +29409 2100 44 166970 0 0.064 0.000 32.796088 -79.960493 +29410 17816 7809 27386186 2123461 10.574 0.820 32.932658 -80.002751 +29412 35850 17302 101625607 31855642 39.238 12.300 32.712647 -79.947881 +29414 31883 15554 91340251 3630772 35.267 1.402 32.839964 -80.089180 +29418 23540 10960 34927465 979741 13.486 0.378 32.909648 -80.094765 +29420 21834 8389 29046494 415421 11.215 0.160 32.931762 -80.100722 +29423 956 0 103115 0 0.040 0.000 32.978760 -80.071205 +29424 389 7 47840 0 0.018 0.000 32.783637 -79.937365 +29426 1741 808 174299019 1291763 67.297 0.499 32.797192 -80.370638 +29429 2737 1202 281922927 59643327 108.851 23.028 32.970668 -79.658200 +29431 6071 2785 203852193 26552588 78.708 10.252 33.273223 -79.881631 +29432 2853 1462 303280315 508033 117.097 0.196 33.231450 -80.808833 +29434 537 269 143755891 2150261 55.504 0.830 33.140888 -79.843725 +29435 4122 1859 177963473 84151 68.712 0.032 32.972972 -80.466445 +29436 4471 2337 208872113 84777867 80.646 32.733 33.315358 -80.187250 +29437 2380 1100 241247530 679500 93.146 0.262 33.139994 -80.431756 +29438 2408 3481 193374218 47743997 74.662 18.434 32.564708 -80.322390 +29439 2399 2236 7531346 2075588 2.908 0.801 32.654787 -79.951857 +29440 28469 13117 1354350578 131939533 522.918 50.942 33.381110 -79.329760 +29445 53588 20609 151553431 9278574 58.515 3.582 32.999295 -79.967298 +29446 1138 660 439149643 61218579 169.557 23.637 32.630668 -80.551510 +29448 2356 1042 125367768 922620 48.405 0.356 33.258064 -80.452695 +29449 7749 3545 204152028 29712858 78.824 11.472 32.700369 -80.287056 +29450 3105 1335 374079164 5336610 144.433 2.060 33.065935 -79.784197 +29451 4205 4398 25927753 16893034 10.011 6.522 32.822611 -79.754581 +29452 394 187 149228073 15509581 57.617 5.988 32.677951 -80.461468 +29453 1252 578 359396994 2700699 138.764 1.043 33.225592 -79.642781 +29455 20478 13079 277368420 28537198 107.093 11.018 32.624718 -80.040587 +29456 27864 10732 47223225 105809 18.233 0.041 32.985877 -80.115440 +29458 2713 1400 427938395 70828875 165.228 27.347 33.093141 -79.461488 +29461 30141 12642 421519829 28654073 162.750 11.063 33.159834 -80.006461 +29464 43649 21157 77038429 18492226 29.745 7.140 32.816699 -79.858222 +29466 28725 11411 76030200 10368677 29.355 4.003 32.877758 -79.792013 +29468 2107 1147 193569412 94820109 74.738 36.610 33.421815 -80.058167 +29469 855 378 56890012 52241951 21.965 20.171 33.257863 -80.056370 +29470 4232 1767 217602781 1309510 84.017 0.506 32.826948 -80.253676 +29471 1537 729 108150473 135242 41.757 0.052 33.192675 -80.670417 +29472 9416 3234 480658585 2288340 185.583 0.884 33.044311 -80.326823 +29474 2176 1029 290782088 284004 112.272 0.110 32.884258 -80.523838 +29475 2874 1344 277756893 362532 107.243 0.140 32.957264 -80.806480 +29477 6789 3068 286842260 686643 110.750 0.265 33.163135 -80.564934 +29479 7337 3203 240841545 3002369 92.989 1.159 33.379002 -79.888317 +29481 1841 854 231214884 243392 89.273 0.094 33.108529 -80.800481 +29482 1791 1054 6665124 14805543 2.573 5.716 32.764502 -79.854987 +29483 66731 26575 350429585 417723 135.302 0.161 33.051384 -80.188540 +29485 45057 18632 92503236 1228270 35.716 0.474 32.948519 -80.190585 +29487 2725 1324 108513378 22600514 41.897 8.726 32.657682 -80.183948 +29488 22220 9789 595926334 1529071 230.088 0.590 32.906763 -80.672836 +29492 10262 4950 128831992 25784493 49.742 9.955 32.903802 -79.911163 +29493 117 52 2194201 0 0.847 0.000 33.034143 -80.842844 +29501 43220 19447 139086997 1229302 53.702 0.475 34.205933 -79.826260 +29505 24279 10370 133849311 118338 51.680 0.046 34.130066 -79.688893 +29506 20960 8522 328288553 3349862 126.753 1.293 34.213891 -79.646192 +29510 11060 4824 787383988 4931295 304.011 1.904 33.454312 -79.613121 +29511 5146 2247 159108499 192118 61.432 0.074 33.975732 -79.122716 +29512 19514 7730 561552670 7141321 216.817 2.757 34.618873 -79.718217 +29516 829 386 241746327 2635050 93.339 1.017 34.437454 -79.634640 +29518 1232 568 125964350 0 48.635 0.000 33.788608 -79.847975 +29519 285 142 11110155 0 4.290 0.000 34.018664 -79.359810 +29520 14617 6608 347122331 6468049 134.025 2.497 34.679486 -79.927292 +29525 2029 903 129006633 219601 49.810 0.085 34.552581 -79.540687 +29526 39033 17160 475926328 3609705 183.756 1.394 33.853903 -78.964476 +29527 22027 9676 401205431 8379849 154.906 3.235 33.785195 -79.145938 +29530 2915 1210 99154864 32147 38.284 0.012 33.996055 -79.740075 +29532 20871 9119 268986048 1366315 103.856 0.528 34.280331 -79.869336 +29536 17722 7473 336628398 815903 129.973 0.315 34.419502 -79.373048 +29540 5599 2251 285909137 3405847 110.390 1.315 34.377419 -79.846171 +29541 9465 3766 203454231 126045 78.554 0.049 34.064949 -79.740750 +29543 606 261 47857188 0 18.478 0.000 34.287604 -79.265929 +29544 4909 2133 295179013 2419640 113.969 0.934 33.926098 -79.255583 +29545 1657 747 93063087 159797 35.932 0.062 34.163660 -78.966477 +29546 2834 1253 377391402 8273129 145.712 3.194 33.882357 -79.351821 +29547 2917 1157 103033826 215692 39.782 0.083 34.496287 -79.334829 +29550 32284 14406 552379341 9161019 213.275 3.537 34.399975 -80.082806 +29554 9332 4198 582323949 3713826 224.837 1.434 33.704050 -79.381598 +29555 6440 2656 238347670 3575645 92.027 1.381 33.841627 -79.466397 +29556 12870 5889 451481169 476773 174.318 0.184 33.668097 -79.762707 +29560 13664 6022 418551360 229733 161.604 0.089 33.830403 -79.744580 +29563 2676 1245 98006524 388656 37.841 0.150 34.353366 -79.208673 +29564 985 506 169391623 901119 65.402 0.348 33.449386 -79.848408 +29565 7127 3134 320325211 1379059 123.678 0.532 34.358052 -79.499289 +29566 15179 10234 78678484 1506631 30.378 0.582 33.873402 -78.666957 +29567 564 237 55259926 23608 21.336 0.009 34.558925 -79.429607 +29568 12224 6322 238462477 714129 92.071 0.276 33.913560 -78.750284 +29569 15951 6898 451326154 753897 174.258 0.291 34.036840 -78.916972 +29570 3913 1767 124168109 875225 47.942 0.338 34.667376 -79.564322 +29571 15622 6932 498088735 3688344 192.313 1.424 34.135045 -79.425036 +29572 7893 15369 21224561 901124 8.195 0.348 33.771560 -78.784745 +29574 11909 5513 260179761 681096 100.456 0.263 34.165504 -79.260681 +29575 15512 17103 26153033 249394 10.098 0.096 33.629225 -78.970339 +29576 24446 18716 94767261 6877344 36.590 2.655 33.562470 -79.056329 +29577 26996 20986 61381232 868838 23.699 0.335 33.698784 -78.902868 +29579 32180 17058 113385932 746923 43.779 0.288 33.753215 -78.916899 +29580 1450 686 180251622 322913 69.596 0.125 33.653101 -79.551975 +29581 4650 2279 419433142 2373489 161.944 0.916 34.199275 -79.113015 +29582 14622 28082 56317313 4776683 21.744 1.844 33.838529 -78.660551 +29583 5438 2335 275788160 1573687 106.482 0.608 33.977851 -79.571077 +29584 2563 1231 281959054 869537 108.865 0.336 34.583313 -80.065768 +29585 13606 10448 122059305 10420095 47.127 4.023 33.520097 -79.135803 +29588 36499 17559 107991227 2325236 41.696 0.898 33.671137 -79.024270 +29590 3677 1238 257089741 224126 99.263 0.087 33.568920 -79.848696 +29591 5467 2304 187564886 107750 72.419 0.042 33.937999 -79.762290 +29592 1197 506 109577318 109876 42.308 0.042 34.266958 -79.478986 +29593 1954 995 209792226 2417585 81.001 0.933 34.492830 -79.857051 +29594 121 68 5938085 0 2.293 0.000 34.640233 -79.577360 +29596 2424 1171 171031780 3590011 66.036 1.386 34.744162 -79.830739 +29601 10550 5683 11079356 61416 4.278 0.024 34.847112 -82.402264 +29605 34414 15694 66249223 453858 25.579 0.175 34.774425 -82.376610 +29607 34487 16564 74598493 886524 28.803 0.342 34.811726 -82.331435 +29609 27722 12942 62545874 303566 24.149 0.117 34.912592 -82.388170 +29611 28799 12804 59891911 1302062 23.124 0.503 34.830934 -82.458497 +29613 2334 10 1757000 113540 0.678 0.044 34.924566 -82.438736 +29614 2720 107 497342 0 0.192 0.000 34.873771 -82.363149 +29615 35151 17340 49675319 456357 19.180 0.176 34.856825 -82.296139 +29617 25685 11375 60193474 852901 23.241 0.329 34.911021 -82.468095 +29620 12934 6272 649110765 4825504 250.623 1.863 34.182424 -82.425604 +29621 39101 17262 221780308 4982842 85.630 1.924 34.506502 -82.605626 +29624 14610 7145 72651257 227226 28.051 0.088 34.435943 -82.624115 +29625 27538 13057 124261985 19207490 47.978 7.416 34.559027 -82.763452 +29626 12364 5847 133855101 26088614 51.682 10.073 34.460802 -82.756514 +29627 18367 8052 321803426 2597028 124.249 1.003 34.517279 -82.476617 +29628 2759 1360 129584813 20942267 50.033 8.086 34.089119 -82.559230 +29630 14186 6529 157507945 5484866 60.814 2.118 34.738673 -82.799161 +29631 13318 6131 22527647 1573395 8.698 0.607 34.681567 -82.815832 +29634 5589 95 3632666 72852 1.403 0.028 34.676518 -82.835950 +29635 1254 938 179291357 2325336 69.225 0.898 35.077658 -82.626703 +29638 2944 1317 153820563 417530 59.390 0.161 34.363867 -82.338204 +29639 1742 564 44592189 198882 17.217 0.077 34.303618 -82.428815 +29640 30574 13303 226112144 1182796 87.302 0.457 34.883978 -82.579832 +29642 29561 12038 128876845 657705 49.760 0.254 34.775165 -82.563663 +29643 2756 1988 69438806 15060823 26.810 5.815 34.516190 -82.996445 +29644 18578 7554 212438046 1386474 82.023 0.535 34.668477 -82.190059 +29645 9982 4208 277270717 1820896 107.055 0.703 34.592282 -82.124610 +29646 28159 12334 291358811 3364324 112.494 1.299 34.136053 -82.148470 +29649 26235 11427 140413445 4188248 54.214 1.617 34.238919 -82.145019 +29650 32632 13832 46605478 220119 17.994 0.085 34.898246 -82.257851 +29651 42844 17614 234572295 6047849 90.569 2.335 35.023830 -82.279564 +29653 4811 2170 179829523 3804232 69.433 1.469 34.306003 -82.232469 +29654 9937 4534 305121220 2005026 117.808 0.774 34.460528 -82.361886 +29655 7796 3954 385658187 29591766 148.903 11.425 34.265624 -82.642346 +29657 15116 6433 164676088 853884 63.582 0.330 34.767088 -82.686571 +29658 333 206 64546186 1232648 24.921 0.476 34.760806 -83.284445 +29659 118 92 1837885 0 0.710 0.000 34.209770 -82.646988 +29661 5648 2647 178346335 787359 68.860 0.304 35.147593 -82.529539 +29662 15090 6645 14757707 65960 5.698 0.025 34.778208 -82.301835 +29664 1808 1213 248197292 1140805 95.830 0.440 34.860889 -83.157553 +29665 127 81 544297 817 0.210 0.000 34.725435 -82.913642 +29666 6590 3196 319773455 9272981 123.465 3.580 34.113326 -81.979552 +29667 269 122 1357539 0 0.524 0.000 34.764792 -82.756690 +29669 12387 5432 162276978 1696451 62.655 0.655 34.639372 -82.413576 +29670 8673 4249 142896901 803781 55.173 0.310 34.643979 -82.723237 +29671 18030 8261 331241876 1540486 127.893 0.595 34.934777 -82.728691 +29672 11868 6340 100434178 35644153 38.778 13.762 34.751278 -82.934285 +29673 25348 10565 181168763 1916193 69.950 0.740 34.713864 -82.455898 +29676 5201 3606 189054940 35305240 72.995 13.631 34.950234 -82.982932 +29678 21676 10477 204707226 19518665 79.038 7.536 34.635217 -82.939747 +29680 27285 10142 80382356 972400 31.036 0.375 34.685122 -82.288811 +29681 46979 18131 107085041 672960 41.346 0.260 34.767679 -82.225003 +29682 3818 1874 69034105 12077236 26.654 4.663 34.833946 -82.854386 +29683 291 139 202830 0 0.078 0.000 35.029999 -82.494173 +29684 4862 2026 145571993 11295974 56.206 4.361 34.379410 -82.718488 +29685 1230 1102 223231258 16912405 86.190 6.530 34.991238 -82.842298 +29686 1027 648 79257760 1035967 30.602 0.400 34.959550 -83.053602 +29687 39561 16808 122192334 1929152 47.179 0.745 34.986636 -82.327451 +29689 3889 2625 92237845 31783799 35.613 12.272 34.534253 -82.868342 +29690 20914 8357 274159220 4241312 105.853 1.638 35.059806 -82.417198 +29691 11333 5092 177605377 914994 68.574 0.353 34.782583 -83.083166 +29692 4856 2366 125151356 1793290 48.321 0.692 34.412630 -82.219492 +29693 14215 7341 430950469 13623504 166.391 5.260 34.646708 -83.146844 +29696 4125 2137 60170169 3248647 23.232 1.254 34.780070 -83.008840 +29697 12207 5078 99586604 1188131 38.451 0.459 34.625593 -82.548639 +29702 10059 4474 256299221 2761776 98.958 1.066 35.116068 -81.473073 +29704 3721 1500 69999654 2026348 27.027 0.782 34.831891 -80.909786 +29706 19847 8803 705090648 4166927 272.237 1.609 34.715492 -81.234538 +29707 17742 7852 82245995 246731 31.755 0.095 34.974384 -80.862388 +29708 25035 9825 49234560 3235466 19.010 1.249 35.048705 -80.987118 +29709 6498 3099 252987008 1099949 97.679 0.425 34.720167 -80.098457 +29710 29449 12570 293968348 11467984 113.502 4.428 35.106284 -81.221471 +29712 2317 979 72284647 94153 27.909 0.036 34.797966 -80.975531 +29714 2927 1247 84651233 3230104 32.684 1.247 34.712239 -80.915313 +29715 24823 9931 87623715 2404765 33.832 0.928 35.009844 -80.928739 +29717 1251 550 99179431 1089717 38.293 0.421 34.950733 -81.448844 +29718 3856 1787 303596121 1533431 117.219 0.592 34.624163 -80.331295 +29720 46041 19646 734754454 10692040 283.690 4.128 34.740563 -80.732729 +29724 43 16 642770 0 0.248 0.000 34.773948 -81.011121 +29726 1750 706 104320843 397869 40.279 0.154 34.860843 -81.236135 +29727 1650 778 127388459 409797 49.185 0.158 34.719265 -80.264601 +29728 10301 4640 251064708 869802 96.937 0.336 34.764953 -80.400558 +29729 2271 922 173845684 242318 67.122 0.094 34.689134 -81.006760 +29730 52365 22700 310899381 3371314 120.039 1.302 34.889870 -81.017838 +29732 53781 23431 138128208 4393237 53.332 1.696 34.971373 -81.081285 +29733 1751 0 305919 0 0.118 0.000 34.939585 -81.031961 +29741 2082 1065 96153790 423628 37.125 0.164 34.725288 -80.195526 +29742 2460 1132 210638095 866591 81.328 0.335 34.869975 -81.392257 +29743 1071 478 80816855 140451 31.204 0.054 35.011187 -81.386674 +29745 28919 11502 350042742 11201136 135.152 4.325 34.991118 -81.214180 +29801 26778 12180 226786387 1013891 87.563 0.391 33.588993 -81.697037 +29803 36843 17234 493022104 1936725 190.357 0.748 33.490267 -81.762699 +29805 5864 2571 255965685 1794958 98.829 0.693 33.646054 -81.604486 +29809 2206 1090 16222350 4035 6.263 0.002 33.418902 -81.692490 +29810 4990 2382 315365008 3609339 121.763 1.394 32.986368 -81.378110 +29812 11864 5401 716340786 17007420 276.581 6.567 33.230843 -81.431281 +29816 1033 486 2550550 52640 0.985 0.020 33.501116 -81.873493 +29817 4913 2419 278670512 1600946 107.595 0.618 33.370534 -81.273172 +29819 1523 715 176671225 360977 68.213 0.139 34.044227 -82.227378 +29821 1487 697 160617477 13185863 62.015 5.091 33.643047 -82.107049 +29824 8535 2994 579891694 2867634 223.897 1.107 33.821285 -81.997605 +29826 164 93 8694415 12865 3.357 0.005 33.385403 -81.359112 +29827 4624 1640 271163490 1078776 104.697 0.417 32.963155 -81.253906 +29828 1003 518 1745048 13261 0.674 0.005 33.522812 -81.828197 +29829 8651 3633 85052464 1194620 32.839 0.461 33.574691 -81.857801 +29831 4146 1892 298282939 5362069 115.168 2.070 33.297451 -81.799578 +29832 5335 2392 251175193 2633921 96.979 1.017 33.838994 -81.803656 +29834 1687 796 4882842 257833 1.885 0.100 33.512930 -81.856747 +29835 6566 3749 474257878 38461778 183.112 14.850 33.919499 -82.288971 +29836 482 285 440579783 4115006 170.109 1.589 33.124861 -81.560185 +29838 501 417 75889331 8896715 29.301 3.435 33.746791 -82.150948 +29840 251 153 86239480 9073877 33.297 3.503 34.007202 -82.521302 +29841 32494 14342 82449039 1954392 31.834 0.755 33.526407 -81.939337 +29842 7675 3382 101303286 1316983 39.113 0.508 33.451527 -81.863403 +29843 1291 682 165328236 726176 63.834 0.280 33.182069 -81.179772 +29844 123 70 8613757 16334622 3.326 6.307 33.769606 -82.241925 +29845 1104 761 170385434 9637757 65.786 3.721 33.817844 -82.201423 +29847 5480 2154 235303530 2724895 90.851 1.052 33.694096 -81.852760 +29848 751 413 244438241 536207 94.378 0.207 33.970417 -82.075911 +29849 294 161 94711945 533087 36.568 0.206 33.100255 -81.234474 +29850 111 75 5271467 355320 2.035 0.137 33.609668 -81.816976 +29851 7524 3425 53720315 1373844 20.742 0.530 33.507439 -81.811783 +29853 6580 3062 286850654 3281479 110.754 1.267 33.403217 -81.422629 +29856 3255 1381 150025560 361216 57.925 0.139 33.484137 -81.509942 +29860 14450 5758 134695184 2773632 52.006 1.071 33.614687 -81.984429 +29899 1244 0 977272 0 0.377 0.000 33.928023 -82.250602 +29902 14779 6706 48403801 29313807 18.689 11.318 32.334933 -80.684304 +29904 659 0 162113 0 0.063 0.000 32.457441 -80.717905 +29905 3054 13 7167958 2078080 2.768 0.802 32.351589 -80.682217 +29906 21765 9046 125643134 21938487 48.511 8.470 32.445112 -80.752875 +29907 12570 5333 108916131 55163470 42.053 21.299 32.474692 -80.599222 +29909 16394 10017 142949008 70646028 55.193 27.277 32.336836 -80.847799 +29910 33954 14606 266890491 36621167 103.047 14.140 32.217752 -80.890837 +29911 1725 815 194574904 794133 75.126 0.307 32.941160 -81.141681 +29912 42 17 900136 75511 0.348 0.029 32.583486 -80.929358 +29915 416 602 27894302 6252371 10.770 2.414 32.115435 -80.865898 +29916 1533 742 189254791 182100 73.072 0.070 32.718462 -80.967103 +29918 5278 1797 235123724 1462965 90.782 0.565 32.744511 -81.247269 +29920 9481 6964 253009275 120546392 97.687 46.543 32.367446 -80.544887 +29921 227 129 17328763 0 6.691 0.000 32.682581 -81.172909 +29922 1214 644 346977626 4018177 133.969 1.551 32.625831 -81.277273 +29923 392 199 34612199 0 13.364 0.000 32.859518 -81.246422 +29924 4331 2086 138298154 690936 53.397 0.267 32.876885 -81.111209 +29926 23742 12241 78923762 42834269 30.473 16.538 32.238247 -80.740263 +29927 8237 3412 507940669 21696463 196.117 8.377 32.226799 -81.057867 +29928 16110 22745 53436388 17814193 20.632 6.878 32.163171 -80.755765 +29929 1135 559 196122269 41790 75.723 0.016 32.927872 -80.938536 +29932 269 140 186105125 3231135 71.856 1.248 32.818148 -81.348641 +29934 1172 530 180354564 3311 69.635 0.001 32.591591 -81.107381 +29935 3685 2123 5968863 2488599 2.305 0.961 32.383612 -80.695169 +29936 13354 5289 614357427 14117878 237.205 5.451 32.481344 -80.971730 +29939 302 126 27934636 0 10.786 0.000 32.672512 -81.244025 +29940 3967 1770 147939960 28462936 57.120 10.990 32.550437 -80.702432 +29941 497 350 41816748 8096294 16.146 3.126 32.550309 -80.806715 +29943 477 253 118674119 2646716 45.820 1.022 32.479103 -81.190824 +29944 5118 2239 342811586 94921 132.360 0.037 32.793115 -81.035372 +29945 4841 2252 568057523 27607919 219.328 10.659 32.673313 -80.765932 +30002 5861 2954 4392655 34982 1.696 0.014 33.773335 -84.261667 +30004 53033 20261 148642941 1921922 57.391 0.742 34.143879 -84.293133 +30005 34442 12397 37517959 1075245 14.486 0.415 34.087150 -84.221044 +30008 29822 10922 24467923 27393 9.447 0.011 33.897634 -84.589572 +30009 13722 6408 24858412 212040 9.598 0.082 34.078960 -84.305281 +30011 14402 5229 68946079 437217 26.620 0.169 34.019859 -83.837163 +30012 27258 10658 110938856 2633897 42.834 1.017 33.717806 -84.002515 +30013 25183 10141 73456443 1092832 28.362 0.422 33.645020 -83.971948 +30014 35037 14218 300219669 14166649 115.915 5.470 33.580062 -83.823102 +30016 51140 18762 237170600 3155019 91.572 1.218 33.517433 -83.928703 +30017 20160 7144 30977758 538174 11.961 0.208 33.890533 -83.961879 +30019 40447 13367 119990413 621820 46.329 0.240 33.975610 -83.883747 +30021 21989 8963 9160340 40492 3.537 0.016 33.806929 -84.237588 +30022 64359 24607 65879461 882034 25.436 0.341 34.030333 -84.241932 +30024 64614 21682 110203286 1832329 42.550 0.707 34.062971 -84.090770 +30025 9270 3635 175390724 2429448 67.719 0.938 33.655902 -83.696581 +30028 22182 7921 132151947 2428829 51.024 0.938 34.293049 -84.176166 +30030 26473 13327 16865049 13960 6.512 0.005 33.771947 -84.290270 +30032 47222 20467 35305648 78605 13.632 0.030 33.739309 -84.263593 +30033 30763 14786 23921835 98232 9.236 0.038 33.811659 -84.283230 +30034 43113 18209 43902603 606947 16.951 0.234 33.690867 -84.248622 +30035 20396 8694 22151468 140387 8.553 0.054 33.724452 -84.204244 +30038 37233 16343 75254108 997655 29.056 0.385 33.666460 -84.139855 +30039 41517 14700 64847001 1209377 25.038 0.467 33.797955 -84.033549 +30040 54653 19873 151970506 1667884 58.676 0.644 34.210349 -84.187789 +30041 52749 19731 152373584 23211987 58.832 8.962 34.204626 -84.100357 +30043 80241 27767 84251106 1006024 32.530 0.388 33.999280 -84.009510 +30044 79701 27851 63418406 511229 24.486 0.197 33.922090 -84.065651 +30045 34402 11232 56297395 877935 21.737 0.339 33.936518 -83.927669 +30046 34523 13171 40571712 312831 15.665 0.121 33.948631 -83.995764 +30047 59660 21153 71773626 935367 27.712 0.361 33.870144 -84.112327 +30052 59451 21387 226522023 1987573 87.461 0.767 33.815151 -83.893561 +30054 11985 4431 107113672 1885299 41.357 0.728 33.673250 -83.871806 +30055 3018 1312 132983323 2917496 51.345 1.126 33.496702 -83.749992 +30056 2500 948 99073235 960254 38.252 0.371 33.500250 -83.659584 +30058 52945 21269 79708450 1650437 30.776 0.637 33.740330 -84.108844 +30060 34562 14338 42337178 338581 16.346 0.131 33.926431 -84.541629 +30062 62136 24275 66841137 743478 25.808 0.287 34.002532 -84.470310 +30064 46076 18704 82513745 498065 31.859 0.192 33.939737 -84.613787 +30066 52936 20730 70562915 697868 27.244 0.269 34.032388 -84.505154 +30067 45182 22586 38344887 708658 14.805 0.274 33.934278 -84.462185 +30068 31595 12628 37119955 1069086 14.332 0.413 33.967328 -84.433463 +30070 342 181 160149 0 0.062 0.000 33.574432 -83.894702 +30071 23005 8121 30949118 116341 11.950 0.045 33.939949 -84.206233 +30072 730 425 529078 43791 0.204 0.017 33.792116 -84.206463 +30075 52573 20753 77240837 2167748 29.823 0.837 34.055700 -84.390264 +30076 42678 17373 40325186 1194705 15.570 0.461 34.028474 -84.311406 +30078 33057 12190 43957298 657067 16.972 0.254 33.861019 -84.017993 +30079 2960 1346 3309688 18701 1.278 0.007 33.792055 -84.257369 +30080 49905 26571 35280488 175244 13.622 0.068 33.869656 -84.498844 +30082 25905 11929 27147332 226696 10.482 0.088 33.854598 -84.535950 +30083 50384 21620 43952991 1377864 16.970 0.532 33.797412 -84.197984 +30084 35921 15049 39519992 288159 15.259 0.111 33.854097 -84.216155 +30087 36761 14385 60453782 1736840 23.341 0.671 33.805871 -84.126928 +30088 25257 10462 20117617 183884 7.767 0.071 33.756052 -84.182363 +30092 31704 13869 28400796 479841 10.966 0.185 33.972386 -84.231986 +30093 53351 19478 30891555 506720 11.927 0.196 33.908536 -84.177349 +30094 31244 12003 104545218 1614953 40.365 0.624 33.613639 -84.053557 +30096 62265 26268 59258058 1083488 22.880 0.418 33.974292 -84.145426 +30097 41715 15168 58213654 1261299 22.476 0.487 34.026142 -84.145592 +30101 54373 19771 104506754 5823499 40.350 2.248 34.034515 -84.707349 +30102 37470 14106 75854408 11233158 29.288 4.337 34.103138 -84.633785 +30103 14781 5897 261586736 381797 100.999 0.147 34.367374 -84.919232 +30104 4708 1884 99207388 1216188 38.304 0.470 34.087138 -85.056489 +30105 2294 984 154408342 1295236 59.617 0.500 34.432605 -85.172546 +30106 20300 8684 32103491 76276 12.395 0.029 33.839010 -84.628247 +30107 12908 5016 281895627 2493779 108.841 0.963 34.336291 -84.345793 +30108 7256 3243 228079836 381112 88.062 0.147 33.531700 -85.262996 +30110 13349 5545 180207130 877090 69.578 0.339 33.744411 -85.136162 +30113 6218 2597 267676638 1383780 103.351 0.534 33.850746 -85.205308 +30114 49774 19203 279435402 16052381 107.891 6.198 34.247838 -84.524468 +30115 35672 13078 157412255 1852553 60.777 0.715 34.204092 -84.400462 +30116 23156 8863 264801348 3534178 102.240 1.365 33.540590 -85.003082 +30117 34296 14894 283855933 2589947 109.597 1.000 33.581851 -85.132439 +30118 2373 1 948833 0 0.366 0.000 33.572374 -85.103432 +30120 38085 15155 238471714 2826719 92.074 1.091 34.167895 -84.851983 +30121 22078 8974 146301668 6522494 56.487 2.518 34.209234 -84.777991 +30122 21561 9550 62337699 329617 24.069 0.127 33.766909 -84.641356 +30124 2978 1366 156159898 2254734 60.294 0.871 34.133691 -85.345801 +30125 24352 9710 474484829 1703852 183.200 0.658 34.002052 -85.276000 +30126 37088 15212 53637641 424000 20.710 0.164 33.815025 -84.553831 +30127 60347 21634 131480666 1042911 50.765 0.403 33.873653 -84.695004 +30132 34215 12793 284749520 1907182 109.942 0.736 33.988832 -84.858967 +30134 43356 16218 128434474 460280 49.589 0.178 33.777518 -84.781392 +30135 61912 22875 216923399 1626928 83.755 0.628 33.670162 -84.734357 +30137 1650 683 10262407 18138 3.962 0.007 34.124107 -84.760937 +30139 3845 1722 185778875 195100 71.730 0.075 34.432341 -84.705495 +30141 22457 8622 76317343 486509 29.466 0.188 33.860951 -84.769642 +30143 21145 10589 360692463 1283284 139.264 0.495 34.459958 -84.431752 +30144 52252 20357 58464478 543841 22.573 0.210 34.036864 -84.591009 +30145 8378 3077 205996136 1770972 79.536 0.684 34.245709 -84.985928 +30147 4365 1937 47054362 389780 18.168 0.150 34.150627 -85.208239 +30148 453 215 27794606 157966 10.732 0.061 34.458792 -84.258613 +30149 1569 46 22625348 45993 8.736 0.018 34.309754 -85.226015 +30152 40393 15221 54529036 678680 21.054 0.262 33.989648 -84.646572 +30153 18411 7660 308580504 2609470 119.144 1.008 33.959882 -85.054452 +30157 45123 16626 219982511 1552643 84.936 0.599 33.884995 -84.874622 +30161 35058 15715 367260830 6453853 141.800 2.492 34.241733 -85.171590 +30164 16 14 48423 9392 0.019 0.004 33.395837 -83.833971 +30165 39975 16505 430357974 10301696 166.162 3.978 34.302923 -85.269103 +30168 24241 10614 32385022 295284 12.504 0.114 33.783542 -84.588106 +30170 2994 1266 118133855 0 45.612 0.000 33.429229 -85.169473 +30171 3491 1324 136790258 21391 52.815 0.008 34.343551 -84.725681 +30173 6221 2483 87402910 453799 33.746 0.175 34.133121 -85.153505 +30175 6074 2580 228257179 295550 88.131 0.114 34.534915 -84.526711 +30176 7050 3167 216943667 213475 83.762 0.082 33.767736 -85.300142 +30177 1049 454 13082156 0 5.051 0.000 34.411307 -84.377876 +30178 3468 1300 139829665 313776 53.989 0.121 34.095453 -84.971074 +30179 16807 6570 193712120 2330131 74.793 0.900 33.779335 -85.013502 +30180 34274 13692 193960737 2206015 74.889 0.852 33.717103 -84.918032 +30182 2666 1179 92236743 195427 35.613 0.075 33.655819 -85.248832 +30183 5282 2280 158781718 2095614 61.306 0.809 34.339036 -84.602796 +30184 6847 2768 174858293 7080351 67.513 2.734 34.252034 -84.740990 +30185 3892 1614 163856209 1599201 63.265 0.617 33.519402 -84.917819 +30187 8740 3305 89123152 53996 34.411 0.021 33.662549 -84.847233 +30188 52380 20965 113874661 1368402 43.967 0.528 34.123528 -84.457649 +30189 36859 13512 50368726 5571583 19.447 2.151 34.124213 -84.570684 +30204 13493 5442 323474538 3080382 124.894 1.189 33.056052 -84.121040 +30205 3061 1187 94153284 2068206 36.353 0.799 33.267425 -84.475139 +30206 2958 1135 144008590 1802630 55.602 0.696 33.096058 -84.458228 +30213 29384 12120 166060288 2204176 64.116 0.851 33.589298 -84.636766 +30214 28913 11482 136546579 3045895 52.721 1.176 33.490464 -84.485997 +30215 33665 12312 185684579 4537348 71.693 1.752 33.391613 -84.456432 +30216 2159 908 77920731 598083 30.085 0.231 33.228849 -83.884864 +30217 9433 4097 672742052 14063692 259.747 5.430 33.281895 -85.133844 +30218 1974 813 174486765 2506166 67.370 0.968 33.129318 -84.587178 +30220 5533 2138 142191536 243378 54.900 0.094 33.225499 -84.823547 +30222 4042 1882 374332220 2113628 144.530 0.816 33.044355 -84.743495 +30223 36769 15424 280545698 4983956 108.319 1.924 33.288801 -84.279923 +30224 25197 10413 171298233 2688252 66.139 1.038 33.204495 -84.238945 +30228 38569 14356 193793663 4485835 74.824 1.732 33.404147 -84.307350 +30230 9103 3957 338419460 5947533 130.664 2.296 33.164490 -84.920565 +30233 23218 9242 403310013 10775935 155.719 4.161 33.292157 -83.969544 +30234 1934 783 30658828 7423 11.837 0.003 33.323884 -84.030964 +30236 46434 18927 83389301 4231273 32.197 1.634 33.523974 -84.324863 +30238 34713 13200 43703050 420554 16.874 0.162 33.493252 -84.379295 +30240 30014 12541 361530187 71207039 139.588 27.493 33.036796 -85.120216 +30241 23176 9590 288440397 3632530 111.367 1.403 33.022344 -84.949445 +30248 23249 8290 182783894 1638751 70.573 0.633 33.351433 -84.106652 +30250 679 19 695475 0 0.269 0.000 33.436532 -84.314206 +30251 2342 1003 89403529 471346 34.519 0.182 33.195020 -84.703189 +30252 41428 14627 236240877 3243472 91.213 1.252 33.473512 -84.057165 +30253 49380 19117 125672145 1275961 48.522 0.493 33.448926 -84.183570 +30256 2826 1120 88966934 1083579 34.350 0.418 33.007484 -84.309900 +30257 4138 1709 114434088 2190427 44.183 0.846 33.143414 -84.186220 +30258 2622 1062 144866774 2235230 55.933 0.863 32.972488 -84.449100 +30259 3041 1230 90082531 723959 34.781 0.280 33.266198 -84.737458 +30260 23244 9962 29187754 314827 11.269 0.122 33.584687 -84.327348 +30263 53008 21403 517323224 5544125 199.740 2.141 33.388415 -84.858937 +30265 31713 12484 110207660 1751689 42.551 0.676 33.411664 -84.710976 +30268 9090 3870 169338042 2810151 65.382 1.085 33.546197 -84.722815 +30269 35069 13845 64964461 2413001 25.083 0.932 33.391884 -84.570611 +30273 14709 5716 16893304 155596 6.523 0.060 33.583798 -84.271027 +30274 31893 13148 27349189 154736 10.560 0.060 33.554618 -84.400443 +30275 19 13 277620 0 0.107 0.000 33.437124 -84.874183 +30276 13866 5449 254332954 3371500 98.199 1.302 33.262754 -84.571617 +30277 20270 7437 115192156 1965756 44.476 0.759 33.375308 -84.649196 +30281 66140 26239 182130671 2291381 70.321 0.885 33.567898 -84.193388 +30284 55 26 241718 3315 0.093 0.001 33.342874 -84.288959 +30285 707 287 44107477 686363 17.030 0.265 32.987673 -84.258191 +30286 23490 10550 502956516 6695597 194.193 2.585 32.879167 -84.330566 +30288 8929 3343 20238627 117597 7.814 0.045 33.652831 -84.327109 +30289 82 38 559987 0 0.216 0.000 33.322887 -84.633870 +30290 8286 3041 46279685 1288480 17.869 0.497 33.476407 -84.589709 +30291 21010 9624 31605281 344863 12.203 0.133 33.572312 -84.543292 +30292 5943 2185 150622910 2118188 58.156 0.818 33.168489 -84.393225 +30293 2981 1435 208501902 2778279 80.503 1.073 32.976672 -84.611500 +30294 39865 14764 83815584 742650 32.361 0.287 33.639853 -84.267148 +30295 4159 1660 113065700 2154485 43.655 0.832 33.090279 -84.310405 +30296 25840 9803 27134531 420682 10.477 0.162 33.563185 -84.441151 +30297 27188 10559 28422409 155020 10.974 0.060 33.615841 -84.373002 +30303 5934 1749 2705518 0 1.045 0.000 33.753259 -84.389953 +30305 22999 14125 16667801 72892 6.435 0.028 33.835696 -84.389116 +30306 22246 12373 11370386 35043 4.390 0.014 33.789323 -84.351498 +30307 18004 9348 11828687 13981 4.567 0.005 33.771079 -84.333600 +30308 15413 11205 4130055 0 1.595 0.000 33.771126 -84.378108 +30309 21845 16207 8852923 94188 3.418 0.036 33.799832 -84.385903 +30310 26912 14349 22842592 19991 8.820 0.008 33.726586 -84.425995 +30311 32218 15636 32193748 94141 12.430 0.036 33.723262 -84.475994 +30312 19360 12007 8683550 0 3.353 0.000 33.744725 -84.375231 +30313 9495 2856 2880070 0 1.112 0.000 33.764539 -84.397339 +30314 22020 10614 12092212 0 4.669 0.000 33.757576 -84.432245 +30315 33857 14791 29303430 42793 11.314 0.017 33.702829 -84.382515 +30316 31110 15164 32428893 140556 12.521 0.054 33.711546 -84.331796 +30317 11970 6269 9101610 96244 3.514 0.037 33.747999 -84.315586 +30318 49736 25475 52742175 475017 20.364 0.183 33.792736 -84.448312 +30319 38423 19500 26839643 310649 10.363 0.120 33.877450 -84.336316 +30322 2023 0 1068100 2087 0.412 0.001 33.794492 -84.326570 +30324 24267 15645 13628133 115188 5.262 0.044 33.818405 -84.358175 +30326 4802 3928 1791714 0 0.692 0.000 33.849518 -84.363971 +30327 22208 9929 43484137 757331 16.789 0.292 33.869768 -84.417135 +30328 30348 16017 33429785 586326 12.907 0.226 33.932538 -84.385947 +30329 28539 13149 14012097 134900 5.410 0.052 33.827479 -84.323017 +30331 54094 25100 95884250 1630274 37.021 0.629 33.707293 -84.543902 +30332 2970 0 218051 0 0.084 0.000 33.778271 -84.404537 +30334 1 0 126610 0 0.049 0.000 33.748855 -84.387243 +30336 971 460 26971197 584838 10.414 0.226 33.738366 -84.567535 +30337 11505 6225 31231737 36257 12.059 0.014 33.640147 -84.450081 +30338 33617 15262 25426973 225182 9.817 0.087 33.946218 -84.318119 +30339 18304 12022 21254578 999023 8.206 0.386 33.876320 -84.462090 +30340 29394 11419 22045569 41476 8.512 0.016 33.897873 -84.252804 +30341 31793 14015 26345053 36389 10.172 0.014 33.888096 -84.288866 +30342 29879 13798 23157587 184977 8.941 0.071 33.882179 -84.375289 +30344 31776 15991 31322888 40039 12.094 0.015 33.676362 -84.460794 +30345 23129 10492 18432938 215323 7.117 0.083 33.851722 -84.283624 +30346 4696 3377 2607497 0 1.007 0.000 33.924230 -84.338876 +30349 67602 30002 118896456 778136 45.906 0.300 33.622488 -84.523908 +30350 34740 17631 32437664 1875899 12.524 0.724 33.977483 -84.332407 +30354 14857 6855 27838448 62060 10.748 0.024 33.661498 -84.386895 +30360 14536 5640 15082723 398559 5.823 0.154 33.933808 -84.272577 +30363 2680 2675 815736 11601 0.315 0.004 33.791004 -84.398978 +30401 13500 5853 654795210 7864454 252.818 3.036 32.599617 -82.352575 +30410 2168 807 173075067 1010335 66.825 0.390 32.187516 -82.514610 +30411 4371 1206 392263635 4129837 151.454 1.595 32.128123 -82.794572 +30412 80 40 3957266 40282 1.528 0.016 32.078922 -82.490792 +30413 1575 770 319812258 2238735 123.480 0.864 32.888980 -82.510648 +30415 6780 2725 416278970 4767384 160.726 1.841 32.324484 -81.603497 +30417 11090 4763 447073456 10301600 172.616 3.977 32.170468 -81.920992 +30420 1460 783 98133230 2154405 37.889 0.832 32.288422 -82.152736 +30421 3381 1746 261721298 3552573 101.051 1.372 32.179599 -82.107566 +30423 120 63 1944008 123410 0.751 0.048 32.148808 -81.830648 +30425 1198 593 185352388 2994636 71.565 1.156 32.684036 -82.095422 +30426 1100 565 307635639 5333804 118.779 2.059 33.031646 -81.641935 +30427 12864 4977 615610279 12179103 237.688 4.702 31.922905 -81.962446 +30428 2766 1278 385392148 7068881 148.801 2.729 32.224545 -82.715129 +30429 205 69 563524 0 0.218 0.000 32.165446 -81.936169 +30434 5728 2348 511881832 4625408 197.639 1.786 33.025668 -82.383791 +30436 11961 5348 731618130 14027185 282.479 5.416 32.155951 -82.293751 +30438 74 27 822332 8342 0.318 0.003 32.165611 -82.020521 +30439 10877 4677 627085434 14765650 242.119 5.701 32.404758 -82.075630 +30441 1663 868 472740656 6058135 182.526 2.339 32.797066 -82.224962 +30442 7698 3845 806792494 12718845 311.504 4.911 32.799793 -81.983529 +30445 3285 1422 206470951 6081397 79.719 2.348 32.163981 -82.588479 +30446 1357 622 170697698 2383014 65.907 0.920 32.563486 -81.463016 +30448 81 29 7461573 77736 2.881 0.030 32.488240 -82.363384 +30449 119 65 19836426 166945 7.659 0.064 32.515224 -81.561033 +30450 2583 1114 128170418 3298830 49.487 1.274 32.562333 -81.923046 +30451 33 21 198236 0 0.077 0.000 32.390728 -81.952461 +30452 1567 698 139335758 5947801 53.798 2.296 32.325315 -81.888781 +30453 9703 3145 319227019 6888901 123.254 2.660 32.011066 -82.121749 +30454 538 281 92712660 1581374 35.797 0.611 32.436077 -82.730358 +30455 597 290 113323814 1880644 43.755 0.726 32.690978 -81.802282 +30456 2119 931 208854497 1524284 80.639 0.589 32.980749 -81.796159 +30457 6424 2785 458089214 6928231 176.869 2.675 32.400272 -82.567512 +30458 41139 17038 377986792 12776415 145.942 4.933 32.399676 -81.828266 +30460 427 0 40019 7718 0.015 0.003 32.419052 -81.781595 +30461 13390 5436 417150158 11527041 161.063 4.451 32.511789 -81.718900 +30464 78 23 2102226 70462 0.812 0.027 32.437230 -82.224960 +30467 12600 5783 1337619068 21783522 516.458 8.411 32.753793 -81.603534 +30470 517 236 75365485 706759 29.099 0.273 32.313919 -82.560981 +30471 4702 1943 376471169 7429357 145.356 2.868 32.543274 -82.180919 +30473 2972 1528 215027175 8009477 83.022 3.092 32.016897 -82.468830 +30474 16594 7312 361230742 4434971 139.472 1.712 32.238578 -82.417773 +30475 52 22 241059 0 0.093 0.000 32.224698 -82.368594 +30477 3070 1367 183168065 1522432 70.722 0.588 32.861525 -82.401582 +30501 28048 10673 56588725 6918208 21.849 2.671 34.318834 -83.815174 +30504 22463 8134 42908340 12950404 16.567 5.000 34.273118 -83.890269 +30506 41667 17783 259878709 62009977 100.340 23.942 34.346947 -83.895595 +30507 28399 8861 183996242 771175 71.041 0.298 34.254846 -83.774423 +30510 8291 2690 116167939 260051 44.853 0.100 34.444832 -83.571657 +30511 3186 1385 77235665 490169 29.821 0.189 34.449701 -83.486718 +30512 19490 12614 575006653 17785342 222.011 6.867 34.856724 -83.967855 +30513 11172 8117 384997124 6221870 148.648 2.402 34.821043 -84.322383 +30516 2054 885 54378552 212052 20.996 0.082 34.379515 -83.031351 +30517 11963 4515 72378772 699562 27.946 0.270 34.130358 -83.797204 +30518 45211 16972 102935334 18656061 39.744 7.203 34.130846 -84.027398 +30519 39812 13725 88805697 657254 34.288 0.254 34.087437 -83.944991 +30520 4426 1936 148093102 979437 57.179 0.378 34.340050 -83.082621 +30521 4944 2252 244705536 2336809 94.481 0.902 34.362448 -83.292322 +30522 1092 1007 117431875 158647 45.341 0.061 34.796102 -84.340461 +30523 12904 6922 446132304 6962670 172.253 2.688 34.716605 -83.553605 +30525 7364 4889 533158048 5138729 205.853 1.984 34.907215 -83.369354 +30527 4043 1657 65674632 329125 25.357 0.127 34.481368 -83.783789 +30528 22679 12111 462190727 2849820 178.453 1.100 34.621058 -83.793245 +30529 10920 4567 133240584 1386508 51.444 0.535 34.217179 -83.482653 +30530 6752 2690 202731328 1894797 78.275 0.732 34.222298 -83.393700 +30531 11279 4501 99303373 769959 38.341 0.297 34.512602 -83.592212 +30533 25296 10863 566867571 2951478 218.869 1.140 34.563560 -84.020072 +30534 26685 11876 593154710 11836564 229.018 4.570 34.431100 -84.144329 +30535 7042 3054 75020919 1401226 28.966 0.541 34.573483 -83.575410 +30536 8363 4694 399562854 339319 154.272 0.131 34.648872 -84.366774 +30537 1249 1604 52303999 201793 20.195 0.078 34.976315 -83.320177 +30538 2854 1246 65937119 674072 25.458 0.260 34.500986 -83.263844 +30540 17297 9885 508453729 11706538 196.315 4.520 34.728127 -84.543528 +30541 1603 900 182196720 0 70.347 0.000 34.912906 -84.539104 +30542 31946 12438 109297111 19701695 42.200 7.607 34.177647 -83.909134 +30543 4487 1657 97748945 442846 37.741 0.171 34.290463 -83.649536 +30545 936 1228 102699682 132082 39.653 0.051 34.762510 -83.762194 +30546 6496 5457 350204738 13508270 135.215 5.216 34.898796 -83.696585 +30547 3268 1412 136065337 492402 52.535 0.190 34.361833 -83.455885 +30548 15870 5937 100279584 919817 38.718 0.355 34.089799 -83.766912 +30549 22500 8659 283210656 2962641 109.348 1.144 34.107990 -83.577448 +30552 1697 1757 141200121 5068759 54.518 1.957 34.770857 -83.443724 +30553 7232 4277 153465820 13571674 59.253 5.240 34.443840 -83.083989 +30554 8535 3431 188934859 2805701 72.948 1.083 34.399148 -83.660793 +30555 2061 1240 34176931 125253 13.196 0.048 34.974787 -84.428940 +30557 4975 2770 144351718 6545803 55.735 2.527 34.479804 -83.184960 +30558 5456 2248 153071961 2135118 59.101 0.824 34.266191 -83.568717 +30559 4333 2773 127860605 562376 49.367 0.217 34.957838 -84.274178 +30560 4599 3324 188871216 6635777 72.924 2.562 34.876756 -84.204831 +30562 1128 619 7698938 28208 2.973 0.011 34.921514 -83.381112 +30563 5373 2227 90097908 768625 34.787 0.297 34.567865 -83.454897 +30564 4463 1900 80067617 1278760 30.914 0.494 34.469726 -83.886898 +30565 4758 1877 88298643 913664 34.092 0.353 34.086211 -83.411497 +30566 7906 3394 24107218 1473493 9.308 0.569 34.236169 -83.895195 +30567 2981 1118 81024221 690123 31.284 0.266 34.180818 -83.676617 +30568 1877 1043 74887743 212316 28.914 0.082 34.959452 -83.432688 +30571 3682 2895 145513592 991660 56.183 0.383 34.707523 -83.694014 +30572 1260 1201 276179858 527922 106.634 0.204 34.735794 -84.072487 +30573 163 99 12372571 280146 4.777 0.108 34.749597 -83.416673 +30575 1375 552 29849971 146604 11.525 0.057 34.207642 -83.713476 +30576 2521 1661 97898254 2555375 37.799 0.987 34.840487 -83.460157 +30577 22230 10427 420641950 8108224 162.411 3.131 34.552419 -83.325929 +30581 73 35 519668 0 0.201 0.000 34.795248 -83.423725 +30582 4567 2657 129262026 538844 49.908 0.208 34.953750 -83.895706 +30601 20835 9644 61128407 862700 23.602 0.333 34.001592 -83.344913 +30602 2409 1 1853033 26025 0.715 0.010 33.944542 -83.372937 +30605 39952 17663 94864699 1773793 36.627 0.685 33.905911 -83.323577 +30606 40225 19040 78942956 1087072 30.480 0.420 33.938592 -83.429389 +30607 10895 4113 91671950 1438616 35.395 0.555 34.017305 -83.447551 +30609 1956 0 60531 0 0.023 0.000 33.949464 -83.382007 +30619 1440 639 69132389 787733 26.692 0.304 33.855811 -83.244694 +30620 12486 4408 61575754 2286529 23.775 0.883 33.929472 -83.758422 +30621 5109 1843 126280001 1808812 48.757 0.698 33.791462 -83.492132 +30622 10344 4370 106665236 1295823 41.184 0.500 33.925221 -83.517520 +30623 154 57 5596026 13170 2.161 0.005 33.728465 -83.541786 +30624 2611 1191 111487377 1108081 43.046 0.428 34.186246 -83.044149 +30625 2438 1273 117464169 8654611 45.353 3.342 33.520284 -83.333530 +30627 2273 1072 322394914 3061820 124.477 1.182 33.973309 -82.958053 +30628 6556 2610 124302583 1652820 47.993 0.638 34.028875 -83.213297 +30629 4531 1947 193636431 2640837 74.763 1.020 34.076932 -83.110117 +30630 2438 1032 94290852 761347 36.406 0.294 33.913366 -83.147279 +30631 1767 1036 501556379 1960468 193.652 0.757 33.559314 -82.875208 +30633 8474 3578 258940104 2100294 99.977 0.811 34.178174 -83.254872 +30634 2281 993 124719321 845421 48.154 0.326 34.195694 -82.945483 +30635 16109 7766 735408914 58326248 283.943 22.520 34.105769 -82.793249 +30641 1810 743 88286888 745691 34.088 0.288 33.778357 -83.574025 +30642 11001 6289 506670722 39858005 195.627 15.389 33.554129 -83.194368 +30643 16382 8705 299388590 55601124 115.595 21.468 34.362655 -82.908971 +30646 6946 2902 90194553 1425782 34.824 0.550 34.083030 -83.298792 +30648 2988 1285 218294585 1311171 84.284 0.506 33.879979 -83.052055 +30650 11708 4802 572934119 7514220 221.211 2.901 33.583711 -83.473754 +30655 24136 9818 223315930 2298428 86.223 0.887 33.781688 -83.696095 +30656 15133 5908 180761210 2045728 69.792 0.790 33.862137 -83.716175 +30660 1191 606 259547021 611131 100.212 0.236 33.784234 -82.951476 +30662 8537 3828 207587330 2069628 80.150 0.799 34.267311 -83.154100 +30663 3032 1236 142999151 2464089 55.212 0.951 33.615797 -83.600993 +30664 38 16 720635 6398 0.278 0.002 33.556259 -82.798319 +30665 80 39 6220339 88576 2.402 0.034 33.542772 -83.062684 +30666 8659 3391 95069640 1177344 36.707 0.455 33.962144 -83.584659 +30667 1035 460 202348775 673443 78.127 0.260 33.776347 -83.145330 +30668 1924 1453 413932214 21200907 159.820 8.186 33.895747 -82.697208 +30669 3313 1530 322072496 1083363 124.353 0.418 33.672149 -83.120938 +30673 7897 3669 679338813 5877011 262.294 2.269 33.710850 -82.713940 +30677 17065 6493 306007170 3097647 118.150 1.196 33.783202 -83.373342 +30678 1294 710 181495447 6593900 70.076 2.546 33.453078 -83.065832 +30680 37837 14634 237418007 4246303 91.668 1.640 33.996105 -83.700168 +30683 6749 2901 101269246 1177058 39.100 0.454 33.946980 -83.256267 +30701 40053 15825 392112403 3432957 151.395 1.325 34.490515 -84.956866 +30705 33566 13407 616638243 5568751 238.085 2.150 34.754392 -84.745087 +30707 16483 6967 333698846 244664 128.842 0.094 34.771950 -85.359193 +30708 293 133 37945750 0 14.651 0.000 34.961782 -84.664614 +30710 6661 2604 123053093 197559 47.511 0.076 34.954553 -84.913350 +30711 3569 1579 180133615 119328 69.550 0.046 34.920232 -84.715779 +30720 26895 11319 125547120 362089 48.474 0.140 34.733644 -85.000824 +30721 53601 19749 321780577 543793 124.240 0.210 34.788631 -84.916087 +30725 4647 1986 38700940 6384 14.943 0.002 34.924777 -85.352675 +30726 56 35 340984 0 0.132 0.000 34.976243 -85.139577 +30728 19612 8621 449513210 980604 173.558 0.379 34.684875 -85.225790 +30730 1993 845 143462067 17545 55.391 0.007 34.348052 -85.417499 +30731 2428 1368 224642148 239381 86.735 0.092 34.587768 -85.477364 +30733 2080 874 39587762 389516 15.285 0.150 34.414593 -85.050554 +30734 3466 1575 197941738 340969 76.426 0.132 34.532804 -84.714916 +30735 6153 2445 161260997 1590223 62.263 0.614 34.602883 -84.882661 +30736 41029 16345 332900305 706831 128.534 0.273 34.902663 -85.133970 +30738 3799 1930 222822188 251403 86.032 0.097 34.796535 -85.480919 +30739 5571 2020 64956508 158869 25.080 0.061 34.805931 -85.215984 +30740 8600 3468 131694284 227109 50.847 0.088 34.757150 -85.072119 +30741 29290 13551 64531856 38187 24.916 0.015 34.952685 -85.281297 +30742 7460 3424 8675876 0 3.350 0.000 34.950583 -85.243239 +30746 1223 493 43238702 0 16.695 0.000 34.577083 -85.027273 +30747 16859 6880 474059893 555865 183.036 0.215 34.502597 -85.302791 +30750 4125 1421 34172682 0 13.194 0.000 34.941414 -85.388227 +30751 91 41 1471359 0 0.568 0.000 34.984504 -84.732690 +30752 9800 4365 201978217 30130 77.984 0.012 34.914982 -85.537961 +30753 6697 2827 106078009 31691 40.957 0.012 34.582310 -85.285775 +30755 9590 3950 92127326 244213 35.571 0.094 34.868010 -85.042839 +30756 74 33 350204 0 0.135 0.000 34.897650 -84.977052 +30757 1787 846 44316522 169553 17.111 0.065 34.935801 -85.441516 +30802 6321 2712 343081516 39753498 132.465 15.349 33.601437 -82.299935 +30803 741 365 142999339 380668 55.212 0.147 33.133196 -82.549061 +30805 2734 1117 91557584 241364 35.351 0.093 33.279746 -82.191822 +30807 92 57 1600592 2878 0.618 0.001 33.457408 -82.648621 +30808 4615 1908 164180218 3069028 63.390 1.185 33.384114 -82.391923 +30809 38168 14211 113101540 2759877 43.669 1.066 33.555948 -82.170379 +30810 2138 1040 212862636 1050190 82.187 0.405 33.235677 -82.590456 +30812 363 0 364696 0 0.141 0.000 33.367075 -82.028700 +30813 30415 11567 128664429 362141 49.678 0.140 33.471668 -82.220051 +30814 8150 3332 132490142 192569 51.155 0.074 33.440406 -82.299828 +30815 39640 15269 338559540 1450484 130.719 0.560 33.287235 -82.088937 +30816 2109 932 338551327 2308833 130.715 0.891 33.156879 -82.167067 +30817 7676 4281 498860057 105854115 192.611 40.871 33.778350 -82.430230 +30818 555 242 86668982 87908 33.463 0.034 33.262941 -82.330984 +30820 1205 643 217816976 1851210 84.100 0.715 33.217572 -82.709869 +30821 882 505 267786294 1793558 103.393 0.692 33.490433 -82.742067 +30822 526 266 90428778 828683 34.915 0.320 32.926337 -81.852686 +30823 1800 770 188064177 525120 72.612 0.203 33.226005 -82.453380 +30824 17201 7390 514423207 20121056 198.620 7.769 33.512953 -82.514855 +30828 4368 2121 351373373 3627334 135.666 1.401 33.368038 -82.656312 +30830 13966 5739 931542307 7982749 359.671 3.082 33.079811 -81.975337 +30833 4043 1788 176695236 174452 68.222 0.067 33.191250 -82.353132 +30901 16445 8382 53192004 2479448 20.538 0.957 33.437220 -81.956157 +30903 585 214 439876 0 0.170 0.000 33.490148 -82.162688 +30904 25666 13210 26835309 1882100 10.361 0.727 33.478289 -82.014102 +30905 8955 1148 36227115 103147 13.987 0.040 33.415160 -82.142573 +30906 57748 23181 218731463 3680556 84.453 1.421 33.346732 -81.967703 +30907 50913 21289 62153036 3153822 23.997 1.218 33.523809 -82.085688 +30909 41585 20730 67361823 279633 26.009 0.108 33.470373 -82.082981 +30912 296 0 380017 0 0.147 0.000 33.470501 -81.988078 +31001 4816 1412 453343818 7751068 175.037 2.993 31.976256 -83.339665 +31002 2910 1378 299317557 4470711 115.567 1.726 32.554049 -82.595322 +31003 112 79 11977911 0 4.625 0.000 32.606281 -83.212516 +31005 15102 5931 49761223 1027432 19.213 0.397 32.544201 -83.597459 +31006 4923 2364 470066030 3046861 181.494 1.176 32.581861 -84.251849 +31007 1117 561 159593331 3237033 61.619 1.250 32.188594 -83.927243 +31008 18453 7614 180675013 974227 69.759 0.376 32.665346 -83.785924 +31009 1477 650 185162923 1376347 71.492 0.531 32.281608 -83.019789 +31011 923 436 128358794 1198722 49.560 0.463 32.129578 -83.074875 +31012 2683 786 140871848 2087773 54.391 0.806 32.394437 -83.170943 +31014 13756 5683 546408725 9019822 210.970 3.483 32.415886 -83.349077 +31015 21938 10058 563512902 20648979 217.574 7.973 31.935000 -83.774945 +31016 1517 704 236139635 1689257 91.174 0.652 32.842251 -84.115961 +31017 1985 993 243154510 1303087 93.882 0.503 32.621094 -83.232220 +31018 2837 598 236819830 2105282 91.437 0.813 32.977092 -82.627586 +31019 2318 1048 141102828 1810152 54.480 0.699 32.424244 -83.051342 +31020 2541 1166 276913325 6442070 106.917 2.487 32.690507 -83.498578 +31021 28549 12471 620120112 7810387 239.430 3.016 32.493414 -82.943064 +31022 1424 566 112119855 893970 43.290 0.345 32.511540 -83.116631 +31023 15383 7091 734647297 10502575 283.649 4.055 32.183213 -83.199454 +31024 20039 12015 869744487 38250695 335.810 14.769 33.320918 -83.375490 +31025 1226 508 163729739 913437 63.216 0.353 32.335837 -83.741003 +31027 10012 4450 456313092 10395409 176.183 4.014 32.581108 -82.804221 +31028 5912 2580 9216640 47581 3.559 0.018 32.627198 -83.695724 +31029 16287 6532 666267368 1898534 257.247 0.733 33.041202 -83.936448 +31030 18977 7315 450995876 3470475 174.130 1.340 32.570683 -83.890124 +31031 6576 2962 345075555 2729070 133.234 1.054 32.866283 -83.328348 +31032 13993 5496 392833360 1847391 151.674 0.713 33.011683 -83.569169 +31033 2660 1148 192249523 314615 74.228 0.121 33.084568 -83.428265 +31035 1364 622 133954919 1206338 51.720 0.466 32.845795 -82.696035 +31036 12998 5499 652158512 6583798 251.800 2.542 32.282058 -83.523221 +31037 4313 1530 153410807 1493659 59.232 0.577 32.081274 -82.969633 +31038 761 392 240352268 668240 92.801 0.258 33.142737 -83.647114 +31039 74 38 7358269 139093 2.841 0.054 32.594332 -84.387121 +31041 988 547 141578969 1142632 54.664 0.441 32.333518 -84.204238 +31042 1841 861 251070101 289572 96.939 0.112 32.748954 -83.172257 +31044 2911 1414 448109775 2195753 173.016 0.848 32.654992 -83.384795 +31045 73 54 9403778 185197 3.631 0.072 33.280835 -82.785442 +31046 3343 1337 193744946 2262010 74.805 0.873 33.057565 -83.796730 +31047 11193 4346 186130586 3243417 71.865 1.252 32.467280 -83.595342 +31049 1806 940 252469193 3674917 97.479 1.419 32.686106 -82.526508 +31050 965 403 56834999 65198 21.944 0.025 32.739677 -83.955972 +31051 187 85 4895724 4704 1.890 0.002 32.155877 -83.886797 +31052 8652 3536 182097012 2064697 70.308 0.797 32.784433 -83.848511 +31054 1671 749 131452798 886440 50.754 0.342 32.889861 -83.214067 +31055 8245 3353 348655526 4162377 134.617 1.607 32.005073 -82.900735 +31057 2182 1086 225128626 2354670 86.923 0.909 32.435000 -83.936561 +31058 2123 1022 257717768 936188 99.505 0.361 32.488651 -84.410396 +31060 1915 1212 263639327 2992212 101.792 1.155 31.975665 -83.063507 +31061 43755 19679 612538404 23760231 236.502 9.174 33.077282 -83.246171 +31062 495 10 696373 0 0.269 0.000 33.046624 -83.215582 +31063 5666 2479 295745417 3434475 114.188 1.326 32.288966 -83.963260 +31064 9450 4225 653682125 9442108 252.388 3.646 33.286297 -83.702347 +31065 1118 506 166949673 1702968 64.460 0.658 32.552375 -83.167623 +31066 1147 518 176252692 330968 68.052 0.128 32.806735 -84.018077 +31067 222 95 9001517 0 3.476 0.000 32.860339 -82.936674 +31068 5425 1779 232661534 4924988 89.831 1.902 32.328618 -84.117049 +31069 18948 7967 249810068 2395429 96.452 0.925 32.440068 -83.748603 +31070 998 452 131555510 2155993 50.794 0.832 32.186580 -83.789771 +31071 1199 555 143292349 339969 55.325 0.131 32.129456 -83.540786 +31072 1326 634 196074625 1012246 75.705 0.391 31.974465 -83.566840 +31075 2496 1125 141347785 1267683 54.575 0.489 32.351617 -82.956349 +31076 3064 1703 310462777 5051543 119.870 1.950 32.538870 -84.110141 +31077 1275 717 245743516 5576538 94.882 2.153 31.921144 -83.198370 +31078 3566 1545 273514844 1481175 105.605 0.572 32.694909 -84.074538 +31079 2398 1138 289713492 2611006 111.859 1.008 31.942896 -83.458767 +31081 251 151 91698092 219863 35.405 0.085 32.419232 -84.282732 +31082 10408 4674 582415185 6070995 224.872 2.344 32.996417 -82.903117 +31083 362 185 5330660 55487 2.058 0.021 32.040353 -82.814155 +31084 129 63 686811 33459 0.265 0.013 31.961703 -83.607862 +31085 1043 413 114665838 1484948 44.273 0.573 33.427353 -83.627679 +31087 9656 5478 1201184265 21431862 463.780 8.275 33.251362 -83.001031 +31088 50163 20915 81408813 578843 31.432 0.223 32.580403 -83.653003 +31089 4838 2250 397330613 2853327 153.410 1.102 32.850766 -82.860314 +31090 1038 528 372246200 8498300 143.725 3.281 32.829744 -83.068206 +31091 5189 1674 224730749 3581470 86.769 1.383 32.237888 -83.704462 +31092 7420 3562 485794481 4865589 187.566 1.879 32.090962 -83.785552 +31093 28087 12662 50846509 584640 19.632 0.226 32.647873 -83.657206 +31094 1114 585 279527208 2405241 107.926 0.929 33.113614 -82.795759 +31096 7395 2821 442372176 3972816 170.801 1.534 32.722219 -82.704531 +31097 1302 591 138450603 1266988 53.456 0.489 32.890411 -84.166895 +31098 2888 894 46724240 1451584 18.040 0.560 32.614215 -83.568560 +31201 8761 4552 27562134 869117 10.642 0.336 32.804382 -83.617554 +31204 31482 15486 37887020 468705 14.628 0.181 32.848513 -83.674775 +31206 29072 12298 72325015 605439 27.925 0.234 32.800857 -83.693698 +31207 974 1 445440 0 0.172 0.000 32.828448 -83.649156 +31210 30968 13972 107042614 994332 41.329 0.384 32.907304 -83.735303 +31211 16282 7499 127334757 662966 49.164 0.256 32.901362 -83.576017 +31213 0 0 26043 0 0.010 0.000 32.840081 -83.639350 +31216 16109 6245 142722386 1257049 55.105 0.485 32.729664 -83.685340 +31217 18408 8033 255619151 2977773 98.695 1.150 32.843569 -83.500661 +31220 13839 5846 122998584 6801276 47.490 2.626 32.871225 -83.809485 +31301 4591 2114 30196537 566413 11.659 0.219 31.750629 -81.602350 +31302 7853 3141 109847005 7774934 42.412 3.002 32.121659 -81.341739 +31303 1999 881 210702449 4258610 81.353 1.644 32.505422 -81.313427 +31304 132 81 5895320 977894 2.276 0.378 31.510772 -81.354554 +31305 5989 3193 109053177 10580428 42.106 4.085 31.396816 -81.393957 +31307 998 418 9780132 499039 3.776 0.193 32.172843 -81.398602 +31308 7305 2916 222284353 2747026 85.824 1.061 32.180316 -81.471289 +31309 1210 497 63205065 4351541 24.404 1.680 31.879886 -81.438392 +31312 16443 6046 413123852 2355734 159.508 0.910 32.311117 -81.401806 +31313 40302 17651 163586041 10697186 63.161 4.130 31.844789 -81.612554 +31314 1931 0 23532161 961338 9.086 0.371 31.870154 -81.631076 +31315 7488 2524 30638949 314950 11.830 0.122 31.892873 -81.588978 +31316 9749 4061 749281398 5905853 289.299 2.280 31.717608 -81.724662 +31318 341 157 3518205 0 1.358 0.000 32.142025 -81.371941 +31320 8794 4334 298681658 38413526 115.322 14.832 31.765504 -81.368411 +31321 6326 2678 358528950 2511732 138.429 0.970 32.185059 -81.659775 +31322 21137 8940 73184421 2586693 28.257 0.999 32.109885 -81.255465 +31323 1762 788 322843557 27452695 124.651 10.600 31.687482 -81.427666 +31324 20495 7810 330695526 38430517 127.682 14.838 31.850231 -81.265025 +31326 19269 7509 181457012 921663 70.061 0.356 32.295200 -81.229931 +31327 195 235 99422632 34506341 38.387 13.323 31.467922 -81.248753 +31328 3306 3548 12887602 3427284 4.976 1.323 32.006351 -80.888950 +31329 9034 3276 273699195 1159357 105.676 0.448 32.425638 -81.350634 +31331 7856 5630 765538151 77812382 295.576 30.044 31.524580 -81.441116 +31401 21696 11389 12391658 1241204 4.784 0.479 32.074679 -81.088261 +31404 31024 13105 38168875 3947417 14.737 1.524 32.051578 -81.049224 +31405 37207 15933 77778884 2308643 30.031 0.891 32.039413 -81.179127 +31406 33965 15008 66153625 9126107 25.542 3.524 31.981768 -81.083838 +31407 7244 3116 73360209 2242413 28.325 0.866 32.185590 -81.191478 +31408 9952 3438 63184987 1134605 24.396 0.438 32.117550 -81.184333 +31409 652 0 17221974 29403 6.649 0.011 32.016111 -81.144672 +31410 23654 10852 50427575 9113963 19.470 3.519 32.024928 -80.994533 +31411 8384 4376 54764023 9741343 21.145 3.761 31.942989 -81.034643 +31415 12091 5462 15774534 545654 6.091 0.211 32.079158 -81.128152 +31419 50954 22521 164587779 12395030 63.548 4.786 31.997154 -81.230649 +31501 15576 7189 34124867 272562 13.176 0.105 31.223623 -82.350198 +31503 21116 9235 858695501 13265016 331.544 5.122 31.202246 -82.413073 +31510 9848 4230 541736820 47596340 209.166 18.377 31.545485 -82.440693 +31512 2248 963 204499907 6828354 78.958 2.636 31.545696 -83.018356 +31513 16084 7306 855657275 10358200 330.371 3.999 31.777050 -82.347726 +31516 14735 6192 389809672 36497294 150.506 14.092 31.309373 -82.253250 +31518 704 353 116990029 4159085 45.170 1.606 31.512607 -82.185093 +31519 3569 1634 340698893 13277817 131.545 5.127 31.684279 -82.879356 +31520 22336 10032 43687965 4379820 16.868 1.691 31.180919 -81.493973 +31522 14447 11029 139641874 47164287 53.916 18.210 31.256680 -81.342045 +31523 13229 5444 479192154 34022309 185.017 13.136 31.217977 -81.621987 +31524 0 0 4373531 62833 1.689 0.024 31.241022 -81.473395 +31525 28247 12443 254287775 6468896 98.181 2.498 31.321100 -81.526435 +31527 805 798 45709416 38185964 17.649 14.744 31.066990 -81.433275 +31532 727 321 132989663 1262104 51.348 0.487 31.722070 -82.758822 +31533 17494 7421 165310624 11518047 63.827 4.447 31.560258 -82.828039 +31535 11264 4480 252860623 13334767 97.630 5.149 31.461219 -82.867955 +31537 10097 3557 751287515 9556816 290.074 3.690 30.885212 -82.005230 +31539 14468 6231 698992683 10438392 269.883 4.030 31.831700 -82.605344 +31542 2811 1169 264411111 2006042 102.090 0.775 31.142701 -82.119407 +31543 4796 2113 323500824 1264409 124.904 0.488 31.329690 -81.827173 +31544 994 601 262611017 4764015 101.395 1.839 31.840713 -82.963561 +31545 16133 6870 256393500 5874269 98.994 2.268 31.663955 -81.934173 +31546 8095 2765 439990819 7310423 169.881 2.823 31.509811 -81.777301 +31547 1293 84 6518673 133948 2.517 0.052 30.790547 -81.559737 +31548 20020 8173 144829795 6572090 55.919 2.537 30.795637 -81.697298 +31549 2239 1243 290212158 5505020 112.052 2.126 31.928200 -82.714917 +31550 780 357 132130740 2392140 51.016 0.924 31.147080 -82.595623 +31551 1020 442 168345089 18031533 64.998 6.962 31.495826 -82.273212 +31552 932 435 221632440 2525671 85.573 0.975 31.289855 -82.599146 +31553 5237 2311 443370195 4442290 171.186 1.715 31.181701 -81.972104 +31554 7076 2301 510617984 33680882 197.151 13.004 31.486069 -82.620813 +31555 2868 1255 382076654 2748092 147.521 1.061 31.705666 -82.080662 +31556 67 28 1202933 85751 0.464 0.033 31.414003 -82.112013 +31557 3043 1354 270491043 18018077 104.437 6.957 31.374943 -82.098122 +31558 20373 8762 194812375 69367189 75.217 26.783 30.899344 -81.427587 +31560 2842 1266 354525895 2447317 136.883 0.945 31.499205 -82.021183 +31561 298 870 12837659 10108933 4.957 3.903 31.207836 -81.309944 +31562 2177 977 275819192 2707452 106.494 1.045 30.422391 -82.170373 +31563 1324 771 288474273 2369399 111.381 0.915 31.751319 -82.181464 +31565 1841 1013 333626853 50349891 128.814 19.440 31.066705 -81.632529 +31566 3471 1603 163938345 1984831 63.297 0.766 31.182764 -81.805594 +31567 782 341 105633331 5446234 40.785 2.103 31.630886 -82.706228 +31568 1273 644 324057357 17994047 125.119 6.948 31.013362 -81.819101 +31569 5580 2353 168722231 11236000 65.144 4.338 30.903190 -81.703565 +31601 32730 13344 397263853 11995802 153.384 4.632 30.758721 -83.319023 +31602 34702 14747 105576888 1578827 40.763 0.610 30.867904 -83.342140 +31605 20188 8135 137916577 1897032 53.250 0.732 30.929823 -83.227813 +31606 3861 1553 114148267 1101717 44.073 0.425 30.806085 -83.190044 +31620 10690 4546 321185199 9082870 124.010 3.507 31.116928 -83.434243 +31622 2178 1078 286931944 1567063 110.785 0.605 31.378501 -83.192225 +31623 120 82 2302039 0 0.889 0.000 31.074434 -82.644004 +31624 1273 540 204811034 2675382 79.078 1.033 31.296514 -82.728715 +31625 1171 561 155223749 1916607 59.932 0.740 30.992647 -83.533505 +31626 3463 1670 370132317 3462266 142.909 1.337 30.778307 -83.796113 +31627 239 127 2213639 74087 0.855 0.029 31.043183 -83.392615 +31629 902 448 112934806 1598449 43.604 0.617 30.816844 -83.689394 +31630 419 194 230581613 5675216 89.028 2.191 30.950818 -82.876732 +31631 559 318 317203981 7033789 122.473 2.716 30.644329 -82.742085 +31632 10295 4068 287360001 7067347 110.950 2.729 30.986988 -83.360498 +31634 5844 2506 704046169 35865779 271.834 13.848 31.042485 -82.767459 +31635 6560 2746 291646089 22488641 112.605 8.683 31.095236 -83.049507 +31636 9539 4135 511532418 14453463 197.504 5.581 30.730986 -83.111372 +31637 2848 1273 203687859 4657912 78.644 1.798 31.292447 -83.440347 +31638 1045 468 69955594 966064 27.010 0.373 30.906417 -83.512186 +31639 10537 4751 570486234 6732725 220.266 2.600 31.216548 -83.190727 +31641 1831 758 204178050 16156424 78.834 6.238 30.919570 -83.092297 +31642 4898 1991 471657792 10020698 182.108 3.869 31.272143 -82.894614 +31643 8709 4142 680195599 5471200 262.625 2.112 30.770785 -83.558387 +31645 5147 2285 128529839 3088785 49.626 1.193 31.060719 -83.218688 +31647 3535 1405 116549951 2578381 45.000 0.996 31.208842 -83.427337 +31648 1040 388 11955938 0 4.616 0.000 30.706502 -83.019027 +31649 1056 471 127565196 1518157 49.253 0.586 30.963885 -82.995472 +31650 3311 1469 261983691 4672457 101.152 1.804 31.395823 -83.025392 +31698 2223 0 217408 0 0.084 0.000 30.848944 -83.289570 +31699 621 2 1394617 0 0.538 0.000 30.974915 -83.205199 +31701 20552 9242 70019893 4475126 27.035 1.728 31.552695 -84.159214 +31705 35565 13724 398502655 3869141 153.863 1.494 31.516890 -84.042942 +31707 25299 12219 48578907 480718 18.756 0.186 31.586919 -84.206431 +31709 16019 6765 328890375 5182844 126.985 2.001 32.064834 -84.123251 +31711 867 447 152174672 1927098 58.755 0.744 32.190399 -84.130254 +31712 1263 549 127221191 758035 49.120 0.293 31.834992 -83.707348 +31714 6474 2860 486272033 6512152 187.751 2.514 31.720266 -83.694004 +31716 2896 1207 209496922 688050 80.887 0.266 31.356770 -84.129515 +31719 10977 4137 243726560 2131484 94.103 0.823 32.090302 -84.310735 +31720 455 223 12003577 368627 4.635 0.142 30.878167 -83.724533 +31721 20095 8309 552028537 9251167 213.139 3.572 31.525260 -84.301465 +31722 494 212 1936592 41328 0.748 0.016 31.067453 -83.622768 +31730 9682 3919 654839875 1119243 252.835 0.432 31.194884 -84.310924 +31733 1580 730 147717872 4503853 57.034 1.739 31.593190 -83.489763 +31735 817 758 56340603 11605802 21.753 4.481 31.969555 -83.973306 +31738 2102 970 161232473 2385127 62.252 0.921 31.012696 -83.871858 +31743 630 267 140330352 6230960 54.182 2.406 31.909726 -84.001125 +31744 3202 1464 317664142 3864988 122.651 1.492 31.341346 -83.901613 +31747 281 120 2048724 10350 0.791 0.004 31.176703 -83.587067 +31749 2783 1170 152404294 4642857 58.844 1.793 31.413590 -83.327184 +31750 18687 8382 729248968 12569628 281.565 4.853 31.736465 -83.215037 +31756 966 422 101089242 2323142 39.031 0.897 31.183017 -83.965760 +31757 10451 4417 220444609 3804142 85.114 1.469 30.871249 -83.903185 +31763 23304 8405 654286855 9331413 252.622 3.603 31.750082 -84.139065 +31764 1296 611 203602404 2654509 78.611 1.025 31.976312 -84.088839 +31765 2647 1141 219331405 2349687 84.684 0.907 31.087551 -84.027154 +31768 23617 9871 391225396 8898787 151.053 3.436 31.189103 -83.841107 +31771 5666 2053 278477291 5993578 107.521 2.314 31.248233 -83.654247 +31772 482 219 163090135 3241713 62.969 1.252 31.724154 -83.961027 +31773 3729 1715 219324834 3208157 84.682 1.239 30.973428 -84.048091 +31774 6714 2734 434170039 10056040 167.634 3.883 31.558198 -83.269657 +31775 2979 1051 117685154 3525332 45.438 1.361 31.330841 -83.598579 +31778 2562 1190 274559725 2663243 106.008 1.028 30.974992 -83.700075 +31779 9927 3463 365690067 2843211 141.194 1.098 31.108047 -84.211128 +31780 2285 968 258349828 2032264 99.749 0.785 32.031884 -84.388837 +31781 1752 742 70601166 461112 27.259 0.178 31.560578 -83.796292 +31783 1107 492 256929064 4240666 99.201 1.637 31.758976 -83.470125 +31784 781 331 86806690 1143955 33.516 0.442 31.247250 -84.036670 +31787 1488 630 228534751 2214076 88.238 0.855 31.899179 -84.243318 +31788 10602 4012 329856162 7974436 127.358 3.079 31.111441 -83.676797 +31789 1236 538 165972568 987318 64.082 0.381 31.479734 -83.739835 +31790 2078 810 167643511 3904436 64.728 1.508 31.652476 -83.577968 +31791 12354 5109 491765734 1669170 189.872 0.644 31.528624 -83.894073 +31792 23835 10947 546052391 7511407 210.832 2.900 30.770798 -84.043704 +31793 9043 3321 257756553 10683201 99.520 4.125 31.462511 -83.593543 +31794 27153 11539 291225225 10027858 112.443 3.872 31.445884 -83.452678 +31795 2010 858 128216398 1111742 49.505 0.429 31.473618 -83.687462 +31796 1112 635 157690369 1725244 60.885 0.666 31.770118 -83.856468 +31798 983 468 200406899 4600774 77.378 1.776 31.613378 -83.065969 +31801 3008 1357 223831679 1287087 86.422 0.497 32.518830 -84.594333 +31803 5662 2754 732376331 2769691 282.772 1.069 32.300368 -84.508479 +31804 5934 2306 136302851 682408 52.627 0.263 32.664526 -84.889464 +31805 3191 1538 183426029 624866 70.821 0.241 32.263053 -84.739504 +31806 4962 2192 425878291 2437512 164.433 0.941 32.263441 -84.322724 +31807 2483 932 30112448 512384 11.626 0.198 32.638230 -84.800836 +31808 6679 2606 134602667 4115853 51.970 1.589 32.631009 -85.012245 +31810 225 127 32557996 114377 12.571 0.044 32.568463 -84.525722 +31811 5103 2250 338576780 11519829 130.725 4.448 32.739065 -84.931472 +31812 565 329 217498791 2248639 83.977 0.868 32.640087 -84.402869 +31814 272 113 42983442 100480 16.596 0.039 32.221713 -84.842639 +31815 3675 1149 644631990 3833440 248.894 1.480 32.030013 -84.844880 +31816 6091 2824 102748589 1003167 39.671 0.387 32.881465 -84.608150 +31820 8473 3043 103509211 884312 39.965 0.341 32.579398 -84.824700 +31821 250 180 235106694 7566999 90.775 2.922 32.116128 -84.963449 +31822 5429 2542 296912010 1970791 114.638 0.761 32.864979 -84.910348 +31823 754 341 22097797 155620 8.532 0.060 32.810641 -84.822587 +31824 1838 976 291025805 1827148 112.366 0.705 32.052297 -84.522924 +31825 2312 1180 341255422 1293520 131.759 0.499 32.116195 -84.670900 +31826 2350 1083 135410050 378088 52.282 0.146 32.792963 -84.703286 +31827 2134 1034 391664390 2801190 151.222 1.082 32.686718 -84.521816 +31829 1370 528 30221177 209388 11.668 0.081 32.563373 -84.731738 +31830 2191 1010 140774472 1249366 54.353 0.482 32.899494 -84.726708 +31831 3095 1342 172461334 599695 66.588 0.232 32.685573 -84.706837 +31832 217 131 64008197 340959 24.714 0.132 31.957980 -84.614915 +31833 6900 3013 253999664 4723559 98.070 1.824 32.842900 -85.091845 +31836 1154 609 214438159 3099266 82.795 1.197 32.796402 -84.535090 +31901 8638 4155 11526212 745837 4.450 0.288 32.465313 -84.980285 +31903 20128 9140 25938344 1149959 10.015 0.444 32.414148 -84.954244 +31904 32871 14926 74671590 7771643 28.831 3.001 32.554272 -85.009258 +31905 16044 4277 99786206 1281746 38.528 0.495 32.378795 -84.906850 +31906 21757 10939 17793907 6560 6.870 0.003 32.467811 -84.950173 +31907 55332 22774 59510015 274502 22.977 0.106 32.482037 -84.901475 +31909 35177 15407 47153991 479096 18.206 0.185 32.548807 -84.924106 +32003 27126 10440 40991845 18207350 15.827 7.030 30.095585 -81.710157 +32008 5309 3108 357646364 5760145 138.088 2.224 29.910047 -82.913343 +32009 3325 1251 222820024 28379 86.031 0.011 30.422502 -81.973824 +32011 13854 5436 449325484 17913 173.486 0.007 30.571111 -81.839579 +32024 18733 7828 370447532 335517 143.031 0.130 30.089246 -82.733585 +32025 22380 8651 252379671 2129331 97.444 0.822 30.107103 -82.579118 +32026 1959 0 1684375 0 0.650 0.000 30.054148 -82.181680 +32033 4118 1858 199446965 2532426 77.007 0.978 29.788112 -81.434324 +32034 31008 18262 146829630 37805970 56.691 14.597 30.609692 -81.491720 +32038 9228 4476 277774111 200199 107.249 0.077 29.935223 -82.693272 +32040 7604 2880 315303225 0 121.739 0.000 30.243516 -82.238884 +32043 24632 9751 525111521 35031507 202.747 13.526 29.936725 -81.732479 +32044 2060 951 60371340 3362134 23.310 1.298 29.859458 -82.169415 +32046 9410 3794 499968665 2491623 193.039 0.962 30.701544 -81.916442 +32052 9223 3120 714834564 10122920 275.999 3.908 30.486131 -82.936084 +32053 3869 1767 319017568 1912697 123.173 0.738 30.575561 -83.126060 +32054 12307 3924 554423280 15461044 214.064 5.970 30.033622 -82.394324 +32055 16570 7353 485795955 2881665 187.567 1.113 30.270103 -82.624130 +32058 4416 1541 186872679 15438 72.152 0.006 30.076852 -82.111729 +32059 2377 1138 306474255 2302051 118.330 0.889 30.373884 -83.249020 +32060 21363 9576 1025878020 6108373 396.094 2.358 30.274030 -83.041039 +32061 283 119 56947026 0 21.987 0.000 30.097553 -82.510313 +32062 2449 1151 159730503 3607 61.672 0.001 30.137457 -82.978338 +32063 13429 4905 264700313 58595 102.201 0.023 30.245965 -82.113199 +32064 6860 2951 19937887 5105 7.698 0.002 30.295625 -82.984108 +32065 32770 12339 45170067 3142577 17.440 1.213 30.152238 -81.797016 +32066 7312 2446 717173173 6843609 276.902 2.642 30.039624 -83.228097 +32068 50815 19029 261822481 770258 101.090 0.297 30.083265 -81.890854 +32071 3671 1889 273549174 1666556 105.618 0.643 30.058117 -82.955828 +32072 324 162 69445283 7298905 26.813 2.818 30.188160 -82.424491 +32073 38920 16219 42522834 7873649 16.418 3.040 30.169821 -81.739144 +32079 433 249 1358635 0 0.525 0.000 29.977726 -81.807023 +32080 20165 15059 40288916 25134839 15.556 9.705 29.819001 -81.269782 +32081 4524 1704 98953530 3314689 38.206 1.280 30.131119 -81.407584 +32082 28996 14983 86123757 37260289 33.253 14.386 30.125226 -81.369578 +32083 4690 604 103884003 518407 40.110 0.200 30.114651 -82.232829 +32084 29729 14795 123303172 11557837 47.608 4.463 29.918235 -81.367087 +32086 24546 11849 170434119 15278737 65.805 5.899 29.759316 -81.301979 +32087 5518 1651 349779045 2100275 135.050 0.811 30.377434 -82.280460 +32091 15472 7015 345553667 19780137 133.419 7.637 29.929682 -82.127565 +32092 28242 11055 326189105 12211039 125.942 4.715 29.936161 -81.507300 +32094 2724 1267 149821008 943624 57.846 0.364 30.188269 -82.822118 +32095 7302 3063 129070864 6909453 49.835 2.668 30.014616 -81.411637 +32096 2635 1340 420665065 2167114 162.420 0.837 30.537916 -82.624487 +32097 15616 6223 343981607 26252216 132.812 10.136 30.661202 -81.618793 +32102 2565 1996 163030476 14396836 62.946 5.559 29.137291 -81.546429 +32110 7600 3602 682769486 11383714 263.619 4.395 29.428804 -81.339209 +32112 7713 4144 137195639 57538674 52.972 22.216 29.422007 -81.577182 +32113 6627 2935 204222317 11400703 78.851 4.402 29.409977 -82.089218 +32114 32084 15666 43833609 2151177 16.924 0.831 29.194000 -81.047652 +32117 24170 12525 29288265 1757624 11.308 0.679 29.235588 -81.063969 +32118 16961 15473 10970634 11746703 4.236 4.535 29.209639 -81.002321 +32119 20189 11626 20272503 3056696 7.827 1.180 29.160515 -81.026460 +32124 5986 1337 116944272 769432 45.152 0.297 29.170716 -81.141403 +32127 29413 16485 41073595 14502120 15.859 5.599 29.106257 -80.973604 +32128 16910 8051 86610157 713128 33.440 0.275 29.100739 -81.071829 +32129 20104 10753 19276444 651408 7.443 0.252 29.136974 -81.023957 +32130 5474 2203 239115078 24827849 92.323 9.586 29.148342 -81.341043 +32131 4701 2049 87149181 25211797 33.648 9.734 29.684541 -81.566450 +32132 7265 3830 19249333 742342 7.432 0.287 28.978742 -80.922741 +32133 137 75 914496 0 0.353 0.000 29.020177 -81.909262 +32134 8084 6087 621919161 69186863 240.124 26.713 29.385007 -81.837948 +32136 7080 5042 48871111 7131171 18.869 2.753 29.463685 -81.147376 +32137 37821 20744 153476374 14259396 59.258 5.506 29.581655 -81.219358 +32139 1129 797 30946534 22185978 11.949 8.566 29.375342 -81.608865 +32140 1741 865 71169920 3468646 27.479 1.339 29.763094 -81.870560 +32141 17603 8533 60921307 2134685 23.522 0.824 28.928953 -80.919135 +32145 5456 2260 239315752 1310880 92.400 0.506 29.677558 -81.421332 +32147 593 255 44158904 188175 17.050 0.073 29.598761 -81.787885 +32148 11201 5579 218925487 11660649 84.528 4.502 29.610135 -81.884332 +32157 407 285 4065806 1141163 1.570 0.441 29.468285 -81.577652 +32159 28867 18159 82279717 11948919 31.768 4.614 28.933207 -81.898475 +32162 45180 31950 59904741 2253972 23.129 0.870 28.914383 -81.989560 +32164 41616 18345 86384220 597671 33.353 0.231 29.519896 -81.237755 +32168 23642 12673 424964754 5791624 164.080 2.236 28.963773 -81.029413 +32169 9816 11497 38218360 35139668 14.756 13.568 28.965461 -80.866467 +32174 47552 23973 319657091 14440121 123.420 5.575 29.284784 -81.161348 +32176 14339 10386 13608871 9848471 5.254 3.803 29.331582 -81.062507 +32177 27132 11743 617913462 49218089 238.578 19.003 29.690907 -81.708149 +32179 8156 4715 178112063 38650854 68.769 14.923 29.087485 -81.891367 +32180 4218 1580 277346293 20941996 107.084 8.086 29.220632 -81.443836 +32181 2551 1395 64878213 5561233 25.050 2.147 29.508059 -81.602008 +32187 1713 845 61571998 8615947 23.773 3.327 29.578946 -81.550038 +32189 5807 3607 63227563 8764714 24.412 3.384 29.550867 -81.647122 +32190 1170 563 81975663 9918444 31.651 3.830 29.337240 -81.483957 +32193 825 701 20561398 965818 7.939 0.373 29.505449 -81.643809 +32195 3328 1612 54754227 14696333 21.141 5.674 28.988080 -81.886336 +32202 7915 2090 5121313 2443808 1.977 0.944 30.324592 -81.647114 +32204 6906 4215 7054692 3873642 2.724 1.496 30.317005 -81.680837 +32205 28225 14816 19648105 4513698 7.586 1.743 30.298806 -81.721240 +32206 17669 9576 15966494 3852867 6.165 1.488 30.350191 -81.638776 +32207 33306 16948 29858774 12095064 11.529 4.670 30.290018 -81.641022 +32208 30879 14186 30101524 4821610 11.622 1.862 30.393090 -81.682946 +32209 34305 16980 24176911 80330 9.335 0.031 30.361015 -81.696254 +32210 59080 27074 52180502 14233637 20.147 5.496 30.266582 -81.745526 +32211 30501 14621 21334397 2270180 8.237 0.877 30.332207 -81.582792 +32212 1959 199 13707134 8746080 5.292 3.377 30.216924 -81.666829 +32216 34876 16667 32545339 1190689 12.566 0.460 30.277467 -81.582904 +32217 18817 9239 13674891 9728133 5.280 3.756 30.237991 -81.625052 +32218 53473 21865 250375622 10613365 96.671 4.098 30.487775 -81.667141 +32219 11886 4842 138388745 1206107 53.432 0.466 30.424964 -81.813046 +32220 12946 5085 158902017 1582155 61.352 0.611 30.367918 -81.869877 +32221 27918 10491 93051202 478284 35.927 0.185 30.256279 -81.853581 +32222 8691 3575 29905112 137744 11.546 0.053 30.216757 -81.828353 +32223 23980 10053 29732247 24726402 11.480 9.547 30.156644 -81.649266 +32224 38934 16686 54641711 2476074 21.097 0.956 30.270482 -81.468756 +32225 52485 21597 68415186 21170509 26.415 8.174 30.357756 -81.505829 +32226 15761 6068 221436563 67098049 85.497 25.907 30.481240 -81.506148 +32227 2149 540 3268154 2346419 1.262 0.906 30.389189 -81.404408 +32228 314 0 335197 0 0.129 0.000 30.391860 -81.400074 +32233 23673 10128 26394319 8196738 10.191 3.165 30.358516 -81.419275 +32234 6606 2679 335454814 1292362 129.520 0.499 30.226001 -81.983522 +32244 57369 24187 61067372 1353556 23.578 0.523 30.217669 -81.752545 +32246 48789 20951 49076116 670906 18.948 0.259 30.293760 -81.517139 +32250 25356 13640 22306051 6262915 8.612 2.418 30.280508 -81.412032 +32254 13570 5992 32077889 89064 12.385 0.034 30.340961 -81.734788 +32256 38483 20167 164081208 1958189 63.352 0.756 30.175149 -81.472825 +32257 36430 16735 31603959 11955590 12.202 4.616 30.189355 -81.612465 +32258 26759 10853 48415572 1322934 18.693 0.511 30.137199 -81.549024 +32259 36917 13182 141641130 9034797 54.688 3.488 30.080228 -81.584395 +32266 7037 3493 6039907 1535316 2.332 0.593 30.317386 -81.409066 +32277 29517 13109 18560492 9224091 7.166 3.561 30.377535 -81.593890 +32301 29321 14433 26768381 172285 10.335 0.067 30.427753 -84.258472 +32303 47359 22317 91923888 9932572 35.492 3.835 30.515516 -84.341629 +32304 46145 19538 40585058 390702 15.670 0.151 30.453670 -84.352721 +32305 20073 8966 232098241 2746514 89.614 1.060 30.332299 -84.296361 +32308 21586 10863 38237252 453878 14.763 0.175 30.477450 -84.226927 +32309 30159 12864 287668433 8397230 111.069 3.242 30.566830 -84.097649 +32310 17402 8743 273247029 12251420 105.501 4.730 30.385436 -84.512181 +32311 17493 8311 115569383 6853675 44.622 2.646 30.382208 -84.174237 +32312 31869 12763 270083117 45362340 104.280 17.514 30.605283 -84.229562 +32317 14067 5326 99064408 3030953 38.249 1.170 30.470692 -84.116832 +32320 3858 2021 103354869 49450800 39.906 19.093 29.731714 -85.111304 +32321 6460 2403 1053233661 16063898 406.656 6.202 30.265440 -84.979665 +32322 4007 2196 186097950 99671035 71.853 38.483 29.957304 -84.576593 +32323 217 418 20007197 216075 7.725 0.083 29.891511 -84.613733 +32324 5445 2026 181178615 1390324 69.953 0.537 30.654712 -84.783254 +32327 26953 10158 598817557 48619329 231.205 18.772 30.182261 -84.305327 +32328 3149 3110 290752073 370444911 112.260 143.030 29.751831 -84.909118 +32330 804 312 8722779 0 3.368 0.000 30.579934 -84.750533 +32331 4242 2079 753108400 34213890 290.777 13.210 30.441057 -83.638355 +32332 1642 655 11781246 341378 4.549 0.132 30.620273 -84.677031 +32333 11330 5257 274144347 3252092 105.848 1.256 30.607607 -84.417533 +32334 1904 954 428188325 3218815 165.324 1.243 30.258575 -84.740243 +32336 1391 865 469086270 5644157 181.115 2.179 30.260764 -83.847969 +32340 11808 4859 604374038 13111585 233.350 5.062 30.460330 -83.433967 +32343 3044 1223 68673003 5894327 26.515 2.276 30.475365 -84.480288 +32344 13193 5841 1334405803 41597253 515.217 16.061 30.526076 -83.962290 +32346 1693 1744 85604631 57087310 33.052 22.042 29.990836 -84.384581 +32347 8057 3621 273963351 624649 105.778 0.241 30.172470 -83.609333 +32348 12442 4960 825091086 43214941 318.569 16.685 29.977404 -83.596157 +32350 1417 713 132571000 2168113 51.186 0.837 30.574964 -83.325791 +32351 17486 7327 542512405 20013689 209.465 7.727 30.520392 -84.675023 +32352 6638 2706 250280605 696022 96.634 0.269 30.662356 -84.591623 +32355 312 221 8851059 411646 3.417 0.159 30.172037 -84.208422 +32356 129 111 101155003 22840 39.056 0.009 29.859235 -83.415003 +32358 2145 1593 405357228 8180926 156.509 3.159 30.105666 -84.558003 +32359 1721 2266 405493808 45770957 156.562 17.672 29.680062 -83.386582 +32361 252 133 5938263 0 2.293 0.000 30.357712 -83.988583 +32399 2 1 646288 1624 0.250 0.001 30.436901 -84.282546 +32401 22647 11764 27701456 14935937 10.696 5.767 30.159737 -85.660922 +32403 2995 935 114529662 78132259 44.220 30.167 30.048562 -85.553231 +32404 38425 16640 333647041 48225893 128.822 18.620 30.196305 -85.506149 +32405 29980 13925 49186653 11781014 18.991 4.549 30.201994 -85.667428 +32407 9347 8118 35920861 10463907 13.869 4.040 30.198324 -85.790694 +32408 15352 16263 27351030 39805492 10.560 15.369 30.142185 -85.732678 +32409 8691 3820 195896681 19240252 75.636 7.429 30.356756 -85.653691 +32410 740 1451 51944282 9072880 20.056 3.503 29.995187 -85.414223 +32413 13128 16686 189301502 20528462 73.090 7.926 30.310300 -85.905314 +32420 2144 1246 135550179 4731007 52.336 1.827 30.632365 -85.384570 +32421 4497 2075 355442176 2200754 137.237 0.850 30.531817 -85.179795 +32423 1264 633 169420159 3005299 65.413 1.160 30.943727 -85.061166 +32424 7994 2827 405468637 15055306 156.552 5.813 30.362385 -85.083060 +32425 14268 5875 694836852 16857500 268.278 6.509 30.853184 -85.720492 +32426 942 487 125727407 1512393 48.544 0.584 30.946886 -85.370413 +32427 1475 589 117727660 11080367 45.455 4.278 30.710704 -85.792206 +32428 17412 7253 726836289 44009245 280.633 16.992 30.615750 -85.572945 +32430 1199 618 215244783 0 83.106 0.000 30.418361 -85.234083 +32431 4983 2354 275072515 19144753 106.206 7.392 30.787482 -85.410816 +32432 89 41 334786 0 0.129 0.000 30.714871 -85.077571 +32433 16025 7256 670642801 26555881 258.937 10.253 30.851178 -86.200838 +32435 6651 3301 334763426 1907617 129.253 0.737 30.656732 -86.131273 +32437 679 346 91121796 5235221 35.182 2.021 30.436248 -85.909221 +32438 4060 1997 162751694 964947 62.839 0.373 30.501287 -85.424081 +32439 7715 4219 265525405 12851251 102.520 4.962 30.468337 -86.112068 +32440 7563 2506 270459347 2480777 104.425 0.958 30.922426 -85.526190 +32442 3699 1777 242554879 16664059 93.651 6.434 30.678553 -85.017163 +32443 2921 1479 152869980 277826 59.023 0.107 30.872521 -85.109420 +32444 18985 8359 24332276 12520022 9.395 4.834 30.239945 -85.651600 +32445 2644 625 67446105 1147070 26.041 0.443 30.968635 -85.197742 +32446 11075 4561 421829077 6015900 162.869 2.323 30.848192 -85.231403 +32447 78 0 1005587 0 0.388 0.000 30.759950 -85.251567 +32448 8684 4354 478654772 9748555 184.810 3.764 30.670313 -85.227422 +32449 478 249 129495923 65416 49.999 0.025 30.286856 -85.240257 +32455 4736 2362 600917562 22014807 232.016 8.500 30.638626 -85.962701 +32456 6966 5761 212753178 114164482 82.144 44.079 29.838272 -85.298199 +32459 11457 11678 141718481 40145065 54.718 15.500 30.360668 -86.185532 +32460 5856 1950 191987325 38326308 74.127 14.798 30.764089 -84.954234 +32461 13 57 1524426 0 0.589 0.000 30.289685 -86.027719 +32462 3412 1906 397239943 17387020 153.375 6.713 30.554200 -85.833399 +32463 114 53 217986 0 0.084 0.000 30.631413 -85.590275 +32464 3994 2037 441248221 13126006 170.367 5.068 30.902879 -85.952559 +32465 9232 3745 612314102 28402596 236.416 10.966 30.007868 -85.181889 +32466 5641 2453 293948810 8116204 113.494 3.134 30.394337 -85.512314 +32501 11730 5349 9852974 98737 3.804 0.038 30.428781 -87.222515 +32502 3298 2021 5965295 135565 2.303 0.052 30.409367 -87.223506 +32503 32011 14207 31858588 1584979 12.301 0.612 30.459667 -87.213643 +32504 21441 10757 27709282 122198 10.699 0.047 30.472483 -87.186672 +32505 28213 12725 35100796 829103 13.552 0.320 30.454624 -87.260650 +32506 33846 15514 84033711 22273130 32.446 8.600 30.391628 -87.369394 +32507 28996 16971 65280007 46258149 25.205 17.860 30.339837 -87.373783 +32508 5852 368 21023825 2389395 8.117 0.923 30.350765 -87.316598 +32509 660 0 3309348 512 1.278 0.000 30.467726 -87.334279 +32511 1145 0 629101 0 0.243 0.000 30.406055 -87.291696 +32514 37399 17761 50537722 1326168 19.513 0.512 30.531268 -87.221604 +32526 36297 15190 150638815 12778182 58.162 4.934 30.499226 -87.365573 +32530 38 24 127323 0 0.049 0.000 30.598239 -87.030361 +32531 5296 2393 563101816 6043690 217.415 2.333 30.874169 -86.700335 +32533 26493 10598 193879400 3663127 74.857 1.414 30.610506 -87.326783 +32534 14029 6376 25144383 218998 9.708 0.085 30.528939 -87.281718 +32535 6326 2079 185585989 5335770 71.655 2.060 30.963418 -87.345635 +32536 19709 8585 120640064 2087953 46.579 0.806 30.763783 -86.591616 +32539 25079 9837 315031917 4508879 121.635 1.741 30.776138 -86.464476 +32541 15565 15748 30076036 16266821 11.612 6.281 30.392765 -86.469506 +32542 3457 1192 42208104 4378052 16.297 1.690 30.464551 -86.525167 +32544 1818 375 24603982 895597 9.500 0.346 30.426974 -86.696265 +32547 32485 15486 90492568 3098214 34.939 1.196 30.473869 -86.668362 +32548 19343 12276 33659091 23780087 12.996 9.182 30.403001 -86.650482 +32550 5867 12239 17307188 1845482 6.682 0.713 30.385086 -86.346246 +32561 7899 6218 30525785 69759458 11.786 26.934 30.347061 -87.113185 +32563 22406 10114 43046775 774787 16.620 0.299 30.396879 -87.028821 +32564 2881 1338 236176033 1936431 91.188 0.748 30.728849 -86.781932 +32565 5719 2456 597478125 7043866 230.688 2.720 30.892603 -87.131683 +32566 33671 15325 104245064 7271363 40.249 2.807 30.436005 -86.880319 +32567 3510 1748 360975155 6363711 139.373 2.457 30.924677 -86.445786 +32568 3122 1334 403908535 2498567 155.950 0.965 30.873178 -87.449977 +32569 11235 5238 10477995 7060949 4.046 2.726 30.409856 -86.733151 +32570 28817 12615 827208114 5852128 319.387 2.260 30.805548 -86.974484 +32571 28881 11574 269389412 2800414 104.012 1.081 30.677679 -87.199429 +32577 4625 1908 171936454 2442511 66.385 0.943 30.727473 -87.365012 +32578 30108 13293 62342318 10859392 24.071 4.193 30.506696 -86.447541 +32579 9997 4714 11277258 6185796 4.354 2.388 30.449473 -86.574504 +32580 3662 1849 32350917 2050994 12.491 0.792 30.490067 -86.514831 +32583 25586 9765 374125473 28764146 144.451 11.106 30.592428 -86.970668 +32601 18585 9381 11726458 51599 4.528 0.020 29.648993 -82.324515 +32603 6741 2316 3545203 20591 1.369 0.008 29.656712 -82.347500 +32605 22925 10543 25919038 121890 10.007 0.047 29.679180 -82.372822 +32606 21833 10571 44273265 253128 17.094 0.098 29.682004 -82.444096 +32607 29750 14552 30624481 224085 11.824 0.087 29.647328 -82.418917 +32608 45842 22975 101000372 6296103 38.996 2.431 29.597009 -82.407808 +32609 18756 8186 290843169 6376578 112.295 2.462 29.768990 -82.282534 +32612 5458 13 2117657 310044 0.818 0.120 29.643120 -82.353845 +32615 14295 6302 359199819 3857148 138.688 1.489 29.819094 -82.486085 +32616 872 355 1661310 0 0.641 0.000 29.788492 -82.495253 +32617 4109 1796 76539050 6287776 29.552 2.428 29.308388 -82.074366 +32618 7732 3463 235406402 6363304 90.891 2.457 29.545873 -82.516538 +32619 4730 2301 306167176 4008672 118.212 1.548 29.762577 -82.860120 +32621 5584 2281 190013180 5379245 73.365 2.077 29.424698 -82.610144 +32622 1294 597 157649446 301694 60.869 0.116 29.908054 -82.318845 +32625 1838 1172 219471990 96204225 84.739 37.145 29.208264 -82.997039 +32626 8133 4186 528692580 7832402 204.129 3.024 29.425025 -82.898424 +32628 4850 1644 268152006 894186 103.534 0.345 29.625434 -83.207000 +32631 291 169 4819525 440016 1.861 0.170 29.704846 -82.092105 +32639 397 265 147293114 1070998 56.870 0.414 29.227004 -82.712558 +32640 10510 5689 541029234 133920341 208.893 51.707 29.577338 -82.087043 +32641 14291 5460 127290659 30156976 49.147 11.644 29.642524 -82.231714 +32643 10936 4844 303296946 1609027 117.104 0.621 29.824665 -82.651245 +32648 437 684 155651074 33629803 60.097 12.985 29.503781 -83.270475 +32653 12844 5933 101180216 2086558 39.066 0.806 29.744787 -82.393796 +32656 14014 6489 145837206 15950622 56.308 6.159 29.813684 -81.959454 +32658 308 123 7782079 75155 3.005 0.029 29.846767 -82.397103 +32664 510 318 3672245 846 1.418 0.000 29.445934 -82.217423 +32666 5916 3206 141353098 13632513 54.577 5.264 29.723637 -81.997495 +32667 3794 1906 241081427 46692709 93.082 18.028 29.511966 -82.305264 +32668 5082 2482 314673237 1523401 121.496 0.588 29.257343 -82.474807 +32669 11623 4982 268134144 11043104 103.527 4.264 29.632154 -82.589957 +32680 10223 5739 647185945 40776659 249.880 15.744 29.542562 -83.132310 +32681 136 73 953630 0 0.368 0.000 29.423388 -82.205579 +32683 151 89 21242665 10726 8.202 0.004 29.295643 -82.786384 +32686 5003 2389 191450527 774721 73.919 0.299 29.355545 -82.275016 +32692 295 672 13370820 978116 5.163 0.378 29.333289 -83.122358 +32693 12154 4876 532129139 15613794 205.456 6.029 29.626477 -82.785310 +32694 2142 1075 69303389 3531567 26.758 1.364 29.807932 -82.144315 +32696 12071 5433 380400534 4260197 146.873 1.645 29.397511 -82.461818 +32697 253 139 1179726 55048 0.455 0.021 29.932587 -82.429553 +32701 21577 11260 14544844 1331661 5.616 0.514 28.665548 -81.370266 +32702 2705 1498 146192690 15407489 56.445 5.949 29.039041 -81.624998 +32703 46207 18090 131478557 16039383 50.764 6.193 28.671439 -81.553055 +32707 35335 16154 25104540 2518419 9.693 0.972 28.663959 -81.315021 +32708 42012 17696 47748611 2976676 18.436 1.149 28.686894 -81.273258 +32709 2566 1053 302326912 6969235 116.729 2.691 28.500893 -80.959302 +32712 41769 15942 154469533 5035565 59.641 1.944 28.751690 -81.487470 +32713 19491 9098 53532041 7753951 20.669 2.994 28.883730 -81.325287 +32714 34862 16852 22114189 1173644 8.538 0.453 28.662559 -81.411756 +32720 29700 13416 162602952 9823180 62.781 3.793 29.003431 -81.368585 +32724 31826 14827 245556360 5855762 94.810 2.261 29.057250 -81.225582 +32725 44905 18924 59335709 24475313 22.910 9.450 28.886079 -81.251563 +32726 20029 9628 31640070 4336442 12.216 1.674 28.855051 -81.678843 +32730 5354 2728 3072754 318544 1.186 0.123 28.654162 -81.343713 +32732 5589 2271 145270971 17812604 56.089 6.877 28.750367 -81.102337 +32735 3903 1955 9815800 3185978 3.790 1.230 28.890420 -81.739041 +32736 9736 4019 272952261 23668651 105.387 9.139 28.916491 -81.490108 +32738 43830 16592 66976215 8358124 25.860 3.227 28.905269 -81.185176 +32744 3588 1738 34762109 1032514 13.422 0.399 28.985019 -81.219826 +32746 40571 17700 57156536 3881511 22.068 1.499 28.766592 -81.354882 +32750 22713 9273 26671926 1447085 10.298 0.559 28.707950 -81.348035 +32751 19928 9697 18200283 3264371 7.027 1.260 28.630400 -81.365046 +32754 11313 5245 358481752 50313668 138.411 19.426 28.686657 -80.919640 +32757 23746 12132 94193229 16839509 36.368 6.502 28.773053 -81.638118 +32759 2871 1669 105951725 3959446 40.908 1.529 28.825785 -80.902705 +32763 21263 10438 43504946 304857 16.797 0.118 28.941315 -81.296820 +32764 3120 1527 234919565 14977538 90.703 5.783 28.848057 -81.084904 +32765 56349 21579 101293754 10151512 39.110 3.920 28.665141 -81.196224 +32766 15698 5146 113408405 7277699 43.787 2.810 28.643576 -81.074925 +32767 2622 1332 163777529 12645436 63.235 4.882 29.026591 -81.534474 +32771 49481 21098 93693480 3996857 36.175 1.543 28.813563 -81.325003 +32773 28787 12028 71828149 19767333 27.733 7.632 28.755429 -81.247905 +32776 10262 4102 111852593 3769719 43.187 1.455 28.820128 -81.508803 +32778 18617 10090 64978322 43349423 25.088 16.737 28.780881 -81.734873 +32779 27556 11332 48738376 2042251 18.818 0.789 28.727263 -81.414779 +32780 34628 18779 165233755 33664322 63.797 12.998 28.532779 -80.792256 +32784 11432 5210 234878704 35730777 90.687 13.796 28.974539 -81.716422 +32789 24557 11972 20183681 4729097 7.793 1.826 28.599188 -81.352273 +32792 46914 23554 31832888 1762502 12.291 0.681 28.610096 -81.298342 +32796 20139 9800 37855969 10266457 14.616 3.964 28.625287 -80.845853 +32798 2550 1534 8039424 432483 3.104 0.167 28.723714 -81.587720 +32801 12050 8492 5911002 378049 2.282 0.146 28.541774 -81.374351 +32803 19020 10684 17970616 2431351 6.938 0.939 28.555514 -81.346209 +32804 17312 9145 19033630 3064513 7.349 1.183 28.578680 -81.396447 +32805 21810 9765 17274574 2926179 6.670 1.130 28.529996 -81.403681 +32806 24820 12091 17250447 2132946 6.660 0.824 28.511789 -81.360438 +32807 31465 13151 20960393 569889 8.093 0.220 28.554584 -81.299722 +32808 46334 19542 31022709 1782886 11.978 0.688 28.580110 -81.444300 +32809 26773 10467 26878245 4926567 10.378 1.902 28.462146 -81.385959 +32810 32210 13770 23939373 1614057 9.243 0.623 28.625101 -81.427690 +32811 35825 16692 21501586 886494 8.302 0.342 28.521568 -81.447421 +32812 32844 14972 22258057 3855728 8.594 1.489 28.483996 -81.322855 +32814 6151 3090 3420307 1087903 1.321 0.420 28.572584 -81.322358 +32817 35105 13404 29067928 2064608 11.223 0.797 28.590992 -81.243645 +32818 43911 16401 29868935 2146423 11.532 0.829 28.586751 -81.486895 +32819 24976 13788 53337933 6455439 20.594 2.492 28.453439 -81.472422 +32820 7974 2908 39080441 4125393 15.089 1.593 28.583601 -81.124388 +32821 21423 11851 29055072 1899259 11.218 0.733 28.381999 -81.479599 +32822 53029 24862 34432212 1753653 13.294 0.677 28.489898 -81.290154 +32824 37401 13011 80472242 477872 31.071 0.185 28.384164 -81.333040 +32825 53024 20548 74609998 276473 28.807 0.107 28.518028 -81.229003 +32826 29347 8613 24937156 751567 9.628 0.290 28.588358 -81.184561 +32827 6362 2775 60629084 4074051 23.409 1.573 28.415886 -81.298750 +32828 57881 22113 55345203 31641 21.369 0.012 28.529208 -81.166358 +32829 17822 6911 25394798 1747003 9.805 0.675 28.484548 -81.246093 +32830 26 9 52632814 2048559 20.322 0.791 28.383063 -81.573614 +32831 2542 94 26076047 0 10.068 0.000 28.473077 -81.148241 +32832 13787 5451 146389439 15661694 56.521 6.047 28.403180 -81.191537 +32833 9241 3610 90337683 250927 34.880 0.097 28.495069 -81.079755 +32835 39633 18507 24329373 3846125 9.394 1.485 28.518602 -81.482513 +32836 16647 8261 40466816 11738183 15.624 4.532 28.407838 -81.519295 +32837 51219 19570 58109747 108158 22.436 0.042 28.379425 -81.429129 +32839 50279 21211 19304588 3094237 7.454 1.195 28.488069 -81.407208 +32901 24521 13196 32565205 5727843 12.573 2.212 28.079357 -80.623618 +32903 12869 7018 9571916 14846388 3.696 5.732 28.104536 -80.593357 +32904 26710 12970 50308763 131287 19.424 0.051 28.066500 -80.678441 +32905 22084 12204 24598461 7736676 9.498 2.987 28.031367 -80.600412 +32907 41870 17229 45915392 241884 17.728 0.093 28.020804 -80.681257 +32908 10892 4230 49951650 0 19.286 0.000 27.956345 -80.698949 +32909 30120 12334 113599458 297551 43.861 0.115 27.919258 -80.644232 +32920 9848 8242 10494843 14645138 4.052 5.655 28.396520 -80.616071 +32922 14916 7570 14242841 5242207 5.499 2.024 28.372999 -80.742906 +32925 1222 462 8047495 22632536 3.107 8.738 28.246103 -80.629046 +32926 22752 9527 131397680 15342161 50.733 5.924 28.388705 -80.818135 +32927 28092 11083 56821840 8328540 21.939 3.216 28.457509 -80.812888 +32931 13567 10797 13460968 39461499 5.197 15.236 28.323196 -80.623102 +32934 17338 7548 62712934 6116768 24.214 2.362 28.135306 -80.713073 +32935 39082 20034 33331268 11909635 12.869 4.598 28.145549 -80.649969 +32937 24969 13533 17386893 9650479 6.713 3.726 28.178766 -80.601770 +32940 31999 15076 337477626 27722966 130.301 10.704 28.213275 -80.795699 +32948 6773 2104 684184078 4944903 264.165 1.909 27.888805 -80.733582 +32949 2248 1110 42093677 7257708 16.252 2.802 27.909843 -80.567690 +32950 3982 1751 46207526 7156993 17.841 2.763 27.980571 -80.569593 +32951 10673 6827 21043685 55549525 8.125 21.448 27.947337 -80.504706 +32952 19881 9614 32043169 68901944 12.372 26.603 28.310930 -80.660577 +32953 22754 10905 83539748 39061424 32.255 15.082 28.441687 -80.702668 +32955 36374 16391 57345270 9332449 22.141 3.603 28.296697 -80.725043 +32958 25366 13260 72106790 12012290 27.841 4.638 27.794384 -80.491460 +32960 20037 11439 29432009 1359728 11.364 0.525 27.641533 -80.402619 +32962 22716 12309 31743150 6280144 12.256 2.425 27.587819 -80.382865 +32963 14911 11456 44976733 60701308 17.366 23.437 27.718239 -80.393276 +32966 15626 10379 753841163 27729055 291.060 10.706 27.683619 -80.707641 +32967 19518 9971 108042654 3696038 41.716 1.427 27.715446 -80.454301 +32968 12830 5330 68083053 111619 26.287 0.043 27.584207 -80.472479 +32970 303 186 2793812 7200 1.079 0.003 27.750398 -80.449289 +32976 9079 6575 66489446 6700059 25.672 2.587 27.846240 -80.554209 +33001 315 651 5057172 25412643 1.953 9.812 24.817130 -80.806001 +33004 15588 8772 14763304 1557425 5.700 0.601 26.057792 -80.137623 +33009 39341 29120 13168818 1536639 5.085 0.593 25.985191 -80.147265 +33010 46187 15876 11178683 147230 4.316 0.057 25.833202 -80.278720 +33012 72248 24734 15185010 633832 5.863 0.245 25.866106 -80.301115 +33013 33852 10005 9874425 43611 3.813 0.017 25.862190 -80.269677 +33014 40654 14923 15879078 2804469 6.131 1.083 25.903447 -80.302417 +33015 63544 22552 15086374 1624711 5.825 0.627 25.940565 -80.318180 +33016 45342 14854 11338569 1615776 4.378 0.624 25.895005 -80.332455 +33018 46117 13486 50488502 7222094 19.494 2.788 25.917734 -80.384416 +33019 15107 12755 10202962 6931810 3.939 2.676 26.027459 -80.120219 +33020 41329 22493 15674148 214882 6.052 0.083 26.019191 -80.152944 +33021 45921 22367 22561732 263815 8.711 0.102 26.023130 -80.186539 +33023 63576 21409 24958795 542829 9.637 0.210 25.989200 -80.217067 +33024 63916 24022 27799373 715781 10.733 0.276 26.027261 -80.244710 +33025 59039 24069 28016143 810783 10.817 0.313 25.988210 -80.281374 +33026 28498 11963 11734441 1311816 4.531 0.506 26.026198 -80.295994 +33027 57663 23211 34764963 1407682 13.423 0.544 25.985442 -80.343473 +33028 26696 8616 14891648 474199 5.750 0.183 26.021239 -80.340396 +33029 45235 13995 46172499 4852313 17.827 1.873 25.974300 -80.416084 +33030 34110 11260 47538683 198421 18.355 0.077 25.485147 -80.510882 +33031 5859 2175 55353145 145236 21.372 0.056 25.524653 -80.501317 +33032 34088 11068 48702619 2301001 18.804 0.888 25.531334 -80.390738 +33033 49028 16779 43465255 1257707 16.782 0.486 25.483190 -80.414478 +33034 18613 6308 723689319 63620105 279.418 24.564 25.274354 -80.632499 +33035 13497 6177 53791044 857686 20.769 0.331 25.409275 -80.384155 +33036 3035 3618 15176071 126171030 5.860 48.715 24.893835 -80.710993 +33037 11612 10113 87599034 226325606 33.822 87.385 25.228322 -80.395451 +33039 122 46 785623 80430 0.303 0.031 25.501679 -80.398423 +33040 32891 18081 47890836 329145755 18.491 127.084 24.561353 -81.909735 +33042 5829 4668 66082822 231946904 25.515 89.555 24.671216 -81.505144 +33043 4313 3052 38421946 173923771 14.835 67.152 24.725861 -81.329949 +33050 8922 7057 23533878 99527088 9.086 38.428 24.747487 -81.010326 +33051 796 1430 1131033 550149 0.437 0.212 24.720625 -81.021524 +33054 29061 9968 22731775 849026 8.777 0.328 25.908575 -80.265122 +33055 43194 12486 15548789 825971 6.003 0.319 25.948468 -80.278855 +33056 35059 11107 15706627 692079 6.064 0.267 25.948877 -80.243582 +33060 32154 14646 18217447 0 7.034 0.000 26.234772 -80.120584 +33062 23948 21836 9803301 6077178 3.785 2.346 26.241077 -80.091233 +33063 51019 25109 23034542 616226 8.894 0.238 26.251573 -80.209454 +33064 52969 23931 27098248 783060 10.463 0.302 26.278502 -80.115300 +33065 51921 19745 21566781 275994 8.327 0.107 26.273770 -80.260118 +33066 15760 10613 8240040 76805 3.181 0.030 26.252615 -80.170374 +33067 26458 9670 27514955 746210 10.624 0.288 26.305815 -80.225390 +33068 49824 17834 15433376 86282 5.959 0.033 26.215954 -80.217951 +33069 25700 14851 24300518 739768 9.382 0.286 26.235830 -80.156969 +33070 5344 4070 11301691 34945276 4.364 13.492 25.017205 -80.518498 +33071 36964 13948 19942118 182272 7.700 0.070 26.244602 -80.265311 +33073 29168 11454 22026032 299262 8.504 0.116 26.298241 -80.181416 +33076 29751 10374 32019554 562410 12.363 0.217 26.315322 -80.277978 +33101 0 0 17695 0 0.007 0.000 25.779298 -80.198739 +33109 594 754 805729 2095170 0.311 0.809 25.756717 -80.140066 +33122 1 1 15358629 229349 5.930 0.089 25.794850 -80.288350 +33125 52677 20271 10003115 431689 3.862 0.167 25.783753 -80.237812 +33126 46867 18904 12970290 1693143 5.008 0.654 25.779400 -80.299475 +33127 28909 10708 8560281 8927 3.305 0.003 25.813175 -80.205808 +33128 7562 3360 1028612 49487 0.397 0.019 25.776168 -80.203733 +33129 13833 8176 3501237 4463993 1.352 1.724 25.750167 -80.190028 +33130 26108 14259 2856756 68306 1.103 0.026 25.768524 -80.203359 +33131 14917 13481 1048261 2224802 0.405 0.859 25.766206 -80.182897 +33132 11165 7504 4365112 4064277 1.685 1.569 25.778369 -80.175785 +33133 31926 16189 10817743 3652423 4.177 1.410 25.728662 -80.239996 +33134 37456 17629 13491391 32901 5.209 0.013 25.753332 -80.270379 +33135 36066 14933 5584972 0 2.156 0.000 25.766544 -80.235095 +33136 13791 6257 3693308 84096 1.426 0.032 25.787182 -80.204722 +33137 19410 10825 5244021 8629968 2.025 3.332 25.816281 -80.171528 +33138 27571 13360 10921680 5773827 4.217 2.229 25.853765 -80.178002 +33139 38613 32255 6967545 8592030 2.690 3.317 25.779808 -80.153200 +33140 21210 17643 7874950 10830784 3.041 4.182 25.819714 -80.133711 +33141 35249 22062 5997658 13350948 2.316 5.155 25.851854 -80.138726 +33142 52606 19529 18323080 237710 7.075 0.092 25.812023 -80.239315 +33143 31407 14526 20447765 642447 7.895 0.248 25.703032 -80.297375 +33144 26903 9355 8015183 124827 3.095 0.048 25.763458 -80.312667 +33145 29758 12263 6575725 0 2.539 0.000 25.753132 -80.234427 +33146 14995 4528 8056011 307934 3.110 0.119 25.720850 -80.272571 +33147 46933 15744 18772215 435778 7.248 0.168 25.851225 -80.238166 +33149 12389 7076 12115137 24380503 4.678 9.413 25.719513 -80.168541 +33150 27811 10108 9060982 136176 3.498 0.053 25.852190 -80.207174 +33154 13971 9902 4615476 3928251 1.782 1.517 25.883337 -80.131831 +33155 43788 15776 19113764 1444821 7.380 0.558 25.736887 -80.310768 +33156 31315 12564 35149290 2364881 13.571 0.913 25.668203 -80.297010 +33157 63226 22274 38383443 665044 14.820 0.257 25.606126 -80.343496 +33158 6694 2361 7232208 675181 2.792 0.261 25.638840 -80.311316 +33160 40053 31573 11005207 8248879 4.249 3.185 25.933997 -80.135801 +33161 53710 18896 14161688 146971 5.468 0.057 25.893664 -80.181539 +33162 43539 14906 13454511 269212 5.195 0.104 25.927997 -80.177175 +33165 56149 17865 19731737 652688 7.618 0.252 25.734345 -80.358271 +33166 23038 8574 24285898 3821594 9.377 1.476 25.827855 -80.316183 +33167 18846 6292 10734929 504346 4.145 0.195 25.884244 -80.236913 +33168 25792 7139 9532401 7290 3.680 0.003 25.893051 -80.209181 +33169 39353 13795 17856639 679642 6.894 0.262 25.943117 -80.214686 +33170 12253 3993 34119943 75725 13.174 0.029 25.557912 -80.457897 +33172 37664 14723 16952738 1711233 6.545 0.661 25.786909 -80.361253 +33173 33141 12637 13085180 419750 5.052 0.162 25.702320 -80.357503 +33174 32524 10550 7983869 343596 3.083 0.133 25.761518 -80.364697 +33175 53206 16685 19941299 824167 7.699 0.318 25.734734 -80.406757 +33176 50170 19918 31768284 943186 12.266 0.364 25.659873 -80.358354 +33177 53191 15368 32437142 770487 12.524 0.297 25.596129 -80.404194 +33178 39489 15134 143989249 20827601 55.595 8.042 25.834607 -80.422908 +33179 41332 18152 13037873 1812562 5.034 0.700 25.957620 -80.179998 +33180 30840 20316 8824992 1411834 3.407 0.545 25.960389 -80.143113 +33181 18413 9694 8331442 4535438 3.217 1.751 25.898061 -80.152505 +33182 16929 3953 39933326 6090300 15.418 2.351 25.780762 -80.441531 +33183 35949 12540 14932485 874658 5.765 0.338 25.703130 -80.404436 +33184 21075 6686 6336450 388412 2.447 0.150 25.759711 -80.406473 +33185 27189 7977 11887138 548036 4.590 0.212 25.727513 -80.451643 +33186 67137 24489 32730302 2344062 12.637 0.905 25.654346 -80.412286 +33187 16315 4971 102474627 398757 39.566 0.154 25.595896 -80.506909 +33189 23828 8840 14356829 587054 5.543 0.227 25.572213 -80.335434 +33190 11593 4364 4618384 332076 1.783 0.128 25.559318 -80.350543 +33193 46044 15020 21082145 2792901 8.140 1.078 25.700770 -80.465111 +33194 7742 1801 229835953 6645729 88.740 2.566 25.713938 -80.583619 +33196 43620 14197 63441328 841336 24.495 0.325 25.651006 -80.486317 +33301 14586 9658 6496541 270292 2.508 0.104 26.121323 -80.127909 +33304 17724 12509 8246801 960355 3.184 0.371 26.140453 -80.121179 +33305 11927 7982 5701039 1089561 2.201 0.421 26.153361 -80.119440 +33306 3397 2237 2191178 27392 0.846 0.011 26.165442 -80.113853 +33308 28217 22935 11781113 2786745 4.549 1.076 26.188511 -80.104988 +33309 33705 14687 24705587 2186290 9.539 0.844 26.185954 -80.172424 +33311 63786 25377 26797759 442896 10.347 0.171 26.144208 -80.172785 +33312 49343 21078 29591401 379725 11.425 0.147 26.088490 -80.181724 +33313 56039 24675 16848335 62988 6.505 0.024 26.151416 -80.226210 +33314 21885 9143 21523377 1102215 8.310 0.426 26.067601 -80.222643 +33315 12153 6775 13558147 0 5.235 0.000 26.087025 -80.152991 +33316 10044 7701 13105021 3694223 5.060 1.426 26.097266 -80.121773 +33317 35372 13395 24775735 501411 9.566 0.194 26.112600 -80.227875 +33319 44420 23870 18026857 279480 6.960 0.108 26.181382 -80.225802 +33321 44327 23649 21367500 967654 8.250 0.374 26.213579 -80.270272 +33322 37858 20262 14792897 0 5.712 0.000 26.150204 -80.274503 +33323 18929 7417 17088108 0 6.598 0.000 26.152016 -80.316519 +33324 42847 21695 23850204 353889 9.209 0.137 26.112485 -80.274940 +33325 27570 10464 24787758 162543 9.571 0.063 26.111872 -80.318335 +33326 31257 13519 25001095 1345367 9.653 0.519 26.114337 -80.370670 +33327 22658 7028 29175825 978937 11.265 0.378 26.111079 -80.422825 +33328 27415 10431 24345839 209774 9.400 0.081 26.067529 -80.275056 +33330 14107 4672 26582662 84112 10.264 0.032 26.060992 -80.319068 +33331 23204 7762 32266063 985264 12.458 0.380 26.059533 -80.368583 +33332 11199 3386 79648014 351309 30.752 0.136 26.006735 -80.460152 +33334 28749 14154 12401547 77108 4.788 0.030 26.182573 -80.133587 +33351 32890 12971 14917811 517700 5.760 0.200 26.179370 -80.274599 +33401 24879 16241 14239540 3361253 5.498 1.298 26.715844 -80.070249 +33403 12042 5614 8711693 519042 3.364 0.200 26.803747 -80.076368 +33404 27489 16189 19917909 5719563 7.690 2.208 26.781022 -80.063738 +33405 19155 8606 11652539 1269604 4.499 0.490 26.669649 -80.058452 +33406 26312 9522 23037501 271629 8.895 0.105 26.664085 -80.092385 +33407 29659 13546 26080472 2470024 10.070 0.954 26.757668 -80.091099 +33408 16921 11890 18866002 8972550 7.284 3.464 26.840418 -80.052061 +33409 29140 13501 16693916 35894 6.446 0.014 26.720360 -80.099367 +33410 32570 17112 29529563 412713 11.401 0.159 26.848356 -80.087612 +33411 65245 27877 110474593 1132002 42.654 0.437 26.720009 -80.193112 +33412 14414 6167 121075089 159741 46.747 0.062 26.794729 -80.207673 +33413 15162 5817 18951875 883411 7.317 0.341 26.663862 -80.153849 +33414 53718 21465 72700786 708089 28.070 0.273 26.648656 -80.247144 +33415 44963 19317 19160283 48324 7.398 0.019 26.660205 -80.126573 +33417 29156 18638 17391814 267727 6.715 0.103 26.719196 -80.124507 +33418 36017 19727 120516950 680968 46.532 0.263 26.872720 -80.165705 +33426 20082 11166 15890440 142145 6.135 0.055 26.533736 -80.083152 +33428 38548 15941 23377675 106994 9.026 0.041 26.352947 -80.208054 +33430 21427 7328 294583151 693195 113.739 0.268 26.641965 -80.554002 +33431 18290 8375 23034449 2005750 8.894 0.774 26.376191 -80.107317 +33432 18715 12849 12416488 2594350 4.794 1.002 26.343902 -80.082735 +33433 41722 22881 24575092 0 9.488 0.000 26.347159 -80.159235 +33434 19260 13364 17221900 491530 6.649 0.190 26.382712 -80.167138 +33435 32104 18178 17040494 3230265 6.579 1.247 26.525785 -80.061367 +33436 41896 22427 30333769 243905 11.712 0.094 26.522954 -80.107263 +33437 35938 20762 28072783 99340 10.839 0.038 26.511382 -80.148217 +33438 459 211 54656515 787149 21.103 0.304 26.932739 -80.592632 +33440 19743 7583 1703688061 9296483 657.798 3.589 26.564549 -81.037938 +33441 26838 14313 12539432 921954 4.842 0.356 26.311102 -80.097870 +33442 28075 19840 17390299 2490864 6.714 0.962 26.309788 -80.145699 +33444 20221 9318 13017034 413205 5.026 0.160 26.458903 -80.079637 +33445 29754 16684 20778683 338155 8.023 0.131 26.455288 -80.106350 +33446 22088 15750 55213985 0 21.318 0.000 26.450443 -80.186185 +33449 10817 4191 48217206 0 18.617 0.000 26.590073 -80.232634 +33455 19980 11737 127054625 18504330 49.056 7.145 27.053143 -80.161232 +33458 49396 21507 56059160 3024563 21.645 1.168 26.936558 -80.131851 +33460 30790 14061 12139477 1923239 4.687 0.743 26.619664 -80.056715 +33461 40748 17875 18764819 445809 7.245 0.172 26.620406 -80.090703 +33462 30879 15403 22711270 6486347 8.769 2.504 26.579999 -80.072284 +33463 53766 20467 27825270 190433 10.743 0.074 26.592859 -80.128892 +33467 48808 23263 47675530 19829 18.408 0.008 26.596487 -80.175714 +33469 14449 8584 29636683 6988380 11.443 2.698 26.989221 -80.108541 +33470 26551 9209 202988360 348191 78.374 0.134 26.726784 -80.320037 +33471 6818 3442 684915317 16539264 264.447 6.386 26.885952 -81.203814 +33472 19100 8988 33452006 0 12.916 0.000 26.538412 -80.185602 +33473 6265 2118 18286207 0 7.060 0.000 26.503764 -80.191553 +33476 7669 2852 68022835 33757 26.264 0.013 26.802148 -80.624722 +33477 13074 11473 17500680 4123343 6.757 1.592 26.920226 -80.076589 +33478 12704 4811 137758974 4100821 53.189 1.583 26.935021 -80.246071 +33480 9549 10641 11390899 18545316 4.398 7.160 26.686540 -80.042626 +33483 12093 9204 10172298 4802965 3.928 1.854 26.462644 -80.061718 +33484 23443 18209 15938909 0 6.154 0.000 26.454216 -80.134433 +33486 21720 9615 14145949 64532 5.462 0.025 26.347501 -80.112571 +33487 16421 11037 16951765 2165058 6.545 0.836 26.409962 -80.088525 +33493 4926 1097 160875744 262664 62.114 0.101 26.538819 -80.728719 +33496 20969 11213 24076415 414565 9.296 0.160 26.406722 -80.160556 +33498 14557 5673 18954230 0 7.318 0.000 26.386067 -80.219558 +33503 108 35 1673643 1477 0.646 0.001 27.763831 -82.276174 +33510 27610 11221 19232229 1249842 7.426 0.483 27.955637 -82.296693 +33511 52003 22336 41143907 2263513 15.886 0.874 27.909778 -82.295738 +33513 12086 5578 233162025 5471492 90.024 2.113 28.714341 -82.194756 +33514 1811 736 128926915 13886130 49.779 5.361 28.686313 -81.994700 +33521 599 285 5132736 0 1.982 0.000 28.798271 -82.068553 +33523 18313 7812 306535527 9694855 118.354 3.743 28.416397 -82.212103 +33525 18439 8393 301660595 7841751 116.472 3.028 28.341557 -82.198375 +33527 15203 5185 80466350 1568059 31.068 0.605 27.973604 -82.212663 +33534 12839 5021 32021700 7405786 12.364 2.859 27.823188 -82.378870 +33538 4789 2863 241658541 38926451 93.305 15.030 28.849763 -82.185148 +33540 8752 4826 90751526 189163 35.039 0.073 28.257337 -82.133231 +33541 19759 12695 63773612 302413 24.623 0.117 28.236875 -82.228112 +33542 20824 13125 27031553 110799 10.437 0.043 28.235780 -82.177617 +33543 21898 9251 53215991 30832 20.547 0.012 28.211232 -82.297428 +33544 22800 8769 89067363 241232 34.389 0.093 28.254041 -82.366224 +33545 13996 5192 76290075 1929572 29.456 0.745 28.272663 -82.296721 +33547 19813 6773 370616674 20762675 143.096 8.017 27.791084 -82.135516 +33548 5807 2335 20225460 3050199 7.809 1.178 28.147189 -82.483778 +33549 16132 6962 30420933 3133397 11.746 1.210 28.137944 -82.446252 +33556 22015 8642 94850342 11209878 36.622 4.328 28.134809 -82.591459 +33558 20064 8624 45010975 4210070 17.379 1.626 28.165519 -82.511384 +33559 15427 6865 32735317 788870 12.639 0.305 28.161002 -82.414612 +33563 25488 10224 38255052 1163359 14.770 0.449 28.017222 -82.124953 +33565 17975 7143 226718597 4014563 87.537 1.550 28.085906 -82.148114 +33566 19522 7278 59431310 2633516 22.947 1.017 27.977965 -82.095709 +33567 11505 3869 109096845 7000164 42.123 2.703 27.920609 -82.116772 +33569 23074 9100 37623601 1586100 14.527 0.612 27.846350 -82.288545 +33570 20758 9195 102044862 21574658 39.400 8.330 27.690759 -82.461203 +33572 14117 6742 40777733 7541019 15.744 2.912 27.761109 -82.408580 +33573 19172 13836 45694155 2241795 17.643 0.866 27.722757 -82.357237 +33576 3784 2046 41022742 345755 15.839 0.133 28.336151 -82.328644 +33578 36693 16284 55818110 6392673 21.551 2.468 27.862200 -82.350044 +33579 25723 8901 55263537 1391361 21.337 0.537 27.796231 -82.293653 +33584 25392 9785 55407634 2102935 21.393 0.812 28.007232 -82.288403 +33585 1058 536 44358773 933464 17.127 0.360 28.732957 -82.089300 +33592 10091 4634 126962733 5238725 49.021 2.023 28.101871 -82.283236 +33594 32677 12810 26901761 1120504 10.387 0.433 27.940934 -82.242479 +33596 29283 10521 30255632 948580 11.682 0.366 27.887215 -82.225870 +33597 8026 3769 340423698 18381320 131.438 7.097 28.545531 -82.080532 +33598 13665 4350 280287553 3022934 108.220 1.167 27.693423 -82.284659 +33602 11515 7994 6602451 934950 2.549 0.361 27.953530 -82.457113 +33603 19100 8992 10711562 250888 4.136 0.097 27.985618 -82.464439 +33604 35485 16528 19279504 1122578 7.444 0.433 28.017154 -82.455350 +33605 17073 7995 20278661 3599136 7.830 1.390 27.951122 -82.429680 +33606 17746 8460 8501033 2227222 3.282 0.860 27.917452 -82.452279 +33607 23541 11159 23390221 1450207 9.031 0.560 27.962012 -82.492176 +33609 15999 8774 11328513 1523740 4.374 0.588 27.944272 -82.517675 +33610 39222 16295 46243604 2219657 17.855 0.857 27.998214 -82.378016 +33611 29478 16077 16523935 2070290 6.380 0.799 27.891345 -82.505665 +33612 44601 21080 26462529 1229056 10.217 0.475 28.050827 -82.449573 +33613 31990 17193 19040086 2393020 7.351 0.924 28.083973 -82.450768 +33614 46449 20488 25321699 1017636 9.777 0.393 28.004724 -82.506088 +33615 43453 19155 22332651 2549535 8.623 0.984 28.005103 -82.580284 +33616 13560 6552 9844232 2113032 3.801 0.816 27.865136 -82.535394 +33617 41443 19966 22267698 907829 8.598 0.351 28.037486 -82.391570 +33618 25570 12311 22435895 2742161 8.663 1.059 28.074807 -82.498405 +33619 34581 12548 68869874 7847793 26.591 3.030 27.935372 -82.378690 +33620 5158 132 2296954 14345 0.887 0.006 28.062000 -82.413225 +33621 1643 438 21574285 3836277 8.330 1.481 27.841658 -82.493273 +33624 37457 16210 23241719 1390900 8.974 0.537 28.080255 -82.528248 +33625 24645 9676 23694618 1083371 9.149 0.418 28.066876 -82.561218 +33626 27557 11297 35317253 2708425 13.636 1.046 28.067045 -82.620348 +33629 23638 11353 12468168 1071916 4.814 0.414 27.921536 -82.509043 +33634 20225 7889 21286196 1437117 8.219 0.555 28.009820 -82.547780 +33635 15741 7208 14724227 1271706 5.685 0.491 28.027318 -82.619402 +33637 15351 7273 20111193 1177573 7.765 0.455 28.045334 -82.361113 +33647 55034 22854 87776213 3900537 33.891 1.506 28.126958 -82.354093 +33701 15014 11071 6908770 3457289 2.667 1.335 27.770793 -82.632806 +33702 29664 15633 25750992 7195047 9.943 2.778 27.846613 -82.628690 +33703 23680 11945 13526855 4493481 5.223 1.735 27.817056 -82.619750 +33704 16098 8537 8878566 2815636 3.428 1.087 27.798158 -82.630066 +33705 26435 13605 15674376 6176849 6.052 2.385 27.734491 -82.643403 +33706 15901 13515 9466528 14821630 3.655 5.723 27.740169 -82.751128 +33707 24599 15810 13640941 5692088 5.267 2.198 27.755558 -82.725505 +33708 15447 12793 8834919 12056318 3.411 4.655 27.817558 -82.801134 +33709 26023 14296 13294587 1236414 5.133 0.477 27.816844 -82.731621 +33710 32780 15644 20556531 3146598 7.937 1.215 27.790669 -82.730734 +33711 19162 8995 12348595 2587300 4.768 0.999 27.738736 -82.688217 +33712 25066 11732 15167346 1798030 5.856 0.694 27.734375 -82.667894 +33713 29812 14834 16973901 313566 6.554 0.121 27.789186 -82.677508 +33714 18531 9798 9589008 138436 3.702 0.053 27.815246 -82.677708 +33715 7407 6646 9453337 23658814 3.650 9.135 27.662680 -82.722404 +33716 15424 9840 18839096 3431516 7.274 1.325 27.875060 -82.648609 +33744 148 1 1494401 18685 0.577 0.007 27.806363 -82.773788 +33755 26146 11821 13906331 1773205 5.369 0.685 27.979914 -82.780506 +33756 31275 15921 18740077 4554965 7.236 1.759 27.945386 -82.793867 +33759 17820 9155 14006906 10137946 5.408 3.914 27.975284 -82.701482 +33760 15133 7549 13246579 583909 5.115 0.225 27.907573 -82.714190 +33761 18167 10475 13770231 332646 5.317 0.128 28.033061 -82.724374 +33762 8499 3151 18919599 4086844 7.305 1.578 27.899189 -82.679506 +33763 17887 11212 8991793 613814 3.472 0.237 28.002893 -82.743418 +33764 24045 14288 17247428 2240235 6.659 0.865 27.934470 -82.740042 +33765 13275 6714 10644801 177084 4.110 0.068 27.974863 -82.745191 +33767 8007 8450 5141176 14605289 1.985 5.639 27.975574 -82.825268 +33770 25281 14697 13425573 1405914 5.184 0.543 27.915173 -82.804068 +33771 29839 18113 15231284 719354 5.881 0.278 27.906822 -82.758784 +33772 22981 12485 13449376 2272639 5.193 0.877 27.844208 -82.796854 +33773 16826 8532 12923742 1505726 4.990 0.581 27.882294 -82.755920 +33774 17712 10148 11914630 983875 4.600 0.380 27.883819 -82.827877 +33776 12402 5591 8942454 1320453 3.453 0.510 27.850256 -82.825814 +33777 17140 7997 14892745 2341011 5.750 0.904 27.853532 -82.759349 +33778 14263 7445 9668584 440430 3.733 0.170 27.888129 -82.798582 +33781 25922 11672 17242783 444899 6.657 0.172 27.838362 -82.714996 +33782 20850 10187 13942814 935102 5.383 0.361 27.859631 -82.708145 +33785 5533 6101 3056612 5272620 1.180 2.036 27.892449 -82.849808 +33786 1669 1160 1392879 4390719 0.538 1.695 27.927096 -82.833345 +33801 33741 15131 49458166 5092863 19.096 1.966 28.035908 -81.899669 +33803 27094 14416 40352718 3438476 15.580 1.328 28.009358 -81.932662 +33805 23153 10166 69552545 8606500 26.854 3.323 28.100700 -81.908334 +33809 28929 12810 228769659 3894288 88.328 1.504 28.222746 -81.969167 +33810 44254 18967 145179675 2406975 56.054 0.929 28.131800 -82.030327 +33811 20980 8715 72022587 670149 27.808 0.259 27.984748 -82.014696 +33812 13166 5032 25326239 1656950 9.779 0.640 27.971267 -81.893002 +33813 31698 12812 39896298 3116988 15.404 1.203 27.965132 -81.939522 +33815 14267 7643 19222946 1203878 7.422 0.465 28.041258 -81.997590 +33823 28874 12427 80584457 19183547 31.114 7.407 28.085763 -81.813720 +33825 24942 12093 326612758 28533032 126.106 11.017 27.620252 -81.458826 +33827 3036 1356 78481634 12870768 30.302 4.969 27.815891 -81.508647 +33830 27542 10883 329297654 51714493 127.143 19.967 27.873020 -81.811452 +33834 7448 2217 466414185 23506354 180.084 9.076 27.620675 -82.001418 +33837 20234 10886 132758063 7801883 51.258 3.012 28.191997 -81.589170 +33838 3515 1619 15163082 1762623 5.854 0.681 28.019442 -81.614048 +33839 2756 1126 7412583 1580064 2.862 0.610 27.976763 -81.750503 +33841 8722 3611 411998515 37514861 159.074 14.485 27.741146 -81.754602 +33843 11093 5202 264722649 37354688 102.210 14.423 27.723184 -81.531809 +33844 33804 16590 258511093 27248259 99.812 10.521 28.088805 -81.590049 +33847 227 89 2809196 7738 1.085 0.003 27.802754 -81.822039 +33848 851 426 34153835 147805 13.187 0.057 28.284163 -81.505070 +33849 856 317 57956799 527638 22.377 0.204 28.226070 -82.068888 +33850 7519 3692 47640965 10895583 18.394 4.207 28.122375 -81.732585 +33851 907 404 4914379 630101 1.897 0.243 28.044636 -81.623893 +33852 21790 12566 863904366 79399816 333.555 30.656 27.239337 -81.373963 +33853 11161 5115 21132819 2673784 8.159 1.032 27.900707 -81.584450 +33854 194 500 365048 77740 0.141 0.030 27.856440 -81.410106 +33855 43 29 1711183 0 0.661 0.000 27.795372 -81.352760 +33856 487 497 284438 56071 0.110 0.022 27.856354 -81.428375 +33857 1728 1291 477570861 72767229 184.391 28.096 27.336195 -81.189442 +33859 10582 5356 117346353 13306328 45.308 5.138 27.872695 -81.626401 +33860 22886 8827 302549042 61680934 116.815 23.815 27.767271 -82.028186 +33865 786 337 448466324 397887 173.154 0.154 27.433787 -81.963257 +33867 106 393 11327400 388078 4.374 0.150 27.777856 -81.195762 +33868 11720 4307 431401128 11634820 166.565 4.492 28.251383 -81.827822 +33870 20601 11499 143380694 18230883 55.360 7.039 27.506501 -81.407942 +33872 14158 8530 50217247 708458 19.389 0.274 27.505251 -81.545953 +33873 14742 5288 308982996 36550 119.299 0.014 27.570973 -81.781215 +33875 11108 5739 194401238 9808302 75.059 3.787 27.392317 -81.510556 +33876 4968 2936 88650261 21840272 34.228 8.433 27.411131 -81.349938 +33877 276 145 5932090 2105691 2.290 0.813 27.989784 -81.613248 +33880 37798 15618 110404773 32617127 42.628 12.594 27.979055 -81.779946 +33881 29345 15130 56599839 17645896 21.853 6.813 28.056447 -81.711644 +33884 28763 14095 51900000 14517557 20.039 5.605 27.978480 -81.672447 +33890 5060 1985 625470140 64508 241.495 0.025 27.432982 -81.700010 +33896 6633 4815 29207964 1387631 11.277 0.536 28.256905 -81.582850 +33897 14117 11399 91509627 1772733 35.332 0.684 28.284872 -81.688866 +33898 15355 9181 789434435 47428047 304.802 18.312 27.841254 -81.373419 +33901 19500 11020 16603870 7453624 6.411 2.878 26.621074 -81.878139 +33903 20776 14659 32509045 6991136 12.552 2.699 26.679968 -81.906630 +33904 30613 19192 25192117 18164179 9.727 7.013 26.576012 -81.944393 +33905 31203 14386 108833120 8376101 42.021 3.234 26.667872 -81.760927 +33907 22138 13113 18222123 1046941 7.036 0.404 26.563628 -81.871286 +33908 38251 29577 83658818 32356484 32.301 12.493 26.515834 -81.979469 +33909 23119 10662 46519708 2613850 17.961 1.009 26.693201 -81.945126 +33912 15392 10109 55143201 2329202 21.291 0.899 26.534020 -81.826183 +33913 17103 9733 266273382 13638712 102.809 5.266 26.514239 -81.696796 +33914 35848 19008 57545184 33496842 22.218 12.933 26.554392 -82.020944 +33916 20134 10575 26532668 3824043 10.244 1.476 26.637074 -81.838162 +33917 28666 17576 143189941 13245204 55.286 5.114 26.738607 -81.844783 +33919 27837 18725 23326476 6912725 9.006 2.669 26.556626 -81.901095 +33920 4947 2383 159435749 4483586 61.558 1.731 26.742298 -81.636050 +33921 1720 1886 7138056 26109712 2.756 10.081 26.772225 -82.252804 +33922 4055 2823 42034368 65775913 16.230 25.396 26.638155 -82.162513 +33924 761 1854 18624473 74006545 7.191 28.574 26.617555 -82.209305 +33928 20830 15675 186909700 12846707 72.166 4.960 26.398865 -81.704685 +33930 1075 359 302625440 2617733 116.844 1.011 26.569818 -81.407629 +33931 10005 14187 28259445 27526353 10.911 10.628 26.433124 -81.902995 +33935 20383 8050 882836847 5107079 340.865 1.972 26.760328 -81.432858 +33936 18994 10489 51174130 606007 19.758 0.234 26.623407 -81.601499 +33944 298 191 141131955 337435 54.491 0.130 26.994443 -81.291042 +33945 57 140 339192 5710 0.131 0.002 26.602244 -82.220545 +33946 2125 2737 23613134 16266073 9.117 6.280 26.847524 -82.281369 +33947 8180 5576 37507601 2334648 14.482 0.901 26.879089 -82.271615 +33948 15958 8887 33585146 3772739 12.967 1.457 26.985889 -82.152363 +33950 20699 14664 58075439 20683856 22.423 7.986 26.902989 -82.046244 +33952 28382 16056 28556491 6385116 11.026 2.465 26.986134 -82.097042 +33953 5522 3753 41917341 9404502 16.184 3.631 26.999702 -82.212275 +33954 9290 4293 22077335 1105889 8.524 0.427 27.024724 -82.122407 +33955 10060 6289 139949558 5203493 54.035 2.009 26.816140 -81.994031 +33956 3776 3260 42313445 86970814 16.337 33.580 26.546315 -82.143657 +33957 6469 7817 41889208 49340000 16.174 19.050 26.463920 -82.093031 +33960 854 502 557729863 2082234 215.341 0.804 27.044099 -81.402766 +33965 1648 0 3901185 52482 1.506 0.020 26.463373 -81.773019 +33966 8251 5229 22697525 571768 8.764 0.221 26.591636 -81.830726 +33967 22799 9923 19647974 991993 7.586 0.383 26.471507 -81.812240 +33971 19730 7986 43601531 461704 16.835 0.178 26.639584 -81.699699 +33972 10880 4877 64822264 1196621 25.028 0.462 26.649280 -81.616279 +33973 10798 4586 10304727 1334 3.979 0.001 26.602596 -81.727906 +33974 11982 5374 58816340 1338229 22.709 0.517 26.562706 -81.601925 +33976 12534 4992 23987714 37741 9.262 0.015 26.591277 -81.686130 +33980 10322 7343 23806276 11049171 9.192 4.266 26.979255 -82.047288 +33981 9534 5710 62859149 12405889 24.270 4.790 26.918213 -82.219616 +33982 9176 5177 1133893761 30180722 437.799 11.653 26.910534 -81.767196 +33983 13954 7699 27555116 2790398 10.639 1.077 27.009117 -82.017871 +33990 28173 13571 24293068 5428771 9.380 2.096 26.627990 -81.944774 +33991 18010 8210 36640287 10167056 14.147 3.926 26.625053 -82.024123 +33993 20628 9585 158361038 37263875 61.144 14.388 26.692897 -82.034065 +34101 10 40 9594094 15220281 3.704 5.877 26.032137 -81.761821 +34102 10460 9011 14643960 6139587 5.654 2.371 26.137498 -81.799105 +34103 12150 10165 8908479 2362162 3.440 0.912 26.193911 -81.806496 +34104 23691 14867 25862835 1645110 9.986 0.635 26.149955 -81.741562 +34105 13933 9693 25714092 1817622 9.928 0.702 26.190061 -81.764906 +34108 16874 14295 20096775 4016093 7.759 1.551 26.246308 -81.808323 +34109 23338 13923 32466806 2035908 12.536 0.786 26.240842 -81.763823 +34110 20762 15272 40397600 2798433 15.598 1.080 26.300380 -81.788461 +34112 27002 18691 41652842 2759090 16.082 1.065 26.119310 -81.741549 +34113 17971 10683 72608520 16237588 28.034 6.269 26.043649 -81.732424 +34114 13653 11630 523118722 137173362 201.977 52.963 25.943846 -81.538206 +34116 30005 10818 24765016 846169 9.562 0.327 26.189294 -81.710803 +34117 14250 5242 184019095 3987941 71.050 1.540 26.180909 -81.605313 +34119 25756 14614 59113797 2254175 22.824 0.870 26.267910 -81.714053 +34120 26147 10989 391380888 10296205 151.113 3.975 26.326101 -81.570093 +34134 14112 13562 29870789 11721140 11.533 4.526 26.353032 -81.824050 +34135 37315 24362 94660774 3441685 36.549 1.329 26.356331 -81.754530 +34137 227 106 25503046 246058 9.847 0.095 25.942742 -81.383188 +34138 359 255 1724909 12290207 0.666 4.745 25.816512 -81.368569 +34139 561 625 8911169 18273771 3.441 7.056 25.830882 -81.403372 +34140 273 382 3446848 1239527 1.331 0.479 25.925194 -81.662917 +34141 232 134 2898296246 12664120 1119.038 4.890 25.946910 -81.096082 +34142 27304 7496 1518867990 40311357 586.438 15.564 26.342525 -81.313689 +34145 16407 17113 42143921 63555416 16.272 24.539 25.904093 -81.675851 +34201 3682 2271 8851637 285618 3.418 0.110 27.401694 -82.468511 +34202 19816 9161 61531255 349282 23.757 0.135 27.406267 -82.388721 +34203 34862 17342 40880058 1660552 15.784 0.641 27.438094 -82.507558 +34205 29656 16102 16797153 2445892 6.485 0.944 27.484084 -82.581821 +34207 29728 18305 16020341 1925785 6.185 0.744 27.438677 -82.579674 +34208 33121 13903 41881603 9160757 16.171 3.537 27.487487 -82.515923 +34209 31816 17475 32616404 21128031 12.593 8.158 27.500129 -82.651386 +34210 15916 11186 23784990 26248536 9.183 10.135 27.439536 -82.620102 +34211 2775 1298 94352953 154878 36.430 0.060 27.436918 -82.389361 +34212 15146 6763 52936458 6869953 20.439 2.653 27.499234 -82.408468 +34215 768 682 1141987 2100250 0.441 0.811 27.471141 -82.685924 +34216 1503 1559 1989201 5538430 0.768 2.138 27.536772 -82.732652 +34217 5007 6032 5675888 12619079 2.191 4.872 27.492089 -82.705049 +34219 17135 7302 366940191 4881790 141.676 1.885 27.576379 -82.299034 +34221 39457 19260 142298172 67349055 54.942 26.004 27.581094 -82.554803 +34222 11952 6855 13598176 2965163 5.250 1.145 27.535782 -82.506553 +34223 16875 13014 73932816 25426300 28.546 9.817 26.982666 -82.354200 +34224 15394 10577 33553075 5107798 12.955 1.972 26.917603 -82.303940 +34228 6888 8814 10697022 22170420 4.130 8.560 27.402247 -82.638767 +34229 7192 4167 15536934 5614492 5.999 2.168 27.193124 -82.485461 +34231 30268 18187 24426338 4835254 9.431 1.867 27.266027 -82.516651 +34232 30969 15035 28416520 996245 10.972 0.385 27.324845 -82.471887 +34233 16653 8727 15915125 631476 6.145 0.244 27.280031 -82.476631 +34234 19788 9939 17209932 7078809 6.645 2.733 27.370860 -82.542782 +34235 13640 8225 16958866 2180414 6.548 0.842 27.369739 -82.476458 +34236 12394 9709 9115688 12061632 3.520 4.657 27.316487 -82.553527 +34237 16304 8120 10135328 167204 3.913 0.065 27.338992 -82.512645 +34238 17500 11579 34263144 2503579 13.229 0.967 27.235792 -82.470536 +34239 15038 8317 11544018 1523888 4.457 0.588 27.310893 -82.521168 +34240 11501 5549 176703599 8999955 68.226 3.475 27.364656 -82.318479 +34241 13590 6275 177942212 7169498 68.704 2.768 27.250668 -82.377574 +34242 8865 10854 9323137 11941976 3.600 4.611 27.260222 -82.540907 +34243 26115 14104 45204922 6151222 17.454 2.375 27.401013 -82.527887 +34251 6351 2249 760441047 5929146 293.608 2.289 27.377853 -82.171574 +34266 31055 11782 1679866073 8640066 648.600 3.336 27.191071 -81.823844 +34268 220 74 356041 0 0.137 0.000 27.149245 -81.895327 +34269 3615 2746 139850020 2255886 53.996 0.871 27.067637 -82.013189 +34275 16245 10655 68800867 10904794 26.564 4.210 27.151792 -82.422444 +34285 17599 14882 21303187 4376982 8.225 1.690 27.093485 -82.439653 +34286 17970 7611 38733295 1090138 14.955 0.421 27.080871 -82.181256 +34287 23859 14717 40436526 2447712 15.613 0.945 27.049618 -82.245371 +34288 10856 5083 50022726 1834907 19.314 0.708 27.054069 -82.109851 +34289 2199 1244 8640873 1586931 3.336 0.613 27.079862 -82.132601 +34291 7125 3054 34179767 699551 13.197 0.270 27.094062 -82.240218 +34292 13516 8912 76696427 3592702 29.613 1.387 27.101944 -82.341525 +34293 33001 19733 118538986 6872445 45.768 2.653 27.030082 -82.334744 +34420 16287 7770 64968733 4496642 25.085 1.736 29.053715 -82.038906 +34428 9109 5155 176018757 38449420 67.961 14.845 28.956773 -82.647566 +34429 8563 5439 104676286 91897013 40.416 35.482 28.850605 -82.667285 +34431 7815 4153 283085443 11120104 109.300 4.293 29.134717 -82.531443 +34432 12273 6581 280140674 3038803 108.163 1.173 29.067061 -82.384272 +34433 6647 3341 86572060 2111784 33.426 0.815 29.002221 -82.524892 +34434 8191 3921 63610474 904335 24.560 0.349 28.995934 -82.439628 +34436 7938 4609 146342202 17056999 56.503 6.586 28.720580 -82.297980 +34442 14568 8519 113419229 20765709 43.791 8.018 28.931847 -82.383754 +34445 44 23 148714 0 0.057 0.000 28.967990 -82.420744 +34446 16326 9114 80871000 0 31.224 0.000 28.747282 -82.522162 +34448 10797 6529 188741679 66519453 72.874 25.683 28.768105 -82.625156 +34449 2809 1917 265763428 13074688 102.612 5.048 29.074720 -82.679451 +34450 10293 6243 66490366 25222082 25.672 9.738 28.830395 -82.267684 +34452 11919 5785 89523635 37653 34.565 0.015 28.816305 -82.343655 +34453 10112 5392 53066892 16322081 20.489 6.302 28.874347 -82.335722 +34461 10562 5133 124675336 24818 48.137 0.010 28.866136 -82.494513 +34465 15870 8625 64771079 0 25.008 0.000 28.929491 -82.489203 +34470 17838 9219 30124144 0 11.631 0.000 29.198907 -82.087425 +34471 25152 11929 51135838 49416 19.744 0.019 29.160561 -82.130770 +34472 25968 11690 95054852 8235082 36.701 3.180 29.114198 -81.997961 +34473 17029 7632 99247132 531598 38.320 0.205 29.005695 -82.183950 +34474 16062 7930 51231640 0 19.781 0.000 29.156461 -82.209486 +34475 12177 4988 75911428 165918 29.310 0.064 29.258909 -82.166961 +34476 20862 10430 96487207 0 37.254 0.000 29.081607 -82.196830 +34479 13032 5695 45066773 2820 17.400 0.001 29.255724 -82.109112 +34480 19068 8040 87476088 120556 33.775 0.047 29.102401 -82.096588 +34481 17536 10618 171571101 50144 66.244 0.019 29.132800 -82.309621 +34482 22500 8952 235604925 341671 90.968 0.132 29.244402 -82.275028 +34484 3069 1354 84937244 496753 32.794 0.192 28.945241 -82.097420 +34488 10291 5910 247362132 24826168 95.507 9.585 29.228090 -81.938619 +34491 27454 14487 111748381 5190956 43.146 2.004 28.995626 -82.055144 +34498 513 472 19477993 18896513 7.520 7.296 29.031552 -82.736087 +34601 22336 11460 315305096 8393884 121.740 3.241 28.588644 -82.351098 +34602 7346 3288 172285030 6387379 66.520 2.466 28.502482 -82.282351 +34604 10003 4135 91998045 780556 35.521 0.301 28.476942 -82.434791 +34606 26208 13677 30218336 3841030 11.667 1.483 28.468477 -82.595728 +34607 8133 5032 66437151 19371017 25.652 7.479 28.500524 -82.625285 +34608 31099 14446 39615528 2239721 15.296 0.865 28.482826 -82.552854 +34609 37129 16255 57438520 266636 22.177 0.103 28.479476 -82.507906 +34610 12907 5406 174468871 6410633 67.363 2.475 28.369253 -82.511406 +34613 17814 10188 138044361 10994225 53.299 4.245 28.570623 -82.572217 +34614 6692 2974 195675594 21271790 75.551 8.213 28.646310 -82.539665 +34637 6297 2414 35630544 1600762 13.757 0.618 28.302024 -82.455707 +34638 20048 7585 124117520 3174084 47.922 1.226 28.256862 -82.512738 +34639 24092 9236 69578032 4320784 26.864 1.668 28.265430 -82.423239 +34652 24147 14580 22144182 6527602 8.550 2.520 28.237465 -82.737830 +34653 30756 16932 27959954 192595 10.795 0.074 28.244055 -82.688415 +34654 21716 10147 69666839 2297340 26.899 0.887 28.280875 -82.629120 +34655 38464 17800 120975877 762740 46.709 0.294 28.208884 -82.617279 +34661 297 218 6939513 454216 2.679 0.175 28.604751 -82.245271 +34667 32144 19291 83491409 11111144 32.236 4.290 28.391238 -82.661275 +34668 42619 22670 40195899 6767655 15.520 2.613 28.300793 -82.708521 +34669 12648 5844 50420141 1085742 19.467 0.419 28.357019 -82.610361 +34677 20842 9867 25691961 10449984 9.920 4.035 28.037522 -82.673575 +34679 99 74 341842 4877 0.132 0.002 28.432204 -82.661230 +34681 1294 656 1460170 347039 0.564 0.134 28.082809 -82.775970 +34683 31268 15387 27412862 3582451 10.584 1.383 28.087706 -82.761134 +34684 25847 14360 16929935 2958769 6.537 1.142 28.080744 -82.726829 +34685 17286 7959 33717900 4829406 13.019 1.865 28.093341 -82.689101 +34688 7274 3430 40141090 1350668 15.499 0.521 28.147125 -82.678972 +34689 26132 13845 27548898 12876153 10.637 4.972 28.148306 -82.759877 +34690 13137 6835 9717288 377079 3.752 0.146 28.193745 -82.725706 +34691 21079 11481 21315991 29672022 8.230 11.456 28.198023 -82.816078 +34695 17496 8413 13745258 8590888 5.307 3.317 28.008200 -82.688398 +34698 37240 22158 26456079 13287233 10.215 5.130 28.037553 -82.786320 +34705 2500 1069 45974943 5581491 17.751 2.155 28.699760 -81.718669 +34711 51847 21806 108356913 54959747 41.837 21.220 28.530496 -81.753341 +34714 14685 8465 279589558 30539245 107.950 11.791 28.403889 -81.778865 +34715 15455 5799 85967444 26112773 33.192 10.082 28.630523 -81.723696 +34731 10815 5354 40875192 21482820 15.782 8.295 28.864109 -81.898631 +34734 3835 1400 5760088 337276 2.224 0.130 28.537003 -81.515454 +34736 13961 5614 322390750 78946058 124.476 30.481 28.555277 -81.901876 +34737 2523 1253 50606516 15890352 19.539 6.135 28.692540 -81.797171 +34739 793 500 904788106 237798924 349.341 91.815 27.930500 -81.117060 +34741 40828 18561 38645753 3403328 14.921 1.314 28.306390 -81.425522 +34743 33632 12033 17980889 134306 6.942 0.052 28.329308 -81.355152 +34744 44142 16948 85965215 11347106 33.191 4.381 28.291853 -81.338221 +34746 35022 19693 110878590 32356266 42.810 12.493 28.238886 -81.445287 +34747 13692 20571 114727144 997515 44.296 0.385 28.311488 -81.595543 +34748 38246 21511 105396836 23510152 40.694 9.077 28.766846 -81.882169 +34753 5353 1822 14137287 4020637 5.458 1.552 28.576522 -81.885098 +34756 3006 1308 23759765 2940921 9.174 1.135 28.586318 -81.682587 +34758 30879 11360 85329641 32181 32.946 0.012 28.194196 -81.485986 +34759 30170 13256 190193485 11119437 73.434 4.293 28.103896 -81.419371 +34760 875 343 1343756 0 0.519 0.000 28.554745 -81.632164 +34761 37500 13779 41030897 3029906 15.842 1.170 28.578576 -81.534116 +34762 622 313 19273045 5653841 7.441 2.183 28.756192 -81.914243 +34769 21399 9757 23522931 29419 9.082 0.011 28.244625 -81.290847 +34771 14280 5813 215739853 24943957 83.298 9.631 28.284493 -81.173701 +34772 22770 8498 250521152 59273259 96.727 22.886 28.163926 -81.269570 +34773 2983 1268 973101091 37051967 375.716 14.306 28.159813 -81.007563 +34785 17406 5913 193888655 11917703 74.861 4.601 28.837287 -82.040622 +34786 28092 10953 51577699 19398345 19.914 7.490 28.487167 -81.551884 +34787 46083 18348 178582826 27589722 68.951 10.652 28.484973 -81.619298 +34788 17519 9817 85732307 46523891 33.101 17.963 28.895617 -81.808248 +34797 1293 665 12160119 1023556 4.695 0.395 28.729516 -81.825702 +34945 5514 1812 633223023 394838 244.489 0.152 27.437265 -80.557230 +34946 6025 2966 37867530 7241821 14.621 2.796 27.503294 -80.360480 +34947 12186 4834 24860278 80691 9.599 0.031 27.454876 -80.375200 +34949 7103 7685 24391048 44650117 9.417 17.240 27.467258 -80.299808 +34950 15436 7111 13273419 4541379 5.125 1.753 27.443788 -80.330974 +34951 14115 7876 64193378 706149 24.785 0.273 27.532134 -80.418954 +34952 38285 20971 60220140 4425373 23.251 1.709 27.296004 -80.300095 +34953 61494 23419 61639647 322552 23.799 0.125 27.249130 -80.382767 +34956 9874 2501 539120711 8809001 208.156 3.401 27.094542 -80.498221 +34957 22257 18207 42561361 48815241 16.433 18.848 27.280287 -80.238923 +34972 20180 6947 2355900409 31905055 909.618 12.319 27.504987 -80.930424 +34974 23661 14189 1040061160 54499739 401.570 21.042 27.145973 -80.949686 +34981 4239 1818 26745480 4665 10.326 0.002 27.393969 -80.370857 +34982 24544 11561 43549996 13873752 16.815 5.357 27.373264 -80.308018 +34983 38480 15795 38793880 617508 14.978 0.238 27.323951 -80.352498 +34984 13764 5719 25342863 589419 9.785 0.228 27.249123 -80.330756 +34986 23297 12936 50418483 173748 19.467 0.067 27.323655 -80.402409 +34987 6118 3075 264987898 63711 102.312 0.025 27.301825 -80.485330 +34990 27707 13155 239711696 13803997 92.553 5.330 27.137133 -80.346948 +34994 15967 9447 17388181 7608292 6.714 2.938 27.200948 -80.257153 +34996 10649 8391 17138113 32665473 6.617 12.612 27.192817 -80.189813 +34997 40405 20471 254351664 15528741 98.206 5.996 27.055637 -80.270195 +35004 10427 4523 46802132 369141 18.070 0.143 33.603417 -86.493795 +35005 7942 3485 89378408 894190 34.509 0.345 33.595950 -87.000649 +35006 3121 1495 258505360 7821258 99.809 3.020 33.422765 -87.209730 +35007 26225 9799 96812090 1736243 37.379 0.670 33.215501 -86.797578 +35010 20816 10307 563567822 66304723 217.595 25.600 32.916507 -85.940602 +35013 124 38 74951 1452 0.029 0.001 33.902168 -86.517777 +35014 4546 1878 247318794 7840321 95.490 3.027 33.355635 -86.262233 +35016 16778 7554 192558351 1516749 74.347 0.586 34.323870 -86.502006 +35019 2117 947 77491530 558150 29.920 0.216 34.302078 -86.634094 +35020 27139 12323 49218856 20040 19.004 0.008 33.402429 -86.951784 +35022 18888 8017 169591079 1296794 65.479 0.501 33.322849 -86.971458 +35023 25436 10369 234202424 4166666 90.426 1.609 33.467902 -87.088306 +35031 7933 3497 335167290 2220791 129.409 0.857 34.097791 -86.554899 +35032 66 27 414688 0 0.160 0.000 33.264859 -86.336417 +35033 3403 1640 196353162 8715661 75.812 3.365 33.926475 -87.031801 +35034 5541 1502 278075270 1744218 107.365 0.673 32.911122 -87.271681 +35035 1581 657 184095249 1613257 71.080 0.623 33.043787 -86.973505 +35036 297 145 2145815 0 0.829 0.000 33.643922 -86.919599 +35040 14965 6484 197689359 2849277 76.328 1.100 33.102967 -86.728894 +35042 5831 2591 389633893 2061099 150.438 0.796 32.957991 -87.103816 +35043 9234 3514 118773159 2482690 45.859 0.959 33.314203 -86.659205 +35044 7713 3547 149427693 5400078 57.694 2.085 33.243708 -86.380748 +35045 14870 6458 308620053 817857 119.159 0.316 32.799962 -86.676761 +35046 5108 2804 348635221 20098170 134.609 7.760 32.931141 -86.534157 +35049 3996 1612 109659357 726285 42.340 0.280 33.961807 -86.612064 +35051 8787 3341 280383498 5424260 108.257 2.094 33.205032 -86.618915 +35052 277 104 946133 2971 0.365 0.001 33.590682 -86.409897 +35053 2617 2447 124059934 23606301 47.900 9.114 34.051416 -87.073134 +35054 4101 2211 67695254 10006429 26.137 3.864 33.501987 -86.337957 +35055 19427 8991 165837550 2358055 64.030 0.910 34.151183 -86.758714 +35057 12630 5753 328568543 9057193 126.861 3.497 34.180462 -86.934257 +35058 9936 4231 178127846 3028168 68.776 1.169 34.228856 -86.737261 +35060 414 215 6692614 410688 2.584 0.159 33.557750 -86.951726 +35061 1465 687 5111252 0 1.973 0.000 33.471804 -86.956022 +35062 7944 3355 116272751 788824 44.893 0.305 33.724920 -87.010252 +35063 3866 1667 101416717 934836 39.157 0.361 33.820550 -87.025862 +35064 11458 5066 10636977 0 4.107 0.000 33.476072 -86.920253 +35068 7232 3232 36157343 0 13.960 0.000 33.607519 -86.831073 +35070 265 139 3595988 20335 1.388 0.008 34.012545 -86.754203 +35071 15661 6803 147823204 458202 57.075 0.177 33.695005 -86.848101 +35072 5193 2420 490696029 2461726 189.459 0.950 33.095425 -86.064464 +35073 2382 1140 68564070 461140 26.473 0.178 33.651226 -86.986831 +35074 93 44 145226 0 0.056 0.000 33.222349 -87.124270 +35077 13142 5836 389862764 2996576 150.527 1.157 34.021165 -86.832668 +35078 2082 935 112910648 5024294 43.595 1.940 33.324276 -86.444487 +35079 8810 3626 274877509 1223654 106.131 0.472 33.938066 -86.749708 +35080 15881 5943 112788479 2946340 43.548 1.138 33.262518 -86.913936 +35082 7 4 20885346 8183 8.064 0.003 33.157893 -86.153394 +35083 3268 1404 94497408 637168 36.486 0.246 34.199871 -86.599170 +35085 8933 3736 269746090 1231337 104.150 0.475 32.978121 -86.734189 +35087 2115 932 58103996 432750 22.434 0.167 34.306453 -86.584296 +35089 2238 1047 178423056 375830 68.890 0.145 32.945782 -86.081832 +35091 2719 999 16964672 0 6.550 0.000 33.779236 -86.789554 +35094 14212 6356 148994881 4179496 57.527 1.614 33.530066 -86.553303 +35096 7815 3831 204283046 14184558 78.874 5.477 33.620753 -86.107917 +35097 1748 700 20433826 52538 7.890 0.020 33.892230 -86.627129 +35098 1375 645 78308223 1805400 30.235 0.697 34.121100 -87.046880 +35111 16140 6406 166239542 3044016 64.185 1.175 33.284352 -87.094878 +35112 801 346 6373884 45862 2.461 0.018 33.690914 -86.470622 +35114 7172 2702 32182056 307440 12.426 0.119 33.223720 -86.872760 +35115 14118 5880 323233947 2762434 124.801 1.067 33.123338 -86.897186 +35116 4240 1771 57362647 28998 22.148 0.011 33.730117 -86.766091 +35117 5367 2155 69181965 40190 26.711 0.016 33.668371 -86.893406 +35118 3138 1375 96174225 976591 37.133 0.377 33.535007 -87.039234 +35119 116 57 732311 0 0.283 0.000 33.646571 -86.770930 +35120 13842 5416 174833544 993121 67.504 0.383 33.666813 -86.423736 +35121 15570 6497 372500250 5413780 143.823 2.090 33.941185 -86.455102 +35124 23020 9227 107636446 1640131 41.559 0.633 33.321899 -86.742177 +35125 10456 4324 122988434 585755 47.486 0.226 33.633254 -86.288661 +35126 21725 8494 150661846 1472611 58.171 0.569 33.730771 -86.655119 +35127 10099 3939 25478222 0 9.837 0.000 33.491657 -86.976366 +35128 10197 4711 165794594 12996918 64.014 5.018 33.552400 -86.337819 +35130 3233 1683 174676443 8165809 67.443 3.153 33.633156 -87.136688 +35131 4159 1880 233020192 7728246 89.970 2.984 33.727406 -86.196865 +35133 3907 1642 125131676 2166198 48.314 0.836 33.829949 -86.596134 +35135 1812 854 17135529 4819238 6.616 1.861 33.616462 -86.199595 +35136 1796 1216 559728076 12495729 216.112 4.825 32.879247 -86.286795 +35139 150 55 3031766 149647 1.171 0.058 33.709174 -86.969064 +35143 3281 2222 109603752 14483114 42.318 5.592 33.094850 -86.543885 +35146 10948 3914 276443628 3288317 106.735 1.270 33.795118 -86.453341 +35147 5468 2259 176181934 3123286 68.024 1.206 33.415884 -86.530992 +35148 2702 1282 16019790 19710 6.185 0.008 33.755992 -87.045799 +35149 630 311 14270276 16775 5.510 0.006 33.249436 -86.187525 +35150 18472 8542 163097018 2868088 62.972 1.107 33.189306 -86.238384 +35151 7632 3654 439784152 19118652 169.802 7.382 33.081328 -86.392200 +35160 26822 12013 880601013 16993505 340.002 6.561 33.357919 -86.052523 +35171 3281 1337 76291986 145008 29.457 0.056 32.882540 -86.740256 +35172 2986 1286 74622017 148331 28.812 0.057 33.847991 -86.695951 +35173 25176 9589 164728187 2663957 63.602 1.029 33.655399 -86.563039 +35175 5041 2222 164914329 4528357 63.674 1.748 34.435668 -86.511199 +35176 921 450 27387413 710889 10.574 0.274 33.485382 -86.498033 +35178 3378 1601 147543773 6730280 56.967 2.599 33.419769 -86.398435 +35179 8958 3874 241635868 1992461 93.296 0.769 34.273307 -86.968970 +35180 13794 5581 230081840 1239141 88.835 0.478 33.825550 -86.835170 +35183 706 336 174896449 555192 67.528 0.214 33.016108 -86.352010 +35184 5841 2510 366669339 2761608 141.572 1.066 33.114345 -87.136714 +35186 4931 2130 143138969 8773855 55.266 3.388 33.256842 -86.510394 +35187 32 9 53083 0 0.020 0.000 33.080534 -86.885794 +35188 2715 1051 59460028 367767 22.958 0.142 33.180460 -87.163583 +35203 3798 1822 5232096 0 2.020 0.000 33.518601 -86.809807 +35204 10337 6002 12594384 0 4.863 0.000 33.522114 -86.839847 +35205 19686 12089 9391228 0 3.626 0.000 33.494995 -86.808077 +35206 17177 8141 26484585 91391 10.226 0.035 33.569909 -86.712978 +35207 9010 4273 26929603 82509 10.398 0.032 33.565051 -86.823690 +35208 14855 6823 9152076 0 3.534 0.000 33.496819 -86.879298 +35209 29544 15167 24166085 152580 9.331 0.059 33.466348 -86.811516 +35210 13952 6485 65520616 1005966 25.298 0.388 33.540927 -86.670318 +35211 26236 14095 45741219 77289 17.661 0.030 33.455373 -86.856491 +35212 11539 6550 15195575 0 5.867 0.000 33.547391 -86.752910 +35213 13185 6017 16448934 16527 6.351 0.006 33.506671 -86.744458 +35214 19592 8912 68987524 84828 26.636 0.033 33.576978 -86.893345 +35215 46951 20194 74254490 65111 28.670 0.025 33.649052 -86.707359 +35216 36408 17313 36326082 499692 14.026 0.193 33.419246 -86.789433 +35217 13729 6263 46815934 157723 18.076 0.061 33.607882 -86.760265 +35218 7353 3696 6750702 0 2.606 0.000 33.507667 -86.893995 +35221 4834 2476 9456883 0 3.651 0.000 33.449487 -86.898962 +35222 7884 4331 9669216 5771 3.733 0.002 33.523712 -86.770115 +35223 11043 4749 21297394 82587 8.223 0.032 33.488141 -86.734834 +35224 6094 2854 40807220 234115 15.756 0.090 33.517287 -86.943842 +35226 31471 13209 46352057 237799 17.897 0.092 33.399153 -86.845896 +35228 10419 4695 11195673 0 4.323 0.000 33.456099 -86.920957 +35229 940 0 446442 2875 0.172 0.001 33.465807 -86.788592 +35233 1308 591 4352265 0 1.680 0.000 33.508748 -86.801964 +35234 6311 2860 9225058 0 3.562 0.000 33.540811 -86.802758 +35235 19484 8613 36318749 88669 14.023 0.034 33.624485 -86.647907 +35242 49545 21879 137168725 7066789 52.961 2.729 33.423203 -86.671627 +35243 17328 8582 31433068 467170 12.136 0.180 33.440918 -86.741508 +35244 32390 13456 56063756 1588460 21.646 0.613 33.352918 -86.825333 +35254 1403 137 1079581 0 0.417 0.000 33.516225 -86.857550 +35401 39878 16514 123321801 4938764 47.615 1.907 33.170238 -87.616169 +35404 21251 9701 43523535 1076091 16.805 0.415 33.215157 -87.483406 +35405 37661 17486 123170568 2018496 47.556 0.779 33.120761 -87.541105 +35406 13864 6321 219617080 15285688 84.795 5.902 33.338867 -87.469325 +35441 1060 803 172850436 8749115 66.738 3.378 32.852762 -87.750329 +35442 4972 2385 610205875 10838695 235.602 4.185 33.079677 -88.190970 +35443 2009 1249 490736522 10494623 189.474 4.052 32.755279 -88.000762 +35444 3699 1495 385566685 8286015 148.868 3.199 33.328725 -87.292884 +35446 2234 985 157674940 1772632 60.879 0.684 33.207796 -87.751031 +35447 3460 1716 374220353 10602926 144.487 4.094 33.251868 -88.157754 +35452 3880 1553 134568010 1754305 51.957 0.677 33.279026 -87.680220 +35453 11127 4757 240984192 3740329 93.045 1.444 33.163776 -87.389459 +35456 3759 1561 219418038 647209 84.718 0.250 33.063695 -87.414750 +35457 82 42 17300293 384051 6.680 0.148 33.304145 -87.773144 +35458 594 268 66201968 1280541 25.561 0.494 33.400593 -87.812782 +35459 872 429 353856650 3788327 136.625 1.463 32.791636 -88.275851 +35460 834 409 251808469 4786901 97.224 1.848 32.713161 -88.153712 +35461 1952 1069 321222267 594974 124.025 0.230 33.417692 -88.213856 +35462 5061 2570 810485013 10482614 312.930 4.047 32.920743 -87.967124 +35463 1749 791 158837237 5593844 61.327 2.160 33.064731 -87.682451 +35464 654 307 85382500 1229836 32.966 0.475 32.806130 -88.154590 +35466 6075 2669 676096613 1256008 261.042 0.485 33.248527 -87.919484 +35469 221 132 48147636 2225430 18.590 0.859 32.973874 -87.781565 +35470 5468 2514 688018012 8551398 265.645 3.302 32.561986 -88.066380 +35473 14909 6769 65141447 2138132 25.151 0.826 33.270519 -87.581612 +35474 6180 2663 520069915 4684050 200.800 1.809 32.945108 -87.587135 +35475 14507 6073 556829431 18624910 214.993 7.191 33.434462 -87.594006 +35476 8106 3613 14311109 484868 5.526 0.187 33.227448 -87.591272 +35477 335 199 88155753 1942357 34.037 0.750 32.956225 -88.241160 +35480 1343 612 176767962 240618 68.250 0.093 33.091223 -87.817352 +35481 3668 1791 306968843 1164405 118.521 0.450 33.394624 -88.037417 +35490 3857 1553 173973442 761787 67.172 0.294 33.218419 -87.238215 +35501 10424 4832 129312323 1211702 49.928 0.468 33.818910 -87.292749 +35503 9068 4079 206273285 5247483 79.643 2.026 33.941239 -87.296660 +35504 13596 6105 251123617 8111148 96.959 3.132 33.894135 -87.170812 +35540 2415 1114 190975741 1506994 73.736 0.582 34.234507 -87.209961 +35541 3597 2540 173716843 21674673 67.072 8.369 34.082317 -87.177527 +35542 1021 491 143285757 295257 55.323 0.114 33.719085 -87.676051 +35543 1137 533 96836852 581889 37.389 0.225 34.211156 -87.758438 +35544 673 361 185883652 56917 71.770 0.022 33.959985 -88.017137 +35545 100 49 3321507 0 1.282 0.000 33.651546 -87.934880 +35546 3901 1798 572696681 1111215 221.119 0.429 33.619425 -87.542714 +35548 1558 839 168499138 340223 65.058 0.131 34.056419 -87.750485 +35549 4341 2090 299741794 835402 115.731 0.323 33.851343 -87.544905 +35550 5605 2685 170435754 3562371 65.806 1.375 33.747682 -87.161688 +35552 1044 558 154439870 0 59.630 0.000 34.072276 -88.142204 +35553 4680 2472 368914183 10172920 142.439 3.928 34.125909 -87.381712 +35554 1186 578 133696827 195964 51.621 0.076 33.885727 -87.671678 +35555 10177 5075 818313754 4404009 315.953 1.700 33.658512 -87.815637 +35559 57 20 1698656 0 0.656 0.000 33.905485 -87.728143 +35563 4340 2061 268867829 117221 103.810 0.045 33.977512 -87.903874 +35564 2361 1169 174198444 330563 67.258 0.128 34.258432 -87.845572 +35565 13485 6527 719582178 2152603 277.832 0.831 34.237259 -87.563474 +35570 11145 5144 619017951 250668 239.004 0.097 34.162581 -87.993156 +35571 895 447 161899403 4497337 62.510 1.736 34.368710 -87.944109 +35572 1131 835 193111606 7681605 74.561 2.966 34.210696 -87.287856 +35574 1507 815 261877180 117812 101.111 0.045 33.567578 -87.949993 +35575 1018 505 96383194 295514 37.214 0.114 34.036141 -87.587912 +35576 3217 1650 450703484 293878 174.018 0.113 33.575382 -88.143851 +35577 38 51 9821958 0 3.792 0.000 34.102378 -87.620057 +35578 5833 2586 309051881 1135686 119.326 0.438 33.980483 -87.466391 +35579 3136 1481 365979317 6932157 141.305 2.677 33.636305 -87.360275 +35580 3791 1821 203118387 8377980 78.424 3.235 33.673294 -87.255549 +35581 5778 2717 315787054 3323616 121.926 1.283 34.359912 -87.713097 +35582 4093 1958 230276689 1477415 88.910 0.570 34.486800 -88.112899 +35584 460 200 1544897 2084 0.596 0.001 33.819368 -87.088015 +35585 1418 618 102673207 749214 39.642 0.289 34.420835 -87.832483 +35586 4469 2279 472580466 892816 182.464 0.345 33.878186 -88.134464 +35587 1025 482 136912197 551750 52.862 0.213 33.795555 -87.456864 +35592 4664 2260 323016562 235989 124.717 0.091 33.746099 -88.084807 +35593 1931 896 304833343 1430210 117.697 0.552 34.339101 -88.095624 +35594 7794 3724 374173042 438506 144.469 0.169 33.932693 -87.774369 +35601 34434 14650 72746009 16287673 28.087 6.289 34.608016 -87.011052 +35603 30545 13386 182234536 17290509 70.361 6.676 34.535452 -86.971226 +35610 2252 1046 125226255 289096 48.350 0.112 34.954458 -87.245959 +35611 25251 12037 295363308 40530358 114.040 15.649 34.773833 -87.084145 +35613 20546 7459 199264297 1359015 76.936 0.525 34.820162 -86.882397 +35614 7456 3274 164705395 5942703 63.593 2.294 34.853722 -86.990112 +35615 68 41 1814967 10129 0.701 0.004 34.663172 -86.875294 +35616 4043 2116 546377133 36136246 210.957 13.952 34.739504 -88.019381 +35618 1870 973 119128574 858882 45.996 0.332 34.641403 -87.304983 +35619 5135 2179 337054315 1396746 130.137 0.539 34.382723 -87.152105 +35620 8868 3628 281940282 4223448 108.858 1.631 34.930812 -87.020185 +35621 2852 1220 118746626 416747 45.848 0.161 34.348973 -86.729536 +35622 7388 3022 250495309 831890 96.717 0.321 34.346590 -86.898961 +35630 32629 16672 65019532 10727326 25.104 4.142 34.822980 -87.661652 +35633 20877 9100 541233501 35875572 208.971 13.852 34.875101 -87.798371 +35634 9711 4362 159726553 9006264 61.671 3.477 34.919270 -87.614548 +35640 24267 10378 284487710 2885722 109.841 1.114 34.440702 -86.943677 +35643 2941 1306 208948918 43380937 80.676 16.749 34.672577 -87.201931 +35645 14060 5972 223443333 17928749 86.272 6.922 34.903048 -87.500965 +35646 4635 2160 242582307 1067392 93.662 0.412 34.677104 -87.523343 +35647 1030 454 61105415 422152 23.593 0.163 34.967655 -87.117034 +35648 3635 1646 150492479 350455 58.105 0.135 34.958660 -87.387836 +35649 68 33 5742334 2874249 2.217 1.110 34.617619 -86.869284 +35650 13971 6139 548021506 3419194 211.592 1.320 34.447233 -87.308593 +35651 1312 580 139117745 697971 53.714 0.269 34.469857 -87.495702 +35652 8190 4160 217263171 29445166 83.886 11.369 34.846744 -87.310208 +35653 11150 4804 371345923 21059689 143.377 8.131 34.518191 -87.871965 +35654 8685 3667 368117597 1453837 142.131 0.561 34.498056 -87.632549 +35660 9042 4694 16716984 578349 6.454 0.223 34.755494 -87.701265 +35661 16617 7448 144821229 24904925 55.916 9.616 34.768526 -87.562802 +35670 7676 3300 263901541 4435600 101.893 1.713 34.455176 -86.729344 +35671 2107 1045 136390193 54929945 52.661 21.209 34.672271 -86.934004 +35672 6445 2949 342371183 20086062 132.190 7.755 34.648533 -87.406487 +35673 8199 3340 113483899 582781 43.816 0.225 34.576336 -87.137349 +35674 18475 8522 491666573 6470415 189.834 2.498 34.662410 -87.781901 +35677 1921 1094 283725184 35321309 109.547 13.638 34.955707 -88.026555 +35739 5146 2212 70242065 245581 27.121 0.095 34.968586 -86.791036 +35740 3482 1643 92475446 2986584 35.705 1.153 34.966847 -85.777446 +35741 2933 1293 60961743 274613 23.537 0.106 34.717312 -86.483264 +35744 2570 1065 86236625 1444195 33.296 0.558 34.610512 -85.909061 +35745 288 157 173685339 402819 67.060 0.156 34.943634 -86.180196 +35746 856 369 150359826 2353763 58.054 0.909 34.828619 -86.005957 +35747 5901 2743 193019013 9482841 74.525 3.661 34.494943 -86.298991 +35748 6276 2648 209711870 1485068 80.970 0.573 34.721229 -86.389370 +35749 20575 7803 104860111 505087 40.487 0.195 34.821510 -86.757645 +35750 12783 5118 164559868 350420 63.537 0.135 34.958604 -86.594230 +35751 265 131 74344995 198915 28.705 0.077 34.811157 -86.276460 +35752 2047 983 121020924 16893942 46.726 6.523 34.745900 -85.946047 +35754 5362 2372 112611617 2635647 43.480 1.018 34.525473 -86.604511 +35755 586 496 44373368 35943109 17.133 13.878 34.488304 -86.150278 +35756 9016 3556 198309318 14054129 76.568 5.426 34.643795 -86.818117 +35757 12840 4995 31102165 93843 12.009 0.036 34.784162 -86.745380 +35758 41875 17488 69656038 309725 26.894 0.120 34.711281 -86.746935 +35759 6406 2509 42094093 135751 16.253 0.052 34.867431 -86.546196 +35760 5065 2259 137068410 1128666 52.922 0.436 34.543906 -86.383856 +35761 11630 4667 301860360 750468 116.549 0.290 34.916206 -86.409214 +35763 14216 5375 108938112 1141673 42.061 0.441 34.622017 -86.462150 +35764 653 296 86067483 478904 33.231 0.185 34.726301 -86.310155 +35765 4013 1958 182201502 7442417 70.348 2.874 34.690313 -85.814085 +35766 150 97 92766351 327150 35.817 0.126 34.867493 -86.299843 +35768 11581 5303 438410273 3847690 169.271 1.486 34.768891 -86.104193 +35769 9537 4829 162220866 65359333 62.634 25.235 34.597984 -86.104809 +35771 3645 1659 158287818 2109925 61.115 0.815 34.538598 -86.005423 +35772 4908 2322 445816863 19035295 172.131 7.350 34.937382 -85.949066 +35773 13018 5218 188314088 920415 72.708 0.355 34.891069 -86.707941 +35774 165 67 36638409 212855 14.146 0.082 34.765246 -86.226525 +35775 636 280 41276181 5264300 15.937 2.033 34.542934 -86.705959 +35776 3395 1544 234086416 1044554 90.381 0.403 34.659404 -86.239414 +35801 21509 10973 36474864 133626 14.083 0.052 34.725269 -86.560866 +35802 21297 10970 46963946 2024554 18.133 0.782 34.668212 -86.558882 +35803 25471 11155 123222802 5097080 47.577 1.968 34.563686 -86.519304 +35805 22498 11012 23711097 333285 9.155 0.129 34.709368 -86.620290 +35806 18951 9171 60292130 467537 23.279 0.181 34.762538 -86.685033 +35808 1946 379 149473089 8750374 57.712 3.379 34.633027 -86.659057 +35810 30617 12611 74605516 104723 28.805 0.040 34.803249 -86.601506 +35811 25955 10935 119786235 1320944 46.250 0.510 34.795354 -86.509948 +35816 15228 7821 13724811 22513 5.299 0.009 34.739954 -86.630751 +35824 6070 3139 33041279 444272 12.757 0.172 34.644926 -86.752118 +35896 636 1 651817 2724 0.252 0.001 34.754673 -86.654641 +35901 20045 9229 154069359 11220172 59.487 4.332 34.049367 -85.934285 +35903 18088 8538 174606070 6504744 67.416 2.511 34.024270 -85.863703 +35904 14194 6627 119590006 812076 46.174 0.314 34.075012 -85.987949 +35905 6410 2782 107538767 1530684 41.521 0.591 33.962029 -85.922221 +35906 9897 4662 91432748 6158892 35.302 2.378 33.927149 -86.095113 +35907 8345 3487 57676945 7191190 22.269 2.777 33.890841 -86.018020 +35950 20826 8135 115456741 305956 44.578 0.118 34.249752 -86.261095 +35951 13098 5028 188623656 2452834 72.828 0.947 34.338880 -86.163425 +35952 7727 3392 283952612 998602 109.635 0.386 34.052385 -86.310738 +35953 7319 3217 295512329 10749657 114.098 4.150 33.809618 -86.229742 +35954 12416 5686 270547084 1129755 104.459 0.436 34.089754 -86.057449 +35956 8842 3741 190957454 523207 73.729 0.202 34.146146 -86.146749 +35957 15693 6535 206099774 653429 79.576 0.252 34.196159 -86.196898 +35958 3582 1590 136436323 4522316 52.678 1.746 34.916005 -85.645957 +35959 4836 3692 161591137 54166637 62.391 20.914 34.242383 -85.607959 +35960 10087 6449 370540398 45672219 143.066 17.634 34.124328 -85.570557 +35961 6514 2675 331186491 1202816 127.872 0.464 34.303946 -85.846221 +35962 8300 3197 203836235 189535 78.702 0.073 34.303881 -86.036441 +35963 1704 762 71862422 1995 27.746 0.001 34.359787 -85.927200 +35966 3914 1776 216120536 48845 83.445 0.019 34.789647 -85.671552 +35967 16630 7340 323742233 881671 124.998 0.340 34.407663 -85.694569 +35968 4575 2017 138813998 311493 53.596 0.120 34.551152 -85.738662 +35971 4914 2155 146897261 0 56.717 0.000 34.455491 -85.945131 +35972 1139 501 63141901 368006 24.379 0.142 33.993999 -86.246870 +35973 2870 1456 296397096 1217853 114.440 0.470 34.344016 -85.551513 +35974 1589 739 34030089 30156 13.139 0.012 34.362751 -86.010291 +35975 1058 495 88661767 453411 34.233 0.175 34.436463 -86.060368 +35976 16272 7909 331304447 91550529 127.917 35.348 34.345767 -86.330025 +35978 5390 2453 174571137 364314 67.402 0.141 34.642798 -85.728979 +35979 1398 565 27113570 0 10.469 0.000 34.832324 -85.609647 +35980 5161 2075 143616194 406326 55.451 0.157 34.172086 -86.389598 +35981 2141 985 59863352 0 23.113 0.000 34.722345 -85.648802 +35983 3738 2497 129804622 17574129 50.118 6.785 34.172968 -85.765020 +35984 1889 1490 167336339 480250 64.609 0.185 34.536843 -85.563859 +35986 7744 3449 117189217 37458 45.247 0.014 34.500336 -85.835889 +35987 2666 1197 153775515 1375035 59.373 0.531 33.913370 -86.242208 +35988 1940 793 31618255 182033 12.208 0.070 34.558223 -85.797242 +35989 3573 1556 157207759 286484 60.698 0.111 34.613500 -85.619868 +35990 38 25 198483 0 0.077 0.000 34.067780 -86.304688 +36003 1975 1003 241845420 8782150 93.377 3.391 32.451985 -86.723689 +36005 1522 840 365158910 302013 140.989 0.117 31.888214 -85.719600 +36006 1313 573 185108733 232674 71.471 0.090 32.642055 -86.722635 +36009 2566 1254 388900687 1518398 150.155 0.586 31.594781 -86.301377 +36010 4677 2428 328378577 258474 126.788 0.100 31.663655 -85.797803 +36013 562 207 45026688 236157 17.385 0.091 32.284669 -85.985235 +36016 5150 1726 624879674 771321 241.267 0.298 31.850223 -85.414706 +36017 3318 961 161248032 173549 62.258 0.067 31.679443 -85.557720 +36020 1123 454 26040826 2976620 10.054 1.149 32.479374 -86.322997 +36022 13092 4581 235108600 8147801 90.776 3.146 32.623499 -86.405578 +36024 5428 3046 232834281 18078590 89.898 6.980 32.671798 -86.025021 +36025 5729 1297 37342821 1264722 14.418 0.488 32.544042 -86.324972 +36026 1089 992 190861884 9873290 73.692 3.812 32.775480 -86.130993 +36027 16261 7719 748120825 51163286 288.851 19.754 32.060643 -85.116624 +36028 1746 992 333798171 3721714 128.880 1.437 31.495470 -86.392802 +36029 723 356 264969609 1654484 102.305 0.639 32.181872 -85.933154 +36030 491 269 176672712 65831 68.214 0.025 31.870914 -86.876220 +36031 156 70 26835548 130388 10.361 0.050 32.247120 -85.737437 +36032 2339 1061 287751800 738892 111.102 0.285 31.994630 -86.568637 +36033 4299 2210 607557243 427607 234.579 0.165 31.671714 -86.770613 +36034 807 436 150761596 215557 58.209 0.083 31.621045 -86.111209 +36035 1913 974 282373603 523549 109.025 0.202 31.788705 -86.126215 +36036 2003 1012 270542730 664981 104.457 0.257 31.973940 -86.161676 +36037 14074 6521 933824099 1787009 360.552 0.690 31.799009 -86.628615 +36038 57 22 6125160 18288 2.365 0.007 31.435078 -86.491253 +36039 253 129 98508141 389626 38.034 0.150 32.298948 -85.837560 +36040 3976 1671 401179617 3150462 154.896 1.216 32.173924 -86.684172 +36041 1318 650 137560591 350110 53.112 0.135 31.913800 -86.319978 +36042 1500 734 210808299 635620 81.394 0.245 31.868619 -86.459989 +36043 3666 1696 266227361 4076494 102.791 1.574 32.201153 -86.420747 +36046 1490 707 177862370 676966 68.673 0.261 32.022765 -86.336448 +36047 1396 652 286326559 2620429 110.551 1.012 32.075247 -86.517854 +36048 1459 735 273421233 497452 105.569 0.192 31.804471 -85.592260 +36049 5706 2678 413964146 1699947 159.832 0.656 31.768143 -86.277257 +36051 2304 1001 131514381 776291 50.778 0.300 32.685457 -86.500020 +36052 739 334 161902261 1218767 62.511 0.471 32.184093 -86.048285 +36053 1967 1105 752654958 989315 290.602 0.382 32.029240 -85.443571 +36054 15066 6192 63061246 3879953 24.348 1.498 32.481879 -86.366311 +36064 6753 2654 209281905 2518347 80.804 0.972 32.296635 -86.077885 +36066 19089 7759 51451444 2911008 19.866 1.124 32.479684 -86.424001 +36067 26954 10737 619615179 10998292 239.235 4.246 32.509379 -86.564904 +36069 1935 1010 385803834 3364858 148.960 1.299 32.094138 -86.149865 +36071 766 357 121630582 86212 46.962 0.033 31.706685 -86.397754 +36075 2226 982 236980556 2848428 91.499 1.100 32.378389 -85.923700 +36078 13179 5819 446312194 15042294 172.322 5.808 32.538247 -85.934103 +36079 9339 4413 515790564 1148923 199.148 0.444 31.764156 -86.003013 +36080 2271 1220 140173756 8545426 54.121 3.299 32.701863 -86.281358 +36081 15267 7409 562871687 831972 217.326 0.321 31.903745 -85.898152 +36082 1667 0 987317 0 0.381 0.000 31.802761 -85.954635 +36083 9563 4894 659852116 5422755 254.770 2.094 32.385764 -85.682934 +36088 4767 1936 8669378 12263 3.347 0.005 32.415281 -85.720314 +36089 8760 3274 851830624 4067405 328.894 1.570 32.152306 -85.697807 +36091 3648 1652 211857079 4253816 81.798 1.642 32.750447 -86.508548 +36092 20274 8197 338772032 12990693 130.801 5.016 32.617007 -86.201587 +36093 9456 3717 211125348 4874258 81.516 1.882 32.494564 -86.133634 +36104 9468 4400 32478638 7346236 12.540 2.836 32.398820 -86.326502 +36105 12043 5427 190235308 3260887 73.450 1.259 32.209701 -86.288698 +36106 15211 7184 15754610 9415 6.083 0.004 32.352820 -86.257585 +36107 9589 4474 8377980 0 3.235 0.000 32.383689 -86.279303 +36108 21306 9666 180216132 8473473 69.582 3.272 32.339100 -86.401107 +36109 24777 11088 30021825 30088 11.591 0.012 32.388957 -86.242148 +36110 12997 5476 76743399 4839295 29.631 1.868 32.446582 -86.255772 +36111 12176 5610 11134306 12789 4.299 0.005 32.336579 -86.271324 +36112 553 2 904056 0 0.349 0.000 32.380826 -86.349141 +36113 1902 362 7306469 763911 2.821 0.295 32.382440 -86.363389 +36115 623 308 1532461 0 0.592 0.000 32.406769 -86.246702 +36116 43790 18771 145218169 1717717 56.069 0.663 32.273588 -86.214473 +36117 50268 22405 140602371 2959097 54.287 1.143 32.378728 -86.145011 +36201 20156 9535 96579030 202052 37.289 0.078 33.649160 -85.879642 +36203 18799 7774 99112441 1953241 38.268 0.754 33.583080 -85.834626 +36205 635 360 11172382 7378 4.314 0.003 33.717379 -85.794817 +36206 11427 5099 41373138 180926 15.974 0.070 33.733284 -85.809715 +36207 19801 9372 191279525 1595713 73.853 0.616 33.680005 -85.709110 +36250 4603 1852 45695573 208093 17.643 0.080 33.765322 -85.901096 +36251 5103 2451 374132430 1863553 144.453 0.720 33.226536 -85.869250 +36255 969 508 177815162 231236 68.655 0.089 33.168154 -85.730440 +36256 1570 756 245650944 2050579 94.846 0.792 33.046308 -85.704818 +36258 1599 872 291663417 980152 112.612 0.378 33.477734 -85.717338 +36260 4247 1856 70303259 757321 27.144 0.292 33.582149 -85.996958 +36262 1448 661 231797075 66686 89.497 0.026 33.791445 -85.475464 +36263 658 296 63803272 0 24.635 0.000 33.466234 -85.359330 +36264 8659 3892 610716140 1328983 235.799 0.513 33.596601 -85.550422 +36265 21060 9150 257643439 799554 99.477 0.309 33.847655 -85.784916 +36266 5582 2938 462616327 2652991 178.617 1.024 33.349846 -85.734316 +36267 35 21 3530688 0 1.363 0.000 33.197365 -85.948287 +36268 5432 2362 243083378 3978864 93.855 1.536 33.494798 -85.929452 +36269 1395 617 115699786 69648 44.672 0.027 33.739797 -85.383876 +36271 6023 2727 212510688 7978302 82.051 3.080 33.781230 -86.018690 +36272 13389 6294 873035449 3600804 337.081 1.390 33.942955 -85.594514 +36273 2914 1299 135071706 345102 52.151 0.133 33.545385 -85.377204 +36274 11199 5295 473113030 2563447 182.670 0.990 33.172139 -85.362824 +36276 2592 1189 347561255 4091065 134.194 1.580 33.132677 -85.570266 +36277 5420 2326 21772657 355745 8.406 0.137 33.757469 -85.818226 +36278 4366 2963 344289939 2874931 132.931 1.110 33.331042 -85.522981 +36279 2645 1133 76912942 655434 29.696 0.253 33.872274 -85.889336 +36280 3932 1893 319870793 320020 123.503 0.124 33.380406 -85.388737 +36301 35759 15896 231212617 1651651 89.272 0.638 31.140068 -85.398290 +36303 30217 13518 162685124 42315 62.813 0.016 31.266568 -85.401317 +36305 14470 6281 82312632 153596 31.781 0.059 31.204368 -85.495839 +36310 6783 4140 558137277 16202049 215.498 6.256 31.595148 -85.208852 +36311 2770 1275 310176610 186510 119.760 0.072 31.607649 -85.686916 +36312 6187 2863 199441058 871514 77.005 0.336 31.170833 -85.236826 +36313 285 145 10166097 0 3.925 0.000 31.178551 -85.793943 +36314 595 291 61102404 244763 23.592 0.095 31.018937 -85.772824 +36316 1722 829 129340749 838731 49.939 0.324 31.175691 -85.863975 +36317 590 270 105180907 177457 40.611 0.069 31.643557 -85.404255 +36318 1296 648 125552341 280671 48.476 0.108 31.169524 -85.950531 +36319 2276 1154 259512553 411279 100.198 0.159 31.331819 -85.149182 +36320 3837 1793 170676444 322203 65.899 0.124 31.049965 -85.315820 +36321 1632 694 17881274 183313 6.904 0.071 31.210840 -85.299230 +36322 9072 4475 161896563 315188 62.509 0.122 31.257605 -85.735807 +36323 8255 3849 599070106 1783235 231.302 0.689 31.428104 -86.072471 +36330 35530 15484 311280174 229138 120.186 0.088 31.305778 -85.862950 +36340 5490 2583 122879637 1642055 47.444 0.634 31.051672 -85.890943 +36343 1579 840 260636892 566184 100.632 0.219 31.060704 -85.120765 +36344 5732 2697 332952563 2543773 128.554 0.982 31.097890 -85.708147 +36345 7822 3400 318204172 69036 122.859 0.027 31.368148 -85.304595 +36346 1456 656 130085722 10573 50.226 0.004 31.560574 -85.930086 +36350 6540 2846 166340790 74008 64.225 0.029 31.350214 -85.495521 +36351 3146 1462 210125438 161362 81.130 0.062 31.425528 -85.906598 +36352 4885 2134 183538469 76129 70.865 0.029 31.264999 -85.609699 +36353 1968 936 249808125 245714 96.451 0.095 31.478396 -85.348885 +36360 20157 9358 468366047 1014295 180.837 0.392 31.467469 -85.617030 +36362 4637 1456 76348707 46399 29.478 0.018 31.350932 -85.679787 +36370 972 433 73202751 39720 28.264 0.015 31.142219 -85.158109 +36371 720 332 30095074 21718 11.620 0.008 31.312420 -85.551996 +36373 581 312 160982379 291398 62.156 0.113 31.525075 -85.109364 +36374 970 484 140392063 0 54.206 0.000 31.578737 -85.493690 +36375 7390 3378 315375489 1293615 121.767 0.499 31.071216 -85.544966 +36376 2445 1071 58569365 172191 22.614 0.066 31.251143 -85.269809 +36401 8314 4404 1183237514 3212003 456.851 1.240 31.473454 -86.950501 +36420 10673 5208 688760997 6067097 265.932 2.343 31.177363 -86.567188 +36421 9241 4708 535900797 12652803 206.912 4.885 31.324729 -86.506928 +36425 1008 600 388841603 1353636 150.133 0.523 31.764740 -87.195168 +36426 16202 7662 1258584144 12694414 485.942 4.901 31.142284 -87.069972 +36432 2420 1255 369591928 2147814 142.700 0.829 31.293567 -87.027691 +36435 579 324 112818911 2235440 43.560 0.863 31.869694 -87.451616 +36436 531 257 86077414 0 33.235 0.000 31.785367 -87.649528 +36439 583 229 3868967 5669 1.494 0.002 31.419287 -87.345189 +36441 3576 1678 151966823 1886673 58.675 0.728 31.039357 -87.255149 +36442 3555 1947 528572859 5138755 204.083 1.984 31.071569 -86.356872 +36444 702 535 273809965 4535695 105.719 1.751 31.661913 -87.446699 +36445 5050 2352 398958788 1040586 154.039 0.402 31.444585 -87.453392 +36446 490 231 11669782 0 4.506 0.000 31.792460 -87.719956 +36451 4977 2379 496703704 309200 191.778 0.119 31.700517 -87.803568 +36453 2198 1051 240026367 1750514 92.675 0.676 31.191678 -86.149163 +36454 51 30 3670635 18560 1.417 0.007 31.328428 -87.200318 +36455 465 222 1392967 17016 0.538 0.007 31.013096 -86.351972 +36456 1820 921 321082598 216217 123.971 0.083 31.568405 -86.806151 +36460 10738 4946 358034628 336374 138.238 0.130 31.518972 -87.304829 +36467 10058 4778 428767747 4374760 165.548 1.689 31.281017 -86.256945 +36470 98 77 91703580 4292262 35.407 1.657 31.529297 -87.567505 +36471 1257 689 257126614 17209 99.277 0.007 31.616419 -87.248947 +36473 106 55 15818994 41059 6.108 0.016 31.307469 -87.202487 +36474 2926 1500 475324877 1694259 183.524 0.654 31.429685 -86.626045 +36475 2208 1110 425909794 915371 164.445 0.353 31.387683 -87.219745 +36476 51 23 3142612 21779 1.213 0.008 31.362361 -86.549731 +36477 4946 2434 438450196 4931894 169.287 1.904 31.097123 -86.061375 +36480 1773 1004 419797533 5527225 162.085 2.134 31.325005 -87.599127 +36481 593 309 150228019 2022511 58.003 0.781 31.771512 -87.382559 +36482 1090 586 319261253 1498844 123.267 0.579 31.639318 -87.636900 +36483 536 321 268037772 3573218 103.490 1.380 31.039499 -86.693624 +36502 18355 7006 850061558 4630718 328.211 1.788 31.147733 -87.494821 +36505 1481 618 55949703 2751984 21.602 1.063 30.946825 -88.016709 +36507 19090 7889 867145248 7892915 334.807 3.047 30.859596 -87.742931 +36509 1983 770 16947883 2650383 6.544 1.023 30.393020 -88.270178 +36511 764 359 12103003 869001 4.673 0.336 30.315155 -87.747247 +36512 46 39 14036317 973844 5.419 0.376 30.998814 -88.018411 +36513 555 252 37532299 1392302 14.491 0.538 31.174003 -88.005748 +36518 2842 1257 350264928 473259 135.238 0.183 31.453950 -88.282495 +36521 5431 2171 374159046 1193633 144.464 0.461 30.964986 -88.177330 +36522 7183 2964 569974677 3272679 220.068 1.264 31.093382 -88.274824 +36523 2818 1368 99197349 21947246 38.300 8.474 30.369635 -88.175517 +36524 1232 878 433118195 4441416 167.228 1.715 31.802618 -88.010863 +36525 1935 778 43378054 2470952 16.748 0.954 30.890103 -88.018704 +36526 27890 12523 96862407 3447959 37.399 1.331 30.611107 -87.859624 +36527 12109 5245 106535970 10819546 41.134 4.177 30.702075 -87.881866 +36528 1237 1817 16503596 71151961 6.372 27.472 30.235498 -88.236233 +36529 478 200 156566057 276379 60.450 0.107 31.271041 -88.238559 +36530 6873 3704 250235423 17650195 96.616 6.815 30.408210 -87.555585 +36532 27829 13547 190980522 16927960 73.738 6.536 30.480713 -87.861306 +36535 26767 13100 236939592 11432910 91.483 4.414 30.384723 -87.726796 +36538 374 323 89255704 1687560 34.462 0.652 31.657053 -88.143271 +36539 802 350 184459705 456594 71.220 0.176 31.348614 -88.380629 +36540 691 303 114484025 2184801 44.203 0.844 31.448949 -87.675843 +36541 15647 6072 247672665 1337983 95.627 0.517 30.489535 -88.344106 +36542 12705 15939 135942874 59242046 52.488 22.873 30.269720 -87.750611 +36543 66 27 761728 5737 0.294 0.002 31.221584 -87.466126 +36544 12476 4590 103819104 191810 40.085 0.074 30.480146 -88.230266 +36545 9941 4767 1029777200 24495294 397.599 9.458 31.488511 -87.871704 +36548 1136 517 89617993 2800006 34.602 1.081 31.488980 -87.967725 +36549 4271 2782 72294867 29860916 27.913 11.529 30.410937 -87.456014 +36550 217 125 139668535 346716 53.926 0.134 31.249430 -87.730436 +36551 8258 3246 168354892 1074555 65.002 0.415 30.640670 -87.754643 +36553 3575 1596 285508291 3070164 110.235 1.185 31.243301 -88.067813 +36555 654 358 2183804 143665 0.843 0.055 30.396615 -87.783492 +36556 308 314 18574700 498152 7.172 0.192 31.197708 -87.976023 +36558 3854 1921 633943804 606141 244.767 0.234 31.604406 -88.315922 +36559 233 124 932490 1628768 0.360 0.629 30.567794 -87.908653 +36560 3690 1571 181779507 5524903 70.185 2.133 31.097767 -88.040068 +36561 5808 12492 41950582 25910418 16.197 10.004 30.285677 -87.572361 +36562 1596 638 115487553 140426 44.590 0.054 31.037057 -87.670416 +36564 107 125 766457 4017 0.296 0.002 30.478695 -87.926509 +36567 12672 5177 591703665 3764169 228.458 1.453 30.623536 -87.556960 +36568 162 63 2325650 1304 0.898 0.001 30.511926 -88.272640 +36569 928 389 160142027 1292482 61.831 0.499 31.542478 -88.091294 +36571 14423 6230 118183157 1331529 45.631 0.514 30.854676 -88.109965 +36572 6340 2497 24031300 319022 9.279 0.123 30.857692 -88.061220 +36574 1341 665 36288563 1967070 14.011 0.759 30.500689 -87.478628 +36575 18345 7040 108773985 5047219 41.998 1.949 30.769164 -88.273387 +36576 4143 1767 50363677 149027 19.446 0.058 30.522953 -87.763833 +36578 1749 723 79277772 574984 30.609 0.222 30.747590 -87.781138 +36579 1590 1029 340106180 3768218 131.316 1.455 31.106823 -87.796932 +36580 5420 2422 139229956 1032045 53.757 0.398 30.478898 -87.703414 +36581 224 118 133929396 7440591 51.710 2.873 31.375357 -87.965583 +36582 24624 10176 207987772 10473271 80.305 4.044 30.509877 -88.173001 +36583 639 311 166259150 287552 64.193 0.111 31.356822 -88.187884 +36584 772 380 178126575 1027848 68.775 0.397 31.194410 -88.376408 +36585 972 429 214887538 235977 82.969 0.091 31.388747 -88.081329 +36587 12053 4522 315798568 9281344 121.931 3.584 30.844238 -88.351243 +36590 20 15 9010 0 0.003 0.000 30.531802 -88.174421 +36602 1057 697 2361692 0 0.912 0.000 30.693327 -88.045544 +36603 7922 3628 16644136 3882239 6.426 1.499 30.674190 -88.024072 +36604 10456 5159 6837831 0 2.640 0.000 30.682219 -88.068135 +36605 30111 12914 47259837 9502048 18.247 3.669 30.604547 -88.087824 +36606 18733 8918 16979423 1329 6.556 0.001 30.670446 -88.106092 +36607 6852 3557 8284818 0 3.199 0.000 30.698586 -88.105780 +36608 36864 16334 162026320 1432055 62.559 0.553 30.681503 -88.300212 +36609 25846 12815 18233169 25019 7.040 0.010 30.661093 -88.163530 +36610 13209 6322 20715986 893918 7.998 0.345 30.736470 -88.073506 +36611 6106 2879 12304398 1295236 4.751 0.500 30.769623 -88.080073 +36612 4541 1973 7262879 7066 2.804 0.003 30.752882 -88.113135 +36613 12749 4944 132726106 771257 51.246 0.298 30.806580 -88.191390 +36615 391 171 7511054 1479701 2.900 0.571 30.630177 -88.069843 +36616 27 14 18103 0 0.007 0.000 30.724504 -88.081588 +36617 13967 6129 12304160 44756 4.751 0.017 30.716025 -88.095705 +36618 16737 6652 41775146 110305 16.129 0.043 30.739067 -88.173282 +36619 14269 5827 44493182 934196 17.179 0.361 30.596087 -88.196637 +36688 659 0 1387566 0 0.536 0.000 30.696157 -88.182099 +36693 17847 7772 32636639 1173377 12.601 0.453 30.625700 -88.149746 +36695 45118 18360 123667738 676015 47.748 0.261 30.628385 -88.280303 +36701 24268 11165 672795859 7706121 259.768 2.975 32.476405 -87.055450 +36703 13643 5955 312801336 11415191 120.773 4.407 32.427349 -86.912858 +36720 784 337 129096167 6534377 49.844 2.523 32.158850 -87.346870 +36722 472 221 83431323 52372 32.213 0.020 32.094921 -87.571497 +36723 230 116 17268455 9242502 6.667 3.569 32.053630 -87.274538 +36726 4814 2431 679258399 21626821 262.263 8.350 31.963626 -87.295936 +36727 61 59 158995045 3207995 61.388 1.239 31.910985 -88.033910 +36728 461 235 234200126 3820726 90.425 1.475 32.161399 -87.476215 +36732 8395 3910 331457885 7048573 127.977 2.721 32.429314 -87.914179 +36736 1207 524 106450827 54771 41.101 0.021 32.060282 -87.776198 +36738 952 428 187101861 457979 72.240 0.177 32.420970 -87.624965 +36740 1328 857 189665315 8939318 73.230 3.451 32.626783 -87.836571 +36742 2554 1185 294597235 4829602 113.745 1.865 32.467872 -87.729452 +36744 7419 3506 593105797 10242093 228.999 3.954 32.696057 -87.599604 +36748 3260 1647 397971822 825484 153.658 0.319 32.267275 -87.780901 +36749 1089 508 160345442 1372480 61.910 0.530 32.539961 -86.859545 +36750 2901 1306 296154675 1043435 114.346 0.403 32.789616 -86.849377 +36751 945 410 242902095 4148418 93.785 1.602 31.824299 -87.545748 +36752 1644 922 387098345 14908178 149.460 5.756 32.298669 -86.631995 +36753 85 45 31727539 28298 12.250 0.011 31.805238 -87.074655 +36754 344 210 104087339 0 40.188 0.000 32.154061 -87.700902 +36756 6165 2671 1072776881 8253730 414.201 3.187 32.694820 -87.285068 +36758 1412 683 226381216 1297924 87.406 0.501 32.638756 -86.889972 +36759 1501 798 496433166 2802371 191.674 1.082 32.416752 -87.277593 +36761 1161 632 666795355 4700181 257.451 1.815 32.106169 -86.978039 +36763 139 84 52237385 1844815 20.169 0.712 32.276807 -87.980902 +36765 1294 565 190437645 1546477 73.528 0.597 32.588171 -87.522229 +36766 25 25 20196275 0 7.798 0.000 31.955121 -87.086691 +36767 2012 1001 305058639 5661053 117.784 2.186 32.259288 -87.191091 +36768 1096 648 624225720 682831 241.015 0.264 31.912626 -87.019696 +36769 3014 1300 379468642 4191916 146.514 1.619 32.007856 -87.547444 +36773 512 263 252169146 4046042 97.363 1.562 32.258944 -87.357531 +36775 800 433 240380448 3747209 92.811 1.447 32.175085 -86.979628 +36776 1489 732 210519501 6291926 81.282 2.429 32.736022 -87.741128 +36782 2405 1251 524159729 1535852 202.379 0.593 32.130910 -87.911901 +36783 945 549 304540836 265077 117.584 0.102 32.247762 -87.597827 +36784 7754 3640 701247903 1606384 270.753 0.620 31.926927 -87.787887 +36785 1165 561 327219706 3973275 126.340 1.534 32.260516 -86.845810 +36786 3365 1520 356605068 1085543 137.686 0.419 32.431262 -87.479256 +36790 139 68 13043967 11028 5.036 0.004 32.733603 -86.893627 +36792 1169 520 145723864 244568 56.264 0.094 32.932428 -86.906373 +36793 568 323 196129906 342022 75.726 0.132 32.821605 -87.027517 +36801 22214 9989 185406316 2426820 71.586 0.937 32.694763 -85.395626 +36804 16861 6968 500011679 2564159 193.056 0.990 32.532240 -85.344050 +36830 33201 15869 258313377 2831387 99.735 1.093 32.538887 -85.492653 +36832 22071 11729 183540583 1381775 70.865 0.534 32.591182 -85.586673 +36849 3150 1 1003514 0 0.387 0.000 32.602420 -85.487341 +36850 2630 1410 382608351 1368253 147.726 0.528 32.783232 -85.658566 +36852 2129 913 91013148 96179 35.140 0.037 32.758314 -85.293959 +36853 8269 5982 469942237 48440412 181.446 18.703 32.814350 -85.768590 +36854 14576 7468 152474784 5987622 58.871 2.312 32.751613 -85.189484 +36855 1551 844 186622728 5928526 72.055 2.289 33.028908 -85.308151 +36856 3719 1511 85751945 1662958 33.109 0.642 32.274495 -84.997829 +36858 441 255 140940267 760200 54.417 0.294 32.328274 -85.330375 +36859 34 15 13652154 48472 5.271 0.019 32.235095 -85.011040 +36860 1580 897 394211345 906381 152.206 0.350 32.253477 -85.419096 +36861 3264 2032 127722035 28172317 49.314 10.877 32.890875 -85.850604 +36862 6623 3061 620716705 2455686 239.660 0.948 32.903965 -85.455157 +36863 11672 5793 227708154 5526651 87.919 2.134 32.889494 -85.263750 +36865 23 21 261055 1046 0.101 0.000 32.602618 -85.589334 +36866 3955 1858 230684676 1555578 89.068 0.601 32.565305 -85.712082 +36867 22210 10481 33649337 460167 12.992 0.178 32.495317 -85.024588 +36869 18751 8372 193673512 1351112 74.778 0.522 32.421383 -85.064964 +36870 18783 7561 62909349 279097 24.289 0.108 32.482878 -85.120305 +36871 1277 719 381732015 1564644 147.388 0.604 32.178708 -85.157233 +36874 7901 3501 288504758 4475648 111.392 1.728 32.564252 -85.198549 +36875 4622 2069 363154841 1596389 140.215 0.616 32.336837 -85.166552 +36877 11414 4752 106799175 1719840 41.235 0.664 32.575034 -85.099414 +36879 2114 954 227946807 562038 88.011 0.217 32.727568 -85.558378 +36901 329 174 27909225 58416 10.776 0.023 32.425717 -88.157876 +36904 4098 2064 587761872 2514735 226.936 0.971 32.100587 -88.260758 +36907 1930 996 322848075 352811 124.652 0.136 32.426384 -88.346704 +36908 2417 1188 339933165 2371849 131.249 0.916 31.869253 -88.391508 +36910 35 18 14617805 0 5.644 0.000 32.204602 -88.146953 +36912 2017 1133 362415912 336249 139.930 0.130 32.230412 -88.302607 +36913 53 29 24106870 0 9.308 0.000 31.960963 -88.447090 +36915 627 326 96228660 0 37.154 0.000 31.955091 -88.358729 +36916 709 455 77094314 1816345 29.766 0.701 32.209837 -88.059887 +36919 2143 1098 417758926 5717932 161.298 2.208 31.769052 -88.282862 +36921 1035 558 259197122 4247746 100.077 1.640 31.938430 -88.182780 +36922 656 400 277568419 2190633 107.170 0.846 32.300344 -88.141975 +36925 3115 1581 352374752 2368086 136.053 0.914 32.432254 -88.183591 +37010 4679 1714 200289143 173876 77.332 0.067 36.575109 -87.101199 +37012 2292 1032 90132588 0 34.800 0.000 36.073830 -86.001565 +37013 78406 32773 104084127 13494098 40.187 5.210 36.052237 -86.632503 +37014 1855 735 63808534 84810 24.637 0.033 35.875229 -86.632954 +37015 17184 7133 397972028 8690089 153.658 3.355 36.279401 -87.075554 +37016 793 372 70943434 0 27.391 0.000 35.957452 -86.100226 +37018 2259 1332 119759932 289888 46.240 0.112 35.630679 -86.211258 +37019 694 316 43391047 0 16.753 0.000 35.392281 -86.709825 +37020 5036 1981 249248367 25724 96.235 0.010 35.634389 -86.407093 +37022 5469 2288 221134716 15150 85.381 0.006 36.514582 -86.317038 +37023 1811 716 46606600 16432 17.995 0.006 36.592456 -87.782744 +37025 6226 2609 156397691 0 60.385 0.000 35.948733 -87.307754 +37026 2201 915 124944100 0 48.241 0.000 35.696497 -86.105655 +37027 49035 18277 142620708 130383 55.066 0.050 35.999288 -86.785062 +37028 676 419 41773002 5963041 16.129 2.302 36.627542 -87.862973 +37029 5628 2263 127059142 495478 49.058 0.191 36.042551 -87.264603 +37030 6982 3177 164294135 12497853 63.434 4.825 36.271536 -85.942108 +37031 3712 1531 103905880 6311985 40.118 2.437 36.366154 -86.292718 +37032 4493 1728 209026280 0 80.706 0.000 36.524214 -87.017154 +37033 7805 3591 654772182 23178 252.809 0.009 35.744616 -87.557840 +37034 6591 2615 185503666 455532 71.623 0.176 35.640624 -86.690998 +37035 3766 1416 78014660 1428907 30.122 0.552 36.383876 -87.124806 +37036 5862 2437 252108335 2941258 97.340 1.136 36.233308 -87.262176 +37037 6312 2366 191984399 93356 74.126 0.036 35.703083 -86.351238 +37040 44924 18449 239336879 3997542 92.408 1.543 36.522633 -87.334932 +37042 66916 27232 157942270 1243779 60.982 0.480 36.568751 -87.416322 +37043 39945 17197 290560632 2172418 112.186 0.839 36.490934 -87.240533 +37046 3665 1507 181054640 30374 69.906 0.012 35.781876 -86.700740 +37047 2345 1014 157587910 0 60.845 0.000 35.317300 -86.835786 +37048 6030 2374 113994674 0 44.014 0.000 36.491315 -86.595909 +37049 3244 1261 68446591 1041 26.427 0.000 36.557059 -86.673094 +37050 1699 839 131373965 4703559 50.724 1.816 36.374338 -87.630998 +37051 3677 1524 202948568 0 78.359 0.000 36.304293 -87.410243 +37052 2656 1096 97462998 0 37.631 0.000 36.378818 -87.401828 +37055 27024 11508 525921484 597347 203.059 0.231 36.077149 -87.442912 +37057 834 383 79679695 307873 30.765 0.119 36.418109 -86.029944 +37058 7081 3806 464781429 30591516 179.453 11.811 36.444343 -87.876657 +37059 1552 693 68520575 234199 26.456 0.090 35.981046 -85.898328 +37060 2230 942 99472428 0 38.407 0.000 35.745465 -86.637752 +37061 5153 2278 249258071 14199 96.239 0.005 36.287708 -87.635077 +37062 10745 4156 176539306 217853 68.162 0.084 35.990876 -87.135932 +37064 48118 18832 462431629 704589 178.546 0.272 35.884862 -86.954138 +37066 42758 18064 296702227 15606539 114.557 6.026 36.398757 -86.455540 +37067 23652 10140 81219485 49446 31.359 0.019 35.912217 -86.780257 +37069 18899 6709 95767848 1539142 36.976 0.594 35.987493 -86.903598 +37072 30215 13119 201700556 554492 77.877 0.214 36.352140 -86.746651 +37073 13350 5178 131370880 126699 50.723 0.049 36.432426 -86.816630 +37074 6965 3034 264831625 4645766 102.252 1.794 36.426436 -86.152749 +37075 59256 24414 153778760 14552682 59.374 5.619 36.339969 -86.607922 +37076 35230 16694 70737217 16451238 27.312 6.352 36.149290 -86.576839 +37078 674 387 246285791 98763 95.091 0.038 35.912603 -87.744540 +37079 2578 1146 199148432 5801549 76.892 2.240 36.478557 -87.658719 +37080 7384 3152 126783538 337290 48.951 0.130 36.332761 -86.916886 +37082 6107 2456 112552056 794729 43.457 0.307 36.094872 -87.115266 +37083 13909 6163 380053808 106558 146.740 0.041 36.535354 -86.011048 +37085 4035 1550 145594893 0 56.215 0.000 35.954824 -86.280498 +37086 31513 11274 67586566 490347 26.095 0.189 36.022228 -86.559357 +37087 41132 16949 430138689 18293703 166.077 7.063 36.263321 -86.268888 +37090 12922 5246 422000448 167159 162.935 0.065 36.111740 -86.299189 +37091 21005 9157 536404803 1843517 207.107 0.712 35.489239 -86.767472 +37095 1854 906 190219634 204424 73.444 0.079 35.982447 -85.970274 +37096 5503 3193 767930082 13874707 296.499 5.357 35.612807 -87.870302 +37097 2294 1324 278334381 4367011 107.466 1.686 35.779865 -87.823480 +37098 5382 2245 155641994 23700 60.094 0.009 35.872377 -87.319372 +37101 6422 2851 518571477 72949 200.222 0.028 36.060244 -87.629074 +37110 32495 14618 957358325 778448 369.638 0.301 35.645205 -85.741067 +37115 37316 17619 55138051 1625361 21.289 0.628 36.253847 -86.695530 +37118 1264 536 88166287 0 34.041 0.000 35.930240 -86.190225 +37122 46463 17942 289921200 17159798 111.939 6.625 36.182639 -86.480715 +37127 15786 6122 125622199 0 48.503 0.000 35.781304 -86.327533 +37128 38966 15599 139927601 169332 54.026 0.065 35.784183 -86.489369 +37129 49103 19086 211435646 2883506 81.636 1.113 35.932526 -86.442648 +37130 52070 23028 135508688 206471 52.320 0.080 35.884923 -86.317204 +37132 2776 1 1315283 0 0.508 0.000 35.849273 -86.364315 +37134 3061 1401 101184610 26643556 39.068 10.287 35.992357 -87.948031 +37135 9681 3314 96986380 4241 37.447 0.002 35.915796 -86.676604 +37137 2725 1232 218430525 249210 84.337 0.096 35.884160 -87.505366 +37138 22191 9482 45964613 8668861 17.747 3.347 36.244014 -86.609391 +37140 1365 79 67439662 0 26.039 0.000 35.859175 -87.652527 +37141 1224 481 55119316 0 21.282 0.000 36.614915 -86.701927 +37142 1902 690 94741237 1675505 36.580 0.647 36.410888 -87.509688 +37143 3818 1553 72199098 0 27.876 0.000 36.127732 -87.031243 +37144 3344 1522 337512241 0 130.314 0.000 35.305223 -86.660358 +37145 2157 1010 181548770 171678 70.096 0.066 36.377361 -85.906530 +37146 7182 2607 78213484 22634 30.198 0.009 36.402067 -87.032016 +37148 22320 8926 353965826 471923 136.667 0.182 36.566636 -86.495247 +37149 2210 965 168675829 0 65.126 0.000 35.804004 -86.192696 +37150 4894 2227 276940510 173235 106.927 0.067 36.541483 -85.810410 +37151 565 248 46534798 1912685 17.967 0.738 36.309201 -86.043020 +37153 5520 2047 149087774 0 57.563 0.000 35.763808 -86.554126 +37160 32744 13326 594743783 1466989 229.632 0.566 35.455761 -86.484563 +37165 70 34 549826 0 0.212 0.000 36.292696 -87.470936 +37166 13446 6390 400830966 29702644 154.762 11.468 35.917978 -85.786903 +37167 49322 19076 149033896 3935639 57.542 1.520 35.959541 -86.531590 +37171 917 396 55976255 267626 21.613 0.103 36.361313 -87.295564 +37172 28714 11603 468834198 232364 181.018 0.090 36.532416 -86.862191 +37174 26418 9986 177667375 219654 68.598 0.085 35.719834 -86.898449 +37175 1015 916 199412836 18232465 76.994 7.040 36.324692 -87.889055 +37178 2112 941 117297684 17863 45.289 0.007 36.323887 -87.790475 +37179 11767 4140 138373009 22073 53.426 0.009 35.811405 -86.924482 +37180 3033 1164 82032117 502287 31.673 0.194 35.606468 -86.586661 +37181 1534 649 121674684 22506 46.979 0.009 36.244554 -87.469137 +37183 3229 1393 206018716 265213 79.544 0.102 35.494482 -86.303181 +37184 5844 2432 302980007 0 116.981 0.000 36.082419 -86.144093 +37185 8638 4391 599015748 39805503 231.281 15.369 36.064237 -87.857678 +37186 9184 3871 272348791 147571 105.154 0.057 36.596738 -86.221711 +37187 6829 2835 186284491 214354 71.925 0.083 36.144149 -87.197891 +37188 13643 5087 77913750 0 30.083 0.000 36.480270 -86.681321 +37189 3320 1377 66264539 37628 25.585 0.015 36.298880 -86.834803 +37190 8787 3863 379646594 156872 146.582 0.061 35.816539 -86.021204 +37191 4020 1660 107535942 1010618 41.520 0.390 36.494075 -87.529654 +37201 2137 944 790274 160327 0.305 0.062 36.166001 -86.777305 +37203 11883 6791 10866089 8826 4.195 0.003 36.149614 -86.790618 +37204 12031 5683 19164623 0 7.400 0.000 36.106735 -86.774283 +37205 24057 12344 37635233 430 14.531 0.000 36.113195 -86.870442 +37206 25699 11912 20005992 487982 7.724 0.188 36.179319 -86.731083 +37207 34880 14493 49189283 408173 18.992 0.158 36.233774 -86.775969 +37208 16067 7500 11957261 403271 4.617 0.156 36.177714 -86.808023 +37209 35457 15648 94099588 2839605 36.332 1.096 36.185400 -86.948570 +37210 16067 7073 23936701 400226 9.242 0.155 36.149265 -86.732957 +37211 74755 31732 55347762 0 21.370 0.000 36.067234 -86.723711 +37212 20148 7794 7183416 0 2.774 0.000 36.133877 -86.801254 +37213 218 84 1875556 335591 0.724 0.130 36.166156 -86.767542 +37214 28973 14313 64926460 4684319 25.068 1.809 36.162189 -86.670867 +37215 21190 10824 40431399 0 15.611 0.000 36.081868 -86.834691 +37216 17848 8507 17532181 254150 6.769 0.098 36.216583 -86.726843 +37217 29599 13498 37512785 3790637 14.484 1.464 36.108313 -86.656360 +37218 14855 5640 102144071 3699017 39.438 1.428 36.164095 -86.889416 +37219 1162 1111 548331 0 0.212 0.000 36.166811 -86.783177 +37220 5786 2519 19237175 318341 7.428 0.123 36.068447 -86.793127 +37221 36610 17249 134232227 281508 51.827 0.109 36.051294 -86.968798 +37228 1160 625 3810327 459849 1.471 0.178 36.196291 -86.803583 +37240 754 0 42119 0 0.016 0.000 36.144893 -86.805471 +37243 0 0 40241 0 0.016 0.000 36.165011 -86.782141 +37246 0 0 61645 0 0.024 0.000 36.159857 -86.791447 +37301 1429 661 139802377 450430 53.978 0.174 35.415905 -85.793486 +37302 3730 1456 42484084 14059 16.403 0.005 35.008329 -85.019818 +37303 25461 11380 386402625 30417 149.191 0.012 35.442462 -84.640077 +37305 889 448 51452120 0 19.866 0.000 35.465190 -85.694230 +37306 2760 1181 307772584 175780 118.832 0.068 35.096574 -86.191804 +37307 4870 2174 133968094 2468863 51.725 0.953 35.174229 -84.621319 +37308 2772 1219 94939374 16092659 36.656 6.213 35.342635 -84.993756 +37309 2138 918 98350716 4872877 37.973 1.881 35.301912 -84.741487 +37310 4135 1720 109247453 4693513 42.181 1.812 35.224608 -84.717221 +37311 27373 11814 139644966 38388 53.917 0.015 35.113133 -84.928186 +37312 30962 13128 154926560 30409 59.817 0.012 35.232461 -84.879821 +37313 1731 767 87882473 807597 33.932 0.312 35.357709 -85.712800 +37315 1556 47 297334 0 0.115 0.000 35.048259 -85.051555 +37317 2403 1335 195191640 3902561 75.364 1.507 35.031001 -84.443056 +37318 1978 958 30981469 0 11.962 0.000 35.177916 -85.992780 +37321 19113 8017 292528608 15409074 112.946 5.949 35.502103 -85.008024 +37322 8239 3692 343416523 17032105 132.594 6.576 35.503397 -84.823888 +37323 30439 12188 309417070 285561 119.467 0.110 35.096183 -84.816533 +37324 5322 2395 186583917 470746 72.040 0.182 35.239373 -85.991204 +37325 1845 811 71831402 808369 27.734 0.312 35.251359 -84.591718 +37326 467 208 5027627 0 1.941 0.000 35.040004 -84.384985 +37327 11174 5016 523675413 429227 202.192 0.166 35.423470 -85.414770 +37328 1364 611 77763108 38415 30.025 0.015 35.036942 -86.357374 +37329 5588 2520 149994244 0 57.913 0.000 35.394355 -84.461040 +37330 6784 3280 93259604 15829731 36.008 6.112 35.279542 -86.130578 +37331 7656 3702 107610587 55079 41.549 0.021 35.319312 -84.529833 +37332 2609 1098 168745794 571967 65.153 0.221 35.598701 -84.971947 +37333 534 233 29692808 0 11.464 0.000 35.153754 -84.335338 +37334 21700 9932 659113138 423409 254.485 0.163 35.166452 -86.580895 +37335 2778 1197 121128657 75733 46.768 0.029 35.068898 -86.403992 +37336 4202 1803 112430002 6981022 43.409 2.695 35.308865 -84.931502 +37337 1470 740 162962143 145157 62.920 0.056 35.787056 -84.850664 +37338 3093 1406 195065114 199083 75.315 0.077 35.427296 -85.216944 +37339 2018 850 90883341 0 35.090 0.000 35.379959 -85.634230 +37340 607 324 32178895 3548847 12.424 1.370 35.034063 -85.517519 +37341 12085 4928 81267873 27075377 31.378 10.454 35.224361 -85.077961 +37342 3593 1489 199732971 151483 77.117 0.058 35.391968 -85.948000 +37343 40042 17235 108901231 10475166 42.047 4.044 35.166669 -85.212280 +37345 2311 1016 148741109 307 57.429 0.000 35.016754 -86.203018 +37347 7559 3443 125834372 14306427 48.585 5.524 35.061348 -85.620035 +37348 1131 575 93234385 318007 35.998 0.123 35.131615 -86.434051 +37350 1866 827 3755576 0 1.450 0.000 34.993921 -85.350184 +37351 390 205 1185510 204905 0.458 0.079 35.100285 -85.260363 +37352 3268 1544 128409667 2309040 49.579 0.892 35.277520 -86.353027 +37353 4513 1855 95303675 13440 36.797 0.005 35.115010 -84.989096 +37354 16483 7385 298721342 1585846 115.337 0.612 35.506450 -84.348168 +37355 25596 10893 562908489 7606489 217.340 2.937 35.499769 -86.083930 +37356 2486 1455 62577226 116747 24.161 0.045 35.229586 -85.823416 +37357 5512 2357 363908997 77359 140.506 0.030 35.585288 -85.917340 +37359 783 405 93640108 0 36.155 0.000 35.204200 -86.412877 +37360 1732 759 72294909 3986298 27.913 1.539 35.437596 -86.254339 +37361 1478 693 47601858 2914271 18.379 1.125 35.101249 -84.686634 +37362 3395 1464 196750275 44064 75.966 0.017 35.031384 -84.680799 +37363 32244 12872 190365335 1730221 73.500 0.668 35.115688 -85.063804 +37365 1314 567 117309374 14265 45.293 0.006 35.382530 -85.559742 +37366 828 399 115974240 115285 44.778 0.045 35.338865 -85.829999 +37367 10247 4443 801385146 1054973 309.417 0.407 35.624983 -85.236220 +37369 956 571 286550334 3995872 110.638 1.543 35.190622 -84.479694 +37370 4652 1924 163487143 496985 63.123 0.192 35.356695 -84.699155 +37373 3074 1377 107270005 6419874 41.417 2.479 35.407459 -85.092816 +37374 2047 903 209089730 34929 80.730 0.013 35.168410 -85.646585 +37375 3711 1305 170023877 693044 65.647 0.268 35.150642 -85.890914 +37376 418 221 216836338 0 83.721 0.000 35.047765 -85.955824 +37377 15310 6352 193251973 168919 74.615 0.065 35.204919 -85.334972 +37379 26835 11330 273632083 18772610 105.650 7.248 35.295181 -85.177144 +37380 6289 2858 339111033 7423974 130.932 2.866 35.070937 -85.754605 +37381 8855 4779 360489702 38482384 139.186 14.858 35.687180 -84.876993 +37385 8131 4195 636701320 842622 245.832 0.325 35.333158 -84.236984 +37387 3323 1514 95033167 128210 36.693 0.050 35.273286 -85.746581 +37388 24494 11097 239887305 10624720 92.621 4.102 35.343672 -86.221295 +37391 1598 818 66503835 930138 25.677 0.359 35.093243 -84.354023 +37394 105 46 299437 0 0.116 0.000 35.539396 -85.860045 +37396 257 120 10109609 0 3.903 0.000 35.005799 -85.499729 +37397 10127 4507 422526329 5999876 163.138 2.317 35.222225 -85.516317 +37398 14347 6934 272073596 30349392 105.048 11.718 35.181209 -86.138387 +37402 3917 2349 3959072 928887 1.529 0.359 35.043722 -85.317871 +37403 5811 1673 4434309 377040 1.712 0.146 35.048015 -85.294267 +37404 13327 5988 12763286 0 4.928 0.000 35.027911 -85.273662 +37405 14597 7932 143954741 3888966 55.581 1.502 35.120403 -85.407828 +37406 14627 6842 31786261 1586600 12.273 0.613 35.073134 -85.245571 +37407 8932 3794 9063152 100313 3.499 0.039 35.001943 -85.289724 +37408 1486 807 4962306 0 1.916 0.000 35.028633 -85.308549 +37409 2851 1435 11331787 28010 4.375 0.011 35.013749 -85.335346 +37410 3886 1801 7633919 30874 2.947 0.012 35.001899 -85.314220 +37411 17587 8490 22457143 0 8.671 0.000 35.028764 -85.226165 +37412 20951 10366 22626820 0 8.736 0.000 34.997526 -85.227430 +37415 23873 12490 47100132 2054811 18.185 0.793 35.124725 -85.281199 +37416 14486 6679 29434616 7835578 11.365 3.025 35.101399 -85.176780 +37419 6100 2975 115662419 7842079 44.658 3.028 35.039786 -85.404129 +37421 46228 20747 78694056 13409 30.384 0.005 35.031635 -85.147624 +37601 36182 17829 119579876 2490714 46.170 0.962 36.330485 -82.317625 +37604 34245 17350 87483857 0 33.778 0.000 36.299581 -82.383190 +37614 2107 0 813559 0 0.314 0.000 36.301393 -82.371210 +37615 19560 9155 94212723 3447394 36.376 1.331 36.402412 -82.457201 +37616 4874 2275 116104782 135990 44.828 0.053 36.228473 -82.746798 +37617 14251 6130 152514405 1925998 58.886 0.744 36.524578 -82.365576 +37618 12747 5889 178562093 1954118 68.943 0.754 36.460339 -82.208744 +37620 39102 18469 329897557 24726432 127.374 9.547 36.549600 -82.094050 +37640 3743 2455 273617715 19770031 105.644 7.633 36.326824 -81.974686 +37641 8567 3890 236779267 136102 91.421 0.053 36.196373 -82.667344 +37642 14947 6965 151168536 2761886 58.367 1.066 36.530987 -82.726800 +37643 33689 15739 333092128 1370233 128.608 0.529 36.377345 -82.137118 +37645 5145 2236 15527534 0 5.995 0.000 36.562152 -82.662199 +37650 12750 6056 256531646 1335458 99.047 0.516 36.095024 -82.450622 +37656 3677 1741 79970376 0 30.877 0.000 36.398802 -82.629857 +37657 972 606 95966587 0 37.053 0.000 36.017623 -82.560126 +37658 4386 2272 145902040 5896088 56.333 2.276 36.249709 -82.118135 +37659 27585 11938 333558119 1058203 128.788 0.409 36.280141 -82.491220 +37660 40038 19753 171512919 2282649 66.222 0.881 36.526731 -82.571652 +37663 14617 6399 69085788 3199124 26.674 1.235 36.461493 -82.488779 +37664 26880 12570 84533318 957238 32.638 0.370 36.520428 -82.498988 +37665 5589 2755 8049106 0 3.108 0.000 36.578779 -82.570554 +37680 766 406 69362889 0 26.781 0.000 36.579284 -81.725430 +37681 6121 2756 173918268 865219 67.150 0.334 36.261677 -82.617741 +37682 667 69 448062 0 0.173 0.000 36.300986 -82.290892 +37683 13021 5833 351997271 0 135.907 0.000 36.454744 -81.822037 +37686 7072 3414 76467241 8061258 29.524 3.112 36.440209 -82.348811 +37687 5038 2674 218396275 272770 84.323 0.105 36.179017 -82.092629 +37688 1018 595 140237312 0 54.146 0.000 36.545442 -81.882882 +37690 4122 1786 59863792 205661 23.114 0.079 36.250120 -82.557584 +37691 894 520 40430976 0 15.610 0.000 36.371668 -81.756695 +37692 4770 2262 136376678 0 52.655 0.000 36.189822 -82.300829 +37694 1955 922 33701041 300023 13.012 0.116 36.387795 -82.276728 +37701 6817 3297 27309005 28530 10.544 0.011 35.792740 -83.986067 +37705 4559 2109 112707055 11464195 43.516 4.426 36.228674 -84.008690 +37708 6563 3303 109430600 27928074 42.251 10.783 36.330524 -83.316303 +37709 3732 1625 113496637 1485320 43.821 0.573 36.162997 -83.664552 +37710 1141 561 211712025 0 81.742 0.000 36.158632 -84.316134 +37711 5044 2315 142108555 21434 54.868 0.008 36.281330 -83.045425 +37713 1488 753 84425591 1089726 32.597 0.421 36.081454 -83.134295 +37714 4547 2196 204836872 2537989 79.088 0.980 36.261516 -84.304426 +37715 1000 431 69360846 0 26.780 0.000 36.554227 -83.960522 +37716 25749 11459 218219065 6143180 84.255 2.372 36.097124 -84.175183 +37719 168 77 1722867 0 0.665 0.000 36.022415 -84.429381 +37721 12733 5407 127633905 30099 49.280 0.012 36.118420 -83.812584 +37722 6060 3464 236910878 22036 91.472 0.009 35.814833 -83.202696 +37723 944 535 142069915 48210 54.854 0.019 35.965822 -84.817612 +37724 2874 1337 58863445 39921 22.727 0.015 36.550819 -83.706353 +37725 16919 8440 245431526 50151857 94.762 19.364 35.996106 -83.399349 +37726 2037 1027 252978089 98121 97.675 0.038 36.204182 -84.830473 +37727 2043 1192 291703868 2276606 112.627 0.879 35.886936 -83.021497 +37729 1456 656 129450045 0 49.981 0.000 36.516651 -84.034443 +37730 59 22 637387 0 0.246 0.000 36.547384 -83.975516 +37731 711 518 124408476 1243878 48.034 0.480 36.548667 -83.009063 +37732 139 71 1813622 0 0.700 0.000 36.327038 -84.606365 +37733 64 56 11539491 0 4.455 0.000 36.354076 -84.711232 +37737 5785 2482 68230112 3404665 26.344 1.315 35.760359 -84.120064 +37738 5288 8352 543910809 0 210.005 0.000 35.670251 -83.474881 +37742 5837 2482 128800879 7586165 49.730 2.929 35.675845 -84.179247 +37743 25588 11932 571006913 3701506 220.467 1.429 36.068913 -82.856325 +37745 18401 8696 301656148 116567 116.470 0.045 36.278033 -82.820602 +37748 17857 8452 264796619 14662500 102.239 5.661 35.945607 -84.516324 +37752 6516 2692 133555258 14151 51.566 0.005 36.553211 -83.545062 +37753 814 432 77864160 0 30.064 0.000 35.823088 -83.100349 +37754 4729 1998 98065200 145391 37.863 0.056 36.139185 -84.029761 +37755 3688 1592 114748788 110603 44.305 0.043 36.402394 -84.526705 +37756 2810 1226 255481555 0 98.642 0.000 36.304565 -84.419801 +37757 9337 4205 72942123 8907166 28.163 3.439 36.299009 -84.137299 +37760 12931 5397 103550673 7381722 39.981 2.850 36.111060 -83.458190 +37762 3126 1478 35444179 205034 13.685 0.079 36.577304 -84.126170 +37763 15794 7428 235887625 29532718 91.077 11.403 35.820230 -84.492265 +37764 9258 4019 89802967 1365645 34.673 0.527 35.970355 -83.616165 +37765 546 308 49930738 572065 19.278 0.221 36.572343 -83.058618 +37766 18850 9678 396759613 27706821 153.190 10.698 36.399701 -84.080824 +37769 5990 2703 74686782 2703282 28.837 1.044 36.218671 -84.153543 +37770 2646 1260 308202280 0 118.998 0.000 36.153311 -84.663293 +37771 15380 6589 125729428 3314964 48.544 1.280 35.840669 -84.321530 +37772 11146 4827 101188331 15077307 39.069 5.821 35.791140 -84.218553 +37774 18321 8702 226415456 18541829 87.420 7.159 35.729133 -84.358969 +37777 11274 5535 85707355 10320028 33.092 3.985 35.826849 -84.054192 +37779 3978 1665 98982584 0 38.217 0.000 36.215119 -83.756089 +37801 25124 11064 180384731 6156957 69.647 2.377 35.663920 -84.094594 +37803 31668 13536 252612231 533849 97.534 0.206 35.660842 -83.981389 +37804 24682 10183 90142169 0 34.804 0.000 35.792057 -83.893153 +37806 2868 1311 40402211 1312518 15.599 0.507 36.084693 -83.727986 +37807 9923 4534 205327925 18098181 79.278 6.988 36.259656 -83.825990 +37809 2278 1069 85632054 355661 33.063 0.137 36.158391 -83.041113 +37810 1928 901 86752934 253260 33.495 0.098 36.184579 -83.115488 +37811 3215 1697 96831037 15449120 37.387 5.965 36.355516 -83.209759 +37813 17444 7608 151244922 914197 58.396 0.353 36.175136 -83.257023 +37814 33071 14232 115283595 23388167 44.511 9.030 36.233235 -83.337421 +37818 4998 2285 118372200 544713 45.704 0.210 36.188787 -82.971084 +37819 713 331 56658976 22869 21.876 0.009 36.568255 -84.205753 +37820 7495 3193 169012805 1651266 65.256 0.638 36.085171 -83.566057 +37821 22608 10587 325382009 18029264 125.631 6.961 35.975170 -83.195566 +37825 8399 4113 224556118 9558890 86.702 3.691 36.407104 -83.695807 +37826 4361 1935 142333792 0 54.955 0.000 35.558276 -84.589664 +37828 1430 718 8388714 0 3.239 0.000 36.197927 -84.069009 +37829 1804 779 144945556 526194 55.964 0.203 36.010201 -84.637685 +37830 29700 14676 219543568 12397869 84.766 4.787 35.966483 -84.290549 +37840 10021 4425 220771096 933 85.240 0.000 36.070393 -84.409158 +37841 9605 4364 448780274 1498411 173.275 0.579 36.516840 -84.569400 +37843 3725 1749 134532453 632884 51.943 0.244 36.010701 -83.048369 +37845 494 249 2645156 0 1.021 0.000 36.093370 -84.439501 +37846 5030 2090 191941061 17318 74.109 0.007 35.679244 -84.481811 +37847 2714 1169 342240965 0 132.140 0.000 36.434173 -84.278950 +37848 246 131 17513194 0 6.762 0.000 36.235745 -83.680106 +37849 25459 10450 102055868 305655 39.404 0.118 36.054313 -84.046042 +37851 36 15 867359 561 0.335 0.000 36.584059 -83.907579 +37852 2558 1197 210693742 775679 81.349 0.299 36.328779 -84.589959 +37853 3815 1673 40224858 758863 15.531 0.293 35.836719 -83.910713 +37854 13108 6244 355422977 22047901 137.230 8.513 35.883735 -84.719008 +37857 21309 10074 613493976 9094185 236.871 3.511 36.424289 -82.941400 +37860 4113 1704 65960128 5261659 25.467 2.032 36.251184 -83.185313 +37861 8340 4101 258862782 21317270 99.947 8.231 36.240743 -83.513713 +37862 20934 13184 217585721 0 84.010 0.000 35.778007 -83.612571 +37863 6569 5632 47571014 0 18.367 0.000 35.785959 -83.562198 +37865 20912 8669 182976694 226662 70.648 0.088 35.850344 -83.734626 +37866 1699 999 136572183 28583233 52.731 11.036 36.342069 -83.856613 +37869 5031 2535 350030648 820828 135.148 0.317 36.514752 -83.244970 +37870 4580 2423 216011838 8977393 83.403 3.466 36.462895 -83.833801 +37871 9134 3886 102967954 2145758 39.756 0.828 36.052084 -83.681021 +37872 2041 974 247547689 0 95.579 0.000 36.269532 -84.649496 +37873 4073 1990 159617055 1885366 61.628 0.728 36.526270 -82.843047 +37874 14979 6621 263287834 228208 101.656 0.088 35.598330 -84.456484 +37876 29246 16983 486561468 42566502 187.862 16.435 35.865019 -83.481101 +37877 8464 3614 66791954 6041594 25.789 2.333 36.151167 -83.406942 +37878 514 490 97867455 3199660 37.787 1.235 35.620642 -83.894011 +37879 10634 5031 451523225 8329563 174.334 3.216 36.476371 -83.490313 +37880 3477 2069 183912284 37499177 71.009 14.479 35.685695 -84.677934 +37881 2291 1143 184662106 2559072 71.298 0.988 36.406476 -83.342508 +37882 2724 2456 413932270 280621 159.820 0.108 35.601218 -83.813078 +37885 5067 2656 435663277 38518124 168.211 14.872 35.476426 -84.132339 +37886 4418 2053 113625372 0 43.871 0.000 35.745588 -83.804718 +37887 7511 2237 238196105 11094 91.968 0.004 36.094965 -84.583165 +37888 2741 1248 141285731 3505622 54.551 1.354 36.310172 -83.608265 +37890 6668 3024 87965537 15233765 33.964 5.882 36.085282 -83.298857 +37891 3626 1611 83291047 2828321 32.159 1.092 36.292070 -83.138103 +37892 2007 897 195363194 29566 75.430 0.011 36.555696 -84.357644 +37902 1586 1136 1209202 61952 0.467 0.024 35.963643 -83.920610 +37909 15168 7754 18118897 0 6.996 0.000 35.947566 -84.021410 +37912 20673 10610 28081432 0 10.842 0.000 36.007549 -83.984876 +37914 19663 9659 103170455 3377214 39.834 1.304 35.983165 -83.795797 +37915 5647 3002 4856416 223368 1.875 0.086 35.970813 -83.900432 +37916 12507 3066 3860159 308927 1.490 0.119 35.952723 -83.934197 +37917 24072 12807 25482056 0 9.839 0.000 36.001191 -83.913702 +37918 42835 19014 90821020 6663 35.066 0.003 36.056122 -83.916946 +37919 28194 14364 49069034 4495524 18.946 1.736 35.914748 -84.000169 +37920 39087 18814 187767790 8330234 72.498 3.216 35.908753 -83.869153 +37921 28233 12639 39620719 18069 15.298 0.007 35.979767 -84.002156 +37922 33180 12792 70454744 19228133 27.203 7.424 35.860496 -84.100535 +37923 27457 13576 29050914 37152 11.217 0.014 35.926395 -84.079528 +37924 11259 5118 71514195 546437 27.612 0.211 36.027895 -83.803298 +37931 26109 10972 74286243 1451442 28.682 0.560 35.976399 -84.125445 +37932 14527 6197 74542633 4375137 28.781 1.689 35.917328 -84.198756 +37934 24107 9410 45291928 724369 17.487 0.280 35.856771 -84.176643 +37938 17085 6906 83750915 0 32.336 0.000 36.123933 -83.938618 +38001 4719 2074 175603894 30454 67.801 0.012 35.816288 -89.160049 +38002 38927 13689 301517069 1253257 116.416 0.484 35.286366 -89.700255 +38004 9866 3384 68364435 88081 26.396 0.034 35.411728 -89.760040 +38006 5207 2238 261530769 258677 100.978 0.100 35.693693 -89.089516 +38007 91 50 5152203 0 1.989 0.000 36.159414 -89.426956 +38008 9721 4232 383963841 978896 148.249 0.378 35.246459 -88.997180 +38011 9908 3653 152618381 135024 58.926 0.052 35.462176 -89.711687 +38012 14575 6328 699423906 1801495 270.049 0.696 35.610611 -89.273232 +38015 2828 1166 112402597 3307667 43.399 1.277 35.556935 -89.823415 +38016 43079 18976 49483518 113362 19.106 0.044 35.181507 -89.760052 +38017 48642 17736 219494821 1691946 84.747 0.653 35.066971 -89.648939 +38018 35059 14539 47811313 169846 18.460 0.066 35.138510 -89.760016 +38019 15601 6443 357382922 370790 137.986 0.143 35.562373 -89.628878 +38021 59 26 1363883 0 0.527 0.000 35.875848 -89.164750 +38023 6146 2375 170820862 23161845 65.954 8.943 35.468284 -89.942438 +38024 27406 12003 366365149 3082388 141.454 1.190 36.035542 -89.380814 +38028 6883 2649 149775749 531797 57.829 0.205 35.183099 -89.632200 +38029 80 35 135610 0 0.052 0.000 35.238741 -89.821895 +38030 977 441 334589228 30546090 129.186 11.794 36.018136 -89.583626 +38034 2998 1322 260520827 103075 100.588 0.040 35.911414 -89.236962 +38036 478 197 1635483 0 0.631 0.000 35.320220 -89.625825 +38037 1773 797 128437001 2225 49.590 0.001 35.797359 -89.398895 +38039 1804 761 169688500 700134 65.517 0.270 35.063548 -89.150570 +38040 5193 2371 281923731 553142 108.851 0.214 35.892390 -89.444872 +38041 5085 1343 260346927 11914013 100.521 4.600 35.659774 -89.704347 +38042 796 375 127947151 73292 49.401 0.028 35.145160 -89.137403 +38044 865 442 107843461 87698 41.639 0.034 35.199329 -88.809547 +38046 108 51 10590386 0 4.089 0.000 35.069904 -89.247931 +38047 91 36 2495291 0 0.963 0.000 36.090531 -89.503400 +38049 4984 1818 289012188 185366 111.588 0.072 35.390333 -89.538210 +38050 459 231 5105096 0 1.971 0.000 35.829629 -89.233070 +38052 3907 1814 325208571 2609305 125.564 1.007 35.090254 -88.917801 +38053 27932 11262 456755512 29522628 176.354 11.399 35.346216 -89.951532 +38054 284 20 932363 0 0.360 0.000 35.336356 -89.873398 +38057 3649 1478 271522017 147911 104.835 0.057 35.052974 -89.368397 +38058 10236 3887 68375057 152423 26.400 0.059 35.461347 -89.819262 +38059 7663 3212 332293528 275879 128.299 0.107 36.105685 -89.248757 +38060 9496 3734 114222334 218072 44.101 0.084 35.209347 -89.505468 +38061 977 506 164787361 999390 63.625 0.386 35.067042 -88.766924 +38063 17403 7502 790218981 79768764 305.105 30.799 35.764057 -89.640503 +38066 2630 1098 158703375 324455 61.276 0.125 35.069561 -89.513696 +38067 1476 794 167144410 1142066 64.535 0.441 35.081609 -89.041788 +38068 10941 4529 700313891 979164 270.393 0.378 35.261613 -89.343048 +38069 2376 1184 340569282 328019 131.495 0.127 35.478460 -89.329085 +38070 175 88 2704699 0 1.044 0.000 35.943560 -89.237010 +38075 6936 1529 345782216 924878 133.507 0.357 35.381986 -89.135495 +38076 847 357 61764370 89451 23.847 0.035 35.138706 -89.442078 +38077 43 25 82633 0 0.032 0.000 36.328075 -89.474394 +38079 5577 1616 274199918 71420957 105.869 27.576 36.427748 -89.462502 +38080 2568 1139 364785821 28460091 140.845 10.989 36.207086 -89.519208 +38103 12180 7281 6778611 3756958 2.617 1.451 35.153090 -90.054995 +38104 23409 14538 13204400 0 5.098 0.000 35.132549 -90.003728 +38105 6184 3546 4402770 20044 1.700 0.008 35.151235 -90.034758 +38106 27222 12782 67152076 4241315 25.928 1.638 35.104113 -90.090113 +38107 17698 8793 13994958 202139 5.403 0.078 35.170165 -90.023442 +38108 18729 8463 18140270 1514251 7.004 0.585 35.176666 -89.967917 +38109 46594 18891 174338927 7223119 67.313 2.789 35.040014 -90.163407 +38111 41742 19832 25628563 26392 9.895 0.010 35.110521 -89.943501 +38112 17472 8275 11646791 37057 4.497 0.014 35.147662 -89.976392 +38114 26905 13320 19536938 0 7.543 0.000 35.096479 -89.985848 +38115 39129 18726 22219159 21753 8.579 0.008 35.053329 -89.862806 +38116 40404 18663 49238392 123528 19.011 0.048 35.033181 -90.011396 +38117 26125 12403 24203282 0 9.345 0.000 35.115181 -89.905344 +38118 41465 16508 80825172 161974 31.207 0.063 35.032631 -89.932532 +38119 22330 10422 22890937 123214 8.838 0.048 35.079511 -89.845385 +38120 14237 6796 24972357 47851 9.642 0.018 35.123633 -89.852645 +38122 25270 11315 19532324 0 7.541 0.000 35.158933 -89.921214 +38125 36150 14249 49423989 0 19.083 0.000 35.025913 -89.788637 +38126 7334 3002 4712142 0 1.819 0.000 35.126982 -90.043671 +38127 45248 18290 97335965 2058437 37.582 0.795 35.238363 -90.019556 +38128 44863 18315 61207432 1094908 23.632 0.423 35.224574 -89.926689 +38131 0 0 480154 0 0.185 0.000 35.066359 -89.992094 +38132 7 2 1773754 0 0.685 0.000 35.073171 -89.994830 +38133 20787 7732 32787276 0 12.659 0.000 35.212901 -89.794289 +38134 41948 16045 48194361 29443 18.608 0.011 35.174969 -89.859874 +38135 30657 11384 33123417 141686 12.789 0.055 35.238925 -89.848559 +38138 24045 10447 30718918 0 11.861 0.000 35.084826 -89.799327 +38139 16086 5648 22979393 178235 8.872 0.069 35.079657 -89.755097 +38141 22462 7982 20210164 13318 7.803 0.005 35.016729 -89.858616 +38152 834 0 139080 0 0.054 0.000 35.123648 -89.931390 +38201 10093 4475 366955431 616552 141.682 0.238 36.123772 -88.530234 +38220 1849 880 101132209 143042 39.047 0.055 35.993575 -88.670909 +38221 3308 2043 280883747 44921016 108.450 17.344 36.244754 -88.035010 +38222 2629 1620 182625741 18587008 70.512 7.176 36.445536 -88.157903 +38224 956 404 145146650 449390 56.041 0.174 36.387017 -88.492197 +38225 6283 2838 285765200 1253284 110.335 0.484 36.325102 -88.674295 +38226 345 170 60941272 19530 23.530 0.008 36.483883 -88.686637 +38229 2931 1332 155577448 102542 60.069 0.040 36.223130 -88.606426 +38230 3736 1706 222573167 300992 85.936 0.116 36.155230 -88.775865 +38231 1664 758 136848397 213358 52.837 0.082 36.213058 -88.426138 +38232 1998 1062 132377988 5604925 51.111 2.164 36.353050 -89.332564 +38233 2852 1320 246524894 912383 95.184 0.352 36.203444 -89.049080 +38235 441 220 19557376 0 7.551 0.000 35.989375 -88.563889 +38236 662 297 94591405 0 36.522 0.000 36.171920 -88.272476 +38237 16627 7022 337568139 645537 130.336 0.249 36.357922 -88.837864 +38240 2259 1039 225100456 479961 86.912 0.185 36.245091 -89.318119 +38241 898 463 170539289 43276 65.846 0.017 36.427772 -88.591844 +38242 20151 9420 477839646 2604583 184.495 1.006 36.306561 -88.330803 +38251 2751 1306 231194544 174273 89.265 0.067 36.458930 -88.355755 +38253 1156 484 138115678 2459048 53.327 0.949 36.293824 -89.040359 +38254 85 37 1752803 0 0.677 0.000 36.374904 -89.347404 +38255 2299 1080 121772954 390330 47.017 0.151 36.238355 -88.859211 +38256 3089 3071 151955548 59786478 58.670 23.084 36.308647 -88.131436 +38257 4397 2118 141525608 128504 54.643 0.050 36.456475 -88.877060 +38258 1500 725 70639697 56699 27.274 0.022 36.032792 -88.619287 +38259 860 405 72297067 376294 27.914 0.145 36.199152 -89.183658 +38260 3804 1613 170244691 340938 65.732 0.132 36.360777 -89.200363 +38261 16919 7731 482503271 17818660 186.296 6.880 36.428860 -89.113506 +38301 36613 15910 427383355 617741 165.014 0.239 35.588164 -88.853395 +38305 49808 20851 335070350 2518509 129.371 0.972 35.701654 -88.768058 +38310 6145 2763 295389288 1367126 114.050 0.528 35.261735 -88.408628 +38311 786 493 151351876 7783775 58.437 3.005 35.437098 -88.104204 +38313 3204 1374 188302150 85514 72.704 0.033 35.604517 -88.621051 +38315 3876 1750 288810500 133137 111.510 0.051 35.264860 -88.627620 +38316 2917 1305 165201516 277559 63.785 0.107 36.069862 -88.816891 +38317 2537 1201 93501470 100478 36.101 0.039 36.057937 -88.263813 +38318 476 249 107107474 100835 41.354 0.039 35.950509 -88.258084 +38320 10686 5358 382254728 13831823 147.589 5.340 36.051656 -88.112600 +38321 2431 1167 247090682 753747 95.402 0.291 35.845504 -88.532266 +38326 2560 2364 137874212 16366338 53.234 6.319 35.054654 -88.286151 +38327 477 294 7963849 1638024 3.075 0.632 35.224410 -88.308574 +38328 730 343 64696108 1654258 24.979 0.639 35.680535 -88.215686 +38329 3220 2099 280523388 7074926 108.311 2.732 35.536869 -88.107281 +38330 4404 1900 180374607 28660 69.643 0.011 36.070503 -89.034414 +38332 1120 547 139319415 0 53.792 0.000 35.419091 -88.426456 +38333 523 405 63973979 28580518 24.700 11.035 36.128133 -87.954454 +38334 1911 867 122522966 78185 47.306 0.030 35.361066 -88.571549 +38337 1366 618 70046590 0 27.045 0.000 35.785275 -89.014025 +38339 637 303 47859875 0 18.479 0.000 35.052271 -88.515021 +38340 12935 5117 460546810 399698 177.818 0.154 35.401322 -88.683250 +38341 2252 1308 355959785 18395219 137.437 7.102 35.877577 -88.083895 +38342 1438 704 89229151 45979 34.452 0.018 36.071740 -88.288871 +38343 15619 7037 358830109 562788 138.545 0.217 35.827534 -88.926056 +38344 8684 3996 418470291 295981 161.572 0.114 35.978164 -88.424138 +38345 2089 926 129504749 26227 50.002 0.010 35.598180 -88.505481 +38347 270 123 10504317 0 4.056 0.000 35.477766 -88.498600 +38348 1037 460 131840633 60129 50.904 0.023 35.872744 -88.650963 +38351 17603 8110 545675852 12947607 210.687 4.999 35.670883 -88.399499 +38352 494 216 49452437 60522 19.094 0.023 35.529455 -88.533846 +38355 5882 2263 97171449 102281 37.518 0.039 35.784009 -88.775061 +38356 2193 982 186818043 527869 72.131 0.204 35.438418 -88.893810 +38357 2757 1294 159500581 21874 61.584 0.008 35.044826 -88.415338 +38358 12121 5378 213900148 1242731 82.587 0.480 35.916675 -88.758664 +38359 278 151 15121612 0 5.838 0.000 35.369853 -88.351362 +38361 994 522 105127768 2854454 40.590 1.102 35.311866 -88.297188 +38362 1145 452 21582826 0 8.333 0.000 35.729072 -88.782978 +38363 6097 3123 236807086 9904194 91.432 3.824 35.687479 -88.112201 +38365 16 4 949208 222927 0.366 0.086 35.054250 -88.232127 +38366 2267 965 119400014 274606 46.101 0.106 35.479000 -88.741273 +38367 2843 1282 202227319 136981 78.080 0.053 35.052128 -88.626992 +38368 1985 898 139739331 35740 53.954 0.014 35.510913 -88.348130 +38369 1887 877 100398328 49836 38.764 0.019 36.131922 -88.942666 +38370 670 533 50506476 720817 19.501 0.278 35.383433 -88.245131 +38371 1235 648 110554255 10352 42.685 0.004 35.424293 -88.295085 +38372 17595 8459 824039994 24898617 318.164 9.613 35.165581 -88.149011 +38374 2052 964 114036562 0 44.030 0.000 35.505610 -88.230904 +38375 9251 4212 296593444 382337 114.515 0.148 35.157895 -88.591666 +38376 233 119 10679828 18683 4.124 0.007 35.099209 -88.368705 +38379 1171 548 76040268 0 29.359 0.000 35.164244 -88.433753 +38380 574 626 105871535 7106453 40.877 2.744 35.789889 -88.032881 +38381 1640 738 143228596 78187 55.301 0.030 35.357200 -88.971358 +38382 9515 4305 449984151 435055 173.740 0.168 35.968463 -88.984393 +38387 375 183 90392855 353070 34.901 0.136 35.872920 -88.277462 +38388 1840 872 194325086 214867 75.029 0.083 35.781620 -88.319887 +38390 907 415 69764011 0 26.936 0.000 35.840552 -88.372290 +38391 1174 515 159441954 51889 61.561 0.020 35.546571 -88.992177 +38392 776 371 87679708 158622 33.853 0.061 35.462653 -89.035510 +38401 54469 23943 778875345 5608203 300.725 2.165 35.629164 -87.021526 +38425 3724 1156 275495784 7876536 106.370 3.041 35.412209 -87.943013 +38449 2811 1331 147752036 157226 57.047 0.061 35.040439 -86.818172 +38450 2778 1314 290390320 14725 112.120 0.006 35.183623 -87.792739 +38451 4814 1968 209634299 36512 80.940 0.014 35.460534 -86.992239 +38452 1091 506 137568460 0 53.115 0.000 35.080354 -87.796308 +38453 373 179 40479760 0 15.629 0.000 35.121360 -86.812108 +38454 1208 548 158367094 0 61.146 0.000 35.723195 -87.352102 +38455 227 127 1385477 0 0.535 0.000 35.043543 -86.885707 +38456 4559 1657 187902675 0 72.550 0.000 35.335477 -87.266379 +38457 808 372 70437925 0 27.196 0.000 35.029325 -87.284446 +38459 453 223 54443348 0 21.021 0.000 35.194281 -86.805450 +38460 1410 619 86398506 0 33.359 0.000 35.088664 -87.153186 +38461 1379 600 181336848 0 70.015 0.000 35.593001 -87.341971 +38462 10297 4597 513482286 613319 198.257 0.237 35.528232 -87.562921 +38463 2817 1226 293175865 233876 113.196 0.090 35.070595 -87.645115 +38464 22293 10036 723625302 1842807 279.393 0.712 35.290794 -87.433722 +38468 5201 2254 255168983 43321 98.521 0.017 35.135146 -87.291063 +38469 4092 1783 175363647 62909 67.708 0.024 35.074665 -87.428629 +38471 530 282 187114196 147081 72.245 0.057 35.083901 -87.932397 +38472 2656 1193 257355477 0 99.366 0.000 35.377610 -87.038523 +38473 1061 501 65719360 1995 25.374 0.001 35.021246 -87.171674 +38474 7802 3453 280982261 395869 108.488 0.153 35.517968 -87.226224 +38475 635 305 162711063 0 62.823 0.000 35.253477 -88.016092 +38476 1228 534 108032528 0 41.712 0.000 35.841188 -87.213760 +38477 2766 1304 243536209 193785 94.030 0.075 35.064923 -86.993081 +38478 17733 8369 676573651 287506 261.227 0.111 35.232899 -87.005885 +38481 896 458 30219597 0 11.668 0.000 35.031269 -87.492298 +38482 1535 669 111232421 11041 42.947 0.004 35.768837 -87.149926 +38483 5663 2296 252718790 527105 97.575 0.204 35.440767 -87.333653 +38485 6502 3115 701421830 39991 270.820 0.015 35.361977 -87.773021 +38486 967 466 185115543 0 71.474 0.000 35.170567 -87.545112 +38487 1057 453 126243619 93912 48.743 0.036 35.718427 -87.233402 +38488 2524 1089 152401850 134802 58.843 0.052 35.041960 -86.670916 +38501 36687 17203 230838825 461375 89.127 0.178 36.226045 -85.533285 +38504 901 474 123622537 0 47.731 0.000 36.395565 -84.724743 +38505 1806 0 344150 0 0.133 0.000 36.175064 -85.505075 +38506 26521 11306 420719287 389510 162.441 0.150 36.187107 -85.433312 +38541 1613 860 132124799 23777563 51.014 9.181 36.538018 -85.335604 +38542 22 22 8002521 0 3.090 0.000 36.317132 -85.202215 +38543 560 338 122670578 604232 47.363 0.233 36.346673 -85.150479 +38544 6543 3149 214740909 7637852 82.912 2.949 36.123588 -85.663143 +38545 1474 646 63929976 0 24.684 0.000 36.232094 -85.662826 +38547 1975 829 84893560 119487 32.778 0.046 36.155562 -86.006801 +38548 731 362 69682597 313053 26.905 0.121 36.164152 -85.790513 +38549 3679 2471 190586438 18379234 73.586 7.096 36.562131 -85.149087 +38551 4106 2284 240393192 35482635 92.816 13.700 36.558038 -85.487154 +38552 275 141 16397134 788206 6.331 0.304 36.217756 -85.813648 +38553 2312 1024 124106570 0 47.918 0.000 36.201869 -85.006317 +38554 827 474 83480287 0 32.232 0.000 36.249490 -85.161655 +38555 18809 8922 251253427 954111 97.009 0.368 35.887881 -84.989016 +38556 12540 6386 824667245 962233 318.406 0.372 36.406761 -84.918949 +38558 6970 4679 58187602 1987501 22.466 0.767 36.009882 -84.866567 +38559 1340 610 50718663 871290 19.583 0.336 35.808437 -85.508014 +38560 1425 648 88042071 10041114 33.993 3.877 36.226979 -85.867548 +38562 6554 3297 354081611 23516851 136.712 9.080 36.354002 -85.657669 +38563 2330 1029 82108924 129039 31.702 0.050 36.207154 -86.030414 +38564 453 324 73737231 4142733 28.470 1.600 36.275933 -85.735915 +38565 1098 466 27692154 0 10.692 0.000 36.262759 -85.009469 +38567 784 359 56428279 234878 21.787 0.091 36.132195 -85.925809 +38568 2034 1093 190566763 220119 73.578 0.085 36.438492 -85.473057 +38569 363 319 40518349 5369977 15.644 2.073 36.092342 -85.863126 +38570 9898 4536 276714588 234825 106.840 0.091 36.376276 -85.326452 +38571 13848 6153 585685486 2407167 226.134 0.929 36.051604 -85.012804 +38572 10649 5543 400646943 3609289 154.691 1.394 35.849059 -85.128960 +38573 2198 1164 169306431 12066344 65.370 4.659 36.493416 -85.223882 +38574 8413 3749 446935171 1763154 172.563 0.681 36.143643 -85.229289 +38575 1172 596 107130259 852507 41.363 0.329 36.555337 -85.636403 +38577 1153 634 195180387 18583 75.360 0.007 36.565976 -84.972395 +38578 177 97 1130462 26956 0.436 0.010 35.981795 -85.198328 +38579 1063 505 42357350 818988 16.354 0.316 35.835867 -85.548177 +38580 1743 743 90490368 0 34.939 0.000 36.290013 -85.299934 +38581 4112 1928 257397718 3260896 99.382 1.259 35.741040 -85.620827 +38582 1426 792 119567428 15214642 46.165 5.874 36.094825 -85.750823 +38583 23825 10734 927627767 10876425 358.159 4.199 35.944540 -85.442214 +38585 3717 1681 429453423 810025 165.813 0.313 35.615688 -85.488673 +38587 1301 649 78878859 3926263 30.455 1.516 35.864761 -85.613998 +38588 1011 607 238501258 1416047 92.086 0.547 36.446386 -85.730671 +38589 200 148 79509956 0 30.699 0.000 36.285583 -85.077112 +38601 2371 1070 248866371 23138415 96.088 8.934 34.492325 -89.443056 +38603 2894 1546 336853960 1979324 130.060 0.764 34.838608 -89.148618 +38606 16127 6737 684715103 19968304 264.370 7.710 34.303262 -89.952316 +38610 3542 1461 246812314 865936 95.295 0.334 34.651787 -89.025549 +38611 17202 6926 484419417 1515072 187.035 0.585 34.856225 -89.676010 +38614 20418 8179 642278263 1907782 247.985 0.737 34.156569 -90.603549 +38617 734 337 144911094 6478818 55.950 2.501 34.350729 -90.522226 +38618 12031 4805 494454309 14449695 190.910 5.579 34.719451 -89.936872 +38619 5004 2442 355944235 51517337 137.431 19.891 34.518142 -89.835541 +38620 3375 1311 146506120 4897813 56.566 1.891 34.230138 -89.902510 +38621 1910 786 165253620 223773 63.805 0.086 34.447192 -90.170459 +38622 705 312 3103853 0 1.198 0.000 34.171912 -90.138492 +38623 259 112 29314883 121482 11.319 0.047 34.367662 -90.282849 +38625 1058 476 94885677 174720 36.636 0.067 34.612136 -88.826435 +38626 1353 713 417304151 14468465 161.122 5.586 34.517362 -90.414527 +38627 1120 495 115570831 110155 44.622 0.043 34.417830 -89.207944 +38629 1774 755 130998092 737902 50.579 0.285 34.862808 -89.009788 +38630 132 55 7960643 0 3.074 0.000 34.278839 -90.685609 +38631 1306 520 11893696 45948 4.592 0.018 34.360868 -90.618306 +38632 24377 9533 439567113 30038210 169.718 11.598 34.795717 -90.015431 +38633 2590 1147 259318888 1468457 100.124 0.567 34.647337 -89.194971 +38635 15941 6162 881457130 2576793 340.333 0.995 34.766909 -89.486327 +38637 26066 9705 41645681 707110 16.079 0.273 34.952081 -90.049209 +38639 1257 445 17890335 0 6.907 0.000 34.303108 -90.432003 +38641 2338 862 189591946 20441281 73.202 7.892 34.914692 -90.188582 +38642 2321 959 215324134 521245 83.137 0.201 34.928904 -89.334667 +38643 2619 1112 431881438 3441901 166.750 1.329 34.148487 -90.260865 +38644 208 87 24121099 0 9.313 0.000 34.460809 -90.493530 +38645 1329 595 142899491 1934042 55.174 0.747 34.246494 -90.476523 +38646 3073 1373 275120336 474513 106.225 0.183 34.289637 -90.314386 +38647 1143 522 147352405 196540 56.893 0.076 34.961423 -89.216526 +38650 3881 1683 201986388 1033982 77.987 0.399 34.528102 -89.145451 +38651 7103 2736 85402676 590367 32.974 0.228 34.895098 -90.002154 +38652 16600 6951 402010412 1152833 155.217 0.445 34.483075 -88.996667 +38654 45956 17347 245776214 732587 94.895 0.283 34.933929 -89.816280 +38655 36699 19405 997426039 47851268 385.108 18.475 34.333213 -89.473310 +38658 2074 997 91831452 1436986 35.456 0.555 34.192669 -89.908188 +38659 2841 1209 293992816 1970309 113.511 0.761 34.621515 -89.331527 +38661 2039 815 82280079 70877 31.769 0.027 34.896991 -89.561056 +38663 11950 5207 512153955 2240257 197.744 0.865 34.734051 -88.882216 +38664 3279 1687 238591625 20507134 92.121 7.918 34.811462 -90.329253 +38665 2683 1050 165973944 413511 64.083 0.160 34.586548 -90.166135 +38666 6915 3050 352578201 24236118 136.131 9.358 34.427700 -89.917826 +38668 14462 5222 404157459 1097237 156.046 0.424 34.586066 -89.912171 +38670 1226 506 223888723 888572 86.444 0.343 34.416895 -90.288714 +38671 35712 14400 57463320 597111 22.187 0.231 34.966282 -89.998152 +38672 11249 3896 33787262 179900 13.045 0.069 34.911423 -89.927925 +38673 746 328 68154344 96934 26.315 0.037 34.293442 -89.635398 +38674 898 431 96007611 567117 37.069 0.219 34.868370 -88.892398 +38676 6375 2671 548291393 42878272 211.696 16.555 34.666450 -90.383731 +38677 4198 79 1923539 0 0.743 0.000 34.365411 -89.537180 +38680 6194 2361 56402152 436415 21.777 0.169 34.951674 -90.146147 +38683 5637 2627 357888027 1301204 138.181 0.502 34.932631 -88.865292 +38685 1347 619 231534449 4301824 89.396 1.661 34.593013 -89.488458 +38701 24187 10484 213971296 19307859 82.615 7.455 33.310738 -91.044262 +38702 1 16 6294005 331989 2.430 0.128 33.535666 -91.180051 +38703 14568 5920 427309354 33060682 164.985 12.765 33.475662 -91.052834 +38704 41 16 2851625 0 1.101 0.000 33.007175 -91.021252 +38720 597 312 127680132 7069201 49.298 2.729 34.106548 -90.780951 +38721 1230 557 307613122 3142965 118.770 1.214 32.989634 -90.746359 +38722 531 240 82940963 924380 32.024 0.357 33.260304 -90.883939 +38723 33 21 1329452 0 0.513 0.000 33.229662 -91.038367 +38725 998 491 339756239 18002105 131.181 6.951 33.648757 -91.030947 +38726 532 231 149322052 10814846 57.654 4.176 33.755796 -90.988708 +38730 1718 691 127707803 965759 49.308 0.373 33.682859 -90.790778 +38731 129 77 15038787 12429187 5.807 4.799 33.066600 -91.046742 +38732 17981 7171 205864732 3388012 79.485 1.308 33.758855 -90.725595 +38736 440 181 160231927 1292589 61.866 0.499 33.642790 -90.537368 +38737 2932 1201 336522283 1558890 129.932 0.602 33.863521 -90.524172 +38738 3998 85 41335907 33782 15.960 0.013 33.945099 -90.533141 +38740 466 189 174335044 2307245 67.311 0.891 34.057678 -90.798760 +38744 682 299 156569198 2655243 60.452 1.025 33.014154 -91.037148 +38745 144 64 49515942 128566 19.118 0.050 32.972278 -90.992816 +38746 616 271 166055482 8895746 64.114 3.435 33.961973 -90.909267 +38748 3901 1642 701964100 30807676 271.030 11.895 33.151196 -90.902048 +38749 26 12 763451 0 0.295 0.000 33.447423 -90.752367 +38751 11638 4379 395587606 5237528 152.737 2.022 33.447392 -90.680525 +38753 1456 616 209377492 3589765 80.841 1.386 33.347339 -90.576284 +38754 1532 681 228754993 5682741 88.323 2.194 33.249452 -90.623293 +38756 6462 2819 448488064 3968697 173.162 1.532 33.389797 -90.860225 +38759 1194 530 158962774 668358 61.376 0.258 33.825158 -90.730327 +38760 929 368 14908942 0 5.756 0.000 33.458034 -90.989273 +38761 2870 878 131957057 6148755 50.949 2.374 33.430153 -90.484464 +38762 2294 980 175397145 621360 67.721 0.240 33.895940 -90.716631 +38764 430 174 16259528 416878 6.278 0.161 33.780114 -90.866202 +38765 201 79 44127595 0 17.038 0.000 33.069113 -90.874611 +38767 77 36 5671941 0 2.190 0.000 34.140502 -90.784721 +38768 182 79 24543480 35037 9.476 0.014 33.972174 -90.496091 +38769 2216 948 240750620 21154986 92.954 8.168 33.864775 -90.985297 +38771 3260 1195 147169874 1212038 56.823 0.468 33.739965 -90.528989 +38772 182 73 37729434 275066 14.567 0.106 33.559244 -91.052351 +38773 3375 1448 382994993 743150 147.875 0.287 33.607259 -90.776876 +38774 2522 1012 192991272 575900 74.514 0.222 33.958993 -90.763309 +38778 1686 608 180058515 2864173 69.521 1.106 33.547117 -90.531332 +38781 252 130 2566963 0 0.991 0.000 33.908553 -90.756588 +38801 29871 12984 195751429 1060740 75.580 0.410 34.221257 -88.775002 +38804 17285 7936 209552511 1515156 80.909 0.585 34.281378 -88.672873 +38821 12528 5662 369402541 5094090 142.627 1.967 33.977521 -88.436749 +38824 7832 3449 353997438 402010 136.679 0.155 34.520784 -88.643025 +38826 4703 1987 80620141 1561088 31.128 0.603 34.301266 -88.841501 +38827 2733 1236 90612849 33777 34.986 0.013 34.516910 -88.177452 +38828 3970 1710 219623049 656428 84.797 0.253 34.429858 -88.869190 +38829 18707 8071 694283047 1602608 268.064 0.619 34.650371 -88.527423 +38833 2370 1132 135894844 2357739 52.469 0.910 34.918160 -88.319045 +38834 29133 13499 565835370 3070076 218.470 1.185 34.917111 -88.571777 +38838 1629 757 122334083 10935593 47.233 4.222 34.549134 -88.254065 +38841 2775 1143 81203399 147508 31.353 0.057 34.352586 -89.015267 +38843 11467 4877 511030222 13771987 197.310 5.317 34.262049 -88.376308 +38844 131 75 32914630 0 12.708 0.000 33.838614 -88.255262 +38846 2446 1048 97896298 119300 37.798 0.046 34.851359 -88.382931 +38847 3501 1573 233100879 137769 90.001 0.053 34.412540 -88.232960 +38848 848 386 194374740 175531 75.049 0.068 33.937645 -88.271066 +38849 5702 2278 183307981 976987 70.776 0.377 34.460965 -88.696060 +38850 3141 1334 318634854 3045147 123.026 1.176 34.058891 -89.057937 +38851 8408 3568 571828136 1719655 220.784 0.664 33.910500 -88.968194 +38852 9449 5493 518270418 32850282 200.105 12.684 34.843688 -88.213248 +38855 4602 2026 154835954 2504229 59.782 0.967 34.323306 -88.485375 +38856 1788 819 158576505 2338397 61.227 0.903 34.467115 -88.455149 +38857 3252 1278 49079907 144974 18.950 0.056 34.281098 -88.577902 +38858 7176 3051 328243327 1405529 126.735 0.543 34.100102 -88.548600 +38859 749 400 110731857 5892257 42.754 2.275 34.515364 -88.375211 +38860 5663 2501 338543710 1572631 130.712 0.607 33.971749 -88.761409 +38862 2731 1158 76673328 190097 29.604 0.073 34.168139 -88.623239 +38863 19788 8196 731646053 4535926 282.490 1.751 34.217915 -89.019053 +38864 1701 749 230674673 609182 89.064 0.235 34.157280 -89.207666 +38865 4698 2107 291853308 1113456 112.685 0.430 34.788031 -88.595406 +38866 11897 4944 194370151 4201701 75.047 1.622 34.367287 -88.680045 +38868 5481 2396 192481801 180709 74.318 0.070 34.123549 -88.762644 +38869 478 204 3494201 0 1.349 0.000 34.357456 -88.835132 +38870 3122 1378 167633261 4609168 64.724 1.780 34.067434 -88.336282 +38871 1640 691 139889739 1336040 54.012 0.516 34.381713 -89.247255 +38873 2719 1327 218253363 12145077 84.268 4.689 34.659698 -88.242903 +38876 1322 621 202037710 41036 78.007 0.016 34.213590 -88.230292 +38878 2864 1158 210123562 124008 81.129 0.048 33.904506 -89.187459 +38879 785 370 3063115 23123 1.183 0.009 34.186122 -88.717188 +38901 18403 8343 620295438 27999565 239.497 10.811 33.762528 -89.802915 +38913 396 193 80771903 456946 31.186 0.176 34.138881 -89.384872 +38914 552 260 122186453 697316 47.176 0.269 33.846213 -89.416592 +38915 4046 1926 284118115 513954 109.699 0.198 34.037640 -89.388855 +38916 5049 2412 467438994 1045842 180.479 0.404 33.816534 -89.352740 +38917 3258 1613 431664378 7969657 166.667 3.077 33.556911 -90.006530 +38920 804 374 146323763 821297 56.496 0.317 33.910061 -89.995338 +38921 5061 2133 364874388 6366423 140.879 2.458 33.982154 -90.144181 +38922 3451 1950 559130783 55056027 215.882 21.257 33.932586 -89.645604 +38923 1293 612 205525947 1910306 79.354 0.738 33.388567 -89.988589 +38924 771 368 268732615 4591034 103.758 1.773 33.291490 -90.224611 +38925 2363 1132 387019698 1278758 149.429 0.494 33.626030 -89.634279 +38927 1186 493 159413974 191786 61.550 0.074 34.137997 -90.032433 +38928 497 179 118394435 1455394 45.712 0.562 33.869644 -90.291749 +38929 1317 684 200360472 1346542 77.360 0.520 33.739460 -89.531313 +38930 25297 10483 519060708 10219646 200.410 3.946 33.538034 -90.154409 +38940 2141 998 385495499 3969156 148.841 1.532 33.757504 -90.029435 +38941 5282 1956 245863882 2596364 94.929 1.002 33.484573 -90.358231 +38943 526 258 69272457 1545021 26.746 0.597 33.539901 -89.845569 +38944 504 236 244921574 3962656 94.565 1.530 33.762133 -90.345818 +38945 35 15 45585659 517680 17.601 0.200 33.600948 -90.168029 +38946 362 151 79088747 3334556 30.536 1.287 33.364004 -90.378549 +38947 445 219 6071864 168972 2.344 0.065 33.530018 -89.907144 +38948 2288 1297 315277568 38551522 121.729 14.885 34.067718 -89.882155 +38949 297 135 42719783 40909 16.494 0.016 34.191573 -89.425419 +38950 334 185 97057749 1126895 37.474 0.435 33.733165 -90.201369 +38951 1316 587 152877494 230997 59.026 0.089 33.973783 -89.290490 +38952 611 274 285851350 1899826 110.368 0.734 33.628338 -90.346974 +38953 798 386 114299364 243079 44.131 0.094 33.930672 -89.933405 +38954 1514 630 175964140 9191469 67.940 3.549 33.416167 -90.212551 +38957 734 340 55068858 0 21.262 0.000 33.991776 -90.350322 +38958 38 37 30271478 592989 11.688 0.229 33.303673 -90.428149 +38961 803 386 145267290 758661 56.088 0.293 33.954527 -89.914974 +38962 149 64 40049296 1402793 15.463 0.542 33.871721 -90.185145 +38963 4015 631 270502418 1872697 104.442 0.723 34.026122 -90.389041 +38964 104 57 77450043 111540 29.904 0.043 34.099060 -90.398491 +38965 9135 4252 636098740 18471660 245.599 7.132 34.135544 -89.601750 +38966 1174 453 111239171 1619244 42.950 0.625 33.947038 -90.319159 +38967 7755 3376 482896238 2052555 186.447 0.792 33.457399 -89.732453 +39038 6258 2454 551129679 15211860 212.792 5.873 33.186060 -90.484577 +39039 2193 941 369926404 971253 142.829 0.375 32.816550 -90.217495 +39040 3295 1421 453680153 2613923 175.167 1.009 32.641738 -90.423181 +39041 3404 1428 333744406 2766793 128.859 1.068 32.404857 -90.468800 +39042 34198 13840 577823368 1530317 223.099 0.591 32.198148 -89.895597 +39044 3872 1638 363133294 776584 140.207 0.300 32.029303 -89.974668 +39045 1353 546 298333561 1935105 115.187 0.747 32.819535 -89.784552 +39046 26398 10013 800034393 13270350 308.895 5.124 32.632163 -89.983933 +39047 34539 14358 260474904 12532969 100.570 4.839 32.421114 -89.945500 +39051 16569 6855 1089074102 4929332 420.494 1.903 32.773554 -89.493725 +39054 341 122 10470544 0 4.043 0.000 32.774344 -90.939277 +39056 25621 10479 139081633 1005570 53.700 0.388 32.377538 -90.351758 +39057 2291 823 167421549 492287 64.642 0.190 32.490854 -89.284427 +39059 12073 4960 412343924 972642 159.207 0.376 31.982082 -90.355929 +39061 88 27 7504832 79926 2.898 0.031 33.085796 -90.817800 +39062 467 217 3831324 0 1.479 0.000 31.985097 -89.898310 +39063 3620 1642 251294054 598149 97.025 0.231 33.116674 -89.897489 +39066 4338 1861 377266318 4007424 145.663 1.547 32.298256 -90.605851 +39067 1434 783 271467327 99803 104.814 0.039 33.110083 -89.443782 +39069 5409 2285 456627416 206589 176.305 0.080 31.686160 -91.043249 +39071 5346 2028 306340859 5386298 118.279 2.080 32.554114 -90.318382 +39073 19685 7870 413435404 2313783 159.628 0.893 32.102431 -90.135817 +39074 14896 5935 704355658 1207426 271.953 0.466 32.393704 -89.478007 +39078 755 361 89384017 876924 34.511 0.339 31.878048 -90.188204 +39079 2037 706 172486242 991079 66.597 0.383 32.935327 -89.898550 +39082 1312 582 156009584 699662 60.236 0.270 31.941844 -90.120075 +39083 10626 4472 853860628 2429731 329.677 0.938 31.844615 -90.477306 +39086 1635 783 408153781 1894088 157.589 0.731 31.947443 -90.759188 +39088 135 89 126958173 3163299 49.019 1.221 32.766647 -90.708326 +39090 13398 5993 687387448 1992826 265.402 0.769 33.002016 -89.543898 +39092 2934 1228 277796991 193499 107.258 0.075 32.319548 -89.362401 +39094 3956 1760 424329943 2818162 163.835 1.088 32.586250 -89.663156 +39095 7324 3291 869504723 2286650 335.718 0.883 33.129605 -90.087121 +39096 2338 853 510750075 22592576 197.202 8.723 31.820913 -91.115372 +39097 873 373 144733117 4069487 55.882 1.571 32.989535 -90.607517 +39108 1974 1165 509762920 562407 196.821 0.217 33.149349 -89.338532 +39110 36143 13682 193381376 10588604 74.665 4.088 32.504210 -90.147164 +39111 10460 4375 361635518 116559 139.628 0.045 31.896635 -89.718092 +39113 595 158 28901982 39920 11.159 0.015 32.913834 -91.017222 +39114 9998 4295 492974981 481860 190.339 0.186 31.951841 -89.824616 +39115 155 68 18945828 9236 7.315 0.004 33.044863 -90.566898 +39116 2538 1132 221690835 368871 85.595 0.142 31.896441 -89.538254 +39117 10697 4370 684224862 1372007 264.181 0.530 32.306434 -89.654596 +39119 5506 2422 360651171 917548 139.248 0.354 31.751549 -89.670777 +39120 32334 14666 1232467821 66027597 475.859 25.493 31.509057 -91.357494 +39140 2250 1127 253597304 1683995 97.914 0.650 31.750881 -90.008555 +39144 867 501 297742458 161323 114.959 0.062 31.822623 -90.792933 +39145 5170 2083 339995225 791823 131.273 0.306 32.340469 -89.794300 +39146 2841 1223 351802051 2953860 135.832 1.140 32.876001 -89.994907 +39149 1649 792 211731823 161491 81.750 0.062 31.831965 -90.010649 +39150 5914 2754 588370887 28417588 227.171 10.972 32.004742 -90.976048 +39152 1284 559 154607671 127238 59.694 0.049 32.207475 -89.585474 +39153 3724 1641 402119273 247856 155.259 0.096 32.046463 -89.488280 +39154 10526 3630 291028568 1668451 112.367 0.644 32.225111 -90.444671 +39156 513 238 153252773 4953482 59.171 1.913 32.548314 -90.778416 +39157 24645 11952 79298772 1117323 30.617 0.431 32.425874 -90.169852 +39159 3334 1439 756956717 5819927 292.263 2.247 32.826566 -90.935377 +39160 2889 1306 371970423 1647452 143.619 0.636 32.993805 -89.762307 +39162 205 101 131571034 4811745 50.800 1.858 32.622735 -90.630068 +39166 613 255 160620271 8001608 62.016 3.089 33.040820 -90.481639 +39167 47 20 518620 0 0.200 0.000 32.094088 -90.041116 +39168 6643 2879 399362993 1412784 154.195 0.545 31.831878 -89.411823 +39169 2957 1306 395832023 13843670 152.832 5.345 33.218364 -90.238620 +39170 9407 3722 257601890 1336291 99.461 0.516 32.111889 -90.330006 +39174 715 79 2421504 0 0.935 0.000 32.401521 -90.159625 +39175 4843 2178 629211678 2986753 242.940 1.153 32.090647 -90.631288 +39176 2106 1103 330759489 648083 127.707 0.250 33.306079 -89.768327 +39177 136 75 144710757 3905123 55.873 1.508 32.623273 -90.800274 +39179 1228 501 211477574 916594 81.652 0.354 32.802438 -90.096939 +39180 32603 14355 533696547 8908039 206.061 3.439 32.230115 -90.857925 +39183 15661 7304 659255069 25757823 254.540 9.945 32.447095 -90.806574 +39189 5263 1584 204286271 604731 78.875 0.233 32.608003 -89.400149 +39191 8074 3280 570753623 2735681 220.369 1.056 31.711309 -90.424334 +39192 1733 944 386425299 491788 149.200 0.190 33.183639 -89.762234 +39193 968 5 3586222 0 1.385 0.000 32.234476 -90.079336 +39194 20925 7060 1171552851 24542169 452.339 9.476 32.828894 -90.512983 +39201 536 253 5651990 257198 2.182 0.099 32.289656 -90.184201 +39202 8411 4281 9528362 889887 3.679 0.344 32.311113 -90.170982 +39203 7091 2780 5878755 0 2.270 0.000 32.308884 -90.200338 +39204 19468 8242 35080689 480323 13.545 0.185 32.278603 -90.206753 +39206 25341 11079 23264613 0 8.983 0.000 32.372405 -90.172455 +39208 31371 11512 130318843 402341 50.316 0.155 32.259773 -90.091589 +39209 29617 12813 157565137 787583 60.836 0.304 32.395522 -90.293193 +39211 24515 11454 31792137 1172564 12.275 0.453 32.372134 -90.122605 +39212 33263 12646 66624777 493653 25.724 0.191 32.243261 -90.280351 +39213 22328 9854 74372994 1785208 28.716 0.689 32.392757 -90.236590 +39216 3454 1950 8766858 399469 3.385 0.154 32.333861 -90.159551 +39217 1103 0 40009 0 0.015 0.000 32.299131 -90.210495 +39218 6943 2857 46072449 514225 17.789 0.199 32.230403 -90.159703 +39232 7068 3410 44474910 1108927 17.172 0.428 32.330663 -90.091793 +39269 0 0 11206 0 0.004 0.000 32.301109 -90.188890 +39272 12551 5060 57041315 1122544 22.024 0.433 32.190610 -90.258327 +39301 27449 12442 722462991 3244424 278.945 1.253 32.273648 -88.580363 +39305 20431 9261 282264504 9289586 108.983 3.587 32.463029 -88.714721 +39307 18603 7254 247178145 564419 95.436 0.218 32.337935 -88.798726 +39309 601 0 1518578 93645 0.586 0.036 32.548966 -88.615563 +39320 1828 774 111529188 373437 43.062 0.144 32.569335 -88.744163 +39322 1882 838 190783853 1635208 73.662 0.631 31.535469 -88.503696 +39323 1290 579 137171341 556588 52.962 0.215 32.352251 -88.923736 +39325 5983 2484 284287666 9733294 109.764 3.758 32.562024 -88.877932 +39326 720 327 99974437 632884 38.600 0.244 32.602744 -88.656165 +39327 4190 1692 269593620 1081443 104.091 0.418 32.446464 -89.119043 +39328 4806 2167 778027829 482437 300.398 0.186 32.743509 -88.698611 +39330 2746 1247 342466876 1149353 132.227 0.444 32.180797 -88.843394 +39332 1923 840 185046336 410673 71.447 0.159 32.302524 -88.996763 +39335 3160 1561 301156771 4817422 116.277 1.860 32.533136 -88.491090 +39336 1235 528 200923888 345642 77.577 0.133 32.300601 -89.262200 +39337 1808 863 166833857 79722 64.415 0.031 32.513555 -88.979953 +39338 3319 1658 581405786 762070 224.482 0.294 32.106782 -89.230935 +39339 15619 6952 987125331 6486769 381.131 2.505 33.101905 -89.011663 +39341 7156 2976 974466702 2679611 376.244 1.035 33.098547 -88.566395 +39342 1287 596 6400980 0 2.471 0.000 32.424496 -88.648338 +39345 6127 2767 319519869 453013 123.367 0.175 32.291789 -89.121899 +39346 2241 1059 203527168 645631 78.582 0.249 32.965029 -89.095516 +39347 1497 950 187257721 327594 72.301 0.126 32.060443 -88.942004 +39348 838 359 102700073 125920 39.653 0.049 32.013623 -89.023995 +39350 24865 10146 1068240394 2652710 412.450 1.024 32.796469 -89.125241 +39352 812 384 260052324 127249 100.407 0.049 32.684044 -88.481694 +39354 2094 1038 330151642 127248 127.472 0.049 32.874511 -88.833423 +39355 7131 3371 680547154 3121482 262.761 1.205 32.054731 -88.624649 +39356 659 381 135580356 615310 52.348 0.238 32.134212 -89.021973 +39358 1679 682 429700961 1191450 165.908 0.460 32.870415 -88.471116 +39359 273 126 3860543 0 1.491 0.000 32.567824 -89.333571 +39360 3830 1780 603442365 359092 232.990 0.139 31.864814 -88.754017 +39361 1468 761 377682911 429399 145.824 0.166 32.995488 -88.596416 +39362 2866 1307 521425246 3927395 201.323 1.516 31.390960 -88.541129 +39363 1773 899 61092187 267714 23.588 0.103 32.126654 -88.765200 +39364 2985 1306 191703946 1426375 74.017 0.551 32.405281 -88.486617 +39365 7547 3414 486485392 1512119 187.833 0.584 32.602694 -89.126133 +39366 1380 596 199423705 291281 76.998 0.112 31.943818 -88.918193 +39367 15096 6686 1219762041 3388670 470.953 1.308 31.676874 -88.665860 +39401 43366 19942 496972260 6305422 191.882 2.435 31.234109 -89.265890 +39402 37492 16884 227548945 3856724 87.857 1.489 31.334884 -89.415848 +39406 1759 41 705454 0 0.272 0.000 31.328451 -89.334624 +39421 2936 1271 168856966 275041 65.196 0.106 31.492362 -89.721243 +39422 5146 2338 355738809 708304 137.352 0.273 31.959313 -89.257708 +39423 2690 1239 250285181 3811223 96.636 1.472 31.170495 -88.915119 +39425 1754 874 498999716 170063 192.665 0.066 31.059779 -89.080545 +39426 16301 6908 455622597 5459417 175.917 2.108 30.655200 -89.661262 +39427 1314 659 151378584 582947 58.448 0.225 31.480130 -89.814542 +39428 9761 4201 469310826 1430824 181.202 0.552 31.650408 -89.574039 +39429 17657 7791 791066980 9685352 305.433 3.740 31.240977 -89.756634 +39437 12917 5084 434458174 2197774 167.745 0.849 31.579926 -89.218571 +39439 4573 2040 358375814 512938 138.370 0.198 31.849174 -89.013984 +39440 21305 8983 51160554 843273 19.753 0.326 31.693212 -89.147245 +39443 21939 9398 682141946 8252095 263.376 3.186 31.717522 -89.075641 +39451 7181 1899 700600303 6914805 270.503 2.670 31.177200 -88.621661 +39452 26964 11156 1461742762 15958839 564.382 6.162 30.876501 -88.602718 +39455 9721 4217 919338327 4230061 354.959 1.633 31.011868 -89.458807 +39456 1292 602 272337600 3208349 105.150 1.239 31.060070 -88.823703 +39459 3677 1558 166725862 322317 64.373 0.124 31.489786 -89.304575 +39461 582 272 116976408 20922 45.165 0.008 31.187698 -88.742086 +39462 1122 534 139955588 1608196 54.037 0.621 31.235369 -89.056274 +39464 2482 1061 240160886 549759 92.727 0.212 31.491996 -89.083940 +39465 21386 8546 342458385 3387524 132.224 1.308 31.339576 -89.188147 +39466 27738 11981 368146099 5104459 142.142 1.971 30.520513 -89.585934 +39470 13011 5557 1134071849 10564657 437.868 4.079 30.823369 -89.568805 +39474 6050 2841 411201249 739296 158.766 0.285 31.613449 -89.855254 +39475 12225 4980 434957214 1308092 167.938 0.505 31.152569 -89.420252 +39476 7582 3238 1045104805 2459871 403.517 0.950 31.395406 -88.876342 +39477 686 338 14273438 86571 5.511 0.033 31.788272 -89.033802 +39478 2201 973 191286974 1664379 73.856 0.643 31.054177 -89.856810 +39479 5796 2545 328159119 567386 126.703 0.219 31.531150 -89.462370 +39480 2770 1225 139284061 609891 53.778 0.235 31.711510 -89.315093 +39481 1867 853 101418749 404746 39.158 0.156 31.868444 -89.238168 +39482 9746 3978 510250520 1343210 197.009 0.519 31.372022 -89.579154 +39483 6447 2753 401338237 4704206 154.958 1.816 31.242774 -89.932348 +39501 21987 10493 35439970 1338398 13.683 0.517 30.382966 -89.102426 +39503 45309 18776 312587529 11190736 120.691 4.321 30.474612 -89.152878 +39507 16234 8747 20902323 907793 8.070 0.351 30.400484 -89.034466 +39520 14681 7971 240186633 10641706 92.737 4.109 30.269670 -89.480153 +39525 8383 4282 27654512 1384423 10.677 0.535 30.381932 -89.370784 +39530 8086 4361 26699073 790357 10.309 0.305 30.409826 -88.880304 +39531 17736 9603 17520249 2575968 6.765 0.995 30.403986 -88.966183 +39532 32716 14462 204369448 11755001 78.907 4.539 30.493085 -88.964318 +39534 2379 0 4179780 9034 1.614 0.003 30.407452 -88.924614 +39540 8522 3940 11903189 1299357 4.596 0.502 30.443063 -88.897015 +39553 17174 7488 68408223 5077362 26.413 1.960 30.410268 -88.644264 +39556 7705 3351 272542021 3619270 105.229 1.397 30.441506 -89.439893 +39560 16844 7594 56499104 1485011 21.814 0.573 30.376022 -89.172458 +39561 1852 807 72849718 90979 28.127 0.035 30.702516 -89.154883 +39562 17912 7204 486801759 11114574 187.955 4.291 30.546682 -88.489452 +39563 13790 6224 52761521 4212651 20.371 1.627 30.420901 -88.522157 +39564 36952 16033 137509835 15055130 53.093 5.813 30.405228 -88.758742 +39565 19453 7588 722438748 7243270 278.935 2.797 30.580200 -88.741183 +39567 10740 4853 34441843 2697211 13.298 1.041 30.365446 -88.540115 +39571 13179 6122 220276882 10702704 85.049 4.132 30.420066 -89.275043 +39572 1414 705 27905241 1156017 10.774 0.446 30.250996 -89.601734 +39573 8828 3566 1028123223 8153265 396.961 3.148 30.729416 -89.097566 +39574 13613 5364 590080836 4042440 227.831 1.561 30.611848 -89.089935 +39576 5809 2945 16814897 91155 6.492 0.035 30.290097 -89.383290 +39577 10374 4236 661976248 3793775 255.590 1.465 30.904729 -89.086488 +39581 11595 5353 50907932 2305062 19.656 0.890 30.357809 -88.489791 +39601 23536 10247 682988962 2566938 263.704 0.991 31.563223 -90.470661 +39629 6519 2864 403048422 345586 155.618 0.133 31.436637 -90.456850 +39630 1115 548 7868566 130632 3.038 0.050 31.459306 -90.845350 +39631 3732 1677 393470864 109307 151.920 0.042 31.067164 -91.134282 +39633 1094 640 328908656 1832651 126.992 0.708 31.290709 -91.181953 +39635 170 98 3144631 0 1.214 0.000 31.191429 -90.463430 +39638 3333 1838 455784596 894142 175.979 0.345 31.225004 -90.995924 +39641 4569 2098 363605962 128144 140.389 0.049 31.355199 -90.174857 +39643 1102 505 83179374 14540 32.116 0.006 31.246549 -90.014258 +39645 5016 2537 831330269 1861052 320.978 0.719 31.148785 -90.798891 +39647 1023 508 202018125 283577 78.000 0.109 31.525939 -90.722694 +39648 21710 9640 268710414 419828 103.750 0.162 31.189344 -90.384302 +39652 8315 3751 457822890 749100 176.766 0.289 31.113659 -90.475396 +39653 2799 1512 568208278 6607296 219.386 2.551 31.481823 -90.864478 +39654 5635 2565 398729919 7189320 153.950 2.776 31.544944 -90.136681 +39656 803 412 117181614 1063980 45.244 0.411 31.443901 -89.931798 +39657 2351 1137 237119920 340689 91.553 0.132 31.040324 -90.506268 +39661 2997 1443 679033351 966879 262.176 0.373 31.484447 -91.083468 +39662 1318 594 118781972 70784 45.862 0.027 31.386372 -90.285394 +39663 3080 1439 320817357 3837157 123.868 1.482 31.594843 -90.038350 +39664 2256 1112 301787961 444034 116.521 0.171 31.325970 -90.674153 +39665 1196 614 153190219 613703 59.147 0.237 31.642810 -90.209176 +39666 9588 4084 403259689 3224745 155.699 1.245 31.294966 -90.482726 +39667 12837 5928 818167935 1140087 315.896 0.440 31.124985 -90.126040 +39668 681 463 299488197 17709 115.633 0.007 31.710523 -90.809347 +39669 6045 3165 1105579700 23165946 426.867 8.944 31.123168 -91.392666 +39701 13997 6593 485009367 11629346 187.263 4.490 33.393933 -88.504719 +39702 22883 9415 261619811 6478471 101.012 2.501 33.439736 -88.344713 +39705 13667 6743 172719330 8869234 66.687 3.424 33.583667 -88.436418 +39730 11805 5208 652127798 3732229 251.788 1.441 33.843668 -88.565300 +39735 3916 1914 399397707 1651521 154.208 0.638 33.353200 -89.187800 +39736 312 143 7014864 0 2.708 0.000 33.431914 -88.652317 +39737 285 136 39870096 143996 15.394 0.056 33.670566 -89.330323 +39739 2957 1431 464422726 9471547 179.315 3.657 33.239783 -88.573868 +39740 5038 2084 215307039 270925 83.131 0.105 33.722448 -88.305334 +39741 1560 680 173204418 640810 66.875 0.247 33.649982 -88.866290 +39743 2067 833 179267667 500294 69.216 0.193 33.326358 -88.613855 +39744 6008 2875 653664072 3630813 252.381 1.402 33.579940 -89.307271 +39745 810 327 135777948 154491 52.424 0.060 33.296546 -89.451227 +39746 3183 1411 234645049 4063375 90.597 1.569 33.752234 -88.415414 +39747 1999 1092 391473067 380200 151.149 0.147 33.409239 -89.554553 +39750 2781 1266 212587294 971707 82.080 0.375 33.568955 -89.044772 +39751 1309 608 205054072 860045 79.172 0.332 33.695301 -89.093267 +39752 2473 1078 178804095 1180380 69.037 0.456 33.522607 -89.150748 +39755 1051 511 177479945 1932912 68.525 0.746 33.609399 -88.957514 +39756 1943 799 197385254 514365 76.211 0.199 33.756717 -88.741085 +39759 42108 19269 840413114 7618421 324.485 2.941 33.437929 -88.825166 +39760 23 11 83552 0 0.032 0.000 33.464234 -88.705141 +39762 2207 62 1474085 0 0.569 0.000 33.452779 -88.795220 +39766 2630 1098 84618369 742696 32.671 0.287 33.587707 -88.312071 +39767 861 490 245479597 758130 94.780 0.293 33.475509 -89.448715 +39769 1923 1014 367665193 690645 141.956 0.267 33.321926 -89.017838 +39771 127 60 1478658 13515 0.571 0.005 33.606242 -89.275295 +39772 1793 874 186300528 501944 71.931 0.194 33.295122 -89.304493 +39773 16670 7448 598123206 13972973 230.937 5.395 33.647676 -88.690332 +39776 1674 720 193029521 408184 74.529 0.158 33.780141 -89.040474 +39813 2110 975 319212291 2073077 123.249 0.800 31.423156 -84.684305 +39815 1686 745 132944837 473257 51.330 0.183 30.738850 -84.490698 +39817 10894 4370 380644742 14564570 146.968 5.623 30.943525 -84.602003 +39819 11282 5145 402296746 20808771 155.328 8.034 30.788581 -84.634069 +39823 8550 3757 904865280 7958913 349.370 3.073 31.336246 -84.946067 +39824 544 286 145803288 778540 56.295 0.301 31.495163 -84.925018 +39825 1461 700 241841354 29913663 93.375 11.550 30.909841 -84.740871 +39826 418 216 54038509 1140404 20.864 0.440 31.820634 -84.348887 +39827 3842 1547 153248596 2552876 59.170 0.986 30.950847 -84.209264 +39828 15150 6459 358671543 5465431 138.484 2.110 30.808346 -84.224088 +39834 2138 979 313499910 1993967 121.043 0.770 30.900371 -84.428953 +39836 461 347 200138216 462755 77.274 0.179 31.665983 -84.868547 +39837 6166 2805 733373073 4178540 283.157 1.613 31.152104 -84.677706 +39840 5726 2979 546803343 2824479 211.122 1.091 31.780895 -84.764694 +39841 878 423 174976644 390072 67.559 0.151 31.292866 -84.685044 +39842 8357 3578 733866433 4560304 283.347 1.761 31.760949 -84.437475 +39845 7871 4411 503609565 50860838 194.445 19.637 30.951468 -84.892839 +39846 2440 1061 223775574 1289829 86.400 0.498 31.563126 -84.746115 +39851 2388 1611 315444187 53964051 121.794 20.836 31.619831 -84.992583 +39854 2592 2146 337462228 24182348 130.295 9.337 31.869226 -85.052581 +39859 1281 584 149242279 4023371 57.623 1.553 30.987652 -84.812747 +39861 1003 523 138087872 968894 53.316 0.374 31.135454 -84.987180 +39862 1326 678 382645984 5457594 147.740 2.107 31.459371 -84.517381 +39866 2122 291 144894438 2339303 55.944 0.903 31.559434 -84.594331 +39867 321 230 223472269 2307283 86.283 0.891 31.828416 -84.927893 +39870 2238 1056 479527492 11120994 185.147 4.294 31.322028 -84.414137 +39877 500 284 106265601 284262 41.029 0.110 31.915159 -84.511576 +39885 76 43 767857 0 0.296 0.000 31.717425 -84.351063 +39886 1616 848 316712322 3640270 122.283 1.406 31.745736 -84.621515 +39897 3430 1592 367357458 3262742 141.838 1.260 30.911205 -84.329813 +40003 1902 742 109401061 1382009 42.240 0.534 38.276689 -85.043822 +40004 28245 11791 374036479 5391046 144.416 2.081 37.803188 -85.465955 +40006 5084 2155 236390797 4204614 91.271 1.623 38.597612 -85.333593 +40007 166 71 29130127 188269 11.247 0.073 38.458345 -84.999150 +40008 3476 1494 204266858 6389733 78.868 2.467 37.908948 -85.275003 +40009 1051 518 164509754 1140413 63.518 0.440 37.470226 -85.107358 +40010 587 182 4745836 45129 1.832 0.017 38.372519 -85.459505 +40011 2549 1120 151750937 2129352 58.591 0.822 38.527667 -85.170096 +40012 589 278 25942153 257142 10.016 0.099 37.900841 -85.191982 +40013 5369 2125 205723053 3120678 79.430 1.205 37.934851 -85.458027 +40014 19986 7368 142691356 2166978 55.093 0.837 38.340259 -85.429678 +40019 3789 1595 97158666 2508187 37.513 0.968 38.380793 -85.164341 +40020 109 55 1229467 9589 0.475 0.004 37.934782 -85.387398 +40022 834 333 41680860 741727 16.093 0.286 38.153467 -85.355023 +40023 4118 1531 58512979 708456 22.592 0.274 38.174140 -85.432339 +40025 59 28 436388 0 0.168 0.000 38.299699 -85.648691 +40026 5458 1870 80440274 8972575 31.058 3.464 38.431156 -85.532639 +40031 22863 7151 172247807 2406573 66.505 0.929 38.430654 -85.400731 +40033 12355 5314 371336631 4434121 143.374 1.712 37.544124 -85.225553 +40036 223 125 46717872 2794662 18.038 1.079 38.415880 -84.982456 +40037 2864 1182 127161717 1514463 49.097 0.585 37.660798 -85.417677 +40040 531 229 53078745 213132 20.494 0.082 37.777043 -85.069286 +40041 286 169 268181 0 0.104 0.000 38.255905 -85.664161 +40045 3451 1651 147636822 7793433 57.003 3.009 38.686910 -85.358514 +40046 1741 741 124974722 4212842 48.253 1.627 38.023931 -85.169791 +40047 19345 7642 76868540 881819 29.679 0.340 38.039402 -85.555239 +40048 113 3 349073 3761 0.135 0.001 37.847040 -85.470265 +40049 115 0 444137 9169 0.171 0.004 37.663524 -85.395025 +40050 1389 617 25160156 346972 9.714 0.134 38.446036 -85.186747 +40051 4799 1986 245422446 3540473 94.758 1.367 37.677146 -85.551307 +40052 515 236 54647535 203433 21.100 0.079 37.604128 -85.487942 +40055 1752 729 53237119 292940 20.555 0.113 38.495202 -85.326025 +40056 3263 1245 7371877 28599 2.846 0.011 38.305594 -85.488965 +40057 3354 1492 252979869 2356231 97.676 0.910 38.394194 -85.042908 +40058 64 32 61523 0 0.024 0.000 38.432738 -85.170464 +40059 16708 6562 67144167 11064073 25.925 4.272 38.358108 -85.593622 +40060 1184 527 113625020 2230122 43.871 0.861 37.542332 -85.466267 +40062 301 124 13505442 102310 5.214 0.040 37.605455 -85.441513 +40063 789 2 1270186 14630 0.490 0.006 37.571367 -85.339457 +40065 28025 11354 457314144 8267816 176.570 3.192 38.216500 -85.206928 +40067 5114 1952 111688521 2109223 43.123 0.814 38.222511 -85.368158 +40068 2131 867 112879626 1961826 43.583 0.757 38.395535 -85.274186 +40069 8276 3520 493212130 6344227 190.430 2.450 37.722374 -85.209126 +40070 582 237 31064768 447176 11.994 0.173 38.468642 -85.232149 +40071 14292 5533 317485025 5253995 122.582 2.029 38.043009 -85.378807 +40075 1323 569 122234558 1463698 47.195 0.565 38.568134 -85.112670 +40076 2516 1054 146389965 1347624 56.521 0.520 38.113729 -85.086142 +40077 564 292 22006399 4450131 8.497 1.718 38.495455 -85.444636 +40078 2200 992 151289852 2904741 58.413 1.122 37.835641 -85.153631 +40104 1336 575 164365501 25892484 63.462 9.997 38.085540 -86.333004 +40107 2067 893 138504964 3144756 53.477 1.214 37.725327 -85.598828 +40108 11583 4741 184080828 13778669 71.074 5.320 37.970097 -86.172833 +40109 1990 802 24255387 92360 9.365 0.036 38.061072 -85.751385 +40110 60 33 1227314 3407 0.474 0.001 37.932836 -85.658363 +40111 1682 804 95901807 3173967 37.028 1.225 37.774709 -86.628999 +40115 727 311 51565159 575813 19.909 0.222 37.727892 -86.228337 +40117 2299 905 49524108 652787 19.121 0.252 37.896583 -86.124289 +40118 9724 4022 35438827 298937 13.683 0.115 38.097497 -85.751202 +40119 1797 1830 247365244 8003150 95.508 3.090 37.608198 -86.553158 +40121 10124 2961 87748804 697107 33.880 0.269 37.952624 -85.924406 +40140 787 321 62319610 195951 24.062 0.076 37.763133 -86.353952 +40142 2304 932 127682232 937039 49.298 0.362 37.893218 -86.204086 +40143 5939 2889 385838119 8486637 148.973 3.277 37.781355 -86.509757 +40144 1866 961 161877675 3120383 62.501 1.205 37.740090 -86.368271 +40145 908 435 82838835 1017167 31.984 0.393 37.640459 -86.314394 +40146 3745 1637 216678672 1401343 83.660 0.541 37.849377 -86.330840 +40150 4103 1695 89508396 972221 34.559 0.375 37.880230 -85.713277 +40152 604 797 24400828 5322025 9.421 2.055 37.614452 -86.443858 +40155 947 539 1398889 1569 0.540 0.001 37.935748 -85.992029 +40157 876 389 80567381 3878723 31.107 1.498 38.049960 -86.436187 +40160 23574 10182 43632606 168325 16.847 0.065 37.813422 -85.937545 +40161 178 75 18291023 58115 7.062 0.022 37.999385 -86.388706 +40162 6056 2192 146196371 1229479 56.447 0.475 37.756799 -86.059932 +40165 32726 12827 374053624 4386642 144.423 1.694 37.969778 -85.671626 +40170 344 158 45988073 15751010 17.756 6.081 37.963833 -86.509001 +40171 243 129 47656761 176853 18.400 0.068 37.973118 -86.471826 +40175 13070 5148 195604935 1966297 75.523 0.759 37.819003 -86.089891 +40176 931 389 74382978 447518 28.719 0.173 37.918739 -86.333203 +40177 1463 751 35491329 2424691 13.703 0.936 38.006379 -85.921804 +40178 468 485 21109329 2593905 8.150 1.002 37.660112 -86.413619 +40202 6772 3045 4026407 2290221 1.555 0.884 38.256783 -85.754048 +40203 19694 11014 7617124 0 2.941 0.000 38.252697 -85.765167 +40204 14236 8281 8410161 119313 3.247 0.046 38.239913 -85.721591 +40205 23678 11189 18081075 100403 6.981 0.039 38.223001 -85.683261 +40206 18865 10357 14789048 2797288 5.710 1.080 38.260083 -85.704721 +40207 29745 14862 30105608 1839177 11.624 0.710 38.265215 -85.657736 +40208 13227 6246 6372739 1354 2.461 0.001 38.221279 -85.767609 +40209 360 185 6948852 9707 2.683 0.004 38.189888 -85.748301 +40210 14822 7258 8334030 0 3.218 0.000 38.231530 -85.786206 +40211 22612 11181 19374761 3068872 7.481 1.185 38.236110 -85.823737 +40212 17685 8481 9841625 5500062 3.800 2.124 38.271962 -85.799332 +40213 16796 7966 32246383 508701 12.450 0.196 38.177589 -85.719409 +40214 45291 20301 38476215 270904 14.856 0.105 38.151772 -85.780765 +40215 22287 10085 9714453 24758 3.751 0.010 38.190476 -85.785734 +40216 40746 18250 37436412 1984733 14.454 0.766 38.189833 -85.840057 +40217 12507 6415 6221696 19747 2.402 0.008 38.216712 -85.737515 +40218 31658 14695 25208269 133887 9.733 0.052 38.189321 -85.654311 +40219 38032 16623 37276157 563315 14.392 0.217 38.138599 -85.688316 +40220 33109 15393 19728747 69479 7.617 0.027 38.216410 -85.617821 +40222 21359 10510 27018025 2451538 10.432 0.947 38.271765 -85.619448 +40223 22011 9722 30412748 446675 11.742 0.172 38.258349 -85.539878 +40228 15743 6492 19603893 118367 7.569 0.046 38.134078 -85.626299 +40229 36852 14534 51161012 582961 19.753 0.225 38.089498 -85.653882 +40231 0 0 216373 0 0.084 0.000 38.195065 -85.694920 +40241 28988 13183 37430275 298653 14.452 0.115 38.299974 -85.575689 +40242 10930 4876 6908574 30096 2.667 0.012 38.277471 -85.590514 +40243 10210 4912 10391627 26124 4.012 0.010 38.241801 -85.536121 +40245 30109 11303 83873960 1870276 32.384 0.722 38.266363 -85.448219 +40258 26465 10959 30250469 3960723 11.680 1.529 38.146270 -85.877927 +40272 37394 15277 88340179 7083791 34.108 2.735 38.078458 -85.853119 +40280 303 96 251903 0 0.097 0.000 38.247636 -85.688309 +40291 35427 14948 56790252 799985 21.927 0.309 38.130822 -85.583895 +40299 38371 16166 137529751 2176832 53.101 0.840 38.151676 -85.517251 +40310 526 244 1547235 6035 0.597 0.002 37.749373 -84.764512 +40311 7153 3272 454438785 3310725 175.460 1.278 38.332224 -83.996774 +40312 5898 2551 146999713 1566752 56.757 0.605 37.855024 -83.938668 +40313 3143 1544 98546913 1893470 38.049 0.731 38.146989 -83.376611 +40316 309 155 15883684 17974 6.133 0.007 37.941452 -83.540136 +40322 3328 1684 302448410 1445321 116.776 0.558 37.938657 -83.634973 +40324 41342 16808 401578164 5840297 155.050 2.255 38.246926 -84.550616 +40328 1065 497 126934877 792929 49.010 0.306 37.603953 -85.067062 +40330 19334 9023 573428644 8604231 221.402 3.322 37.787723 -84.888056 +40334 76 22 1517531 1274 0.586 0.000 38.013489 -83.762317 +40336 13061 6036 533544905 6013210 206.003 2.322 37.682978 -83.990952 +40337 5501 2407 149326047 782327 57.655 0.302 37.941491 -83.854535 +40339 46 36 326336 125 0.126 0.000 37.944094 -84.638897 +40342 21125 8985 487618855 5579386 188.271 2.154 37.995815 -84.979522 +40346 686 309 32150480 58342 12.413 0.023 37.985638 -83.745639 +40347 2767 1182 90563718 906554 34.967 0.350 38.158286 -84.728351 +40348 600 318 11150231 75844 4.305 0.029 38.288717 -84.129361 +40350 228 104 32415824 351070 12.516 0.136 38.304672 -83.873854 +40351 20329 8618 640641583 14919539 247.353 5.760 38.204798 -83.415533 +40353 20779 9213 360399539 3199533 139.151 1.235 38.065328 -83.948728 +40356 40503 16462 362271618 4110974 139.874 1.587 37.874952 -84.563367 +40358 904 408 53724051 73838 20.743 0.029 38.059899 -83.678190 +40359 7080 3640 592347781 4743924 228.707 1.832 38.491906 -84.802855 +40360 6564 3011 379299710 1102374 146.448 0.426 38.155202 -83.789543 +40361 18220 8092 668958128 4486102 258.286 1.732 38.208257 -84.226885 +40363 22 63 54042 0 0.021 0.000 38.514407 -85.009763 +40370 2763 1218 215481974 1899980 83.198 0.734 38.403476 -84.525082 +40371 2838 1383 192524234 12886939 74.334 4.976 38.103804 -83.580224 +40372 2128 963 138545132 3797762 53.493 1.466 37.911756 -84.888114 +40374 1702 791 163250328 674441 63.031 0.260 38.222724 -83.889725 +40376 52 51 18651924 67979 7.202 0.026 37.772736 -83.690134 +40379 3288 1394 164549289 1383687 63.533 0.534 38.312851 -84.686831 +40380 6612 2976 296222710 1364391 114.372 0.527 37.815615 -83.792349 +40383 22408 9545 393160875 7839847 151.800 3.027 38.006552 -84.738859 +40385 3131 1329 122428060 2485565 47.270 0.960 37.737704 -84.133019 +40387 2046 1690 187379139 4270406 72.347 1.649 37.933577 -83.492267 +40390 7366 2564 65675424 1732142 25.357 0.669 37.849691 -84.666918 +40391 35262 15533 620125542 6515764 239.432 2.516 37.970133 -84.144974 +40402 2905 1298 122531264 449775 47.310 0.174 37.292686 -83.975517 +40403 23774 10048 295942987 1558660 114.264 0.602 37.570745 -84.271388 +40404 643 0 329970 0 0.127 0.000 37.573456 -84.290836 +40409 3843 1744 113600173 466515 43.861 0.180 37.369255 -84.434837 +40419 4621 2052 238662630 1183821 92.148 0.457 37.437808 -84.489312 +40422 24280 10473 297726069 5251108 114.953 2.027 37.640997 -84.797275 +40434 34 20 143603 1380 0.055 0.001 37.394162 -83.940822 +40437 4932 2237 313811329 1004638 121.163 0.388 37.435588 -84.870139 +40440 2092 915 23914798 102564 9.234 0.040 37.585885 -84.819990 +40442 1136 490 63651253 118275 24.576 0.046 37.338738 -84.741734 +40444 14096 6237 410524558 9873979 158.504 3.812 37.666655 -84.577248 +40445 997 497 118163850 1249467 45.623 0.482 37.338854 -84.187292 +40447 8251 4139 646731716 2700290 249.705 1.043 37.485787 -84.032317 +40448 53 28 945761 10650 0.365 0.004 37.459547 -84.756783 +40456 9300 4218 447438074 1965311 172.757 0.759 37.353469 -84.319499 +40460 1129 520 95717582 170639 36.957 0.066 37.397757 -84.226793 +40461 3121 1347 131826587 1010913 50.899 0.390 37.582530 -84.406000 +40464 1114 496 87114526 346129 33.635 0.134 37.562270 -84.920625 +40468 1807 818 87610728 781025 33.827 0.302 37.633934 -84.978242 +40472 1679 871 135459555 544807 52.301 0.210 37.732125 -83.859673 +40475 55803 23810 707062295 10638884 272.998 4.108 37.761655 -84.312658 +40481 218 107 14226261 15202 5.493 0.006 37.448874 -84.090064 +40484 11612 5036 341831289 3259752 131.982 1.259 37.520580 -84.673931 +40486 2223 1033 131039876 258432 50.595 0.100 37.369720 -83.858912 +40489 4109 1767 171633726 674951 66.268 0.261 37.365743 -84.637255 +40502 25709 13910 18651864 700247 7.202 0.270 38.010953 -84.483191 +40503 28003 13196 22910230 9029 8.846 0.003 38.005828 -84.533469 +40504 25655 12363 15738972 77346 6.077 0.030 38.042413 -84.544016 +40505 26040 12162 20666550 24606 7.979 0.010 38.060601 -84.457264 +40506 2802 2 221571 0 0.086 0.000 38.028302 -84.503140 +40507 1757 1483 1078126 0 0.416 0.000 38.046955 -84.496353 +40508 23569 10826 11038493 0 4.262 0.000 38.061351 -84.511664 +40509 32364 15131 106489504 586025 41.116 0.226 37.997335 -84.377731 +40510 1928 366 55495508 420424 21.427 0.162 38.071200 -84.583839 +40511 31798 12566 229412127 1016716 88.577 0.393 38.132379 -84.478298 +40513 10994 4451 37421525 71618 14.449 0.028 38.017678 -84.605767 +40514 14647 5596 7673316 16697 2.963 0.006 37.982460 -84.563051 +40515 33595 14580 145732300 2627509 56.268 1.014 37.917671 -84.391441 +40516 2877 1293 91230710 271935 35.224 0.105 38.071752 -84.363780 +40517 35227 17748 15992103 35393 6.175 0.014 37.982958 -84.489425 +40601 49566 23523 571041492 11066675 220.480 4.273 38.234919 -84.868786 +40604 462 1 908509 131023 0.351 0.051 38.176731 -84.862540 +40701 29497 13062 372312840 20371740 143.751 7.866 36.921918 -84.157936 +40729 5485 2361 170398312 1730178 65.791 0.668 37.252563 -84.137943 +40734 3764 1649 105530867 252637 40.746 0.098 36.924391 -83.953721 +40737 1379 610 18722262 243902 7.229 0.094 37.010813 -84.130808 +40740 3321 1326 42148749 412546 16.274 0.159 37.020582 -84.037313 +40741 21875 9705 541447055 4465692 209.054 1.724 37.136791 -84.127273 +40743 229 94 3152418 28002 1.217 0.011 37.072518 -84.115361 +40744 18334 7748 273647493 8925869 105.656 3.446 37.029447 -84.118983 +40759 2531 1071 124312251 900203 47.997 0.348 36.812972 -84.057124 +40763 469 249 54507283 14872 21.045 0.006 36.689214 -83.925551 +40769 18507 7604 760936310 8120846 293.799 3.135 36.711538 -84.178636 +40771 1068 497 32296175 176054 12.470 0.068 36.863749 -84.034516 +40801 531 227 18252223 66702 7.047 0.026 36.862117 -83.246379 +40806 2499 1168 60197750 389325 23.242 0.150 36.891253 -83.297065 +40807 337 189 795657 2457 0.307 0.001 36.964094 -82.946000 +40808 99 40 15056271 86250 5.813 0.033 36.996323 -83.203375 +40810 1548 711 210046302 470805 81.099 0.182 36.906934 -83.374634 +40813 669 299 32436049 454568 12.524 0.176 36.709925 -83.591917 +40815 1534 683 105889942 1978542 40.884 0.764 36.784466 -83.219076 +40816 78 45 82885950 470757 32.002 0.182 37.006822 -83.271380 +40818 110 51 11284170 30479 4.357 0.012 36.821595 -83.243138 +40819 729 327 36277833 362817 14.007 0.140 36.804974 -83.446102 +40820 581 261 40604722 70659 15.678 0.027 36.748626 -83.178536 +40823 4231 2072 150124882 561891 57.964 0.217 36.957891 -82.990311 +40824 559 241 10365229 131231 4.002 0.051 36.825291 -83.375373 +40826 759 339 81020387 166314 31.282 0.064 37.058809 -82.781635 +40827 674 281 40169229 174044 15.509 0.067 37.038332 -83.513320 +40828 3965 1630 122587760 469042 47.331 0.181 36.880342 -83.134079 +40829 172 86 10599044 77058 4.092 0.030 36.796010 -83.302252 +40830 301 143 7125227 6973 2.751 0.003 36.760178 -83.328571 +40831 5150 2320 133243074 438651 51.445 0.169 36.766574 -83.354262 +40840 312 117 44052948 93628 17.009 0.036 36.899994 -83.440130 +40843 259 142 77769471 89759 30.027 0.035 36.891037 -82.990854 +40844 123 68 21955600 133699 8.477 0.052 37.057797 -83.341426 +40845 635 286 22565070 334335 8.712 0.129 36.798817 -83.517970 +40847 261 108 2492146 0 0.962 0.000 36.850594 -83.174781 +40849 352 163 2647179 92428 1.022 0.036 36.894013 -83.131200 +40854 1213 586 5584943 173993 2.156 0.067 36.845558 -83.353853 +40855 860 510 35336666 1046 13.644 0.000 36.941051 -82.893779 +40856 756 350 111414281 522025 43.017 0.202 36.725419 -83.529257 +40858 397 187 41837611 322066 16.154 0.124 36.984485 -83.414336 +40862 647 279 42877600 183593 16.555 0.071 37.018411 -82.855656 +40863 502 239 65712419 99559 25.372 0.038 36.727157 -83.430930 +40865 410 184 8060593 144101 3.112 0.056 36.920103 -83.211147 +40868 1100 485 65547829 169875 25.308 0.066 37.070108 -83.497782 +40870 279 141 18226538 201447 7.037 0.078 36.923407 -83.144327 +40873 2390 1129 76872932 344362 29.681 0.133 36.818242 -83.409322 +40874 504 229 101138564 260125 39.050 0.100 36.986377 -83.483171 +40902 1239 582 97576297 151406 37.674 0.058 36.871828 -83.594365 +40903 681 326 22224388 104302 8.581 0.040 36.798440 -83.814814 +40906 11132 5045 320820979 1660008 123.870 0.641 36.880297 -83.885898 +40913 171 95 45667437 83625 17.632 0.032 36.936750 -83.558358 +40914 467 237 32269365 419025 12.459 0.162 37.142595 -83.567772 +40915 896 413 24976692 35938 9.644 0.014 36.887298 -83.807540 +40921 295 145 39885715 52262 15.400 0.020 36.767163 -83.886514 +40923 735 319 10421417 28130 4.024 0.011 36.919179 -83.844555 +40927 482 222 30434205 95781 11.751 0.037 36.873203 -83.063102 +40935 2699 1306 197091045 605578 76.097 0.234 36.892872 -83.721242 +40939 273 134 16950913 144745 6.545 0.056 36.811921 -83.696262 +40940 478 220 49448973 54811 19.092 0.021 36.602620 -83.939089 +40941 251 112 3603918 11179 1.391 0.004 37.124945 -83.732364 +40943 748 329 16480650 8873 6.363 0.003 36.970297 -83.862770 +40946 220 105 28760484 812 11.104 0.000 36.974203 -83.807193 +40949 788 388 8409921 12907 3.247 0.005 36.887056 -83.870853 +40953 998 412 29750425 22422 11.487 0.009 36.937816 -83.801714 +40958 451 202 18115568 52891 6.994 0.020 36.809877 -83.596930 +40962 19143 7610 960985499 2980656 371.039 1.151 37.144486 -83.734933 +40964 151 60 6637784 5765 2.563 0.002 36.770091 -83.310832 +40965 13570 6439 186345217 1428150 71.948 0.551 36.633945 -83.715703 +40972 1327 653 147108229 1264812 56.799 0.488 37.259640 -83.577046 +40977 10362 4502 344955525 2165002 133.188 0.836 36.700132 -83.772324 +40979 148 57 6564288 26167 2.534 0.010 37.005784 -83.511250 +40982 388 167 16164233 0 6.241 0.000 36.932745 -83.690087 +40983 352 175 48932603 75794 18.893 0.029 37.330951 -83.754614 +40988 555 270 54937584 186383 21.212 0.072 36.865182 -83.516041 +40995 121 53 7546990 0 2.914 0.000 36.761013 -83.815456 +40997 371 193 54661190 3323 21.105 0.001 36.894531 -83.661992 +41001 16412 6207 132495851 1040123 51.157 0.402 38.917606 -84.403370 +41002 2510 1137 116572112 3751114 45.009 1.448 38.740005 -83.968175 +41003 2786 1184 221032205 2525700 85.341 0.975 38.529640 -84.390246 +41004 4122 1857 296075395 682484 114.315 0.264 38.644125 -84.087983 +41005 22569 8410 151209362 7865407 58.382 3.037 39.006759 -84.760116 +41006 4434 1820 136934392 2007069 52.871 0.775 38.784430 -84.345639 +41007 4193 1618 133980398 10220127 51.730 3.946 38.892187 -84.294627 +41008 7457 3183 112635156 14190538 43.489 5.479 38.663314 -85.168640 +41010 3217 1521 228494177 1352044 88.222 0.522 38.499633 -84.608194 +41011 25872 13661 18478742 1105791 7.135 0.427 39.067114 -84.532685 +41014 6942 3552 2751608 56008 1.062 0.022 39.066290 -84.505282 +41015 20864 8943 65907087 1722176 25.447 0.665 38.979011 -84.484328 +41016 6075 2942 4150391 1188421 1.602 0.459 39.089673 -84.547990 +41017 38940 16375 54266938 2663724 20.953 1.028 39.029089 -84.561887 +41018 27345 11347 29580255 428577 11.421 0.165 39.014901 -84.602186 +41030 6299 2425 72324839 702852 27.925 0.271 38.788499 -84.589506 +41031 15886 6935 563251002 6734966 217.472 2.600 38.418648 -84.288716 +41033 1976 783 108864060 1215067 42.033 0.469 38.767235 -84.458755 +41034 1032 446 72461674 3516635 27.978 1.358 38.723934 -83.891318 +41035 10785 4179 275754291 3693986 106.469 1.426 38.719224 -84.654354 +41039 2502 1142 191728620 1673985 74.027 0.646 38.415115 -83.869813 +41040 7265 3284 378405318 5954817 146.103 2.299 38.650874 -84.331458 +41041 7153 3310 277991611 2727978 107.333 1.053 38.407395 -83.720679 +41042 49968 21017 74203805 142294 28.650 0.055 39.000968 -84.651005 +41043 1745 763 130588468 4218406 50.420 1.629 38.763933 -84.195507 +41044 1116 501 81294329 89664 31.388 0.035 38.610431 -83.972434 +41045 1273 564 91312110 7824379 35.256 3.021 38.726929 -85.038033 +41046 1414 573 43811138 487701 16.916 0.188 38.717378 -84.803336 +41048 13959 4728 56920417 7078074 21.977 2.733 39.098839 -84.706333 +41049 2261 1012 218833296 1877424 84.492 0.725 38.268969 -83.640286 +41051 26796 9603 75267239 1036077 29.061 0.400 38.934248 -84.548265 +41052 107 44 6990470 108430 2.699 0.042 38.677987 -84.768518 +41055 1813 792 163133370 496768 62.986 0.192 38.525392 -83.866465 +41056 14228 6672 362608034 12271078 140.004 4.738 38.594901 -83.778115 +41059 2712 1173 35351880 5983913 13.649 2.310 39.013395 -84.351380 +41062 35 15 331403 0 0.128 0.000 38.704010 -83.922840 +41063 3378 1340 93510568 1667201 36.105 0.644 38.846530 -84.495123 +41064 2073 981 221600173 413770 85.560 0.160 38.513826 -84.063757 +41071 20869 9976 14034949 770722 5.419 0.298 39.073947 -84.483320 +41073 5955 2974 2385653 519183 0.921 0.200 39.102398 -84.479187 +41074 5338 2365 3327648 1687704 1.285 0.652 39.112758 -84.464460 +41075 16459 7339 15587103 1339602 6.018 0.517 39.081974 -84.453172 +41076 16468 7565 54258557 1829430 20.949 0.706 39.012728 -84.453965 +41080 1849 726 73361095 8046496 28.325 3.107 39.054690 -84.824178 +41083 1326 602 89106847 1165713 34.404 0.450 38.666019 -84.967460 +41085 724 295 966866 4493 0.373 0.002 39.036410 -84.393332 +41086 2771 1184 166992568 1171708 64.476 0.452 38.689205 -84.871440 +41091 16873 5915 133512804 2588022 51.550 0.999 38.910267 -84.736327 +41092 3514 1363 99186030 373264 38.296 0.144 38.815603 -84.691082 +41093 2869 1364 281051721 1392582 108.515 0.538 38.387403 -83.558464 +41094 13631 5261 116803237 745950 45.098 0.288 38.882754 -84.624108 +41095 3540 1654 75084304 6171061 28.990 2.383 38.773681 -84.747515 +41097 7349 3113 259847669 2122479 100.328 0.819 38.621179 -84.581444 +41098 2037 1169 131765558 2795928 50.875 1.080 38.586870 -85.008171 +41099 1169 0 597790 0 0.231 0.000 39.035893 -84.468189 +41101 18758 9052 25001268 3490998 9.653 1.348 38.473824 -82.647933 +41102 21712 8899 132508818 775992 51.162 0.300 38.427628 -82.730185 +41121 1852 836 129027503 1273123 49.818 0.492 38.439426 -82.833635 +41124 1039 496 150390838 1305238 58.066 0.504 38.033073 -82.851398 +41129 9922 4238 221613228 1425356 85.565 0.550 38.322078 -82.648956 +41132 425 213 52460280 16497 20.255 0.006 38.272196 -82.812826 +41135 172 90 21863721 43906 8.442 0.017 38.344302 -83.301975 +41139 8271 3668 15747498 14719 6.080 0.006 38.514155 -82.726618 +41141 2461 1098 168646898 2696816 65.115 1.041 38.538083 -83.170636 +41142 91 34 1546499 342 0.597 0.000 38.277675 -83.073062 +41143 14535 6270 512256056 4501270 197.783 1.738 38.334906 -82.975412 +41144 10279 4441 389471790 11157995 150.376 4.308 38.539423 -82.943173 +41146 412 168 8326722 24441 3.215 0.009 38.279174 -82.896006 +41149 733 334 85889893 205424 33.162 0.079 38.107118 -83.062030 +41159 583 264 61980609 42016 23.931 0.016 37.999169 -82.997365 +41164 13125 6169 631410755 3696457 243.789 1.427 38.288377 -83.157131 +41166 919 407 55772319 4179324 21.534 1.614 38.637168 -83.093709 +41168 3043 1229 141435640 103645 54.609 0.040 38.306990 -82.751009 +41169 5354 2435 16492487 2282931 6.368 0.881 38.535531 -82.737890 +41171 5042 2000 324020634 1024791 125.105 0.396 38.088864 -83.106178 +41174 1122 557 26197814 3003790 10.115 1.160 38.704035 -83.011802 +41175 5591 2575 198781601 7679494 76.750 2.965 38.650336 -82.969552 +41179 7852 3720 844531286 23257169 326.075 8.980 38.532051 -83.373303 +41180 1087 579 184664252 634134 71.299 0.245 38.137267 -82.874882 +41183 1618 687 3330748 2206969 1.286 0.852 38.553369 -82.737832 +41189 2264 1033 156928904 408685 60.591 0.158 38.546435 -83.561568 +41201 238 170 25771446 1538700 9.950 0.594 38.074459 -82.738305 +41203 696 332 15739801 9517 6.077 0.004 37.840704 -82.459536 +41204 560 252 31452791 2324 12.144 0.001 37.814671 -82.676404 +41214 750 313 51879656 14398 20.031 0.006 37.793736 -82.626345 +41216 1297 584 41119471 95671 15.876 0.037 37.732573 -82.803369 +41219 2053 913 118105689 961782 45.601 0.371 37.926112 -82.905328 +41222 2627 1132 74998545 369583 28.957 0.143 37.755891 -82.858454 +41224 6414 2185 234486146 903081 90.536 0.349 37.798001 -82.559913 +41226 168 84 14579773 29803 5.629 0.012 37.981562 -82.952067 +41230 11730 5228 585826028 7831442 226.189 3.024 38.043724 -82.672792 +41231 1002 466 14938315 473977 5.768 0.183 37.807549 -82.385714 +41232 782 352 29376644 14259 11.342 0.006 37.941055 -82.729722 +41234 601 265 13156591 6691 5.080 0.003 37.788660 -82.746785 +41238 860 409 58423128 1184586 22.557 0.457 37.846223 -82.961186 +41240 6916 3295 115858587 922840 44.733 0.356 37.823945 -82.796748 +41250 1195 547 197094780 672538 76.099 0.260 37.722435 -82.469106 +41254 571 242 25761167 289137 9.946 0.112 37.887162 -82.715358 +41255 1036 472 39194155 11098 15.133 0.004 37.904268 -82.832837 +41256 2433 1098 56975446 1543190 21.998 0.596 37.837353 -82.891812 +41257 390 171 15463615 12198 5.971 0.005 37.930010 -82.795669 +41260 885 379 6586782 39148 2.543 0.015 37.825557 -82.752825 +41262 1474 676 57573657 17004 22.229 0.007 37.845089 -82.630111 +41263 525 225 16340011 226918 6.309 0.088 37.856896 -82.752180 +41264 389 178 31132351 204763 12.020 0.079 37.924913 -82.681439 +41265 1857 856 78190469 1541242 30.190 0.595 37.748314 -82.705776 +41267 1245 584 19962845 387368 7.708 0.150 37.878227 -82.440987 +41268 395 178 799260 51880 0.309 0.020 37.788779 -82.785602 +41271 237 123 7766948 0 2.999 0.000 37.822449 -82.723584 +41274 585 254 9594550 2543 3.704 0.001 37.864160 -82.810705 +41301 6159 3017 534627087 1418766 206.421 0.548 37.728709 -83.492319 +41311 7538 3245 457343011 5834093 176.581 2.253 37.583220 -83.710711 +41314 5239 2548 582298771 2414516 224.827 0.932 37.425581 -83.640207 +41317 190 83 61234047 405754 23.643 0.157 37.445626 -83.153213 +41332 1184 618 109239456 287884 42.178 0.111 37.800748 -83.389223 +41339 10957 4911 913192667 6112948 352.586 2.360 37.516180 -83.269101 +41348 1219 531 99766430 435780 38.520 0.168 37.409359 -83.301029 +41352 677 314 54720859 41411 21.128 0.016 37.822932 -83.330290 +41360 500 233 44169120 237237 17.054 0.092 37.801388 -83.614611 +41365 501 282 36617017 74266 14.138 0.029 37.706784 -83.628873 +41366 20 14 3025521 23540 1.168 0.009 37.595031 -83.217780 +41367 179 78 13248995 86087 5.115 0.033 37.408690 -83.232979 +41385 470 211 51295281 28157 19.805 0.011 37.663801 -83.314769 +41390 52 22 2936234 85646 1.134 0.033 37.409391 -83.376921 +41397 64 33 7124810 3550 2.751 0.001 37.689048 -83.673356 +41408 445 181 18226851 762 7.037 0.000 37.778659 -83.284967 +41421 233 98 30404327 13171 11.739 0.005 37.995371 -83.193358 +41425 1138 550 80608795 206786 31.123 0.080 37.888469 -83.394303 +41464 722 334 38825366 59554 14.991 0.023 37.669803 -82.954481 +41465 11979 5330 676269786 1714400 261.109 0.662 37.705079 -83.104679 +41472 10985 4384 715625034 5847359 276.304 2.258 37.947391 -83.219757 +41501 23298 10869 520591265 450684 201.001 0.174 37.514701 -82.513614 +41503 570 290 3826761 0 1.478 0.000 37.664367 -82.287483 +41512 976 434 34374801 0 13.272 0.000 37.253714 -82.476079 +41513 590 296 29573573 7429 11.418 0.003 37.346646 -82.340427 +41514 3491 1614 131035345 1687 50.593 0.001 37.670612 -82.317100 +41517 109 55 2673820 11601 1.032 0.004 37.195397 -82.578639 +41519 1108 482 27573070 0 10.646 0.000 37.584040 -82.321568 +41522 5352 2540 168658014 5104 65.119 0.002 37.303497 -82.398684 +41524 384 191 20136545 0 7.775 0.000 37.417987 -82.231133 +41526 125 49 306315 0 0.118 0.000 37.433325 -82.510757 +41527 675 316 15580066 0 6.015 0.000 37.632121 -82.289018 +41528 999 468 19824842 0 7.654 0.000 37.548982 -82.139906 +41531 985 415 24321563 0 9.391 0.000 37.592806 -82.232756 +41534 273 118 4397433 0 1.698 0.000 37.277524 -82.476578 +41535 526 250 6100979 0 2.356 0.000 37.596357 -82.279672 +41537 5373 2528 144557884 246268 55.814 0.095 37.222620 -82.613734 +41538 97 67 492213 0 0.190 0.000 37.315580 -82.590072 +41539 1722 772 94472927 0 36.476 0.000 37.506832 -82.327132 +41540 302 143 25808958 0 9.965 0.000 37.390941 -82.334873 +41543 543 262 13346537 0 5.153 0.000 37.547898 -82.285498 +41544 931 402 29035643 0 11.211 0.000 37.593903 -82.174090 +41547 369 175 17505856 0 6.759 0.000 37.536055 -82.090741 +41548 862 451 43020511 1921598 16.610 0.742 37.392305 -82.269778 +41553 2288 1124 88517053 0 34.177 0.000 37.477137 -82.163613 +41554 1102 553 87103432 985911 33.631 0.381 37.436457 -82.289057 +41555 915 416 21354664 0 8.245 0.000 37.538033 -82.258488 +41557 1716 773 53909300 1360064 20.814 0.525 37.482067 -82.402869 +41558 809 371 37906902 0 14.636 0.000 37.538580 -82.209218 +41559 339 156 11657608 0 4.501 0.000 37.374430 -82.383098 +41560 384 190 16800297 0 6.487 0.000 37.395551 -82.578344 +41562 2807 1240 70581290 0 27.252 0.000 37.398710 -82.463611 +41563 445 212 14641871 24132 5.653 0.009 37.232192 -82.536634 +41564 1159 512 42992932 0 16.600 0.000 37.607594 -82.364783 +41566 714 299 35391075 0 13.665 0.000 37.403386 -82.201444 +41567 369 157 8534770 0 3.295 0.000 37.575019 -82.283322 +41568 1073 515 70911108 261 27.379 0.000 37.501616 -82.093744 +41571 639 302 49413899 0 19.079 0.000 37.627536 -82.435568 +41572 3754 1800 117952299 0 45.542 0.000 37.313498 -82.643581 +41601 755 369 11767930 163719 4.544 0.063 37.600073 -82.721784 +41602 819 393 9308146 846386 3.594 0.327 37.745909 -82.754891 +41603 1498 641 33727482 94199 13.022 0.036 37.570321 -82.703990 +41604 620 287 14218690 4791 5.490 0.002 37.383480 -82.660754 +41605 637 302 4186272 69684 1.616 0.027 37.550128 -82.624621 +41606 656 322 27129114 2981 10.475 0.001 37.336895 -82.734287 +41607 318 149 14877503 6204 5.744 0.002 37.625075 -82.856919 +41612 78 39 920024 0 0.355 0.000 37.354326 -82.723004 +41615 675 281 15102765 29223 5.831 0.011 37.537442 -82.692532 +41616 794 378 35423107 23041 13.677 0.009 37.568311 -82.879946 +41619 599 269 12899652 2379 4.981 0.001 37.483681 -82.735427 +41621 329 147 1737093 44882 0.671 0.017 37.626661 -82.731292 +41622 228 100 4214193 0 1.627 0.000 37.522691 -82.816952 +41630 1230 612 47648070 38599 18.397 0.015 37.467577 -82.798478 +41631 1106 492 30964381 7183 11.955 0.003 37.472836 -82.655511 +41632 614 281 82350439 74029 31.796 0.029 37.564908 -82.951759 +41635 3056 1418 53306876 130352 20.582 0.050 37.484370 -82.626066 +41636 984 459 25372697 2646 9.796 0.001 37.399150 -82.731808 +41640 1343 611 134441222 89552 51.908 0.035 37.471413 -82.952184 +41642 725 328 23890041 391955 9.224 0.151 37.592169 -82.648611 +41643 194 63 2195881 0 0.848 0.000 37.460203 -82.832233 +41645 1268 556 33671064 13962 13.000 0.005 37.523824 -82.795306 +41647 1815 815 47912457 11053 18.499 0.004 37.442267 -82.717672 +41649 2631 1259 60381279 256749 23.313 0.099 37.570949 -82.776712 +41650 534 250 8954819 0 3.457 0.000 37.354509 -82.683267 +41653 11451 5262 310995439 2128549 120.076 0.822 37.655082 -82.758210 +41655 896 410 42861343 66849 16.549 0.026 37.507205 -82.735442 +41659 520 243 6998356 49871 2.702 0.019 37.579616 -82.621948 +41660 802 414 17474230 1468 6.747 0.001 37.414098 -82.631727 +41663 384 156 4559583 84156 1.760 0.032 37.565904 -82.662177 +41666 908 450 23395786 91069 9.033 0.035 37.439031 -82.807592 +41667 720 310 20549759 2165 7.934 0.001 37.308123 -82.694618 +41669 865 353 9002938 0 3.476 0.000 37.331634 -82.715525 +41701 17252 7605 383014557 2234635 147.883 0.863 37.292881 -83.190550 +41712 380 174 13480982 146292 5.205 0.056 37.365957 -83.133498 +41713 51 26 381466 0 0.147 0.000 37.219388 -83.276435 +41714 418 229 73012985 49972 28.190 0.019 37.143467 -83.516892 +41719 1043 477 30464199 205179 11.762 0.079 37.306272 -83.257183 +41721 788 362 98714528 2272606 38.114 0.877 37.309057 -83.473220 +41722 1688 787 62128714 339879 23.988 0.131 37.369184 -83.115979 +41723 1537 636 53609487 183984 20.699 0.071 37.263257 -83.319126 +41725 174 81 3525454 0 1.361 0.000 37.339144 -83.035062 +41727 640 266 28856835 262655 11.142 0.101 37.377305 -83.278803 +41729 230 105 347282 107714 0.134 0.042 37.264628 -83.215515 +41731 1023 515 69451378 506482 26.815 0.196 37.095398 -83.079600 +41735 295 138 22574445 6692 8.716 0.003 37.015056 -83.097478 +41739 179 88 5726052 5567 2.211 0.002 37.324334 -83.120828 +41740 877 410 46293040 210361 17.874 0.081 37.364326 -83.072519 +41745 200 82 16454535 493714 6.353 0.191 37.340209 -83.433008 +41746 835 367 20471816 113312 7.904 0.044 37.214632 -83.095753 +41749 3556 1704 240149539 5720996 92.722 2.209 37.207210 -83.434495 +41751 289 140 1964953 175206 0.759 0.068 37.210858 -83.138607 +41754 460 188 11340061 305301 4.378 0.118 37.301380 -83.320849 +41759 397 189 13274585 534845 5.125 0.207 37.219807 -83.012593 +41760 35 18 99901 20153 0.039 0.008 37.205706 -83.076493 +41762 107 56 14559800 585266 5.622 0.226 37.264186 -83.478516 +41763 574 276 65445365 250023 25.269 0.097 37.066992 -83.150357 +41764 741 362 49414505 242464 19.079 0.094 37.116657 -83.254014 +41766 131 69 12748648 0 4.922 0.000 37.179868 -83.465731 +41772 277 140 81928209 187294 31.633 0.072 37.424293 -83.052958 +41773 1273 556 42143060 565790 16.272 0.218 37.231881 -83.026670 +41774 2659 1213 124688649 611657 48.143 0.236 37.139752 -83.135351 +41775 114 71 23774674 17536 9.179 0.007 37.099564 -83.346784 +41776 1509 689 77916003 540243 30.084 0.209 37.168293 -83.295015 +41777 947 434 100031390 166095 38.622 0.064 37.072346 -83.256322 +41804 720 314 34387055 204591 13.277 0.079 37.151503 -83.002154 +41810 502 254 6865813 0 2.651 0.000 37.185169 -82.673873 +41812 230 141 15785100 5911 6.095 0.002 37.254175 -82.745507 +41815 802 334 16618493 37520 6.416 0.014 37.160405 -82.798142 +41817 251 124 7347147 0 2.837 0.000 37.347483 -82.929809 +41819 392 214 45405660 3931 17.531 0.002 36.987109 -83.107011 +41821 537 278 62238911 230512 24.031 0.089 37.059123 -83.014762 +41822 2553 1163 78205369 92728 30.195 0.036 37.327714 -82.977183 +41824 1072 525 24286731 62862 9.377 0.024 37.191542 -82.873263 +41825 548 271 15604181 9202 6.025 0.004 37.229392 -82.708422 +41826 978 497 26236066 88706 10.130 0.034 37.163357 -82.912088 +41828 808 381 48887462 34549 18.876 0.013 37.288135 -82.787943 +41831 849 389 26023847 7269 10.048 0.003 37.387165 -82.953376 +41832 424 201 16579374 77268 6.401 0.030 37.148686 -82.959284 +41833 321 154 41540494 108311 16.039 0.042 37.025999 -82.985770 +41834 659 320 32036526 279001 12.369 0.108 37.252309 -82.955207 +41835 790 389 15362811 6881 5.932 0.003 37.221077 -82.667983 +41836 798 378 28045552 61086 10.828 0.024 37.237561 -82.892356 +41837 1284 568 34603501 36042 13.360 0.014 37.125150 -82.758347 +41838 548 247 20793132 98018 8.028 0.038 37.203757 -82.756689 +41839 1193 624 76302834 129046 29.461 0.050 37.403320 -82.894020 +41840 1111 559 9799918 5753 3.784 0.002 37.198987 -82.720878 +41843 949 458 38679400 29910 14.934 0.012 37.283517 -82.845386 +41844 1355 431 34338855 12481 13.258 0.005 37.314880 -82.866733 +41845 293 150 12439624 16117 4.803 0.006 37.141394 -82.901327 +41847 617 295 34859770 635862 13.459 0.246 37.201844 -82.967693 +41848 80 31 8493154 73118 3.279 0.028 37.093381 -82.947920 +41849 193 96 2629005 1547 1.015 0.001 37.175839 -82.734853 +41855 696 327 23109366 43994 8.923 0.017 37.190487 -82.784701 +41858 8064 3727 228053668 933783 88.052 0.361 37.136055 -82.854849 +41859 349 170 19324140 2263 7.461 0.001 37.387925 -82.771916 +41861 108 54 5630826 0 2.174 0.000 37.405758 -82.821902 +41862 952 437 53678923 68163 20.726 0.026 37.342758 -82.773252 +42001 27960 13596 189856755 13535016 73.304 5.226 37.030572 -88.709400 +42003 29683 13991 180279807 10311759 69.606 3.981 37.005344 -88.581285 +42020 2330 1002 66008123 303296 25.486 0.117 36.692634 -88.289872 +42021 1505 724 149343315 18419501 57.662 7.112 36.822560 -89.027668 +42022 104 51 1273221 672 0.492 0.000 37.144988 -88.944769 +42023 2422 1210 258901002 5350756 99.962 2.066 36.872550 -88.990221 +42024 1490 722 117821948 11227198 45.491 4.335 37.077408 -89.050311 +42025 19305 9307 514604263 50925220 198.690 19.662 36.856894 -88.335064 +42027 2291 998 116922911 1409996 45.144 0.544 36.916671 -88.627686 +42028 635 313 70221583 1382331 27.113 0.534 37.238907 -88.336844 +42029 6321 2866 120531406 5901781 46.537 2.279 37.006472 -88.391960 +42031 3418 1620 389446808 4996122 150.366 1.929 36.685748 -88.991397 +42032 192 95 4212650 1242950 1.627 0.480 36.775917 -89.108099 +42035 1068 462 72828646 819675 28.119 0.316 36.900226 -88.840382 +42036 1167 533 68734649 284225 26.539 0.110 36.711521 -88.214544 +42037 29 35 2644129 0 1.021 0.000 37.172781 -88.187707 +42038 5298 2851 226723370 29285569 87.538 11.307 37.048002 -88.027242 +42039 1751 789 131957556 2666941 50.949 1.030 36.788709 -88.825434 +42040 1082 494 84990658 546203 32.815 0.211 36.625296 -88.497073 +42041 4627 2405 285196261 1709219 110.115 0.660 36.550373 -88.877352 +42044 3404 2266 61687414 33259847 23.818 12.842 36.959185 -88.263311 +42045 2089 1201 93118406 10114803 35.953 3.905 37.063997 -88.263094 +42047 192 110 56353374 211374 21.758 0.082 37.295041 -88.399352 +42048 2147 1182 68043358 10457530 26.272 4.038 36.765705 -88.228582 +42049 1480 723 110140982 210540 42.526 0.081 36.521138 -88.333756 +42050 3256 1483 300888987 29863128 116.174 11.530 36.555421 -89.219274 +42051 2840 1266 145367226 1457048 56.127 0.563 36.850728 -88.647174 +42053 4931 2189 302381291 32505975 116.750 12.551 37.112649 -88.877823 +42054 984 432 75506363 771772 29.153 0.298 36.714454 -88.433457 +42055 2609 1753 116616845 19317186 45.026 7.458 37.075226 -88.174049 +42056 1982 910 140475092 11592672 54.238 4.476 37.107275 -88.986746 +42058 2336 1044 42468072 17052909 16.397 6.584 37.058337 -88.465707 +42060 130 66 2179661 38504 0.842 0.015 36.965854 -88.828130 +42061 55 36 917298 12637 0.354 0.005 36.882838 -88.766366 +42064 8421 4090 775991345 27872656 299.612 10.762 37.357138 -88.089515 +42066 23182 10463 561564599 6202416 216.821 2.395 36.732532 -88.639882 +42069 1100 499 67865286 365087 26.203 0.141 36.918791 -88.756493 +42071 29655 14344 549414899 29731018 212.130 11.479 36.624585 -88.284907 +42076 1213 868 109110317 34996257 42.128 13.512 36.571455 -88.106951 +42078 1852 949 222471448 2541765 85.897 0.981 37.277815 -88.286799 +42079 1426 681 134955348 557915 52.107 0.215 36.567762 -88.588811 +42081 2203 1111 302884817 42383362 116.944 16.364 37.226678 -88.416633 +42082 1845 874 73138724 1600063 28.239 0.618 36.919858 -88.500423 +42083 446 223 74804186 2140187 28.882 0.826 37.161098 -88.287818 +42084 83 53 699171 1401 0.270 0.001 37.434663 -88.245662 +42085 918 441 73957211 309526 28.555 0.120 36.569521 -88.800945 +42086 4036 1806 86655365 8153275 33.458 3.148 37.088547 -88.771835 +42087 2419 1149 181533021 8188017 70.090 3.161 36.975903 -88.996318 +42088 2656 1157 164437334 1301694 63.490 0.503 36.621222 -88.747697 +42101 55648 22143 733251061 8632056 283.110 3.333 37.058096 -86.463061 +42102 88 38 57500 0 0.022 0.000 37.003731 -86.418234 +42103 18936 8153 183544035 2593668 70.867 1.001 36.945656 -86.281066 +42104 29610 13094 145332451 907455 56.113 0.350 36.883066 -86.447750 +42120 2588 1149 116988877 435669 45.170 0.168 36.672853 -86.262112 +42122 4368 1713 97739076 1323737 37.737 0.511 36.857070 -86.353679 +42123 840 435 61122802 2368476 23.600 0.914 36.816327 -85.984847 +42124 55 26 979488 0 0.378 0.000 36.870540 -85.643964 +42127 6199 2828 229301873 2116718 88.534 0.817 37.113569 -85.918463 +42129 7026 3345 525911831 2082081 203.056 0.804 36.991218 -85.583379 +42130 175 77 8772080 36485 3.387 0.014 36.925865 -85.786306 +42133 1370 769 183808131 2064137 70.969 0.797 36.725886 -85.957537 +42134 16785 7251 549580835 5266327 212.194 2.033 36.724520 -86.564467 +42140 1264 596 106721683 1032755 41.205 0.399 36.656541 -85.828893 +42141 30349 13814 718963741 22309450 277.593 8.614 36.947551 -85.918331 +42151 275 141 71264908 580251 27.516 0.224 36.649748 -85.553812 +42153 326 151 42200484 180250 16.294 0.070 36.662368 -86.066301 +42154 691 303 55134438 528776 21.288 0.204 37.042605 -85.731320 +42156 254 159 13829079 3467658 5.339 1.339 36.851328 -86.053664 +42157 437 174 45546493 72781 17.586 0.028 36.781415 -85.819690 +42159 1195 514 73210472 959323 28.267 0.370 36.993145 -86.247946 +42160 1992 830 103683725 414195 40.033 0.160 37.106544 -86.035699 +42163 56 26 2288423 0 0.884 0.000 37.079060 -86.134145 +42164 16277 7612 652854199 17858616 252.068 6.895 36.775664 -86.181864 +42166 2314 1036 185757514 537341 71.721 0.207 36.880186 -85.708775 +42167 8145 3856 535796344 4714713 206.872 1.820 36.720987 -85.674109 +42170 1403 570 84546232 664115 32.643 0.256 36.840553 -86.576675 +42171 6841 2863 262710826 1361848 101.433 0.526 37.036190 -86.170460 +42202 2389 1085 158638851 1829816 61.251 0.706 36.689923 -86.847555 +42204 657 275 92745931 1405588 35.809 0.543 36.684754 -87.076167 +42206 5407 2276 306790922 1546812 118.453 0.597 36.886677 -86.743019 +42207 1207 760 50014887 4219711 19.311 1.629 37.293995 -86.266888 +42210 4236 2029 372578096 3338701 143.853 1.289 37.206716 -86.252303 +42211 13422 7408 726971902 49393841 280.685 19.071 36.817943 -87.838269 +42214 682 289 50312691 671695 19.426 0.259 37.138077 -85.683348 +42215 1300 554 151686999 791038 58.567 0.305 36.996009 -87.667395 +42217 4117 1832 412776614 3979046 159.374 1.536 37.040667 -87.458463 +42220 6844 2903 458536402 2661045 177.042 1.027 36.893234 -87.178636 +42223 19837 4218 39224142 0 15.145 0.000 36.628264 -87.462873 +42232 812 333 70235720 335079 27.118 0.129 36.872641 -87.655039 +42234 2469 1011 153516302 1479749 59.273 0.571 36.711610 -87.180194 +42236 929 406 172025555 1828106 66.419 0.706 36.716286 -87.614237 +42240 42479 19027 696096978 6305991 268.765 2.435 36.880182 -87.463142 +42254 209 110 13149611 20680 5.077 0.008 36.660877 -87.654367 +42256 5028 2754 494719085 6928852 191.012 2.675 37.000918 -86.937440 +42259 1281 857 85061521 2531181 32.842 0.977 37.243161 -86.148284 +42261 10602 4793 762751982 8718613 294.500 3.366 37.217107 -86.671334 +42262 8396 3720 93290670 545199 36.020 0.211 36.679919 -87.449417 +42265 820 363 133447469 1197487 51.524 0.462 36.739223 -87.004306 +42266 2590 1011 195077626 1268242 75.320 0.490 36.744319 -87.357236 +42273 443 241 47314880 1184956 18.268 0.458 37.215930 -86.843897 +42274 2373 947 97668346 510597 37.710 0.197 36.950235 -86.598782 +42275 883 402 113933658 662520 43.990 0.256 37.217046 -86.456967 +42276 14471 6592 522176262 2850391 201.613 1.101 36.857008 -86.879778 +42280 484 204 57129539 309201 22.058 0.119 36.956981 -87.099164 +42285 375 170 21297548 0 8.223 0.000 37.264060 -86.297848 +42286 1291 526 148792207 1013761 57.449 0.391 36.729179 -87.289840 +42301 42440 18960 442888417 6453187 171.000 2.492 37.735778 -87.249397 +42303 38909 16496 124084216 1372554 47.909 0.530 37.758954 -87.046199 +42320 8205 3481 381586639 12261293 147.331 4.734 37.335491 -86.861075 +42321 327 139 3975841 51948 1.535 0.020 37.165489 -87.055061 +42322 47 20 156371 0 0.060 0.000 37.613648 -87.395313 +42323 793 358 5205515 13579 2.010 0.005 37.173379 -87.035443 +42324 1276 578 94584394 1277419 36.519 0.493 37.134997 -87.004577 +42325 2028 915 78461803 2790899 30.294 1.078 37.327891 -87.274016 +42326 460 188 34585980 2370379 13.354 0.915 37.226524 -87.008142 +42327 4037 1765 322165524 4849285 124.389 1.872 37.580530 -87.297311 +42328 1389 592 166815579 4576413 64.408 1.767 37.430627 -87.045245 +42330 9386 3854 224182749 9681458 86.557 3.738 37.321824 -87.117943 +42332 271 124 1561763 5482 0.603 0.002 37.250429 -87.088665 +42333 1111 463 82476451 1349208 31.844 0.521 37.364262 -86.758669 +42337 2026 965 128097982 5073557 49.459 1.959 37.198542 -86.948897 +42338 88 39 8775511 87465 3.388 0.034 37.544028 -86.800687 +42339 800 416 77598152 865748 29.961 0.334 37.094248 -86.974733 +42343 1782 853 184860746 768009 71.375 0.297 37.635989 -86.700827 +42344 856 394 90157173 2488970 34.810 0.961 37.269654 -87.317827 +42345 11747 5057 395528564 4606125 152.714 1.778 37.135863 -87.183717 +42347 6152 2648 320400606 2772742 123.707 1.071 37.525035 -86.882159 +42348 4810 2059 288735873 14127542 111.482 5.455 37.830706 -86.767657 +42349 1503 638 159704518 972687 61.662 0.376 37.422583 -86.676600 +42350 1433 632 107749284 1455363 41.602 0.562 37.455012 -87.186913 +42351 3851 1673 177823375 15322094 68.658 5.916 37.898577 -86.866633 +42352 2060 953 58962195 601554 22.765 0.232 37.514811 -87.085900 +42354 252 103 2241874 17846 0.866 0.007 37.376776 -86.930719 +42355 1852 766 73986950 1072744 28.567 0.414 37.852948 -86.991155 +42356 83 0 64462 0 0.025 0.000 37.693255 -87.324109 +42361 492 238 90526241 906002 34.952 0.350 37.517166 -86.683941 +42366 5863 2253 208736918 1695120 80.594 0.654 37.723668 -86.937610 +42367 667 317 2753839 1176 1.063 0.000 37.239421 -87.159905 +42368 1325 564 109626302 459612 42.327 0.177 37.702946 -86.754071 +42369 331 152 11104304 210640 4.287 0.081 37.358648 -87.003767 +42370 28 17 276436 0 0.107 0.000 37.449020 -86.738928 +42371 476 247 98435152 2036337 38.006 0.786 37.509858 -87.289967 +42372 1854 815 96454264 1152079 37.241 0.445 37.404110 -87.272953 +42374 277 123 10427546 166140 4.026 0.064 37.325579 -87.156766 +42376 5799 2324 258957361 2513924 99.984 0.971 37.617483 -87.086437 +42378 3339 1304 173544683 1234543 67.006 0.477 37.667286 -86.863261 +42404 2569 1114 228764162 2827273 88.326 1.092 37.474356 -87.838413 +42406 3555 1459 274621796 2243737 106.032 0.866 37.762139 -87.738240 +42408 6737 3178 333172894 5367286 128.639 2.072 37.179537 -87.692699 +42409 2586 1044 224114014 1547073 86.531 0.597 37.538637 -87.692934 +42410 1460 732 6809194 294548 2.629 0.114 37.278539 -87.511771 +42411 1656 815 225201595 1479672 86.951 0.571 37.196036 -88.012512 +42413 3118 1219 135247330 1002640 52.219 0.387 37.448656 -87.467001 +42420 38192 17011 488134901 23160091 188.470 8.942 37.810607 -87.515005 +42431 26916 12321 431447688 15349127 166.583 5.926 37.334473 -87.481387 +42436 1030 474 48444657 373123 18.705 0.144 37.373950 -87.575537 +42437 8324 3104 449297958 23032781 173.475 8.893 37.666657 -87.938070 +42440 748 342 2586720 5933 0.999 0.002 37.240706 -87.464606 +42441 1594 679 154332452 3165011 59.588 1.222 37.360691 -87.666450 +42442 3504 1529 158272341 2021507 61.109 0.781 37.163858 -87.495808 +42445 11331 5418 686337120 6739823 264.996 2.602 37.133339 -87.851740 +42450 4063 1996 154363219 4010913 59.600 1.549 37.395870 -87.763402 +42451 783 328 102369055 14667542 39.525 5.663 37.884533 -87.390707 +42452 2141 894 138739149 1891269 53.567 0.730 37.686512 -87.531672 +42453 532 255 42396013 600187 16.369 0.232 37.157854 -87.590712 +42455 3376 1348 197698906 2898443 76.332 1.119 37.593375 -87.542551 +42456 1690 715 173078571 1365947 66.826 0.527 37.507705 -87.496097 +42458 1151 462 42676189 1612578 16.477 0.623 37.839563 -87.420942 +42459 4423 2046 312923086 10098515 120.820 3.899 37.566806 -88.019048 +42461 1481 668 93753616 18972031 36.198 7.325 37.797397 -87.889216 +42462 1319 548 114428202 2049347 44.181 0.791 37.743982 -87.801718 +42463 156 75 5466551 157695 2.111 0.061 37.472620 -87.869452 +42464 1799 788 158083615 4722682 61.036 1.823 37.181250 -87.356148 +42501 17592 8533 517418879 9986083 199.777 3.856 37.056193 -84.450896 +42503 22894 10497 334934689 10401482 129.319 4.016 37.155209 -84.524653 +42516 463 225 34840240 50407 13.452 0.019 37.222051 -84.786116 +42518 2914 2131 65732706 5422310 25.380 2.094 36.942370 -84.632646 +42519 3191 2648 127693988 7715188 49.303 2.979 36.955324 -84.534998 +42528 1524 700 126878441 943060 48.988 0.364 37.181526 -85.023400 +42533 802 359 3798745 3221 1.467 0.001 37.072259 -84.592621 +42539 10026 4635 548907114 1968412 211.934 0.760 37.308926 -84.951008 +42541 531 254 40080620 272195 15.475 0.105 37.359577 -84.794929 +42544 5843 3994 377226651 39780123 145.648 15.359 37.029948 -84.815125 +42553 5284 2294 161162764 1999156 62.225 0.772 37.166676 -84.697266 +42565 735 365 69445758 76197 26.813 0.029 37.148862 -84.889661 +42566 660 299 44335536 71167 17.118 0.027 37.278605 -84.783143 +42567 6007 2714 237140723 1049099 91.561 0.405 37.265935 -84.604696 +42602 10216 5414 495958106 20669280 191.491 7.980 36.739629 -85.110438 +42603 130 69 9479754 8659 3.660 0.003 36.782248 -85.029028 +42629 4953 3114 258061416 52669776 99.638 20.336 36.912633 -85.137744 +42631 134 60 336808 0 0.130 0.000 36.740390 -84.480987 +42633 20065 10084 1126436078 50398979 434.919 19.459 36.802011 -84.830440 +42634 1565 685 238653067 2917691 92.144 1.127 36.882843 -84.431820 +42635 5103 1494 60575884 494390 23.388 0.191 36.680268 -84.395984 +42638 207 93 3312940 50280 1.279 0.019 36.674414 -84.470460 +42642 12573 6346 362114909 9725583 139.813 3.755 37.058681 -85.035151 +42647 4086 1955 360478452 2797841 139.182 1.080 36.685874 -84.628434 +42649 2326 1080 185966191 806901 71.802 0.312 36.622681 -84.429108 +42653 4619 2017 205430342 3334210 79.317 1.287 36.783103 -84.453492 +42701 48194 20611 410836962 4465724 158.625 1.724 37.703827 -85.836999 +42712 1855 823 135999667 958071 52.510 0.370 37.518754 -86.108877 +42713 1641 814 105768476 297249 40.837 0.115 37.383130 -85.883731 +42715 347 174 40111303 33030 15.487 0.013 36.954929 -85.395478 +42716 1582 712 93762695 286971 36.202 0.111 37.479953 -85.606104 +42717 6558 3561 774721980 17648133 299.122 6.814 36.788363 -85.378995 +42718 24312 10688 653872769 14824183 252.462 5.724 37.385228 -85.373081 +42721 3982 1852 377406461 3097226 145.717 1.196 37.423011 -86.499353 +42722 714 318 45040095 1236929 17.390 0.478 37.276586 -85.716132 +42724 4714 1977 199325001 2074554 76.960 0.801 37.675918 -86.070835 +42726 4667 3286 261690941 15790536 101.039 6.097 37.419930 -86.151169 +42728 15925 7288 828291640 24680800 319.805 9.529 37.117103 -85.289858 +42729 1617 1343 134427427 8030672 51.903 3.101 37.306470 -86.096501 +42731 341 156 29044476 126250 11.214 0.049 36.847822 -85.557382 +42732 2120 861 150825812 622748 58.234 0.240 37.588954 -86.133317 +42733 1454 663 150291687 3070948 58.028 1.186 37.343603 -85.186430 +42740 1973 825 82139354 1361177 31.714 0.526 37.586199 -85.948305 +42741 480 223 38751631 59462 14.962 0.023 36.999228 -85.238426 +42743 8869 4240 529688312 5416131 204.514 2.091 37.227403 -85.532234 +42746 1892 824 120944020 1390592 46.697 0.537 37.212381 -85.732393 +42748 8706 3747 341035710 3466334 131.675 1.338 37.571623 -85.707146 +42749 5245 2382 236226039 2805142 91.207 1.083 37.184614 -85.878231 +42753 743 365 66345795 3242046 25.616 1.252 37.217403 -85.184826 +42754 15349 7275 484001133 14823313 186.874 5.723 37.472934 -86.316299 +42757 2974 1349 212563404 1880969 82.071 0.726 37.402832 -85.719536 +42758 139 58 1387535 48803 0.536 0.019 37.374401 -85.198742 +42762 422 183 24228723 191883 9.355 0.074 37.455344 -86.393150 +42764 559 265 40472679 38568 15.627 0.015 37.429592 -85.620545 +42765 5840 2608 305072029 2811164 117.789 1.085 37.332746 -85.935197 +42776 2736 1161 175181115 1440121 67.638 0.556 37.514508 -85.927093 +42782 953 465 91878999 1119653 35.475 0.432 37.336802 -85.643070 +42784 2685 1172 154772351 952004 59.758 0.368 37.450820 -85.934803 +42788 310 133 21454998 474737 8.284 0.183 37.529664 -86.027886 +43001 2400 946 68738185 506555 26.540 0.196 40.088073 -82.613984 +43002 2262 1259 2574923 5688 0.994 0.002 40.062362 -83.170873 +43003 2917 1163 87746040 2734513 33.879 1.056 40.412257 -82.979342 +43004 22727 9518 33511303 507946 12.939 0.196 40.017344 -82.798786 +43005 174 67 2156201 4238 0.833 0.002 40.286152 -82.276823 +43006 822 326 61916929 154451 23.906 0.060 40.459722 -82.149286 +43008 2479 1329 3875699 1125148 1.496 0.434 39.933890 -82.480911 +43009 2135 799 89275647 45588 34.470 0.018 40.171539 -83.639488 +43010 272 104 661470 0 0.255 0.000 39.999963 -83.622593 +43011 7491 2795 213622021 447328 82.480 0.173 40.302997 -82.679662 +43013 1201 471 49783828 111594 19.222 0.043 40.233121 -82.688323 +43014 3632 1380 170662178 707544 65.893 0.273 40.466759 -82.262514 +43015 48107 19472 323657784 10007182 124.965 3.864 40.297786 -83.060181 +43016 31306 13559 46852285 426829 18.090 0.165 40.097460 -83.150103 +43017 37626 14756 43714850 1153631 16.878 0.445 40.116621 -83.130500 +43019 8700 3436 273927004 3513472 105.764 1.357 40.492940 -82.578515 +43021 10301 3656 92072986 7750901 35.550 2.993 40.191554 -82.882787 +43022 4161 1054 107092973 707682 41.349 0.273 40.345039 -82.339811 +43023 13231 4423 134340453 839967 51.869 0.324 40.078895 -82.536394 +43025 5306 2467 90394159 2062024 34.901 0.796 39.970889 -82.517373 +43026 54017 20986 90842752 1105727 35.075 0.427 40.020850 -83.194413 +43028 7537 3542 138466105 2823607 53.462 1.090 40.401712 -82.297266 +43029 664 206 61174161 34349 23.619 0.013 40.097477 -83.440642 +43030 114 46 238873 0 0.092 0.000 39.961458 -82.415819 +43031 12318 4945 230759143 834765 89.097 0.322 40.160842 -82.665157 +43032 77 39 126538 0 0.049 0.000 40.328624 -82.958823 +43033 380 149 1149665 2813 0.444 0.001 39.961408 -82.604328 +43035 24721 8819 50738186 8034789 19.590 3.102 40.188543 -82.995118 +43036 258 123 552660 9900 0.213 0.004 40.352201 -83.261098 +43037 535 217 11980096 74832 4.626 0.029 40.284469 -82.323443 +43040 31790 11647 432965888 6160581 167.169 2.379 40.261002 -83.359687 +43044 5528 2149 203403408 121028 78.534 0.047 40.054708 -83.550419 +43045 1953 740 97926382 1207844 37.810 0.466 40.168381 -83.458675 +43046 3396 1818 65793199 4907698 25.403 1.895 39.896382 -82.541954 +43050 29050 12731 403866666 1770567 155.934 0.684 40.374153 -82.495551 +43054 20566 8449 51971986 677688 20.066 0.262 40.083073 -82.798908 +43055 59605 26781 292176948 2215144 112.810 0.855 40.119897 -82.377784 +43056 17439 7246 222387924 1916539 85.864 0.740 40.008493 -82.340989 +43060 2480 1061 66410450 85533 25.641 0.033 40.222353 -83.571542 +43061 3967 1528 117022091 1343289 45.182 0.519 40.289506 -83.203052 +43062 27644 10786 204088613 963921 78.799 0.372 40.007079 -82.682268 +43064 12580 4755 266729643 1560535 102.985 0.603 40.098119 -83.283763 +43065 38821 14412 74791991 1858736 28.877 0.718 40.177540 -83.094187 +43066 1328 512 99733613 251354 38.507 0.097 40.391290 -83.171969 +43067 1591 625 80873999 1371109 31.226 0.529 40.340479 -83.468202 +43068 51836 22586 50128969 309615 19.355 0.120 39.956185 -82.784665 +43070 133 54 395484 0 0.153 0.000 40.215778 -83.957945 +43071 2351 959 87899298 790562 33.938 0.305 40.180695 -82.359463 +43072 5948 2387 190506170 1663100 73.555 0.642 40.119674 -83.956704 +43074 11655 4488 224497623 1581127 86.679 0.610 40.270014 -82.850669 +43076 9051 4164 185668206 4014046 71.687 1.550 39.897004 -82.398750 +43077 258 91 488084 15704 0.188 0.006 40.137050 -83.341267 +43078 20885 9134 393685794 979910 152.003 0.378 40.117639 -83.783790 +43080 5498 2186 190903225 556036 73.708 0.215 40.240586 -82.429738 +43081 55991 24034 63776192 2924779 24.624 1.129 40.110443 -82.890646 +43082 29946 11084 57289047 3270658 22.119 1.263 40.149185 -82.884874 +43084 841 307 55869829 70861 21.571 0.027 40.148352 -83.556715 +43085 23258 10228 19106127 218765 7.377 0.084 40.100924 -83.013402 +43101 380 175 708656 2070 0.274 0.001 39.464519 -82.746130 +43102 4512 1755 153794817 202886 59.381 0.078 39.640398 -82.762562 +43103 10697 4280 216793129 1509598 83.704 0.583 39.732375 -82.935709 +43105 8147 3261 148398547 38825 57.297 0.015 39.866760 -82.612369 +43106 1685 659 102423764 0 39.546 0.000 39.642318 -83.421179 +43107 3153 1279 77586425 618543 29.956 0.239 39.692825 -82.414529 +43109 118 44 402740 5241 0.155 0.002 39.916675 -82.831944 +43110 33847 14308 130039952 798687 50.209 0.308 39.826682 -82.800074 +43111 225 93 1041442 5834 0.402 0.002 39.502073 -82.242722 +43112 4617 1775 90292869 141726 34.862 0.055 39.797808 -82.704620 +43113 23717 10077 426008147 3609129 164.483 1.393 39.592553 -82.963776 +43115 1321 541 124152219 180788 47.935 0.070 39.491771 -83.150971 +43116 1448 487 2555790 0 0.987 0.000 39.771637 -83.062012 +43117 73 28 50516 0 0.020 0.000 39.768789 -83.206122 +43119 27698 10560 82337436 821908 31.791 0.317 39.940928 -83.205719 +43123 58424 23657 154159531 1715695 59.521 0.662 39.869489 -83.114347 +43125 12161 5539 81381979 1686460 31.422 0.651 39.838052 -82.887941 +43126 326 150 1193664 28924 0.461 0.011 39.815503 -83.165765 +43127 283 114 1499575 67428 0.579 0.026 39.480597 -82.321987 +43128 2309 1039 123200073 126436 47.568 0.049 39.659722 -83.594024 +43130 59570 25262 419283829 1931901 161.886 0.746 39.696616 -82.614164 +43135 4445 2014 246847633 449895 95.308 0.174 39.468184 -82.693420 +43136 460 226 719125 0 0.278 0.000 39.801317 -82.812481 +43137 2388 1087 77486237 4343765 29.918 1.677 39.808840 -82.987481 +43138 18437 8270 456489986 3181409 176.252 1.228 39.518348 -82.414090 +43140 24066 8189 575490587 1804360 222.198 0.697 39.879858 -83.429006 +43142 111 54 202223 0 0.078 0.000 39.593715 -83.587259 +43143 5694 2433 344230264 3489024 132.908 1.347 39.712707 -83.288346 +43144 477 229 18194634 54698 7.025 0.021 39.528775 -82.193959 +43145 1918 836 139605418 2348309 53.902 0.907 39.564942 -83.259784 +43146 12369 3389 206731981 2113018 79.820 0.816 39.773521 -83.136925 +43147 38440 13728 75511140 83562 29.155 0.032 39.897778 -82.744020 +43148 2220 880 64330826 81147 24.838 0.031 39.820316 -82.499992 +43149 2552 1197 141655526 289269 54.694 0.112 39.542972 -82.577874 +43150 2482 943 68583123 1337005 26.480 0.516 39.777495 -82.406170 +43151 322 127 753044 0 0.291 0.000 39.732952 -83.476424 +43152 921 525 112652153 436552 43.495 0.169 39.395448 -82.615799 +43153 971 393 136611420 6053 52.746 0.002 39.743695 -83.556821 +43154 3150 1187 64162560 174901 24.773 0.068 39.599871 -82.829414 +43155 2543 1352 78389965 1129308 30.267 0.436 39.634641 -82.528905 +43156 242 97 876419 0 0.338 0.000 39.553520 -82.776295 +43157 610 240 893298 0 0.345 0.000 39.842653 -82.546206 +43158 268 113 5281738 22995 2.039 0.009 39.449001 -82.357566 +43160 22305 9866 556995764 689965 215.057 0.266 39.526516 -83.441323 +43162 6926 2796 120911012 103271 46.684 0.040 39.949398 -83.308394 +43164 2203 845 145886975 535451 56.327 0.207 39.585238 -83.118396 +43201 35495 16214 7984237 55 3.083 0.000 39.990830 -82.999946 +43202 20251 10613 6501622 153625 2.510 0.059 40.019812 -83.015100 +43203 8108 5062 3822175 0 1.476 0.000 39.973084 -82.969026 +43204 42104 18901 23307543 820102 8.999 0.317 39.961292 -83.081964 +43205 12272 7306 6144054 52912 2.372 0.020 39.957019 -82.962071 +43206 21864 11995 7778542 3522 3.003 0.001 39.942452 -82.974175 +43207 45144 20217 60393119 2514672 23.318 0.971 39.894679 -82.962832 +43209 27228 12442 16143071 256187 6.233 0.099 39.953616 -82.930721 +43210 9432 414 4003189 185642 1.546 0.072 40.005435 -83.023227 +43211 21600 10338 12215307 35845 4.716 0.014 40.011814 -82.970532 +43212 18551 10720 9279523 165147 3.583 0.064 39.987145 -83.042824 +43213 30444 15693 23323368 234794 9.005 0.091 39.966873 -82.862134 +43214 24650 13169 17423062 213372 6.727 0.082 40.051734 -83.016269 +43215 12790 8739 13139584 1577865 5.073 0.609 39.966856 -83.012960 +43217 2602 903 10629372 899 4.104 0.000 39.816420 -82.922770 +43219 27123 12202 43644505 334844 16.851 0.129 40.006193 -82.921346 +43220 24989 12419 17631261 368686 6.807 0.142 40.049153 -83.074244 +43221 31265 14175 24192333 891066 9.341 0.344 40.023112 -83.076127 +43222 4617 2162 3601555 165953 1.391 0.064 39.961192 -83.035484 +43223 27366 11046 26072358 2134329 10.067 0.824 39.927633 -83.033424 +43224 38699 18466 21670501 108541 8.367 0.042 40.042660 -82.964856 +43227 21340 10140 10295564 23644 3.975 0.009 39.944059 -82.890437 +43228 50737 23179 52420883 463414 20.240 0.179 39.966378 -83.125661 +43229 46347 21920 22820924 161957 8.811 0.063 40.085870 -82.978198 +43230 51161 22620 54205431 856103 20.929 0.331 40.035763 -82.870875 +43231 19685 8494 11136142 124392 4.300 0.048 40.079333 -82.934777 +43232 42201 19307 31746173 536332 12.257 0.207 39.921124 -82.870182 +43235 38493 18199 34933370 651742 13.488 0.252 40.118363 -83.027626 +43240 3469 1753 6485598 18496 2.504 0.007 40.144858 -82.982863 +43302 54790 22966 505276210 599126 195.088 0.231 40.599809 -83.128808 +43310 3104 1480 165973854 2077781 64.083 0.802 40.535325 -83.786442 +43311 19240 8440 263032677 767215 101.557 0.296 40.365633 -83.756432 +43314 3173 1315 144572638 0 55.820 0.000 40.649148 -82.959411 +43315 7046 2877 209839694 125092 81.020 0.048 40.483968 -82.874359 +43316 6041 2596 186389151 162656 71.965 0.063 40.954177 -83.380698 +43317 168 65 521643 17947 0.201 0.007 40.474727 -82.680654 +43318 3864 1482 176558364 169023 68.170 0.065 40.306812 -83.912640 +43319 1040 436 54184392 39529 20.921 0.015 40.302682 -83.575120 +43320 1588 646 85811494 0 33.132 0.000 40.588536 -82.898039 +43321 267 118 1846878 0 0.713 0.000 40.457343 -82.829783 +43322 374 155 841990 0 0.325 0.000 40.532181 -83.207840 +43323 680 280 96250534 477485 37.163 0.184 40.729183 -83.247809 +43324 2817 1828 73579796 4871990 28.409 1.881 40.444533 -83.813789 +43326 13611 5943 476874542 333487 184.122 0.129 40.639365 -83.614912 +43330 118 56 279091 0 0.108 0.000 40.813493 -83.419408 +43331 4485 3938 80440467 12056385 31.058 4.655 40.517943 -83.921643 +43332 2323 919 163813458 39051 63.249 0.015 40.590903 -83.371544 +43333 894 350 78767133 41914 30.412 0.016 40.443022 -83.924616 +43334 6651 2566 171057237 151624 66.046 0.059 40.399755 -82.798877 +43336 39 37 208906 0 0.081 0.000 40.290833 -83.582332 +43337 1108 439 89721529 33729 34.642 0.013 40.681312 -83.266637 +43338 10489 4489 248737593 1189766 96.038 0.459 40.564167 -82.760333 +43340 1721 639 124375623 283674 48.022 0.110 40.543906 -83.475995 +43341 907 374 54787755 0 21.154 0.000 40.596568 -83.315294 +43342 3228 1376 110626432 359405 42.713 0.139 40.471236 -83.183980 +43343 1505 609 88509339 9785 34.174 0.004 40.309159 -83.978712 +43344 5677 2343 250575572 1664876 96.748 0.643 40.430934 -83.344615 +43345 920 345 75668801 0 29.216 0.000 40.511200 -83.583824 +43347 1530 595 76222429 0 29.430 0.000 40.477854 -83.659580 +43348 1984 1727 5496193 1315719 2.122 0.508 40.462671 -83.889132 +43351 10436 4663 402536143 1045028 155.420 0.403 40.825480 -83.303252 +43356 1103 472 55450009 65007 21.409 0.025 40.465076 -83.032615 +43357 4763 1900 177390620 218351 68.491 0.084 40.253579 -83.746806 +43358 2521 1011 162616910 927803 62.787 0.358 40.414555 -83.537653 +43359 819 347 61787823 0 23.856 0.000 40.873493 -83.454880 +43360 1593 726 77420650 130829 29.892 0.051 40.333140 -83.643522 +43402 31327 14777 289332248 2200414 111.712 0.850 41.417547 -83.656646 +43403 5004 8 531800 0 0.205 0.000 41.376979 -83.637118 +43406 1777 764 49559795 5760 19.135 0.002 41.333897 -83.433071 +43407 639 256 38078195 0 14.702 0.000 41.277832 -83.249407 +43408 269 111 1696864 0 0.655 0.000 41.571832 -83.363462 +43410 10403 4371 135454580 625769 52.299 0.242 41.311870 -82.957585 +43412 4362 1796 74793046 1969525 28.878 0.760 41.627632 -83.320350 +43413 1407 534 83442809 43891 32.217 0.017 41.243222 -83.651590 +43416 2891 1265 71170960 296541 27.479 0.114 41.483937 -83.267229 +43420 30579 13708 349118440 10293534 134.795 3.974 41.358062 -83.110264 +43430 4783 1996 65677110 132192 25.358 0.051 41.522208 -83.370037 +43431 4752 1938 125730951 1542158 48.545 0.595 41.390755 -83.335312 +43432 1366 536 58970363 45081 22.769 0.017 41.563259 -83.252471 +43433 95 47 1296347 0 0.501 0.000 41.504694 -82.880261 +43434 101 48 54927 0 0.021 0.000 41.693022 -83.444689 +43435 1532 631 92914171 0 35.874 0.000 41.325312 -83.312858 +43437 427 173 2606248 0 1.006 0.000 41.253686 -83.602309 +43438 312 859 11261424 214833 4.348 0.083 41.602607 -82.706506 +43439 113 48 143257 0 0.055 0.000 41.517665 -83.041286 +43440 4875 6309 41688027 6587683 16.096 2.544 41.526266 -82.776839 +43442 999 434 44948251 20574 17.355 0.008 41.426172 -83.216448 +43443 1834 720 30284706 24043 11.693 0.009 41.461331 -83.470237 +43445 1161 457 48903548 265876 18.882 0.103 41.583459 -83.296408 +43446 25 384 3259255 59997 1.258 0.023 41.683506 -82.808714 +43447 3450 1449 43750681 94341 16.892 0.036 41.562886 -83.445582 +43449 8278 4288 219141615 10982068 84.611 4.240 41.534376 -83.135570 +43450 3619 1523 110444469 9834 42.643 0.004 41.400871 -83.491254 +43451 1119 454 63411473 157689 24.483 0.061 41.318301 -83.617493 +43452 13811 10200 121731281 13489757 47.001 5.208 41.515792 -82.980945 +43456 608 1039 9444789 999165 3.647 0.386 41.646844 -82.822664 +43457 1456 601 48033152 0 18.546 0.000 41.267325 -83.427465 +43458 414 178 2573816 39915 0.994 0.015 41.530446 -83.213365 +43460 6289 2798 7158546 791729 2.764 0.306 41.601192 -83.564999 +43462 1163 483 66526724 65743 25.686 0.025 41.283785 -83.722865 +43463 18 12 19415 0 0.007 0.000 41.508665 -83.508034 +43464 1460 705 86139517 12290476 33.259 4.745 41.404879 -82.924109 +43465 5059 2550 28559487 101977 11.027 0.039 41.565472 -83.500302 +43466 2192 880 71873185 0 27.750 0.000 41.295359 -83.514821 +43467 106 41 898187 0 0.347 0.000 41.243203 -83.483841 +43468 451 147 1861425 0 0.719 0.000 41.597867 -83.341493 +43469 3149 1280 59814791 77949 23.095 0.030 41.460620 -83.363903 +43501 788 352 62578564 192972 24.162 0.075 41.672655 -84.461796 +43502 6933 2834 178059787 1092935 68.749 0.422 41.531146 -84.296944 +43504 1094 453 39699638 0 15.328 0.000 41.695773 -83.836749 +43505 96 49 253920 0 0.098 0.000 41.523946 -84.731263 +43506 14830 6800 263290967 864368 101.657 0.334 41.466211 -84.557133 +43511 940 392 118157322 29912 45.621 0.012 41.262403 -83.814795 +43512 28674 12617 566493362 7805040 218.724 3.014 41.303378 -84.358279 +43515 7979 3228 211461174 715353 81.646 0.276 41.584215 -84.010615 +43516 2951 1227 182219701 90484 70.355 0.035 41.215029 -83.915474 +43517 3744 1549 167807915 784312 64.791 0.303 41.433947 -84.728550 +43518 2726 1129 177637378 261758 68.586 0.101 41.596488 -84.757748 +43519 184 78 3339594 6774 1.289 0.003 41.419359 -84.407070 +43521 2811 1247 172345037 863303 66.543 0.333 41.660489 -84.297994 +43522 3344 1420 81943296 2679291 31.638 1.034 41.419122 -83.839146 +43523 62 26 3552266 0 1.372 0.000 41.337065 -83.989254 +43524 1236 530 77957240 13318 30.099 0.005 41.227119 -84.038446 +43525 1152 424 2945091 0 1.137 0.000 41.466582 -83.704450 +43526 6072 2504 201126768 21188 77.655 0.008 41.312806 -84.725309 +43527 2287 953 136154245 41927 52.569 0.016 41.246109 -84.157502 +43528 16430 6806 48165069 93012 18.597 0.036 41.628855 -83.749575 +43529 256 96 1864282 0 0.720 0.000 41.187605 -83.781585 +43531 216 83 446557 0 0.172 0.000 41.635044 -84.495666 +43532 4015 1590 121044214 2450060 46.735 0.946 41.450496 -83.974967 +43533 1553 641 64828032 303902 25.030 0.117 41.691723 -84.081479 +43534 1784 747 95588369 778138 36.907 0.300 41.349611 -83.926981 +43535 757 317 62108155 0 23.980 0.000 41.307280 -84.022034 +43536 394 155 39890394 0 15.402 0.000 41.309794 -84.632895 +43537 27276 11991 47588260 2105174 18.374 0.813 41.574153 -83.686571 +43540 1501 579 49050040 172322 18.938 0.067 41.692846 -83.928025 +43541 144 65 1008159 0 0.389 0.000 41.300755 -83.829536 +43542 3591 1282 37644409 0 14.535 0.000 41.566675 -83.765027 +43543 7771 3634 227154471 2307834 87.705 0.891 41.606489 -84.645346 +43545 14034 6105 344626794 6133633 133.061 2.368 41.390884 -84.127337 +43547 284 118 1121931 0 0.433 0.000 41.492160 -83.876316 +43548 700 295 61608924 0 23.787 0.000 41.185334 -84.175116 +43549 1460 564 78298927 62728 30.231 0.024 41.371207 -84.520756 +43551 37002 16231 205015415 3129422 79.157 1.208 41.517951 -83.572004 +43553 252 94 423935 0 0.164 0.000 41.531227 -84.228836 +43554 2408 1070 89218877 766143 34.448 0.296 41.658422 -84.563491 +43555 200 94 1063189 0 0.410 0.000 41.434129 -84.254322 +43556 1860 756 82488280 406389 31.849 0.157 41.303225 -84.563655 +43557 3393 1194 114501988 298455 44.209 0.115 41.487386 -84.392466 +43558 13579 5485 215009385 646942 83.016 0.250 41.594729 -83.878403 +43560 32226 12869 54111491 192265 20.893 0.074 41.700591 -83.738852 +43565 348 154 469978 0 0.181 0.000 41.419971 -83.740107 +43566 7613 3035 50962435 2341609 19.677 0.904 41.492653 -83.753390 +43567 13283 5416 292785022 892862 113.045 0.345 41.580346 -84.161063 +43569 2818 1199 89951133 6786 34.730 0.003 41.349834 -83.789227 +43570 3106 1382 120853189 157300 46.662 0.061 41.588117 -84.441141 +43571 6783 2582 55450662 121970 21.410 0.047 41.513316 -83.822816 +43604 10154 5704 7302262 642451 2.819 0.248 41.651526 -83.540954 +43605 28346 12398 18251430 2663683 7.047 1.028 41.648026 -83.506863 +43606 26429 11822 16890097 7446 6.521 0.003 41.673136 -83.611414 +43607 23958 12177 18632364 10178 7.194 0.004 41.648634 -83.604132 +43608 16515 7374 9389658 0 3.625 0.000 41.679891 -83.528551 +43609 23687 11031 13550128 2185716 5.232 0.844 41.626694 -83.580880 +43610 5105 2699 3273343 0 1.264 0.000 41.678031 -83.561372 +43611 19207 9003 18024687 8189272 6.959 3.162 41.705139 -83.485030 +43612 29674 13770 29953194 405876 11.565 0.157 41.708462 -83.549232 +43613 31635 14630 15889270 0 6.135 0.000 41.706245 -83.603731 +43614 29290 14667 23384827 925942 9.029 0.358 41.604201 -83.630091 +43615 39441 19696 42012619 52543 16.221 0.020 41.650277 -83.673822 +43616 20873 8990 103700398 4940478 40.039 1.908 41.658372 -83.408909 +43617 7500 2940 14179955 0 5.475 0.000 41.664636 -83.728264 +43619 7499 3028 29138849 107656 11.251 0.042 41.603711 -83.470490 +43620 5858 3335 2828868 0 1.092 0.000 41.665184 -83.554271 +43623 20149 9683 17417566 30496 6.725 0.012 41.702945 -83.650062 +43701 55643 25406 467062207 7369287 180.334 2.845 39.969220 -81.991033 +43711 91 42 551042 516 0.213 0.000 39.841356 -81.576903 +43713 7487 3417 237831225 3228989 91.827 1.247 39.987744 -81.174557 +43716 1973 1012 176451564 553557 68.128 0.214 39.829249 -81.011900 +43717 164 81 706258 0 0.273 0.000 39.789724 -81.555673 +43718 3209 1407 138001211 1534219 53.283 0.592 40.014775 -80.998288 +43719 2601 1296 96679412 1023466 37.328 0.395 39.997343 -81.079098 +43720 1300 729 117582633 1423361 45.399 0.550 39.796078 -81.876427 +43721 149 72 985834 2422 0.381 0.001 39.949993 -82.265041 +43722 420 229 1935118 0 0.747 0.000 39.919184 -81.517572 +43723 4984 2263 45872482 193874 17.711 0.075 39.960601 -81.539490 +43724 9201 3155 401853958 2786918 155.157 1.076 39.720898 -81.498697 +43725 20357 9612 345645708 6335753 133.455 2.446 40.044987 -81.589330 +43727 1473 653 194813494 1445474 75.218 0.558 39.861390 -81.785087 +43728 1250 604 96586277 203891 37.292 0.079 39.480144 -81.895088 +43730 2503 1098 120146626 672802 46.389 0.260 39.618641 -82.101440 +43731 5461 2319 131752532 1240089 50.870 0.479 39.725343 -82.061172 +43732 1703 807 192361699 2400379 74.271 0.927 39.845125 -81.642737 +43733 95 39 2389842 0 0.923 0.000 39.927407 -81.538067 +43734 1171 501 9896004 199768 3.821 0.077 39.884547 -81.891027 +43735 499 196 4045917 321261 1.562 0.124 39.866889 -82.118507 +43736 55 37 267885 0 0.103 0.000 40.061242 -81.237909 +43738 164 63 380763 0 0.147 0.000 39.855589 -82.141513 +43739 2025 768 82524623 336922 31.863 0.130 39.903133 -82.286312 +43740 256 115 976400 0 0.377 0.000 39.952203 -82.212846 +43746 1425 585 54441334 43130 21.020 0.017 39.965416 -82.183858 +43747 1083 474 81803119 306190 31.584 0.118 39.860813 -81.124904 +43748 2755 1093 92571227 851695 35.742 0.329 39.692384 -82.316294 +43749 2339 1217 255373146 5362531 98.600 2.070 40.166779 -81.561488 +43750 164 75 2794761 7765 1.079 0.003 39.996867 -81.513191 +43754 1542 837 193716825 13898 74.794 0.005 39.760808 -81.233950 +43755 1620 787 91972875 524078 35.511 0.202 40.053283 -81.432376 +43756 5320 2841 369009487 6510198 142.475 2.514 39.691754 -81.795493 +43758 3315 1689 225522545 1638811 87.075 0.633 39.627898 -81.945549 +43759 66 34 361834 540 0.140 0.000 40.065733 -81.074799 +43760 1831 730 89794213 153267 34.670 0.059 39.888632 -82.194743 +43761 111 48 1608704 19168 0.621 0.007 39.668343 -82.148307 +43762 5413 1945 188153891 182806 72.647 0.071 40.025878 -81.741187 +43764 8566 3501 156722107 3469322 60.511 1.340 39.712340 -82.192529 +43766 1648 772 96525521 729048 37.269 0.281 39.593272 -82.252886 +43767 1443 602 82751678 40000 31.951 0.015 40.064270 -81.783664 +43768 275 117 1645743 0 0.635 0.000 40.037789 -81.444869 +43771 2007 902 64583648 1300858 24.936 0.502 39.835562 -81.945402 +43772 1879 839 88411395 214161 34.136 0.083 39.886085 -81.526601 +43773 3248 1521 273821465 5843305 105.723 2.256 39.982394 -81.298510 +43777 4714 2030 137264986 844931 52.998 0.326 39.818733 -82.113868 +43778 1526 677 117055786 40192 45.195 0.016 39.999290 -81.378862 +43779 971 431 91419334 65065 35.297 0.025 39.819570 -81.427766 +43780 2106 1534 92146426 8699631 35.578 3.359 39.908681 -81.437981 +43782 849 367 31958382 248983 12.339 0.096 39.621795 -82.212467 +43783 4704 1924 156003713 1147343 60.233 0.443 39.804491 -82.278555 +43786 32 19 551796 0 0.213 0.000 39.710464 -81.277012 +43787 2997 1608 194826992 3129121 75.223 1.208 39.530275 -81.803695 +43788 865 424 99827218 263285 38.544 0.102 39.805526 -81.333948 +43793 5110 2555 268126248 266485 103.524 0.103 39.741635 -81.098591 +43802 1075 421 97542691 714077 37.661 0.276 40.091161 -81.852057 +43804 3851 1058 82364881 88234 31.801 0.034 40.450792 -81.740962 +43805 71 39 3090787 37548 1.193 0.014 40.392968 -81.972565 +43811 829 368 48765820 1000950 18.829 0.386 40.179894 -81.920772 +43812 19061 8951 418327862 5876650 161.517 2.269 40.263768 -81.880904 +43821 4327 1886 213974429 3246351 82.616 1.253 40.136752 -82.000512 +43822 4626 1933 227594325 129563 87.875 0.050 40.178846 -82.174029 +43824 3787 1345 197999134 370145 76.448 0.143 40.363910 -81.758449 +43830 6158 2424 131888403 3214138 50.922 1.241 40.062820 -82.137473 +43832 7479 3421 261054758 1609439 100.794 0.621 40.275813 -81.585062 +43836 128 68 404321 0 0.156 0.000 40.208723 -81.719748 +43837 1973 837 132586857 802883 51.192 0.310 40.298389 -81.477938 +43840 1248 533 83151950 58512 32.105 0.023 40.410708 -81.601371 +43842 355 142 1060358 0 0.409 0.000 40.136929 -82.012755 +43843 1123 481 109563520 117431 42.303 0.045 40.349011 -82.175610 +43844 3869 1852 322713990 258521 124.601 0.100 40.325390 -82.060739 +43845 4711 2053 75344917 1053819 29.091 0.407 40.265226 -81.731425 +43901 2219 1038 80859321 341715 31.220 0.132 40.223586 -80.855814 +43902 202 113 44744279 847527 17.276 0.327 39.882850 -80.951993 +43903 2208 1035 96981335 428 37.445 0.000 40.472134 -80.973297 +43905 237 120 1001495 15969 0.387 0.006 40.102487 -80.840268 +43906 8678 4243 83464336 365288 32.226 0.141 40.011071 -80.808832 +43907 6008 3051 409639639 6797573 158.163 2.625 40.254613 -81.024569 +43908 1574 722 80657289 115072 31.142 0.044 40.506269 -80.874019 +43910 3631 1584 143070151 543960 55.240 0.210 40.372682 -80.826332 +43912 6801 3377 48777993 280645 18.833 0.108 40.085427 -80.795478 +43913 1490 750 6602412 475434 2.549 0.184 40.267682 -80.635710 +43914 94 41 1501704 0 0.580 0.000 39.775260 -80.952819 +43915 1495 761 137963312 2528145 53.268 0.976 39.763457 -80.899372 +43917 3136 1540 91825058 175917 35.454 0.068 40.233488 -80.797645 +43920 23438 10847 116226240 888260 44.875 0.343 40.677396 -80.595022 +43925 82 45 310045 0 0.120 0.000 40.447632 -80.862320 +43926 285 129 610579 256764 0.236 0.099 40.508061 -80.621610 +43927 74 36 1061593 20591 0.410 0.008 40.119735 -80.937132 +43928 116 57 3411735 87458 1.317 0.034 40.010409 -80.914800 +43930 882 429 97429567 314669 37.618 0.121 40.563211 -80.762834 +43931 272 133 945697 0 0.365 0.000 39.673340 -80.872630 +43932 931 411 47404247 69349 18.303 0.027 40.516991 -80.760740 +43933 2070 1013 123237741 961056 47.582 0.371 39.935227 -80.895800 +43934 295 149 557026 2963 0.215 0.001 40.077931 -80.789273 +43935 8943 4358 50693949 193459 19.573 0.075 40.127765 -80.755389 +43938 5794 2744 82822349 816816 31.978 0.315 40.304495 -80.673326 +43939 513 246 2367902 0 0.914 0.000 40.167151 -80.800019 +43940 377 174 1590740 29974 0.614 0.012 40.028999 -80.827283 +43942 2500 1222 54287517 740428 20.961 0.286 39.861027 -80.854883 +43943 3472 1604 107994204 868174 41.697 0.335 40.209570 -80.733072 +43944 2529 1136 74386876 30002 28.721 0.012 40.429337 -80.768990 +43945 3191 1437 168128888 924441 64.915 0.357 40.636830 -80.848010 +43946 2114 1093 152368091 1178157 58.830 0.455 39.652165 -80.964911 +43947 5322 2581 44008953 276090 16.992 0.107 39.956139 -80.807586 +43948 670 327 1832643 0 0.708 0.000 40.270132 -80.778257 +43950 16762 6459 227154368 2645009 87.705 1.021 40.096889 -80.924669 +43951 84 39 381385 7002 0.147 0.003 40.111902 -81.011630 +43952 19050 9004 66913100 956229 25.835 0.369 40.406817 -80.662786 +43953 11553 5380 46905390 219 18.110 0.000 40.352522 -80.702518 +43961 294 151 1060119 202353 0.409 0.078 40.524994 -80.630282 +43962 112 47 3344527 0 1.291 0.000 40.672039 -80.879921 +43963 1362 678 1146766 81096 0.443 0.031 40.171369 -80.696907 +43964 9575 4498 123479052 1972828 47.676 0.762 40.480905 -80.662477 +43967 21 11 263745 0 0.102 0.000 40.026455 -80.940094 +43968 7182 3384 88802765 437083 34.287 0.169 40.632407 -80.683847 +43970 31 19 461277 0 0.178 0.000 40.463201 -80.889127 +43971 1150 607 3165887 4676 1.222 0.002 40.159108 -80.713392 +43972 144 66 341137 994 0.132 0.000 40.102594 -80.973089 +43973 1996 1213 233662122 3310440 90.217 1.278 40.190266 -81.276328 +43974 107 51 170700 0 0.066 0.000 40.182240 -80.887565 +43976 1632 699 60729908 318272 23.448 0.123 40.373557 -80.920847 +43977 2407 1116 119061372 5551216 45.970 2.143 40.134851 -81.083447 +43983 440 547 53240698 5128721 20.556 1.980 40.141432 -81.199082 +43985 128 51 1069063 7506 0.413 0.003 40.163934 -81.132747 +43986 1975 919 103903806 252103 40.117 0.097 40.385195 -80.995648 +43988 2476 1354 134976382 1680900 52.115 0.649 40.401128 -81.120838 +44001 20769 8552 88958329 643971 34.347 0.249 41.366331 -82.259924 +44003 4676 2283 172821163 13553499 66.727 5.233 41.615736 -80.585942 +44004 33421 16190 187298118 14430954 72.316 5.572 41.855940 -80.791866 +44010 1667 702 49477578 317105 19.103 0.122 41.765276 -80.847485 +44011 21193 8007 53891271 148800 20.808 0.057 41.445156 -82.005109 +44012 22581 9411 28823985 6996870 11.129 2.702 41.498342 -82.017368 +44017 19161 7986 16097890 281274 6.215 0.109 41.370548 -81.861757 +44021 6444 2388 105947118 3383878 40.906 1.307 41.443260 -81.144465 +44022 16516 7104 78744832 1128096 30.404 0.436 41.446269 -81.402969 +44023 17351 6921 133840777 6609452 51.676 2.552 41.384751 -81.285759 +44024 23557 9656 233807051 2899002 90.273 1.119 41.577765 -81.192433 +44026 11116 4493 73635811 760024 28.431 0.293 41.528147 -81.324706 +44028 8467 3234 85984784 569444 33.199 0.220 41.300515 -81.937426 +44030 16652 7348 153340615 9319632 59.205 3.598 41.896637 -80.585178 +44032 1557 641 104246382 72294 40.250 0.028 41.669245 -80.670110 +44035 64263 29454 123691760 1284765 47.758 0.496 41.364148 -82.137075 +44039 29563 12153 61314737 363781 23.674 0.140 41.386152 -82.024728 +44040 3020 1300 24841303 336398 9.591 0.130 41.535663 -81.410737 +44041 14979 7189 167114710 4229122 64.523 1.633 41.776900 -80.949898 +44044 15951 4653 143153894 1162849 55.272 0.449 41.266284 -82.041790 +44045 422 183 2437680 419751 0.941 0.162 41.748658 -81.284345 +44046 2222 779 39916823 1892558 15.412 0.731 41.542545 -81.068714 +44047 9213 3881 273027595 717043 105.417 0.277 41.727931 -80.735874 +44048 2565 1001 78815014 109938 30.431 0.042 41.850255 -80.639309 +44049 238 106 926908 9900 0.358 0.004 41.266529 -82.305788 +44050 6118 2340 65955856 293645 25.466 0.113 41.248733 -82.128200 +44052 29850 13911 23904973 3219213 9.230 1.243 41.459377 -82.164612 +44053 18256 8511 30724409 2148282 11.863 0.829 41.426622 -82.225503 +44054 12591 5441 32391850 3487229 12.507 1.346 41.471600 -82.090338 +44055 19846 8509 17190997 76042 6.637 0.029 41.434058 -82.134095 +44056 11157 4535 25256357 97515 9.752 0.038 41.314916 -81.501630 +44057 19961 8470 129494061 818935 49.998 0.316 41.760117 -81.060305 +44060 60211 26030 99769562 3889166 38.521 1.502 41.676530 -81.328140 +44062 14972 4455 198299815 835410 76.564 0.323 41.451810 -81.036697 +44064 1657 678 58300706 838287 22.510 0.324 41.598063 -81.032323 +44065 4433 1838 56338684 1640487 21.752 0.633 41.475924 -81.221612 +44067 20441 9027 43834030 62384 16.924 0.024 41.316283 -81.542933 +44070 32902 14610 30220520 0 11.668 0.000 41.415032 -81.918942 +44072 4383 1847 48561570 486119 18.750 0.188 41.471152 -81.324920 +44074 11679 4373 128131152 774739 49.472 0.299 41.289495 -82.231223 +44076 5141 1964 177805887 332081 68.651 0.128 41.530875 -80.823712 +44077 56491 23465 155885056 3095219 60.188 1.195 41.697563 -81.209740 +44080 226 108 2581008 39715 0.997 0.015 41.366271 -81.057947 +44081 7088 2677 52874627 203766 20.415 0.079 41.764257 -81.142989 +44082 1619 626 87749846 51867 33.880 0.020 41.761873 -80.567535 +44084 3611 1645 110139136 1501136 42.525 0.580 41.671377 -80.899161 +44085 3277 1474 130613237 859634 50.430 0.332 41.603272 -80.874544 +44086 2391 978 71408941 551657 27.571 0.213 41.675726 -81.058597 +44087 20221 8527 45672120 166454 17.634 0.064 41.313171 -81.438675 +44089 15899 7626 89436180 7747952 34.532 2.992 41.392084 -82.377455 +44090 11504 4747 269530831 2082787 104.066 0.804 41.167515 -82.228683 +44092 16835 8054 19338131 71999 7.466 0.028 41.599909 -81.468699 +44093 1467 668 83304772 284500 32.164 0.110 41.530785 -80.614356 +44094 35234 17159 101559187 946851 39.212 0.366 41.610724 -81.379324 +44095 33579 15098 23505040 337405 9.075 0.130 41.652326 -81.441721 +44099 2314 735 56930620 218854 21.981 0.085 41.549205 -80.983305 +44101 565 0 85486 0 0.033 0.000 41.489381 -81.667486 +44102 45014 22295 15654355 3532656 6.044 1.364 41.479222 -81.738327 +44103 18123 10722 11305937 1243143 4.365 0.480 41.519415 -81.642123 +44104 22640 11643 12240278 18728 4.726 0.007 41.483845 -81.626665 +44105 40089 21498 22690774 233749 8.761 0.090 41.449476 -81.630289 +44106 26896 14107 10919213 76016 4.216 0.029 41.505181 -81.605496 +44107 52244 28565 14286017 3002597 5.516 1.159 41.483860 -81.801683 +44108 25679 14809 10979422 1505538 4.239 0.581 41.544784 -81.607394 +44109 40646 19407 18768875 238238 7.247 0.092 41.447576 -81.694468 +44110 20136 11789 10910516 1190520 4.213 0.460 41.569390 -81.564665 +44111 39778 18953 16153411 0 6.237 0.000 41.458266 -81.788608 +44112 23073 14923 10469364 30688 4.042 0.012 41.535841 -81.574143 +44113 19213 10479 9917299 517756 3.829 0.200 41.483241 -81.697166 +44114 5225 3603 7504435 4443354 2.897 1.716 41.518430 -81.680327 +44115 8307 3730 5727308 119830 2.211 0.046 41.493546 -81.671226 +44116 20268 10238 12372855 2261066 4.777 0.873 41.472964 -81.853831 +44117 10224 5712 9880449 21280 3.815 0.008 41.570921 -81.523653 +44118 40438 18414 18422648 46949 7.113 0.018 41.502337 -81.556571 +44119 12482 6490 5497435 1135616 2.123 0.438 41.589350 -81.547386 +44120 38196 21578 13776271 109426 5.319 0.042 41.473947 -81.579956 +44121 33220 15108 16247413 0 6.273 0.000 41.526495 -81.532130 +44122 34057 15717 34239694 63069 13.220 0.024 41.469494 -81.512442 +44123 17637 9034 6708251 1111165 2.590 0.429 41.604699 -81.524123 +44124 38282 19334 37606601 123698 14.520 0.048 41.496597 -81.467584 +44125 28730 12919 36843207 751312 14.225 0.290 41.405557 -81.608852 +44126 16771 8052 12014927 0 4.639 0.000 41.441820 -81.853002 +44127 5586 3231 4907885 2513 1.895 0.001 41.473016 -81.650362 +44128 29274 14357 21857905 18865 8.439 0.007 41.439871 -81.538518 +44129 29090 12918 15257333 80312 5.891 0.031 41.390456 -81.735307 +44130 50639 24420 44348303 56981 17.123 0.022 41.376642 -81.787317 +44131 20469 8657 41643639 307560 16.079 0.119 41.383164 -81.651749 +44132 14071 7423 8054897 796564 3.110 0.308 41.606292 -81.497314 +44133 30394 13690 54883582 32389 21.191 0.013 41.313664 -81.745238 +44134 38800 17380 24844783 19932 9.593 0.008 41.380492 -81.700991 +44135 26861 12388 26137112 13437 10.092 0.005 41.427912 -81.817199 +44136 25608 10806 35250403 2279 13.610 0.001 41.311488 -81.808441 +44137 23240 10929 13334925 0 5.149 0.000 41.409217 -81.562527 +44138 22332 9775 35607985 0 13.748 0.000 41.373662 -81.923295 +44139 24356 9174 59388990 494696 22.930 0.191 41.383262 -81.444249 +44140 15651 6436 11825091 6444600 4.566 2.488 41.487816 -81.931442 +44141 13945 5738 61408329 292760 23.710 0.113 41.299666 -81.616544 +44142 19201 8167 19792672 6932 7.642 0.003 41.399660 -81.834335 +44143 24499 11911 36430023 39374 14.066 0.015 41.554054 -81.475507 +44144 21089 10393 14454776 94388 5.581 0.036 41.437465 -81.739724 +44145 32729 14843 41247991 9744 15.926 0.004 41.449529 -81.930160 +44146 29761 15313 51853723 295357 20.021 0.114 41.381223 -81.529226 +44147 19480 8265 34101365 54488 13.167 0.021 41.318155 -81.679264 +44149 19177 7683 28926189 15961 11.168 0.006 41.315913 -81.856217 +44201 6917 2751 141655999 2362586 54.694 0.912 41.028660 -81.184282 +44202 19561 8056 78462433 3180888 30.295 1.228 41.315087 -81.338371 +44203 41248 18234 90662894 3468873 35.005 1.339 41.020888 -81.628652 +44212 43548 17259 56083643 95849 21.654 0.037 41.244503 -81.828732 +44214 2076 786 70879219 343725 27.367 0.133 40.951918 -81.999755 +44215 2162 1097 3811342 537599 1.472 0.208 41.067757 -81.895771 +44216 9418 3733 60169778 3563940 23.232 1.376 40.945779 -81.581744 +44217 4142 1686 74703865 147549 28.843 0.057 40.952287 -81.913359 +44221 29587 14602 16890025 100091 6.521 0.039 41.138985 -81.475047 +44223 18185 8208 38769908 102344 14.969 0.040 41.169665 -81.531057 +44224 38742 17063 51646230 1123213 19.941 0.434 41.176261 -81.436523 +44230 8252 3357 44571653 120339 17.209 0.046 40.964265 -81.687607 +44231 8308 3415 127223594 767640 49.121 0.296 41.302963 -81.070474 +44233 7646 2859 69162378 360814 26.704 0.139 41.249084 -81.737866 +44234 4192 1440 64125642 540839 24.759 0.209 41.325805 -81.152240 +44235 1825 603 64838809 86485 25.034 0.033 41.031119 -82.116770 +44236 25296 9145 88050182 744405 33.996 0.287 41.246425 -81.449582 +44240 37927 17647 104188918 3197190 40.228 1.234 41.132323 -81.332781 +44241 16428 7236 55633898 1810456 21.480 0.699 41.242618 -81.347707 +44243 5658 0 1252334 0 0.484 0.000 41.147960 -81.341421 +44250 1253 547 1129056 399740 0.436 0.154 41.020304 -81.437338 +44251 850 368 3757851 0 1.451 0.000 41.029138 -81.927401 +44253 3218 1216 63794500 47031 24.631 0.018 41.166865 -82.032049 +44254 4833 2207 68088601 66429 26.289 0.026 41.042952 -82.014370 +44255 7987 3267 108893741 1636173 42.044 0.632 41.286694 -81.229132 +44256 62039 24740 345055213 2311324 133.227 0.892 41.139872 -81.860559 +44260 13450 5447 85633956 6832593 33.063 2.638 41.035186 -81.338441 +44262 5016 2189 5889416 176845 2.274 0.068 41.139576 -81.436066 +44264 2315 1115 55222893 189555 21.322 0.073 41.229610 -81.540017 +44265 51 18 409099 4149 0.158 0.002 41.035722 -81.253084 +44266 33581 14741 237801633 6674558 91.816 2.577 41.166252 -81.208224 +44270 8890 3674 54226368 290182 20.937 0.112 40.960943 -81.774537 +44272 5208 2030 58075758 437131 22.423 0.169 41.089759 -81.180523 +44273 6718 2681 100381342 123055 38.757 0.048 41.027999 -81.877935 +44274 225 90 1118017 0 0.432 0.000 41.098341 -81.732670 +44275 3521 1342 100038473 466203 38.625 0.180 41.101860 -82.102602 +44276 1906 697 49056721 43228 18.941 0.017 40.937837 -81.835725 +44278 17868 7518 38422405 140875 14.835 0.054 41.106119 -81.425596 +44280 4557 1761 63463133 10564 24.503 0.004 41.249190 -81.930660 +44281 29954 12491 123634445 115325 47.736 0.045 41.059588 -81.741052 +44285 85 34 358543 0 0.138 0.000 41.159666 -81.071596 +44286 6109 2407 61864829 104413 23.886 0.040 41.233150 -81.643952 +44287 7559 2933 172947854 1133574 66.776 0.438 40.940136 -82.098449 +44288 4118 1804 42486549 177704 16.404 0.069 41.239104 -81.076050 +44301 15340 7269 9153301 144924 3.534 0.056 41.043490 -81.524017 +44302 5524 3135 2431494 0 0.939 0.000 41.089437 -81.538663 +44303 7700 4183 5978407 0 2.308 0.000 41.104685 -81.536941 +44304 5916 1903 3902624 0 1.507 0.000 41.083174 -81.507848 +44305 22294 10504 16957399 60041 6.547 0.023 41.075304 -81.461652 +44306 22492 10634 21465807 0 8.288 0.000 41.039346 -81.483170 +44307 7643 4159 4975726 17870 1.921 0.007 41.069455 -81.546125 +44308 1392 460 1274415 0 0.492 0.000 41.081658 -81.517014 +44310 22786 11182 15561469 55805 6.008 0.022 41.105174 -81.494631 +44311 8782 3847 4944792 0 1.909 0.000 41.064229 -81.520712 +44312 31919 14709 49644847 893891 19.168 0.345 41.014120 -81.443702 +44313 24935 13241 35854881 23392 13.844 0.009 41.130064 -81.572704 +44314 18825 8882 11295609 390392 4.361 0.151 41.041069 -81.560073 +44319 22686 10581 48641231 5130002 18.780 1.981 40.981499 -81.527637 +44320 19937 9780 25259624 143001 9.753 0.055 41.073140 -81.582414 +44321 15200 6290 39417080 776768 15.219 0.300 41.088647 -81.652446 +44333 18763 8073 72104690 457823 27.840 0.177 41.160610 -81.630871 +44401 2892 1249 83298529 4976982 32.162 1.922 41.020990 -80.938604 +44402 3352 1349 93752884 1508810 36.198 0.583 41.380290 -80.852506 +44403 3820 1827 36694971 0 14.168 0.000 41.240319 -80.582126 +44404 1624 678 44134226 1522021 17.040 0.588 41.324106 -80.556627 +44405 8229 3971 9097376 81982 3.513 0.032 41.077984 -80.592359 +44406 22054 9368 137750302 3211512 53.186 1.240 41.010880 -80.770396 +44408 10331 4650 92226593 1447617 35.609 0.559 40.886139 -80.688425 +44410 17409 7772 176213332 26539294 68.036 10.247 41.346332 -80.727790 +44411 2181 1089 46200349 4965722 17.838 1.917 41.036421 -81.037731 +44412 2644 1050 59165359 541993 22.844 0.209 41.093871 -81.026630 +44413 7261 3204 61430984 25409 23.719 0.010 40.843898 -80.549334 +44417 1659 684 86303372 0 33.322 0.000 41.436336 -80.663897 +44418 1357 556 45133213 0 17.426 0.000 41.307372 -80.603473 +44420 15429 7189 40506645 529741 15.640 0.205 41.179112 -80.682770 +44423 2425 1159 70829746 438454 27.348 0.169 40.748517 -80.895946 +44425 14898 6793 79940596 370946 30.865 0.143 41.170439 -80.573514 +44427 1612 638 79243550 111660 30.596 0.043 40.709172 -80.949859 +44428 3290 1420 141069217 7319767 54.467 2.826 41.436821 -80.573808 +44429 2576 1511 16824241 6752086 6.496 2.607 41.097137 -80.979645 +44430 5270 1662 35537218 417357 13.721 0.161 41.240234 -80.908167 +44431 4727 1972 68027353 308785 26.266 0.119 40.851614 -80.749469 +44432 13693 4872 267368314 1663552 103.231 0.642 40.744473 -80.766739 +44436 3836 1713 60010222 726220 23.170 0.280 41.058771 -80.534818 +44437 4252 1787 10211388 2186 3.943 0.001 41.155940 -80.729884 +44438 4751 2263 22508866 72524 8.691 0.028 41.239631 -80.530615 +44439 115 40 451892 0 0.174 0.000 41.455747 -80.956375 +44440 4967 1992 21619465 2930069 8.347 1.131 41.141176 -80.802908 +44441 1600 716 41567388 814882 16.049 0.315 40.756048 -80.550233 +44442 4006 1708 22699662 197669 8.764 0.076 40.966173 -80.546111 +44443 1704 772 33264031 575249 12.843 0.222 40.933667 -80.604431 +44444 10454 4781 110486786 909947 42.659 0.351 41.171122 -80.974394 +44445 3449 1406 42921417 284015 16.572 0.110 40.848321 -80.619964 +44446 20955 10272 35039806 1028453 13.529 0.397 41.189561 -80.749296 +44449 1323 810 30667346 1216789 11.841 0.470 40.975289 -81.037123 +44450 2042 828 118387951 3969330 45.710 1.533 41.453014 -80.834495 +44451 3032 1321 97080315 1555655 37.483 0.601 41.079368 -80.868193 +44452 3167 1270 34587219 2198838 13.354 0.849 40.947372 -80.664007 +44454 1153 453 21461535 381581 8.286 0.147 40.917464 -80.551733 +44455 1890 766 53483943 15545 20.650 0.006 40.772301 -80.610166 +44460 26732 11853 283168606 1337344 109.332 0.516 40.899324 -80.870171 +44470 3790 1555 69331410 77680 26.769 0.030 41.300331 -80.972791 +44471 11097 5068 11417578 235706 4.408 0.091 41.048564 -80.590176 +44473 3823 1848 62348840 47096 24.073 0.018 41.254957 -80.649904 +44481 10408 4601 148667648 140688 57.401 0.054 41.176641 -80.902344 +44483 26006 12771 47383392 24366 18.295 0.009 41.263566 -80.816754 +44484 22991 10929 45305797 22764 17.493 0.009 41.235857 -80.750201 +44485 16498 8304 20019778 25676 7.730 0.010 41.240357 -80.847586 +44490 798 355 1958548 24690 0.756 0.010 40.896293 -80.768062 +44491 3515 1197 76891397 235732 29.688 0.091 41.368427 -80.964377 +44493 25 14 648867 0 0.251 0.000 40.825018 -80.888617 +44502 10204 4902 14510198 328961 5.602 0.127 41.082788 -80.639487 +44503 1021 438 1164199 89530 0.449 0.035 41.099326 -80.649074 +44504 5262 2527 3229013 5435 1.247 0.002 41.123512 -80.654651 +44505 19357 8800 45329564 611181 17.502 0.236 41.129242 -80.622105 +44506 2707 1374 4665485 150256 1.801 0.058 41.093003 -80.626397 +44507 5863 3119 4512206 0 1.742 0.000 41.074229 -80.655251 +44509 11975 5946 14139098 136755 5.459 0.053 41.108505 -80.696075 +44510 2499 1375 4939910 93495 1.907 0.036 41.122254 -80.673433 +44511 19672 9889 19241379 411429 7.429 0.159 41.069085 -80.696703 +44512 34424 16647 44612939 443723 17.225 0.171 41.025661 -80.668279 +44514 22472 10127 55830142 3308828 21.556 1.278 41.000614 -80.606448 +44515 27766 13320 49670129 4117159 19.178 1.590 41.100678 -80.761825 +44601 35294 15367 211884095 7805055 81.809 3.014 40.920269 -81.129176 +44606 7819 2288 108663413 149723 41.955 0.058 40.733999 -81.794400 +44607 234 85 5422409 0 2.094 0.000 40.689518 -81.025735 +44608 2666 1097 56189659 250726 21.695 0.097 40.656427 -81.592823 +44609 3987 1741 77813477 1056792 30.044 0.408 40.917414 -80.990071 +44610 263 132 460437 0 0.178 0.000 40.559625 -81.799762 +44611 2025 827 75293035 123090 29.071 0.048 40.610103 -82.074986 +44612 5293 2210 66542933 149361 25.692 0.058 40.633124 -81.475952 +44613 2011 829 5048691 20611 1.949 0.008 40.712970 -81.600741 +44614 12595 5062 58118662 753912 22.440 0.291 40.889547 -81.576285 +44615 11125 5305 372800381 2565497 143.939 0.991 40.564539 -81.074849 +44618 6858 2556 109413518 199661 42.245 0.077 40.770383 -81.681101 +44620 1567 724 58949751 669340 22.761 0.258 40.578124 -81.210132 +44621 4624 2070 78248959 90080 30.212 0.035 40.436959 -81.297852 +44622 18588 8060 141850850 1283742 54.769 0.496 40.546033 -81.482958 +44624 5397 1549 126381643 653048 48.796 0.252 40.608530 -81.662094 +44625 1418 555 49114274 332654 18.963 0.128 40.763369 -81.003737 +44626 2977 1271 71124851 69017 27.461 0.027 40.688904 -81.381772 +44627 6845 1628 120303644 233221 46.449 0.090 40.663996 -81.836421 +44628 1067 497 99751193 374251 38.514 0.144 40.534703 -82.168818 +44629 2403 1017 53544148 1613383 20.674 0.623 40.354147 -81.441350 +44632 9765 3801 70855865 1164376 27.358 0.450 40.963232 -81.313031 +44633 2615 765 59752561 68143 23.071 0.026 40.629759 -81.935268 +44634 2164 858 49260478 70835 19.020 0.027 40.837991 -81.041397 +44637 2694 1184 143855697 193573 55.543 0.075 40.489560 -82.039032 +44638 1497 658 72807869 1087311 28.111 0.420 40.650615 -82.141059 +44640 151 65 608424 18201 0.235 0.007 40.985543 -81.150705 +44641 20349 8357 140219560 332392 54.139 0.128 40.857398 -81.246485 +44643 3239 1395 84842252 109387 32.758 0.042 40.638733 -81.302903 +44644 4791 2380 57340112 2099637 22.139 0.811 40.687012 -81.176443 +44645 2465 956 64245577 384283 24.805 0.148 40.912061 -81.719426 +44646 47525 20677 74835973 539354 28.894 0.208 40.814381 -81.497182 +44647 18015 7860 74247576 416887 28.667 0.161 40.797864 -81.565063 +44651 861 348 62400699 23067 24.093 0.009 40.628056 -80.951100 +44652 80 31 161753 0 0.062 0.000 40.900221 -81.326138 +44653 599 227 1038675 0 0.401 0.000 40.436106 -81.370333 +44654 19679 6459 406975285 1485936 157.134 0.574 40.537937 -81.870867 +44656 2968 1389 107396622 1785320 41.466 0.689 40.568721 -81.334945 +44657 10334 4464 170192024 377039 65.712 0.146 40.741100 -81.092666 +44659 163 69 314097 0 0.121 0.000 40.694922 -81.702555 +44661 171 80 158365 0 0.061 0.000 40.595626 -82.113008 +44662 9656 3986 155532382 582892 60.051 0.225 40.711010 -81.556289 +44663 25362 11435 241515619 2055296 93.250 0.794 40.459991 -81.452391 +44666 2928 1145 60799815 323528 23.475 0.125 40.848342 -81.638693 +44667 13481 5605 120330638 223290 46.460 0.086 40.833815 -81.766531 +44669 1382 585 45020474 82023 17.383 0.032 40.792470 -81.157456 +44670 235 99 435754 0 0.168 0.000 40.762639 -81.188753 +44671 380 166 2083708 0 0.805 0.000 40.646033 -81.365669 +44672 4874 2507 8470074 59863 3.270 0.023 40.920003 -81.025268 +44675 2082 1188 78969123 3961435 30.490 1.530 40.502358 -81.253774 +44676 4877 1935 141911793 591481 54.792 0.228 40.690773 -82.033794 +44677 2543 1044 42686742 36908 16.481 0.014 40.874520 -81.858577 +44678 152 73 2412247 0 0.931 0.000 40.566644 -81.349941 +44680 4138 1805 46790226 79360 18.066 0.031 40.605568 -81.541474 +44681 7799 2580 153795411 57297 59.381 0.022 40.507952 -81.661848 +44682 803 361 974469 0 0.376 0.000 40.397262 -81.405289 +44683 8550 3795 177324067 2214312 68.465 0.855 40.364832 -81.325281 +44685 27556 10723 66344958 161567 25.616 0.062 40.955405 -81.424372 +44687 249 25 168429 0 0.065 0.000 40.537922 -81.719984 +44688 3053 1290 59508111 5912 22.976 0.002 40.683908 -81.255382 +44689 638 234 9483773 4738 3.662 0.002 40.645210 -81.659132 +44690 166 80 780454 1967 0.301 0.001 40.613106 -81.693638 +44691 43753 18882 406087370 1768865 156.791 0.683 40.805756 -81.982479 +44693 86 69 2501675 0 0.966 0.000 40.301856 -81.186168 +44695 1608 837 78052784 1539051 30.136 0.594 40.442011 -81.170166 +44697 187 89 1569974 179973 0.606 0.069 40.612058 -81.424219 +44699 937 551 141365807 7496454 54.582 2.894 40.277289 -81.280917 +44702 1053 592 1391166 0 0.537 0.000 40.799790 -81.375811 +44703 8895 4750 2838344 0 1.096 0.000 40.810563 -81.381352 +44704 3811 2015 6270168 0 2.421 0.000 40.800388 -81.340379 +44705 18772 8145 21241497 231933 8.201 0.090 40.834614 -81.331149 +44706 18246 7804 48126688 0 18.582 0.000 40.753525 -81.418645 +44707 9208 4374 37218428 0 14.370 0.000 40.761094 -81.349840 +44708 25109 12155 26521175 908567 10.240 0.351 40.817882 -81.435881 +44709 18905 9195 14906974 0 5.756 0.000 40.842337 -81.386175 +44710 9179 4255 5763725 0 2.225 0.000 40.789710 -81.425964 +44714 9056 4353 6802658 36191 2.627 0.014 40.836317 -81.358279 +44718 11951 5722 21286728 812069 8.219 0.314 40.847623 -81.451327 +44720 39010 17282 88159075 550455 34.038 0.213 40.903441 -81.433275 +44721 13560 5189 39827938 63649 15.378 0.025 40.892581 -81.332063 +44730 6050 2577 95767316 13215 36.976 0.005 40.767017 -81.265784 +44802 1032 395 73683204 0 28.449 0.000 41.045626 -83.419418 +44804 1202 473 52509331 0 20.274 0.000 41.105589 -83.534122 +44805 32345 13616 396991690 2039546 153.279 0.787 40.872668 -82.317038 +44807 2381 1046 184962275 182787 71.414 0.071 41.059801 -82.876936 +44809 293 127 826900 0 0.319 0.000 41.133492 -83.288906 +44811 12867 5544 304239064 814554 117.467 0.315 41.246328 -82.846601 +44813 8051 3201 185715195 570294 71.705 0.220 40.599849 -82.529699 +44814 2929 1138 68148744 89648 26.312 0.035 41.324106 -82.472160 +44815 637 309 2935076 0 1.133 0.000 41.246607 -83.239471 +44816 42 28 66786 0 0.026 0.000 41.330202 -82.352522 +44817 1562 603 82130893 32118 31.711 0.012 41.203853 -83.549482 +44818 2644 1081 189449390 317614 73.147 0.123 40.998342 -82.989373 +44820 18102 8374 414753116 1446250 160.137 0.558 40.817186 -82.974028 +44822 3240 1230 112710346 421974 43.518 0.163 40.556688 -82.398092 +44824 4060 1675 64296514 1537919 24.825 0.594 41.383228 -82.805892 +44825 58 25 102850 0 0.040 0.000 40.954204 -82.943190 +44826 1687 656 68397511 86189 26.408 0.033 41.242340 -82.477643 +44827 7097 3213 123096394 230153 47.528 0.089 40.822444 -82.755060 +44828 166 71 564579 0 0.218 0.000 41.231935 -82.860916 +44830 18962 8618 308504505 1089736 119.114 0.421 41.168140 -83.397303 +44833 17121 8006 235968835 694807 91.108 0.268 40.710586 -82.793744 +44836 2654 1029 90824390 241889 35.067 0.093 41.236420 -83.059914 +44837 4514 1727 175222746 815173 67.654 0.315 41.021221 -82.472683 +44838 266 111 806166 1729 0.311 0.001 40.771578 -82.256135 +44839 12519 6503 91556382 17937242 35.350 6.926 41.380951 -82.556921 +44840 2900 1143 120073045 317128 46.360 0.122 40.787971 -82.178267 +44841 710 295 49269212 0 19.023 0.000 41.251213 -83.306030 +44842 5436 2363 187223000 635613 72.287 0.245 40.649292 -82.224630 +44843 2387 1019 70792358 259578 27.333 0.100 40.689497 -82.407602 +44844 764 309 45630581 38925 17.618 0.015 40.992079 -83.260930 +44846 3301 1310 59437644 585168 22.949 0.226 41.319413 -82.605836 +44847 3739 1512 181661442 782374 70.140 0.302 41.230414 -82.712888 +44849 2260 945 126195020 0 48.724 0.000 40.809261 -83.130473 +44850 148 64 980862 0 0.379 0.000 41.035393 -82.684018 +44851 5308 2251 192283889 1938699 74.241 0.749 41.109175 -82.391571 +44853 1397 545 70666219 0 27.284 0.000 41.055286 -83.303003 +44854 1749 753 100775136 34751 38.909 0.013 40.943646 -82.867819 +44855 1271 477 69975100 205252 27.018 0.079 41.106391 -82.591626 +44856 128 58 130078 0 0.050 0.000 40.793974 -82.856755 +44857 23805 10206 215128383 1411541 83.062 0.545 41.216499 -82.577642 +44859 1737 692 78526283 529089 30.319 0.204 41.021963 -82.330724 +44861 64 25 69895 0 0.027 0.000 41.239479 -83.147917 +44864 3204 1530 153105692 3812000 59.114 1.472 40.667614 -82.320618 +44865 3434 1419 91941868 531911 35.499 0.205 40.993405 -82.676942 +44866 2259 825 67277480 332851 25.976 0.129 40.924008 -82.197756 +44867 2351 956 157804841 7837 60.929 0.003 41.149035 -82.982220 +44870 41030 20059 150976206 88354063 58.292 34.114 41.428280 -82.744814 +44874 394 145 1224807 22221 0.473 0.009 40.967869 -82.367336 +44875 13818 6161 204784692 997198 79.068 0.385 40.889990 -82.651686 +44878 3147 1103 156636151 667266 60.478 0.258 40.941616 -82.520733 +44880 2864 1069 79737195 592829 30.787 0.229 41.034602 -82.220113 +44881 70 26 103251 0 0.040 0.000 40.870017 -82.876037 +44882 2909 1231 190156680 76575 73.420 0.030 40.946635 -83.140144 +44883 29413 12559 432230290 3552025 166.885 1.371 41.123331 -83.173911 +44887 1020 417 77761096 20583 30.024 0.008 40.916191 -82.790657 +44889 6703 2747 204599954 1483835 78.996 0.573 41.245882 -82.382433 +44890 11162 4801 226968954 2481565 87.633 0.958 41.085172 -82.710562 +44901 2501 0 303091 0 0.117 0.000 40.791707 -82.509404 +44902 5432 2818 4839811 0 1.869 0.000 40.758156 -82.510589 +44903 25602 11597 295832945 8975190 114.222 3.465 40.776344 -82.527634 +44904 13906 6224 132783989 2042922 51.268 0.789 40.663724 -82.614440 +44905 14513 5441 32942802 99544 12.719 0.038 40.778095 -82.467189 +44906 16718 8045 53835299 109447 20.786 0.042 40.767349 -82.572626 +44907 14313 7361 20168390 75098 7.787 0.029 40.727662 -82.520406 +45001 606 283 1568650 5923 0.606 0.002 39.141445 -84.712238 +45002 13388 5272 65814675 2185773 25.411 0.844 39.196791 -84.757565 +45003 697 334 27358671 1104092 10.563 0.426 39.586583 -84.786470 +45005 29963 12565 93366714 1429909 36.049 0.552 39.538613 -84.295877 +45011 69677 26058 157037282 1624696 60.632 0.627 39.426562 -84.497608 +45013 52613 22368 298976914 1676454 115.436 0.647 39.413632 -84.652679 +45014 43917 19376 56214545 683609 21.705 0.264 39.325714 -84.552390 +45015 12038 5260 15590702 307077 6.020 0.119 39.377030 -84.567353 +45030 17921 7501 110387477 2717929 42.621 1.049 39.259888 -84.759577 +45032 348 154 698043 61249 0.270 0.024 39.502773 -84.010203 +45033 276 110 132936 0 0.051 0.000 39.176783 -84.762971 +45034 1184 435 2347247 125837 0.906 0.049 39.358163 -84.242753 +45036 37504 12830 210589107 590735 81.309 0.228 39.444047 -84.214158 +45039 22814 9179 41044178 990255 15.847 0.382 39.328579 -84.246085 +45040 50627 18401 72753227 95011 28.090 0.037 39.350783 -84.313198 +45041 199 77 478721 19638 0.185 0.008 39.210424 -84.702261 +45042 26451 11895 128269063 1074518 49.525 0.415 39.556885 -84.420158 +45044 52822 22083 98746815 1038534 38.126 0.401 39.482346 -84.410917 +45050 8548 3436 19279621 0 7.444 0.000 39.445352 -84.359182 +45051 177 0 223858 0 0.086 0.000 39.097961 -84.646609 +45052 4004 1621 34031715 2149063 13.140 0.830 39.144456 -84.779062 +45053 3420 1269 70261951 1673 27.128 0.001 39.352993 -84.787920 +45054 2471 955 79918725 58045 30.857 0.022 39.441468 -84.080540 +45056 27038 8942 196858630 839994 76.008 0.324 39.490929 -84.744187 +45062 688 288 835505 0 0.323 0.000 39.479663 -84.552961 +45064 2857 1067 81959660 560152 31.645 0.216 39.562006 -84.596385 +45065 4442 1785 6829617 242270 2.637 0.094 39.370229 -84.211218 +45066 23839 8582 53564611 32793 20.681 0.013 39.551158 -84.224353 +45067 13898 5211 51526002 546002 19.894 0.211 39.494819 -84.480997 +45068 10479 4089 171139591 11063385 66.077 4.272 39.524739 -84.065635 +45069 49060 18912 73654844 48577 28.438 0.019 39.346921 -84.413538 +45070 192 83 1042876 0 0.403 0.000 39.589695 -84.558089 +45101 2385 1237 46702126 966673 18.032 0.373 38.693759 -83.738431 +45102 22680 9188 57056044 1120851 22.029 0.433 39.017190 -84.204345 +45103 31485 12639 223528274 4377879 86.305 1.690 39.097086 -84.134480 +45106 12349 5012 194030848 2501192 74.916 0.966 38.945020 -84.064915 +45107 9236 3785 195543716 910833 75.500 0.352 39.292169 -83.968591 +45111 376 172 1976829 20939 0.763 0.008 39.196499 -84.289827 +45112 64 56 646754 189734 0.250 0.073 38.793092 -84.139912 +45113 3857 1521 97735284 597198 37.736 0.231 39.396971 -83.985801 +45115 78 38 2695496 0 1.041 0.000 38.824132 -83.699155 +45118 3614 1656 101792819 728098 39.302 0.281 39.172249 -83.934069 +45120 3672 1499 106366916 1215423 41.068 0.469 38.828417 -84.090027 +45121 9036 3906 269072945 3843286 103.890 1.484 38.869746 -83.903520 +45122 11054 4350 114409487 570082 44.174 0.220 39.216745 -84.115369 +45123 8671 3751 254803040 3136194 98.380 1.211 39.349996 -83.386020 +45130 3913 1553 97257823 0 37.551 0.000 38.909438 -83.998661 +45131 238 129 551849 112324 0.213 0.043 38.790338 -83.966938 +45132 262 108 475921 0 0.184 0.000 39.343919 -83.600257 +45133 23900 11168 826553733 8766597 319.134 3.385 39.161850 -83.576231 +45135 4761 1860 182575008 59068 70.493 0.023 39.347615 -83.541912 +45140 53267 20412 119975558 1583066 46.323 0.611 39.257273 -84.241953 +45142 4444 1830 164884515 388205 63.662 0.150 39.204555 -83.810822 +45144 4272 2187 181573512 2903122 70.106 1.121 38.705934 -83.610309 +45145 40 12 63298 0 0.024 0.000 39.145329 -84.005165 +45146 1580 608 70346976 202778 27.161 0.078 39.314119 -83.804201 +45147 147 69 1966002 300759 0.759 0.116 39.205120 -84.284277 +45148 1588 599 59926148 297669 23.138 0.115 39.290218 -83.887266 +45150 31394 13326 84727343 938774 32.713 0.362 39.166379 -84.230308 +45152 11329 4363 133620318 635876 51.591 0.246 39.351315 -84.121028 +45153 1665 711 72193325 693613 27.874 0.268 38.864534 -84.187265 +45154 9172 3574 171899647 555016 66.371 0.214 39.060222 -83.915647 +45155 366 155 1312189 19044 0.507 0.007 39.042506 -83.752161 +45156 98 46 1642750 379411 0.634 0.146 38.815161 -84.213826 +45157 9758 3858 108100853 2082075 41.738 0.804 38.953739 -84.230170 +45158 370 135 547627 0 0.211 0.000 39.181517 -84.089598 +45159 3392 1411 132196466 329086 51.041 0.127 39.336834 -83.691741 +45160 699 389 898900 0 0.347 0.000 39.122876 -84.136621 +45162 2519 1004 61153534 569643 23.612 0.220 39.269652 -84.075075 +45164 271 119 734650 9458 0.284 0.004 39.554033 -83.782167 +45166 98 44 1915427 0 0.740 0.000 39.476597 -83.687759 +45167 3764 1872 158840843 2064934 61.329 0.797 38.772821 -83.797606 +45168 1607 664 84869300 44078 32.768 0.017 38.850496 -83.754643 +45169 4772 2097 251525971 833826 97.115 0.322 39.506479 -83.650882 +45171 6054 2695 195423265 1387811 75.453 0.536 39.014545 -83.800276 +45172 131 60 1142617 0 0.441 0.000 39.074472 -83.386883 +45174 2258 812 3186033 161679 1.230 0.062 39.158525 -84.312214 +45176 9100 3648 136571459 2933591 52.731 1.133 39.079262 -84.029729 +45177 22260 9871 446897752 6401822 172.548 2.472 39.463017 -83.844424 +45202 15483 10586 7015784 458774 2.709 0.177 39.109356 -84.502584 +45203 2236 1313 3288293 139947 1.270 0.054 39.105288 -84.533540 +45204 6972 3569 8396558 696640 3.242 0.269 39.106537 -84.553193 +45205 19389 9350 7509626 0 2.899 0.000 39.110038 -84.575206 +45206 10745 7467 5217974 0 2.015 0.000 39.127337 -84.484393 +45207 7974 3188 3045985 0 1.176 0.000 39.142067 -84.471336 +45208 17614 9565 10995054 0 4.245 0.000 39.134746 -84.434430 +45209 9605 6193 6141926 0 2.371 0.000 39.153022 -84.426671 +45211 36111 18003 23425115 2302 9.044 0.001 39.156090 -84.596637 +45212 22253 11191 9652925 0 3.727 0.000 39.164190 -84.452189 +45213 12013 6023 8191232 0 3.163 0.000 39.180801 -84.420095 +45214 8738 5088 5891635 11415 2.275 0.004 39.115007 -84.534356 +45215 29623 13934 30397015 0 11.736 0.000 39.235279 -84.461948 +45216 9570 4809 7809213 0 3.015 0.000 39.200917 -84.481754 +45217 6566 3332 5358625 31671 2.069 0.012 39.166056 -84.497807 +45218 3846 1734 4240091 9630 1.637 0.004 39.263764 -84.518217 +45219 16526 7917 4544822 0 1.755 0.000 39.127376 -84.513064 +45220 15313 7838 7418507 58937 2.864 0.023 39.148783 -84.520309 +45223 12360 6886 15065382 15385 5.817 0.006 39.170810 -84.549528 +45224 19837 9679 16649315 0 6.428 0.000 39.201067 -84.531690 +45225 9040 4850 8062139 31276 3.113 0.012 39.142809 -84.551212 +45226 5476 2987 14409372 1432869 5.563 0.553 39.111687 -84.421674 +45227 17486 9219 15003435 219996 5.793 0.085 39.153872 -84.385808 +45229 13020 8070 7069912 0 2.730 0.000 39.152745 -84.486802 +45230 27536 12557 35513234 1127952 13.712 0.436 39.073748 -84.389281 +45231 40893 17435 37167726 545768 14.351 0.211 39.247497 -84.534830 +45232 6358 2732 6121285 22356 2.363 0.009 39.188263 -84.510096 +45233 15808 5933 28784372 877491 11.114 0.339 39.116767 -84.672583 +45236 24552 12260 17917799 0 6.918 0.000 39.209844 -84.397290 +45237 20021 10349 15698055 0 6.061 0.000 39.193038 -84.452260 +45238 45760 20408 26059960 2881 10.062 0.001 39.107658 -84.610282 +45239 28315 12845 16402472 2685 6.333 0.001 39.203625 -84.580623 +45240 27286 11102 23914080 228835 9.233 0.088 39.284509 -84.529330 +45241 23044 10290 45714301 149741 17.650 0.058 39.276362 -84.397108 +45242 22055 9256 35800316 86297 13.823 0.033 39.242803 -84.352996 +45243 14891 5954 50325120 226875 19.431 0.088 39.188557 -84.336021 +45244 28565 11096 56993383 1595513 22.005 0.616 39.114232 -84.326436 +45245 18542 8315 40790278 95448 15.749 0.037 39.061125 -84.276136 +45246 15133 6876 26161979 29174 10.101 0.011 39.289592 -84.469214 +45247 22082 9673 54944312 387731 21.214 0.150 39.216693 -84.661108 +45248 24915 10334 30820004 0 11.900 0.000 39.164331 -84.662549 +45249 12902 5732 16853466 67838 6.507 0.026 39.280355 -84.328890 +45251 22391 8849 30910431 55626 11.935 0.021 39.274640 -84.597876 +45252 4600 2012 29399797 437155 11.351 0.169 39.270192 -84.628137 +45255 21775 9416 33083600 495741 12.774 0.191 39.059554 -84.328333 +45301 130 60 239222 0 0.092 0.000 39.711329 -84.022210 +45302 4280 1539 130944676 196376 50.558 0.076 40.405910 -84.209150 +45303 2223 910 82269379 159972 31.764 0.062 40.213971 -84.659636 +45304 7300 3037 219824614 229462 84.875 0.089 39.989273 -84.525310 +45305 10712 4304 37421364 257978 14.448 0.100 39.632188 -84.078557 +45306 2294 920 86806539 168166 33.516 0.065 40.459234 -84.187139 +45307 338 146 414653 0 0.160 0.000 39.580814 -83.723592 +45308 4682 1862 132479124 1097233 51.150 0.424 40.129638 -84.457690 +45309 12123 5241 172759678 1513 66.703 0.001 39.842731 -84.414705 +45310 244 104 450230 4111 0.174 0.002 40.352937 -84.642673 +45311 6367 2640 236635351 2081564 91.365 0.804 39.626388 -84.667499 +45312 1435 574 71366385 16509 27.555 0.006 40.052153 -84.093008 +45314 5916 1457 131063332 517694 50.604 0.200 39.750080 -83.776250 +45315 4377 1731 27799987 0 10.734 0.000 39.856990 -84.339063 +45316 115 63 251280 0 0.097 0.000 39.797001 -83.825600 +45317 1180 474 63941353 10887 24.688 0.004 40.211018 -83.988585 +45318 5365 2242 115802652 810143 44.712 0.313 40.129070 -84.353716 +45319 293 125 1013672 0 0.391 0.000 39.916364 -83.943060 +45320 15691 6817 346581049 1007302 133.816 0.389 39.750639 -84.681425 +45321 931 381 33978836 26735 13.119 0.010 39.878597 -84.686054 +45322 21447 9277 51526707 320385 19.895 0.124 39.899781 -84.327830 +45323 5019 2254 16394775 0 6.330 0.000 39.849966 -83.927621 +45324 40529 18400 82984020 609054 32.040 0.235 39.819023 -83.990794 +45325 2647 1053 65773355 420651 25.395 0.162 39.692609 -84.430204 +45326 1179 479 59748094 38799 23.069 0.015 40.140632 -84.093589 +45327 8917 3719 124312997 36219 47.998 0.014 39.628760 -84.403005 +45328 525 196 1032186 3233 0.399 0.001 40.116196 -84.496233 +45330 834 350 2251755 2167 0.869 0.001 39.648255 -84.528608 +45331 22930 10619 387232398 1491463 149.511 0.576 40.098606 -84.650546 +45332 612 280 32930853 159106 12.715 0.061 39.990846 -84.790873 +45333 1345 513 57400196 632242 22.162 0.244 40.249465 -84.331773 +45334 2037 875 66595104 61848 25.713 0.024 40.443454 -84.043362 +45335 6939 2831 219901987 955447 84.905 0.369 39.639799 -83.741205 +45336 153 62 1976171 9902 0.763 0.004 40.442680 -84.257321 +45337 1690 674 53043821 59700 20.480 0.023 39.981478 -84.422620 +45338 5298 2193 131690266 414917 50.846 0.160 39.849751 -84.543549 +45339 1234 540 37004075 621396 14.287 0.240 40.012759 -84.342030 +45340 830 312 59814558 133522 23.095 0.052 40.368571 -84.052152 +45341 3883 1820 15699652 941661 6.062 0.364 39.875585 -84.024458 +45342 36784 16528 89837037 1096750 34.686 0.423 39.629338 -84.275969 +45344 16955 6880 171039722 601514 66.039 0.232 39.952394 -84.009766 +45345 6144 2612 56344418 0 21.755 0.000 39.737813 -84.407471 +45346 2293 926 108757039 174234 41.991 0.067 39.982115 -84.709956 +45347 4324 1919 142794848 590839 55.133 0.228 39.884214 -84.750967 +45348 994 372 78463979 349762 30.295 0.135 40.329646 -84.648790 +45349 427 147 692700 0 0.267 0.000 39.988475 -83.941570 +45350 106 36 491695 0 0.190 0.000 40.324339 -84.573740 +45351 274 110 827589 0 0.320 0.000 40.339415 -84.495151 +45352 208 92 380147 0 0.147 0.000 40.050123 -84.744283 +45353 196 76 7282358 0 2.812 0.000 40.292573 -84.042704 +45354 642 290 2277178 0 0.879 0.000 39.910552 -84.399687 +45356 25172 11263 197385937 2263513 76.211 0.874 40.162840 -84.228210 +45358 356 145 396100 0 0.153 0.000 39.986580 -84.487700 +45359 1970 808 39016882 359265 15.065 0.139 40.046535 -84.350706 +45360 335 143 376391 21481 0.145 0.008 40.330159 -84.092195 +45361 288 104 1153417 0 0.445 0.000 39.963708 -84.414818 +45362 1076 435 83119257 105931 32.093 0.041 40.292481 -84.627731 +45363 1770 617 60470353 120637 23.348 0.047 40.239308 -84.400069 +45365 30561 12844 415499216 2071532 160.425 0.800 40.283740 -84.159773 +45368 4727 2042 204888723 422145 79.108 0.163 39.844915 -83.647979 +45369 3545 1418 114217241 782266 44.100 0.302 39.952816 -83.593695 +45370 2452 1045 55657336 581075 21.489 0.224 39.608306 -84.032996 +45371 18333 7719 127747449 1356159 49.324 0.524 39.939546 -84.160640 +45372 375 166 663728 0 0.256 0.000 40.016003 -83.842304 +45373 35131 15223 221556544 1868268 85.543 0.721 40.032528 -84.194575 +45377 15215 7025 57193263 694643 22.082 0.268 39.896083 -84.224285 +45378 407 163 591625 0 0.228 0.000 39.902924 -84.488721 +45380 5477 2140 176975172 411274 68.330 0.159 40.244498 -84.516917 +45381 5509 2254 132791809 460802 51.271 0.178 39.725292 -84.524833 +45382 1269 497 53484263 12855 20.650 0.005 39.898396 -84.608917 +45383 7037 3110 67550272 332185 26.081 0.128 39.955577 -84.343208 +45384 2001 155 3370895 53264 1.302 0.021 39.714149 -83.884739 +45385 37247 16306 354028653 2340866 136.691 0.904 39.669121 -83.911874 +45387 5169 2512 71440847 417739 27.583 0.161 39.797224 -83.887362 +45388 812 279 45378312 28913 17.521 0.011 40.316916 -84.478140 +45389 521 252 828345 0 0.320 0.000 40.057169 -84.027600 +45390 3461 1489 136945874 319883 52.875 0.124 40.215185 -84.760567 +45402 11420 6720 10877473 309058 4.200 0.119 39.759360 -84.209094 +45403 15006 7699 10709278 162207 4.135 0.063 39.768856 -84.147428 +45404 10833 5263 15858039 281568 6.123 0.109 39.791105 -84.159969 +45405 18948 11797 10140894 231258 3.915 0.089 39.792160 -84.216028 +45406 21914 12411 12954203 19234 5.002 0.007 39.784214 -84.241080 +45409 12868 3488 8969564 102569 3.463 0.040 39.721305 -84.187970 +45410 15339 8287 5774095 0 2.229 0.000 39.748047 -84.158124 +45414 21055 9720 58734206 1007330 22.677 0.389 39.847871 -84.207558 +45415 12631 5794 15978639 274924 6.169 0.106 39.835581 -84.257387 +45416 5740 2548 4807681 0 1.856 0.000 39.807155 -84.258107 +45417 31281 16127 84872236 401482 32.769 0.155 39.735172 -84.288826 +45418 1351 454 6246289 72652 2.412 0.028 39.699392 -84.260728 +45419 15159 7141 9976186 0 3.852 0.000 39.713376 -84.167179 +45420 25438 13132 16031129 68080 6.190 0.026 39.718818 -84.129169 +45424 49930 20615 81675827 574171 31.535 0.222 39.843157 -84.110015 +45426 15239 7950 49953364 36571 19.287 0.014 39.804459 -84.319726 +45428 240 0 1526916 0 0.590 0.000 39.742877 -84.260635 +45429 25885 12956 25737056 33229 9.937 0.013 39.682905 -84.158915 +45430 7402 3072 13016308 10428 5.026 0.004 39.709674 -84.084844 +45431 26315 12286 29670315 18738 11.456 0.007 39.763796 -84.084229 +45432 15288 6874 19472390 22439 7.518 0.009 39.739492 -84.085195 +45433 2011 522 28318146 864204 10.934 0.334 39.821901 -84.049873 +45434 12163 4594 27159898 336498 10.486 0.130 39.721385 -84.031824 +45439 10000 4824 15991556 628822 6.174 0.243 39.699728 -84.219335 +45440 20734 9748 24386066 51849 9.416 0.020 39.675916 -84.095621 +45449 18175 8921 17183543 493434 6.635 0.191 39.664052 -84.237763 +45458 29880 13125 51819473 74975 20.008 0.029 39.600591 -84.156971 +45459 27749 13439 36482666 156655 14.086 0.060 39.647433 -84.170598 +45502 16110 6600 299331359 5742404 115.572 2.217 39.860825 -83.752812 +45503 32999 15404 44911607 3466571 17.340 1.338 39.959574 -83.771782 +45504 18465 7868 60192631 385694 23.241 0.149 39.946846 -83.867291 +45505 20197 9622 34894357 125064 13.473 0.048 39.902038 -83.757349 +45506 14055 6556 31918209 103084 12.324 0.040 39.907948 -83.836862 +45601 57842 23416 885727798 8382009 341.981 3.236 39.312060 -82.957071 +45612 5303 2317 294872242 1792887 113.851 0.692 39.206876 -83.279087 +45613 3597 1492 200449856 379026 77.394 0.146 39.034216 -82.850900 +45614 5080 2081 189491325 1877403 73.163 0.725 38.929678 -82.277196 +45616 1559 747 213234643 314435 82.330 0.121 38.760962 -83.314325 +45617 71 36 438330 0 0.169 0.000 39.279646 -83.155641 +45618 30 12 58492 0 0.023 0.000 38.885494 -83.616413 +45619 8200 3632 90753380 1406371 35.040 0.543 38.471364 -82.452233 +45620 917 453 59607982 2404934 23.015 0.929 38.960269 -82.141796 +45621 313 143 747751 0 0.289 0.000 39.110788 -82.607744 +45622 321 167 37488592 55218 14.474 0.021 39.375004 -82.490842 +45623 3494 1581 187256708 1363998 72.300 0.527 38.641686 -82.269786 +45624 31 17 348314 0 0.134 0.000 39.170232 -83.347015 +45628 5211 2238 208297461 0 80.424 0.000 39.390980 -83.198042 +45629 3438 1323 78850801 1514412 30.444 0.585 38.657553 -82.815896 +45630 118 54 294892 0 0.114 0.000 38.699141 -83.091559 +45631 15048 7105 293456850 4814001 113.304 1.859 38.819839 -82.261287 +45634 2112 875 88522463 2290713 34.179 0.884 39.183844 -82.484582 +45636 148 82 1679235 118887 0.648 0.046 38.587615 -82.828993 +45638 21635 9785 200806946 3764503 77.532 1.453 38.561201 -82.680194 +45640 15960 6977 460851250 1453088 177.936 0.561 39.019673 -82.656336 +45642 33 27 150520 19211 0.058 0.007 39.047033 -83.054463 +45644 4249 1765 157164858 42166 60.682 0.016 39.459532 -82.844762 +45645 3036 1263 121049340 346704 46.737 0.134 38.566357 -82.527002 +45646 370 166 40594166 186873 15.673 0.072 39.075169 -83.322787 +45647 2484 1158 172198365 372362 66.486 0.144 39.294341 -82.733029 +45648 13372 4911 368038745 3579478 142.101 1.382 38.917892 -83.007754 +45650 435 255 38700622 155516 14.942 0.060 38.738293 -83.422328 +45651 6047 2750 388256614 1581043 149.907 0.610 39.285420 -82.483478 +45652 3519 1464 86062119 999006 33.229 0.386 38.823821 -83.095018 +45653 4179 1728 120652399 478724 46.584 0.185 38.889635 -82.821976 +45654 917 431 145209386 430309 56.066 0.166 39.366498 -82.377618 +45656 6639 2873 336829672 1247443 130.051 0.482 38.880772 -82.593729 +45657 2744 1224 254939804 664861 98.433 0.257 38.843671 -83.236452 +45658 2787 1166 251634755 1012658 97.157 0.391 38.762928 -82.411555 +45659 2973 1235 254510619 1574087 98.267 0.608 38.654980 -82.641130 +45660 8297 3594 507980135 1842986 196.132 0.712 38.991389 -83.367397 +45661 7657 3130 263704561 2999627 101.817 1.158 39.045633 -83.108220 +45662 30219 13784 139462347 2344311 53.847 0.905 38.782086 -82.918349 +45663 6762 2969 167703027 1851733 64.751 0.715 38.738811 -83.088819 +45669 10399 4543 89703037 652555 34.635 0.252 38.498413 -82.358442 +45671 457 219 43492323 31185 16.792 0.012 38.970254 -83.248012 +45672 1749 812 138458807 396723 53.459 0.153 39.192718 -82.694823 +45673 385 178 1344433 0 0.519 0.000 39.203916 -82.811991 +45674 584 181 4186897 67702 1.617 0.026 38.882424 -82.374667 +45678 1101 506 105507510 620266 40.737 0.239 38.610443 -82.379581 +45679 2812 1204 150243693 16067 58.009 0.006 38.964573 -83.555915 +45680 13074 5690 85852281 1244291 33.148 0.480 38.467808 -82.546829 +45681 1689 727 99270574 32284 38.329 0.012 39.308342 -83.256236 +45682 2420 1070 120462378 244051 46.511 0.094 38.806931 -82.694911 +45684 1804 910 205290476 3027456 79.263 1.169 38.651441 -83.191469 +45685 1251 559 78411056 50122 30.275 0.019 38.931802 -82.456548 +45686 3397 1577 239606849 1492402 92.513 0.576 39.014131 -82.376867 +45688 475 237 95081870 320809 36.711 0.124 38.731078 -82.543255 +45690 14412 6551 372632475 4707747 143.874 1.818 39.136727 -83.007782 +45692 8773 3935 211939594 540943 81.830 0.209 39.113937 -82.541066 +45693 8981 3983 327268474 426387 126.359 0.165 38.807103 -83.540290 +45694 12147 5266 184550477 1683318 71.255 0.650 38.743875 -82.780883 +45695 674 362 95152024 589936 36.738 0.228 39.161543 -82.372654 +45696 1438 637 93262934 434716 36.009 0.168 38.601157 -82.452118 +45697 4894 2037 267004448 56639 103.091 0.022 38.931555 -83.673716 +45698 341 179 9585040 103742 3.701 0.040 39.285800 -82.391730 +45701 34122 12233 383961614 4850096 148.248 1.873 39.311963 -82.086020 +45710 5541 2493 261637954 860475 101.019 0.332 39.189862 -82.237676 +45711 1115 583 132383592 585683 51.114 0.226 39.428432 -81.931976 +45714 9951 4849 89240879 1896392 34.456 0.732 39.316984 -81.614345 +45715 2630 1207 110374558 1892297 42.616 0.731 39.605069 -81.628021 +45716 469 227 1005826 0 0.388 0.000 39.462855 -82.181731 +45719 1046 475 1833009 4371 0.708 0.002 39.400532 -82.126627 +45721 29 15 132683 0 0.051 0.000 39.565488 -81.584377 +45723 3740 1752 170848987 2248613 65.965 0.868 39.226250 -81.823487 +45724 1744 808 138011156 238130 53.286 0.092 39.383437 -81.800411 +45727 516 261 80933801 325799 31.249 0.126 39.650087 -81.488187 +45729 1289 544 66232009 104027 25.572 0.040 39.418373 -81.604397 +45732 4776 2433 193218925 2673640 74.602 1.032 39.515733 -82.068357 +45734 549 351 90080818 20280 34.780 0.008 39.641444 -81.191281 +45735 1730 792 129657808 459133 50.061 0.177 39.261786 -81.928198 +45740 494 244 905102 3782 0.349 0.001 39.478091 -82.076656 +45741 918 477 110534899 17014 42.678 0.007 39.075062 -82.247085 +45742 3014 1295 69887478 1355341 26.984 0.523 39.287076 -81.730393 +45743 1449 699 95090012 711990 36.714 0.275 39.076440 -81.847644 +45744 2728 1315 140902827 2587075 54.403 0.999 39.548767 -81.493983 +45745 1140 668 193000501 907994 74.518 0.351 39.606169 -81.329638 +45746 433 192 42846928 471451 16.543 0.182 39.607107 -81.458824 +45750 27785 12614 287920366 5324432 111.167 2.056 39.429949 -81.422175 +45760 3892 1892 50651362 254696 19.557 0.098 39.016845 -82.121701 +45761 1745 818 85992153 452794 33.202 0.175 39.425760 -82.075255 +45764 9431 3883 208442777 2161356 80.480 0.835 39.442499 -82.231394 +45766 1382 675 76433273 291099 29.511 0.112 39.325249 -82.257669 +45767 2800 1541 294779238 1739773 113.815 0.672 39.539275 -81.128173 +45768 1703 767 77494835 1025234 29.921 0.396 39.422645 -81.295091 +45769 6642 3077 271803620 270635 104.944 0.104 39.109284 -82.051040 +45770 620 294 52973066 1443503 20.453 0.557 38.982608 -81.798272 +45771 3432 1631 159777271 3046743 61.690 1.176 38.981690 -81.894582 +45772 2149 1006 111795101 1197575 43.164 0.462 39.148706 -81.819169 +45773 83 37 12413205 0 4.793 0.000 39.458516 -81.267304 +45775 1259 560 75293501 0 29.071 0.000 39.082882 -82.154233 +45776 765 375 50961284 56864 19.676 0.022 39.181410 -82.024066 +45778 824 412 63174128 674140 24.392 0.260 39.353531 -81.893065 +45779 755 368 1886592 451147 0.728 0.174 38.997761 -81.965765 +45780 3254 1575 6544924 50753 2.527 0.020 39.366438 -82.130881 +45782 343 156 1426563 18530 0.551 0.007 39.487627 -82.081020 +45784 3386 1426 96989731 520443 37.448 0.201 39.388458 -81.678142 +45786 3253 1374 169154468 3337407 65.311 1.289 39.501918 -81.656332 +45787 29 16 73909 765 0.029 0.000 39.468248 -81.632005 +45788 1129 496 89420435 426143 34.525 0.165 39.514987 -81.367568 +45789 177 104 29582237 168830 11.422 0.065 39.551276 -81.255011 +45801 25303 9821 116452417 1486352 44.963 0.574 40.772873 -84.034097 +45804 15758 7674 56277245 3009765 21.729 1.162 40.709622 -84.061155 +45805 22514 10144 38962322 382885 15.043 0.148 40.728042 -84.165459 +45806 11158 4672 155497640 3082289 60.038 1.190 40.672435 -84.126166 +45807 12221 5151 196955042 1060377 76.045 0.409 40.805996 -84.171653 +45808 349 141 1372915 10715 0.530 0.004 40.830591 -83.968919 +45809 157 78 658447 0 0.254 0.000 40.845494 -84.187163 +45810 8460 2926 162062685 132337 62.573 0.051 40.784403 -83.813270 +45812 1943 879 103166607 13578 39.833 0.005 40.681882 -83.823151 +45813 3530 1587 141957119 1513171 54.810 0.584 41.192293 -84.733173 +45814 2620 1045 92370446 47786 35.664 0.018 40.899318 -83.630161 +45816 291 116 689906 0 0.266 0.000 41.004457 -83.794042 +45817 6736 2524 167303746 714538 64.596 0.276 40.878759 -83.883975 +45819 233 102 667499 0 0.258 0.000 40.624019 -84.260393 +45820 543 223 1867933 0 0.721 0.000 40.834954 -84.084002 +45821 1435 607 102849993 1109342 39.711 0.428 41.226064 -84.558775 +45822 18943 9392 424777180 27141522 164.007 10.479 40.555742 -84.598725 +45826 306 136 698706 2858 0.270 0.001 40.436217 -84.493693 +45827 2369 914 160153607 1126702 61.836 0.435 40.998103 -84.298851 +45828 6125 2386 85565594 195473 33.037 0.075 40.483279 -84.671645 +45830 6228 2442 245664720 465444 94.852 0.180 40.908460 -84.095933 +45831 3181 1379 190902439 357372 73.708 0.138 41.111205 -84.250346 +45832 2905 1186 180757207 287677 69.791 0.111 40.926421 -84.730092 +45833 10667 4466 178641468 991452 68.974 0.383 40.834219 -84.348665 +45835 490 230 49630239 6580 19.162 0.003 40.754415 -83.699893 +45836 1479 639 62210947 152110 24.020 0.059 40.792911 -83.639896 +45838 50 18 353641 0 0.137 0.000 40.742048 -84.477662 +45840 54979 24915 434307493 4350325 167.687 1.680 41.025371 -83.651983 +45841 929 375 66317438 7750 25.605 0.003 40.873705 -83.741573 +45843 3701 1576 259549793 12601 100.213 0.005 40.771707 -83.544556 +45844 3256 1252 140690454 956533 54.321 0.369 40.910907 -84.282481 +45845 3178 1166 82812116 545961 31.974 0.211 40.331338 -84.382544 +45846 4437 1545 192915252 294573 74.485 0.114 40.411515 -84.742520 +45849 1219 518 114570008 79127 44.236 0.031 41.013772 -84.446662 +45850 3653 1470 155324212 678144 59.971 0.262 40.704698 -83.918239 +45851 669 245 87681807 0 33.854 0.000 41.032333 -84.600051 +45853 1439 571 2861696 64194 1.105 0.025 40.985266 -84.198500 +45854 498 192 860207 6667 0.332 0.003 40.757571 -83.952126 +45855 193 80 688239 0 0.266 0.000 41.087908 -84.584089 +45856 5194 2039 271358832 241237 104.772 0.093 41.111678 -83.999866 +45858 3083 1231 162715561 116204 62.825 0.045 41.106604 -83.804696 +45859 495 227 3444616 0 1.330 0.000 40.683735 -83.778658 +45860 2274 753 90608858 72722 34.984 0.028 40.399273 -84.516848 +45861 296 124 4863447 0 1.878 0.000 41.082814 -84.426503 +45862 1507 648 95061523 157440 36.703 0.061 40.668866 -84.516009 +45863 1254 523 78056260 541400 30.138 0.209 40.908049 -84.444959 +45864 163 75 2860563 3161 1.104 0.001 41.097045 -84.146577 +45865 4745 2071 82127186 3283961 31.709 1.268 40.391875 -84.368261 +45866 186 95 490900 94385 0.190 0.036 40.490375 -84.551169 +45867 1189 484 66251412 50394 25.580 0.019 40.897586 -83.526562 +45868 567 242 40309841 0 15.564 0.000 40.966283 -83.849662 +45869 4534 1827 95247377 48312 36.775 0.019 40.457931 -84.403870 +45870 156 56 842639 0 0.325 0.000 40.556279 -83.951424 +45871 1955 758 61516680 30179 23.752 0.012 40.493423 -84.300445 +45872 4240 1797 78646222 222168 30.365 0.086 41.188726 -83.685661 +45873 2238 991 127123150 1683799 49.083 0.650 41.117776 -84.390198 +45874 2100 924 148368252 88791 57.285 0.034 40.788114 -84.672051 +45875 10989 4352 265385089 1108906 102.466 0.428 41.022008 -84.061201 +45876 863 360 1561973 9357 0.603 0.004 40.927246 -84.340922 +45877 2139 861 71903359 339959 27.762 0.131 40.959121 -83.933578 +45879 6284 2892 273758649 733659 105.699 0.283 41.128714 -84.563581 +45880 2395 1056 153312652 34921 59.194 0.013 41.071213 -84.732946 +45881 1461 567 76343682 53175 29.476 0.021 40.946247 -83.780047 +45882 3004 1245 217378798 283480 83.930 0.109 40.681856 -84.678497 +45883 3883 1350 93274565 197858 36.014 0.076 40.410203 -84.622937 +45884 145 64 435933 0 0.168 0.000 40.554315 -84.082742 +45885 12661 5692 183541254 568712 70.866 0.220 40.569863 -84.390644 +45886 551 230 54965209 11549 21.222 0.004 40.996900 -84.620781 +45887 4755 1904 184755233 330077 71.334 0.127 40.710947 -84.365224 +45888 220 96 437339 0 0.169 0.000 40.602358 -84.086820 +45889 1351 500 52670382 54990 20.336 0.021 41.152324 -83.638317 +45890 671 276 38287625 68830 14.783 0.027 40.975432 -83.489969 +45891 15275 6899 342495085 1340541 132.238 0.518 40.874541 -84.574267 +45894 605 267 84687075 50416 32.698 0.019 40.759089 -84.461379 +45895 17945 7590 490847471 644454 189.517 0.249 40.577695 -84.154664 +45896 2089 850 98507236 72651 38.034 0.028 40.607436 -83.929663 +45897 101 53 3564103 18567 1.376 0.007 40.828798 -83.655599 +45898 1314 572 87736537 412771 33.875 0.159 40.743473 -84.769653 +45899 194 93 801677 1035 0.310 0.000 40.800460 -84.773851 +46001 10459 4833 191254296 414880 73.844 0.160 40.251251 -85.657942 +46011 16770 7441 193591292 198889 74.746 0.077 40.129896 -85.760597 +46012 19414 8805 84153159 716769 32.492 0.277 40.153200 -85.621229 +46013 17876 9081 55983620 27459 21.615 0.011 40.047934 -85.681768 +46016 19225 10004 16488664 0 6.366 0.000 40.097817 -85.681513 +46017 6025 2779 44835705 69634 17.311 0.027 40.069277 -85.607160 +46030 3308 1332 96739569 893498 37.351 0.345 40.166144 -86.009191 +46031 2161 877 122056806 260354 47.126 0.101 40.210969 -86.018095 +46032 42234 17629 66847654 996885 25.810 0.385 39.962604 -86.174761 +46033 34889 12342 44397541 1371116 17.142 0.529 39.979283 -86.085557 +46034 6730 2905 74629279 2588829 28.815 1.000 40.127927 -86.046784 +46035 1113 480 62228598 0 24.027 0.000 40.190015 -86.677986 +46036 11663 5475 203651866 0 78.630 0.000 40.295166 -85.831108 +46037 35891 12631 49006828 2094217 18.922 0.809 39.960563 -85.947162 +46038 37723 15370 40896321 1067427 15.790 0.412 39.966704 -86.017173 +46039 745 316 70112295 0 27.071 0.000 40.369458 -86.312273 +46040 9944 3767 86186943 1158686 33.277 0.447 39.927280 -85.834287 +46041 23891 9560 651218871 425133 251.437 0.164 40.295038 -86.493840 +46044 2965 1251 56662829 42188 21.878 0.016 40.211777 -85.792705 +46045 93 41 88188 0 0.034 0.000 40.288764 -86.149860 +46047 43 18 34330 0 0.013 0.000 40.284140 -85.947357 +46048 2406 917 3497549 0 1.350 0.000 39.955512 -85.801727 +46049 850 369 69693087 6187 26.909 0.002 40.294988 -86.221816 +46050 1706 695 118538951 0 45.768 0.000 40.204434 -86.348899 +46051 2826 1168 40986599 0 15.825 0.000 40.057932 -85.837287 +46052 22060 9520 460913042 40328 177.960 0.016 40.042906 -86.456533 +46055 10193 3567 67253554 1411383 25.967 0.545 39.888415 -85.902210 +46056 2246 940 60036275 53116 23.180 0.021 39.975815 -85.611956 +46057 1179 483 64535423 0 24.917 0.000 40.336261 -86.377326 +46058 2149 876 69262763 0 26.743 0.000 40.361165 -86.647374 +46060 34708 14049 206839788 1944994 79.861 0.751 40.064624 -85.915911 +46062 29730 11794 88247692 5291745 34.073 2.043 40.061266 -86.056039 +46063 401 173 1191660 0 0.460 0.000 40.270448 -85.723973 +46064 17148 5301 168365933 890302 65.006 0.344 39.983678 -85.741604 +46065 3669 1375 98691326 30594 38.105 0.012 40.427754 -86.612176 +46068 2850 1184 117251902 0 45.271 0.000 40.376963 -86.115827 +46069 6664 2761 235398605 254709 90.888 0.098 40.138691 -86.228367 +46070 2351 981 117567665 33467 45.393 0.013 40.335565 -85.662341 +46071 3417 1374 179641955 422403 69.360 0.163 40.120056 -86.608756 +46072 9324 4165 291875317 0 112.694 0.000 40.286104 -86.067353 +46074 26745 9679 93488642 403592 36.096 0.156 40.036139 -86.172532 +46075 2913 1273 79941310 64488 30.866 0.025 40.020864 -86.330672 +46076 1696 760 114976092 61074 44.393 0.024 40.356035 -85.928005 +46077 24512 8912 112957915 469604 43.613 0.181 39.984562 -86.282625 +46103 159 56 96552 0 0.037 0.000 39.688623 -86.613632 +46104 970 404 72536511 47702 28.007 0.018 39.658470 -85.601830 +46105 1928 839 109220108 34897 42.170 0.013 39.764072 -86.810568 +46106 5928 2406 70485006 11577 27.214 0.004 39.513173 -86.205119 +46107 12774 5792 8401774 0 3.244 0.000 39.716413 -86.091459 +46110 500 196 37668636 236989 14.544 0.092 39.561460 -85.922020 +46111 322 146 274710 388 0.106 0.000 39.538824 -86.369536 +46112 33662 12902 103718695 721634 40.046 0.279 39.863910 -86.382425 +46113 14063 5264 42470056 279699 16.398 0.108 39.636299 -86.302553 +46115 1933 818 95743449 461448 36.967 0.178 39.738754 -85.566649 +46117 671 279 30534697 55923 11.790 0.022 39.814706 -85.615963 +46118 5015 2012 141281861 419207 54.549 0.162 39.662375 -86.518005 +46120 5954 2674 237841902 1304754 91.831 0.504 39.511512 -86.788928 +46121 5276 2275 140962294 1610067 54.426 0.622 39.679033 -86.678813 +46122 14671 5772 228274557 861204 88.137 0.333 39.773322 -86.551142 +46123 31754 12046 79361954 792389 30.642 0.306 39.764395 -86.403457 +46124 8127 3286 159583883 1206463 61.616 0.466 39.370017 -85.927910 +46125 51 24 88060 0 0.034 0.000 39.521518 -86.641603 +46126 4668 1860 84694877 311771 32.701 0.120 39.618024 -85.880340 +46127 416 172 61232945 0 23.642 0.000 39.711952 -85.312209 +46128 1949 800 90702313 284255 35.020 0.110 39.658583 -86.742562 +46130 2508 1030 77116243 92565 29.775 0.036 39.672748 -85.835022 +46131 31036 12682 324085636 503729 125.130 0.194 39.472968 -86.043001 +46133 816 361 63613325 35933 24.561 0.014 39.595056 -85.310829 +46135 20992 7374 431344362 1942481 166.543 0.750 39.654571 -86.893996 +46140 38543 16133 438940858 1767386 169.476 0.682 39.801973 -85.772071 +46142 30413 12478 38768329 449115 14.969 0.173 39.621810 -86.175319 +46143 48555 19742 126415464 367953 48.809 0.142 39.595860 -86.116319 +46144 211 89 1342909 0 0.519 0.000 39.655159 -85.647354 +46146 117 57 2014478 0 0.778 0.000 39.585666 -85.568334 +46147 3264 1286 152676382 78742 58.949 0.030 39.971149 -86.622827 +46148 5097 2173 132253995 589166 51.064 0.227 39.811400 -85.512466 +46149 1890 743 67965321 34997 26.242 0.014 39.883604 -86.555992 +46150 764 331 63887831 72663 24.667 0.028 39.546574 -85.601919 +46151 30921 12668 530614386 9828505 204.871 3.795 39.457212 -86.433280 +46155 103 39 59164 0 0.023 0.000 39.743501 -85.429741 +46156 1470 566 105796779 72985 40.848 0.028 39.489361 -85.494450 +46157 3639 1431 82560882 349830 31.877 0.135 39.553630 -86.528731 +46158 23053 9257 195081320 2689884 75.321 1.039 39.579356 -86.373602 +46160 6421 2727 239369468 1446521 92.421 0.559 39.350884 -86.268607 +46161 2655 1091 94211984 491845 36.375 0.190 39.669880 -85.696284 +46162 458 198 29094090 74140 11.233 0.029 39.550982 -85.953085 +46163 11963 4398 76412358 147806 29.503 0.057 39.729088 -85.902033 +46164 3957 2631 60833068 2403936 23.488 0.928 39.323705 -86.114278 +46165 1498 628 103832305 234324 40.090 0.090 39.849828 -86.640151 +46166 2306 917 90399834 133179 34.904 0.051 39.432913 -86.587297 +46167 6336 2332 77725198 64748 30.010 0.025 39.876973 -86.467801 +46168 30309 11484 83539423 599383 32.255 0.231 39.685257 -86.392912 +46171 1695 737 94127786 172510 36.343 0.067 39.525101 -86.960902 +46172 2427 1040 174845354 36607 67.508 0.014 39.827835 -86.818464 +46173 11190 4903 584761543 240194 225.778 0.093 39.600903 -85.430594 +46175 597 268 57690120 119108 22.274 0.046 39.815724 -86.966359 +46176 27816 12240 445834825 2370070 172.138 0.915 39.527281 -85.774394 +46180 1028 435 66375452 96207 25.628 0.037 39.592189 -86.618525 +46181 4832 1937 116221796 1077330 44.873 0.416 39.373373 -86.169997 +46182 1927 808 91370374 54191 35.278 0.021 39.458501 -85.669492 +46183 82 32 79979 0 0.031 0.000 39.652679 -86.281653 +46184 11806 4387 53021278 81398 20.472 0.031 39.559808 -86.073225 +46186 1753 700 73340349 127667 28.317 0.049 39.894213 -85.644782 +46201 30962 16868 14468533 0 5.586 0.000 39.774142 -86.109200 +46202 16335 9825 14454645 416873 5.581 0.161 39.784102 -86.163477 +46203 38950 17688 35948136 0 13.880 0.000 39.737586 -86.096931 +46204 5125 3033 2904536 19065 1.121 0.007 39.771994 -86.156997 +46205 25356 14175 16217183 203466 6.261 0.079 39.829397 -86.134374 +46208 22239 11993 17388430 339024 6.714 0.131 39.819328 -86.171059 +46214 24306 11881 18404984 565655 7.106 0.218 39.792817 -86.291528 +46216 1697 1065 9038787 11155 3.490 0.004 39.868014 -86.009743 +46217 29358 12039 55607636 235851 21.470 0.091 39.674616 -86.191493 +46218 29028 14978 24436825 0 9.435 0.000 39.807262 -86.099745 +46219 33930 16871 33400963 22578 12.896 0.009 39.782412 -86.042939 +46220 34830 17651 31183045 1062678 12.040 0.410 39.867114 -86.108848 +46221 26393 10647 51309207 1180251 19.811 0.456 39.691926 -86.236776 +46222 34044 15121 28914182 554266 11.164 0.214 39.790968 -86.215260 +46224 35094 16817 18562763 68056 7.167 0.026 39.795413 -86.256890 +46225 7319 3594 10457056 285434 4.037 0.110 39.740314 -86.163255 +46226 43904 19985 37328938 34714 14.413 0.013 39.838896 -86.052485 +46227 57086 25687 43393274 34304 16.754 0.013 39.674763 -86.132676 +46228 14755 6428 20735152 117993 8.006 0.046 39.848228 -86.200725 +46229 27262 11437 28124977 110697 10.859 0.043 39.788484 -85.977075 +46231 10440 3575 31907658 46348 12.320 0.018 39.715527 -86.320620 +46234 24810 10036 32992792 3424167 12.739 1.322 39.813309 -86.326363 +46235 30825 12919 24980861 9234 9.645 0.004 39.836957 -85.974537 +46236 27294 10534 27235344 3793648 10.516 1.465 39.895722 -85.967501 +46237 39624 16721 38496219 50767 14.863 0.020 39.671143 -86.072110 +46239 25345 9628 75230027 136062 29.046 0.053 39.721517 -85.999033 +46240 18731 10194 25336292 1627993 9.782 0.629 39.906354 -86.124892 +46241 30670 12591 58016012 257780 22.400 0.100 39.729852 -86.285424 +46250 18546 9961 19714209 5579 7.612 0.002 39.902125 -86.064843 +46254 38095 17562 35375891 2009611 13.659 0.776 39.849717 -86.271637 +46256 23647 10593 28989676 1264234 11.193 0.488 39.908383 -86.013138 +46259 11617 4057 55558500 28974 21.451 0.011 39.650935 -85.981339 +46260 32406 15224 26323133 19624 10.163 0.008 39.898143 -86.177595 +46268 24965 12214 34413368 77393 13.287 0.030 39.898613 -86.233341 +46278 8197 3211 33790174 927543 13.046 0.358 39.892946 -86.298050 +46280 6793 3189 11055172 510165 4.268 0.197 39.932373 -86.131280 +46290 170 96 1403635 17268 0.542 0.007 39.938297 -86.163218 +46301 669 557 8722033 5814316 3.368 2.245 41.691148 -86.978774 +46303 14170 5717 71370895 3641522 27.556 1.406 41.373793 -87.479269 +46304 24207 9933 138941246 9157099 53.646 3.536 41.613626 -87.046130 +46307 60619 23091 227047780 1769610 87.664 0.683 41.403917 -87.326033 +46310 13565 5286 173287894 837899 66.907 0.324 41.182987 -87.230774 +46311 20816 7770 35110451 0 13.556 0.000 41.465085 -87.508915 +46312 29698 12958 36283931 636309 14.009 0.246 41.646953 -87.453983 +46319 18404 7700 24015234 60305 9.272 0.023 41.525472 -87.422201 +46320 15508 6569 17324122 4593946 6.689 1.774 41.691701 -87.510921 +46321 23603 9393 19606735 210011 7.570 0.081 41.547510 -87.503268 +46322 23727 10335 17867833 58582 6.899 0.023 41.546491 -87.457213 +46323 22743 8977 16064128 74760 6.202 0.029 41.589434 -87.453729 +46324 23165 9490 11424420 0 4.411 0.000 41.583084 -87.501583 +46327 12153 4593 10689498 304098 4.127 0.117 41.627870 -87.498701 +46340 1068 435 85240346 341920 32.911 0.132 41.382571 -86.770664 +46341 10426 4109 233813856 713157 90.276 0.275 41.309672 -87.214561 +46342 31244 13020 91228088 998491 35.223 0.386 41.518186 -87.244909 +46345 249 94 981685 0 0.379 0.000 41.527357 -86.698674 +46346 1423 543 4573901 0 1.766 0.000 41.472001 -86.692635 +46347 4760 1767 185519849 44099 71.630 0.017 41.306668 -87.013293 +46348 1045 468 132882625 0 51.306 0.000 41.310322 -86.861892 +46349 3336 1373 217846920 11975 84.111 0.005 41.098599 -87.415620 +46350 43650 18590 503027969 7075137 194.220 2.732 41.607057 -86.721724 +46356 17524 6775 305776586 1577642 118.061 0.609 41.256618 -87.422184 +46360 43625 20760 200261916 6444538 77.322 2.488 41.689340 -86.869177 +46365 1068 421 60257941 850583 23.266 0.328 41.611548 -86.545465 +46366 5791 2462 205967585 144783 79.525 0.056 41.215648 -86.768059 +46368 38691 15729 68175688 7972401 26.323 3.078 41.590820 -87.180707 +46371 3599 1553 98080166 1511978 37.869 0.584 41.688094 -86.595221 +46373 13859 4915 26173739 235497 10.106 0.091 41.448355 -87.467901 +46374 1012 468 93954336 213335 36.276 0.082 41.204372 -86.898780 +46375 23820 9984 35084859 137390 13.546 0.053 41.491818 -87.448746 +46376 398 173 23318622 69873 9.003 0.027 41.184845 -87.469890 +46377 386 181 1555211 0 0.600 0.000 41.194734 -87.338678 +46379 202 96 1199336 0 0.463 0.000 41.167886 -87.439972 +46381 235 96 2354814 0 0.909 0.000 41.168474 -87.324544 +46382 2108 793 126284392 83182 48.759 0.032 41.461306 -86.761986 +46383 39687 16472 225913150 1555779 87.226 0.601 41.463169 -87.007480 +46385 38866 14880 210583481 1498387 81.307 0.579 41.460058 -87.129705 +46390 2796 1151 127272809 4811 49.140 0.002 41.419467 -86.881519 +46391 9726 2762 104285271 185530 40.265 0.072 41.554106 -86.918985 +46392 7957 3018 283550600 2910831 109.480 1.124 41.178401 -87.048317 +46393 399 168 3873710 0 1.496 0.000 41.508211 -87.177620 +46394 12258 5513 8440728 4260790 3.259 1.645 41.677695 -87.489493 +46402 6726 3676 9847717 38498 3.802 0.015 41.599334 -87.330662 +46403 12601 6363 21456734 5607906 8.284 2.165 41.608093 -87.262233 +46404 17326 8112 14808335 16311 5.718 0.006 41.584047 -87.374030 +46405 11746 4791 22493395 339074 8.685 0.131 41.575007 -87.262305 +46406 9900 4523 33750622 204552 13.031 0.079 41.602997 -87.408048 +46407 12656 6953 10964220 0 4.233 0.000 41.578457 -87.330183 +46408 17030 7570 25249654 52849 9.749 0.020 41.545938 -87.368484 +46409 8932 4267 9241532 0 3.568 0.000 41.548371 -87.324243 +46410 38340 16559 76460736 76005 29.522 0.029 41.480207 -87.333065 +46501 3856 1541 181329145 425440 70.012 0.164 41.224603 -86.245254 +46502 115 47 145515 0 0.056 0.000 41.259415 -85.976238 +46504 3413 1346 169749639 148790 65.541 0.057 41.301061 -86.111272 +46506 10070 4000 257838857 1931012 99.552 0.746 41.462622 -86.172400 +46507 9128 3653 103974111 2385902 40.145 0.921 41.720077 -85.818047 +46508 217 83 2418863 338 0.934 0.000 41.150407 -85.976783 +46510 3631 1775 173603483 3855582 67.029 1.489 41.121661 -85.870707 +46511 4435 2563 173174088 8967585 66.863 3.462 41.219420 -86.426977 +46514 40263 17673 99732680 4337757 38.507 1.675 41.722642 -85.976908 +46516 33501 14209 45976445 2239534 17.752 0.865 41.676594 -85.944127 +46517 23764 9096 95307867 16278 36.799 0.006 41.627290 -85.997855 +46524 2326 814 88280528 1350082 34.085 0.521 41.305641 -86.014116 +46526 30671 11847 173696927 1290174 67.065 0.498 41.558780 -85.876662 +46528 26104 9002 183770598 1003135 70.954 0.387 41.600525 -85.784864 +46530 30614 11158 64566514 50818 24.929 0.020 41.740931 -86.126918 +46531 1458 584 55478878 25824 21.421 0.010 41.356985 -86.519382 +46532 1905 798 136728548 412738 52.791 0.159 41.411435 -86.611346 +46534 11263 5460 315094501 5973126 121.659 2.306 41.285345 -86.617818 +46536 3445 1484 75182888 540850 29.028 0.209 41.514551 -86.298011 +46537 433 193 1276163 0 0.493 0.000 41.459879 -86.310197 +46538 3867 2806 79640042 6407247 30.749 2.474 41.330242 -85.823365 +46539 2298 956 82753812 1174719 31.951 0.454 41.163149 -86.026511 +46540 11702 3972 158283302 1354523 61.114 0.523 41.679807 -85.697920 +46542 4198 1630 133994226 1483798 51.735 0.573 41.396628 -85.869691 +46543 3654 1064 78147753 0 30.173 0.000 41.535194 -85.672121 +46544 30759 14052 103716187 859577 40.045 0.332 41.615082 -86.147820 +46545 25082 12655 46081765 797780 17.792 0.308 41.693766 -86.146824 +46550 12311 4520 193378868 142094 74.664 0.055 41.445994 -86.000647 +46552 6834 2961 161736767 2876662 62.447 1.111 41.706315 -86.481879 +46553 3428 1224 81218866 0 31.359 0.000 41.479526 -85.849206 +46554 4942 2005 182635607 1678105 70.516 0.648 41.557413 -86.416992 +46555 2835 1959 23992884 4572216 9.264 1.765 41.326506 -85.680481 +46556 7314 380 5217201 325414 2.014 0.126 41.707119 -86.251338 +46561 13343 4915 37562042 1092062 14.503 0.422 41.663978 -86.075352 +46562 4788 2242 157118893 3748494 60.664 1.447 41.208344 -85.684442 +46563 23599 9787 394291921 4419894 152.237 1.707 41.355854 -86.326280 +46565 7950 2416 165052646 1988507 63.727 0.768 41.694850 -85.577499 +46567 9405 6004 143972659 19402205 55.588 7.491 41.414246 -85.731166 +46570 1060 446 52934576 66896 20.438 0.026 41.197926 -86.121792 +46571 5532 1565 111700680 216108 43.128 0.083 41.575590 -85.547199 +46573 3565 1346 88463076 198344 34.156 0.077 41.544364 -86.069668 +46574 8339 3958 243764123 2764028 94.118 1.067 41.481951 -86.486629 +46580 21338 8987 188892308 8190110 72.932 3.162 41.213832 -85.869547 +46582 12378 5802 146971529 6338546 56.746 2.447 41.280602 -85.854448 +46590 4908 1788 7338764 333181 2.834 0.129 41.216843 -85.812683 +46595 163 65 590819 0 0.228 0.000 41.526336 -86.166605 +46601 6090 2837 5608122 162445 2.165 0.063 41.670274 -86.252661 +46613 10893 4809 7395724 68944 2.856 0.027 41.655494 -86.258431 +46614 29573 13581 137034281 141831 52.909 0.055 41.603188 -86.279210 +46615 14609 6954 8458861 161687 3.266 0.062 41.673953 -86.211710 +46616 5667 2832 3807562 293048 1.470 0.113 41.697826 -86.266028 +46617 9601 4456 6743178 173342 2.604 0.067 41.684553 -86.234758 +46619 21408 8352 59064441 623875 22.805 0.241 41.660941 -86.353750 +46628 25650 11695 90669987 1729677 35.008 0.668 41.723298 -86.328342 +46635 6654 2923 8107978 18472 3.131 0.007 41.714357 -86.201743 +46637 15314 7296 24983632 262315 9.646 0.101 41.733701 -86.241470 +46701 7979 3420 249773145 4645730 96.438 1.794 41.360791 -85.431238 +46702 2304 990 117778449 2409562 45.475 0.930 40.831378 -85.628114 +46703 18029 9508 303810279 14002243 117.302 5.406 41.649589 -85.006550 +46704 60 37 52409 0 0.020 0.000 41.103975 -85.292577 +46705 1583 698 51513049 276993 19.889 0.107 41.519103 -85.061977 +46706 18630 7899 223460837 693983 86.279 0.268 41.341594 -85.032655 +46710 4679 1873 113495276 245903 43.821 0.095 41.342351 -85.242144 +46711 7698 2741 154677759 391455 59.721 0.151 40.661951 -84.926879 +46714 14645 6386 333681438 2342505 128.835 0.904 40.722791 -85.176645 +46721 5058 2024 208220129 34133 80.394 0.013 41.422994 -84.876607 +46723 7692 3115 161668335 1229179 62.420 0.475 41.245200 -85.326226 +46725 23080 10162 531543784 5889822 205.230 2.274 41.148544 -85.475768 +46730 1381 543 72607230 450336 28.034 0.174 41.458442 -85.151597 +46731 559 226 41203288 74357 15.909 0.029 40.793538 -85.099634 +46732 3169 1331 58774778 633478 22.693 0.245 41.379566 -85.622389 +46733 18777 7937 446768589 899043 172.498 0.347 40.828228 -84.940039 +46737 7068 4757 168604819 10921266 65.099 4.217 41.719282 -84.929830 +46738 7918 3225 67637601 224605 26.115 0.087 41.318908 -85.148865 +46740 4060 1327 159519655 1226789 61.591 0.474 40.604280 -84.964762 +46741 4647 1428 67319841 1993910 25.992 0.770 41.216969 -84.951226 +46742 3488 2189 132244423 3234296 51.060 1.249 41.548594 -84.879092 +46743 1971 710 58032167 0 22.406 0.000 41.215359 -84.851125 +46745 1841 709 50924310 0 19.662 0.000 40.951657 -85.009422 +46746 4036 1607 190500993 2375456 73.553 0.917 41.725354 -85.344932 +46747 2693 1547 94930599 1590541 36.653 0.614 41.565687 -85.157978 +46748 5134 1906 47537940 213686 18.355 0.083 41.248585 -85.161149 +46750 27221 11482 515899036 7580910 199.190 2.927 40.878460 -85.496399 +46755 15062 6537 195372788 2753304 75.434 1.063 41.449155 -85.274859 +46759 652 254 76677338 57525 29.605 0.022 40.603927 -85.178498 +46760 1382 620 65103868 1311079 25.137 0.506 41.345491 -85.552692 +46761 12039 4512 319676738 3688067 123.428 1.424 41.634450 -85.377399 +46763 1631 673 58095936 41200 22.431 0.016 41.301427 -85.232689 +46764 1497 610 88496842 420269 34.169 0.162 41.224389 -85.620412 +46765 5341 1864 33628520 548744 12.984 0.212 41.232447 -85.048745 +46766 685 276 52477713 161748 20.262 0.062 40.708605 -85.282814 +46767 8564 2836 180688788 893904 69.764 0.345 41.470841 -85.570411 +46770 2716 1089 136780381 1596304 52.811 0.616 40.837684 -85.324251 +46771 105 48 3057297 31284 1.180 0.012 41.694296 -85.296149 +46772 3411 885 91818292 0 35.451 0.000 40.721508 -84.913716 +46773 3662 1474 204015657 0 78.771 0.000 40.982148 -84.875607 +46774 16008 6455 132268742 740566 51.069 0.286 41.089259 -84.972549 +46776 1484 843 60563717 3812065 23.384 1.472 41.721181 -85.165915 +46777 6259 2548 143340970 635780 55.344 0.245 40.869136 -85.147577 +46779 2166 1114 91713565 1692372 35.411 0.653 41.577202 -85.039473 +46781 793 344 66375762 117141 25.628 0.045 40.632380 -85.268890 +46783 6396 2550 155943407 1244620 60.210 0.481 40.969261 -85.357314 +46784 2236 1385 34481309 4565457 13.313 1.763 41.500500 -85.388679 +46785 1542 559 63165765 102282 24.388 0.039 41.323197 -84.877756 +46786 102 47 93873 0 0.036 0.000 41.532044 -85.272374 +46787 3893 1632 166509476 288699 64.290 0.111 41.066251 -85.619724 +46788 3260 1102 91988088 866420 35.517 0.335 41.273021 -84.909196 +46791 918 360 39376422 133053 15.203 0.051 40.837816 -85.232101 +46792 3499 1575 260774130 2348702 100.685 0.907 40.684332 -85.443356 +46793 4292 1744 144229293 363087 55.687 0.140 41.452403 -85.015268 +46794 1587 808 66644809 563956 25.732 0.218 41.462413 -85.458750 +46795 5608 3396 143661620 9438681 55.468 3.644 41.553974 -85.330905 +46797 3957 1498 133402537 937624 51.507 0.362 41.128395 -84.858980 +46798 1661 731 53365348 1541 20.604 0.001 40.938582 -85.214712 +46799 212 92 641181 18214 0.248 0.007 40.911504 -85.285755 +46802 11086 5472 10968507 11113 4.235 0.004 41.069304 -85.165160 +46803 9758 4443 17099676 26748 6.602 0.010 41.069874 -85.088544 +46804 27245 12242 50159719 16478 19.367 0.006 41.053221 -85.242156 +46805 21306 10114 16696709 20031 6.447 0.008 41.100110 -85.117711 +46806 23560 10374 23805793 0 9.191 0.000 41.046823 -85.088370 +46807 16072 7132 8309404 0 3.208 0.000 41.044893 -85.147602 +46808 19309 9150 27739804 189232 10.710 0.073 41.097775 -85.177021 +46809 8947 4341 59006418 15192 22.783 0.006 40.998304 -85.205048 +46814 12281 4364 44109339 50759 17.031 0.020 41.050882 -85.299234 +46815 26522 11138 27001921 50630 10.426 0.020 41.102735 -85.058629 +46816 18116 7879 94616918 258991 36.532 0.100 41.000785 -85.036179 +46818 18790 7492 171240496 297827 66.116 0.115 41.155856 -85.253014 +46819 8765 4020 66338159 199246 25.613 0.077 40.974587 -85.133593 +46825 27931 12626 39724134 59965 15.338 0.023 41.152413 -85.127091 +46835 33604 14791 54846141 6481 21.176 0.003 41.152980 -85.040800 +46845 22117 7795 58877006 72806 22.733 0.028 41.207641 -85.109366 +46901 37633 17720 359127496 1490380 138.660 0.575 40.531266 -86.169537 +46902 35697 17092 138235227 173598 53.373 0.067 40.437275 -86.094553 +46910 3360 1369 160352095 1326001 61.912 0.512 41.042987 -86.038676 +46911 1439 603 102730905 2179469 39.665 0.841 40.637417 -85.945821 +46913 1329 521 85212900 0 32.901 0.000 40.503001 -86.503452 +46914 4908 834 74581393 234643 28.796 0.091 40.628598 -86.094769 +46915 679 321 6150668 0 2.375 0.000 40.477734 -86.386590 +46917 1853 805 139479803 47406 53.853 0.018 40.626869 -86.475047 +46919 2390 1033 109225015 187264 42.172 0.072 40.594183 -85.869644 +46920 1045 417 81516365 0 31.474 0.000 40.464409 -86.494811 +46922 61 22 326790 0 0.126 0.000 41.138130 -86.413626 +46923 8048 3417 348943789 3435497 134.728 1.326 40.608872 -86.641726 +46926 1708 701 91061710 611301 35.159 0.236 40.887938 -86.049986 +46928 4951 2220 187551457 97466 72.414 0.038 40.405898 -85.682305 +46929 3214 1425 132824655 102166 51.284 0.039 40.554751 -86.476386 +46930 133 54 363747 18943 0.140 0.007 40.407440 -85.571378 +46931 188 76 178461 0 0.069 0.000 40.947539 -86.264270 +46932 3448 1511 143168587 52435 55.278 0.020 40.597241 -86.250469 +46933 6414 2793 29549244 0 11.409 0.000 40.479845 -85.582288 +46936 5922 2474 169409946 569216 65.410 0.220 40.484302 -85.927782 +46938 3200 1368 80170892 96696 30.954 0.037 40.459646 -85.626941 +46939 2101 1053 244710470 1173219 94.483 0.453 40.992876 -86.400545 +46940 2548 1089 147136692 3823978 56.810 1.476 40.690906 -85.689231 +46941 1125 487 68134709 4778538 26.307 1.845 40.822976 -85.689919 +46943 247 105 862013 206787 0.333 0.080 40.975386 -85.842930 +46946 136 51 842440 70336 0.325 0.027 41.040430 -85.728422 +46947 28866 12130 479974591 5641044 185.319 2.178 40.759919 -86.376113 +46950 643 281 72792015 4955 28.105 0.002 40.888204 -86.364948 +46951 2170 1086 164387203 1255022 63.470 0.485 40.947573 -86.105392 +46952 20308 9827 274875849 1355604 106.130 0.523 40.599427 -85.629225 +46953 24177 10259 219609182 279797 84.792 0.108 40.519416 -85.643344 +46957 558 235 1231655 0 0.476 0.000 40.388298 -85.495962 +46958 460 218 1090247 0 0.421 0.000 40.821933 -86.117007 +46959 231 127 2848671 0 1.100 0.000 40.620859 -86.107153 +46960 1218 623 107745206 148688 41.601 0.057 41.161352 -86.535546 +46961 99 57 1254220 0 0.484 0.000 40.766510 -86.191686 +46962 9728 3958 283418626 1537793 109.429 0.594 40.988209 -85.768524 +46967 98 43 240010 0 0.093 0.000 40.694682 -86.195106 +46968 73 30 945560 0 0.365 0.000 41.175341 -86.546361 +46970 23766 11202 479076940 8003810 184.973 3.090 40.760125 -86.061471 +46974 1699 722 108091027 1340945 41.734 0.518 40.951905 -85.933503 +46975 14691 6777 559944948 4590306 216.196 1.772 41.075328 -86.250342 +46978 2059 885 164438319 0 63.490 0.000 40.856627 -86.512501 +46979 4733 1896 109243866 35984 42.179 0.014 40.429421 -86.275733 +46982 2573 1185 107711958 2047440 41.588 0.791 41.063420 -85.882956 +46984 224 119 602330 15024 0.233 0.006 40.667769 -85.830127 +46985 1441 692 182121435 224927 70.317 0.087 40.950787 -86.573883 +46986 1915 811 90087678 0 34.783 0.000 40.497945 -85.819279 +46987 776 328 1415971 8892 0.547 0.003 40.568653 -85.765327 +46988 823 359 68383017 74354 26.403 0.029 40.877117 -86.234743 +46989 5195 1468 87005648 408525 33.593 0.158 40.448635 -85.481366 +46990 801 333 78004169 94670 30.118 0.037 40.897336 -85.731383 +46991 1797 783 79262382 97255 30.603 0.038 40.628038 -85.514210 +46992 16759 7511 419496526 8434758 161.969 3.257 40.787305 -85.826434 +46994 2684 1109 149208896 390931 57.610 0.151 40.667327 -86.254550 +46996 7139 3231 484852287 1896391 187.203 0.732 41.064687 -86.658262 +46998 112 53 211531 0 0.082 0.000 40.567605 -86.349666 +47001 10422 4362 188667681 2535960 72.845 0.979 39.072665 -84.965538 +47003 1040 468 32616766 162223 12.593 0.063 39.559685 -84.834261 +47006 11727 4666 268243035 1641221 103.569 0.634 39.291996 -85.215884 +47010 306 135 27877361 110744 10.764 0.043 39.501581 -84.848717 +47011 1277 520 92506819 181487 35.717 0.070 38.881620 -85.076128 +47012 10188 4392 428677789 13938928 165.513 5.382 39.427300 -84.983390 +47016 793 332 50684553 121404 19.569 0.047 39.372217 -84.890237 +47017 507 232 39912147 206874 15.410 0.080 38.935533 -85.185945 +47018 4275 1831 184581660 166288 71.267 0.064 38.996765 -85.086623 +47020 1309 607 55956734 841575 21.605 0.325 38.815142 -84.924412 +47022 3358 1217 88067278 0 34.003 0.000 39.204900 -84.951741 +47023 1636 684 121809005 254620 47.031 0.098 39.080549 -85.381850 +47024 3226 1342 169061920 956897 65.275 0.369 39.476872 -85.199038 +47025 22932 9265 143334069 2838283 55.342 1.096 39.165524 -84.866317 +47030 1636 661 86950060 976549 33.572 0.377 39.424093 -85.132377 +47031 5368 2169 159653479 687361 61.643 0.265 39.124244 -85.156451 +47032 3289 1281 90594359 55811 34.979 0.022 39.086912 -85.043662 +47034 158 80 297335 0 0.115 0.000 39.203982 -85.327471 +47035 233 101 791449 0 0.306 0.000 39.309224 -84.905542 +47036 1023 362 41684897 153217 16.095 0.059 39.391110 -85.245929 +47037 4333 1845 207759128 617438 80.216 0.238 39.169482 -85.325656 +47038 1504 842 80474155 4628971 31.071 1.787 38.850304 -84.849950 +47040 5480 2471 173821247 2809810 67.113 1.085 38.922057 -84.941033 +47041 6125 2317 214345342 608627 82.759 0.235 39.234052 -85.083768 +47042 4504 2019 199233231 130053 76.924 0.050 39.019440 -85.255113 +47043 5250 2460 267119213 1772435 103.135 0.684 38.790365 -85.090993 +47060 6448 2625 148365269 1592135 57.284 0.615 39.301338 -84.885706 +47102 7255 3070 103668046 174152 40.026 0.067 38.765011 -85.792736 +47104 41 22 492736 26896 0.190 0.010 38.540304 -85.421392 +47106 4718 1956 179687281 1590054 69.378 0.614 38.464301 -85.899844 +47108 2463 1050 229821865 774836 88.735 0.299 38.640027 -86.248533 +47110 350 147 15020102 0 5.799 0.000 38.098852 -86.185044 +47111 14533 5866 206856635 2176054 79.868 0.840 38.466197 -85.632579 +47112 16722 6991 418622593 648052 161.631 0.250 38.195517 -86.162499 +47114 399 160 2538540 0 0.980 0.000 38.285817 -86.084556 +47115 2622 1158 147565715 560590 56.975 0.216 38.348952 -86.209964 +47116 805 523 77753714 1714338 30.021 0.662 38.324227 -86.622010 +47117 4429 1889 216108914 314289 83.440 0.121 38.106642 -85.967356 +47118 3502 1762 367848931 5035683 142.027 1.944 38.310091 -86.497430 +47119 10911 4198 111653987 666680 43.110 0.257 38.372038 -85.881583 +47120 938 394 48135819 505921 18.585 0.195 38.463060 -86.188852 +47122 9979 3897 92091964 310944 35.557 0.120 38.305960 -85.984844 +47123 189 92 19167055 0 7.400 0.000 38.267133 -86.479372 +47124 4264 1597 63458558 166739 24.501 0.064 38.371492 -86.010607 +47125 1658 731 107382350 238889 41.461 0.092 38.463600 -86.313139 +47126 4250 1645 90580716 398885 34.973 0.154 38.547092 -85.775860 +47129 19527 9043 24379471 550739 9.413 0.213 38.313141 -85.768453 +47130 44722 20053 88482972 1029351 34.163 0.397 38.333402 -85.697211 +47135 1372 617 132089321 1518666 51.000 0.586 38.048816 -86.074351 +47136 4178 1645 71759730 142927 27.707 0.055 38.235085 -85.966747 +47137 1421 762 157397746 2612807 60.772 1.009 38.168121 -86.390479 +47138 4373 1840 190895437 1385880 73.705 0.535 38.682475 -85.584686 +47140 2669 1234 107330749 37454 41.441 0.014 38.380965 -86.362912 +47141 1668 680 88367828 405041 34.119 0.156 38.547956 -85.612115 +47142 1174 542 95821519 2082455 36.997 0.804 38.084881 -86.213131 +47143 3015 1211 58468995 707576 22.575 0.273 38.468612 -85.768158 +47145 1998 923 111159842 106 42.919 0.000 38.329877 -86.306582 +47147 945 409 72030943 190957 27.811 0.074 38.592788 -85.545105 +47150 47472 21577 113682671 1244815 43.893 0.481 38.283506 -85.847601 +47160 93 39 106994 0 0.041 0.000 38.164455 -86.050997 +47161 3735 1498 57212404 55031 22.090 0.021 38.321795 -86.103592 +47162 829 355 59001065 838882 22.780 0.324 38.545860 -85.460052 +47163 1746 702 53941183 352573 20.827 0.136 38.533074 -85.669844 +47164 3779 1597 90797326 297008 35.057 0.115 38.414685 -86.102925 +47165 6438 2712 213405385 841170 82.396 0.325 38.503480 -86.006940 +47166 1302 532 33260861 0 12.842 0.000 38.306882 -86.167419 +47167 15014 6502 552613291 3709607 213.365 1.432 38.611460 -86.095905 +47170 14795 6523 412354329 5305664 159.211 2.049 38.685201 -85.844056 +47172 16059 6530 64166221 991583 24.775 0.383 38.399505 -85.774269 +47175 909 522 58142305 5353201 22.449 2.067 38.376762 -86.567953 +47177 1221 509 43166207 307892 16.667 0.119 38.589740 -85.791856 +47201 41662 18192 529466367 5012464 204.428 1.935 39.158873 -85.993199 +47203 25806 11099 200668851 214991 77.479 0.083 39.230403 -85.832160 +47220 5652 2355 214705533 2082723 82.898 0.804 38.876281 -86.049057 +47223 1490 652 149722139 736987 57.808 0.285 39.050074 -85.472026 +47224 636 242 58253149 294720 22.492 0.114 38.888028 -85.215093 +47226 202 98 254911 0 0.098 0.000 39.282369 -85.868982 +47227 1598 659 127287134 298181 49.146 0.115 38.867579 -85.654136 +47229 3231 1414 129560131 74598 50.023 0.029 38.803096 -85.867725 +47230 2029 898 129825672 517146 50.126 0.200 38.792380 -85.625116 +47231 1167 473 73242901 184922 28.279 0.071 38.901485 -85.493849 +47232 2839 1134 82337091 715337 31.791 0.276 39.112058 -85.789256 +47234 1379 603 85570627 0 33.039 0.000 39.377362 -85.767900 +47235 1784 791 104185736 849582 40.226 0.328 38.991705 -86.136101 +47240 20832 9149 773643500 1782541 298.705 0.688 39.305991 -85.478417 +47243 5951 2306 90509714 1484080 34.946 0.573 38.668701 -85.482235 +47244 786 310 45576149 0 17.597 0.000 39.219040 -85.701540 +47246 4342 1697 152320395 394277 58.811 0.152 39.299253 -85.767011 +47247 156 77 304379 0 0.118 0.000 39.059532 -85.888138 +47250 21944 10113 536614361 2779291 207.188 1.073 38.815317 -85.351135 +47260 1911 816 144192494 1980618 55.673 0.765 38.836742 -86.197754 +47263 236 102 323977 0 0.125 0.000 39.309440 -85.330177 +47264 1428 648 256053717 743292 98.863 0.287 38.974390 -86.249978 +47265 20911 8918 495125038 1890688 191.169 0.730 39.014661 -85.629937 +47270 807 324 48119745 149961 18.579 0.058 38.839337 -85.722862 +47272 2041 835 84202962 144849 32.511 0.056 39.411013 -85.621407 +47273 1849 729 80127600 664478 30.937 0.257 39.075790 -85.736847 +47274 28770 12474 547466235 5568718 211.378 2.150 38.966511 -85.937722 +47280 813 336 2715970 0 1.049 0.000 39.296587 -85.950521 +47281 1324 609 144209975 2506382 55.680 0.968 38.788527 -86.106341 +47282 289 149 832989 0 0.322 0.000 38.982353 -85.610731 +47283 3386 1457 155307513 143108 59.965 0.055 39.173689 -85.588747 +47302 27592 13373 171945556 589196 66.389 0.227 40.126910 -85.382469 +47303 25365 11740 150430482 834077 58.082 0.322 40.271643 -85.377772 +47304 30516 14240 90693267 308247 35.017 0.119 40.236332 -85.459814 +47305 4106 2631 3457747 116891 1.335 0.045 40.194099 -85.385939 +47306 6189 9 588964 1392 0.227 0.001 40.202376 -85.404608 +47320 4134 1869 86737086 727962 33.489 0.281 40.271703 -85.272799 +47324 138 67 545771 0 0.211 0.000 39.741105 -84.851809 +47325 667 281 52701589 317044 20.348 0.122 39.691146 -85.020236 +47326 2295 726 173154717 187681 66.855 0.072 40.548680 -84.967266 +47327 4597 2065 141352126 1351375 54.576 0.522 39.827428 -85.175101 +47330 5755 2406 153924427 725251 59.431 0.280 39.786249 -85.022256 +47331 23429 10550 493073327 3594997 190.377 1.388 39.624084 -85.157338 +47334 3263 1373 68681652 293788 26.518 0.113 40.118754 -85.526990 +47335 761 352 1256058 29299 0.485 0.011 39.812374 -85.205168 +47336 3807 1785 121656172 124534 46.972 0.048 40.386723 -85.210356 +47337 203 96 477789 0 0.184 0.000 39.802476 -85.437276 +47338 2827 1261 72518039 627136 27.999 0.242 40.340370 -85.341841 +47339 669 266 34343874 25874 13.260 0.010 39.938777 -85.079129 +47340 2914 1278 138666094 274122 53.539 0.106 40.180757 -85.133663 +47341 2283 911 94645244 82888 36.543 0.032 39.972320 -84.891734 +47342 2693 1191 129533666 275988 50.013 0.107 40.328580 -85.507983 +47344 140 69 367109 9484 0.142 0.004 39.878372 -85.465375 +47345 1448 539 77037238 373627 29.744 0.144 39.893863 -85.060180 +47346 4082 1771 116641783 246535 45.036 0.095 39.931657 -85.168200 +47348 9828 4692 301782242 1021319 116.519 0.394 40.466214 -85.340374 +47351 471 181 1095072 477 0.423 0.000 39.906998 -85.522087 +47352 965 418 77850096 187772 30.058 0.072 39.795720 -85.367066 +47353 5879 2510 322441359 6406077 124.495 2.473 39.623111 -84.925152 +47354 1129 520 76785919 194563 29.647 0.075 40.040842 -85.192539 +47355 2885 1273 164612946 244360 63.557 0.094 40.044174 -84.927052 +47356 5781 2446 139527258 204940 53.872 0.079 40.031458 -85.507425 +47357 1215 537 90209810 1074523 34.830 0.415 39.751359 -85.146917 +47358 996 434 97889937 125423 37.796 0.048 40.057306 -85.113523 +47359 3143 1396 156131910 602881 60.283 0.233 40.551281 -85.283667 +47360 1546 649 89089594 1664678 34.398 0.643 40.011265 -85.258203 +47361 135 63 119788 0 0.046 0.000 40.004190 -85.385059 +47362 30243 13078 379554351 4348230 146.547 1.679 39.930459 -85.369580 +47367 191 73 1863804 0 0.720 0.000 40.082648 -85.387219 +47368 2845 1221 90574172 127682 34.971 0.049 40.182196 -85.194189 +47369 1343 598 88830591 42461 34.298 0.016 40.507343 -85.142062 +47371 12226 5397 565487413 148599 218.336 0.057 40.418997 -84.962799 +47373 2226 1018 78122543 71145 30.163 0.027 40.337508 -85.160845 +47374 46875 21937 304119965 2796691 117.421 1.080 39.832079 -84.889699 +47380 2004 897 157782726 783236 60.920 0.302 40.286745 -85.030029 +47381 145 53 776581 0 0.300 0.000 40.381786 -84.866884 +47382 200 102 402229 0 0.155 0.000 40.236391 -84.917484 +47383 2960 1243 84766278 5144812 32.728 1.986 40.141861 -85.266121 +47384 2000 869 84905786 47422 32.782 0.018 39.909241 -85.550892 +47385 1612 690 38521827 121444 14.873 0.047 39.832905 -85.446008 +47386 1231 508 46034500 224826 17.774 0.087 40.055073 -85.385654 +47387 726 323 42430139 129031 16.382 0.050 39.838465 -85.298534 +47388 384 158 748786 682 0.289 0.000 40.005637 -85.443437 +47390 5310 2500 203110704 272907 78.421 0.105 40.205668 -84.846428 +47393 1704 644 96373046 205241 37.210 0.079 39.962996 -85.003691 +47394 8470 3799 313092981 476474 120.886 0.184 40.167974 -84.987308 +47396 7030 2991 82551261 583216 31.873 0.225 40.189183 -85.517178 +47401 41011 19124 214770980 37558952 82.924 14.502 39.102552 -86.442957 +47403 30955 14537 223899809 263369 86.448 0.102 39.085219 -86.612340 +47404 21026 9678 132810517 10062 51.278 0.004 39.219531 -86.591196 +47405 4427 2 1217507 0 0.470 0.000 39.168209 -86.518614 +47406 4730 4 574933 0 0.222 0.000 39.177797 -86.515448 +47408 24776 10724 172026902 579586 66.420 0.224 39.229815 -86.467254 +47420 135 75 579821 0 0.224 0.000 38.913158 -86.548919 +47421 27831 12857 473264133 3658163 182.728 1.412 38.863494 -86.452230 +47424 9525 4412 477296073 2860593 184.285 1.104 39.020048 -86.882428 +47427 1093 536 137933707 744245 53.257 0.287 39.232829 -87.016135 +47429 7986 3369 63877153 0 24.663 0.000 39.273277 -86.615938 +47431 1366 635 95734594 74923 36.963 0.029 39.236601 -86.902939 +47432 4537 2190 214116557 15397736 82.671 5.945 38.485527 -86.641906 +47433 4025 1801 209550278 711988 80.908 0.275 39.355787 -86.641547 +47434 76 39 126857 0 0.049 0.000 39.011912 -86.547286 +47436 1663 768 118617971 812256 45.799 0.314 38.954149 -86.385977 +47437 123 68 2222042 0 0.858 0.000 38.714743 -86.676968 +47438 4798 2197 153737675 2522945 59.358 0.974 39.158728 -87.187281 +47441 9269 4404 173693321 1895210 67.063 0.732 39.044695 -87.165501 +47443 1233 557 115063315 607171 44.426 0.234 38.958170 -87.099145 +47446 9990 4480 312386887 1388934 120.613 0.536 38.747192 -86.518150 +47448 7505 4053 510122493 7208478 196.959 2.783 39.179530 -86.235511 +47449 413 184 50605306 1236580 19.539 0.477 38.926988 -87.003290 +47451 1228 613 4809403 0 1.857 0.000 38.892959 -86.523550 +47452 5359 2245 264229943 1147362 102.020 0.443 38.647143 -86.433430 +47453 498 214 32309942 35648 12.475 0.014 38.941630 -86.775709 +47454 7688 3573 327601493 885693 126.488 0.342 38.510025 -86.451821 +47455 124 69 1454461 0 0.562 0.000 39.316496 -86.956153 +47456 1200 524 68040891 398007 26.271 0.154 39.465239 -86.691333 +47457 134 62 1492655 0 0.576 0.000 38.909139 -86.904750 +47458 36 18 38770 0 0.015 0.000 39.070329 -86.507227 +47459 3795 1564 151170181 0 58.367 0.000 39.112793 -86.749576 +47460 11471 5058 389539085 1951232 150.402 0.753 39.286656 -86.797936 +47462 4871 2064 196482369 104867 75.862 0.040 38.958323 -86.647567 +47464 198 107 280750 0 0.108 0.000 39.299803 -86.649996 +47465 750 325 61807864 352060 23.864 0.136 39.047972 -87.034871 +47467 72 44 141803 0 0.055 0.000 38.767864 -86.344361 +47468 1250 938 68181945 6259512 26.325 2.417 39.271083 -86.392866 +47469 1749 872 161766517 787662 62.458 0.304 38.637600 -86.599153 +47470 1735 803 119690813 2007878 46.213 0.775 38.818283 -86.637114 +47471 2727 1260 177718507 546213 68.618 0.211 39.142894 -87.003808 +47501 17535 7559 378681995 4287506 146.210 1.655 38.662060 -87.173647 +47512 3981 2002 129114308 931403 49.851 0.360 38.783740 -87.320813 +47513 1841 955 153614834 1027905 59.311 0.397 38.304258 -86.714111 +47514 1559 88 11391921 0 4.398 0.000 38.156200 -86.586209 +47515 965 435 144423663 609625 55.762 0.235 38.183913 -86.703982 +47516 1249 559 76991643 190882 29.727 0.074 38.771006 -87.419265 +47519 513 198 50481754 516555 19.491 0.199 38.602659 -86.992661 +47520 3267 1673 211117646 5767323 81.513 2.227 37.945058 -86.668241 +47521 927 338 48822922 8280101 18.851 3.197 38.396081 -86.724575 +47522 246 121 21898576 853120 8.455 0.329 38.892320 -86.816735 +47523 3435 1460 170257743 774976 65.737 0.299 38.178794 -87.025759 +47524 605 286 131903877 6660273 50.928 2.572 38.494770 -87.610887 +47525 382 205 74793563 1169886 28.878 0.452 38.032344 -86.559697 +47527 1897 822 138919164 967194 53.637 0.373 38.468858 -86.785924 +47528 476 253 48531376 230759 18.738 0.089 38.833136 -87.253221 +47529 1042 500 81899813 902927 31.622 0.349 38.854967 -87.080001 +47531 1004 434 95662529 1310676 36.936 0.506 38.039710 -86.851428 +47532 4627 1798 180740991 1196635 69.784 0.462 38.221348 -86.860563 +47535 566 248 9065996 0 3.500 0.000 38.872344 -87.307664 +47536 40 15 71329 0 0.028 0.000 38.112290 -86.836519 +47537 826 339 41352742 265790 15.966 0.103 38.074167 -87.036126 +47541 1224 515 51787820 512598 19.995 0.198 38.235278 -87.046164 +47542 9622 3875 210712048 2733874 81.356 1.056 38.296593 -86.967215 +47546 21009 8937 320636133 6122871 123.798 2.364 38.418779 -86.932557 +47550 854 334 90976568 714377 35.126 0.276 38.067186 -86.921311 +47551 649 271 83352142 27939 32.182 0.011 38.114113 -86.569572 +47552 182 73 13369907 326357 5.162 0.126 38.114551 -86.999676 +47553 8495 3421 361109322 6199659 139.425 2.394 38.660751 -86.903839 +47557 1432 620 141364896 2891578 54.581 1.116 38.578834 -87.342777 +47558 4406 1255 223428647 7363753 86.266 2.843 38.646137 -87.040439 +47561 1588 688 184999899 2017818 71.429 0.779 38.863684 -87.438287 +47562 4658 1719 171061079 1176725 66.047 0.454 38.833089 -86.973432 +47564 1352 634 95377177 1296811 36.825 0.501 38.483041 -87.093828 +47567 6021 2639 296602359 5580439 114.519 2.155 38.462700 -87.305019 +47568 834 356 71723997 1441405 27.693 0.557 38.764087 -87.102429 +47574 148 69 37679420 1275888 14.548 0.493 37.950036 -86.562127 +47575 976 415 54845770 466138 21.176 0.180 38.317808 -86.804462 +47576 388 167 56374068 541221 21.766 0.209 38.175537 -86.617939 +47577 1143 426 65377687 301044 25.242 0.116 38.152526 -86.808938 +47578 776 365 129932002 2028540 50.167 0.783 38.902344 -87.193522 +47579 2659 1116 30046089 1165881 11.601 0.450 38.110933 -86.915134 +47580 289 112 12989746 33286 5.015 0.013 38.355203 -86.767156 +47581 3883 1941 369961327 5625233 142.843 2.172 38.655694 -86.762600 +47584 179 74 381336 545 0.147 0.000 38.255502 -87.259526 +47585 592 268 91698838 1644749 35.405 0.635 38.268269 -87.157956 +47586 10932 5075 244195139 2329145 94.284 0.899 38.039096 -86.701995 +47588 698 327 42232506 354094 16.306 0.137 38.072389 -86.778403 +47590 713 303 102128446 1279180 39.432 0.494 38.360654 -87.100344 +47591 26770 11555 418960245 5126856 161.761 1.979 38.628561 -87.501485 +47596 202 103 5340078 0 2.062 0.000 38.866496 -87.227734 +47597 1023 458 114791952 1240379 44.321 0.479 38.654389 -87.298800 +47598 3418 1531 183687098 5406454 70.922 2.087 38.386893 -87.211613 +47601 13896 5926 323061921 5061601 124.735 1.954 38.051443 -87.254533 +47610 5195 2222 92413680 1401252 35.681 0.541 38.057764 -87.401743 +47611 1257 559 100681993 872754 38.874 0.337 38.027918 -87.057458 +47612 861 395 41209833 0 15.911 0.000 38.193026 -87.699246 +47613 2679 1081 136776124 1434598 52.810 0.554 38.158948 -87.417471 +47615 1611 681 93131722 3517655 35.958 1.358 37.969851 -86.963548 +47616 364 197 110791664 5189898 42.777 2.004 38.240052 -87.890844 +47619 1696 714 125187550 2859226 48.335 1.104 38.185397 -87.303614 +47620 13427 5825 538774941 20549659 208.022 7.934 37.931959 -87.905711 +47630 34423 13516 120948732 3838033 46.699 1.482 37.952897 -87.346470 +47631 2042 1043 156534749 2452104 60.438 0.947 38.109131 -87.901792 +47633 2542 1119 160910253 76244 62.128 0.029 38.175907 -87.787892 +47634 2382 1060 130730470 406041 50.475 0.157 37.939468 -87.182452 +47635 5671 2455 219554248 1567304 84.770 0.605 37.883679 -87.106525 +47637 1507 595 150269158 1851336 58.019 0.715 38.135734 -87.151319 +47638 3577 1406 127416867 54117 49.196 0.021 38.065443 -87.776101 +47639 4069 1610 111510175 297610 43.054 0.115 38.176096 -87.572944 +47640 1089 485 99659723 1929429 38.479 0.745 38.478176 -87.484032 +47648 4373 1844 138790702 297758 53.587 0.115 38.247580 -87.557788 +47649 1402 645 111266982 623367 42.960 0.241 38.353466 -87.451228 +47654 70 33 273746 0 0.106 0.000 38.249505 -87.392292 +47660 4934 2242 231619668 4511509 89.429 1.742 38.295045 -87.322203 +47665 3637 1513 182445575 1856537 70.443 0.717 38.276670 -87.722673 +47666 1447 710 127273505 3303849 49.141 1.276 38.417797 -87.600469 +47670 12352 5514 206376878 872238 79.683 0.337 38.344890 -87.584821 +47683 210 84 470922 394 0.182 0.000 38.276782 -87.376955 +47708 439 226 1435639 5765 0.554 0.002 37.974553 -87.573574 +47710 19527 9349 22768908 420180 8.791 0.162 38.025505 -87.575809 +47711 31457 14267 42018531 511026 16.223 0.197 38.015301 -87.536743 +47712 26012 11138 164213259 2516349 63.403 0.972 37.926457 -87.665531 +47713 11032 5947 9971696 255943 3.850 0.099 37.954531 -87.559175 +47714 34107 15800 20678502 14753 7.984 0.006 37.956614 -87.521291 +47715 27063 14163 60133562 1503705 23.218 0.581 37.972424 -87.479665 +47720 17413 7253 143845725 1150324 55.539 0.444 38.062897 -87.641573 +47725 15851 6143 147653384 1230399 57.009 0.475 38.106329 -87.524939 +47802 34532 14283 418540301 8618005 161.599 3.327 39.350956 -87.411768 +47803 21102 9578 88466871 1235885 34.157 0.477 39.466092 -87.307322 +47804 11020 5062 17035372 249687 6.577 0.096 39.497812 -87.389953 +47805 12852 5496 135058572 964200 52.146 0.372 39.546274 -87.326483 +47807 13045 6226 9714936 274193 3.751 0.106 39.471333 -87.402752 +47809 2687 1 454435 0 0.175 0.000 39.471249 -87.410106 +47832 1040 484 109784514 74732 42.388 0.029 39.880882 -87.258433 +47833 1010 487 96214621 17794 37.149 0.007 39.358609 -86.975238 +47834 19215 8469 388559996 4392691 150.024 1.696 39.525549 -87.121971 +47836 47 33 509465 0 0.197 0.000 39.646104 -87.179079 +47837 1231 562 75298067 375862 29.073 0.145 39.627224 -87.114906 +47838 4081 877 273070467 1516845 105.433 0.586 38.961773 -87.383679 +47840 1500 696 137572153 1424448 53.117 0.550 39.408055 -87.056514 +47841 2138 1026 171629067 802796 66.266 0.310 39.273724 -87.114256 +47842 10085 4696 186254414 2986642 71.913 1.153 39.678584 -87.463596 +47846 638 295 81638737 406006 31.521 0.157 39.378638 -87.193598 +47847 1077 493 125802056 21689 48.572 0.008 39.831343 -87.485836 +47848 1691 832 43671874 1223746 16.862 0.472 39.042043 -87.261971 +47849 496 234 67488215 1293565 26.057 0.499 39.195304 -87.563740 +47850 2456 1115 132151120 584353 51.024 0.226 39.251931 -87.435782 +47853 134 61 111905 0 0.043 0.000 39.538200 -87.072828 +47854 849 363 74214645 1360233 28.654 0.525 39.803019 -87.403057 +47855 546 241 2065605 0 0.798 0.000 39.189827 -87.304098 +47857 571 165 1330556 0 0.514 0.000 39.524158 -87.091111 +47858 698 295 82538405 99775 31.868 0.039 39.262171 -87.224587 +47859 1066 408 107074649 53186 41.342 0.021 39.881840 -87.172196 +47860 321 129 1720766 0 0.664 0.000 39.721857 -87.330273 +47861 616 298 113795535 3704298 43.937 1.430 39.073459 -87.570355 +47862 1610 756 104610747 1649354 40.390 0.637 39.767091 -87.342366 +47863 205 105 2188311 38102 0.845 0.015 39.589125 -87.454348 +47865 79 41 352370 0 0.136 0.000 39.020999 -87.391428 +47866 347 157 46105391 239720 17.801 0.093 39.292406 -87.321116 +47868 2937 1564 150492165 4256942 58.105 1.644 39.409468 -86.897154 +47869 137 59 281061 0 0.109 0.000 39.273917 -87.496713 +47871 220 102 214002 0 0.083 0.000 39.389680 -87.299875 +47872 8890 4081 443033965 9599484 171.056 3.706 39.753541 -87.153112 +47874 3414 1542 178130067 1250401 68.776 0.483 39.628499 -87.270746 +47876 394 3 1215813 18494 0.469 0.007 39.514586 -87.459799 +47879 3302 1477 153466970 1342630 59.254 0.518 39.197692 -87.378686 +47880 67 24 61096 0 0.024 0.000 39.599748 -87.418844 +47881 465 196 1031886 0 0.398 0.000 39.485930 -87.192415 +47882 8430 3904 371423804 7214494 143.408 2.786 39.091315 -87.410855 +47884 229 111 3329058 373739 1.285 0.144 39.613325 -87.449043 +47885 9009 3935 213206044 5605099 82.319 2.164 39.510414 -87.477056 +47901 3518 2193 1534915 54928 0.593 0.021 40.417778 -86.889633 +47904 16277 7456 14655846 415120 5.659 0.160 40.438632 -86.876920 +47905 38910 17306 310158730 2184171 119.753 0.843 40.420015 -86.766044 +47906 66972 24432 351414511 3065576 135.682 1.184 40.479679 -86.989241 +47907 0 0 736266 0 0.284 0.000 40.424403 -86.915479 +47909 39373 16554 299654727 945543 115.697 0.365 40.324563 -86.896302 +47916 64 37 160082 0 0.062 0.000 39.983646 -87.055430 +47917 491 206 102337582 0 39.513 0.000 40.466838 -87.473426 +47918 6321 2768 376734329 2673673 145.458 1.032 40.298678 -87.198005 +47920 2414 1033 73568825 1343445 28.405 0.519 40.540759 -86.833864 +47921 1078 497 106184075 0 40.998 0.000 40.477151 -87.375376 +47922 1623 671 196087046 276349 75.710 0.107 40.876936 -87.348923 +47923 3494 1538 237135599 766601 91.559 0.296 40.610401 -86.940003 +47924 141 59 203478 0 0.079 0.000 40.487945 -86.762846 +47925 203 127 1212885 125863 0.468 0.049 40.878281 -86.748403 +47926 1097 466 96434855 323386 37.234 0.125 40.780384 -86.595516 +47928 2047 917 112006019 1388407 43.246 0.536 39.921337 -87.472313 +47929 774 335 109567471 99087 42.304 0.038 40.670159 -86.912760 +47930 1094 454 66442029 0 25.653 0.000 40.237087 -86.742355 +47932 5357 2389 281536427 3320787 108.702 1.282 40.134328 -87.415241 +47933 27937 12165 607501734 869852 234.558 0.336 40.038913 -86.896849 +47940 1433 588 105763840 0 40.836 0.000 40.117577 -86.746635 +47941 1300 521 2050679 0 0.792 0.000 40.376135 -86.773980 +47942 660 328 145632004 10638 56.229 0.004 40.686285 -87.444303 +47943 932 324 162384160 147220 62.697 0.057 41.063383 -87.273449 +47944 3623 1604 481078507 150296 185.745 0.058 40.616019 -87.330108 +47946 2044 861 239551737 0 92.491 0.000 40.981738 -86.868425 +47948 1359 611 143131262 0 55.263 0.000 40.777015 -87.281735 +47949 1332 573 108594291 191543 41.928 0.074 40.060540 -87.137329 +47950 912 382 97650640 0 37.703 0.000 40.802441 -86.654857 +47951 2252 1014 167234546 10352 64.570 0.004 40.789528 -87.444437 +47952 2798 1476 297242247 2535798 114.766 0.979 39.959636 -87.299105 +47954 2220 994 173855250 79331 67.126 0.031 39.899963 -86.818500 +47955 1088 459 64327148 0 24.837 0.000 40.196331 -86.861865 +47957 1894 822 153587937 0 59.301 0.000 41.086146 -86.874731 +47958 209 105 1111690 0 0.429 0.000 40.164219 -87.142399 +47959 2822 1315 177196016 508965 68.416 0.197 40.862568 -86.900749 +47960 15003 9615 303522405 11069240 117.191 4.274 40.779015 -86.751024 +47963 1949 911 268018946 3618401 103.483 1.397 40.984253 -87.431944 +47964 122 57 386468 0 0.149 0.000 40.952120 -87.298642 +47965 646 261 1058891 0 0.409 0.000 39.954454 -86.920264 +47966 461 213 2830560 0 1.093 0.000 39.885820 -87.396984 +47967 772 316 80714229 0 31.164 0.000 40.196681 -87.001633 +47968 982 396 63224583 2848 24.411 0.001 39.959518 -86.749957 +47969 145 62 473016 0 0.183 0.000 40.205717 -87.148731 +47970 2034 851 151916263 1071429 58.655 0.414 40.462120 -87.143054 +47971 1865 829 143988552 75101 55.594 0.029 40.532018 -87.233923 +47974 1186 549 105986020 1511777 40.921 0.584 40.042921 -87.480363 +47975 653 327 101048932 0 39.015 0.000 40.449132 -87.253258 +47977 2206 974 216296638 244835 83.513 0.095 40.755909 -87.164567 +47978 11793 4672 666776171 751374 257.444 0.290 40.986173 -87.112979 +47980 1096 478 143696081 26934 55.481 0.010 40.751634 -86.897372 +47981 849 333 94199347 0 36.371 0.000 40.245025 -86.930413 +47982 143 70 360426 0 0.139 0.000 40.197348 -87.527069 +47983 347 130 1294949 0 0.500 0.000 40.279131 -86.767288 +47987 4049 1783 320060354 105159 123.576 0.041 40.125748 -87.232989 +47989 1281 572 108908440 1378299 42.050 0.532 39.890345 -87.049040 +47990 1627 715 111530295 0 43.062 0.000 40.061841 -87.054281 +47991 1070 474 77740344 71843 30.016 0.028 40.284444 -87.463075 +47992 1465 574 94390220 681886 36.444 0.263 40.319373 -87.048999 +47993 3918 1674 366953913 1571901 141.682 0.607 40.308279 -87.409423 +47994 476 213 38011748 0 14.676 0.000 40.169249 -87.062127 +47995 1743 712 213331194 108912 82.368 0.042 40.761189 -87.030109 +47997 139 54 315328 0 0.122 0.000 40.667696 -86.723596 +48001 11986 6130 49229944 12016509 19.008 4.640 42.639328 -82.581737 +48002 3285 1225 96152532 18977 37.125 0.007 42.936383 -82.917120 +48003 6070 2372 85084237 601582 32.851 0.232 42.929993 -83.039632 +48005 5379 1994 94471583 156724 36.476 0.061 42.850742 -82.923828 +48006 4007 1577 185042702 967847 71.445 0.374 43.083019 -82.691035 +48009 20107 9981 13084514 31709 5.052 0.012 42.544048 -83.217653 +48014 4256 1702 94767076 536632 36.590 0.207 43.025719 -82.931553 +48015 8257 3920 4424023 0 1.708 0.000 42.480497 -83.027149 +48017 11805 5754 5683647 0 2.194 0.000 42.536695 -83.150361 +48021 32353 13753 13253190 5331 5.117 0.002 42.466080 -82.946341 +48022 2654 980 91517376 55958 35.335 0.022 43.023396 -82.802404 +48023 5178 2269 44113316 284453 17.032 0.110 42.701020 -82.657699 +48025 14543 5947 20795336 40066 8.029 0.015 42.520357 -83.264824 +48026 14480 6448 10725535 40959 4.141 0.016 42.537633 -82.946742 +48027 3249 1249 96795690 167362 37.373 0.065 42.944289 -82.694041 +48028 1190 1541 45944318 41305467 17.739 15.948 42.580209 -82.616620 +48030 16422 7611 7297399 0 2.818 0.000 42.461924 -83.097689 +48032 2322 880 96633255 822466 37.310 0.318 43.133203 -82.596952 +48033 16064 8576 23215673 14814 8.964 0.006 42.459322 -83.293205 +48034 12590 8222 11188519 0 4.320 0.000 42.496949 -83.291078 +48035 34788 15399 22772757 100522 8.793 0.039 42.556600 -82.907589 +48036 20980 9942 21551261 564901 8.321 0.218 42.597045 -82.913144 +48038 41057 19960 28395064 40058 10.963 0.015 42.606163 -82.937588 +48039 7807 3541 59591930 4846006 23.009 1.871 42.692907 -82.546478 +48040 9956 4513 17895611 2558369 6.910 0.988 42.910313 -82.480603 +48041 4561 1791 103598457 326839 40.000 0.126 42.937825 -82.806288 +48042 27291 9515 58854197 113652 22.724 0.044 42.683658 -82.907975 +48043 16305 7575 10615453 340371 4.099 0.131 42.598055 -82.881506 +48044 52289 18070 34968458 194242 13.501 0.075 42.650226 -82.928905 +48045 24604 12610 37852081 23892437 14.615 9.225 42.586409 -82.818113 +48047 39415 16310 46696164 13420267 18.029 5.182 42.674240 -82.773842 +48048 7548 2857 49265723 402169 19.022 0.155 42.745747 -82.795870 +48049 5582 2185 92633721 853777 35.766 0.330 43.041577 -82.570207 +48050 1653 658 48119193 169262 18.579 0.065 42.787537 -82.799467 +48051 17319 6187 39007428 144086 15.061 0.056 42.693641 -82.821001 +48054 7339 3095 105189994 4100434 40.614 1.583 42.770358 -82.528976 +48059 15123 7135 81793580 18685946 31.581 7.215 43.087620 -82.494773 +48060 40831 18219 53993557 8039669 20.847 3.104 42.980388 -82.461014 +48062 9373 3733 102252058 236937 39.480 0.091 42.852495 -82.796471 +48063 4070 1541 95186705 770265 36.752 0.297 42.859332 -82.683111 +48064 4107 1595 95874688 414793 37.017 0.160 42.764617 -82.666777 +48065 10547 4138 96830565 1100722 37.386 0.425 42.845195 -83.039290 +48066 47388 21303 25516402 74007 9.852 0.029 42.507586 -82.936582 +48067 24458 13014 11888903 2761 4.590 0.001 42.490558 -83.137524 +48069 2526 1153 1396492 0 0.539 0.000 42.471325 -83.144332 +48070 6238 2429 3847786 9241 1.486 0.004 42.481899 -83.168088 +48071 29694 13685 18374593 0 7.094 0.000 42.507266 -83.103370 +48072 14970 6932 6220197 0 2.402 0.000 42.497902 -83.185859 +48073 32798 17231 19104791 0 7.376 0.000 42.519205 -83.164362 +48074 9356 3840 96025642 797498 37.076 0.308 42.950223 -82.561555 +48075 21790 10162 19155677 0 7.396 0.000 42.462064 -83.230398 +48076 25386 10730 18438102 0 7.119 0.000 42.497517 -83.230874 +48079 12304 5264 108001453 3689925 41.700 1.425 42.858849 -82.548404 +48080 22494 11424 11325638 1885265 4.373 0.728 42.464424 -82.896175 +48081 20635 9463 10178038 3460922 3.930 1.336 42.494669 -82.895039 +48082 16549 7568 8542622 1957359 3.298 0.756 42.528022 -82.887195 +48083 22507 9682 22379873 0 8.641 0.000 42.557021 -83.116859 +48084 14231 7017 16008059 0 6.181 0.000 42.560633 -83.175706 +48085 24660 8768 24113159 403419 9.310 0.156 42.604032 -83.122111 +48088 22255 9569 11490620 0 4.437 0.000 42.515645 -82.982991 +48089 31978 13485 20623879 4901 7.963 0.002 42.468096 -82.993857 +48091 31106 13354 20698268 0 7.992 0.000 42.468168 -83.057986 +48092 25680 10820 21213730 94029 8.191 0.036 42.513593 -83.058938 +48093 23037 10710 14641248 99514 5.653 0.038 42.515890 -83.016483 +48094 18028 7012 45382986 2377070 17.522 0.918 42.736802 -83.037491 +48095 4906 1876 43806880 922896 16.914 0.356 42.778736 -83.048070 +48096 3739 1482 94741211 296426 36.580 0.114 42.762151 -82.920470 +48097 5499 2190 197490979 1443873 76.252 0.557 43.121947 -82.827417 +48098 19582 7440 24324089 30981 9.392 0.012 42.598433 -83.178450 +48101 28200 12202 18182907 122205 7.020 0.047 42.259473 -83.210390 +48103 53057 24430 168565141 1197790 65.083 0.462 42.261356 -83.846438 +48104 38315 16456 20140444 640396 7.776 0.247 42.263886 -83.715564 +48105 33905 15614 129210895 2078331 49.889 0.802 42.327704 -83.695817 +48108 26164 11517 43961252 100416 16.974 0.039 42.221694 -83.732265 +48109 6904 8 2529757 0 0.977 0.000 42.289187 -83.708780 +48111 42313 19287 174712960 5993611 67.457 2.314 42.177312 -83.488444 +48114 19702 7758 85529605 4489386 33.023 1.733 42.570452 -83.747630 +48116 26432 11400 94856643 9125550 36.624 3.523 42.505744 -83.782892 +48117 10124 4104 142093847 851026 54.863 0.329 42.050259 -83.410188 +48118 12552 5465 227254391 10806541 87.743 4.172 42.312244 -84.034020 +48120 8274 2914 8253572 149422 3.187 0.058 42.306327 -83.176211 +48122 10727 4924 7055271 98887 2.724 0.038 42.278537 -83.182589 +48124 31732 14667 22934067 115622 8.855 0.045 42.298036 -83.247610 +48125 21273 9141 10489268 956 4.050 0.000 42.277334 -83.264832 +48126 47465 15840 25386287 240192 9.802 0.093 42.325790 -83.183213 +48127 36501 14927 19924557 22246 7.693 0.009 42.335793 -83.283296 +48128 10682 4450 6123655 134025 2.364 0.052 42.320411 -83.259969 +48130 14420 5538 161130088 2628025 62.213 1.015 42.364141 -83.909360 +48131 6764 2846 129672962 1133879 50.067 0.438 41.965924 -83.671398 +48133 5753 2506 69548571 15649666 26.853 6.042 41.782381 -83.486028 +48134 21408 8416 46410603 1160454 17.919 0.448 42.106559 -83.296157 +48135 27665 11596 15198077 0 5.868 0.000 42.324384 -83.341212 +48137 4796 2190 109908271 6311952 42.436 2.437 42.462186 -84.075010 +48138 10371 4465 23824274 3950375 9.199 1.525 42.133978 -83.153921 +48139 206 100 1784366 0 0.689 0.000 42.452452 -83.806050 +48140 3095 1168 68941164 274086 26.618 0.106 41.882184 -83.580507 +48141 25366 11645 16194528 1610 6.253 0.001 42.294054 -83.319867 +48143 32 17 19271 0 0.007 0.000 42.459978 -83.851969 +48144 9952 3914 19670540 45752 7.595 0.018 41.752443 -83.628666 +48145 3503 1429 43476238 731452 16.786 0.282 41.844247 -83.459970 +48146 38098 16502 15202542 1439 5.870 0.001 42.243291 -83.181258 +48150 27127 11403 31043463 406031 11.986 0.157 42.371604 -83.376788 +48152 31173 13527 31368242 33600 12.111 0.013 42.424935 -83.374264 +48154 38642 15471 30085171 7419 11.616 0.003 42.397183 -83.372319 +48157 1436 702 2488137 0 0.961 0.000 41.814624 -83.438215 +48158 7309 3205 243166774 3966630 93.887 1.532 42.155829 -84.029434 +48159 2582 995 79099579 58080 30.541 0.022 42.019159 -83.547956 +48160 13785 5004 208512228 959928 80.507 0.371 42.078164 -83.674971 +48161 26470 11352 115923916 4892986 44.758 1.889 41.907196 -83.472457 +48162 29344 12591 148166694 3763496 57.207 1.453 41.960425 -83.429323 +48164 9175 3528 76119149 380809 29.390 0.147 42.124571 -83.386866 +48165 6339 2698 24100791 601254 9.305 0.232 42.501565 -83.616922 +48166 11569 4666 68809558 3213876 26.568 1.241 41.982805 -83.294714 +48167 21534 10059 46056638 521639 17.783 0.201 42.432315 -83.524658 +48168 21781 8502 52837702 610512 20.401 0.236 42.405262 -83.540498 +48169 20813 8926 149366715 13688219 57.671 5.285 42.462451 -83.947737 +48170 39963 17902 88448610 539814 34.150 0.208 42.367689 -83.534306 +48173 12700 5311 30022088 5808529 11.592 2.243 42.073679 -83.212774 +48174 31515 13063 106680136 588742 41.189 0.227 42.234298 -83.394324 +48176 21447 8322 192552563 1055985 74.345 0.408 42.136836 -83.829250 +48177 218 88 1609885 0 0.622 0.000 41.803955 -83.580926 +48178 29320 11837 131199506 4856212 50.656 1.875 42.443768 -83.656872 +48179 3274 1349 52773357 11554293 20.376 4.461 42.035092 -83.255450 +48180 63131 26422 61116827 95634 23.597 0.037 42.225262 -83.268308 +48182 21708 8725 102686474 461038 39.647 0.178 41.789858 -83.583849 +48183 43182 18812 48139682 2168611 18.587 0.837 42.131459 -83.217792 +48184 17643 7846 18208616 3148 7.030 0.001 42.274479 -83.395623 +48185 47618 23922 31512594 23686 12.167 0.009 42.333901 -83.384209 +48186 36506 15301 21391213 15889 8.259 0.006 42.293764 -83.370739 +48187 49148 19185 46813620 32123 18.075 0.012 42.325573 -83.483576 +48188 41025 15644 46715127 44071 18.037 0.017 42.283688 -83.482719 +48189 13632 6005 88922681 5785416 34.333 2.234 42.412336 -83.782854 +48190 107 49 914769 0 0.353 0.000 42.131536 -83.593807 +48191 4054 1603 42127166 166737 16.265 0.064 42.121629 -83.570590 +48192 25883 12081 13720595 377603 5.298 0.146 42.208455 -83.161498 +48193 15623 6775 18194681 658655 7.025 0.254 42.173282 -83.209837 +48195 30047 13933 17672628 12035 6.823 0.005 42.204975 -83.206511 +48197 61132 26652 108555478 3206825 41.914 1.238 42.194034 -83.639984 +48198 38186 17593 86961286 2276217 33.576 0.879 42.275075 -83.586340 +48201 12814 9470 5193540 0 2.005 0.000 42.347021 -83.060184 +48202 16603 10329 8616314 0 3.327 0.000 42.374786 -83.077718 +48203 28409 15544 20756114 18585 8.014 0.007 42.420736 -83.104338 +48204 27997 15517 12980500 0 5.012 0.000 42.365812 -83.142935 +48205 44045 18780 16531627 0 6.383 0.000 42.433156 -82.981142 +48206 21954 13142 8095663 0 3.126 0.000 42.375123 -83.107897 +48207 20252 12879 16061703 521193 6.201 0.201 42.349654 -83.018960 +48208 10234 5642 8190764 0 3.162 0.000 42.348491 -83.091937 +48209 32262 12298 17501605 347455 6.757 0.134 42.306723 -83.116863 +48210 31017 12306 13057914 0 5.042 0.000 42.336212 -83.128331 +48211 7082 3201 10848548 0 4.189 0.000 42.381347 -83.045733 +48212 39038 15301 13854094 26408 5.349 0.010 42.409721 -83.056394 +48213 27712 13115 16923386 0 6.534 0.000 42.397931 -82.995213 +48214 22759 13560 13014076 1565598 5.025 0.604 42.365116 -82.987644 +48215 13565 7177 10395926 0 4.014 0.000 42.375051 -82.954344 +48216 5645 2928 5747286 0 2.219 0.000 42.326484 -83.078746 +48217 8210 3977 5921036 126346 2.286 0.049 42.277651 -83.155078 +48218 7903 3731 6872362 287672 2.653 0.111 42.272709 -83.126672 +48219 46931 22525 21773613 5168 8.407 0.002 42.425328 -83.251428 +48220 22319 11588 11479188 0 4.432 0.000 42.458066 -83.135213 +48221 38727 17406 14119737 2042 5.452 0.001 42.427000 -83.148609 +48223 25336 12513 15679754 0 6.054 0.000 42.393453 -83.246327 +48224 44439 19244 14852847 0 5.735 0.000 42.410693 -82.941265 +48225 14554 6669 6854875 0 2.647 0.000 42.438984 -82.929610 +48226 5302 4506 3197600 0 1.235 0.000 42.331542 -83.050267 +48227 45380 21358 19504196 0 7.531 0.000 42.387249 -83.192592 +48228 52130 24168 22299441 0 8.610 0.000 42.355455 -83.217014 +48229 9556 4570 7303781 4867 2.820 0.002 42.250559 -83.142867 +48230 16976 7443 8360759 3001154 3.228 1.159 42.382395 -82.921842 +48233 0 0 48551 0 0.019 0.000 42.323697 -83.061662 +48234 36140 16255 20288109 0 7.833 0.000 42.431197 -83.039501 +48235 45063 20150 16189821 0 6.251 0.000 42.427058 -83.194803 +48236 30607 13059 19463663 3357791 7.515 1.296 42.425373 -82.893194 +48237 29319 12782 13341572 0 5.151 0.000 42.464968 -83.182420 +48238 31743 17499 13974835 0 5.396 0.000 42.396286 -83.141352 +48239 35524 15225 25193320 93427 9.727 0.036 42.376046 -83.283174 +48240 17722 7574 9695508 0 3.743 0.000 42.424460 -83.301300 +48242 0 0 18054952 341236 6.971 0.132 42.221210 -83.345136 +48243 0 0 42722 0 0.016 0.000 42.329975 -83.039506 +48301 14127 5885 19082075 563499 7.368 0.218 42.542400 -83.282168 +48302 15360 6770 28779375 3009391 11.112 1.162 42.585108 -83.293467 +48304 16009 7018 29280740 240747 11.305 0.093 42.588866 -83.233152 +48306 26691 9677 58870695 262841 22.730 0.101 42.724318 -83.147306 +48307 41369 18704 39752809 131153 15.349 0.051 42.659316 -83.122679 +48309 29135 11386 40034011 41084 15.457 0.016 42.656374 -83.183588 +48310 42766 15512 21908557 69654 8.459 0.027 42.563435 -83.068397 +48312 32720 14046 29136295 196890 11.250 0.076 42.558228 -83.008926 +48313 33952 14193 23503570 406887 9.075 0.157 42.600651 -83.002903 +48314 20245 8423 19963757 86817 7.708 0.034 42.612074 -83.053489 +48315 26563 10429 33063561 425300 12.766 0.164 42.671548 -82.996562 +48316 25404 10331 28762237 627097 11.105 0.242 42.690173 -83.057244 +48317 26610 12010 31361812 1328385 12.109 0.513 42.644840 -83.051972 +48320 4589 2260 2832858 794949 1.094 0.307 42.611935 -83.338092 +48322 31265 12819 30447134 172677 11.756 0.067 42.538168 -83.381721 +48323 17708 6863 22625294 3528983 8.736 1.363 42.570804 -83.377909 +48324 17350 6708 22267787 9211406 8.598 3.557 42.594161 -83.392463 +48326 20298 10093 44779600 1578102 17.290 0.609 42.688246 -83.244075 +48327 21559 9896 29357542 1254703 11.335 0.484 42.636933 -83.409987 +48328 24960 11807 23415085 6661279 9.041 2.572 42.646381 -83.359098 +48329 25009 10331 26456696 5606231 10.215 2.165 42.687016 -83.388622 +48331 21503 8792 24056347 30025 9.288 0.012 42.502483 -83.408935 +48334 18540 8552 23280642 33221 8.989 0.013 42.504697 -83.349203 +48335 22398 11309 19519357 9310 7.536 0.004 42.462885 -83.405151 +48336 25486 11683 23545178 0 9.091 0.000 42.463144 -83.347270 +48340 24307 10981 19451041 223003 7.510 0.086 42.672146 -83.287904 +48341 17139 7857 16553506 622686 6.391 0.240 42.627985 -83.296841 +48342 18407 8407 14852162 135050 5.734 0.052 42.642264 -83.273415 +48346 22567 9582 46526882 2248921 17.964 0.868 42.717697 -83.428904 +48348 23387 8551 85808148 2392869 33.131 0.924 42.770131 -83.403875 +48350 7100 2727 61607645 2335994 23.787 0.902 42.739418 -83.531044 +48353 6481 2553 34675444 1708299 13.388 0.660 42.646870 -83.715943 +48356 8407 3434 36733900 3600344 14.183 1.390 42.654414 -83.592905 +48357 8170 3279 30436623 1531824 11.752 0.591 42.658533 -83.646400 +48359 8044 3291 27891596 772580 10.769 0.298 42.720743 -83.275522 +48360 11651 4393 30939560 2059458 11.946 0.795 42.747574 -83.260083 +48362 15141 6177 25688754 3921695 9.918 1.514 42.784477 -83.270339 +48363 4978 1916 52310794 851170 20.197 0.329 42.772483 -83.162499 +48367 4727 1942 60738183 2515683 23.451 0.971 42.836232 -83.136902 +48370 1685 630 30968042 318137 11.957 0.123 42.842876 -83.200365 +48371 23155 8824 110655621 4157391 42.724 1.605 42.840970 -83.291531 +48374 14049 4704 23521854 295905 9.082 0.114 42.473226 -83.522863 +48375 21801 9422 22224685 79905 8.581 0.031 42.464141 -83.463958 +48377 15244 8161 24977248 2201392 9.644 0.850 42.504926 -83.474163 +48380 7404 2676 65730039 4189694 25.379 1.618 42.583002 -83.666824 +48381 12605 5369 51852337 1968626 20.020 0.760 42.558412 -83.591793 +48382 21945 8075 42605404 4905944 16.450 1.894 42.592558 -83.507157 +48383 12701 4827 38623150 2452196 14.912 0.947 42.655609 -83.525841 +48386 17434 7423 43311680 6263206 16.723 2.418 42.660319 -83.480281 +48390 22898 10464 32461268 2524821 12.533 0.975 42.550711 -83.474218 +48393 16111 7640 34281698 636214 13.236 0.246 42.521838 -83.545088 +48397 0 0 462102 0 0.178 0.000 42.495017 -83.041035 +48401 1439 794 85733536 167082 33.102 0.065 43.347342 -82.670591 +48411 156 73 1569139 207029 0.606 0.080 42.931981 -83.528907 +48412 5682 2421 129129963 3084625 49.857 1.191 43.070433 -83.175549 +48413 7551 3445 356208817 1681314 137.533 0.649 43.798617 -82.993851 +48414 2492 1047 83344446 2721434 32.179 1.051 42.861694 -84.079846 +48415 9471 3903 169210525 370101 65.333 0.143 43.271876 -83.808105 +48416 5002 2067 290258693 2098835 112.070 0.810 43.216870 -82.985115 +48417 2983 1170 63850523 387358 24.653 0.150 43.261282 -83.939194 +48418 4312 1705 100270865 2067711 38.715 0.798 42.794295 -83.969891 +48419 2740 1528 200326960 2575381 77.347 0.994 43.435673 -82.660545 +48420 22078 9284 167217709 581251 64.563 0.224 43.179103 -83.700508 +48421 6647 2910 105071027 8249774 40.568 3.185 43.155496 -83.393187 +48422 6400 2815 248471072 970502 95.935 0.375 43.261472 -82.653704 +48423 32708 14465 169881337 3664014 65.592 1.415 43.038705 -83.510960 +48426 1022 462 101473904 246908 39.179 0.095 43.510728 -83.058098 +48427 2879 1678 249890226 4036456 96.483 1.558 43.535638 -82.725482 +48428 5027 1972 87235235 3819447 33.682 1.475 42.938195 -83.154454 +48429 8944 4283 140531377 1696196 54.259 0.655 42.905895 -84.003812 +48430 36738 15812 214859411 15437309 82.958 5.960 42.758215 -83.743683 +48432 636 312 86470726 786531 33.387 0.304 43.898698 -82.972074 +48433 26497 11214 143788223 1589569 55.517 0.614 43.075348 -83.867227 +48434 104 150 1414682 0 0.546 0.000 43.661889 -82.611777 +48435 2083 827 64858624 289535 25.042 0.112 43.245379 -83.359338 +48436 3764 1438 82559140 213645 31.876 0.082 42.865316 -83.876830 +48437 581 293 1528712 388611 0.590 0.150 43.115745 -83.612394 +48438 6951 2514 79245942 6149951 30.597 2.375 42.913657 -83.484165 +48439 49209 20906 137029885 1237254 52.908 0.478 42.916674 -83.629571 +48440 157 72 1852053 0 0.715 0.000 42.951094 -83.412259 +48441 4085 2447 262575960 30701671 101.381 11.854 43.797892 -82.708630 +48442 20669 8700 221106779 9626182 85.370 3.717 42.788680 -83.606102 +48444 9327 3805 209131873 1297824 80.746 0.501 43.058491 -83.045197 +48445 1370 693 145558116 797121 56.200 0.308 43.950222 -82.990555 +48446 30749 12844 309671037 15749934 119.565 6.081 43.053740 -83.338704 +48449 3147 1316 66269922 136328 25.587 0.053 42.991452 -83.944772 +48450 4780 4194 57618695 6069222 22.247 2.343 43.258660 -82.542438 +48451 14767 5950 87484496 6247344 33.778 2.412 42.801222 -83.819172 +48453 5146 2207 277288365 538400 107.062 0.208 43.348144 -83.032572 +48454 1324 551 78076172 24995 30.145 0.010 43.195011 -82.812721 +48455 7974 3331 168324305 6462239 64.990 2.495 42.937951 -83.290783 +48456 858 438 120224137 49700 46.419 0.019 43.666971 -82.762208 +48457 8436 3304 113685283 2255746 43.894 0.871 43.186801 -83.895170 +48458 20538 9586 90862506 386262 35.082 0.149 43.125269 -83.681457 +48460 2330 972 87285213 1105072 33.701 0.427 43.130612 -83.984997 +48461 8428 3197 216596136 1678337 83.628 0.648 43.193661 -83.206162 +48462 13266 4977 123305612 3336299 47.609 1.288 42.848513 -83.421668 +48463 4627 1924 90517023 1605482 34.949 0.620 43.165799 -83.519301 +48464 2231 1013 47959864 1968279 18.517 0.760 43.220341 -83.422460 +48465 629 471 106337850 1389577 41.057 0.537 43.607998 -82.707770 +48466 1578 692 95267415 10409 36.783 0.004 43.280507 -82.808877 +48467 2337 2922 164406003 21875102 63.478 8.446 44.015356 -82.982415 +48468 1294 1190 164955187 23777586 63.690 9.181 43.938412 -82.775181 +48469 1245 1035 20426607 2975108 7.887 1.149 43.441469 -82.558181 +48470 784 356 103617380 42425 40.007 0.016 43.735130 -82.751064 +48471 5745 2608 261257475 108449 100.872 0.042 43.419420 -82.852080 +48472 1912 861 197710183 94555 76.336 0.037 43.512323 -82.963212 +48473 22507 9412 152755827 312769 58.979 0.121 42.936950 -83.820544 +48475 2766 1254 278838844 119079 107.660 0.046 43.673156 -82.947987 +48476 577 233 685245 22377 0.265 0.009 42.938707 -84.030050 +48502 1164 440 1027682 7539 0.397 0.003 43.013727 -83.688376 +48503 25168 13290 21245190 331612 8.203 0.128 42.999923 -83.708864 +48504 30926 14500 40091396 123095 15.479 0.048 43.054791 -83.743784 +48505 25710 12943 32525429 918051 12.558 0.354 43.070657 -83.686168 +48506 30019 13604 49059119 2125041 18.942 0.820 43.067472 -83.624392 +48507 30607 15087 53948563 551209 20.830 0.213 42.966966 -83.717359 +48509 9470 4059 22947545 118235 8.860 0.046 43.024210 -83.606593 +48519 7465 3406 20000243 24138 7.722 0.009 42.981891 -83.604953 +48529 10271 4588 12790887 34971 4.939 0.014 42.970338 -83.658590 +48532 19375 9221 39639656 233885 15.305 0.090 43.011064 -83.794854 +48551 0 0 964147 0 0.372 0.000 42.980994 -83.716900 +48553 0 0 533497 0 0.206 0.000 42.977762 -83.723561 +48554 0 0 471419 0 0.182 0.000 42.975881 -83.790734 +48601 38406 17166 271847876 12320497 104.961 4.757 43.405947 -83.893998 +48602 30119 13626 20281260 772240 7.831 0.298 43.420026 -83.974472 +48603 26913 12637 47419679 557377 18.309 0.215 43.458786 -84.029471 +48604 13074 4566 64547958 3277372 24.922 1.265 43.499764 -83.969084 +48607 1774 1100 2311674 137198 0.893 0.053 43.431811 -83.933996 +48609 12461 5411 115429348 8796626 44.568 3.396 43.388857 -84.087006 +48610 3083 2681 304261961 3862016 117.476 1.491 44.141692 -84.192194 +48611 6554 2689 99423068 257501 38.387 0.099 43.634148 -84.097206 +48612 9259 5789 313034635 11994562 120.863 4.631 43.883024 -84.439434 +48613 1158 495 157125400 1836756 60.666 0.709 43.947803 -84.175193 +48614 1376 555 91855122 573068 35.465 0.221 43.250991 -84.298042 +48615 3058 1320 149212106 455418 57.611 0.176 43.429810 -84.474806 +48616 7513 3192 208417183 1262303 80.470 0.487 43.191074 -84.113460 +48617 8857 3976 358921199 3010124 138.580 1.162 43.851308 -84.717297 +48618 5393 2453 268960566 1925295 103.846 0.743 43.736779 -84.556707 +48619 465 551 204381806 2194460 78.912 0.847 44.819736 -84.020613 +48621 1359 927 144936609 3130237 55.960 1.209 44.736899 -84.012427 +48622 6491 3535 246382433 3013823 95.129 1.164 43.840836 -84.881266 +48623 13993 4922 190667010 2524950 73.617 0.975 43.520080 -84.132840 +48624 15810 11336 878395040 19595279 339.150 7.566 44.061093 -84.457370 +48625 13152 11655 622598314 9539219 240.387 3.683 44.052769 -84.839621 +48626 6078 2471 164825933 1345311 63.640 0.519 43.421372 -84.221436 +48627 141 389 562697 0 0.217 0.000 44.461919 -84.750203 +48628 1938 1145 85795029 1877410 33.126 0.725 43.784121 -84.328366 +48629 7854 7346 207565244 8178814 80.141 3.158 44.312238 -84.784698 +48630 69 61 247248 0 0.095 0.000 44.324794 -84.772497 +48631 4643 1913 85786814 3140993 33.122 1.213 43.688645 -83.995895 +48632 5125 4661 328508216 12011278 126.838 4.638 43.858387 -85.020525 +48633 210 411 6672133 765424 2.576 0.296 43.936975 -84.931062 +48634 4371 1932 120490018 6310124 46.521 2.436 43.747641 -84.056178 +48635 1573 1880 149869388 7236009 57.865 2.794 44.387169 -83.994430 +48636 864 1298 227423620 538651 87.809 0.208 44.598899 -84.295564 +48637 3359 1375 188537801 134390 72.795 0.052 43.413693 -84.335573 +48638 12922 6281 17110560 421426 6.606 0.163 43.418925 -84.018242 +48640 32690 13933 261505831 9645711 100.968 3.724 43.582166 -84.337227 +48642 32277 13560 296035822 1576026 114.300 0.609 43.712749 -84.236964 +48647 4420 3741 366183686 4640581 141.384 1.792 44.658121 -84.113065 +48649 1576 662 67138831 414083 25.922 0.160 43.150461 -84.217431 +48650 7253 3259 253917670 29185489 98.038 11.269 43.847504 -83.997777 +48651 4690 4275 172269150 9250950 66.513 3.572 44.254775 -84.614813 +48652 1548 682 138583396 3077698 53.507 1.188 43.860201 -84.196880 +48653 10293 10380 651642228 50312623 251.600 19.426 44.490944 -84.599452 +48654 2521 2001 245699968 2031497 94.865 0.784 44.457421 -84.137319 +48655 6460 2702 244918487 4118369 94.564 1.590 43.294499 -84.159695 +48656 4058 4171 344103559 13004525 132.859 5.021 44.341665 -84.450997 +48657 7981 3673 159937197 13330968 61.752 5.147 43.706126 -84.416160 +48658 5138 2516 210965432 15597840 81.454 6.022 43.975339 -83.936798 +48659 2850 1339 206422906 786797 79.700 0.304 44.065548 -84.050783 +48661 10691 6608 688177607 8210618 265.707 3.170 44.318406 -84.236213 +48662 1594 654 120533022 169388 46.538 0.065 43.409942 -84.416810 +48667 0 0 853028 32489 0.329 0.013 43.602088 -84.233324 +48701 1368 635 109753299 12883020 42.376 4.974 43.586877 -83.557827 +48703 3238 2787 113045162 11234355 43.647 4.338 44.063642 -83.675914 +48705 535 754 228925490 1291636 88.389 0.499 44.696064 -83.656322 +48706 40596 18425 173498367 18656399 66.988 7.203 43.599622 -83.950504 +48708 27262 12357 72168561 2182888 27.864 0.843 43.557060 -83.849680 +48710 0 0 1076945 0 0.416 0.000 43.556513 -83.987669 +48720 1042 609 82918318 8030086 32.015 3.100 43.838602 -83.339177 +48721 411 393 71125962 5372889 27.462 2.074 44.808106 -83.339480 +48722 3123 1368 44065053 765457 17.014 0.296 43.346724 -83.844762 +48723 12479 5409 334413535 9416485 129.118 3.636 43.485294 -83.388738 +48724 359 157 893685 273998 0.345 0.106 43.456815 -83.928244 +48725 2464 2932 91889368 14779516 35.479 5.706 43.943956 -83.209593 +48726 6172 2772 326887822 3738024 126.212 1.443 43.607381 -83.167997 +48727 1269 527 62339589 1499790 24.069 0.579 43.313384 -83.174484 +48728 290 669 332888206 3197416 128.529 1.235 44.732959 -83.819275 +48729 1586 709 112334629 2536327 43.373 0.979 43.495939 -83.173779 +48730 4716 3436 189787247 18564632 73.277 7.168 44.343486 -83.455677 +48731 1683 774 125900394 232824 48.610 0.090 43.843633 -83.151050 +48732 11483 5304 63681019 16577613 24.587 6.401 43.612331 -83.789822 +48733 1758 835 127220138 2586167 49.120 0.999 43.534102 -83.593113 +48734 7444 3352 105724716 590692 40.821 0.228 43.357562 -83.748510 +48735 1051 464 96601394 494162 37.298 0.191 43.667593 -83.270883 +48737 1245 1596 264845988 9475178 102.258 3.658 44.545688 -83.685206 +48738 1269 1534 28160685 7208618 10.873 2.783 44.555551 -83.329568 +48739 4043 4346 241314042 13199407 93.172 5.096 44.370907 -83.841608 +48740 2556 1811 175033491 26991469 67.581 10.421 44.663889 -83.372024 +48741 2086 898 118750406 2368381 45.850 0.914 43.402479 -83.179873 +48742 1647 1453 193785721 2149826 74.821 0.830 44.742724 -83.435666 +48743 63 42 5287430 86589 2.041 0.033 44.441124 -83.863151 +48744 4615 2112 167645396 3410821 64.728 1.317 43.348042 -83.359255 +48745 1346 882 193987782 123194 74.899 0.048 44.566419 -83.475246 +48746 8528 3487 210585548 1928612 81.308 0.745 43.259333 -83.550250 +48747 1494 607 79701151 44179 30.773 0.017 43.518714 -83.764616 +48748 1693 2016 119972635 3299193 46.322 1.274 44.352923 -83.612927 +48749 1094 656 89963529 1241124 34.735 0.479 44.053775 -83.900647 +48750 8846 6867 248398470 30402783 95.907 11.739 44.445649 -83.471971 +48754 1001 429 94706170 55400 36.566 0.021 43.733259 -83.231016 +48755 3110 2283 130726237 20816167 50.474 8.037 43.791501 -83.245620 +48756 4640 3380 202478662 4735471 78.177 1.828 44.233582 -83.973027 +48757 3817 1703 142676432 81277 55.088 0.031 43.469859 -83.676311 +48759 3293 1742 128812705 4368510 49.735 1.687 43.730478 -83.385904 +48760 1351 674 70938035 1815910 27.389 0.701 43.323051 -83.255006 +48761 1026 1492 226300192 2995440 87.375 1.157 44.510924 -83.891710 +48762 1139 1063 116620642 361561 45.027 0.140 44.821660 -83.461620 +48763 5012 3152 241940107 11410986 93.414 4.406 44.255090 -83.614901 +48765 725 475 143312869 2538124 55.333 0.980 44.151556 -83.717952 +48766 1270 677 135105305 1146206 52.164 0.443 44.105722 -83.839392 +48767 2162 1062 192811550 26881213 74.445 10.379 43.650518 -83.463154 +48768 9832 4151 271353153 2019621 104.770 0.780 43.370831 -83.577539 +48770 1891 1126 175682116 149723 67.831 0.058 44.251182 -83.814166 +48801 12923 5279 185048302 1591069 71.448 0.614 43.375171 -84.678002 +48806 1676 685 167516568 863506 64.679 0.333 43.186891 -84.500161 +48807 916 394 72360757 62362 27.939 0.024 43.150476 -84.402006 +48808 5178 2293 63816793 6383247 24.640 2.465 42.828836 -84.444776 +48809 11015 4646 212022873 7733455 81.862 2.986 43.075299 -85.257962 +48811 5641 1323 162738416 540880 62.834 0.209 43.180629 -84.854439 +48813 21182 8791 439794059 1332275 169.805 0.514 42.579702 -84.845830 +48815 2259 983 71132423 658951 27.464 0.254 42.834370 -85.258593 +48816 121 54 1196194 736 0.462 0.000 42.765009 -83.955981 +48817 6422 2724 153064275 1071897 59.098 0.414 43.013949 -84.042884 +48818 2407 1537 65435020 4792424 25.265 1.850 43.271447 -84.888184 +48819 2701 1019 115129411 181308 44.452 0.070 42.547396 -84.280994 +48820 16641 6496 170116432 1438390 65.682 0.555 42.863913 -84.592296 +48821 5836 2601 54903161 1040188 21.198 0.402 42.641171 -84.647418 +48822 2714 1098 83805179 738052 32.357 0.285 42.835429 -84.762988 +48823 51302 22908 58085338 560032 22.427 0.216 42.763888 -84.458771 +48825 12596 2 3213319 70516 1.241 0.027 42.727613 -84.481415 +48827 15971 6509 289216698 2073885 111.667 0.801 42.509348 -84.660239 +48829 3254 1501 169719277 499401 65.529 0.193 43.398205 -85.015378 +48831 3512 1419 188522051 633767 72.789 0.245 43.096219 -84.372488 +48832 1393 617 67139628 427449 25.923 0.165 43.411883 -84.776582 +48834 2090 938 119804590 2239061 46.257 0.865 43.132585 -85.032114 +48835 2680 996 145002324 1097969 55.986 0.424 43.024903 -84.749057 +48836 13510 5234 240852742 875523 92.994 0.338 42.669319 -84.076583 +48837 18926 8050 205870599 1929149 79.487 0.745 42.746728 -84.770601 +48838 17863 7750 239327212 10024343 92.405 3.870 43.183357 -85.256667 +48840 12501 6214 50126856 3298558 19.354 1.274 42.763138 -84.379361 +48841 826 334 61375151 686062 23.697 0.265 43.112258 -84.239468 +48842 20432 8695 46603969 607760 17.994 0.235 42.633522 -84.538076 +48843 42931 17195 233109562 7267068 90.004 2.806 42.575483 -83.923411 +48845 1003 409 63562445 643448 24.542 0.248 43.102441 -84.845897 +48846 20269 6661 280776264 1997171 108.408 0.771 42.986125 -85.057887 +48847 6041 2637 317342975 598911 122.527 0.231 43.273232 -84.575579 +48848 7789 3076 170734099 12814941 65.921 4.948 42.887696 -84.353703 +48849 5717 2543 214709317 2731379 82.900 1.055 42.806313 -85.124536 +48850 4474 2203 209162949 3335345 80.758 1.288 43.435270 -85.245835 +48851 2365 948 80779977 4348521 31.189 1.679 42.951055 -84.936400 +48852 150 71 1089127 0 0.421 0.000 43.351697 -85.046033 +48853 671 273 2417652 50274 0.933 0.019 43.099917 -84.685303 +48854 18598 7640 288925505 757869 111.555 0.293 42.581698 -84.451612 +48855 14752 5681 235539734 4027545 90.942 1.555 42.681278 -83.897189 +48856 966 392 71236410 16236 27.505 0.006 43.197210 -84.733509 +48857 2453 981 59375329 1542394 22.925 0.596 42.840946 -84.155615 +48858 50025 19032 447759426 2815508 172.881 1.087 43.616033 -84.795459 +48860 1334 586 76654058 359582 29.596 0.139 43.050812 -84.908954 +48861 1522 610 60731344 195280 23.449 0.075 42.732509 -84.925032 +48864 20148 8777 55845137 460332 21.562 0.178 42.704170 -84.392139 +48865 1903 886 57895916 1262703 22.354 0.488 43.086684 -85.103981 +48866 4851 1912 126038252 621632 48.664 0.240 42.997581 -84.376130 +48867 28264 12416 356495369 5703187 137.644 2.202 43.002718 -84.188977 +48870 148 52 153209 0 0.059 0.000 43.110408 -84.984752 +48871 1952 838 78426581 1959750 30.281 0.757 43.156653 -84.673805 +48872 7840 3070 145837140 4248526 56.308 1.640 42.798650 -84.223099 +48873 1615 610 86719295 515815 33.483 0.199 42.996861 -84.844139 +48874 180 65 1491556 0 0.576 0.000 43.186449 -84.594937 +48875 10186 4165 223263416 3640467 86.202 1.406 42.860813 -84.941448 +48876 4014 1674 35842382 498233 13.839 0.192 42.644253 -84.731344 +48877 2392 1029 87266812 1059665 33.694 0.409 43.403734 -84.840802 +48878 1677 698 83151927 126025 32.105 0.049 43.706095 -84.779858 +48879 18075 7299 489675577 2065897 189.065 0.798 43.003017 -84.578668 +48880 10669 2948 194344658 1448246 75.037 0.559 43.458864 -84.578359 +48881 5501 2321 144350256 1743006 55.734 0.673 42.933122 -85.201584 +48883 7122 2996 304723247 2476761 117.654 0.956 43.543727 -84.673886 +48884 4427 1938 157603292 2391926 60.851 0.924 43.209843 -85.049208 +48885 927 383 43996767 757477 16.987 0.292 43.242912 -85.147939 +48886 2116 1259 77172486 2983447 29.796 1.152 43.415719 -85.159692 +48888 6366 3132 229263854 4646211 88.519 1.794 43.314815 -85.106068 +48889 1322 581 76615155 700532 29.581 0.270 43.284450 -84.806493 +48890 2152 867 80557027 588072 31.103 0.227 42.766938 -84.966272 +48891 2985 1355 110811584 1240075 42.785 0.479 43.395354 -84.911507 +48892 4382 1755 140616855 346606 54.292 0.134 42.632741 -84.166861 +48893 5212 2671 132911814 5788192 51.318 2.235 43.685543 -84.975050 +48894 2059 724 74559663 96692 28.788 0.037 42.921483 -84.785801 +48895 11189 4659 215086719 1157918 83.045 0.447 42.688915 -84.279784 +48896 154 70 705778 0 0.273 0.000 43.521275 -84.901027 +48897 1525 627 84051294 439356 32.452 0.170 42.703898 -85.130349 +48906 26634 11851 85874213 1073643 33.156 0.415 42.791745 -84.585007 +48910 34560 17159 39381753 900400 15.205 0.348 42.699177 -84.519955 +48911 40111 17617 41156696 662616 15.891 0.256 42.673010 -84.571422 +48912 17035 8528 12433396 167963 4.801 0.065 42.738449 -84.523976 +48915 9218 4239 4699574 150811 1.815 0.058 42.737952 -84.570937 +48917 32062 15650 62979814 1359843 24.317 0.525 42.725239 -84.639542 +48921 0 0 922942 96582 0.356 0.037 42.721347 -84.560830 +48933 2530 1962 1953348 78151 0.754 0.030 42.731996 -84.554683 +49001 22095 10001 19959470 178961 7.706 0.069 42.264543 -85.561545 +49002 18786 8724 45743298 7198077 17.662 2.779 42.195311 -85.562988 +49004 15645 6782 54605197 364470 21.083 0.141 42.353583 -85.563941 +49006 26455 10941 16896869 4046 6.524 0.002 42.292497 -85.631460 +49007 10762 5227 9334595 48904 3.604 0.019 42.302591 -85.588193 +49008 16186 7529 16965681 515821 6.550 0.199 42.263841 -85.617047 +49009 42362 19007 266294289 3166276 102.817 1.223 42.303748 -85.697876 +49010 17374 7760 411274072 17601216 158.794 6.796 42.533307 -85.874766 +49011 2285 967 83714735 644201 32.322 0.249 42.106984 -85.216193 +49012 3339 1525 80342684 2950908 31.020 1.139 42.368170 -85.344220 +49013 5508 2503 152829718 1919192 59.008 0.741 42.305520 -86.108039 +49014 22127 9578 195794643 3364424 75.597 1.299 42.314556 -85.106213 +49015 26782 12315 60914723 1668739 23.519 0.644 42.270781 -85.228740 +49017 20785 9753 143658486 5077111 55.467 1.960 42.401366 -85.215928 +49021 6182 2624 237878360 3774634 91.845 1.457 42.460434 -85.054743 +49022 31814 14523 178140293 7310229 68.780 2.822 42.112127 -86.359048 +49024 28552 12305 44431950 464433 17.155 0.179 42.206513 -85.617997 +49026 2186 1250 76520030 2165745 29.545 0.836 42.376862 -85.963435 +49027 161 66 1105549 31409 0.427 0.012 42.350721 -86.067554 +49028 6387 2841 307617297 3533309 118.772 1.364 41.851471 -85.190234 +49029 1606 686 87187414 457832 33.663 0.177 42.142409 -85.100314 +49030 2523 1066 122697284 1782076 47.374 0.688 41.862172 -85.336414 +49031 7884 4257 296284972 12716986 114.396 4.910 41.904700 -85.974314 +49032 3105 1159 95310654 1552535 36.800 0.599 41.911488 -85.522870 +49033 1760 752 83599419 998721 32.278 0.386 42.227502 -85.088714 +49034 2389 967 97999627 738222 37.838 0.285 42.233525 -85.341209 +49036 24868 11666 407748472 20318984 157.433 7.845 41.909987 -85.013415 +49037 22576 10567 64216392 1251601 24.794 0.483 42.330025 -85.244499 +49038 9310 5116 97692930 6357072 37.719 2.454 42.202822 -86.320868 +49040 3388 1893 103904557 6150677 40.118 2.375 41.965721 -85.329273 +49042 4892 2077 140969139 3722387 54.428 1.437 41.860358 -85.672869 +49043 2462 1399 83867086 4947617 32.381 1.910 42.285992 -86.268503 +49045 5598 2730 224571193 6803253 86.707 2.627 42.102102 -85.999123 +49046 7281 3771 204619036 19195011 79.004 7.411 42.513086 -85.400628 +49047 14805 8231 309522149 10531011 119.507 4.066 42.003786 -86.120963 +49048 25432 11090 98181514 3491941 37.908 1.348 42.273752 -85.493000 +49050 1557 744 64443504 1906325 24.882 0.736 42.504302 -85.245704 +49051 2436 982 76218838 551885 29.428 0.213 42.184442 -85.242147 +49052 975 404 79871957 51048 30.839 0.020 42.105747 -85.321815 +49053 7028 2775 62342614 4059906 24.071 1.568 42.289240 -85.416755 +49055 6276 2965 152394039 5457219 58.840 2.107 42.368474 -85.857813 +49056 4016 2250 146624816 4956971 56.612 1.914 42.398286 -86.056215 +49057 6795 2723 133344148 2700418 51.484 1.043 42.181948 -86.162944 +49058 19127 8316 381660928 9775322 147.360 3.774 42.634990 -85.299191 +49060 1738 901 48961176 5762891 18.904 2.225 42.423536 -85.385970 +49061 1622 787 97032534 3500995 37.464 1.352 41.873542 -85.815243 +49064 3717 1714 117693968 3847011 45.442 1.485 42.220886 -86.049114 +49065 6662 3000 111943745 6197338 43.222 2.393 42.138273 -85.842108 +49066 722 276 52323846 750700 20.202 0.290 42.037739 -85.341500 +49067 4522 2131 214772949 6700456 82.924 2.587 42.024172 -85.798766 +49068 14646 6564 335282310 7056356 129.453 2.724 42.276445 -84.939742 +49070 2451 959 68377010 1540920 26.401 0.595 42.539330 -85.629390 +49071 9174 3500 73786576 1682409 28.489 0.650 42.226444 -85.775499 +49072 3164 1316 145402737 4044123 56.140 1.561 42.012051 -85.460189 +49073 4951 2132 180562969 2287538 69.716 0.883 42.574928 -85.126192 +49074 149 72 183834 0 0.071 0.000 42.317468 -85.538723 +49075 121 69 138654 0 0.054 0.000 41.917513 -85.448603 +49076 4589 1659 144551153 1065752 55.812 0.411 42.428635 -84.880330 +49078 8902 3752 124310372 1830239 47.997 0.707 42.472510 -85.732849 +49079 13606 6082 215070301 5814951 83.039 2.245 42.240155 -85.908075 +49080 15802 6588 201885240 5891262 77.948 2.275 42.456426 -85.588337 +49082 6579 3076 222616577 4605825 85.953 1.778 41.941034 -84.876582 +49083 6961 3105 87339702 5329236 33.722 2.058 42.378110 -85.461128 +49084 36 17 48874 0 0.019 0.000 42.182551 -86.382059 +49085 23804 11268 60949593 6735132 23.533 2.600 42.054277 -86.462600 +49087 6126 2377 157124301 4416475 60.666 1.705 42.124219 -85.700691 +49088 3648 1469 83168246 2185316 32.111 0.844 42.179736 -85.422562 +49089 1875 889 100086166 1580629 38.643 0.610 42.005033 -85.235901 +49090 13810 8579 204121417 5909493 78.812 2.282 42.407427 -86.214544 +49091 19872 8794 225604514 13160478 87.106 5.081 41.820413 -85.454617 +49092 2187 956 144645595 1902505 55.848 0.735 42.098874 -84.978737 +49093 18380 8858 273776359 16801234 105.706 6.487 41.972875 -85.649941 +49094 4104 1902 147878444 4082175 57.096 1.576 42.050304 -85.113570 +49095 1960 1351 72034225 4068633 27.813 1.571 41.907328 -85.881051 +49096 3316 1356 171822893 1520037 66.341 0.587 42.645178 -85.021222 +49097 10326 4423 192730942 7708481 74.414 2.976 42.121971 -85.487442 +49098 5966 2978 84006413 3012341 32.435 1.163 42.163253 -86.247522 +49099 5629 2693 152926010 7127111 59.045 2.752 41.793262 -85.671752 +49101 3104 1350 56498217 166867 21.814 0.064 41.937200 -86.482677 +49102 1563 596 40069897 1677270 15.471 0.648 41.949226 -86.252076 +49103 11082 4607 115225844 5102697 44.489 1.970 41.946299 -86.376474 +49104 868 0 412375 0 0.159 0.000 41.963699 -86.358972 +49106 4636 2342 40687452 4197307 15.710 1.621 41.937963 -86.554852 +49107 10382 4879 169398477 3988332 65.405 1.540 41.844909 -86.417637 +49111 3346 1540 105807558 1551939 40.853 0.599 42.022699 -86.291132 +49112 10171 4508 111433865 6117095 43.025 2.362 41.796034 -86.030540 +49113 1904 916 91576412 370091 35.358 0.143 41.801056 -86.503854 +49115 294 531 3459965 2805222 1.336 1.083 41.877027 -86.634520 +49116 394 661 5460030 2490069 2.108 0.961 41.853312 -86.663428 +49117 3951 3736 49543336 5238637 19.129 2.023 41.781671 -86.726836 +49119 136 61 337870 1073 0.130 0.000 41.874173 -86.549249 +49120 37122 16436 304171025 6371388 117.441 2.460 41.832805 -86.230825 +49125 2046 1634 34953065 3063436 13.495 1.183 41.891897 -86.579415 +49126 1341 633 41460467 1299025 16.008 0.502 42.025215 -86.369374 +49127 10694 4902 41928933 6004714 16.189 2.318 42.011024 -86.515329 +49128 3715 1961 111081801 787079 42.889 0.304 41.820406 -86.600497 +49129 609 1190 12985725 1200745 5.014 0.464 41.815482 -86.691068 +49130 1659 890 31256937 1871060 12.068 0.722 41.774422 -85.860349 +49201 45190 17071 395315443 12853698 152.632 4.963 42.191346 -84.297205 +49202 20661 10272 36098220 119839 13.938 0.046 42.267179 -84.410850 +49203 38280 17213 68030376 2239103 26.267 0.865 42.221835 -84.396625 +49220 2290 1138 73363297 669300 28.326 0.258 41.998783 -84.338943 +49221 41310 16292 306715838 1699276 118.424 0.656 41.902354 -84.064698 +49224 14224 6021 255961362 5762047 98.827 2.225 42.279617 -84.746876 +49227 1284 551 66176623 320909 25.551 0.124 41.950018 -84.772966 +49228 5545 2363 205770950 719482 79.449 0.278 41.809023 -83.875598 +49229 3245 1293 142874716 91262 55.164 0.035 41.987013 -83.827239 +49230 10475 6151 169850984 16908224 65.580 6.528 42.091609 -84.217344 +49232 2801 1326 162576815 1809573 62.771 0.699 41.740366 -84.664597 +49233 2646 1313 55500599 2494099 21.429 0.963 42.061113 -84.362502 +49234 2579 1379 56755852 3410360 21.914 1.317 42.127037 -84.368713 +49235 2117 869 129324012 620115 49.932 0.239 41.863913 -84.200920 +49236 4838 2021 97228127 660075 37.540 0.255 42.075967 -83.941703 +49237 2980 1299 98738643 1806568 38.123 0.698 42.170452 -84.651490 +49238 1735 684 73227767 459588 28.273 0.177 41.902230 -83.785596 +49240 8703 3725 273767160 9664044 105.702 3.731 42.283303 -84.181375 +49241 2579 1075 88131916 1264369 34.028 0.488 42.107843 -84.603335 +49242 15248 6740 234666388 6819900 90.605 2.633 41.886298 -84.622698 +49245 4845 2016 250228206 2080167 96.614 0.803 42.139753 -84.813567 +49246 3255 1486 88518635 3572617 34.177 1.379 42.127790 -84.512436 +49247 5768 2710 221526468 3792412 85.532 1.464 41.837562 -84.338208 +49248 899 378 85157231 0 32.879 0.000 41.756424 -84.011181 +49249 3408 1868 82957771 3837138 32.030 1.482 42.029334 -84.454755 +49250 6182 2634 202347667 1417744 78.127 0.547 42.021731 -84.626242 +49251 6229 2529 151121393 677063 58.348 0.261 42.466346 -84.407978 +49252 2605 1145 101007207 605470 38.999 0.234 42.035237 -84.765398 +49253 3166 2359 63552169 7413920 24.538 2.863 41.967948 -84.272771 +49254 3321 1569 8400466 1634511 3.243 0.631 42.227976 -84.316434 +49255 1939 856 103560392 893794 39.985 0.345 41.771201 -84.844550 +49256 3888 1658 152520811 141261 58.889 0.055 41.746308 -84.215626 +49259 2523 1112 72484244 2514941 27.986 0.971 42.374592 -84.261604 +49261 290 125 1517832 3653 0.586 0.001 42.157638 -84.236000 +49262 1280 563 59381067 56534 22.927 0.022 41.963612 -84.468290 +49263 85 42 259466 1153 0.100 0.000 42.158902 -84.184302 +49264 1992 785 69470201 630562 26.823 0.243 42.446232 -84.555061 +49265 4958 2352 77888928 5638139 30.073 2.177 42.006696 -84.175236 +49266 2942 1477 114489939 1563283 44.205 0.604 41.839750 -84.546789 +49267 4072 1653 103462084 1068806 39.947 0.413 41.757323 -83.719429 +49268 1059 453 55890830 303047 21.580 0.117 41.868705 -83.929015 +49269 5998 2483 155475744 940743 60.030 0.363 42.287158 -84.593587 +49270 5874 2266 116065594 1065897 44.813 0.412 41.873675 -83.680783 +49271 2256 943 142759974 463862 55.120 0.179 41.831987 -84.453091 +49272 2417 1117 29371020 2125868 11.340 0.821 42.393651 -84.348183 +49274 3670 1860 154833755 1976724 59.782 0.763 41.846682 -84.759784 +49276 1003 384 58535412 43693 22.601 0.017 41.794655 -83.776793 +49277 3668 1439 91995133 1414494 35.520 0.546 42.388652 -84.469336 +49279 797 321 68234536 0 26.346 0.000 41.780799 -84.103949 +49282 372 285 7585844 1657628 2.929 0.640 42.034442 -84.402617 +49283 4362 1372 35182417 900560 13.584 0.348 42.207352 -84.550568 +49284 3028 1346 137913424 1747547 53.249 0.675 42.391636 -84.688297 +49285 5720 2259 192446462 2173757 74.304 0.839 42.476547 -84.213034 +49286 14797 6381 154500365 1405598 59.653 0.543 42.014858 -83.936219 +49287 2099 933 72874094 1488491 28.137 0.575 42.023030 -84.073485 +49288 1384 590 97737070 136870 37.736 0.053 41.733942 -84.429587 +49289 167 74 1861768 0 0.719 0.000 41.768075 -84.107807 +49301 18701 6503 146837663 3535156 56.694 1.365 42.973443 -85.476998 +49302 7585 2690 126287625 2339178 48.760 0.903 42.821523 -85.402267 +49303 1129 397 38916049 137877 15.026 0.053 43.271549 -85.860632 +49304 4328 6321 334627941 9684109 129.201 3.739 43.907821 -85.872637 +49305 2264 1618 119004650 3774015 45.948 1.457 43.752024 -85.151106 +49306 9244 3494 51312869 1281357 19.812 0.495 43.075016 -85.565281 +49307 20112 7781 350732990 9851359 135.419 3.804 43.699062 -85.489194 +49309 1843 2272 295322017 29166198 114.024 11.261 43.759824 -85.876884 +49310 3016 1290 231090953 588297 89.225 0.227 43.513858 -85.047599 +49312 274 301 70698959 5265997 27.297 2.033 43.685353 -85.806059 +49315 19915 7573 138534638 182458 53.489 0.070 42.803705 -85.742196 +49316 20074 7544 147404788 2802700 56.913 1.082 42.793767 -85.550467 +49318 1398 545 45838062 436700 17.698 0.169 43.227276 -85.820431 +49319 16181 6101 225140999 5497034 86.927 2.122 43.230088 -85.527902 +49320 21 30 927968 0 0.358 0.000 43.753585 -85.275467 +49321 16241 6949 66874273 1428682 25.820 0.552 43.073223 -85.680339 +49322 1212 590 66315600 2175343 25.605 0.840 43.355785 -85.351226 +49323 9410 3253 127153786 642335 49.094 0.248 42.728548 -85.790642 +49325 1909 702 72235829 525608 27.890 0.203 42.760797 -85.301726 +49326 3752 1764 60678640 5712748 23.428 2.206 43.246150 -85.316357 +49327 8406 3489 239299437 5849012 92.394 2.258 43.323527 -85.845311 +49328 3885 1681 146506115 1732737 56.566 0.669 42.633680 -85.758168 +49329 8641 3573 211493017 2806799 81.658 1.084 43.406472 -85.484884 +49330 5440 1953 114831341 1097783 44.337 0.424 43.241536 -85.736679 +49331 16627 6367 234176874 7333350 90.416 2.831 42.949394 -85.351518 +49332 3019 2338 117067924 9282094 45.200 3.584 43.623061 -85.249119 +49333 11191 4749 205956643 10028329 79.520 3.872 42.699457 -85.461796 +49335 314 115 2456218 0 0.948 0.000 42.738506 -85.668451 +49336 4352 1763 202862947 2568446 78.326 0.992 43.508469 -85.435685 +49337 12088 6586 290559831 22049471 112.186 8.513 43.437082 -85.712297 +49338 1842 907 134433108 2580139 51.905 0.996 43.771655 -85.602264 +49339 2283 1201 75862638 3803394 29.291 1.468 43.331359 -85.496456 +49340 2912 1363 223978029 2010296 86.478 0.776 43.617930 -85.110768 +49341 33737 12486 214112926 10776018 82.669 4.161 43.124135 -85.490928 +49342 1649 1081 116377256 4357633 44.934 1.682 43.690435 -85.315591 +49343 5489 2371 136612866 6539907 52.747 2.525 43.297213 -85.535097 +49344 3410 1898 83619399 5374155 32.286 2.075 42.589905 -85.591301 +49345 13040 5173 136528999 2844725 52.714 1.098 43.155340 -85.703948 +49346 5446 3376 166741261 7057007 64.379 2.725 43.594885 -85.421128 +49347 1257 701 48112827 2048022 18.576 0.791 43.316687 -85.347044 +49348 12153 5092 172202554 4916723 66.488 1.898 42.685083 -85.610188 +49349 8087 4485 482902994 27876286 186.450 10.763 43.575359 -85.748757 +49401 20735 5832 66501346 1309752 25.676 0.506 42.975656 -85.939287 +49402 1380 1438 319707780 2002315 123.440 0.773 43.933202 -86.029183 +49403 2473 953 122179926 848955 47.174 0.328 43.140975 -85.857766 +49404 8269 3214 160977809 1989634 62.154 0.768 43.063438 -85.952185 +49405 1559 975 178656830 1402556 68.980 0.542 43.914692 -86.191237 +49406 884 882 4843609 562617 1.870 0.217 42.642345 -86.202866 +49408 9091 4687 272938263 5412845 105.382 2.090 42.571678 -86.116236 +49410 2005 1549 111785074 4985203 43.160 1.925 44.032042 -86.126150 +49411 1538 1052 223973224 6239613 86.477 2.409 44.100414 -86.251761 +49412 11065 4861 274998372 12130882 106.177 4.684 43.468461 -85.948247 +49415 6480 2654 76222591 779287 29.430 0.301 43.150964 -86.114307 +49417 29183 13189 120288350 21433545 46.444 8.276 43.020291 -86.156274 +49418 27417 10815 49014819 1578586 18.925 0.609 42.877992 -85.767881 +49419 7791 2787 186733033 1999116 72.098 0.772 42.679739 -85.980751 +49420 6420 2881 290010231 18329382 111.974 7.077 43.719985 -86.282313 +49421 5991 3080 320938956 30113938 123.915 11.627 43.599328 -86.069388 +49423 44977 18415 201007334 4246835 77.609 1.640 42.743806 -86.083703 +49424 44760 17893 148684301 18255853 57.407 7.049 42.843818 -86.134355 +49425 3660 1524 160866057 7382971 62.111 2.851 43.428815 -86.089288 +49426 33244 11546 161840163 405593 62.487 0.157 42.861132 -85.888482 +49428 25420 9709 42833263 1780833 16.538 0.688 42.920205 -85.838844 +49431 16875 9608 269360188 50700496 104.001 19.576 43.985802 -86.406481 +49434 20 71 144360 818312 0.056 0.316 42.769752 -86.218505 +49435 3549 1277 56758443 464657 21.915 0.179 43.024459 -85.834980 +49436 1622 2315 80980624 18805957 31.267 7.261 43.678308 -86.466113 +49437 6902 3556 167082441 38813377 64.511 14.986 43.461350 -86.386504 +49440 953 645 1559681 675804 0.602 0.261 43.237691 -86.254186 +49441 36308 17369 56329899 37259692 21.749 14.386 43.183871 -86.285380 +49442 41214 16893 108935840 10574965 42.060 4.083 43.241841 -86.135719 +49444 29456 11148 61522909 1446733 23.754 0.559 43.178683 -86.199103 +49445 20784 8848 157932673 27586430 60.978 10.651 43.292537 -86.293883 +49446 2321 1119 82404857 2892783 31.817 1.117 43.551434 -86.378723 +49448 3410 1392 86064212 1635393 33.230 0.631 43.093947 -86.071300 +49449 2675 2697 103782459 24652963 40.071 9.519 43.793631 -86.388578 +49450 3302 1471 76333079 1196985 29.472 0.462 42.484653 -86.082454 +49451 6012 2285 214694543 3290349 82.894 1.270 43.213069 -85.967762 +49452 1952 880 112106253 7908262 43.284 3.053 43.509479 -86.258425 +49453 2626 1875 28180636 2557773 10.881 0.988 42.659522 -86.172666 +49454 4574 2094 189268330 1044052 73.077 0.403 43.946332 -86.285053 +49455 5034 2709 209969326 21171933 81.070 8.175 43.610287 -86.378251 +49456 18581 8956 64446921 22237976 24.883 8.586 43.089103 -86.206870 +49457 10565 4373 198471316 11918947 76.630 4.602 43.352735 -86.146187 +49458 119 94 18569992 147959 7.170 0.057 43.924347 -86.098545 +49459 1351 933 180081047 19822190 69.530 7.653 43.741385 -86.112182 +49460 8126 3273 141481146 18121264 54.626 6.997 42.933162 -86.145345 +49461 8929 4093 110572368 14294741 42.692 5.519 43.376222 -86.319255 +49464 27481 9896 194992027 339428 75.287 0.131 42.844801 -85.984794 +49503 35940 16632 18613128 474102 7.187 0.183 42.962120 -85.659394 +49504 39994 17634 28560713 523719 11.027 0.202 42.981579 -85.710700 +49505 31216 13970 23052277 578305 8.901 0.223 42.996477 -85.637735 +49506 31354 12669 18864713 1410848 7.284 0.545 42.945748 -85.613839 +49507 35459 13406 14290381 0 5.518 0.000 42.930660 -85.655173 +49508 39148 16128 31197223 58401 12.045 0.023 42.873280 -85.621084 +49509 26720 10422 18759530 52378 7.243 0.020 42.897707 -85.692804 +49512 15448 7881 58577763 561908 22.617 0.217 42.882745 -85.528081 +49519 27424 11667 20807622 412922 8.034 0.159 42.895737 -85.718265 +49525 27383 11192 60945418 2608808 23.531 1.007 43.018307 -85.592909 +49534 21570 9194 90698721 2724015 35.019 1.052 42.964438 -85.787181 +49544 8944 3994 53868191 445996 20.799 0.172 43.038932 -85.746570 +49546 31880 13030 46785273 1605506 18.064 0.620 42.933092 -85.535988 +49548 30524 12650 27410151 34597 10.583 0.013 42.870454 -85.662605 +49601 21236 10544 534384510 18348381 206.327 7.084 44.245955 -85.510205 +49611 236 126 4069598 0 1.571 0.000 44.973683 -84.974489 +49612 1121 947 61121334 16729325 23.599 6.459 44.864922 -85.239456 +49613 680 662 60800455 7725801 23.475 2.983 44.506120 -86.206892 +49614 2790 1888 218681577 8222331 84.433 3.175 44.435034 -86.114343 +49615 4131 3650 180522075 26979993 69.700 10.417 44.966776 -85.209069 +49616 1974 1084 95692037 880561 36.947 0.340 44.577306 -86.084312 +49617 3363 2483 116799742 17934938 45.097 6.925 44.643232 -86.031754 +49618 761 383 80451486 19550 31.062 0.008 44.293486 -85.607626 +49619 1110 774 162464535 2588700 62.728 1.000 44.293058 -85.991212 +49620 2445 1133 135341524 845136 52.256 0.326 44.523532 -85.691242 +49621 3096 1903 152102921 19350338 58.727 7.471 44.868695 -85.770301 +49622 2494 1925 116038375 11671120 44.803 4.506 45.077410 -85.260935 +49623 1164 912 148431255 336837 57.310 0.130 43.908924 -85.692083 +49625 1379 839 217782098 504966 84.086 0.195 44.433447 -85.883030 +49626 421 220 3600523 842559 1.390 0.325 44.239903 -86.292027 +49627 206 238 4323065 6081799 1.669 2.348 45.084360 -85.344921 +49628 372 228 1917439 4182952 0.740 1.615 44.615416 -86.244403 +49629 2223 1673 10404865 13682566 4.017 5.283 44.919539 -85.389921 +49630 1429 1207 117068115 18412342 45.200 7.109 44.818252 -86.009304 +49631 6357 4196 384356216 11446977 148.401 4.420 43.912709 -85.262924 +49632 1126 849 219338393 1315142 84.687 0.508 44.239007 -84.967889 +49633 3703 2783 425658207 7138280 164.348 2.756 44.558702 -85.206249 +49634 116 51 387002 0 0.149 0.000 44.214834 -86.290297 +49635 3350 3269 104321519 59689338 40.279 23.046 44.617255 -86.192428 +49636 560 1239 30983640 27945603 11.963 10.790 44.855494 -85.963203 +49637 3405 1523 64754181 8576107 25.002 3.311 44.621616 -85.709787 +49638 824 665 178236626 1717465 68.818 0.663 44.286973 -85.755675 +49639 2557 1411 155588650 2161864 60.073 0.835 43.846997 -85.408405 +49640 1618 1346 154467034 18691139 59.640 7.217 44.715246 -86.048690 +49642 842 1431 46955974 764895 18.130 0.295 43.869586 -85.757340 +49643 6253 3142 145722681 11189254 56.264 4.320 44.639739 -85.828941 +49644 2033 3445 298042440 4822611 115.075 1.862 44.106834 -85.921281 +49645 1632 1041 104009889 1192823 40.158 0.461 44.362133 -86.029373 +49646 8229 5843 574646855 14460398 221.872 5.583 44.724482 -85.055762 +49648 2098 1878 68910857 58115631 26.607 22.439 44.996418 -85.336330 +49649 7789 2449 269449062 551421 104.035 0.213 44.563373 -85.525432 +49650 3144 1528 63842800 5067745 24.650 1.957 44.739836 -85.887151 +49651 7665 5225 579272407 15343650 223.658 5.924 44.390519 -85.104789 +49653 1922 1354 72028980 9761969 27.811 3.769 44.973631 -85.723949 +49654 690 821 90065556 7151026 34.775 2.761 45.146182 -86.051574 +49655 3173 2206 232785908 4120113 89.879 1.591 44.024644 -85.436941 +49656 1534 1650 327598520 1290902 126.487 0.498 44.067819 -85.692017 +49657 3683 1620 249732206 1525181 96.422 0.589 44.212501 -85.169164 +49659 6801 4505 427122779 3947664 164.913 1.524 44.895608 -85.019333 +49660 14066 7561 483625840 25310140 186.729 9.772 44.225140 -86.210203 +49663 5874 2847 440495794 2174490 170.076 0.840 44.435322 -85.390105 +49664 2067 1377 149612450 5213201 57.766 2.013 44.887833 -85.898651 +49665 4413 2389 406873963 2645525 157.095 1.021 44.095202 -85.118154 +49666 106 52 6579442 0 2.540 0.000 44.622029 -85.554055 +49667 549 476 206211677 3019719 79.619 1.166 44.363328 -84.914644 +49668 3625 2120 275377303 8068644 106.324 3.115 44.405416 -85.702617 +49670 1891 1845 119590442 56032736 46.174 21.634 45.145456 -85.647026 +49674 110 84 4161313 1848983 1.607 0.714 45.048608 -85.591522 +49675 1030 1001 31268467 12997167 12.073 5.018 44.383620 -86.224896 +49676 3407 2521 111555866 27404262 43.072 10.581 44.832183 -85.289181 +49677 6631 3428 341291274 2937219 131.773 1.134 43.894776 -85.552744 +49679 1428 1066 142604338 2356306 55.060 0.910 43.875013 -85.145788 +49680 1916 1000 134971402 879101 52.113 0.339 44.646003 -85.262702 +49682 4253 2223 95202865 72799869 36.758 28.108 44.978664 -85.627013 +49683 1939 1632 222967745 1016798 86.088 0.393 44.540521 -85.926894 +49684 37963 18012 260881867 65374860 100.727 25.241 44.762335 -85.703568 +49686 32056 16100 311413405 75043927 120.237 28.975 44.713682 -85.557845 +49688 2703 1496 249903035 1279979 96.488 0.494 44.117006 -85.450376 +49689 1560 1721 203720177 4733855 78.657 1.828 44.213228 -85.902445 +49690 6182 3562 198923001 35395751 76.805 13.666 44.788761 -85.399401 +49701 1036 1041 32541772 16171385 12.564 6.244 45.772638 -84.738790 +49705 937 496 196510081 1092341 75.873 0.422 45.355095 -84.460991 +49706 4585 2631 161856197 5525981 62.493 2.134 45.438354 -84.779353 +49707 22701 12030 559605130 108222609 216.065 41.785 45.094366 -83.476203 +49709 3618 4095 590031423 12270108 227.812 4.738 45.018684 -84.144487 +49710 409 502 94277549 41663317 36.401 16.086 46.274892 -84.171031 +49712 7890 4798 185672736 27019940 71.689 10.432 45.209259 -85.009296 +49713 1864 1350 256303344 2430017 98.959 0.938 45.210934 -84.842294 +49715 3130 2011 476014049 77905872 183.790 30.080 46.397420 -84.708184 +49716 806 651 62633151 213416 24.183 0.082 45.517286 -84.748136 +49717 72 129 2370777 0 0.915 0.000 45.434968 -84.691217 +49718 701 788 128852691 51096196 49.750 19.728 45.734622 -84.861522 +49719 1362 1737 151556351 58665891 58.516 22.651 46.005621 -84.324829 +49720 9172 6113 247688354 78536176 95.633 30.323 45.280496 -85.245092 +49721 14436 8839 669816202 95167440 258.617 36.744 45.582257 -84.460476 +49722 220 183 1716875 552668 0.663 0.213 45.427456 -84.862324 +49724 1146 512 144013366 1201590 55.604 0.464 46.327640 -84.390112 +49725 766 864 124731458 46029993 48.159 17.772 45.978483 -84.020784 +49726 1058 1662 333385399 284031292 128.721 109.665 46.002363 -83.615489 +49727 7145 4244 334371145 27002851 129.101 10.426 45.125273 -85.105817 +49728 334 686 463888684 69150692 179.108 26.699 46.411594 -85.028468 +49729 1446 1002 97813213 13646183 37.766 5.269 45.166897 -85.292072 +49730 2187 1449 241962859 1005941 93.422 0.388 45.044034 -84.867529 +49733 1965 1743 327389513 3363287 126.406 1.299 44.806466 -84.696639 +49735 19515 11071 648950376 20612397 250.561 7.958 44.997939 -84.670317 +49736 578 561 209709276 113904769 80.969 43.979 46.067629 -84.075903 +49738 9924 7713 760457421 14940841 293.614 5.769 44.698328 -84.609421 +49740 7042 6178 320240087 43828562 123.645 16.922 45.524807 -85.008345 +49743 769 783 233255423 4573092 90.060 1.766 45.266958 -83.893364 +49744 823 458 91840768 111208 35.460 0.043 44.993123 -83.657097 +49745 1089 981 203861100 26750246 78.711 10.328 46.039790 -84.522382 +49746 3685 2853 548435123 33038560 211.752 12.756 45.064388 -83.954868 +49747 1921 1681 250455161 551616 96.701 0.213 44.849651 -83.653140 +49748 170 314 271760891 2686519 104.927 1.037 46.374911 -85.212879 +49749 4283 3615 188225040 36490645 72.674 14.089 45.425744 -84.567774 +49751 2087 1997 392765018 5645513 151.647 2.180 44.982838 -84.430167 +49752 515 257 66382317 770607 25.630 0.298 46.254145 -84.434511 +49753 2057 1536 442574949 12523805 170.879 4.835 45.019150 -83.777981 +49755 1892 1345 258501357 15219443 99.808 5.876 45.634591 -84.801026 +49756 3857 4848 423565279 13560053 163.539 5.236 44.824731 -84.279735 +49757 492 1002 11271216 37531699 4.352 14.491 45.856211 -84.621440 +49759 1682 1773 390682198 18415970 150.843 7.110 45.417476 -84.096086 +49760 713 749 371973445 22826571 143.620 8.813 46.040570 -84.902510 +49762 639 891 566576739 230991095 218.757 89.186 46.104713 -85.337504 +49764 139 77 154134 0 0.060 0.000 45.424174 -84.827403 +49765 4154 2980 650567686 28580787 251.186 11.035 45.328392 -84.242520 +49766 2417 1324 114729196 21654791 44.297 8.361 44.908297 -83.432043 +49768 476 1012 426629704 80779124 164.723 31.189 46.654828 -85.117026 +49769 1644 923 138196709 7369714 53.358 2.845 45.570770 -84.861835 +49770 16862 9623 284073133 37429405 109.681 14.452 45.331217 -84.897137 +49774 1851 1190 417388994 75864372 161.155 29.291 46.162451 -84.315258 +49775 95 542 90946628 34427755 35.115 13.293 45.775516 -84.482428 +49776 1888 1142 320238036 4084451 123.645 1.577 45.232202 -83.680373 +49777 1640 1857 164912894 83543497 63.673 32.256 45.305530 -83.507135 +49779 4639 2752 312540681 59262359 120.673 22.881 45.407692 -83.863353 +49780 1946 1264 775496778 8087151 299.421 3.122 46.213013 -84.728653 +49781 4020 2270 203742753 57256711 78.666 22.107 45.884117 -84.791142 +49782 657 1016 188272628 5116294 72.692 1.975 45.674252 -85.542708 +49783 19668 9445 391215697 104556236 151.049 40.369 46.416901 -84.289054 +49788 6609 1004 20071746 91948 7.750 0.036 46.265348 -84.465049 +49791 329 305 2783613 0 1.075 0.000 45.486755 -84.595765 +49793 322 400 159958212 4351655 61.760 1.680 46.202918 -85.063688 +49795 2097 1328 338278987 2169862 130.610 0.838 45.160830 -84.578935 +49796 320 343 5246162 5188718 2.026 2.003 45.262557 -84.959158 +49799 2327 1620 286265484 3516383 110.528 1.358 45.262297 -84.580384 +49801 11424 5798 390422217 13187782 150.743 5.092 45.960732 -87.978445 +49802 6230 2930 20523117 1431807 7.924 0.553 45.801060 -88.077894 +49805 336 234 77949599 6037305 30.097 2.331 47.367298 -88.351333 +49806 627 686 118452096 40063686 45.735 15.469 46.452414 -86.901161 +49807 3390 1955 543621989 31538733 209.894 12.177 45.771531 -87.345866 +49808 352 538 418589644 144667863 161.618 55.857 46.824795 -87.846605 +49812 925 607 184753276 69400 71.334 0.027 45.591632 -87.503120 +49814 1429 991 600922059 22683105 232.017 8.758 46.565613 -87.905613 +49815 488 481 304059240 5239514 117.398 2.023 46.185396 -87.964240 +49816 724 424 143802898 5194678 55.523 2.006 46.285383 -86.895309 +49817 615 335 237722150 1225421 91.785 0.473 45.961990 -86.458300 +49818 988 819 465782131 3149211 179.839 1.216 45.965215 -87.349341 +49819 36 53 33681746 204560 13.005 0.079 46.108909 -87.456296 +49820 382 360 52894922 781690 20.423 0.302 46.190094 -85.654178 +49821 1354 1021 373703080 1864648 144.288 0.720 45.529658 -87.631007 +49822 220 290 157196735 20756280 60.694 8.014 46.433521 -87.024586 +49825 299 169 58966148 224472 22.767 0.087 46.346884 -86.994898 +49826 137 91 36993611 219844 14.283 0.085 46.323306 -87.052838 +49827 897 786 266273645 5053417 102.809 1.951 46.177009 -85.560604 +49829 17347 8279 168706902 14770443 65.138 5.703 45.763637 -87.138174 +49831 780 654 302179010 4637705 116.672 1.791 46.012823 -87.866119 +49833 266 201 20965929 1691012 8.095 0.653 46.293045 -87.327640 +49834 284 198 93400832 1710375 36.062 0.660 45.945664 -87.768387 +49835 802 740 244514489 26628525 94.408 10.281 45.735775 -86.562598 +49836 938 1028 261738948 54766458 101.058 21.145 46.201767 -85.903573 +49837 9795 4599 178324579 21290734 68.852 8.220 45.867413 -87.077378 +49838 504 607 361194846 13940582 139.458 5.382 46.032474 -85.736564 +49839 479 654 359697581 59239715 138.880 22.873 46.618009 -86.108426 +49840 771 765 467664163 44442592 180.566 17.159 46.095857 -86.013107 +49841 7016 4365 496890591 11318795 191.851 4.370 46.275163 -87.465727 +49847 998 580 153026742 780300 59.084 0.301 45.704676 -87.636201 +49848 128 91 11088489 0 4.281 0.000 45.378247 -87.636417 +49849 12242 6212 736649049 34165591 284.422 13.191 46.432711 -87.756405 +49852 120 64 614207 77421 0.237 0.030 45.786249 -87.816777 +49853 1278 1365 439204418 28051973 169.578 10.831 46.368293 -85.750902 +49854 6469 4459 1341622740 93389372 518.003 36.058 46.061609 -86.304483 +49855 33561 14728 519587375 104736828 200.614 40.439 46.578823 -87.455319 +49858 12088 6502 222264516 20427563 85.817 7.887 45.218742 -87.576470 +49861 616 758 508479114 36553620 196.325 14.113 46.481564 -88.243403 +49862 5025 2486 425038050 115505064 164.108 44.597 46.395079 -86.701876 +49863 130 66 1410791 0 0.545 0.000 45.613385 -87.551575 +49864 54 55 12282466 0 4.742 0.000 45.871476 -86.672584 +49866 8034 3786 376960622 12452535 145.545 4.808 46.521482 -87.580782 +49868 5409 3074 1825957779 95475302 705.006 36.863 46.510350 -85.518321 +49870 3329 1665 142384720 1316762 54.975 0.508 45.867228 -87.878972 +49871 510 231 33740186 2882274 13.027 1.113 46.425061 -87.552178 +49872 206 124 49103087 0 18.959 0.000 46.021064 -87.084351 +49873 120 264 435359763 738053 168.093 0.285 45.890463 -87.578753 +49874 1126 514 102483700 334084 39.569 0.129 45.714924 -87.473942 +49876 1240 529 8958243 607091 3.459 0.234 45.802690 -87.982830 +49877 67 156 315416751 1117275 121.783 0.431 46.148036 -87.705499 +49878 3583 3020 1209809415 91655550 467.110 35.388 45.945698 -86.860412 +49879 1038 1166 365709337 20188166 141.201 7.795 46.358718 -88.038808 +49880 1142 996 560327366 2205213 216.344 0.851 46.110988 -87.222361 +49881 345 289 120347840 882120 46.467 0.341 46.073220 -88.047262 +49883 151 303 696716404 24239997 269.004 9.359 46.431726 -86.000888 +49884 552 404 729104326 28682839 281.509 11.075 46.405214 -86.323770 +49885 1897 1077 381392600 2308313 147.257 0.891 46.338050 -87.198320 +49886 435 240 40256200 0 15.543 0.000 45.739188 -87.527012 +49887 2474 1942 555976315 35509405 214.664 13.710 45.429340 -87.550635 +49891 816 590 220698498 994788 85.212 0.384 46.241277 -87.022529 +49892 1948 1337 421838397 8959020 162.873 3.459 45.818087 -87.785711 +49893 1784 1059 194404996 1869824 75.060 0.722 45.297038 -87.605155 +49894 680 321 2184551 79271 0.843 0.031 45.786047 -87.075139 +49895 765 1147 566337350 20244116 218.664 7.816 46.165312 -86.665885 +49896 1749 752 152134363 226557 58.739 0.087 45.677575 -87.389319 +49901 346 247 6286503 0 2.427 0.000 47.307745 -88.395376 +49902 145 121 816798 0 0.315 0.000 46.043004 -88.379881 +49903 133 248 480599098 8533467 185.560 3.295 46.332624 -88.445286 +49905 2005 841 153695144 31184223 59.342 12.040 47.121853 -88.722062 +49908 3292 1223 268589133 28058205 103.703 10.833 46.768216 -88.557216 +49910 385 466 314096852 25217756 121.273 9.737 46.613001 -89.609523 +49911 2744 1913 107243307 72972 41.407 0.028 46.490623 -90.050345 +49912 1081 912 554920608 4209230 214.256 1.625 46.496716 -89.194224 +49913 7248 3996 181467089 4257891 70.065 1.644 47.243192 -88.458488 +49915 630 363 2326962 0 0.898 0.000 46.065123 -88.622018 +49916 2765 1512 276552578 16804312 106.778 6.488 46.984100 -88.586331 +49917 205 119 4444589 0 1.716 0.000 47.281359 -88.359132 +49918 120 188 122104050 62755510 47.145 24.230 47.434599 -87.867327 +49919 242 208 307745545 9135257 118.821 3.527 46.486141 -88.456848 +49920 4273 3385 1095137278 63912821 422.835 24.677 46.142545 -88.295423 +49921 360 164 1050306 5298 0.406 0.002 47.092564 -88.582649 +49922 1043 524 15203238 6369830 5.870 2.459 47.100599 -88.483267 +49925 494 444 328159790 233527 126.703 0.090 46.544419 -89.374684 +49927 483 258 45206896 809145 17.454 0.312 46.041681 -88.566239 +49929 216 131 45763815 0 17.670 0.000 46.781097 -89.149533 +49930 6987 3241 126694054 12092571 48.917 4.669 47.164830 -88.539582 +49931 9630 3457 73593966 7116334 28.415 2.748 47.084375 -88.572787 +49934 900 437 5722885 1440964 2.210 0.556 47.174273 -88.440450 +49935 6096 4641 1229775122 33493117 474.819 12.932 46.175626 -88.752142 +49938 7945 4812 616361708 54822179 237.979 21.167 46.584324 -90.131856 +49942 156 86 2640830 19038 1.020 0.007 47.274975 -88.408098 +49945 2621 2193 429643879 43752002 165.886 16.893 47.183187 -88.317268 +49946 4040 2375 703612959 67483723 271.666 26.056 46.720894 -88.321592 +49947 1818 852 827187065 38316629 319.379 14.794 46.385417 -89.616356 +49948 590 501 344218008 1267381 132.903 0.489 46.711175 -89.020015 +49950 1121 1355 462748356 29599657 178.668 11.428 47.386209 -88.133198 +49952 143 176 170361027 3525197 65.777 1.361 46.702250 -88.785769 +49953 2879 2081 1087274874 3162877 419.799 1.221 46.803804 -89.371849 +49955 371 176 29347550 236332 11.331 0.091 47.006492 -88.694561 +49958 1270 885 313886359 13210941 121.192 5.101 46.828387 -88.668431 +49959 344 229 1827907 0 0.706 0.000 46.470636 -89.998383 +49960 185 159 109230336 1743697 42.174 0.673 46.711853 -89.258371 +49961 107 189 155371154 1761644 59.989 0.680 46.522677 -88.732630 +49962 260 499 258690008 16709513 99.881 6.452 46.839281 -88.131113 +49963 1024 528 31095804 0 12.006 0.000 47.041467 -88.689132 +49965 440 660 536196305 6165053 207.027 2.380 46.954515 -88.857655 +49967 492 713 879310065 18456080 339.504 7.126 46.506028 -88.966045 +49968 2247 1474 648089341 5738956 250.229 2.216 46.490267 -89.887207 +49969 1401 1624 675524151 61036532 260.821 23.566 46.251655 -89.210723 +49970 243 246 266445166 2848899 102.875 1.100 46.547419 -88.600365 +49971 483 361 243665166 708327 94.080 0.273 46.709240 -89.705285 +50001 680 289 62132136 664520 23.989 0.257 41.362724 -93.433418 +50002 1297 636 279019969 182250 107.730 0.070 41.514778 -94.648341 +50003 6594 2707 296262168 1824123 114.387 0.704 41.611504 -94.043026 +50005 730 318 69351844 271729 26.777 0.105 42.131988 -93.034602 +50006 1676 761 317608669 136481 122.629 0.053 42.508362 -93.401924 +50007 474 167 13782897 0 5.322 0.000 41.806814 -93.602008 +50008 878 429 219823966 799607 84.875 0.309 40.679672 -93.380265 +50009 16136 6319 65155566 51547 25.157 0.020 41.645012 -93.459090 +50010 29359 13618 155033818 260300 59.859 0.101 42.030822 -93.588490 +50011 1390 1 125094 0 0.048 0.000 42.024034 -93.636451 +50012 4062 29 1972687 9935 0.762 0.004 42.026751 -93.645873 +50014 28094 11868 144736089 89999 55.883 0.035 42.046297 -93.694448 +50020 1407 684 248209168 919321 95.834 0.355 41.438416 -94.747041 +50021 21595 9017 66701596 24328 25.754 0.009 41.724208 -93.565423 +50022 8494 3975 431487278 396033 166.598 0.153 41.414337 -94.996266 +50023 27986 10847 57348146 75990 22.142 0.029 41.731286 -93.631857 +50025 3325 1630 507431421 0 195.920 0.000 41.757959 -94.923571 +50026 584 285 142869501 0 55.162 0.000 41.858516 -94.449580 +50027 285 151 72300542 591188 27.915 0.228 41.482026 -92.469368 +50028 1681 689 114863517 70134 44.349 0.027 41.812016 -93.153672 +50029 691 339 104965036 73324 40.527 0.028 41.828956 -94.555933 +50032 399 185 955390 0 0.369 0.000 41.666521 -93.542387 +50033 44 20 288201 0 0.111 0.000 41.363038 -93.792843 +50034 490 251 161881537 1602666 62.503 0.619 42.521662 -93.661406 +50035 5387 1958 116772406 125744 45.086 0.049 41.723913 -93.458076 +50036 16287 7459 502476772 2586719 194.007 0.999 42.085554 -93.864204 +50038 205 111 7907934 966305 3.053 0.373 41.525073 -93.903282 +50039 329 159 60629106 32941 23.409 0.013 41.814205 -93.996778 +50041 92 54 1101427 0 0.425 0.000 42.638454 -93.248148 +50042 309 155 83827836 334754 32.366 0.129 41.533745 -94.905323 +50044 887 403 118457713 15343 45.737 0.006 41.203094 -92.881898 +50046 1524 619 119244056 729296 46.040 0.282 41.893405 -93.523012 +50047 5559 2208 150551626 1608002 58.128 0.621 41.463639 -93.474280 +50048 861 423 226295338 277932 87.373 0.107 41.512457 -94.520058 +50049 6493 3095 520849102 2275554 201.101 0.879 41.034517 -93.295407 +50050 710 353 197678090 28538 76.324 0.011 42.158973 -94.503593 +50051 283 134 66182743 390346 25.553 0.151 42.135392 -93.141399 +50052 138 78 50874664 65966 19.643 0.025 40.643260 -93.444379 +50054 3356 1428 151303559 1568719 58.419 0.606 41.689643 -93.231856 +50055 913 408 126048093 292428 48.667 0.113 41.878681 -93.296135 +50056 1372 592 148881654 310723 57.484 0.120 42.013198 -93.296527 +50057 238 100 52157438 26100 20.138 0.010 41.179914 -93.134256 +50058 1927 902 364071836 160131 140.569 0.062 41.855710 -94.690994 +50060 2507 1221 452369096 1241090 174.661 0.479 40.751408 -93.318860 +50061 1701 642 80154777 1544266 30.948 0.596 41.485929 -93.784889 +50062 741 313 80081240 23079 30.920 0.009 41.235597 -93.245092 +50063 2604 1037 170414757 118000 65.798 0.046 41.695549 -93.940678 +50064 126 55 40418909 0 15.606 0.000 42.107729 -94.236630 +50065 583 296 147327583 575406 56.884 0.222 40.613858 -93.781727 +50066 262 128 64261113 471078 24.811 0.182 41.798081 -94.233396 +50067 302 155 86782161 311356 33.507 0.120 40.717682 -93.861649 +50068 366 161 114687763 61870 44.281 0.024 40.948073 -93.466254 +50069 1118 445 13262492 0 5.121 0.000 41.520765 -94.030262 +50070 1489 734 170639223 431546 65.884 0.167 41.445537 -94.232632 +50071 1007 566 292776820 337362 113.042 0.130 42.648620 -93.504898 +50072 2671 1061 228458740 450129 88.208 0.174 41.471219 -94.122983 +50073 1195 465 67244090 176052 25.963 0.068 41.793831 -93.525213 +50074 334 409 125812204 2003718 48.576 0.774 40.865931 -94.080133 +50075 862 371 119361655 7736 46.086 0.003 42.332139 -93.550631 +50076 1502 737 289965715 685667 111.956 0.265 41.592177 -94.841945 +50078 126 59 660699 0 0.255 0.000 41.938580 -92.863031 +50101 66 29 25431226 0 9.819 0.000 42.667352 -93.634644 +50102 87 45 1304963 0 0.504 0.000 42.245542 -93.400194 +50103 452 228 157258966 150478 60.718 0.058 40.795120 -93.609144 +50104 128 63 28940560 0 11.174 0.000 41.486799 -92.386662 +50105 1158 424 20560447 0 7.938 0.000 42.110285 -93.637284 +50106 1039 489 170041734 99380 65.653 0.038 41.880956 -92.806239 +50107 1099 500 130323310 109876 50.318 0.042 42.036533 -94.219069 +50108 471 267 188443671 164436 72.759 0.063 40.825643 -93.952660 +50109 2762 1037 56668494 6088741 21.880 2.351 41.770880 -93.800631 +50111 9407 3670 71187442 297164 27.486 0.115 41.692119 -93.805376 +50112 11536 4798 475237392 434761 183.490 0.168 41.730093 -92.715438 +50115 2674 1271 440965745 219589 170.258 0.085 41.683240 -94.561556 +50116 299 126 44059135 12619 17.011 0.005 41.179772 -92.973610 +50117 193 96 71585251 71929 27.639 0.028 41.669871 -94.849235 +50118 1027 404 49691667 1774588 19.186 0.685 41.466968 -93.378981 +50119 498 216 39608454 746178 15.293 0.288 41.313093 -92.939687 +50120 323 130 43941350 0 16.966 0.000 41.933734 -92.982857 +50122 1373 623 218555456 65908 84.385 0.025 42.305362 -93.311807 +50123 818 455 204314880 269954 78.886 0.104 40.833825 -93.513815 +50124 3750 1493 54098688 0 20.888 0.000 41.885672 -93.604073 +50125 19556 7722 423849028 2672916 163.649 1.032 41.335185 -93.584634 +50126 6853 3176 351532763 342067 135.728 0.132 42.494379 -93.255400 +50127 29 12 28260 0 0.011 0.000 41.777140 -93.205809 +50128 360 176 75688815 209997 29.224 0.081 41.855589 -94.300236 +50129 5228 2566 434205215 1453435 167.648 0.561 42.014771 -94.376743 +50130 1648 713 170595167 1337885 65.867 0.517 42.303387 -93.669264 +50131 17499 6729 56477726 8189213 21.806 3.162 41.692120 -93.715156 +50132 367 174 74609258 0 28.807 0.000 42.391673 -93.691530 +50133 567 295 195971232 995705 75.665 0.384 40.713322 -94.068993 +50134 660 273 48427675 0 18.698 0.000 41.939484 -93.671998 +50135 1605 789 192731530 2547234 74.414 0.983 41.750582 -92.887174 +50136 445 216 100596786 35423 38.841 0.014 41.469501 -92.292764 +50138 11720 5241 442220413 19606875 170.742 7.570 41.300589 -93.105185 +50139 1288 560 229328321 180047 88.544 0.070 41.198463 -93.369878 +50140 2969 1164 239713197 1964936 92.554 0.759 40.645520 -93.986274 +50141 569 263 93619441 158040 36.147 0.061 41.867559 -92.949711 +50142 931 398 2566675 0 0.991 0.000 42.006616 -92.775596 +50143 600 249 92510368 447718 35.718 0.173 41.341836 -92.804656 +50144 2901 1349 361463599 1141463 139.562 0.441 40.739050 -93.740800 +50146 438 199 75845999 0 29.284 0.000 41.684117 -94.243044 +50147 440 250 187377446 114299 72.347 0.044 40.629263 -93.553727 +50148 432 191 51098115 0 19.729 0.000 42.181305 -92.992825 +50149 964 479 213331160 118531 82.368 0.046 41.150466 -94.070997 +50150 984 420 147921893 614785 57.113 0.237 41.125508 -92.975192 +50151 724 362 205300543 263300 79.267 0.102 41.081907 -93.517790 +50153 734 309 80343018 29176 31.021 0.011 41.573896 -92.807021 +50154 466 202 53144166 0 20.519 0.000 42.172261 -93.392780 +50155 255 117 78465748 35572 30.296 0.014 41.211018 -94.199353 +50156 4412 1903 232315736 6408279 89.698 2.474 41.898310 -93.801235 +50157 762 353 168306476 82897 64.983 0.032 41.739767 -92.563011 +50158 31591 12904 547770086 576848 211.495 0.223 42.049806 -92.900739 +50160 465 198 965184 0 0.373 0.000 41.373789 -93.738489 +50161 2047 862 210950143 862076 81.448 0.333 41.848150 -93.404030 +50162 1233 528 132095121 25577 51.002 0.010 41.928297 -93.072173 +50163 858 410 1230059 0 0.475 0.000 41.222388 -93.241035 +50164 652 303 137992511 242529 53.279 0.094 41.499518 -94.420213 +50165 49 28 6437634 0 2.486 0.000 40.843661 -93.283695 +50166 1582 660 162193030 329398 62.623 0.127 41.282712 -93.430749 +50167 748 335 102105447 505051 39.423 0.195 41.742883 -94.041048 +50168 842 367 104677767 95694 40.416 0.037 41.788361 -93.278546 +50169 3093 1048 103076354 302211 39.798 0.117 41.655266 -93.352320 +50170 2745 1226 227972731 3022299 88.021 1.167 41.530027 -93.124762 +50171 2923 1746 279932013 1743671 108.082 0.673 41.585852 -92.525413 +50173 696 290 79810281 330423 30.815 0.128 41.964659 -92.713485 +50174 1429 622 278523046 195449 107.538 0.075 41.033707 -93.982304 +50201 8199 3559 300071934 381708 115.858 0.147 42.041723 -93.434905 +50206 526 230 124112610 69394 47.920 0.027 42.245675 -93.202318 +50207 2537 1090 366329546 258736 141.441 0.100 41.431966 -92.637540 +50208 20417 9051 425424684 621979 164.257 0.240 41.711721 -93.033958 +50210 1691 736 196407429 359707 75.833 0.139 41.195043 -93.698287 +50211 11192 4330 145671677 1510501 56.244 0.583 41.455311 -93.705269 +50212 3131 1407 351662798 567724 135.778 0.219 42.036562 -94.066162 +50213 6812 2989 542667169 1308300 209.525 0.505 41.031685 -93.766137 +50214 850 317 100079018 2492130 38.641 0.962 41.469931 -93.056110 +50216 2824 1802 140455483 5244398 54.230 2.025 41.697097 -94.354821 +50217 631 323 178588395 17727 68.953 0.007 42.183763 -94.251811 +50218 139 70 542828 0 0.210 0.000 41.348354 -93.880405 +50219 13939 5365 304040257 13104005 117.391 5.059 41.420905 -92.896537 +50220 9020 3732 266702750 1474029 102.975 0.569 41.836907 -94.123202 +50222 498 219 108352201 17240 41.835 0.007 41.215845 -93.959608 +50223 480 241 76048297 552251 29.362 0.213 42.173715 -94.037830 +50225 2940 1231 216053151 1193185 83.419 0.461 41.384401 -93.268859 +50226 4724 1724 97069566 12804289 37.479 4.944 41.796243 -93.701973 +50227 40 20 966375 0 0.373 0.000 42.597441 -93.427851 +50228 2417 987 180307197 59991 69.617 0.023 41.576968 -93.241960 +50229 932 387 105357469 259175 40.679 0.100 41.379081 -93.775073 +50230 1083 524 223891614 90499 86.445 0.035 42.303252 -93.453415 +50231 173 79 1065168 0 0.411 0.000 42.237123 -93.602632 +50232 537 231 86216313 546135 33.288 0.211 41.556725 -92.969720 +50233 1388 641 130640688 0 50.441 0.000 41.612883 -94.211370 +50234 613 292 80969880 266213 31.263 0.103 41.893096 -93.181982 +50235 483 228 120716395 417921 46.609 0.161 41.931777 -94.224981 +50236 1550 645 89328918 16604 34.490 0.006 42.168110 -93.486487 +50237 3095 1134 143182465 2820344 55.283 1.089 41.533906 -93.368536 +50238 1182 570 301463331 7441398 116.396 2.873 40.964291 -93.167151 +50239 210 96 43994087 59225 16.986 0.023 42.142843 -93.202958 +50240 2453 997 197056712 657335 76.084 0.254 41.297090 -93.792788 +50242 439 201 106817265 137228 41.242 0.053 41.561039 -92.693756 +50243 244 103 1425493 0 0.550 0.000 41.872429 -93.696442 +50244 1813 730 57130248 0 22.058 0.000 41.857528 -93.652619 +50246 735 352 120139148 14079 46.386 0.005 42.274581 -93.786105 +50247 2515 997 215688269 280365 83.278 0.108 42.017436 -93.164603 +50248 4420 2004 211484087 96668 81.654 0.037 42.191226 -93.614673 +50249 1332 592 201480618 852305 77.792 0.329 42.275327 -93.903082 +50250 2330 1067 264919955 140131 102.286 0.054 41.480626 -94.346410 +50251 1270 536 104731303 85792 40.437 0.033 41.566940 -92.869363 +50252 243 96 22129285 732118 8.544 0.283 41.466282 -93.303447 +50254 282 162 113421039 232611 43.792 0.090 40.987520 -94.074240 +50255 65 28 456756 0 0.176 0.000 41.455895 -92.332273 +50256 501 231 70005080 806957 27.029 0.312 41.259706 -92.905272 +50257 992 401 103296613 0 39.883 0.000 41.189507 -93.847230 +50258 1002 475 139020377 455942 53.676 0.176 42.224136 -93.073131 +50261 2211 879 171581878 1660853 66.248 0.641 41.475063 -93.915872 +50262 453 222 83675780 154826 32.307 0.060 40.860632 -93.808561 +50263 16069 6414 89811208 191647 34.676 0.074 41.591580 -93.873639 +50264 466 221 174277982 21492 67.289 0.008 40.905654 -93.697536 +50265 31653 14137 44379906 2086653 17.135 0.806 41.552968 -93.745011 +50266 23625 11409 42782812 278023 16.519 0.107 41.570341 -93.799418 +50268 993 509 123395200 129423 47.643 0.050 41.404406 -92.362787 +50271 628 311 172819803 0 66.726 0.000 42.482752 -93.541442 +50272 152 84 1922108 0 0.742 0.000 41.095928 -93.255936 +50273 8251 3505 518734984 436436 200.285 0.169 41.329691 -94.054307 +50274 398 200 129895526 264250 50.153 0.102 41.383348 -94.860975 +50275 532 238 131849713 0 50.907 0.000 41.037536 -93.589602 +50276 2517 973 208197916 1649044 80.386 0.637 41.862012 -93.926489 +50277 483 232 104453458 170820 40.330 0.066 41.779785 -94.350576 +50278 842 381 138821968 42230 53.599 0.016 42.136759 -93.299533 +50309 5431 3667 7348586 427887 2.837 0.165 41.584450 -93.620778 +50310 30221 13915 20861437 262109 8.055 0.101 41.627582 -93.672660 +50311 15113 6364 6511832 0 2.514 0.000 41.601033 -93.672868 +50312 15339 7923 14709325 341735 5.679 0.132 41.582678 -93.676670 +50313 17376 7158 46753201 882092 18.052 0.341 41.654477 -93.624180 +50314 12465 4985 6439448 190273 2.486 0.073 41.604964 -93.631200 +50315 35853 15242 25951327 609004 10.020 0.235 41.545918 -93.622124 +50316 16440 6439 9215176 87305 3.558 0.034 41.608629 -93.599579 +50317 36207 15027 59339311 702531 22.911 0.271 41.621347 -93.547893 +50319 0 0 213707 0 0.083 0.000 41.590912 -93.604288 +50320 20027 7825 48336194 1210837 18.663 0.468 41.527942 -93.567967 +50321 7846 3444 30606507 362679 11.817 0.140 41.532674 -93.662499 +50322 31530 13800 27877246 61021 10.763 0.024 41.634164 -93.734360 +50323 10201 3637 19984131 0 7.716 0.000 41.625632 -93.793650 +50324 4903 2319 3740280 0 1.444 0.000 41.604413 -93.712847 +50325 15448 6081 19913279 310838 7.689 0.120 41.613243 -93.797871 +50327 10467 4197 48669473 1033149 18.791 0.399 41.586324 -93.487874 +50401 29837 14147 386330590 1179202 149.163 0.455 43.153169 -93.199820 +50420 377 188 117256906 0 45.273 0.000 42.804156 -93.460421 +50421 3032 1470 232430189 481114 89.742 0.186 42.842866 -93.618635 +50423 2976 1381 374229159 2135683 144.491 0.825 43.118224 -93.814465 +50424 1482 744 315854649 0 121.952 0.000 43.394430 -93.933846 +50426 56 27 60113 0 0.023 0.000 43.415481 -93.017133 +50428 9384 5687 306745321 9634833 118.435 3.720 43.136933 -93.397107 +50430 518 266 160984015 0 62.156 0.000 42.981564 -93.953966 +50431 273 113 1936776 0 0.748 0.000 42.737113 -93.368223 +50432 252 141 1127714 0 0.435 0.000 43.223915 -93.797954 +50433 256 130 125889253 0 48.606 0.000 42.923242 -93.050183 +50434 498 217 23249292 238127 8.977 0.092 43.257488 -93.448583 +50435 721 314 105304339 0 40.658 0.000 43.158039 -92.767049 +50436 5848 2639 352540998 1493153 136.117 0.577 43.266463 -93.671118 +50438 4159 1832 342477993 157787 132.231 0.061 43.111502 -93.618624 +50439 289 148 84616343 89976 32.671 0.035 42.944717 -93.626339 +50440 422 216 80662384 3414 31.144 0.001 43.333341 -93.071258 +50441 5776 2595 395173317 489337 152.577 0.189 42.741340 -93.220973 +50444 353 156 55947822 19090 21.602 0.007 43.297226 -93.383630 +50446 548 249 108697147 172633 41.968 0.067 43.340739 -93.446907 +50447 1081 542 260076390 1357536 100.416 0.524 42.925400 -93.797708 +50448 695 330 160124185 41612 61.824 0.016 43.349938 -93.240534 +50449 724 359 94989415 23631 36.676 0.009 43.002487 -93.566898 +50450 2897 1424 209812899 4268390 81.009 1.648 43.421178 -93.522397 +50451 537 274 164502448 28367 63.515 0.011 43.381234 -94.077615 +50452 804 369 127237832 186855 49.127 0.072 42.781099 -93.367352 +50453 588 271 114170099 177512 44.081 0.069 43.363364 -93.647420 +50454 127 62 44766360 0 17.284 0.000 43.381889 -92.737275 +50455 450 180 84207513 0 32.513 0.000 43.456954 -92.649842 +50456 1741 789 120416382 14091 46.493 0.005 43.291329 -93.216135 +50457 441 224 88503707 0 34.171 0.000 42.916337 -93.493608 +50458 2097 910 190715038 83451 73.635 0.032 43.158733 -93.012018 +50459 3018 1451 373316194 2167305 144.138 0.837 43.457425 -93.250439 +50460 364 146 93166151 0 35.972 0.000 43.227851 -92.688793 +50461 5613 2593 446116781 358141 172.247 0.138 43.306168 -92.818741 +50464 673 308 61009266 0 23.556 0.000 43.253400 -93.080785 +50465 250 127 9497218 0 3.667 0.000 43.486550 -93.912229 +50466 1828 787 354076016 265156 136.710 0.102 43.386853 -92.538439 +50467 94 44 709984 0 0.274 0.000 43.211730 -93.086636 +50468 1615 742 256180153 29336 98.912 0.011 43.032213 -92.947124 +50469 1574 690 227803634 75970 87.955 0.029 42.999327 -93.197099 +50470 275 165 62885229 0 24.280 0.000 42.745780 -93.560406 +50471 689 316 110089036 0 42.506 0.000 43.166568 -92.876407 +50472 2394 1058 315722433 694577 121.901 0.268 43.406746 -92.935316 +50473 268 138 95399880 600633 36.834 0.232 43.465739 -93.687767 +50475 1757 760 231013382 89137 89.195 0.034 42.880553 -93.218757 +50476 804 369 101620767 81814 39.236 0.032 43.446805 -92.764051 +50477 347 151 58455862 0 22.570 0.000 42.989247 -93.327093 +50478 775 439 191508358 66911 73.942 0.026 43.407488 -93.783601 +50479 684 325 150266394 0 58.018 0.000 42.939404 -93.409874 +50480 880 461 162227230 796098 62.636 0.307 43.250367 -94.058607 +50482 774 438 74538658 6627465 28.780 2.559 43.113101 -93.486404 +50483 781 354 198210428 0 76.529 0.000 43.112564 -94.000915 +50484 444 225 113539889 180883 43.838 0.070 43.230771 -93.915585 +50501 29078 12902 403940220 3275560 155.962 1.265 42.491431 -94.196626 +50510 1116 529 219101382 630738 84.596 0.244 42.759296 -94.985603 +50511 7137 3390 321026179 697544 123.949 0.269 43.074041 -94.219184 +50514 1452 686 285570120 2196162 110.259 0.848 43.415156 -94.472410 +50515 279 160 95985264 91529 37.060 0.035 43.022217 -94.863371 +50516 719 305 63843690 141166 24.650 0.055 42.625007 -94.137234 +50517 1051 503 196451521 1659443 75.850 0.641 43.305250 -94.234205 +50518 381 159 80803741 0 31.199 0.000 42.514912 -94.386021 +50519 624 305 142395653 0 54.979 0.000 42.901704 -94.262889 +50520 144 74 61318438 754489 23.675 0.291 42.809190 -94.397929 +50521 104 56 3160848 0 1.220 0.000 42.346223 -94.102821 +50522 857 373 175965366 260029 67.941 0.100 43.192019 -94.194683 +50523 604 285 109190936 0 42.159 0.000 42.367994 -94.295734 +50524 521 239 148454625 80806 57.319 0.031 42.616853 -94.353838 +50525 3583 1829 361364714 2409067 139.524 0.930 42.736497 -93.747437 +50527 223 124 141597255 0 54.671 0.000 42.964990 -94.785417 +50528 383 184 191696767 0 74.015 0.000 43.133889 -94.540831 +50529 837 380 1404544 40868 0.542 0.016 42.720898 -94.198795 +50530 1205 545 167469642 915677 64.660 0.354 42.270706 -94.039695 +50531 242 158 96657746 3791548 37.320 1.464 43.454085 -94.609753 +50532 873 417 181265335 452595 69.987 0.175 42.460118 -94.000869 +50533 4130 1898 258503120 0 99.809 0.000 42.651928 -93.911823 +50535 885 438 157943720 548655 60.982 0.212 42.453186 -95.162489 +50536 4541 2133 366256005 3976489 141.412 1.535 43.118262 -94.705481 +50538 503 263 80872053 16957 31.225 0.007 42.274049 -94.439703 +50539 566 292 139538906 0 53.876 0.000 43.236961 -94.419983 +50540 1022 527 274522336 1103392 105.994 0.426 42.600572 -94.840146 +50541 872 454 236217558 1532105 91.204 0.592 42.710228 -94.452387 +50542 933 456 172856036 28101 66.740 0.011 42.782976 -93.942692 +50543 1492 683 212824794 0 82.172 0.000 42.274696 -94.304640 +50544 515 244 75465666 0 29.137 0.000 42.250727 -94.170545 +50545 205 99 97206312 45921 37.532 0.018 42.797396 -94.080863 +50546 346 202 136972383 47291 52.885 0.018 42.837690 -94.702202 +50548 5869 2729 321533403 1931816 124.145 0.746 42.714769 -94.225325 +50551 158 91 69704315 0 26.913 0.000 42.479577 -94.751117 +50554 1625 872 230386693 2375376 88.953 0.917 42.845984 -94.842690 +50556 292 152 101104875 11125 39.037 0.004 43.455220 -94.196646 +50557 750 388 129034762 1116719 49.821 0.431 42.360802 -94.043735 +50558 618 302 114698519 23067 44.285 0.009 42.861277 -94.163770 +50559 348 176 102790935 0 39.688 0.000 43.208819 -94.329243 +50560 590 317 225654488 0 87.126 0.000 42.960487 -94.107825 +50561 520 256 119264336 94038 46.048 0.036 42.425099 -94.850501 +50562 527 248 165098566 0 63.745 0.000 42.961532 -94.641788 +50563 2500 1359 252570421 747600 97.518 0.289 42.527831 -94.524964 +50565 468 259 113882977 121159 43.970 0.047 42.857089 -95.001020 +50566 433 206 89844358 21164 34.689 0.008 42.437770 -94.323652 +50567 226 106 67115601 210796 25.913 0.081 42.525449 -95.101883 +50568 1398 611 219912855 158438 84.909 0.061 42.626050 -94.984009 +50569 836 391 54375018 514691 20.994 0.199 42.403206 -94.134237 +50570 248 103 112172571 48177 43.310 0.019 42.896101 -94.373020 +50571 394 207 115641227 0 44.649 0.000 42.630964 -94.578693 +50573 68 41 1045738 0 0.404 0.000 42.876758 -94.623824 +50574 2181 1148 288134473 0 111.249 0.000 42.716670 -94.698650 +50575 969 515 163446600 0 63.107 0.000 42.560344 -94.700491 +50576 423 190 93051632 0 35.927 0.000 42.803272 -95.175275 +50577 410 221 106941323 0 41.290 0.000 42.858665 -93.977004 +50578 646 334 192245774 85671 74.227 0.033 43.306502 -94.549559 +50579 2405 1331 355724263 3395688 137.346 1.311 42.394310 -94.638758 +50581 996 471 245993524 728961 94.979 0.281 42.842996 -94.549778 +50582 234 116 53208823 363628 20.544 0.140 42.793838 -94.295665 +50583 2855 1469 305136071 1223470 117.814 0.472 42.432718 -94.985692 +50585 1176 568 164764837 527069 63.616 0.204 42.917530 -95.141865 +50586 307 159 91099208 22112 35.174 0.009 42.411860 -94.425560 +50588 12756 4749 356361817 12631881 137.592 4.877 42.658692 -95.166279 +50590 879 479 203960351 20388 78.750 0.008 43.407059 -94.314879 +50591 320 150 73985552 0 28.566 0.000 42.676032 -94.055674 +50593 64 31 480019 0 0.185 0.000 42.657197 -94.898808 +50594 298 136 67103128 0 25.909 0.000 42.585196 -94.040129 +50595 9165 4301 399160086 449052 154.117 0.173 42.461417 -93.822578 +50597 1293 597 213308415 932096 82.359 0.360 42.975250 -94.451731 +50598 912 421 176474137 0 68.137 0.000 43.081849 -94.417046 +50599 380 199 132976009 81058 51.342 0.031 42.579322 -93.823217 +50601 2464 1194 367829271 182849 142.020 0.071 42.567768 -93.060058 +50602 1603 719 207296305 159357 80.038 0.062 42.741405 -92.805745 +50603 625 269 122972014 0 47.480 0.000 43.187727 -92.459489 +50604 1850 841 184428103 92958 71.208 0.036 42.601831 -92.896477 +50605 168 85 38865937 0 15.006 0.000 42.831759 -93.020977 +50606 885 435 184256567 58595 71.142 0.023 42.747316 -91.691307 +50607 481 213 123088687 0 47.525 0.000 42.610550 -91.749864 +50609 446 198 89198169 20429 34.440 0.008 42.228377 -92.809466 +50611 392 182 78763743 0 30.411 0.000 42.815489 -92.908954 +50612 335 138 57581068 0 22.232 0.000 42.283447 -92.386045 +50613 42031 16583 325898289 4074613 125.830 1.573 42.531814 -92.487461 +50616 10344 4841 447677877 427211 172.849 0.165 43.080430 -92.658480 +50619 2410 1022 229317854 1548376 88.540 0.598 42.809681 -92.658224 +50620 54 27 324589 0 0.125 0.000 43.158425 -92.590545 +50621 1530 695 165399151 0 63.861 0.000 42.251109 -92.921016 +50622 3206 1290 64784180 73796 25.013 0.028 42.672712 -92.335907 +50624 1743 694 135187133 0 52.196 0.000 42.467825 -92.658727 +50625 1004 477 157866903 186690 60.953 0.072 42.748385 -92.988356 +50626 1804 699 130268151 624653 50.297 0.241 42.587047 -92.175533 +50627 3456 1642 276457942 765563 106.741 0.296 42.350393 -93.093896 +50628 1374 602 289171765 185024 111.650 0.071 43.272710 -92.394046 +50629 2418 969 204632578 696088 79.009 0.269 42.648669 -92.071537 +50630 1728 807 214483346 232646 82.812 0.090 42.957680 -92.213959 +50632 1107 534 109710138 541112 42.359 0.209 42.061600 -92.699352 +50633 373 176 102851181 227351 39.711 0.088 42.671799 -93.128182 +50634 713 314 1007524 10728 0.389 0.004 42.418675 -92.214000 +50635 1602 764 217592812 0 84.013 0.000 42.202061 -92.699322 +50636 1982 970 312191604 1327448 120.538 0.513 42.895005 -92.809048 +50638 3313 1521 245826479 0 94.914 0.000 42.356740 -92.793955 +50641 2017 726 122810408 209379 47.417 0.081 42.606550 -91.920033 +50642 581 226 83390897 13774 32.197 0.005 42.439697 -92.816454 +50643 2747 1130 162697789 410669 62.818 0.159 42.357927 -92.464199 +50644 8648 3892 369298026 3297175 142.587 1.273 42.476151 -91.893691 +50645 1204 519 213772471 473555 82.538 0.183 43.019546 -92.443649 +50647 1894 821 77451814 1613526 29.904 0.623 42.651075 -92.497212 +50648 4054 1654 223049944 162774 86.120 0.063 42.453205 -92.093230 +50650 737 338 106696113 60302 41.196 0.023 42.618248 -91.656040 +50651 3578 1523 290042486 4584591 111.986 1.770 42.317063 -92.196740 +50652 128 67 605668 0 0.234 0.000 42.264292 -92.693760 +50653 639 299 133981606 767138 51.731 0.296 42.968595 -92.885717 +50654 499 213 136188150 0 52.583 0.000 42.498698 -91.642830 +50655 873 365 90963065 88615 35.121 0.034 42.765580 -91.891692 +50658 2518 1191 184273746 2823857 71.148 1.090 42.962781 -92.542513 +50659 5488 2490 403626744 176022 155.841 0.068 43.095838 -92.329051 +50660 1333 548 100135575 29447 38.663 0.011 42.583567 -92.631544 +50662 7238 3402 175813071 236446 67.882 0.091 42.688662 -91.937486 +50664 53 29 95350 0 0.037 0.000 42.701249 -92.076193 +50665 2841 1274 253290828 0 97.796 0.000 42.580364 -92.771879 +50666 1027 444 139333332 922703 53.797 0.356 42.870966 -92.520111 +50667 795 324 5217793 0 2.015 0.000 42.470225 -92.226415 +50668 1249 525 87460062 229510 33.769 0.089 42.692906 -92.228831 +50669 2436 1128 239739631 10422 92.564 0.004 42.343457 -92.602549 +50670 2024 886 147693291 1238410 57.025 0.478 42.695374 -92.618753 +50671 269 109 57516940 16334 22.207 0.006 42.650429 -91.795819 +50672 594 289 94947054 46229 36.659 0.018 42.426286 -93.071694 +50673 219 80 444167 0 0.171 0.000 42.524945 -92.711273 +50674 3555 1581 405282166 3407909 156.480 1.316 42.837805 -92.115430 +50675 2456 1109 287086664 150772 110.845 0.058 42.197820 -92.512092 +50676 2105 943 147945860 921289 57.122 0.356 42.798899 -92.280180 +50677 12131 4704 321992838 3194003 124.322 1.233 42.766784 -92.429682 +50680 1095 539 138682394 0 53.546 0.000 42.452094 -92.923037 +50681 457 202 63049395 0 24.344 0.000 42.777619 -92.009382 +50682 1572 643 220939846 42764 85.305 0.017 42.452643 -91.688578 +50701 30324 13837 211307390 3411353 81.586 1.317 42.418259 -92.339821 +50702 19970 8967 24299017 1309473 9.382 0.506 42.457713 -92.312205 +50703 19863 8605 242656830 2067185 93.690 0.798 42.548059 -92.286431 +50707 8509 3603 25015902 345979 9.659 0.134 42.458164 -92.260032 +50801 9590 4533 541138684 3890004 208.935 1.502 41.078573 -94.402219 +50830 1743 778 305947024 670811 118.127 0.259 41.027101 -94.191097 +50833 2305 1142 532934532 3390787 205.767 1.309 40.670545 -94.700888 +50835 92 47 43864480 130304 16.936 0.050 40.706299 -94.375485 +50836 457 251 231152011 1676716 89.248 0.647 40.632285 -94.497484 +50837 376 200 130570445 225409 50.414 0.087 41.224703 -94.692446 +50839 34 21 1828417 0 0.706 0.000 41.049661 -94.824003 +50840 560 267 129507338 441432 50.003 0.170 40.781959 -94.480948 +50841 2824 1415 606076473 4759723 234.007 1.838 41.009072 -94.768812 +50842 105 47 674912 0 0.261 0.000 41.039887 -94.461833 +50843 596 281 195833833 32728 75.612 0.013 41.236842 -94.885233 +50845 811 348 284295758 1294478 109.767 0.500 40.821491 -94.349675 +50846 1123 546 238718135 149017 92.170 0.058 41.308993 -94.576117 +50847 87 48 836560 26548 0.323 0.010 41.140563 -94.982358 +50848 378 207 117220734 499460 45.259 0.193 40.780922 -94.764274 +50849 2740 1338 303486226 945306 117.177 0.365 41.308278 -94.386570 +50851 2087 969 333878001 1336397 128.911 0.516 40.908584 -94.537032 +50853 702 354 195793685 194054 75.596 0.075 41.236843 -94.767896 +50854 2303 1095 348732719 2208507 134.646 0.853 40.679375 -94.212770 +50857 272 140 131037143 228000 50.594 0.088 40.942592 -94.880965 +50858 796 375 206774627 220623 79.836 0.085 41.221263 -94.409669 +50859 584 287 206284787 205939 79.647 0.080 41.067099 -94.597342 +50860 474 156 114501829 634749 44.209 0.245 40.617459 -94.347944 +50861 274 138 112876664 644174 43.582 0.249 40.908431 -94.255922 +50862 148 72 56002793 215413 21.623 0.083 40.811094 -94.657541 +50863 293 139 77735238 443429 30.014 0.171 40.847781 -94.175734 +50864 2057 991 376870947 772047 145.511 0.298 40.970370 -94.978111 +51001 2432 1086 360544871 317456 139.207 0.123 42.829942 -96.527233 +51002 2741 1230 297051473 96991 114.692 0.037 42.688436 -95.319027 +51003 1700 674 144294826 76283 55.713 0.029 42.989939 -95.987541 +51004 1033 517 212017049 831492 81.860 0.321 42.374863 -95.915342 +51005 1491 675 244144831 25429 94.265 0.010 42.723603 -95.418791 +51006 1075 532 212288291 807256 81.965 0.312 42.320792 -95.619612 +51007 730 282 87318034 0 33.714 0.000 42.403949 -96.187064 +51008 151 66 630646 0 0.243 0.000 42.810891 -96.266831 +51009 164 82 611821 0 0.236 0.000 42.944357 -95.551533 +51010 456 253 175387775 925350 67.718 0.357 42.086146 -95.909504 +51011 79 41 1275286 0 0.492 0.000 42.916316 -96.514451 +51012 6642 3210 386682411 155693 149.299 0.060 42.744137 -95.561849 +51014 528 258 139616307 30645 53.906 0.012 42.787640 -95.707313 +51016 1378 644 262372029 523403 101.302 0.202 42.471641 -95.804645 +51018 404 209 94973523 144858 36.669 0.056 42.449661 -95.680771 +51019 773 374 236507950 279978 91.316 0.108 42.274679 -95.735667 +51020 658 292 140559611 17407 54.270 0.007 42.510109 -95.413547 +51022 789 350 204082524 0 78.797 0.000 42.976982 -95.850025 +51023 3216 1409 270480351 965139 104.433 0.373 43.018658 -96.460404 +51024 2070 837 232644349 84098 89.824 0.032 42.612142 -96.262983 +51025 1989 942 278363472 39513 107.477 0.015 42.497646 -95.556107 +51026 862 418 280965339 270533 108.481 0.104 42.255339 -96.068143 +51027 1260 505 239811950 23769 92.592 0.009 42.960313 -96.322232 +51028 2065 914 328877363 53611 126.980 0.021 42.596655 -95.987640 +51029 251 125 58631884 0 22.638 0.000 42.880551 -95.537847 +51030 1737 683 153837616 101699 59.397 0.039 42.497741 -96.188321 +51031 12336 5209 605051258 60585 233.612 0.023 42.798547 -96.186217 +51033 428 231 163353526 121813 63.071 0.047 42.912628 -95.251445 +51034 1820 897 290256763 619521 112.069 0.239 42.160754 -95.789620 +51035 1685 786 278976810 0 107.714 0.000 42.778851 -95.799368 +51036 726 254 114214650 14621 44.099 0.006 42.969720 -96.189483 +51037 322 163 61667480 0 23.810 0.000 42.826671 -95.643137 +51038 1535 652 233784005 44318 90.265 0.017 42.703191 -96.316957 +51039 2475 1021 222604749 554562 85.948 0.214 42.449218 -96.049560 +51040 3712 1906 394259940 5550285 152.225 2.143 42.036236 -96.087049 +51041 6976 2369 184491043 0 71.232 0.000 43.026058 -96.077888 +51044 253 131 89676276 163307 34.624 0.063 42.307816 -95.922873 +51046 1660 802 240751766 166273 92.955 0.064 42.961834 -95.678020 +51047 646 357 199489849 589102 77.023 0.227 42.942464 -95.369628 +51048 554 261 86240685 0 33.298 0.000 42.550952 -95.841310 +51049 506 245 113047876 50072 43.648 0.019 42.629277 -95.648112 +51050 2631 1085 353266814 0 136.397 0.000 42.793616 -95.945925 +51051 90 42 8724971 15238 3.369 0.006 42.206091 -95.964960 +51052 1027 448 155944754 3714561 60.211 1.434 42.308234 -96.265987 +51053 1161 515 195409950 103317 75.448 0.040 42.495017 -95.286528 +51054 5110 1819 103979705 2349320 40.147 0.907 42.380126 -96.316111 +51055 1319 601 172795960 1896488 66.717 0.732 42.221916 -96.261066 +51056 478 228 88612403 319810 34.213 0.123 42.241293 -95.956396 +51058 1007 532 214583720 202307 82.851 0.078 42.973945 -95.467315 +51060 615 322 156146936 100172 60.289 0.039 42.042032 -95.684871 +51061 510 242 121469875 158296 46.900 0.061 42.580726 -95.718471 +51062 526 247 144480984 113283 55.784 0.044 42.697827 -96.534968 +51063 1100 484 159921593 2136845 61.746 0.825 42.139159 -96.168318 +51101 809 486 3050811 87953 1.178 0.034 42.493688 -96.394184 +51103 17453 6410 27329577 533633 10.552 0.206 42.517086 -96.439937 +51104 22104 8975 20007969 1561 7.725 0.001 42.536156 -96.404680 +51105 10216 4060 15751253 74339 6.082 0.029 42.511913 -96.352027 +51106 26544 11008 80695546 1007236 31.157 0.389 42.463396 -96.321505 +51108 5566 2263 116157980 297987 44.849 0.115 42.566032 -96.352653 +51109 3098 1357 46990825 2168732 18.143 0.837 42.580113 -96.474433 +51111 94 56 17306992 686395 6.682 0.265 42.418500 -96.393103 +51201 6193 2768 295733762 83830 114.183 0.032 43.177830 -95.866091 +51230 462 171 64875507 0 25.049 0.000 43.360330 -96.323632 +51231 282 131 73029493 0 28.197 0.000 43.103129 -95.742199 +51232 875 381 156584013 54498 60.457 0.021 43.308625 -95.812663 +51234 1268 482 129270904 3603 49.912 0.001 43.192205 -96.019335 +51235 1079 385 144971909 0 55.974 0.000 43.294539 -96.218369 +51237 1703 780 249747863 12058 96.428 0.005 43.336066 -96.000764 +51238 1184 484 118821879 9457 45.877 0.004 43.074351 -95.892733 +51239 3123 1061 171486564 27377 66.211 0.011 43.203917 -96.147481 +51240 1746 696 262865520 296089 101.493 0.114 43.309361 -96.458419 +51241 1737 691 232758318 9568 89.868 0.004 43.451232 -96.461750 +51242 212 80 1181066 0 0.456 0.000 43.441109 -96.334849 +51243 807 359 139202043 36358 53.746 0.014 43.439740 -95.910459 +51244 79 32 778428 0 0.301 0.000 43.244772 -95.935555 +51245 1359 638 203413241 0 78.538 0.000 43.074701 -95.599948 +51246 3844 1678 424475480 39922 163.891 0.015 43.427915 -96.168221 +51247 4870 1839 289347761 302816 111.718 0.117 43.193752 -96.338127 +51248 1857 804 214496950 0 82.818 0.000 43.205540 -95.657879 +51249 3593 1617 324698821 44389 125.367 0.017 43.411232 -95.726614 +51250 8249 2719 186171025 227938 71.881 0.088 43.090933 -96.205811 +51301 12691 6098 404708301 2234108 156.259 0.863 43.153170 -95.147654 +51331 1140 1506 4328713 2793797 1.671 1.079 43.361009 -95.127454 +51333 522 231 167531168 2834305 64.684 1.094 43.129346 -94.999532 +51334 7661 3466 485368079 6412989 187.402 2.476 43.404109 -94.805056 +51338 1000 461 188586392 713538 72.814 0.275 43.205366 -95.318750 +51341 49 30 893950 0 0.345 0.000 43.014277 -95.038748 +51342 1249 609 214048965 182669 82.645 0.071 43.247877 -94.736880 +51343 238 106 64797509 524496 25.018 0.203 43.018510 -95.106025 +51345 403 197 145805647 498785 56.296 0.193 43.407697 -95.437473 +51346 2451 1141 377302746 55835 145.677 0.022 43.180463 -95.459451 +51347 1431 763 219032601 4895849 84.569 1.890 43.422425 -95.318451 +51350 411 221 112104258 0 43.284 0.000 43.310963 -95.600833 +51351 4365 2802 273457209 5474766 105.582 2.114 43.315064 -95.183646 +51354 1096 526 226461034 1201235 87.437 0.464 43.410837 -95.541292 +51355 874 1262 6366547 4686146 2.458 1.809 43.388177 -95.136693 +51357 728 329 108592195 0 41.928 0.000 43.060773 -95.280617 +51358 1310 767 189121681 13832676 73.020 5.341 43.131532 -94.899551 +51360 8031 6167 288811859 46182107 111.511 17.831 43.443563 -95.087030 +51363 130 60 1050241 0 0.406 0.000 43.433689 -94.946743 +51364 690 319 167034887 0 64.493 0.000 43.299552 -94.965445 +51365 453 181 52560020 5880937 20.294 2.271 43.305173 -94.732527 +51366 379 198 163533985 360554 63.141 0.139 42.960703 -95.002954 +51401 12373 5579 453492483 628517 175.094 0.243 42.065661 -94.869660 +51430 761 313 105486875 44158 40.729 0.017 42.082258 -95.024722 +51431 394 198 101935208 0 39.357 0.000 42.344843 -95.351693 +51433 676 321 146234075 1121478 56.461 0.433 42.266641 -94.875334 +51436 904 393 156771998 18207 60.530 0.007 42.188265 -95.023602 +51439 1047 507 223052570 424267 86.121 0.164 42.088789 -95.590386 +51440 400 160 66015871 0 25.489 0.000 41.913329 -94.812977 +51441 353 167 40168897 98018 15.509 0.038 42.113305 -95.315427 +51442 9838 3614 448285493 392146 173.084 0.151 42.027498 -95.360635 +51443 1798 798 275566438 876263 106.397 0.338 42.081884 -94.696842 +51444 246 98 422230 0 0.163 0.000 42.004839 -94.973118 +51445 2867 1400 327461286 411756 126.434 0.159 42.321415 -95.462213 +51446 511 267 90274738 0 34.855 0.000 41.775094 -95.191827 +51447 228 111 90268943 0 34.853 0.000 41.722094 -95.195981 +51448 611 284 144010668 32777 55.603 0.013 42.205359 -95.309789 +51449 2128 1025 231509383 1435439 89.386 0.554 42.267823 -94.734406 +51450 1583 1193 153251668 4344154 59.171 1.677 42.316462 -95.020800 +51451 116 72 951902 3547 0.368 0.001 42.184080 -94.695158 +51453 695 353 223309210 30437 86.220 0.012 42.269723 -94.547338 +51454 1346 617 259200047 113184 100.078 0.044 41.871279 -95.202731 +51455 2306 1066 286971140 33785 110.800 0.013 41.911565 -95.055142 +51458 1467 714 245286348 121235 94.706 0.047 42.326374 -95.235307 +51459 75 42 1355933 0 0.524 0.000 42.045221 -94.637957 +51461 1165 534 130099954 96174 50.232 0.037 42.176158 -95.485343 +51462 1013 506 279400187 2153782 107.877 0.832 42.014377 -94.556522 +51463 552 246 77535941 0 29.937 0.000 41.907466 -94.912733 +51465 733 313 141083054 21674 54.472 0.008 42.086886 -95.200725 +51466 1092 483 133431076 1117550 51.518 0.431 42.257168 -95.106732 +51467 615 284 168862484 113009 65.198 0.044 42.072660 -95.117995 +51501 35406 15072 62565346 6098001 24.157 2.354 41.227277 -95.878439 +51503 36376 15251 307521189 3790189 118.735 1.463 41.223238 -95.784458 +51510 3785 1481 4841212 387357 1.869 0.150 41.288533 -95.916872 +51520 233 103 48585455 0 18.759 0.000 41.969542 -95.461430 +51521 2036 938 222025123 1239037 85.724 0.478 41.486094 -95.345378 +51523 357 259 133141497 1827730 51.406 0.706 41.915211 -96.067710 +51525 1184 520 156751446 1538703 60.522 0.594 41.233770 -95.416372 +51526 1753 761 108386597 2946471 41.848 1.138 41.373890 -95.871784 +51527 530 235 101087935 21989 39.030 0.008 41.840075 -95.336362 +51528 931 422 189303217 582632 73.090 0.225 41.909086 -95.501099 +51529 1671 798 333100388 853349 128.611 0.329 41.860476 -95.643463 +51530 854 364 140236581 133890 54.146 0.052 41.787452 -95.430485 +51531 914 383 73952439 0 28.553 0.000 41.588685 -95.087216 +51532 622 288 147652406 157304 57.009 0.061 41.137981 -95.109116 +51533 895 414 213611876 29760 82.476 0.011 41.039454 -95.378172 +51534 9236 3545 259972070 830980 100.376 0.321 41.046626 -95.714689 +51535 1923 900 337106413 20379 130.158 0.008 41.226455 -95.126689 +51536 448 210 124194420 761423 47.952 0.294 41.386894 -95.358715 +51537 6703 3069 421573846 759083 162.771 0.293 41.650131 -95.297511 +51540 449 211 140723810 658654 54.334 0.254 41.024264 -95.498872 +51541 363 169 106325127 410129 41.052 0.158 41.139051 -95.415922 +51542 1011 417 92260796 619914 35.622 0.239 41.431517 -95.849085 +51543 445 210 57402651 0 22.163 0.000 41.656752 -95.075931 +51544 721 331 145030361 104671 55.997 0.040 41.306434 -95.114074 +51545 378 219 113915286 2206866 43.983 0.852 41.844316 -96.030113 +51546 2915 1182 292960399 349623 113.113 0.135 41.637054 -95.766018 +51548 433 175 64393248 0 24.862 0.000 41.317852 -95.636978 +51549 465 221 84609734 90167 32.668 0.035 41.185830 -95.466707 +51550 181 86 1456103 0 0.562 0.000 41.692141 -95.874194 +51551 1828 791 209838981 957138 81.019 0.370 40.990820 -95.587501 +51552 301 141 91256513 0 35.234 0.000 41.490756 -95.113519 +51553 1013 412 118479391 107957 45.745 0.042 41.424450 -95.546160 +51554 187 75 6840874 0 2.641 0.000 41.147388 -95.681849 +51555 5245 2280 403793188 6343466 155.905 2.449 41.560102 -95.923061 +51556 437 219 114386041 3108554 44.165 1.200 41.641709 -96.029262 +51557 873 474 180194271 897572 69.573 0.347 41.731738 -95.997557 +51558 560 297 213130775 258206 82.290 0.100 41.901690 -95.870563 +51559 1788 748 220153489 569773 85.002 0.220 41.466330 -95.648897 +51560 2099 923 252153928 2737717 97.357 1.057 41.315294 -95.399855 +51561 1455 616 155128903 4255377 59.896 1.643 41.007890 -95.806190 +51562 449 204 87844180 122623 33.917 0.047 41.725074 -95.493320 +51563 779 316 142055146 214420 54.848 0.083 41.570675 -95.585585 +51564 501 254 103451375 9676 39.943 0.004 41.809589 -95.922824 +51565 501 233 126093483 34627 48.685 0.013 41.642949 -95.524429 +51566 7035 3478 456411140 1480407 176.221 0.572 41.016459 -95.230901 +51570 1039 474 166547560 148413 64.304 0.057 41.526884 -95.462569 +51571 649 285 121295400 74261 46.832 0.029 41.136915 -95.606141 +51572 398 232 114187002 203963 44.088 0.079 41.993144 -95.784281 +51573 1093 484 156082408 69715 60.264 0.027 40.979559 -95.097052 +51575 1616 642 126543884 25774 48.859 0.010 41.240190 -95.602215 +51576 2110 769 129895387 558520 50.153 0.216 41.382876 -95.714924 +51577 1184 594 206915861 63177 79.891 0.024 41.463613 -95.203768 +51578 79 37 96684 0 0.037 0.000 41.719356 -95.394557 +51579 2340 1051 300427865 993021 115.996 0.383 41.753577 -95.706999 +51601 6025 3001 276049821 292769 106.583 0.113 40.726129 -95.349564 +51630 173 88 65739953 0 25.382 0.000 40.601019 -95.191336 +51631 306 162 95638364 212938 36.926 0.082 40.591418 -95.009999 +51632 7297 2942 540292203 377776 208.608 0.146 40.744991 -95.049325 +51636 405 215 144434643 0 55.767 0.000 40.667282 -95.232559 +51637 214 91 4185566 0 1.616 0.000 40.624860 -95.115683 +51638 1299 598 220309190 457452 85.062 0.177 40.836198 -95.279939 +51639 795 383 186680453 110567 72.078 0.043 40.720122 -95.466403 +51640 1748 848 310350585 3639361 119.827 1.405 40.623488 -95.656223 +51645 262 116 107043333 0 41.330 0.000 40.881893 -95.432524 +51646 763 377 162217900 686028 62.633 0.265 40.747685 -94.874449 +51647 141 72 49689882 0 19.185 0.000 40.608873 -95.319718 +51648 255 123 127267334 3570711 49.138 1.379 40.739475 -95.800397 +51649 328 161 105693737 640749 40.809 0.247 40.850406 -95.527041 +51650 370 180 75412280 3096366 29.117 1.196 40.666385 -95.542483 +51652 1783 781 198939709 1115060 76.811 0.431 40.772947 -95.622069 +51653 1379 595 89310858 201674 34.483 0.078 40.878153 -95.682300 +51654 526 243 134383987 3406124 51.886 1.315 40.836097 -95.778511 +51656 71 30 438077 0 0.169 0.000 40.734708 -95.156343 +52001 43173 18680 67709949 7347814 26.143 2.837 42.545412 -90.696300 +52002 14559 5827 74769470 0 28.869 0.000 42.524769 -90.773204 +52003 13436 5553 146018984 5935120 56.378 2.292 42.430701 -90.669682 +52030 434 173 690483 0 0.267 0.000 42.153216 -90.591931 +52031 5120 2462 434689857 13380220 167.835 5.166 42.252564 -90.486421 +52032 1456 828 272313928 258490 105.141 0.100 42.289646 -90.839534 +52033 3202 1372 252635822 0 97.543 0.000 42.279038 -91.001257 +52035 1010 468 139017849 10395 53.675 0.004 42.670738 -91.181213 +52037 1223 515 176730726 44567 68.236 0.017 41.967240 -90.633754 +52038 491 223 76144562 467431 29.400 0.180 42.586693 -91.561483 +52039 1158 435 91068312 0 35.162 0.000 42.539142 -90.860958 +52040 5526 2330 157677619 71347 60.880 0.028 42.503666 -91.141684 +52041 1608 631 155013681 26716 59.851 0.010 42.505553 -91.261385 +52042 1999 763 161442828 20364 62.333 0.008 42.698093 -91.357515 +52043 2321 1141 258435335 0 99.782 0.000 42.845214 -91.419204 +52044 153 68 31383574 0 12.117 0.000 42.769019 -91.323506 +52045 2589 905 123925080 0 47.848 0.000 42.460825 -90.937541 +52046 2127 815 119196635 0 46.022 0.000 42.438363 -91.013117 +52047 567 260 88304462 23661 34.095 0.009 42.969264 -91.341820 +52048 333 166 85789255 0 33.123 0.000 42.742126 -91.257204 +52049 1270 696 179161503 9231770 69.175 3.564 42.885565 -91.199378 +52050 515 214 83972685 55361 32.422 0.021 42.604314 -91.329900 +52052 3136 1831 230273665 18726685 88.909 7.230 42.742443 -91.116701 +52053 1163 453 153365300 1174999 59.215 0.454 42.611150 -90.961050 +52054 940 371 138186180 0 53.354 0.000 42.305645 -90.627254 +52057 8222 3752 361760049 590030 139.676 0.228 42.489481 -91.455885 +52060 8658 3988 408401938 1433257 157.685 0.553 42.106231 -90.682701 +52064 847 382 106639281 901301 41.174 0.348 42.093574 -90.310826 +52065 1130 456 131360801 21361 50.719 0.008 42.593678 -91.108655 +52066 80 132 681956 0 0.263 0.000 42.678326 -90.951844 +52068 3924 1387 120418986 0 46.494 0.000 42.422866 -90.817156 +52069 1609 708 132636290 641384 51.211 0.248 42.063596 -90.442323 +52070 1128 590 128888564 25527115 49.764 9.856 42.079799 -90.231402 +52072 381 173 87106056 0 33.632 0.000 42.922014 -91.377806 +52073 1414 589 127405862 12217596 49.192 4.717 42.621132 -90.828961 +52074 310 139 79898449 786454 30.849 0.304 42.110569 -90.462697 +52076 2295 1031 252900986 0 97.646 0.000 42.699820 -91.510150 +52077 398 187 83704995 24155 32.319 0.009 42.820999 -91.562518 +52078 914 336 106244371 45700 41.021 0.018 42.395777 -91.115821 +52079 782 347 153776141 0 59.373 0.000 42.285554 -90.716248 +52101 13864 5570 804344852 277310 310.559 0.107 43.353610 -91.766050 +52132 1938 914 157236915 142086 60.710 0.055 43.211156 -91.928146 +52133 558 247 118276377 19137 45.667 0.007 43.110144 -91.667957 +52134 285 159 77559488 0 29.946 0.000 43.469554 -92.411225 +52135 864 406 67530596 31368 26.074 0.012 43.015824 -91.663225 +52136 5967 2695 552203778 240784 213.207 0.093 43.374077 -92.111673 +52140 532 294 201525240 60800 77.809 0.023 43.445644 -91.534572 +52141 1435 663 216864900 74045 83.732 0.029 42.936424 -91.640018 +52142 1871 696 188687600 644278 72.853 0.249 42.824817 -91.796851 +52144 1261 541 194119174 0 74.950 0.000 43.139152 -91.962362 +52146 1039 1228 202232153 19446316 78.082 7.508 43.176199 -91.205673 +52147 1050 488 187896612 15559 72.547 0.006 42.959850 -91.959586 +52151 2138 1320 311898185 12772784 120.425 4.932 43.346405 -91.264794 +52154 995 464 189897805 68679 73.320 0.027 43.118625 -92.166877 +52155 1323 597 274628716 266439 106.035 0.103 43.421657 -92.288542 +52156 659 290 110195420 0 42.547 0.000 43.052512 -91.462345 +52157 1828 978 146694531 2749090 56.639 1.061 43.021895 -91.240309 +52158 314 201 2809122 548463 1.085 0.212 43.043947 -91.182403 +52159 2330 1054 197123907 17395 76.110 0.007 43.078888 -91.362689 +52160 867 423 103221189 480892 39.854 0.186 43.459653 -91.351712 +52161 1505 609 140304657 0 54.172 0.000 43.129530 -91.757125 +52162 3285 1370 258921418 0 99.970 0.000 43.107578 -91.551579 +52163 276 165 4602409 0 1.777 0.000 43.219766 -92.103094 +52164 212 106 65222954 83451 25.183 0.032 42.854706 -91.906611 +52165 1004 429 172030285 260065 66.421 0.100 43.309674 -91.994487 +52166 104 63 493739 0 0.191 0.000 43.065843 -91.933290 +52168 188 89 417415 0 0.161 0.000 43.205482 -91.952364 +52169 432 220 77075550 14088 29.759 0.005 42.860729 -91.663085 +52170 599 281 120174634 0 46.400 0.000 43.223874 -91.305191 +52171 1048 469 205831070 66100 79.472 0.026 43.068178 -92.052911 +52172 6303 2865 409930314 0 158.275 0.000 43.270781 -91.484427 +52175 3492 1686 224708583 0 86.760 0.000 42.993945 -91.825624 +52201 1267 521 171676653 137516 66.285 0.053 41.329660 -91.547062 +52202 1152 437 65271185 23892 25.201 0.009 42.159496 -91.638440 +52203 1932 854 118264772 1489156 45.662 0.575 41.813857 -91.891590 +52205 8682 3442 308696311 1249997 119.188 0.483 42.119767 -91.286294 +52206 2303 850 73245916 0 28.280 0.000 41.991580 -91.885466 +52207 383 187 102173612 0 39.449 0.000 42.095059 -90.831678 +52208 3153 1524 150288094 441336 58.027 0.170 41.882402 -92.253128 +52209 1074 461 95203996 198598 36.758 0.077 41.908987 -92.097531 +52210 697 312 90408046 54596 34.907 0.021 42.335824 -92.001362 +52211 2624 1545 236363435 575871 91.260 0.222 41.753890 -92.449753 +52212 285 143 60780511 10057 23.467 0.004 42.108797 -91.090273 +52213 4340 1679 193133869 1352936 74.569 0.522 42.201852 -91.759632 +52214 3090 1410 244351368 3271134 94.345 1.263 42.187872 -91.509266 +52215 843 367 223510103 672095 86.298 0.259 41.913527 -92.405288 +52216 1428 641 146924409 25719 56.728 0.010 41.886489 -91.039637 +52217 590 287 152367658 0 58.829 0.000 42.079987 -92.407882 +52218 1788 798 186401903 1030438 71.970 0.398 42.290268 -91.533585 +52219 178 78 1194124 0 0.461 0.000 42.237735 -91.425836 +52220 237 94 1194245 0 0.461 0.000 41.728234 -91.998369 +52221 221 99 53693011 83042 20.731 0.032 41.640929 -92.331699 +52222 709 326 208915113 237236 80.663 0.092 41.576405 -92.340650 +52223 1351 918 125813447 1806360 48.577 0.697 42.412580 -91.324368 +52224 2016 878 256378050 215562 98.988 0.083 42.165911 -92.299761 +52225 447 205 91276214 0 35.242 0.000 42.010822 -92.326845 +52227 2461 956 74705535 1308018 28.844 0.505 41.894468 -91.568527 +52228 2772 1064 96875158 52874 37.404 0.020 41.902290 -91.788702 +52229 721 314 127345836 46070 49.169 0.018 42.144629 -92.169234 +52231 328 148 84639740 95411 32.680 0.037 41.361656 -92.059127 +52232 178 83 47498282 19164 18.339 0.007 41.804360 -92.335802 +52233 6981 3298 9080084 0 3.506 0.000 42.046770 -91.686869 +52235 698 347 5244081 12931 2.025 0.005 41.578686 -91.531599 +52236 592 239 74129557 18621 28.622 0.007 41.733573 -91.876568 +52237 1522 646 210347931 114007 81.216 0.044 42.344382 -91.248693 +52240 32230 14526 414515848 1055470 160.045 0.408 41.634209 -91.499050 +52241 18911 8310 30767995 103310 11.880 0.040 41.699578 -91.595951 +52242 1592 0 1874659 121019 0.724 0.047 41.661777 -91.548347 +52245 22573 8774 21437710 275149 8.277 0.106 41.672865 -91.512158 +52246 21114 10151 23555236 276773 9.095 0.107 41.652313 -91.570407 +52247 5645 2161 206303697 46425 79.654 0.018 41.518674 -91.723290 +52248 1815 786 294509645 727190 113.711 0.281 41.345772 -91.935346 +52249 965 428 131160363 0 50.641 0.000 42.014152 -92.205426 +52251 590 256 106312085 27088 41.047 0.010 41.712393 -92.201710 +52253 3192 1266 119617674 1862332 46.185 0.719 41.895347 -91.353372 +52254 895 427 146759383 0 56.664 0.000 41.952101 -90.801178 +52255 1208 545 112408307 0 43.401 0.000 41.863617 -90.961247 +52257 210 96 40665450 0 15.701 0.000 41.920953 -92.178222 +52301 3873 1773 316128706 355929 122.058 0.137 41.788476 -92.082678 +52302 36980 15868 192103024 134722 74.171 0.052 42.065358 -91.560548 +52305 629 274 73493573 0 28.376 0.000 42.019197 -91.339225 +52306 1754 765 193533415 712142 74.724 0.275 41.887089 -91.254211 +52307 90 60 488234 0 0.189 0.000 41.793107 -91.898692 +52308 132 65 233003 0 0.090 0.000 41.572284 -92.158723 +52309 397 188 74161386 130453 28.634 0.050 42.131684 -90.888642 +52310 6431 2912 384963817 219776 148.635 0.085 42.220416 -91.195253 +52312 115 51 242872 0 0.094 0.000 42.006028 -91.245872 +52313 397 181 83425511 1534035 32.211 0.592 42.257377 -92.096977 +52314 5865 1967 154117330 1540724 59.505 0.595 41.935363 -91.447684 +52315 1222 515 75003645 0 28.959 0.000 42.000913 -91.970072 +52316 1659 747 180146786 147075 69.555 0.057 41.546634 -92.095570 +52317 14775 6343 89861599 6035992 34.696 2.331 41.767125 -91.634505 +52318 1033 450 95080335 0 36.711 0.000 41.889280 -91.892730 +52320 1203 547 152972711 1012418 59.063 0.391 41.999150 -91.148391 +52321 404 197 77841390 0 30.055 0.000 42.147228 -90.983232 +52322 2436 1045 230659835 560173 89.058 0.216 41.692718 -91.762785 +52323 867 435 132024745 329049 50.975 0.127 41.983221 -90.959184 +52324 1890 735 103897411 3158631 40.115 1.220 42.063907 -91.806141 +52325 873 363 109065817 77376 42.111 0.030 41.584245 -91.924520 +52326 547 269 5259973 187945 2.031 0.073 42.390661 -91.755826 +52327 3012 1293 216537935 1069677 83.606 0.413 41.477080 -91.582988 +52328 2826 948 7989464 0 3.085 0.000 42.071601 -91.666091 +52329 803 341 131743463 347339 50.866 0.134 42.358240 -91.855634 +52330 900 362 123160697 0 47.553 0.000 42.349445 -91.500496 +52332 2006 895 109615934 1076155 42.323 0.416 42.098613 -91.888293 +52333 6168 2481 223255329 11259238 86.199 4.347 41.805879 -91.492386 +52334 311 122 43109728 0 16.645 0.000 41.740170 -91.941103 +52335 709 322 144626544 85893 55.841 0.033 41.467961 -92.053796 +52336 2363 967 127231477 22255 49.124 0.009 42.070516 -91.432362 +52337 845 369 70714333 0 27.303 0.000 41.880203 -91.142058 +52338 3283 1236 87438599 1384771 33.760 0.535 41.817900 -91.707501 +52339 4504 1844 264553696 555158 102.145 0.214 41.927944 -92.587091 +52340 2180 948 42919615 20868 16.571 0.008 41.705633 -91.676825 +52341 1093 450 33953650 691790 13.110 0.267 42.102851 -91.726175 +52342 3274 1384 232363570 297341 89.716 0.115 42.057671 -92.547483 +52345 1468 548 8460118 565 3.266 0.000 42.244652 -91.900894 +52346 1085 476 134845571 0 52.064 0.000 42.010028 -92.080653 +52347 1410 647 166647034 0 64.343 0.000 41.712540 -92.284493 +52348 51 31 2376982 0 0.918 0.000 41.990137 -92.381481 +52349 7643 3315 379632680 3039464 146.577 1.174 42.173246 -92.009630 +52351 1455 490 2136430 0 0.825 0.000 41.877931 -91.831726 +52352 2025 784 203389043 1633575 78.529 0.631 42.288221 -91.774837 +52353 9173 4083 395015639 323079 152.516 0.125 41.299352 -91.711487 +52354 379 170 76593832 0 29.573 0.000 41.915981 -91.987759 +52355 277 136 95190631 19139 36.753 0.007 41.460617 -92.191832 +52356 2656 1132 232407800 0 89.733 0.000 41.473717 -91.845146 +52358 3733 1550 200272897 666632 77.326 0.257 41.691400 -91.318432 +52359 279 129 38168572 0 14.737 0.000 41.358506 -91.807482 +52361 4527 1992 329675542 521656 127.288 0.201 41.649114 -92.029880 +52362 1041 522 157402805 27137 60.774 0.010 42.078991 -90.983415 +52401 2017 992 3071004 393501 1.186 0.152 41.975486 -91.659172 +52402 40149 17985 35684277 736540 13.778 0.284 42.023172 -91.659613 +52403 23673 10728 67994207 1529536 26.253 0.591 41.965959 -91.566054 +52404 37796 17495 142043563 889927 54.843 0.344 41.923056 -91.698866 +52405 23621 10660 37805569 687611 14.597 0.265 41.983384 -91.746369 +52411 6896 2432 42589064 2045955 16.444 0.790 42.053802 -91.729225 +52501 30220 13599 584395540 6902331 225.636 2.665 41.035705 -92.431370 +52530 1005 491 36739157 247079 14.185 0.095 40.993430 -92.292791 +52531 5976 2746 562739585 368319 217.275 0.142 41.026364 -92.815135 +52533 1215 559 227595703 182619 87.875 0.071 41.017538 -92.157116 +52534 284 134 1012395 0 0.391 0.000 41.271952 -92.681930 +52535 888 450 149442224 254284 57.700 0.098 40.862944 -91.959572 +52536 967 468 159982929 150782 61.770 0.058 40.957466 -92.608910 +52537 7098 2896 896396219 3733967 346.101 1.442 40.734988 -92.413618 +52540 1420 657 253576975 4104687 97.907 1.585 41.156205 -91.821579 +52542 435 207 117023713 142493 45.183 0.055 40.619850 -92.056237 +52543 291 107 53378306 19751 20.609 0.008 41.201977 -92.512669 +52544 7847 3949 354995856 988963 137.065 0.382 40.706642 -92.912272 +52548 97 45 588295 34434 0.227 0.013 41.085835 -92.532981 +52549 762 328 113329384 53075 43.757 0.020 40.618642 -92.943113 +52550 585 287 100555822 141269 38.825 0.055 41.310310 -92.355076 +52551 688 357 149297301 2671767 57.644 1.032 40.824773 -92.109395 +52552 830 345 150432424 1450714 58.082 0.560 40.827093 -92.548748 +52553 1745 758 216320658 2103436 83.522 0.812 41.148432 -92.654929 +52554 1373 655 92616713 2089046 35.760 0.807 40.925477 -92.227456 +52555 344 175 64699086 38011 24.980 0.015 40.643680 -92.813698 +52556 13247 5999 457203874 1280676 176.527 0.494 41.024200 -91.927545 +52557 85 2 116099 0 0.045 0.000 41.022148 -91.964773 +52560 430 200 90748254 1184300 35.038 0.457 40.850522 -92.251368 +52561 962 417 90093309 79519 34.785 0.031 41.220285 -92.452262 +52563 1583 733 299042502 108928 115.461 0.042 41.169513 -92.279307 +52565 2027 1064 300828566 6809169 116.151 2.629 40.742079 -91.934492 +52566 168 75 2692350 0 1.040 0.000 41.147999 -92.502542 +52567 615 274 73121919 0 28.233 0.000 40.930193 -92.077955 +52569 610 617 241557072 7613001 93.266 2.939 40.983043 -93.045561 +52570 954 379 177255523 381961 68.439 0.147 40.687411 -92.146225 +52571 1407 844 248003228 28399326 95.755 10.965 40.882043 -92.840610 +52572 1132 570 251780760 452924 97.213 0.175 40.670490 -92.688437 +52573 162 82 73619608 1010778 28.425 0.390 40.627569 -91.928849 +52574 826 419 101241590 8331356 39.090 3.217 40.806698 -92.971787 +52576 568 263 117041974 138769 45.190 0.054 41.215153 -92.109419 +52577 15055 6621 411815079 3957417 159.003 1.528 41.272983 -92.661641 +52580 460 213 98696227 69238 38.107 0.027 41.105218 -92.090331 +52581 305 178 98275489 4543215 37.944 1.754 40.801220 -93.063949 +52583 342 180 120561019 155287 46.549 0.060 40.793886 -93.148924 +52584 438 171 58385858 165373 22.543 0.064 40.637670 -92.248193 +52585 988 448 145151739 748640 56.043 0.289 41.193215 -91.981001 +52586 521 250 122407367 101027 47.262 0.039 41.345609 -92.467591 +52588 134 66 26405619 481738 10.195 0.186 40.865116 -92.170367 +52590 1246 505 194009522 516550 74.907 0.199 40.660221 -93.124967 +52591 3028 1423 327567747 281642 126.475 0.109 41.316641 -92.191374 +52593 142 64 42464728 41148 16.396 0.016 40.772293 -92.746226 +52594 399 209 121874560 112662 47.056 0.043 40.835894 -92.650985 +52595 416 182 1193986 0 0.461 0.000 41.288630 -92.614973 +52601 29723 13740 287154693 24870627 110.871 9.603 40.856050 -91.129717 +52619 594 248 94003111 1319433 36.295 0.509 40.525221 -91.563933 +52620 938 419 137753252 1644039 53.187 0.635 40.697841 -91.797219 +52621 668 299 109426658 156210 42.250 0.060 41.208750 -91.533457 +52623 1993 804 149863756 1576161 57.863 0.609 40.863483 -91.335673 +52624 290 131 1656465 0 0.640 0.000 40.736419 -91.337723 +52625 2802 1198 285066161 178897 110.065 0.069 40.660782 -91.574196 +52626 1346 682 243657718 3779546 94.077 1.459 40.623515 -91.724296 +52627 13105 5879 176642169 11772493 68.202 4.545 40.682060 -91.357584 +52630 445 200 109876580 70151 42.424 0.027 40.798743 -91.711455 +52632 13086 6050 131951222 8518800 50.947 3.289 40.432528 -91.437343 +52635 675 301 111404053 1108282 43.013 0.428 40.995562 -91.758587 +52637 2449 1052 172002147 39763 66.410 0.015 41.017544 -91.145949 +52638 514 229 88053650 467658 33.998 0.181 40.801453 -91.242327 +52639 2002 899 99006542 18463331 38.227 7.129 40.532710 -91.460387 +52640 1447 607 188599646 43999 72.819 0.017 41.101237 -91.280466 +52641 12357 4925 548534824 3228786 211.790 1.247 40.992416 -91.586354 +52644 412 185 111080445 0 42.888 0.000 41.039995 -91.414980 +52645 3176 1348 184352854 1297182 71.179 0.501 40.912197 -91.404234 +52646 376 195 140333709 14671780 54.183 5.665 41.056576 -90.998123 +52647 229 105 911591 0 0.352 0.000 41.135101 -91.544658 +52649 887 404 119318917 80549 46.069 0.031 40.838567 -91.612149 +52650 826 351 104272813 223072 40.260 0.086 40.951210 -91.152038 +52651 646 293 156577973 91898 60.455 0.035 40.865321 -91.815294 +52653 3570 1641 291933980 20541230 112.716 7.931 41.163699 -91.157419 +52654 1728 719 135506241 559501 52.319 0.216 41.140702 -91.671739 +52655 4219 2069 42480154 84376 16.402 0.033 40.846487 -91.212018 +52656 2359 1054 246653156 621587 95.233 0.240 40.739814 -91.455500 +52657 95 35 494762 0 0.191 0.000 40.767833 -91.518819 +52658 1071 491 117815555 13425435 45.489 5.184 40.699404 -91.229654 +52659 1553 671 159797074 22385 61.698 0.009 41.129203 -91.441022 +52660 226 103 57330895 36648 22.136 0.014 40.994596 -91.299370 +52701 108 43 1643828 0 0.635 0.000 41.981968 -90.249117 +52720 861 446 105688120 4439340 40.806 1.714 41.587724 -91.173386 +52721 798 347 108698097 0 41.969 0.000 41.756923 -90.959696 +52722 34754 15055 68714054 4447571 26.531 1.717 41.574299 -90.471528 +52726 4468 1774 93558953 1264181 36.123 0.488 41.496325 -90.780377 +52727 409 165 63043506 38395 24.341 0.015 41.954788 -90.325940 +52728 1110 460 4016961 1747597 1.551 0.675 41.454062 -90.734634 +52729 874 380 108718701 162683 41.977 0.063 41.800183 -90.735691 +52730 4950 2235 94758761 6484650 36.587 2.504 41.775670 -90.335349 +52731 894 379 136590407 0 52.738 0.000 41.966975 -90.486426 +52732 28293 12811 287014236 23690397 110.817 9.147 41.891044 -90.253005 +52737 384 152 607264 0 0.234 0.000 41.259277 -91.374611 +52738 3567 1499 318125497 5065683 122.829 1.956 41.273663 -91.378479 +52739 745 324 84960780 4250255 32.804 1.641 41.375171 -91.367325 +52742 7618 3180 303606179 536597 117.223 0.207 41.838263 -90.519700 +52745 633 273 73906469 475142 28.535 0.183 41.718602 -90.766483 +52746 967 400 68556073 251241 26.470 0.097 41.716455 -90.670392 +52747 2106 885 56082804 11347 21.654 0.004 41.611142 -90.905416 +52748 8850 3484 106896308 108607 41.273 0.042 41.665736 -90.554955 +52749 925 326 5218220 0 2.015 0.000 41.345630 -91.130747 +52750 619 240 77963305 472441 30.102 0.182 41.937024 -90.397049 +52751 1054 418 128873436 212180 49.758 0.082 41.836435 -90.679785 +52752 515 213 984227 0 0.380 0.000 41.274726 -91.191222 +52753 5153 2181 64478931 4013252 24.895 1.550 41.628548 -90.385928 +52754 1274 578 184729827 1275885 71.325 0.493 41.346185 -91.225861 +52755 1928 815 156465323 1464935 60.412 0.566 41.478372 -91.438042 +52756 2133 857 110779391 328250 42.772 0.127 41.729401 -90.539115 +52757 201 86 3069924 0 1.185 0.000 41.803854 -90.379055 +52758 199 85 1608926 136965 0.621 0.053 41.742514 -90.437349 +52760 533 235 56930747 1969592 21.981 0.760 41.548655 -91.086807 +52761 30678 13071 458486848 24486760 177.023 9.454 41.438699 -91.063984 +52765 453 183 78185471 0 30.188 0.000 41.725473 -90.871502 +52766 820 366 117320623 2080925 45.298 0.803 41.467541 -91.295418 +52767 349 151 1725980 1628662 0.666 0.629 41.565852 -90.423456 +52768 1426 610 83537465 5943919 32.254 2.295 41.700680 -90.386997 +52769 671 278 106716539 9774 41.203 0.004 41.605804 -90.847235 +52772 5029 2279 339596319 2731777 131.119 1.055 41.755167 -91.143672 +52773 2380 1127 145770767 67038 56.282 0.026 41.621924 -90.752766 +52774 136 51 728977 0 0.281 0.000 41.906849 -90.595121 +52776 4947 1800 219106223 572685 84.597 0.221 41.575411 -91.268691 +52777 1357 598 139946616 0 54.034 0.000 41.854006 -90.856109 +52778 4043 1709 215809810 162565 83.325 0.063 41.609579 -90.990208 +52801 1122 728 939343 420565 0.363 0.162 41.521038 -90.574849 +52802 10868 4556 24767339 4527073 9.563 1.748 41.494514 -90.637187 +52803 22174 10305 13273300 794735 5.125 0.307 41.538947 -90.555977 +52804 27379 11433 87535930 1325492 33.798 0.512 41.532417 -90.681401 +52806 27503 11803 79448284 0 30.675 0.000 41.589689 -90.625902 +52807 13470 6439 76469440 0 29.525 0.000 41.610680 -90.516850 +53001 1901 796 76362304 713801 29.484 0.276 43.607877 -88.055245 +53002 2299 931 82291114 152573 31.773 0.059 43.463948 -88.352067 +53003 141 70 1213077 0 0.468 0.000 43.206569 -88.509682 +53004 3330 1341 91486480 2291437 35.323 0.885 43.497835 -87.875646 +53005 19425 7876 37737731 799143 14.571 0.309 43.062401 -88.098804 +53006 1779 722 106429970 532329 41.093 0.206 43.620098 -88.533555 +53007 1841 925 2011956 27737 0.777 0.011 43.108448 -88.072232 +53010 7681 3384 266580442 6569803 102.927 2.537 43.612528 -88.272017 +53011 2260 1119 102656543 1350336 39.636 0.521 43.659584 -88.091389 +53012 18097 7432 90849848 552763 35.077 0.213 43.314732 -88.034639 +53013 3308 1430 74680594 1838268 28.834 0.710 43.565318 -87.846917 +53014 7962 3595 331160999 2806710 127.862 1.084 44.026076 -88.176312 +53015 2609 1112 102880770 7266148 39.722 2.805 43.907689 -87.785999 +53016 384 159 1230537 527 0.475 0.000 43.310240 -88.710130 +53017 5538 2079 45291086 645626 17.487 0.249 43.201013 -88.251366 +53018 7899 2973 29831800 2565884 11.518 0.991 43.048165 -88.390515 +53019 2027 808 102833681 458282 39.704 0.177 43.697711 -88.321059 +53020 3500 1808 159244323 4187207 61.485 1.617 43.861777 -88.011415 +53021 4709 1860 85738814 1101059 33.104 0.425 43.494647 -88.009317 +53022 18920 7746 72232181 69044 27.889 0.027 43.232227 -88.115855 +53023 1496 610 104497170 1084606 40.347 0.419 43.780438 -88.106670 +53024 16579 7194 70790819 4447202 27.332 1.717 43.333530 -87.928563 +53027 22041 9189 239107180 2980408 92.320 1.151 43.317984 -88.372522 +53029 20799 8230 96259037 7259501 37.166 2.803 43.146603 -88.340998 +53031 43 13 23759 0 0.009 0.000 43.639144 -87.915628 +53032 4757 2080 83465758 6347055 32.226 2.451 43.449385 -88.625904 +53033 4885 1986 38020325 1010071 14.680 0.390 43.234938 -88.253996 +53034 1811 876 21610077 6807187 8.344 2.628 43.330168 -88.618784 +53035 2406 1010 91745167 1193247 35.423 0.461 43.390641 -88.546919 +53036 2720 1076 69382612 1369178 26.789 0.529 43.179661 -88.575045 +53037 9260 3977 59509119 212873 22.977 0.082 43.312363 -88.163160 +53038 4013 1626 78228973 1138696 30.204 0.440 43.084329 -88.787652 +53039 4863 1875 183463788 1665243 70.836 0.643 43.369846 -88.713347 +53040 8064 3280 168806762 489779 65.177 0.189 43.526965 -88.191027 +53042 6690 3093 159733656 2766124 61.674 1.068 43.956873 -87.972329 +53044 2297 946 10182713 162726 3.932 0.063 43.742514 -87.782195 +53045 21686 8994 37272515 515641 14.391 0.199 43.058938 -88.152779 +53046 1107 517 6271233 52332 2.421 0.020 43.157247 -88.157895 +53047 78 33 422653 0 0.163 0.000 43.257123 -88.630120 +53048 3364 1469 68676703 116631 26.516 0.045 43.573790 -88.457156 +53049 2451 1168 102843207 291009 39.708 0.112 43.886116 -88.288605 +53050 6986 3025 177537860 6245913 68.548 2.412 43.510549 -88.547354 +53051 35651 15159 85362174 1012151 32.959 0.391 43.159363 -88.121527 +53057 1928 665 85363928 1180208 32.959 0.456 43.788987 -88.244893 +53058 3243 1468 14967985 4717384 5.779 1.821 43.112242 -88.411504 +53059 1767 732 81690257 1510893 31.541 0.583 43.288569 -88.525133 +53061 5196 2317 118470428 235038 45.742 0.091 43.945458 -88.120622 +53063 1552 633 101353978 3216688 39.133 1.242 43.957651 -87.790583 +53065 2226 871 115949255 837918 44.768 0.324 43.679777 -88.571629 +53066 33830 14171 273759117 23949115 105.699 9.247 43.112853 -88.490036 +53069 697 429 1004733 692756 0.388 0.267 43.110890 -88.435005 +53070 4713 2086 73783061 7157087 28.488 2.763 43.620430 -87.807118 +53072 23907 10844 75600903 10773405 29.190 4.160 43.081609 -88.270816 +53073 15757 6380 210992270 2293621 81.465 0.886 43.750854 -87.988185 +53074 12880 5692 78062591 5408408 30.140 2.088 43.419850 -87.884515 +53075 3345 1409 93906611 1580584 36.258 0.610 43.564515 -87.990969 +53076 3648 1337 57460366 0 22.186 0.000 43.268398 -88.207066 +53078 1912 723 87327565 627578 33.717 0.242 43.317703 -88.466213 +53079 1413 655 88088853 1297035 34.011 0.501 43.813683 -88.180169 +53080 5715 2378 74325266 1517956 28.697 0.586 43.405793 -87.986330 +53081 43129 19696 65853648 11716930 25.426 4.524 43.710110 -87.735217 +53083 20362 8675 84014243 9264829 32.438 3.577 43.815871 -87.764212 +53085 11267 5127 184218461 1593720 71.127 0.615 43.732821 -87.855577 +53086 8255 3390 55629542 563510 21.479 0.218 43.317652 -88.271254 +53088 379 200 3419771 6824 1.320 0.003 44.070499 -88.300913 +53089 18568 7251 70538528 724594 27.235 0.280 43.144615 -88.233772 +53090 21873 8850 145208159 1502700 56.065 0.580 43.462856 -88.188952 +53091 2018 875 66744526 1168546 25.770 0.451 43.499624 -88.434562 +53092 20024 8794 52820381 4326175 20.394 1.670 43.214964 -87.951218 +53093 1981 760 51978774 551547 20.069 0.213 43.652874 -87.947950 +53094 19169 7584 232275024 4239850 89.682 1.637 43.143320 -88.723069 +53095 27139 11971 186125014 5692543 71.863 2.198 43.389630 -88.158004 +53097 6319 1976 69821442 2143967 26.958 0.828 43.242049 -88.009823 +53098 11965 5087 267581741 2553473 103.314 0.986 43.253742 -88.710584 +53103 3724 1418 33362731 1414543 12.881 0.546 42.881555 -88.212849 +53104 5426 2301 82530339 1209579 31.865 0.467 42.547457 -88.039280 +53105 29225 12424 407704884 6673311 157.416 2.577 42.663216 -88.280346 +53108 3329 1382 51176919 219872 19.760 0.085 42.815000 -87.943306 +53110 18320 8688 12349506 1855713 4.768 0.716 42.948443 -87.860803 +53114 2678 1009 89869754 430918 34.699 0.166 42.596990 -88.751804 +53115 15788 8320 184314329 9357133 71.164 3.613 42.656603 -88.668293 +53118 7202 2935 97167230 2851704 37.516 1.101 42.962493 -88.491540 +53119 5608 2089 100078740 2287925 38.641 0.883 42.893005 -88.485525 +53120 9679 4350 149599459 5417246 57.761 2.092 42.809128 -88.422434 +53121 19045 8442 298440439 5692024 115.229 2.198 42.717008 -88.535398 +53122 5985 2534 8472040 47576 3.271 0.018 43.047520 -88.087029 +53125 1895 2599 14135069 4860895 5.458 1.877 42.550039 -88.554372 +53126 6431 2495 135305185 501861 52.242 0.194 42.794482 -87.997744 +53128 8947 4088 65791738 3344767 25.402 1.291 42.526865 -88.336227 +53129 13973 6262 13331607 22101 5.147 0.009 42.939993 -88.000857 +53130 7755 3536 8317785 16322 3.212 0.006 42.941233 -88.049449 +53132 34863 14025 90111017 271787 34.792 0.105 42.883879 -88.011548 +53137 1702 674 83735772 32929 32.331 0.013 43.007883 -88.669078 +53139 2802 1267 77640756 2246744 29.977 0.867 42.685512 -88.120797 +53140 30017 13120 22383948 1728140 8.642 0.667 42.622309 -87.828803 +53142 32375 12926 56052016 182877 21.642 0.071 42.518443 -87.982634 +53143 23264 9609 10807605 500221 4.173 0.193 42.561312 -87.829930 +53144 27256 10560 113331458 36102 43.758 0.014 42.615013 -87.922461 +53146 7458 2947 47507207 724452 18.343 0.280 42.973705 -88.155385 +53147 16457 10241 184207203 19539318 71.123 7.544 42.565922 -88.457346 +53149 19057 7442 152093930 6949821 58.724 2.683 42.878090 -88.342088 +53150 24850 9765 86631043 11127760 33.448 4.296 42.871352 -88.134318 +53151 31987 13785 45975308 396860 17.751 0.153 42.974779 -88.098607 +53153 2328 875 10667911 137143 4.119 0.053 42.934471 -88.407089 +53154 34451 14754 73816827 3040120 28.501 1.174 42.878693 -87.898676 +53156 2992 1404 83471082 1255385 32.228 0.485 42.889865 -88.588838 +53158 15917 6136 78603398 3823069 30.349 1.476 42.524360 -87.885530 +53167 399 184 558002 64771 0.215 0.025 42.744549 -88.228216 +53168 8643 3709 91124370 1993813 35.183 0.770 42.575072 -88.135698 +53170 2380 1053 2669607 2096816 1.031 0.810 42.550836 -88.153803 +53172 21156 9722 12428179 2229559 4.799 0.861 42.911998 -87.859664 +53177 8329 2807 70651319 121361 27.279 0.047 42.704212 -87.932874 +53178 2626 1175 80761002 2765877 31.182 1.068 43.029545 -88.596788 +53179 6310 2596 27865212 3462446 10.759 1.337 42.513801 -88.130588 +53181 7357 3774 36131181 4062929 13.950 1.569 42.512663 -88.243347 +53182 9412 3550 147049968 164989 56.776 0.064 42.702391 -88.041279 +53183 2815 1080 9225476 13890 3.562 0.005 43.005837 -88.370357 +53184 4271 1760 75912448 191305 29.310 0.074 42.526240 -88.605447 +53185 18551 7515 118924971 10708740 45.917 4.135 42.798205 -88.194451 +53186 33592 14339 32557513 280506 12.571 0.108 43.022155 -88.204676 +53188 35195 14822 71303789 940251 27.531 0.363 43.022273 -88.292435 +53189 26228 10018 122683346 2552487 47.368 0.986 42.944023 -88.291030 +53190 19200 7469 347822696 5265749 134.295 2.033 42.807771 -88.736201 +53191 2842 2133 10044201 2186351 3.878 0.844 42.579924 -88.544677 +53192 217 102 2808188 114734 1.084 0.044 42.502590 -88.184228 +53195 114 47 841628 0 0.325 0.000 42.513993 -88.490181 +53202 23386 16804 5267236 2855825 2.034 1.103 43.045121 -87.891881 +53203 938 708 1156887 62379 0.447 0.024 43.038097 -87.916734 +53204 42355 14477 8503810 224507 3.283 0.087 43.018587 -87.926053 +53205 10050 4005 3657413 0 1.412 0.000 43.053462 -87.933810 +53206 28210 11625 6971563 0 2.692 0.000 43.075126 -87.933676 +53207 35149 17038 25461406 4193118 9.831 1.619 42.977392 -87.898851 +53208 31133 14410 10107676 38422 3.903 0.015 43.047073 -87.967198 +53209 46917 20706 28207403 182486 10.891 0.070 43.127780 -87.949473 +53210 28126 11403 6591578 0 2.545 0.000 43.068840 -87.973764 +53211 35406 16474 10101822 1921659 3.900 0.742 43.082414 -87.881444 +53212 30416 14833 10491872 280380 4.051 0.108 43.073857 -87.908604 +53213 26020 12233 10445577 0 4.033 0.000 43.048802 -88.001511 +53214 34725 16929 18835092 14646 7.272 0.006 43.020327 -88.012870 +53215 60953 21135 14658668 31918 5.660 0.012 42.999261 -87.943078 +53216 32264 13913 12012155 0 4.638 0.000 43.086390 -87.976383 +53217 29192 12544 36701601 6241954 14.171 2.410 43.157299 -87.913268 +53218 40625 15347 15217503 17008 5.876 0.007 43.113720 -87.992980 +53219 33880 16144 12812754 15790 4.947 0.006 42.995181 -87.993688 +53220 26303 12383 14337480 0 5.536 0.000 42.965204 -87.991368 +53221 37701 16596 23848404 37481 9.208 0.014 42.953909 -87.943306 +53222 25165 11748 14347675 9179 5.540 0.004 43.083208 -88.036041 +53223 29230 13213 26365824 178993 10.180 0.069 43.163455 -87.990496 +53224 21284 8477 25425329 2425 9.817 0.001 43.163330 -88.039699 +53225 25706 10501 17815378 13463 6.879 0.005 43.115154 -88.042944 +53226 18370 8514 17820887 400 6.881 0.000 43.049005 -88.042230 +53227 23357 11533 13185622 30353 5.091 0.012 42.995814 -88.042017 +53228 14369 6628 13468635 14778 5.200 0.006 42.969046 -88.043224 +53233 16453 5990 4380569 0 1.691 0.000 43.036919 -87.933823 +53235 9270 4794 6575661 1796308 2.539 0.694 42.973107 -87.867895 +53295 359 1 606085 0 0.234 0.000 43.022478 -87.976072 +53402 33174 14195 53036033 12763143 20.477 4.928 42.795888 -87.816532 +53403 27432 11875 24695446 9716642 9.535 3.752 42.684188 -87.815533 +53404 15658 6225 11534160 440291 4.453 0.170 42.754054 -87.811291 +53405 25193 10997 16853150 313702 6.507 0.121 42.726918 -87.830175 +53406 25845 11577 42921587 210364 16.572 0.081 42.734537 -87.864892 +53501 23 9 168878 0 0.065 0.000 42.606210 -89.065499 +53502 2421 1079 132599437 328308 51.197 0.127 42.730406 -89.438069 +53503 1947 868 146107000 3918944 56.412 1.513 43.142976 -89.957507 +53504 2084 940 236310658 2052068 91.240 0.792 42.703516 -89.860349 +53505 354 151 47697268 2673 18.416 0.001 42.661039 -88.820854 +53506 1125 630 163949815 4783690 63.301 1.847 43.159394 -90.281219 +53507 2196 886 162986388 63154 62.929 0.024 42.995428 -89.896540 +53508 5262 2151 179882451 1018989 69.453 0.393 42.865677 -89.573525 +53510 1482 620 108874206 249522 42.037 0.096 42.745356 -90.305238 +53511 48929 20241 286177718 3571903 110.494 1.379 42.554101 -89.094465 +53515 2268 980 96023386 144679 37.075 0.056 43.115023 -89.739283 +53516 2152 971 215531579 55767 83.217 0.022 42.796638 -89.873630 +53517 1752 714 114755774 298 44.307 0.000 43.056983 -89.832329 +53518 1330 753 194108469 8466809 74.946 3.269 43.240989 -90.595130 +53520 6810 2894 318337257 1919425 122.911 0.741 42.596822 -89.352736 +53521 3656 1429 158596942 484675 61.235 0.187 42.838105 -89.400302 +53522 1085 485 100323255 365790 38.735 0.141 42.556909 -89.783490 +53523 4949 2389 125544342 3215048 48.473 1.241 42.984371 -89.028857 +53525 4052 1598 144643131 389069 55.847 0.150 42.544538 -88.858656 +53526 565 249 21100011 0 8.147 0.000 42.974051 -90.343606 +53527 9963 3739 93091922 82350 35.943 0.032 43.051357 -89.192257 +53528 5734 2342 121167181 911419 46.783 0.352 43.118300 -89.638014 +53529 2031 762 94687859 638305 36.559 0.246 43.242578 -89.514652 +53530 4566 1927 345724398 0 133.485 0.000 42.693829 -90.105890 +53531 4338 1639 109605746 196322 42.319 0.076 43.062216 -89.102393 +53532 13606 5335 140148341 815052 54.112 0.315 43.250086 -89.326211 +53533 7276 3199 372661431 940385 143.885 0.363 42.995020 -90.158915 +53534 11512 5492 210581609 8005809 81.306 3.091 42.860824 -89.093310 +53536 8503 3456 244917791 1102239 94.563 0.426 42.761448 -89.267911 +53537 781 317 2263842 0 0.874 0.000 42.672419 -89.210322 +53538 18468 8154 256977270 24474060 99.219 9.449 42.920046 -88.857150 +53540 169 81 3546448 0 1.369 0.000 43.229262 -90.284915 +53541 861 406 160376872 0 61.922 0.000 42.566140 -90.029362 +53543 1641 744 205882201 860645 79.492 0.332 43.053960 -90.351857 +53544 800 351 103599863 17224 40.000 0.007 42.877560 -89.905663 +53545 23117 10484 64169107 1101354 24.776 0.425 42.738888 -89.040300 +53546 30648 13110 214058151 995767 82.648 0.384 42.652244 -88.948166 +53548 18558 8042 185036258 1943470 71.443 0.750 42.682985 -89.124673 +53549 10414 4365 180985016 2581235 69.879 0.997 42.984505 -88.765614 +53550 1239 481 124109365 18544 47.919 0.007 42.552572 -89.494262 +53551 8273 3908 109372494 6317743 42.229 2.439 43.081815 -88.915650 +53553 624 266 22579552 0 8.718 0.000 42.907833 -90.302176 +53554 1134 443 121170670 13077 46.784 0.005 42.908663 -90.440680 +53555 8465 4127 206539537 17800230 79.745 6.873 43.320142 -89.555808 +53556 2594 1202 120540517 2638664 46.541 1.019 43.238200 -90.245275 +53557 482 226 14609734 459100 5.641 0.177 43.338952 -88.797653 +53558 10742 4438 44923981 2624650 17.345 1.013 42.997170 -89.275479 +53559 6063 2350 164890188 1707465 63.664 0.659 43.165583 -89.081878 +53560 3458 1519 152657980 2147738 58.942 0.829 43.192255 -89.737666 +53561 1618 1161 93403954 9061437 36.063 3.499 43.394951 -89.638621 +53562 23627 11053 82448717 447267 31.834 0.173 43.115976 -89.543636 +53563 10728 4517 167311972 24113209 64.600 9.310 42.804501 -88.916009 +53565 4765 2183 473638425 280095 182.873 0.108 42.833363 -90.165771 +53566 15217 6808 399381013 37862 154.202 0.015 42.607782 -89.649858 +53569 1155 493 114360697 28604 44.155 0.011 42.989029 -90.438953 +53570 2627 1139 186330583 41694 71.943 0.016 42.737195 -89.619882 +53571 280 115 1051935 0 0.406 0.000 43.277997 -89.353226 +53572 9970 4010 269518984 51217 104.062 0.020 42.961103 -89.733649 +53573 3062 1582 282024490 1849845 108.890 0.714 43.187505 -90.459136 +53574 3877 1574 107173085 0 41.380 0.000 42.816517 -89.650170 +53575 15494 5933 141524486 1394787 54.643 0.539 42.933063 -89.390551 +53576 2319 947 81096378 165368 31.311 0.064 42.625684 -89.233172 +53577 1371 620 118949533 91844 45.927 0.035 43.311608 -90.064349 +53578 5924 2535 127495431 2945979 49.226 1.137 43.327442 -89.775538 +53579 1760 771 110870989 1940239 42.808 0.749 43.295981 -88.867735 +53580 564 241 53534640 0 20.670 0.000 42.859809 -90.378045 +53581 10699 5144 616570917 278455 238.059 0.108 43.372460 -90.414095 +53582 1079 505 88614884 60788 34.214 0.023 43.018376 -89.978808 +53583 5747 2490 197427721 9401521 76.227 3.630 43.250531 -89.804480 +53585 2215 957 70635598 0 27.273 0.000 42.529624 -88.715607 +53586 2284 1001 260120296 0 100.433 0.000 42.573089 -90.226681 +53587 1290 553 149803212 91696 57.839 0.035 42.580307 -89.904145 +53588 4077 1974 355325422 10318278 137.192 3.984 43.193739 -90.086262 +53589 19427 8422 218255494 15824834 84.269 6.110 42.924555 -89.212885 +53590 36294 14934 172920088 804244 66.765 0.311 43.200235 -89.205195 +53593 19225 7858 186227918 645557 71.903 0.249 42.985198 -89.579337 +53594 5144 2151 183047581 1540252 70.675 0.595 43.190847 -88.973812 +53597 16844 6518 134205304 876093 51.817 0.338 43.183434 -89.457307 +53598 2511 1030 8931319 88803 3.448 0.034 43.210119 -89.338331 +53599 69 38 624263 33335 0.241 0.013 42.647308 -89.857206 +53702 50 32 43101 0 0.017 0.000 43.060926 -88.230636 +53703 27958 15128 4713532 76610 1.820 0.030 43.079575 -89.378389 +53704 44034 21500 58035117 2068513 22.407 0.799 43.136269 -89.347319 +53705 23494 12224 17049538 63468 6.583 0.025 43.074014 -89.460509 +53706 5133 56 1369089 3186 0.529 0.001 43.074397 -89.411502 +53711 45728 20074 66094206 8985625 25.519 3.469 43.009613 -89.417670 +53713 22146 10193 27016328 2509519 10.431 0.969 43.036157 -89.387108 +53714 16463 7391 11936833 67490 4.609 0.026 43.100348 -89.311966 +53715 12136 4893 3133142 503 1.210 0.000 43.068490 -89.401708 +53716 18419 8584 17028548 160125 6.575 0.062 43.065163 -89.313783 +53717 11962 6082 9449002 44280 3.648 0.017 43.074335 -89.519890 +53718 11753 5581 51972443 66687 20.067 0.026 43.093146 -89.276619 +53719 28487 13330 26135370 245636 10.091 0.095 43.045313 -89.515378 +53726 5177 2339 1287131 0 0.497 0.000 43.069849 -89.422525 +53792 0 0 52522 0 0.020 0.000 43.077533 -89.430660 +53801 878 779 153185532 16987976 59.145 6.559 42.924819 -91.074574 +53802 58 33 2465314 0 0.952 0.000 42.805790 -90.888563 +53803 1306 575 31769359 0 12.266 0.000 42.559514 -90.353641 +53804 1372 568 131117184 0 50.625 0.000 42.874928 -90.907869 +53805 5269 2304 360282579 5219395 139.106 2.015 43.143528 -90.687293 +53806 1831 1020 179763168 18388647 69.407 7.100 42.729901 -90.919927 +53807 4843 1970 276166929 136167 106.629 0.053 42.616835 -90.472701 +53808 1049 467 2197115 0 0.848 0.000 42.626310 -90.593133 +53809 4120 1749 262325943 0 101.285 0.000 42.993767 -90.633652 +53810 429 206 95444956 3308369 36.852 1.277 42.820785 -91.001945 +53811 3371 1333 125643971 6031179 48.511 2.329 42.533572 -90.499950 +53813 6075 2624 382646033 28412 147.740 0.011 42.844234 -90.721223 +53816 810 367 156269712 0 60.336 0.000 42.978845 -90.854380 +53817 205 95 4036955 0 1.559 0.000 42.945082 -90.967680 +53818 15091 5329 397564919 49176 153.501 0.019 42.745660 -90.492495 +53820 2532 1123 232959989 38011512 89.946 14.676 42.695133 -90.708918 +53821 8456 4131 268068769 15958623 103.502 6.162 43.049076 -91.057334 +53825 487 188 79870364 0 30.838 0.000 42.918230 -90.590628 +53826 1332 616 185211177 2546600 71.510 0.983 43.113417 -90.918607 +53827 292 151 87982847 1962336 33.970 0.758 43.045865 -90.820473 +53901 14445 6666 367678663 23979629 141.962 9.259 43.561484 -89.482922 +53910 3508 2097 159285751 1047997 61.501 0.405 43.886723 -89.807759 +53911 1351 573 92488199 819551 35.710 0.316 43.325821 -89.367495 +53913 19881 9424 340557424 9914104 131.490 3.828 43.492840 -89.728705 +53916 22507 10150 260209391 26022639 100.467 10.047 43.466797 -88.867753 +53919 2629 1028 178171966 897826 68.793 0.347 43.733861 -88.776015 +53920 414 348 20544527 3905227 7.932 1.508 43.665514 -89.594938 +53922 1036 432 118590981 1917716 45.788 0.740 43.520930 -88.715147 +53923 2098 848 200107002 1449994 77.262 0.560 43.574139 -89.138363 +53924 1360 664 181098819 245633 69.923 0.095 43.483411 -90.261729 +53925 7781 3426 325118143 1937939 125.529 0.748 43.326711 -89.057123 +53926 1628 544 125370101 2070133 48.406 0.799 43.666882 -89.222839 +53928 128 49 725604 878 0.280 0.000 43.427058 -89.156780 +53929 2782 1321 207073256 133053 79.951 0.051 43.751417 -90.283608 +53930 1285 561 104381115 1261109 40.302 0.487 43.691693 -89.486834 +53931 237 106 2189077 42169 0.845 0.016 43.743585 -88.861263 +53932 2573 1042 96127628 1502105 37.115 0.580 43.422362 -89.055328 +53933 4117 1699 96515090 15056841 37.265 5.813 43.584013 -88.875253 +53934 4396 4051 311991688 20459013 120.461 7.899 43.988277 -89.820217 +53935 307 122 2591802 28957 1.001 0.011 43.587632 -89.065550 +53936 1610 1116 153496551 455828 59.265 0.176 43.868893 -89.707306 +53937 1053 428 133046073 523282 51.369 0.202 43.386917 -90.145434 +53939 244 119 1413802 551678 0.546 0.213 43.690429 -89.130646 +53941 2932 1940 180798273 4894232 69.807 1.890 43.570007 -90.161058 +53943 1065 453 126403820 356597 48.805 0.138 43.386819 -90.035254 +53944 2224 1244 201042866 5135403 77.623 1.983 43.685886 -89.928668 +53946 4386 2595 327342935 33783469 126.388 13.044 43.712453 -89.020812 +53947 137 159 668068 0 0.258 0.000 43.746775 -89.139926 +53948 8414 4294 381375355 8241773 147.250 3.182 43.776559 -90.040249 +53949 6011 4181 439578229 15377302 169.722 5.937 43.783202 -89.336006 +53950 5449 2875 267192191 9203254 103.163 3.553 43.901142 -90.137808 +53951 2601 1139 189641779 1577269 73.221 0.609 43.387892 -89.876273 +53952 4377 2247 245047849 2991399 94.614 1.155 43.783202 -89.597367 +53953 282 158 6425479 0 2.481 0.000 43.772537 -89.468292 +53954 6926 3042 205309431 7045758 79.270 2.720 43.551488 -89.313888 +53955 5692 2825 191541887 14481780 73.955 5.591 43.406614 -89.416632 +53956 3397 1409 203472011 2075907 78.561 0.802 43.542123 -89.017224 +53959 13384 5828 286066011 2238128 110.451 0.864 43.533502 -89.999636 +53960 3268 1451 234220025 5164227 90.433 1.994 43.426124 -89.235381 +53961 837 354 62082319 966877 23.970 0.373 43.457619 -89.927555 +53963 13910 4674 216985006 3895352 83.778 1.504 43.639467 -88.743298 +53964 3604 2122 293176715 1943489 113.196 0.750 43.912582 -89.512502 +53965 10398 6641 438395910 12495529 169.266 4.825 43.671422 -89.748134 +53968 2329 1111 186577151 304059 72.038 0.117 43.646122 -90.227850 +53969 419 155 2394590 353481 0.925 0.136 43.493215 -89.301216 +54001 8155 4254 299874596 17390925 115.782 6.715 45.334330 -92.386607 +54002 6278 2590 195764007 774051 75.585 0.299 44.962668 -92.371146 +54003 1013 411 75035722 180664 28.971 0.070 44.796140 -92.440067 +54004 2317 1066 217656111 2170808 84.037 0.838 45.302220 -92.125177 +54005 3056 1301 206147666 1117668 79.594 0.432 45.236119 -92.227501 +54006 743 374 70418436 3393164 27.189 1.310 45.590697 -92.646689 +54007 1188 497 122193233 1065192 47.179 0.411 45.190329 -92.352940 +54009 2509 1095 83503714 5779657 32.241 2.232 45.352521 -92.577819 +54010 50 35 35434 0 0.014 0.000 44.734316 -92.465629 +54011 6819 2812 266514233 545140 102.902 0.210 44.718295 -92.464636 +54013 3475 1419 262820066 970572 101.475 0.375 45.082950 -92.228166 +54014 2232 976 112232672 9500467 43.333 3.668 44.648721 -92.572748 +54015 3586 1341 97888242 115907 37.795 0.045 44.971881 -92.465001 +54016 30108 11892 176615808 15199936 68.192 5.869 44.981117 -92.694860 +54017 16743 6899 358432687 6783770 138.392 2.619 45.120051 -92.519801 +54020 7260 3218 196013982 7004728 75.681 2.705 45.274846 -92.641761 +54021 6622 2674 115347552 5300565 44.536 2.047 44.734174 -92.706319 +54022 22358 8281 363487645 4287174 140.343 1.655 44.847472 -92.606877 +54023 3833 1503 106978789 786755 41.305 0.304 44.981772 -92.554736 +54024 4811 2640 218359057 7615905 84.309 2.941 45.501700 -92.640733 +54025 6864 2692 125872409 4086113 48.600 1.578 45.143999 -92.688729 +54026 1809 904 71841349 5345887 27.738 2.064 45.227679 -92.535048 +54027 989 410 77441741 3750 29.900 0.001 44.919366 -92.192828 +54028 2493 1025 106885024 474441 41.269 0.183 44.955033 -92.283616 +54082 1696 689 35073138 1672394 13.542 0.646 45.068040 -92.749369 +54101 2751 1142 137208083 90613 52.976 0.035 44.785785 -88.075082 +54102 875 1454 254757148 4778698 98.362 1.845 45.501060 -87.978271 +54103 418 554 193290853 2045276 74.630 0.790 45.636396 -88.520774 +54104 1051 2540 527185377 5916442 203.547 2.284 45.448633 -88.283014 +54106 4997 1984 237269971 602092 91.610 0.232 44.485462 -88.456588 +54107 3727 1512 190803770 909780 73.670 0.351 44.698802 -88.456974 +54110 5338 2201 167289783 1751953 64.591 0.676 44.187689 -88.075127 +54111 2132 1165 136596226 5139773 52.740 1.984 44.812344 -88.380546 +54112 2284 1124 162605253 1382640 62.782 0.534 45.054734 -88.054619 +54113 3325 1263 4488252 453353 1.733 0.175 44.264256 -88.306749 +54114 5178 6352 635822999 25279319 245.493 9.760 45.246006 -88.109200 +54115 41178 16552 325225571 5799520 125.570 2.239 44.397984 -88.096333 +54119 1083 850 242799365 2448212 93.745 0.945 45.607459 -88.159732 +54120 245 647 253175720 2576530 97.752 0.995 45.803402 -88.569386 +54121 2982 3139 677231717 15004908 261.481 5.793 45.867774 -88.321401 +54123 238 100 1296913 2890 0.501 0.001 44.211628 -88.142532 +54124 3881 1978 243818478 6278159 94.139 2.424 44.908023 -88.345233 +54125 519 576 191866167 2832249 74.080 1.094 45.586683 -88.383335 +54126 3625 1393 196909365 335327 76.027 0.129 44.291905 -88.050723 +54127 76 35 218662 0 0.084 0.000 44.796395 -88.269602 +54128 1778 949 134233437 2664716 51.828 1.029 44.869100 -88.804298 +54129 3477 1455 187421416 835588 72.364 0.323 44.131580 -88.194198 +54130 25108 10256 206521689 2884501 79.738 1.114 44.311313 -88.244310 +54135 3096 1786 208312526 8993523 80.430 3.472 44.927379 -88.607936 +54136 6406 2845 5356067 403643 2.068 0.156 44.268219 -88.338535 +54137 1115 458 67760383 0 26.162 0.000 44.756813 -88.255012 +54138 821 1436 188923511 3841946 72.944 1.483 45.333616 -88.408968 +54139 3096 1375 248067331 939560 95.779 0.363 44.956844 -88.075505 +54140 8533 3580 8204898 533784 3.168 0.206 44.286515 -88.309229 +54141 2549 1141 67413952 12641520 26.029 4.881 44.728584 -87.998318 +54143 15225 7404 175555549 15929754 67.782 6.151 45.076199 -87.698882 +54149 1184 1960 324476270 6186589 125.281 2.389 45.196483 -88.462371 +54150 1037 329 44368437 1078598 17.131 0.416 44.997641 -88.853758 +54151 3556 2017 312468792 5528244 120.645 2.134 45.725441 -87.988217 +54153 7252 3415 262053736 14464011 101.180 5.585 44.898083 -87.916035 +54154 5548 2483 215817675 2436980 83.328 0.941 44.873690 -88.182068 +54155 5451 1927 89029134 142244 34.374 0.055 44.527495 -88.200548 +54156 1535 2024 353131247 4896956 136.345 1.891 45.628708 -88.024459 +54157 5986 2767 229692574 7478898 88.685 2.888 45.040575 -87.821437 +54159 1434 818 163239017 919571 63.027 0.355 45.193358 -87.838864 +54160 253 99 1176346 35845 0.454 0.014 44.121053 -88.100069 +54161 2696 2246 322316848 10247264 124.447 3.956 45.122213 -88.162416 +54162 9065 3538 295361352 247645 114.040 0.096 44.662540 -88.270904 +54165 7539 3071 241904540 118997 93.400 0.046 44.516600 -88.321789 +54166 17002 8992 365953518 28081643 141.295 10.842 44.778797 -88.634549 +54169 2600 987 8845985 149178 3.415 0.058 44.176686 -88.280739 +54170 3730 1584 296162411 6846865 114.349 2.644 44.536158 -88.577197 +54171 3362 1222 60022168 14378 23.175 0.006 44.715231 -88.096472 +54173 4095 1609 36473799 617762 14.083 0.239 44.639090 -88.030522 +54174 3013 2438 494834711 6900942 191.057 2.664 45.036912 -88.424393 +54175 1018 1920 140501399 10970694 54.248 4.236 45.309010 -88.622967 +54177 2898 2909 445280823 14383293 171.924 5.553 45.384819 -87.882986 +54180 2861 1103 10622464 636240 4.101 0.246 44.326334 -88.173915 +54201 5345 2795 193995326 5256363 74.902 2.029 44.624327 -87.495679 +54202 1240 1711 107483856 5645395 41.500 2.180 45.087300 -87.140045 +54204 1819 1025 123307240 40417 47.609 0.016 44.755492 -87.605295 +54205 2177 850 106805144 17898 41.238 0.007 44.596202 -87.632423 +54207 176 69 2561063 1212 0.989 0.000 44.087627 -87.989005 +54208 6061 2526 265068121 2571966 102.343 0.993 44.363565 -87.799595 +54209 1195 2175 101995429 2191584 39.381 0.846 45.017946 -87.270394 +54210 897 1326 69091012 8675942 26.676 3.350 45.246457 -87.036178 +54211 277 647 9181966 966 3.545 0.000 45.160359 -87.166369 +54212 997 1582 85277348 2251048 32.926 0.869 45.109775 -87.209029 +54213 1276 580 94962292 594564 36.665 0.230 44.695177 -87.528256 +54214 334 149 737784 0 0.285 0.000 44.197537 -87.713043 +54216 6276 2904 280596868 14739946 108.339 5.691 44.438598 -87.569911 +54217 7405 3207 292328478 3020556 112.869 1.166 44.552207 -87.719966 +54220 40220 18674 255443775 13769290 98.627 5.316 44.101813 -87.722744 +54227 1568 631 81071338 608279 31.302 0.235 44.279501 -87.807853 +54228 2682 1196 104150294 615443 40.213 0.238 44.268999 -87.652873 +54229 4306 1657 106287458 29435 41.038 0.011 44.560061 -87.815517 +54230 4782 1939 284384169 2676395 109.801 1.033 44.160234 -87.915906 +54232 779 344 1931152 58738 0.746 0.023 44.006836 -87.923954 +54234 1614 2247 62257236 18873 24.038 0.007 45.181963 -87.101510 +54235 17203 11255 497675974 36394603 192.154 14.052 44.840884 -87.372795 +54241 14884 7109 171628123 15130164 66.266 5.842 44.215871 -87.594706 +54245 2259 1026 105047165 1420973 40.559 0.549 44.030924 -87.898061 +54246 708 1015 65998149 270410 25.482 0.104 45.373163 -86.899359 +54247 2339 979 88084091 497144 34.009 0.192 44.199973 -87.790095 +54301 22742 10348 16971584 1869357 6.553 0.722 44.480778 -88.016063 +54302 30611 13438 24737298 686281 9.551 0.265 44.507653 -87.976828 +54303 27041 12747 28322639 607109 10.935 0.234 44.538066 -88.048764 +54304 28153 13146 30361862 1662445 11.723 0.642 44.493498 -88.068478 +54307 1092 0 188932 0 0.073 0.000 44.470363 -88.036686 +54311 33580 13304 166021612 547283 64.101 0.211 44.479887 -87.892181 +54313 35897 13769 154362820 3115082 59.600 1.203 44.586363 -88.115165 +54401 30702 13899 215678441 5039470 83.274 1.946 44.963304 -89.704051 +54403 24272 10754 346472235 2829976 133.774 1.093 45.018422 -89.525216 +54405 3032 1205 77477291 13537 29.914 0.005 44.967020 -90.287220 +54406 3469 1480 173708589 1439080 67.069 0.556 44.412217 -89.304930 +54407 1515 720 121697208 2917242 46.988 1.126 44.532182 -89.281795 +54408 1068 467 115225424 528529 44.489 0.204 45.025581 -89.323997 +54409 13238 6192 549546638 3083378 212.181 1.190 45.122200 -89.170828 +54410 2392 907 171866742 40534 66.358 0.016 44.542287 -90.030459 +54411 5406 2041 492537494 38895 190.170 0.015 45.062560 -90.033418 +54412 2181 919 187291986 6082457 72.314 2.348 44.663270 -89.974151 +54413 191 144 81215896 902276 31.358 0.348 44.284015 -90.131250 +54414 3404 1555 333615218 1414029 128.810 0.546 44.959673 -89.176857 +54416 1684 857 214947766 426552 82.992 0.165 44.877732 -88.947663 +54417 46 22 804780 184415 0.311 0.071 45.026617 -89.653673 +54418 1080 548 302379880 2362001 116.750 0.912 45.220630 -88.940257 +54420 1307 485 99622861 365728 38.465 0.141 44.610077 -90.350683 +54421 3455 1316 183461522 269017 70.835 0.104 44.895191 -90.288689 +54422 1209 411 100423910 221490 38.774 0.086 44.985893 -90.457501 +54423 2343 939 138359172 1697373 53.421 0.655 44.585282 -89.421676 +54424 1651 1358 425263888 10783478 164.195 4.164 45.286659 -89.192153 +54425 2036 822 114187986 320127 44.088 0.124 45.006838 -90.341197 +54426 4479 1717 280611348 505551 108.345 0.195 44.907469 -90.009790 +54427 1099 494 116163154 559611 44.851 0.216 44.817219 -89.258344 +54428 1127 1405 169013163 10898593 65.256 4.208 45.421166 -89.135714 +54430 135 82 12610069 307953 4.869 0.119 45.147659 -88.873132 +54433 1845 1016 415669864 11370102 160.491 4.390 45.195073 -90.815821 +54435 2010 1740 568318813 9078148 219.429 3.505 45.360466 -89.438199 +54436 2203 933 276468584 1003688 106.745 0.388 44.534726 -90.427296 +54437 3077 1314 308222270 2721191 119.005 1.051 44.777208 -90.629136 +54440 2964 1344 218879981 2957076 84.510 1.142 44.811220 -89.383375 +54441 828 313 2458256 0 0.949 0.000 44.642520 -90.104884 +54442 1177 683 192383430 2604155 74.280 1.005 45.358854 -89.658980 +54443 2137 981 234832012 9365287 90.669 3.616 44.608922 -89.751725 +54446 3123 1193 198019282 425537 76.456 0.164 44.747785 -90.466411 +54447 498 268 80497662 144921 31.080 0.056 45.085986 -90.747239 +54448 4249 1774 230551620 172160 89.016 0.066 44.933628 -89.830205 +54449 26418 12345 441536440 806006 170.478 0.311 44.638415 -90.208267 +54450 436 189 4320483 0 1.668 0.000 45.004292 -89.040970 +54451 11755 5735 899555736 4744090 347.320 1.832 45.197390 -90.407651 +54452 19360 9099 1145363943 15784259 442.228 6.094 45.217191 -89.793254 +54454 1279 526 118071004 1091762 45.587 0.422 44.606715 -89.882882 +54455 17029 7187 595972938 50237205 230.106 19.397 44.766821 -89.684474 +54456 6085 3199 574810855 6149593 221.936 2.374 44.544396 -90.632781 +54457 8539 6012 350936582 41457066 135.497 16.007 44.214082 -89.900133 +54458 124 53 1739619 31901 0.672 0.012 44.497176 -89.305963 +54459 1148 1028 358820084 3010028 138.541 1.162 45.413177 -90.237492 +54460 2746 1061 220650465 2600115 85.194 1.004 44.938782 -90.543199 +54462 348 383 105262508 5163823 40.642 1.994 45.392002 -89.007393 +54463 684 1049 207760039 17865454 80.217 6.898 45.502530 -89.219035 +54465 536 1045 72558933 10388955 28.015 4.011 45.383296 -88.891217 +54466 2815 1560 787054304 14184500 303.883 5.477 44.379773 -90.306505 +54467 13635 5793 178759437 2712575 69.019 1.047 44.413919 -89.538901 +54469 1792 728 6581149 935231 2.541 0.361 44.345145 -89.874045 +54470 2068 1173 273513951 2887941 105.604 1.115 45.286613 -90.141512 +54471 1854 707 120171108 214879 46.398 0.083 44.930719 -89.424316 +54473 2700 1356 222282939 3745343 85.824 1.446 44.650645 -89.352368 +54474 4019 1816 11271418 587317 4.352 0.227 44.873616 -89.627198 +54475 1482 632 95075843 2018878 36.709 0.779 44.484665 -89.793069 +54476 18580 8079 108967074 2869040 42.072 1.108 44.890321 -89.530054 +54479 4119 1653 206608235 737084 79.772 0.285 44.749981 -90.326998 +54480 1332 559 90395131 15736 34.902 0.006 45.054310 -90.269289 +54481 29340 12272 165177526 22781222 63.775 8.796 44.510664 -89.638254 +54482 8955 3802 236687634 7118368 91.386 2.748 44.558728 -89.518511 +54484 4984 2024 269684561 2650367 104.126 1.023 44.799824 -90.078596 +54485 322 336 53101564 1546571 20.503 0.597 45.402959 -89.210443 +54486 2290 1249 318422722 715631 122.944 0.276 44.717991 -89.045228 +54487 9594 7564 778485572 61043259 300.575 23.569 45.514213 -89.775437 +54488 1262 450 103568374 171285 39.988 0.066 44.840396 -90.333122 +54489 1550 659 114082891 799545 44.048 0.309 44.460777 -90.003987 +54490 893 706 291537233 4816630 112.563 1.860 45.343391 -90.392334 +54491 1652 1745 462639103 9160000 178.626 3.537 45.235529 -88.753099 +54493 668 581 281463668 3336389 108.674 1.288 44.696760 -90.810720 +54494 27126 12224 345204778 10763249 133.284 4.156 44.340837 -89.734920 +54495 7637 3658 278402998 15732241 107.492 6.074 44.378213 -89.964060 +54498 2421 1014 314456250 1847452 121.412 0.713 45.035112 -90.629022 +54499 3223 1439 292332752 1402417 112.870 0.541 44.789831 -89.176405 +54501 20019 11775 946736206 66113304 365.537 25.526 45.657611 -89.349281 +54511 1216 1510 720705889 10541366 278.266 4.070 45.737470 -88.823099 +54512 833 1256 195878205 50399577 75.629 19.459 46.090361 -89.658543 +54513 478 423 244116476 243791 94.254 0.094 45.578383 -90.141311 +54514 1717 1531 538681186 10372547 207.986 4.005 46.041777 -90.473291 +54515 472 409 214537223 702142 82.833 0.271 45.512631 -90.491015 +54517 112 345 201441702 11551595 77.777 4.460 46.145917 -90.930676 +54519 1231 1676 207485724 21775600 80.111 8.408 46.050780 -89.263108 +54520 4141 3046 370280916 28444386 142.966 10.982 45.536731 -88.903792 +54521 7509 7855 587654452 82340530 226.895 31.792 45.936908 -89.291205 +54524 670 507 236715856 4317142 91.397 1.667 45.831449 -90.347360 +54525 279 167 1837024 65533 0.709 0.025 46.423303 -90.219958 +54526 919 509 285948323 2944935 110.405 1.137 45.529271 -90.857180 +54527 1081 1006 600133443 3466112 231.713 1.338 46.124668 -90.688207 +54529 1133 1401 171418344 13342103 66.185 5.151 45.677711 -89.667165 +54530 868 623 281850918 1655934 108.823 0.639 45.532522 -90.742889 +54531 1454 1637 201129087 31781479 77.656 12.271 45.752815 -89.774667 +54534 2459 1834 338268083 7622375 130.606 2.943 46.347714 -90.228091 +54536 184 174 129505294 1085538 50.002 0.419 46.322056 -90.370344 +54537 561 409 251183022 163139 96.982 0.063 45.528805 -90.603457 +54538 3137 2932 289671793 64267505 111.843 24.814 45.970064 -89.911919 +54539 1383 1852 126546828 39319195 48.860 15.181 45.813350 -89.562140 +54540 947 1696 214693200 45433774 82.894 17.542 46.155723 -89.381416 +54541 1552 926 347233149 7786361 134.067 3.006 45.556214 -88.617828 +54542 470 1251 687927877 11143674 265.610 4.303 45.919506 -88.715429 +54545 736 1476 112783967 24513123 43.546 9.465 46.130140 -89.862692 +54546 1266 927 558090328 6314915 215.480 2.438 46.299672 -90.694721 +54547 1392 2147 563364162 50037892 217.516 19.320 46.194274 -90.105302 +54548 4626 5101 229232915 53557078 88.507 20.679 45.865456 -89.834298 +54550 685 444 62214881 10103613 24.021 3.901 46.360991 -90.277112 +54552 4416 3604 901038530 67040154 347.893 25.884 45.939245 -90.316610 +54554 1120 1460 224292582 30870617 86.600 11.919 46.047221 -89.067188 +54555 4872 3946 821739339 22048351 317.275 8.513 45.705551 -90.404624 +54556 1298 814 230437259 1922765 88.972 0.742 45.535094 -90.297332 +54557 925 2209 239519637 56548797 92.479 21.834 46.223862 -89.757817 +54558 2177 2470 110495107 20768754 42.662 8.019 45.920191 -89.498725 +54559 795 479 355016441 4131506 137.073 1.595 46.495208 -90.491229 +54560 589 631 91055645 13603014 35.157 5.252 46.036728 -89.552305 +54561 35 97 43078101 5508927 16.633 2.127 46.097549 -89.513390 +54562 1948 3039 374610295 60650460 144.638 23.417 45.802654 -89.079344 +54563 720 405 107532921 1754730 41.519 0.678 45.460162 -90.970548 +54564 387 732 457199007 8605659 176.526 3.323 45.598905 -89.960408 +54565 60 144 266018143 1089342 102.710 0.421 46.284385 -90.465810 +54566 1496 1324 338074769 7791865 130.531 3.008 45.420139 -88.601253 +54568 5198 3983 197701435 34100425 76.333 13.166 45.958050 -89.653069 +54601 49282 21040 190482955 3284125 73.546 1.268 43.806197 -91.140529 +54603 14305 6795 23704451 1155625 9.152 0.446 43.856762 -91.241935 +54610 1624 969 331659905 21620148 128.055 8.348 44.365291 -91.831459 +54611 1307 577 140201677 0 54.132 0.000 44.447714 -90.952181 +54612 5152 2123 401244576 785199 154.921 0.303 44.249551 -91.501347 +54613 1826 2374 189615422 55244212 73.211 21.330 44.075585 -89.923744 +54614 2947 1210 210774148 3689 81.380 0.001 43.904933 -90.952867 +54615 10742 4601 777306230 9121680 300.120 3.522 44.264780 -90.821919 +54616 2601 1170 230737166 238893 89.088 0.092 44.300810 -91.223510 +54618 2262 1035 258091519 3969130 99.650 1.532 43.963629 -90.285854 +54619 3923 1419 266434054 34650 102.871 0.013 43.757634 -90.775588 +54621 1147 461 97726773 195593 37.733 0.076 43.656295 -91.080952 +54622 2121 1140 149107866 24370282 57.571 9.409 44.273358 -91.773881 +54623 1930 804 135701787 16793 52.395 0.006 43.732988 -91.006259 +54624 1383 984 169607448 5965764 65.486 2.303 43.461506 -91.131141 +54625 240 126 16336104 0 6.307 0.000 44.133418 -91.525003 +54626 1215 776 173431193 3382597 66.962 1.306 43.219573 -91.053955 +54627 1819 841 211681055 1212150 81.731 0.468 44.171384 -91.226971 +54628 1092 814 193639343 103275 74.765 0.040 43.372994 -91.026177 +54629 2576 1254 274740922 34350698 106.078 13.263 44.173760 -91.639591 +54630 3770 1660 203854624 1754206 78.709 0.677 44.121157 -91.373938 +54631 1844 996 272939220 212274 105.382 0.082 43.285012 -90.830887 +54632 1247 593 121060478 4449848 46.742 1.718 43.568829 -91.146482 +54634 4258 1894 385847778 295848 148.977 0.114 43.581742 -90.422353 +54635 1799 889 222446583 42635 85.887 0.016 44.402903 -91.045552 +54636 13737 5197 214185728 2884522 82.698 1.114 44.002965 -91.224012 +54637 187 85 903227 0 0.349 0.000 43.878545 -90.270235 +54638 1487 680 143686575 18942 55.478 0.007 43.800044 -90.404178 +54639 2397 1232 249700624 645737 96.410 0.249 43.601975 -90.637834 +54641 2 10 9650918 1035059 3.726 0.400 44.270653 -90.330096 +54642 2125 951 245035310 1496670 94.609 0.578 44.152060 -91.045009 +54643 12 10 237716 38178 0.092 0.015 44.186970 -90.638180 +54644 1434 619 162367079 1336758 62.690 0.516 44.036084 -91.063408 +54645 81 39 1257948 0 0.486 0.000 43.321145 -90.932642 +54646 3899 2751 434887975 41929486 167.911 16.189 44.113755 -90.098056 +54648 1737 683 186908401 93749 72.166 0.036 43.829428 -90.652565 +54650 23377 9817 80348155 621574 31.023 0.240 43.910455 -91.227211 +54651 1382 653 149693621 291572 57.797 0.113 43.723614 -90.573224 +54652 953 486 93355561 210458 36.045 0.081 43.475648 -90.772308 +54653 894 357 44679401 18901 17.251 0.007 43.815991 -90.901451 +54654 153 64 1871879 2764 0.723 0.001 43.269664 -90.964052 +54655 1778 926 233425181 12855 90.126 0.005 43.371015 -90.759096 +54656 17377 7331 647202364 1422372 249.886 0.549 43.990000 -90.803057 +54657 411 198 70560768 64818 27.244 0.025 43.188044 -90.895886 +54658 2501 1137 93933356 1690132 36.268 0.653 43.682130 -91.168090 +54659 1409 626 146626217 48213 56.613 0.019 44.299071 -91.114785 +54660 15688 6880 395236341 6462895 152.602 2.495 43.982544 -90.494405 +54661 3415 1594 134913590 18053133 52.090 6.970 44.057603 -91.467828 +54664 1516 844 203267661 523831 78.482 0.202 43.488227 -90.642980 +54665 8427 3943 456568662 463297 176.282 0.179 43.531971 -90.928690 +54666 2593 1633 591080844 27310798 228.218 10.545 44.170076 -90.449672 +54667 4599 1935 225859229 517053 87.205 0.200 43.664049 -90.860047 +54669 7619 2932 132780234 2436790 51.267 0.941 43.911252 -91.083866 +54670 1878 646 139834026 0 53.990 0.000 43.837346 -90.485881 +54701 38803 16038 222505875 3407630 85.910 1.316 44.751984 -91.514998 +54703 42272 18153 205703986 9161489 79.423 3.537 44.836452 -91.518514 +54720 7039 3414 12715921 1196380 4.910 0.462 44.804142 -91.435752 +54721 1373 615 164909355 3010419 63.672 1.162 44.633744 -92.082731 +54722 4016 1778 373196328 5009797 144.092 1.934 44.711576 -91.103039 +54723 1191 524 79535741 16039143 30.709 6.193 44.610559 -92.419525 +54724 7174 3170 412780448 5567589 159.375 2.150 45.106248 -91.487588 +54725 2897 1275 258657150 1018253 99.868 0.393 45.073212 -91.990956 +54726 1690 749 213800717 840519 82.549 0.325 44.931380 -91.021401 +54727 4915 2043 363099202 1116554 140.193 0.431 44.953954 -91.159105 +54728 6139 3594 327377687 17608935 126.401 6.799 45.308093 -91.638259 +54729 31469 13686 430898429 29744380 166.371 11.484 44.945626 -91.392954 +54730 4903 2184 360106487 8723681 139.038 3.368 45.022258 -91.719644 +54731 802 390 125718736 830878 48.540 0.321 45.349837 -91.090398 +54732 2924 1356 286011723 8073393 110.430 3.117 45.144614 -91.170492 +54733 1340 539 118879664 117632 45.900 0.045 45.278660 -91.850182 +54734 856 363 85484359 127588 33.006 0.049 45.098741 -92.125756 +54736 4127 1780 327380220 9727814 126.402 3.756 44.598672 -91.905482 +54737 487 228 56051874 2614076 21.642 1.009 44.718395 -91.981576 +54738 3149 1258 258147266 244790 99.671 0.095 44.587658 -91.490654 +54739 4950 1885 263838430 2234280 101.869 0.863 44.859764 -91.701174 +54740 2056 931 235569815 609407 90.954 0.235 44.751437 -92.166807 +54741 1577 806 248473963 223482 95.936 0.086 44.620343 -90.974611 +54742 4459 1780 270441652 1423907 104.418 0.550 44.766439 -91.267018 +54745 2261 1654 340868483 18633833 131.610 7.195 45.251132 -91.123401 +54746 746 397 113042213 915553 43.646 0.353 44.553241 -90.880056 +54747 2534 1176 292299935 397863 112.858 0.154 44.401394 -91.512112 +54748 1217 546 106369531 4658641 41.070 1.799 45.075083 -91.263020 +54749 1231 539 99822497 33336 38.542 0.013 44.948045 -92.107164 +54750 1062 518 164549967 11045447 63.533 4.265 44.613789 -92.294549 +54751 25642 10150 588828227 12893284 227.348 4.978 44.850670 -91.931558 +54754 1552 1243 221021394 3691197 85.337 1.425 44.427159 -90.753321 +54755 7502 3229 704718187 6809109 272.093 2.629 44.575768 -91.681302 +54756 916 487 185719123 10399563 71.707 4.015 44.468101 -91.939605 +54757 3314 2018 406656322 20685152 157.011 7.987 45.237197 -91.522349 +54758 4626 1999 412336789 260270 159.204 0.100 44.557943 -91.216523 +54759 1533 878 133669807 18738915 51.610 7.235 44.489082 -92.129260 +54760 255 113 371928 0 0.144 0.000 44.424047 -91.206361 +54761 1216 518 105913541 695399 40.893 0.268 44.623256 -92.178330 +54762 1246 574 127983014 180710 49.415 0.070 45.246203 -91.993154 +54763 1134 507 143541629 337764 55.422 0.130 45.179864 -91.881737 +54765 24 16 29769 0 0.011 0.000 45.169133 -91.685590 +54766 1707 848 341151477 369926 131.719 0.143 45.340713 -90.858047 +54767 3221 1377 216734098 2199288 83.682 0.849 44.823835 -92.267998 +54768 5990 1966 325619074 3462522 125.722 1.337 44.957090 -90.929805 +54769 502 385 81507924 16854626 31.470 6.508 44.527298 -92.241064 +54770 2101 873 177348515 337297 68.475 0.130 44.548564 -91.371914 +54771 4286 1735 401811653 1627140 155.140 0.628 44.936960 -90.812536 +54772 1103 488 155522105 898068 60.047 0.347 45.100596 -91.881707 +54773 3336 1398 188607206 61939 72.822 0.024 44.389993 -91.296378 +54801 6493 4790 489019501 36995521 188.811 14.284 45.878861 -91.942767 +54805 1471 745 86373658 811111 33.349 0.313 45.412053 -92.023417 +54806 11810 5493 686997906 21890315 265.251 8.452 46.553490 -90.871814 +54810 2512 2151 117368893 14279799 45.316 5.513 45.457085 -92.374415 +54812 5728 2408 238535592 508248 92.099 0.196 45.392528 -91.882516 +54813 601 375 140705931 4113226 54.327 1.588 45.652939 -92.044813 +54814 2478 1733 380231681 12002204 146.808 4.634 46.863246 -90.901161 +54817 2188 2519 418800347 42543592 161.700 16.426 45.669726 -91.546559 +54819 2544 1600 430041158 7693524 166.040 2.970 45.486919 -91.305291 +54820 864 524 284260171 1800488 109.753 0.695 46.572526 -91.565044 +54821 1276 1792 478625065 32252273 184.798 12.453 46.216959 -91.166168 +54822 4516 2082 123915232 3824632 47.844 1.477 45.400937 -91.694413 +54824 2271 1207 97440354 2664331 37.622 1.029 45.484715 -92.539887 +54826 807 701 126963789 6425020 49.021 2.481 45.495241 -92.159669 +54827 221 411 111952225 5213411 43.225 2.013 46.788108 -91.096768 +54828 678 818 158666598 14371392 61.262 5.549 45.840986 -91.294248 +54829 5236 3273 344691498 18814374 133.086 7.264 45.566650 -92.047243 +54830 2752 5043 931221260 46553161 359.547 17.974 46.106014 -92.225683 +54832 412 574 273414075 9293745 105.566 3.588 46.319287 -91.343441 +54835 1018 803 369353095 5460514 142.608 2.108 45.691601 -91.247086 +54836 1080 509 338906741 1255507 130.853 0.485 46.454438 -92.195041 +54837 3778 2229 454945819 13465171 175.656 5.199 45.674284 -92.357709 +54838 1103 1622 598162439 30287978 230.952 11.694 46.258705 -91.818848 +54839 302 216 120648060 430873 46.582 0.166 46.361577 -91.139982 +54840 4643 2903 659913357 24920653 254.794 9.622 45.751262 -92.692383 +54841 259 128 938844 0 0.362 0.000 45.606667 -91.778611 +54842 185 81 15896985 17897 6.138 0.007 46.505367 -91.854667 +54843 11487 9357 1139748256 157013781 440.059 60.623 46.025938 -91.296827 +54844 267 530 157253815 14494448 60.716 5.596 46.804845 -91.233072 +54845 147 84 17312759 42364 6.684 0.016 45.797319 -92.193801 +54846 547 292 81058428 169695 31.297 0.066 46.378316 -90.720238 +54847 2222 2011 426782817 17872530 164.782 6.901 46.579326 -91.399850 +54848 6141 3175 483949401 12393992 186.854 4.785 45.516039 -91.103822 +54849 1967 1280 235367559 8974080 90.876 3.465 46.481185 -91.725682 +54850 261 866 201397006 7046236 77.760 2.721 46.940645 -90.570830 +54853 4009 2715 241930404 19654049 93.410 7.588 45.574587 -92.429224 +54854 990 475 206601366 12134479 79.769 4.685 46.649916 -91.666522 +54855 774 375 186313110 457108 71.936 0.176 46.378032 -90.831029 +54856 1616 1024 598231144 5327647 230.978 2.057 46.442747 -91.129309 +54857 62 60 721645 74091 0.279 0.029 45.596342 -91.605711 +54858 1518 1008 49960560 3851507 19.290 1.487 45.519382 -92.457844 +54859 1896 2405 469160074 34174494 181.144 13.195 46.123003 -91.803653 +54861 150 54 12326458 0 4.759 0.000 46.614971 -90.656678 +54862 261 288 115136911 1207037 44.455 0.466 45.778701 -91.142381 +54864 1322 569 131794466 409874 50.886 0.158 46.613354 -91.790631 +54865 440 517 159106066 283502 61.431 0.109 46.739717 -91.374991 +54867 435 336 85194441 1463547 32.894 0.565 45.822542 -91.202554 +54868 15512 7474 543236764 13985038 209.745 5.400 45.525662 -91.707548 +54870 1486 1491 233373578 26055498 90.106 10.060 45.709265 -91.775145 +54871 3105 1984 288111461 18130199 111.240 7.000 45.749634 -92.002023 +54872 2581 2113 161205918 17222996 62.242 6.650 45.777070 -92.401715 +54873 2799 3051 696181719 26621234 268.797 10.279 46.340445 -91.691759 +54874 3646 1570 381144613 5043097 147.161 1.947 46.565542 -91.942807 +54875 1055 837 286257632 9743239 110.525 3.762 45.965643 -91.692217 +54876 1551 2091 264122700 36577009 101.978 14.122 45.836042 -91.493513 +54880 30772 14082 445332811 30132782 171.944 11.634 46.590874 -92.128310 +54888 1345 1436 247666555 12362884 95.625 4.773 45.974818 -91.866955 +54889 2742 1793 181078535 10794357 69.915 4.168 45.415113 -92.170107 +54891 3389 1774 190535931 2086050 73.566 0.805 46.699590 -90.964839 +54893 3767 3738 408298157 44689820 157.645 17.255 45.878807 -92.325873 +54895 910 692 274656953 5647248 106.046 2.180 45.449439 -91.460777 +54896 1478 2220 1121115374 18789442 432.865 7.255 45.817173 -90.881747 +54901 37710 14843 43192325 3014929 16.677 1.164 44.062886 -88.535694 +54902 22375 10896 90833600 4078244 35.071 1.575 43.946895 -88.540285 +54904 20623 8876 193402140 1724265 74.673 0.666 44.023400 -88.623839 +54909 2181 1132 248568146 1396079 95.973 0.539 44.280703 -89.367441 +54911 26674 11572 21470417 797972 8.290 0.308 44.281533 -88.381003 +54913 17629 7101 163036871 63978 62.949 0.025 44.335996 -88.399970 +54914 30475 13869 46108447 239727 17.803 0.093 44.280839 -88.452033 +54915 41855 16501 40643738 857123 15.693 0.331 44.243138 -88.356058 +54921 1326 568 201740457 893469 77.892 0.345 44.295257 -89.559143 +54922 1514 622 122991247 690776 47.487 0.267 44.544821 -88.762140 +54923 8733 3983 350537481 16424902 135.343 6.342 43.997757 -88.966832 +54927 538 247 585884 21831 0.226 0.008 44.103128 -88.654369 +54928 450 191 28407547 471562 10.968 0.182 44.746498 -88.874634 +54929 8746 4301 309111242 4569104 119.349 1.764 44.636486 -88.739230 +54930 1786 1129 240871000 960305 93.001 0.371 44.032622 -89.555283 +54931 260 105 674594 0 0.260 0.000 44.274505 -88.679132 +54932 1185 446 78245144 1535018 30.211 0.593 43.831997 -88.590949 +54933 231 96 2530511 115358 0.977 0.045 44.670473 -88.703200 +54934 148 76 869623 3392 0.336 0.001 44.002969 -88.839265 +54935 41651 18776 40879331 2346520 15.784 0.906 43.773660 -88.436782 +54937 19112 7949 295536599 2060570 114.107 0.796 43.791998 -88.388482 +54940 4020 2114 225049684 6618897 86.892 2.556 44.220370 -88.842561 +54941 2613 1937 83950809 32445764 32.414 12.527 43.844703 -88.992882 +54942 8580 3058 53459431 41626 20.641 0.016 44.294108 -88.547362 +54943 1923 1487 317698373 1717398 122.664 0.663 44.132814 -89.590410 +54944 8257 3161 175453677 1871134 67.743 0.722 44.324687 -88.626957 +54945 3545 2029 271932339 3919677 104.994 1.513 44.573645 -89.136792 +54946 108 0 18110 0 0.007 0.000 44.336605 -89.144400 +54947 2601 1266 120391296 1034554 46.483 0.399 44.203594 -88.698749 +54948 320 152 36677971 9311 14.161 0.004 44.780628 -88.872845 +54949 3430 1567 163822088 2591993 63.252 1.001 44.483988 -88.915485 +54950 3083 1492 215493850 2398787 83.203 0.926 44.657218 -88.918064 +54952 25729 11511 72855373 1002555 28.130 0.387 44.201040 -88.329484 +54956 42696 18395 158939634 1623250 61.367 0.627 44.182337 -88.527574 +54960 2800 2189 271350450 4181794 104.769 1.615 43.941908 -89.219067 +54961 14266 6271 319783629 7081142 123.469 2.734 44.410151 -88.761690 +54962 1110 643 122719659 1640363 47.382 0.633 44.486188 -89.030971 +54963 6917 2982 197936011 7508717 76.424 2.899 44.044194 -88.779090 +54964 1022 426 92734144 4028677 35.805 1.555 43.921644 -88.717019 +54965 1344 703 150215320 337186 57.998 0.130 44.167973 -89.043887 +54966 2008 999 207699645 816111 80.193 0.315 44.210019 -89.504888 +54967 434 213 8519744 162587 3.289 0.063 44.126722 -88.975701 +54968 2779 1736 155512178 3762212 60.044 1.453 43.847061 -89.135861 +54970 3902 1715 119888936 624713 46.289 0.241 44.072751 -89.098184 +54971 10827 4788 285296044 10389821 110.153 4.012 43.857119 -88.829249 +54974 1581 630 68092699 281640 26.291 0.109 43.787586 -88.663462 +54977 1337 679 99510680 1560789 38.421 0.603 44.461173 -89.171213 +54979 1472 624 67440620 257167 26.039 0.099 43.872511 -88.536374 +54980 149 74 1263593 2962 0.488 0.001 43.983584 -88.767287 +54981 15426 8074 346235324 10553387 133.682 4.075 44.322663 -89.131504 +54982 7117 4540 322104443 7487445 124.365 2.891 44.072748 -89.290882 +54983 4642 2144 220432117 15820419 85.109 6.108 44.319336 -88.933068 +54984 2989 2510 197418081 3632180 76.224 1.402 44.190566 -89.223457 +54985 836 0 261916 0 0.101 0.000 44.075066 -88.518469 +54986 4770 2521 73449577 2545488 28.359 0.983 44.123302 -88.749906 +55001 2916 1153 68257676 2608501 26.354 1.007 44.898776 -92.819108 +55003 3471 912 5349029 2933109 2.065 1.132 45.011625 -92.779163 +55005 4422 1577 49968324 2427084 19.293 0.937 45.396107 -93.218464 +55006 4069 1687 202579802 4525048 78.217 1.747 45.738266 -93.198939 +55007 2498 1276 307813490 3125822 118.847 1.207 45.971304 -93.117820 +55008 14685 6098 260302550 11894050 100.503 4.592 45.569486 -93.276659 +55009 8030 3422 315288538 6644402 121.734 2.565 44.480636 -92.870984 +55011 10170 3591 116674742 4362783 45.048 1.684 45.340740 -93.253313 +55012 2078 803 58998851 3107705 22.780 1.200 45.438085 -92.788113 +55013 6541 2753 76014887 14279348 29.350 5.513 45.338470 -92.905421 +55014 27274 9632 48414961 7797695 18.693 3.011 45.161745 -93.127980 +55016 34204 11944 75534643 9791824 29.164 3.781 44.817691 -92.934622 +55017 714 293 78140863 1259212 30.170 0.486 45.672309 -93.436364 +55018 997 404 124824699 31946 48.195 0.012 44.423972 -92.996175 +55019 1817 714 52392524 206290 20.229 0.080 44.419113 -93.248224 +55020 3717 1234 64704485 573701 24.983 0.222 44.575540 -93.373569 +55021 29732 11870 468310383 30799572 180.816 11.892 44.299725 -93.277222 +55024 32406 11364 230566319 3111205 89.022 1.201 44.627230 -93.124655 +55025 23244 9309 204069658 20919048 78.792 8.077 45.263197 -93.021896 +55026 455 235 14242847 3424352 5.499 1.322 44.535111 -92.346008 +55027 3031 1138 307105364 190736 118.574 0.074 44.407362 -92.610066 +55029 38 16 189730 0 0.073 0.000 45.638337 -93.198359 +55030 1289 687 98987660 1367801 38.219 0.528 45.839120 -93.089416 +55031 2035 760 102575930 57672 39.605 0.022 44.613024 -92.962899 +55032 3616 1472 180524382 6247703 69.701 2.412 45.586274 -92.988158 +55033 29488 11991 365171618 19737277 140.994 7.621 44.711918 -92.863222 +55036 71 38 738722 0 0.285 0.000 45.871246 -93.119564 +55037 4940 3473 791634757 9124012 305.652 3.523 46.039021 -92.785049 +55038 20816 7613 128385836 11302891 49.570 4.364 45.167305 -92.981626 +55040 12568 4884 256905073 7782048 99.192 3.005 45.466135 -93.280188 +55041 7601 3812 379765080 31322783 146.628 12.094 44.394193 -92.320188 +55042 8840 3126 63362059 5620308 24.464 2.170 44.987826 -92.909592 +55043 3540 1522 10054990 5444756 3.882 2.102 44.940108 -92.768997 +55044 47218 16382 166071221 4989600 64.120 1.926 44.642096 -93.276269 +55045 7577 3222 91564729 17164020 35.353 6.627 45.395323 -92.835009 +55046 5211 2006 120737116 4007908 46.617 1.547 44.441784 -93.424674 +55047 2528 1230 77711587 13567744 30.005 5.239 45.200429 -92.820729 +55049 2476 957 124307884 185183 47.996 0.071 44.176279 -93.230762 +55051 9719 4678 507088168 17291517 195.788 6.676 45.928892 -93.303115 +55052 2090 934 120613620 7161004 46.569 2.765 44.230887 -93.444054 +55053 1009 376 111272244 4748 42.962 0.002 44.346535 -93.061232 +55054 2171 705 3091141 0 1.193 0.000 44.570166 -93.350454 +55055 3418 1461 9154927 641992 3.535 0.248 44.874458 -92.998692 +55056 13546 5024 262904078 3928761 101.508 1.517 45.508583 -92.953884 +55057 24602 8572 323636380 6665443 124.957 2.574 44.470411 -93.176142 +55060 28911 12102 530896264 4247525 204.980 1.640 44.059126 -93.223482 +55063 9348 4692 432682826 14730158 167.060 5.687 45.838574 -92.902898 +55065 1201 444 85120767 722372 32.865 0.279 44.550758 -93.024955 +55066 18564 8413 309732456 21472433 119.588 8.291 44.511925 -92.539132 +55068 27490 9859 110951041 5273119 42.838 2.036 44.735516 -93.062773 +55069 5540 2060 191926027 12410959 74.103 4.792 45.693992 -92.964710 +55070 7541 2772 71016214 758513 27.420 0.293 45.410032 -93.386985 +55071 5569 2201 13326726 3027894 5.145 1.169 44.821772 -92.998798 +55072 4737 2291 815061521 10494279 314.697 4.052 46.094837 -92.526656 +55073 3237 1282 71794412 4998635 27.720 1.930 45.272533 -92.814871 +55074 2222 881 90064863 2817260 34.774 1.088 45.387779 -92.720032 +55075 20152 8667 14672640 1269981 5.665 0.490 44.888027 -93.040497 +55076 21323 9115 23592015 4086369 9.109 1.578 44.836066 -93.032174 +55077 12572 4955 48395789 2047138 18.686 0.790 44.819227 -93.068994 +55079 8329 3188 158938691 9875103 61.367 3.813 45.419467 -93.035393 +55080 2607 1152 168371198 6819152 65.008 2.633 45.666418 -93.222230 +55082 35024 14264 202521108 14593291 78.194 5.635 45.073144 -92.839286 +55084 1628 722 62915202 2270073 24.292 0.876 45.462591 -92.716225 +55085 417 161 2078720 22423 0.803 0.009 44.669775 -92.963432 +55087 268 118 528220 0 0.204 0.000 44.248540 -93.394880 +55088 1704 659 90362563 343219 34.889 0.133 44.523586 -93.383455 +55089 1814 715 156498766 8380589 60.425 3.236 44.583779 -92.716416 +55090 401 192 258327 14733 0.100 0.006 45.053333 -92.957536 +55092 10840 4173 87237500 10089146 33.683 3.895 45.334125 -93.099816 +55101 5592 4156 2109625 132774 0.815 0.051 44.951483 -93.090649 +55102 18207 10105 8421495 706738 3.252 0.273 44.931734 -93.121464 +55103 12991 5179 5406933 287953 2.088 0.111 44.964258 -93.122627 +55104 43248 18536 15723037 121368 6.071 0.047 44.953899 -93.164457 +55105 28455 11495 9322464 492928 3.599 0.190 44.937180 -93.168279 +55106 52730 19597 22444943 1285926 8.666 0.496 44.963547 -93.049522 +55107 14776 5704 10642423 1380648 4.109 0.533 44.930998 -93.079200 +55108 14688 6545 10178954 50002 3.930 0.019 44.982482 -93.174880 +55109 31444 13166 30316358 1980162 11.705 0.765 45.014551 -93.025535 +55110 37759 15844 62539629 16044413 24.147 6.195 45.089913 -93.006048 +55111 0 0 5850253 656931 2.259 0.254 44.878280 -93.195557 +55112 43250 17803 49440028 4811050 19.089 1.858 45.081866 -93.190493 +55113 38994 18138 38652209 2197348 14.924 0.848 45.012196 -93.151186 +55114 3100 1610 3370763 77979 1.301 0.030 44.966690 -93.195072 +55115 8607 3255 17368712 4836333 6.706 1.867 45.067903 -92.953441 +55116 23851 11971 14132168 1367718 5.456 0.528 44.910719 -93.169581 +55117 41649 17000 23910078 1612195 9.232 0.622 45.003562 -93.091280 +55118 27548 12638 27310406 1643710 10.545 0.635 44.894315 -93.100947 +55119 38966 15962 36495450 5642353 14.091 2.179 44.937421 -93.007402 +55120 4352 1824 13830434 2246319 5.340 0.867 44.874984 -93.152093 +55121 7861 3816 23389920 1946898 9.031 0.752 44.846541 -93.154935 +55122 30346 13074 29177683 1525252 11.266 0.589 44.806834 -93.201339 +55123 26030 9533 28463118 2507243 10.990 0.968 44.808933 -93.138449 +55124 49084 19600 43542873 1788596 16.812 0.691 44.739462 -93.193842 +55125 43281 16873 39555892 1233062 15.273 0.476 44.918031 -92.938277 +55126 25140 10866 31027596 6007965 11.980 2.320 45.084450 -93.132817 +55127 16782 7177 34955433 6892777 13.496 2.661 45.083907 -93.080233 +55128 28113 11690 29129584 1020542 11.247 0.394 44.987546 -92.963553 +55129 18697 6700 50639707 902531 19.552 0.348 44.883474 -92.892768 +55130 17575 5908 5190307 4311 2.004 0.002 44.973262 -93.082110 +55150 198 82 889256 123357 0.343 0.048 44.886640 -93.165422 +55155 0 0 132079 0 0.051 0.000 44.956023 -93.082613 +55301 10535 3807 26327334 748621 10.165 0.289 45.248559 -93.659820 +55302 7107 3966 185168854 33898830 71.494 13.088 45.246529 -94.117135 +55303 46352 17737 163428478 6335511 63.100 2.446 45.288281 -93.431100 +55304 45967 15497 178924421 6043007 69.083 2.333 45.252114 -93.270906 +55305 19368 10009 24111531 381382 9.310 0.147 44.956379 -93.428013 +55306 15935 6776 16131914 1919806 6.229 0.741 44.730944 -93.291381 +55307 3227 1434 201263791 2498823 77.708 0.965 44.599706 -94.111216 +55308 9064 3099 162526753 2241124 62.752 0.865 45.441395 -93.832031 +55309 18208 6454 169806921 9394635 65.563 3.627 45.377771 -93.744335 +55310 1519 763 257066233 0 99.254 0.000 44.759116 -94.880759 +55311 32788 11985 42475986 2206145 16.400 0.852 45.106403 -93.497029 +55312 1595 698 184550337 6692683 71.255 2.584 44.706340 -94.351290 +55313 23255 8914 281568568 28082437 108.714 10.843 45.174664 -93.851455 +55314 1337 614 192831655 8795427 74.453 3.396 44.779020 -94.589725 +55315 4762 1651 68684244 1942515 26.519 0.750 44.721096 -93.688973 +55316 23089 8598 21153855 1457653 8.168 0.563 45.172579 -93.387250 +55317 19218 7366 32449109 3171176 12.529 1.224 44.858704 -93.550209 +55318 25493 9963 107186289 5144675 41.385 1.986 44.810785 -93.636248 +55319 5038 2186 183986709 13634359 71.038 5.264 45.475266 -93.943856 +55320 4973 2038 137570244 6531919 53.116 2.522 45.396331 -94.086052 +55321 5341 1986 210279229 5960743 81.189 2.301 45.087589 -94.193155 +55322 3163 1171 141397234 5614992 54.594 2.168 44.771878 -93.787011 +55324 1234 683 91003444 18438512 35.137 7.119 45.052822 -94.417646 +55325 4610 2073 199234147 25330332 76.925 9.780 45.084221 -94.317152 +55327 3478 1278 46338943 4532461 17.892 1.750 45.195735 -93.475802 +55328 8541 3211 115366787 3613853 44.543 1.395 45.031800 -93.812325 +55329 2118 1014 130337752 4224310 50.324 1.631 45.304542 -94.558937 +55330 36440 13497 270634587 10506806 104.493 4.057 45.334168 -93.568216 +55331 17524 7203 38733455 18391360 14.955 7.101 44.895679 -93.607599 +55332 1922 898 296664087 1093236 114.543 0.422 44.520437 -94.699538 +55333 856 387 183511287 338619 70.854 0.131 44.562955 -94.860631 +55334 2939 1277 222692419 5000602 85.982 1.931 44.535460 -94.187476 +55335 1629 746 292200778 4636354 112.819 1.790 44.531090 -94.553138 +55336 8054 3391 330631364 8700852 127.657 3.359 44.777225 -94.198563 +55337 44356 18979 48365503 3305647 18.674 1.276 44.778472 -93.272269 +55338 1123 462 102558200 3690021 39.598 1.425 44.669519 -93.995771 +55339 988 385 58014410 687312 22.399 0.265 44.723427 -93.956959 +55340 6327 2236 93554197 1684958 36.121 0.651 45.078263 -93.572118 +55341 2850 919 12320300 361219 4.757 0.139 45.157963 -93.662899 +55342 2015 991 418590995 15835 161.619 0.006 44.742925 -94.739028 +55343 23933 12366 19566965 674617 7.555 0.260 44.914372 -93.416254 +55344 13952 7322 22806159 1805767 8.806 0.697 44.863894 -93.430060 +55345 21147 8764 29454820 732334 11.373 0.283 44.915442 -93.484430 +55346 16776 6431 17821647 625401 6.881 0.241 44.878621 -93.481280 +55347 30069 11322 43584868 4625126 16.828 1.786 44.827886 -93.462356 +55349 3887 1650 169834008 10389809 65.573 4.012 45.058647 -94.074539 +55350 18280 8040 416217964 21778150 160.703 8.409 44.895580 -94.394053 +55352 8751 3153 172877616 4238391 66.748 1.636 44.651475 -93.592608 +55353 3162 1394 218574537 9395078 84.392 3.627 45.329096 -94.324626 +55354 2741 1098 82148404 516837 31.718 0.200 44.880442 -94.061426 +55355 9656 4368 447864673 28232237 172.922 10.901 45.099093 -94.541307 +55356 5311 2186 32317269 4154530 12.478 1.604 44.994442 -93.589528 +55357 3246 1168 49197381 1559695 18.995 0.602 45.105802 -93.673208 +55358 4982 2415 141957501 14975310 54.810 5.782 45.253055 -93.991526 +55359 5954 2363 108466948 9375246 41.879 3.620 45.009590 -93.698264 +55360 2672 972 82972691 993397 32.036 0.384 44.915960 -93.919645 +55362 18089 6967 158409554 11123853 61.162 4.295 45.292082 -93.838711 +55363 4496 1709 70189268 557176 27.100 0.215 45.037192 -93.918320 +55364 14353 6455 40575949 17882605 15.666 6.905 44.937764 -93.672045 +55366 443 199 1757332 0 0.679 0.000 44.672626 -94.232341 +55367 913 386 53274898 539134 20.570 0.208 44.895142 -93.975752 +55368 2218 946 94871419 2201592 36.630 0.850 44.738870 -93.899119 +55369 32524 13320 62062075 4381802 23.962 1.692 45.127446 -93.445399 +55370 802 326 59327539 101442 22.906 0.039 44.777180 -94.036783 +55371 16442 6445 477833435 14431946 184.493 5.572 45.578592 -93.590776 +55372 29811 11286 149034281 10566416 57.542 4.080 44.682387 -93.413588 +55373 5600 2182 28475131 2330769 10.994 0.900 45.088621 -93.721142 +55374 13576 4726 92056949 2390756 35.543 0.923 45.175525 -93.573794 +55375 4518 1480 13589839 807768 5.247 0.312 44.908107 -93.721559 +55376 16242 5422 78157634 9658748 30.177 3.729 45.211249 -93.687899 +55378 26958 9417 37568057 1989963 14.505 0.768 44.757299 -93.366971 +55379 40416 14583 152636075 6174713 58.933 2.384 44.755948 -93.513329 +55381 2063 865 118125766 3392670 45.609 1.310 44.930963 -94.199979 +55382 3563 2107 182889331 16007164 70.614 6.180 45.300420 -94.199092 +55384 1672 1073 926865 664136 0.358 0.256 44.936941 -93.630699 +55385 1291 575 250411995 3303199 96.685 1.275 44.739112 -94.489204 +55386 6330 2186 17461229 2270603 6.742 0.877 44.863217 -93.666882 +55387 12249 4675 81229006 19949794 31.363 7.703 44.869263 -93.778944 +55388 5619 2265 103928644 4642373 40.127 1.792 44.949843 -93.845647 +55389 2643 1123 192544521 4129843 74.342 1.595 45.297919 -94.442626 +55390 2473 1053 90743415 5127929 35.036 1.980 45.065173 -93.979556 +55391 14486 6545 44026580 28319424 16.999 10.934 44.956401 -93.538993 +55395 2892 1228 53109259 2556790 20.506 0.987 44.951833 -94.067714 +55396 2252 1015 275773429 2351415 106.477 0.908 44.546306 -94.367013 +55397 2693 1070 70653516 3139589 27.279 1.212 44.823812 -93.937971 +55398 15540 5707 201263231 10371102 77.708 4.004 45.465616 -93.610385 +55401 6590 4912 2331229 377143 0.900 0.146 44.984577 -93.269097 +55402 368 373 461184 0 0.178 0.000 44.976033 -93.271443 +55403 14985 11573 3548279 41489 1.370 0.016 44.970570 -93.284032 +55404 27121 13337 4582447 0 1.769 0.000 44.961998 -93.261123 +55405 15411 7822 7184962 493464 2.774 0.191 44.971871 -93.302471 +55406 32112 15589 12957253 573329 5.003 0.221 44.940496 -93.221040 +55407 37881 15090 10469606 261186 4.042 0.101 44.935036 -93.253029 +55408 29981 15677 7038674 1418644 2.718 0.548 44.940425 -93.292639 +55409 11615 5149 3216080 0 1.242 0.000 44.930326 -93.281477 +55410 19340 8998 7708748 0 2.976 0.000 44.911878 -93.319632 +55411 27428 10002 10550888 179947 4.074 0.069 44.999009 -93.298363 +55412 22148 9193 9407292 210276 3.632 0.081 45.027476 -93.303546 +55413 12934 6733 8538461 303942 3.297 0.117 44.999463 -93.241677 +55414 28495 10797 8751408 435030 3.379 0.168 44.979513 -93.227354 +55415 2604 1297 1121235 0 0.433 0.000 44.974789 -93.257537 +55416 29027 16125 18938584 2649877 7.312 1.023 44.950191 -93.336319 +55417 24875 11247 14084959 1481395 5.438 0.572 44.904440 -93.230407 +55418 29472 13862 17553037 334723 6.777 0.129 45.021318 -93.242853 +55419 26406 11202 10872252 291556 4.198 0.113 44.905799 -93.287653 +55420 21767 9548 16819429 248708 6.494 0.096 44.835969 -93.277176 +55421 27035 12360 16272408 851272 6.283 0.329 45.050884 -93.253812 +55422 27820 12766 21477197 1213142 8.292 0.468 45.009275 -93.341105 +55423 35375 15797 18071306 370622 6.977 0.143 44.874460 -93.282529 +55424 9685 3612 6264144 201841 2.419 0.078 44.905026 -93.344834 +55425 8952 4095 12214239 5615611 4.716 2.168 44.851555 -93.225635 +55426 24945 12256 17526016 492926 6.767 0.190 44.958311 -93.374096 +55427 22919 10237 18609501 200002 7.185 0.077 45.005499 -93.379150 +55428 29357 12563 20919220 146693 8.077 0.057 45.062950 -93.381362 +55429 26751 10585 16087193 796790 6.211 0.308 45.063552 -93.341097 +55430 21508 8484 14617903 541792 5.644 0.209 45.067295 -93.301470 +55431 18435 8181 20665925 626422 7.979 0.242 44.825914 -93.310998 +55432 30027 13027 25581616 1591361 9.877 0.614 45.096587 -93.254518 +55433 33613 13800 30079325 1443330 11.614 0.557 45.160411 -93.314839 +55434 28823 11342 23828477 164967 9.200 0.064 45.163716 -93.250487 +55435 11592 7212 7647197 372712 2.953 0.144 44.873953 -93.334060 +55436 13138 5983 12282537 438809 4.742 0.169 44.904140 -93.373157 +55437 17484 8174 16988777 1131391 6.559 0.437 44.824347 -93.342996 +55438 16249 7640 21622491 2039004 8.348 0.787 44.823123 -93.381428 +55439 8750 3697 12492486 342399 4.823 0.132 44.875630 -93.374747 +55441 17848 7891 22439475 4054258 8.664 1.565 45.006321 -93.424636 +55442 13217 5728 13741277 1263222 5.306 0.488 45.048851 -93.426212 +55443 32462 11463 23910786 533327 9.232 0.206 45.117609 -93.338118 +55444 15667 5380 11459197 579498 4.424 0.224 45.103924 -93.301691 +55445 9879 3667 20233485 103495 7.812 0.040 45.122441 -93.379184 +55446 18695 7757 26292819 371883 10.152 0.144 45.039140 -93.489701 +55447 21187 8780 22760671 1543140 8.788 0.596 45.001096 -93.489561 +55448 27863 10662 28135649 446876 10.863 0.173 45.193911 -93.299952 +55449 23277 8705 57874893 248944 22.346 0.096 45.177288 -93.181914 +55450 10 3 9767394 17943 3.771 0.007 44.879528 -93.224307 +55454 8125 3126 1580575 138768 0.610 0.054 44.967334 -93.234611 +55455 1050 4 692288 131362 0.267 0.051 44.971814 -93.233696 +55601 105 152 40947403 1652751 15.810 0.638 47.236844 -91.362932 +55602 177 403 347569056 13720828 134.197 5.298 47.349842 -91.886445 +55603 508 475 934662280 33901307 360.875 13.089 47.546499 -91.251187 +55604 3360 3340 2305639807 340267354 890.213 131.378 47.955097 -90.555583 +55605 565 313 186371802 26715387 71.959 10.315 47.965288 -89.737130 +55606 272 410 339510864 8843080 131.086 3.414 47.934516 -89.988859 +55607 134 289 1145536177 32615147 442.294 12.593 47.563191 -91.417324 +55609 303 185 9272299 0 3.580 0.000 46.970661 -91.780871 +55612 518 1122 419983905 30849853 162.157 11.911 47.769724 -90.701442 +55613 205 323 223982768 5122293 86.480 1.978 47.581682 -90.922199 +55614 2627 1571 631398663 39379212 243.784 15.204 47.368243 -91.375995 +55615 256 331 285891584 11196566 110.383 4.323 47.663325 -90.823555 +55616 6994 4239 917905455 43069451 354.405 16.629 47.165792 -91.642073 +55702 500 327 196374172 2249790 75.820 0.869 46.956760 -92.636025 +55703 701 426 359885487 25366 138.953 0.010 47.730899 -92.750065 +55704 1128 600 143664947 242480 55.469 0.094 46.219085 -92.751667 +55705 3299 1731 301151543 11144325 116.275 4.303 47.451802 -92.207357 +55706 1825 1198 159257319 29209497 61.490 11.278 47.721713 -91.961573 +55707 3440 1668 408702478 7220592 157.801 2.788 46.554781 -92.631629 +55708 959 540 56306294 1884092 21.740 0.727 47.571292 -92.347695 +55709 4075 2582 594246047 57113638 229.440 22.052 47.429069 -93.372355 +55710 1292 881 259324931 10251965 100.126 3.958 47.629693 -92.708559 +55711 607 220 175211390 2708956 67.649 1.046 46.844265 -92.691219 +55712 586 450 487756955 927574 188.324 0.358 46.281700 -92.520624 +55713 1017 502 13987644 174708 5.401 0.067 47.500381 -92.746045 +55716 341 158 3447520 34539 1.331 0.013 47.320392 -93.271458 +55717 335 403 283779567 9154810 109.568 3.535 47.068701 -92.387216 +55718 3281 1363 157743813 5816516 60.905 2.246 46.620931 -92.486403 +55719 5895 3008 181102002 3788241 69.924 1.463 47.541039 -92.862190 +55720 16999 7292 416518036 12351442 160.819 4.769 46.751111 -92.533411 +55721 3410 1794 226823886 35251642 87.577 13.611 47.220628 -93.686796 +55722 1200 519 6917649 502832 2.671 0.194 47.278871 -93.442025 +55723 2363 2449 1360060159 60557745 525.122 23.381 47.839064 -92.916220 +55724 741 928 618757104 14831342 238.903 5.726 47.166394 -92.355122 +55725 103 258 702297232 170368968 271.158 65.780 48.209667 -92.168114 +55726 1045 731 240090372 3497146 92.699 1.350 46.674045 -92.829381 +55731 5820 5202 2179688777 442400200 841.583 170.812 47.981053 -91.656877 +55732 1453 826 464953357 6814598 179.520 2.631 47.674409 -92.209049 +55733 4616 1756 92832749 1622246 35.843 0.626 46.713831 -92.360792 +55734 6213 3436 257730273 15726941 99.510 6.072 47.352348 -92.444733 +55735 1809 1501 348520522 8346109 134.565 3.222 46.210293 -93.010212 +55736 1550 1079 798120721 7394276 308.156 2.855 46.955641 -92.940845 +55738 544 318 281419236 4039865 108.657 1.560 47.264329 -92.660294 +55741 3164 1782 169669159 8587806 65.510 3.316 47.462585 -92.398232 +55742 344 273 137409465 4290198 53.054 1.656 47.204293 -93.136731 +55744 20164 9867 644158141 91526302 248.711 35.339 47.234577 -93.507034 +55746 17228 8797 860679925 24331871 332.310 9.395 47.361847 -92.955661 +55748 1476 1006 312350286 6366775 120.599 2.458 47.014462 -93.621281 +55749 449 383 206206715 1931146 79.617 0.746 46.439558 -92.443315 +55750 2025 1032 375463521 15094109 144.967 5.828 47.531850 -91.963714 +55751 1553 708 158625336 2746759 61.246 1.061 47.397322 -92.659139 +55752 395 357 520078484 8954215 200.803 3.457 46.950553 -93.285945 +55753 989 508 1951419 0 0.753 0.000 47.395442 -93.081568 +55756 431 351 126087907 2654302 48.683 1.025 46.361182 -92.584556 +55757 866 577 282697690 37157 109.150 0.014 46.512538 -92.950125 +55758 145 74 5526245 766172 2.134 0.296 47.506020 -92.720194 +55760 3108 3932 959807620 65998801 370.584 25.482 46.637588 -93.255117 +55763 554 819 453544099 24859711 175.114 9.598 47.347594 -92.155252 +55764 569 282 15095663 700083 5.828 0.270 47.332014 -93.306669 +55765 802 475 451789942 2719665 174.437 1.050 47.103712 -92.756285 +55766 43 56 46530511 1947588 17.966 0.752 47.260489 -92.430714 +55767 4532 1727 141006206 4062496 54.443 1.569 46.450718 -92.759608 +55768 2843 1397 162328344 6783280 62.675 2.619 47.486978 -92.684322 +55769 2313 1483 470116468 19170406 181.513 7.402 47.479989 -93.183860 +55771 1680 2126 2706364337 185285047 1044.933 71.539 48.132096 -92.817500 +55772 76 27 38592271 19750551 14.901 7.626 48.112705 -93.130631 +55775 1205 809 153809103 14435235 59.386 5.573 47.320171 -93.171580 +55779 3755 1654 344141410 15167836 132.874 5.856 46.908849 -92.448827 +55780 212 131 65857827 2580017 25.428 0.996 46.688141 -92.698892 +55781 734 873 197558666 13664334 76.278 5.276 47.679928 -93.047127 +55782 480 281 34325986 990599 13.253 0.382 47.832949 -92.206008 +55783 2437 1876 274338470 13176303 105.923 5.087 46.396409 -92.892446 +55784 89 68 64809275 20868 25.023 0.008 47.058391 -93.165281 +55785 263 243 291299858 6515137 112.472 2.516 46.921584 -93.731217 +55786 305 134 11065174 271072 4.272 0.105 47.318832 -93.379444 +55787 525 470 224131587 4285733 86.538 1.655 46.678418 -93.102978 +55790 1866 2476 861148542 179079755 332.491 69.143 47.927477 -92.252921 +55792 10107 5415 258084901 10207973 99.647 3.941 47.597165 -92.479046 +55793 615 391 205005479 4873976 79.153 1.882 47.115899 -93.286131 +55795 1629 962 220875532 3166218 85.281 1.222 46.297871 -92.882916 +55797 1441 602 179200472 37930 69.190 0.015 46.566500 -92.362116 +55798 581 439 249361422 2263170 96.279 0.874 46.723256 -92.967783 +55802 2442 1623 6636041 21889824 2.562 8.452 46.740951 -92.049345 +55803 17431 8146 867677002 77273245 335.012 29.835 47.050601 -92.070878 +55804 14592 6194 236489646 27629823 91.309 10.668 46.931351 -91.936344 +55805 10194 5378 3655279 0 1.411 0.000 46.800825 -92.095784 +55806 9576 4808 8688079 1627355 3.354 0.628 46.768130 -92.127612 +55807 9963 4609 14916016 4538247 5.759 1.752 46.735498 -92.168596 +55808 5846 2698 28030422 6860494 10.823 2.649 46.676281 -92.241391 +55810 8702 3714 132986913 137194 51.347 0.053 46.756745 -92.269437 +55811 26246 10650 168683847 7427560 65.129 2.868 46.842667 -92.224332 +55812 10924 3666 4550597 1725747 1.757 0.666 46.808688 -92.070727 +55814 772 0 117937 0 0.046 0.000 46.833589 -92.197949 +55901 51917 21939 77370164 97 29.873 0.000 44.069818 -92.506581 +55902 21968 9721 105086001 318409 40.574 0.123 43.971216 -92.507101 +55904 26332 10657 161376278 0 62.308 0.000 43.959865 -92.400504 +55905 0 0 154860 0 0.060 0.000 44.055948 -92.525906 +55906 17598 7608 165182013 1729179 63.777 0.668 44.099889 -92.408210 +55909 1428 560 132241467 0 51.059 0.000 43.562061 -92.733693 +55910 1423 623 227534012 1042974 87.851 0.403 44.128660 -91.971828 +55912 28483 12519 487190789 962938 188.105 0.372 43.682611 -92.988598 +55917 3696 1540 349297525 1512023 134.865 0.584 43.884820 -93.075481 +55918 982 450 66918722 0 25.837 0.000 43.740821 -92.846462 +55919 985 584 112162279 22921608 43.306 8.850 43.620772 -91.299955 +55920 7026 2752 181633147 0 70.129 0.000 44.013761 -92.622006 +55921 4964 2184 469195013 2384076 181.157 0.920 43.628993 -91.458854 +55922 1021 405 110341674 0 42.603 0.000 43.558956 -91.900947 +55923 4469 1881 317724437 0 122.674 0.000 43.851027 -92.186073 +55924 1303 576 199760432 140774 77.128 0.054 44.029232 -93.027295 +55925 1113 461 78570389 1058487 30.336 0.409 43.912092 -91.458412 +55926 853 353 161129315 0 62.212 0.000 43.743195 -92.706883 +55927 4071 1610 207590400 56260 80.151 0.022 44.036469 -92.870923 +55929 1209 472 119892747 0 46.291 0.000 43.976721 -92.139619 +55931 330 164 47783313 125043 18.449 0.048 43.509812 -91.389561 +55932 2042 783 131701797 45127 50.850 0.017 44.152205 -92.298336 +55933 273 110 68146919 0 26.312 0.000 43.646002 -92.680581 +55934 3338 1324 205835750 0 79.474 0.000 44.004029 -92.264209 +55935 939 398 141143987 50801 54.496 0.020 43.753751 -92.121472 +55936 1861 778 211684557 11117 81.732 0.004 43.717078 -92.577693 +55939 1963 902 210921120 0 81.437 0.000 43.543427 -92.091732 +55940 2666 1089 234613703 88569 90.585 0.034 43.898614 -92.809489 +55941 969 435 64605243 263082 24.944 0.102 43.724845 -91.349148 +55943 3059 1395 441235752 3088605 170.362 1.193 43.782867 -91.582769 +55944 7151 2784 150805862 67767 58.226 0.026 43.989830 -92.717939 +55945 1458 684 257105483 7637458 99.269 2.949 44.266893 -92.052449 +55946 3178 1392 312149273 57701 120.522 0.022 44.273212 -92.966216 +55947 7513 3217 189192560 17600500 73.048 6.796 43.822952 -91.365543 +55949 1808 1003 286518294 866738 110.625 0.335 43.710105 -91.928608 +55950 169 79 1725725 0 0.666 0.000 43.747102 -92.964476 +55951 1567 746 196405227 124890 75.832 0.048 43.529233 -92.482488 +55952 2529 971 170050574 0 65.657 0.000 43.943303 -91.843577 +55953 894 383 89070669 0 34.390 0.000 43.526582 -92.966542 +55954 1442 738 169371230 15097 65.395 0.006 43.557061 -91.780106 +55955 2746 978 81822240 142320 31.592 0.055 44.087320 -92.740870 +55956 1962 822 140612291 800671 54.291 0.309 44.286068 -92.527569 +55957 756 313 104255461 918570 40.253 0.355 44.248729 -92.264299 +55959 2321 942 96357304 13189597 37.204 5.093 44.117960 -91.799534 +55960 3134 1257 91723367 1611619 35.415 0.622 44.137569 -92.534012 +55961 447 204 85773697 0 33.117 0.000 43.608402 -92.473757 +55962 763 388 163798096 719699 63.243 0.278 43.762120 -91.845163 +55963 4988 2078 202200088 305854 78.070 0.118 44.190569 -92.656046 +55964 4389 1788 231555880 220398 89.404 0.085 44.160083 -92.158034 +55965 2376 1172 297401334 72333 114.827 0.028 43.623194 -92.128187 +55967 938 360 97498740 0 37.644 0.000 43.795157 -92.513371 +55968 121 80 4099947 660 1.583 0.000 44.397049 -92.089927 +55969 1117 454 79909886 0 30.853 0.000 44.082477 -91.877288 +55970 1016 402 156910623 0 60.584 0.000 43.595148 -92.831962 +55971 2993 1265 208853158 379873 80.639 0.147 43.815849 -91.755680 +55972 4995 1974 224944148 0 86.851 0.000 43.995979 -92.048778 +55973 285 114 74416445 0 28.732 0.000 43.806240 -92.772859 +55974 2132 1008 217060352 382366 83.807 0.148 43.577122 -91.647985 +55975 4335 1982 397073661 85610 153.311 0.033 43.677871 -92.364465 +55976 7582 3085 228949667 272052 88.398 0.105 43.865795 -92.484235 +55977 203 80 64010011 0 24.714 0.000 43.555778 -92.648066 +55979 1143 399 151537650 0 58.509 0.000 43.920384 -91.950764 +55981 3961 2152 131183640 18477975 50.650 7.134 44.357851 -92.050732 +55982 436 197 77795047 0 30.037 0.000 43.815765 -92.884730 +55983 1588 684 100067217 35205 38.636 0.014 44.291403 -92.806985 +55985 1858 814 235002263 58733 90.735 0.023 44.158224 -92.904348 +55987 35629 14483 413700881 21589970 159.731 8.336 43.994226 -91.625441 +55990 925 438 119863246 0 46.279 0.000 43.732184 -92.261786 +55991 1490 683 141547026 2587111 54.652 0.999 44.261215 -92.418566 +55992 4693 2017 193580698 190043 74.742 0.073 44.322398 -92.682769 +56001 46327 18611 296656753 3920088 114.540 1.514 44.128325 -93.978863 +56003 14335 6249 113244015 975230 43.724 0.377 44.215472 -94.090358 +56007 21228 9789 437955714 17937045 169.096 6.926 43.660992 -93.324423 +56009 1613 701 249204236 8303263 96.218 3.206 43.661834 -93.546424 +56010 1129 538 211280466 5787282 81.576 2.234 43.886164 -94.179805 +56011 8925 3351 269928238 4702462 104.220 1.816 44.602565 -93.772641 +56013 4531 2184 438090297 1779338 169.148 0.687 43.620180 -94.103786 +56014 797 387 190776686 221273 73.659 0.085 43.583158 -93.817898 +56016 1096 462 68060846 1073455 26.278 0.414 43.762065 -93.343107 +56017 1620 919 74648004 13069573 28.822 5.046 44.305350 -93.819535 +56019 914 433 268030103 1067838 103.487 0.412 44.115896 -94.888926 +56020 115 55 2668504 894 1.030 0.000 43.607381 -93.538328 +56021 1038 419 93142536 18714405 35.963 7.226 44.289313 -94.316025 +56022 70 36 247843 0 0.096 0.000 44.053561 -94.839326 +56023 485 255 154665031 562730 59.717 0.217 43.782339 -94.013565 +56024 2759 1072 51440500 1354654 19.861 0.523 44.143592 -93.838818 +56025 507 229 129704459 33607 50.079 0.013 43.753245 -93.917351 +56026 2012 863 272691515 4628091 105.287 1.787 43.885775 -93.290995 +56027 969 478 201941816 160355 77.970 0.062 43.516714 -94.116644 +56028 1372 819 57752316 12431581 22.298 4.800 44.226257 -93.717420 +56029 744 346 117483658 3232977 45.361 1.248 43.530047 -93.522279 +56031 12401 5980 404137755 18306063 156.038 7.068 43.622571 -94.468513 +56032 313 136 1654859 544307 0.639 0.210 43.763635 -93.556877 +56033 345 196 92526446 10705 35.725 0.004 43.565060 -93.938149 +56034 496 218 74444943 1841120 28.743 0.711 44.028598 -94.181962 +56035 546 226 1537342 33005 0.594 0.013 43.820045 -93.270999 +56036 1959 892 305575415 1110901 117.983 0.429 43.551882 -93.221023 +56037 1635 664 184921112 1641007 71.398 0.634 44.016947 -94.051769 +56039 957 434 228343241 1729038 88.164 0.668 43.663252 -94.311870 +56041 1066 482 178242886 10278966 68.820 3.969 44.161305 -94.533087 +56042 720 325 135743468 57593 52.411 0.022 43.804234 -93.483758 +56043 486 221 52380015 8139 20.224 0.003 43.649401 -93.222394 +56044 2082 868 207839178 3691258 80.247 1.425 44.564804 -93.956605 +56045 813 374 70961367 1179779 27.398 0.456 43.757063 -93.214342 +56046 94 42 3785627 0 1.462 0.000 43.964524 -93.271449 +56047 117 55 4369850 0 1.687 0.000 43.732263 -94.233494 +56048 3898 1656 309502876 13980496 119.500 5.398 44.092772 -93.721097 +56050 1464 649 54055182 2251538 20.871 0.869 44.266105 -93.945434 +56051 703 374 79199946 80503 30.579 0.031 43.537461 -93.710558 +56052 699 328 124154506 5368278 47.936 2.073 44.327421 -93.557905 +56054 923 431 153989816 0 59.456 0.000 44.435233 -94.373758 +56055 3902 1721 306385080 8108874 118.296 3.131 44.128500 -94.235330 +56056 96 49 2689286 0 1.038 0.000 44.072691 -94.579483 +56057 3867 1577 224840073 6090567 86.811 2.352 44.390790 -93.711668 +56058 5985 2578 333925845 3477771 128.929 1.343 44.441769 -93.913719 +56060 452 211 84864243 215137 32.766 0.083 43.930383 -94.439744 +56062 3208 1400 325735989 4014968 125.767 1.550 44.046244 -94.414124 +56063 2724 1498 109216334 21269103 42.169 8.212 44.218030 -93.815742 +56065 2844 1170 301890698 4234088 116.561 1.635 43.942225 -93.928430 +56068 1087 506 169949971 8526670 65.618 3.292 43.865306 -93.806142 +56069 4467 1916 184990250 10944186 71.425 4.226 44.412094 -93.542436 +56071 11817 4472 215213101 5902198 83.094 2.279 44.534971 -93.579424 +56072 2389 1094 315300010 1931884 121.738 0.746 43.899229 -93.517081 +56073 16759 7364 517702523 7878679 199.886 3.042 44.304830 -94.464745 +56074 2004 790 201970841 17851068 77.981 6.892 44.332862 -94.196870 +56075 171 81 151505 0 0.058 0.000 43.735046 -94.436687 +56078 476 190 56208014 8809 21.702 0.003 44.005921 -93.760875 +56080 770 275 1194283 0 0.461 0.000 44.080438 -93.854419 +56081 6098 2732 456482457 4700363 176.249 1.815 43.991089 -94.629348 +56082 13597 4646 321232579 6201786 124.029 2.395 44.357287 -94.036965 +56083 874 429 254658654 923267 98.324 0.356 44.200924 -95.134152 +56085 5451 2408 542807989 3022020 209.579 1.167 44.294971 -94.738556 +56087 3179 1446 379595501 1013060 146.563 0.391 44.240509 -94.975248 +56088 1946 910 325119447 1937947 125.529 0.748 43.824262 -94.443294 +56089 155 86 1974897 447363 0.763 0.173 43.561574 -93.431131 +56090 694 306 119371804 1368562 46.090 0.528 43.956354 -94.244040 +56091 367 176 50117339 654500 19.350 0.253 43.927424 -93.681297 +56093 12831 5152 465061047 8451628 179.561 3.263 44.058570 -93.519385 +56096 3021 1569 138541729 11954576 53.491 4.616 44.244889 -93.603466 +56097 3715 1746 476670089 6386035 184.043 2.466 43.720968 -93.713282 +56098 2124 1064 286885572 7531069 110.767 2.908 43.793016 -94.181766 +56101 5867 2793 446809870 12741392 172.514 4.919 43.879976 -95.134004 +56110 1843 784 278874434 604892 107.674 0.234 43.621544 -95.944678 +56111 420 193 129923554 9696 50.164 0.004 43.639357 -94.882713 +56113 238 115 94344015 1795130 36.426 0.693 44.395415 -96.153168 +56114 361 186 122481853 1739762 47.291 0.672 43.976217 -95.593254 +56115 1366 621 309661308 7965701 119.561 3.076 44.209457 -95.905771 +56116 628 251 110508816 17475 42.668 0.007 43.614381 -96.386343 +56117 399 162 66069691 825410 25.510 0.319 43.523116 -95.687376 +56118 421 179 136542874 2112308 52.720 0.816 43.950579 -95.029180 +56119 1017 439 234513745 2003497 90.546 0.774 43.713719 -95.462992 +56120 1121 518 257668307 3489250 99.486 1.347 43.962378 -94.792640 +56121 659 325 96396590 9930438 37.219 3.834 43.535981 -94.596765 +56122 586 243 131313024 249533 50.700 0.096 43.898445 -95.956000 +56123 514 323 180325452 3096091 69.624 1.195 44.086937 -95.592414 +56125 65 41 2621494 0 1.012 0.000 44.058188 -95.552866 +56127 398 187 135875467 13708 52.462 0.005 43.547469 -94.764701 +56128 1984 853 303794019 499221 117.296 0.193 43.881542 -96.110303 +56129 741 344 121079374 51422 46.749 0.020 43.529141 -96.041931 +56131 2293 1059 420529190 10216336 162.367 3.945 43.855847 -95.572539 +56132 540 349 154269616 9294560 59.564 3.589 44.203493 -95.764924 +56134 462 206 132353994 0 51.102 0.000 43.795694 -96.238401 +56136 1118 620 222033801 6409877 85.728 2.475 44.500249 -96.395226 +56137 1149 554 304228963 9769741 117.463 3.772 43.840366 -95.330695 +56138 899 374 75037140 26714 28.972 0.010 43.534582 -96.389525 +56139 430 214 115612677 371857 44.638 0.144 44.103929 -96.179427 +56140 59 38 214152 11365 0.083 0.004 43.907739 -96.369409 +56141 323 166 102940737 760403 39.746 0.294 43.877080 -95.803880 +56142 981 550 250112542 4853304 96.569 1.874 44.467549 -96.231207 +56143 4478 2196 472505189 5479613 182.435 2.116 43.632603 -95.008680 +56144 1143 548 256515189 629548 99.041 0.243 43.851392 -96.392004 +56145 622 309 138898550 0 53.629 0.000 44.054734 -95.175721 +56146 40 18 2570165 0 0.992 0.000 43.580062 -96.103432 +56147 192 83 76698891 45361 29.614 0.018 43.757410 -96.057786 +56149 1268 732 287899937 9646611 111.159 3.725 44.304157 -96.305564 +56150 2742 1307 444045367 14454274 171.447 5.581 43.628270 -95.197164 +56151 823 387 259958011 1349517 100.370 0.521 44.031451 -95.929422 +56152 1507 731 342621122 1072915 132.287 0.414 44.230458 -95.272944 +56153 224 121 9351328 1826 3.611 0.001 43.826655 -96.003104 +56155 419 192 109918296 70689 42.440 0.027 43.772450 -95.944787 +56156 6066 2763 433126662 592424 167.231 0.229 43.661782 -96.227061 +56157 788 325 117105646 261059 45.215 0.101 44.404175 -95.948377 +56158 434 173 105969251 11722 40.915 0.005 43.640634 -96.078500 +56159 2928 1228 309832706 1634654 119.627 0.631 43.941177 -94.931905 +56160 214 111 55847011 1276839 21.563 0.493 43.841157 -94.804734 +56161 400 175 84142561 701489 32.488 0.271 43.707031 -95.324827 +56162 285 129 59477281 0 22.964 0.000 43.841705 -94.668746 +56164 5969 2801 678496148 765629 261.969 0.296 44.060521 -96.342684 +56165 349 146 98853224 145554 38.167 0.056 43.725343 -95.703057 +56166 253 110 92226710 14822 35.609 0.006 44.203001 -95.380986 +56167 661 326 131864463 6157348 50.913 2.377 43.553927 -95.408728 +56168 932 424 253270364 327331 97.788 0.126 43.617488 -95.809489 +56169 681 315 140801661 2982476 54.364 1.152 44.338334 -96.006510 +56170 587 280 178137162 2790887 68.779 1.078 44.173686 -96.090557 +56171 1821 934 243519105 7191779 94.023 2.777 43.671285 -94.761789 +56172 3164 1665 308340129 6378167 119.051 2.463 44.014163 -95.775514 +56173 424 161 74431694 0 28.738 0.000 43.524720 -96.245976 +56174 357 194 99353938 1837782 38.361 0.710 44.016336 -95.305092 +56175 3085 1562 354199911 12159315 136.757 4.695 44.260146 -95.638718 +56176 1137 516 158817537 3906874 61.320 1.508 43.783287 -94.720493 +56177 45 22 957166 0 0.370 0.000 43.889121 -96.252873 +56178 1746 824 219175798 6894123 84.624 2.662 44.284610 -96.133197 +56180 1408 588 298701874 463339 115.329 0.179 44.246204 -95.459592 +56181 1147 550 169685805 1067969 65.516 0.412 43.677703 -94.626792 +56183 1263 679 265425476 4819200 102.481 1.861 44.029014 -95.431126 +56185 560 250 113601752 115305 43.862 0.045 43.798534 -95.824238 +56186 388 188 162538444 174496 62.756 0.067 44.033228 -96.074258 +56187 14170 5278 439824170 10230747 169.817 3.950 43.624671 -95.582390 +56201 23173 9593 310197465 29138219 119.768 11.250 45.102185 -95.041816 +56207 251 118 121906109 5282944 47.068 2.040 45.491698 -96.066223 +56208 2066 1200 488418252 20132559 188.579 7.773 45.246719 -96.004770 +56209 2339 1313 253276141 20926304 97.790 8.080 45.127230 -94.812115 +56210 13 14 584752 0 0.226 0.000 45.559885 -96.565367 +56211 529 399 280807253 21331412 108.420 8.236 45.579017 -96.693856 +56212 531 278 213209912 613923 82.321 0.237 45.130873 -96.323833 +56214 725 334 162526103 867032 62.752 0.335 44.603676 -95.322581 +56215 4693 2244 547254205 7481781 211.296 2.889 45.317716 -95.571951 +56216 670 279 99203891 37576 38.303 0.015 44.942507 -95.059378 +56218 628 312 253378275 1403098 97.830 0.542 44.826953 -95.940466 +56219 1082 652 196449464 11193376 75.850 4.322 45.607652 -96.818280 +56220 3070 1472 710459510 740215 274.310 0.286 44.732106 -96.295236 +56221 773 406 362815326 987054 140.084 0.381 45.548133 -96.192863 +56222 1984 871 246829874 32388 95.302 0.013 44.985399 -95.356764 +56223 1408 670 302518842 382589 116.803 0.148 44.762144 -95.818773 +56224 333 166 96273153 17185 37.171 0.007 44.372814 -95.052134 +56225 834 522 276506362 10564319 106.760 4.079 45.441004 -96.442659 +56226 254 111 81611453 148391 31.510 0.057 45.421616 -95.678120 +56227 223 142 170556627 19878715 65.852 7.675 45.290841 -96.168828 +56228 882 442 152446704 996674 58.860 0.385 44.951236 -94.685179 +56229 1871 804 252925765 4776069 97.655 1.844 44.594036 -95.716384 +56230 854 374 157496981 136050 60.810 0.053 44.763464 -95.084058 +56231 390 183 257947444 650337 99.594 0.251 45.279446 -95.763206 +56232 2415 1141 377767468 7716847 145.857 2.979 44.932618 -96.035236 +56235 579 298 231382106 7446442 89.337 2.875 45.709703 -96.016509 +56236 359 183 252580139 113496 97.522 0.044 45.664469 -96.415963 +56237 600 274 170610740 2861411 65.873 1.105 44.616613 -95.433459 +56239 596 248 69558551 0 26.857 0.000 44.504193 -95.910436 +56240 1042 489 386983229 10256270 149.415 3.960 45.562591 -96.483714 +56241 4166 1943 380560908 3223308 146.935 1.245 44.797879 -95.572923 +56243 1725 761 242367599 7586717 93.579 2.929 45.170240 -94.686488 +56244 1496 607 311248388 2417846 120.174 0.934 45.477882 -95.780474 +56245 535 210 121866542 397607 47.053 0.154 44.684043 -95.677203 +56248 807 433 351427500 10095081 135.687 3.898 45.786154 -96.135813 +56249 296 154 171539708 251492 66.232 0.097 45.318795 -95.904576 +56251 987 438 87482720 4344680 33.777 1.677 45.143774 -94.920252 +56252 1238 543 188409509 445213 72.745 0.172 45.178253 -95.310120 +56253 1015 694 276317102 19112267 106.687 7.379 44.959963 -94.872528 +56255 394 193 103516527 245258 39.968 0.095 44.397066 -95.419313 +56256 2581 1380 598448099 7946896 231.062 3.068 45.028691 -96.202421 +56257 508 289 222854716 1729040 86.045 0.668 44.969258 -96.402151 +56258 15617 6512 501157658 1176929 193.498 0.454 44.446070 -95.758167 +56260 929 413 246201069 207948 95.059 0.080 44.963275 -95.482997 +56262 724 355 171169619 6795471 66.089 2.624 45.115071 -95.869707 +56263 541 240 128628449 545055 49.664 0.210 44.421485 -95.532455 +56264 2204 987 327091327 271731 126.291 0.105 44.570250 -95.984716 +56265 7757 3532 689878316 2911844 266.364 1.124 44.999823 -95.706482 +56266 1628 737 265745182 544718 102.605 0.210 44.421064 -94.914551 +56267 6807 2803 524627908 13235188 202.560 5.110 45.582554 -95.928714 +56270 1061 445 103879612 398683 40.108 0.154 44.570375 -94.987380 +56271 1196 540 387733049 4351593 149.705 1.680 45.244754 -95.404995 +56273 4797 2352 254768033 29142991 98.366 11.252 45.317876 -94.979937 +56274 177 94 194244887 0 74.998 0.000 45.902220 -96.245727 +56276 298 151 142127677 7418614 54.876 2.864 45.246430 -96.324208 +56277 3191 1432 277033415 78768 106.963 0.030 44.756176 -94.985510 +56278 2601 1612 333294984 27930896 128.686 10.784 45.348003 -96.379955 +56279 1271 533 155850038 8132967 60.174 3.140 45.218831 -95.169843 +56280 480 237 180446498 247717 69.671 0.096 44.632607 -96.168267 +56281 619 261 31890800 0 12.313 0.000 44.953238 -95.169261 +56282 1510 631 273084575 1102121 105.439 0.426 45.040131 -95.228467 +56283 6636 3073 458695399 2663063 177.103 1.028 44.527995 -95.138830 +56284 2111 955 364039969 257827 140.557 0.100 44.781891 -95.198352 +56285 1096 526 253055931 197653 97.705 0.076 44.788702 -95.346058 +56287 81 35 1143475 1268 0.441 0.000 44.475762 -95.326432 +56288 4696 2788 121591665 42912603 46.947 16.569 45.241206 -94.951460 +56289 634 390 126702480 13004533 48.920 5.021 45.333188 -95.224451 +56291 501 230 174812782 409651 67.496 0.158 44.626742 -96.081910 +56292 636 261 154224898 408598 59.547 0.158 44.502071 -95.456501 +56293 1223 525 219913399 594405 84.909 0.230 44.416508 -95.259924 +56294 84 41 666887 8054 0.257 0.003 44.313219 -95.213533 +56295 310 146 57449005 3005423 22.181 1.160 45.035813 -95.826677 +56296 2029 1132 646571439 11110053 249.643 4.290 45.826830 -96.462462 +56297 867 367 170771548 3871496 65.935 1.495 44.636634 -95.529370 +56301 32434 12235 192222225 5196441 74.217 2.006 45.487084 -94.242777 +56303 25984 11528 28920053 549983 11.166 0.212 45.574485 -94.213691 +56304 16020 6882 155282352 4420615 59.955 1.707 45.530414 -94.057184 +56307 5157 1981 277767815 4699744 107.247 1.815 45.626810 -94.591029 +56308 23961 12937 403707950 97036169 155.873 37.466 45.878391 -95.386055 +56309 1185 774 141861406 27539291 54.773 10.633 46.079490 -95.805711 +56310 5120 2130 185459091 10743982 71.606 4.148 45.634286 -94.450242 +56311 757 375 182967203 10693718 70.644 4.129 45.897472 -95.895603 +56312 2365 998 448763815 7139045 173.269 2.756 45.470123 -94.961846 +56313 106 49 378664 0 0.146 0.000 45.784142 -93.552737 +56314 1258 497 109965621 928926 42.458 0.359 45.814701 -94.432957 +56315 1591 919 180242796 23054936 69.592 8.902 45.980141 -95.594079 +56316 1580 722 350466393 11427057 135.316 4.412 45.488301 -95.162659 +56318 1238 873 103326012 10916489 39.894 4.215 45.853038 -94.674530 +56319 1321 668 104094974 196577 40.191 0.076 46.010823 -95.215688 +56320 8080 3380 138751929 10270215 53.572 3.965 45.466629 -94.402835 +56321 1536 2 1716841 659594 0.663 0.255 45.579025 -94.389459 +56323 496 248 94364245 2394735 36.434 0.925 45.629632 -95.723921 +56324 1115 647 145944856 33143844 56.350 12.797 46.168954 -95.904069 +56325 211 91 419514 0 0.162 0.000 45.562815 -94.946854 +56326 1526 807 245083425 33609989 94.627 12.977 46.039558 -95.670809 +56327 803 557 129703782 18604376 50.079 7.183 45.754473 -95.607998 +56328 128 55 3620411 0 1.398 0.000 45.954758 -94.517536 +56329 7367 2838 495569684 265095 191.341 0.102 45.709067 -93.914815 +56330 1691 671 103095304 141222 39.805 0.055 45.753241 -93.756384 +56331 2019 764 179614065 4364553 69.349 1.685 45.678998 -94.671722 +56332 1407 684 132033777 8031773 50.979 3.101 45.967062 -95.508022 +56334 5497 3392 520123265 48347058 200.821 18.667 45.574381 -95.336780 +56335 199 95 1336224 0 0.516 0.000 45.600289 -94.861632 +56336 1514 1128 128623441 14957783 49.662 5.775 45.820691 -94.762637 +56338 1691 1305 434641584 15865836 167.816 6.126 46.043124 -93.854186 +56339 1129 609 162854616 7351681 62.879 2.839 45.824849 -95.810949 +56340 2288 919 127850920 8115 49.364 0.003 45.759467 -94.429019 +56342 2739 2611 490234135 56277766 189.280 21.729 46.184190 -93.369917 +56343 926 511 178766797 15584212 69.022 6.017 45.785910 -95.704956 +56345 14786 6455 587869470 10561046 226.978 4.078 45.988419 -94.373531 +56347 7062 2961 485804218 9789442 187.570 3.780 45.967481 -94.872023 +56349 733 357 110674899 19507161 42.732 7.532 45.726157 -95.513002 +56350 570 570 593320268 1028584 229.082 0.397 46.305029 -93.230407 +56352 5868 2412 292742694 7611367 113.029 2.939 45.641800 -94.806359 +56353 8996 3789 480475991 3133891 185.513 1.210 45.803664 -93.629079 +56354 1367 1042 108665762 9132898 41.956 3.526 46.057443 -95.248547 +56355 579 237 67096120 443838 25.906 0.171 45.941442 -95.245716 +56356 300 129 992921 0 0.383 0.000 45.628950 -94.753489 +56357 1029 389 95998110 15731 37.065 0.006 45.697723 -93.800686 +56358 3256 1413 318825551 4588187 123.099 1.772 45.845475 -93.449967 +56359 3878 2240 502331234 221942187 193.951 85.692 46.099568 -93.665304 +56360 3917 2530 335676022 34760645 129.605 13.421 45.895491 -95.116562 +56361 2403 1269 403648338 19399172 155.850 7.490 46.156790 -95.337678 +56362 5844 2978 381139150 19310255 147.159 7.456 45.401875 -94.712120 +56363 155 59 992811 1470 0.383 0.001 45.696739 -93.652380 +56364 5416 2244 617500862 2568989 238.418 0.992 46.005009 -94.072993 +56367 6263 2519 262280763 8965152 101.267 3.461 45.763755 -94.182049 +56368 4239 2376 178424909 16609329 68.890 6.413 45.464545 -94.561477 +56369 528 235 2430006 0 0.938 0.000 45.467011 -94.345356 +56371 99 54 1182083 0 0.456 0.000 45.433229 -94.636584 +56373 3051 1168 260539609 5959018 100.595 2.301 45.859740 -94.230562 +56374 9868 3209 175780774 4964185 67.869 1.917 45.670028 -94.303347 +56375 852 317 9468836 0 3.656 0.000 45.700876 -94.274251 +56376 358 138 4718361 0 1.822 0.000 45.505644 -94.679481 +56377 17648 6771 54261529 1768110 20.950 0.683 45.646154 -94.247791 +56378 7778 3605 547428246 19177899 211.363 7.405 45.725034 -94.987283 +56379 16163 6573 234282373 2555389 90.457 0.987 45.639681 -94.082678 +56381 2458 1380 392310869 30311983 151.472 11.704 45.556674 -95.537869 +56382 1540 664 188653588 5097877 72.840 1.968 45.907862 -94.598327 +56384 328 161 2828985 0 1.092 0.000 45.809443 -94.567231 +56385 928 681 168010460 9290125 64.869 3.587 45.700872 -95.232188 +56386 652 593 51629023 14005142 19.934 5.407 46.114329 -93.519271 +56387 6734 3428 21967084 0 8.482 0.000 45.532880 -94.239676 +56389 111 42 1530267 331419 0.591 0.128 45.797471 -95.091489 +56401 29439 14910 843440143 96414001 325.654 37.226 46.322919 -94.125210 +56425 7655 3188 49047370 6951429 18.937 2.684 46.343935 -94.276015 +56431 8931 7858 1170344328 338288341 451.872 130.614 46.489933 -93.635959 +56433 1840 1360 315090533 21039336 121.657 8.123 46.973708 -94.697017 +56434 235 99 38677248 0 14.933 0.000 46.338439 -94.934651 +56435 2372 2186 414762548 40107390 160.141 15.486 46.822929 -94.539543 +56436 67 26 1685552 46874 0.651 0.018 47.161257 -94.688534 +56437 1380 540 172390160 12974 66.560 0.005 46.248060 -95.056765 +56438 2949 1461 372257641 6303033 143.729 2.434 46.138601 -94.819178 +56440 1409 598 140682118 29075 54.318 0.011 46.141951 -94.955084 +56441 3596 2066 205476075 21393408 79.335 8.260 46.577802 -93.981476 +56442 2381 3136 91762613 30969037 35.430 11.957 46.677460 -94.101479 +56443 1417 1491 261149156 26984780 100.830 10.419 46.178887 -94.619829 +56444 3087 2768 144483616 36344526 55.785 14.033 46.420525 -93.878891 +56446 1597 773 257998582 1053350 99.614 0.407 46.128838 -95.097490 +56447 1150 1480 254839387 25544794 98.394 9.863 46.738707 -93.914976 +56448 332 613 69695250 8807321 26.909 3.401 46.766218 -94.119281 +56449 1769 827 238523102 6262759 92.094 2.418 46.184733 -94.249031 +56450 1017 1209 66380882 14585814 25.630 5.632 46.231257 -93.831513 +56452 1755 3223 252887861 73508581 97.641 28.382 46.956707 -94.448628 +56453 871 423 141428113 351845 54.606 0.136 46.316002 -95.175374 +56455 1488 785 63155231 6887383 24.384 2.659 46.440977 -94.000613 +56456 50 24 1918995 0 0.741 0.000 46.637753 -94.337292 +56458 357 292 65015985 5648180 25.103 2.181 47.193337 -94.975317 +56461 3241 2033 709717227 33400190 274.023 12.896 47.232073 -94.853912 +56464 4336 2539 657378595 17185336 253.815 6.635 46.772890 -95.124099 +56465 2062 1693 100454865 35344291 38.786 13.647 46.537328 -94.114383 +56466 3116 2136 483834779 14541575 186.810 5.615 46.420532 -94.642727 +56467 2412 2484 315292326 42175845 121.735 16.284 46.992726 -94.818597 +56468 4589 3694 133714869 62580722 51.628 24.163 46.490313 -94.290567 +56469 998 1199 708522682 18796155 273.562 7.257 46.781236 -93.566778 +56470 10334 7407 1012328329 95242626 390.862 36.773 47.027500 -95.098576 +56472 7459 5803 403491657 56476433 155.789 21.806 46.577263 -94.356201 +56473 3380 1747 208799247 10987551 80.618 4.242 46.357526 -94.493302 +56474 4244 2739 630068706 46593015 243.271 17.990 46.719853 -94.402843 +56475 1655 738 173743567 1557322 67.083 0.601 46.079719 -94.545992 +56477 2758 1404 615330543 2304376 237.580 0.890 46.644616 -95.000175 +56479 5384 2631 512919088 9784750 198.039 3.778 46.442599 -94.790234 +56481 2031 958 383036286 1063853 147.891 0.411 46.475418 -94.919653 +56482 6666 3016 340039912 309150 131.290 0.119 46.464195 -95.147753 +56484 3205 2640 234770010 245711446 90.645 94.870 47.093644 -94.468355 +56501 16290 9412 484359064 94950156 187.012 36.660 46.837283 -95.813950 +56510 2333 1131 611203172 1719355 235.987 0.664 47.358810 -96.524868 +56511 1878 1195 168075102 16723937 64.894 6.457 46.839951 -95.995301 +56514 3696 1560 554044943 1242841 213.918 0.480 46.642707 -96.428806 +56515 2892 3037 257555639 90586624 99.443 34.976 46.294011 -95.693048 +56516 294 140 207706589 1731040 80.196 0.668 47.442035 -95.976010 +56517 279 118 245622832 0 94.836 0.000 47.560338 -96.549630 +56518 388 156 48436798 219559 18.702 0.085 46.490070 -95.250369 +56519 300 150 245326972 215540 94.721 0.083 47.161941 -96.478978 +56520 3983 1868 318640112 337104 123.028 0.130 46.289750 -96.497076 +56521 757 313 174277893 6238069 67.289 2.409 46.999297 -95.901811 +56522 538 271 379162909 109882 146.396 0.042 46.131921 -96.379373 +56523 539 228 214889461 0 82.969 0.000 47.650242 -96.813366 +56524 661 787 104376284 19599916 40.300 7.568 46.216786 -95.615481 +56525 106 48 5421187 0 2.093 0.000 46.666328 -96.750053 +56527 840 412 135107233 1540495 52.165 0.595 46.378318 -95.319712 +56528 1673 1729 167728716 58984766 64.760 22.774 46.521354 -95.823814 +56529 4026 1728 12789955 23724 4.938 0.009 46.877139 -96.690238 +56531 1994 1093 413512847 16930216 159.658 6.537 45.987271 -95.981265 +56533 291 141 45845165 2787857 17.701 1.076 46.409003 -96.156471 +56534 1164 632 160156510 15680404 61.837 6.054 46.471572 -96.011397 +56535 1363 885 217529331 15938133 83.989 6.154 47.677583 -96.041858 +56536 482 224 263870469 243758 101.881 0.094 47.046794 -96.522969 +56537 18548 8876 738293375 55869666 285.057 21.571 46.275351 -96.089852 +56540 1962 920 490318808 8003409 189.313 3.090 47.557710 -96.269583 +56541 24 14 5183684 3691 2.001 0.001 47.162393 -96.141503 +56542 2829 1377 495458749 27507038 191.298 10.621 47.550326 -95.736221 +56543 276 130 172851043 0 66.738 0.000 46.287011 -96.338325 +56544 5294 2673 498073147 43717207 192.307 16.879 46.757782 -95.605415 +56545 682 347 402094211 873395 155.249 0.337 47.390630 -96.241952 +56546 346 147 156153434 3230 60.291 0.001 47.100228 -96.727263 +56547 2700 998 402022722 335186 155.222 0.129 46.889472 -96.553728 +56548 771 399 166075141 905163 64.122 0.349 47.368272 -96.745362 +56549 4508 1963 540540817 10763125 208.704 4.156 46.847447 -96.312324 +56550 414 203 149950801 1303490 57.896 0.503 47.273933 -96.743060 +56551 2237 1452 279226541 18130447 107.810 7.000 46.317390 -95.446913 +56552 429 199 125269982 4005906 48.367 1.547 46.984605 -96.204295 +56553 293 127 162628698 0 62.791 0.000 46.428827 -96.618255 +56554 2709 1866 305135403 42570859 117.813 16.437 46.885525 -96.116127 +56556 1160 545 255293762 5576807 98.569 2.153 47.662952 -95.879974 +56557 2811 1248 637298767 18571410 246.062 7.170 47.317222 -95.794960 +56560 40766 16298 409942810 0 158.280 0.000 46.842028 -96.735562 +56565 107 52 74545971 0 28.782 0.000 46.049586 -96.297639 +56566 668 262 46489491 9569538 17.950 3.695 47.238908 -95.612901 +56567 3169 1560 383548564 5717912 148.089 2.208 46.549825 -95.374417 +56568 142 89 86972838 101454 33.580 0.039 47.534968 -96.762906 +56569 1357 809 327155974 22431269 126.316 8.661 47.073766 -95.859666 +56570 1238 816 252396077 23171479 97.451 8.947 46.917930 -95.367145 +56571 1800 1589 119250115 48793391 46.043 18.839 46.433856 -95.542716 +56572 5454 3893 424359382 88409574 163.846 34.135 46.602178 -96.073714 +56573 5993 3340 357824272 47144790 138.157 18.203 46.618769 -95.548277 +56574 266 132 152824382 1481015 59.006 0.572 47.202120 -96.714289 +56575 763 582 389263143 37064722 150.295 14.311 47.042407 -95.434841 +56576 799 844 102283607 39757871 39.492 15.351 46.463112 -95.699414 +56577 21 15 786496 278243 0.304 0.107 46.974377 -95.801200 +56578 747 625 177883867 42070031 68.681 16.243 46.940894 -95.641496 +56579 1136 539 507092428 2113271 195.789 0.816 46.463530 -96.338999 +56580 1171 440 164504276 195393 63.515 0.075 46.736062 -96.604014 +56581 287 165 102723269 290429 39.662 0.112 47.462333 -96.761828 +56583 168 96 207560176 0 80.139 0.000 46.010570 -96.410973 +56584 1553 772 352776697 2584885 136.208 0.998 47.223671 -96.237402 +56585 1049 481 304197822 520998 117.451 0.201 47.088367 -96.246304 +56586 1839 1292 186279267 33550701 71.923 12.954 46.318269 -95.830900 +56587 1404 1132 148357452 23968185 57.281 9.254 46.636628 -95.856523 +56588 568 421 137111480 12470669 52.939 4.815 46.209136 -95.496947 +56589 1975 1456 638809362 55779885 246.646 21.537 47.167325 -95.745654 +56590 373 204 200376975 5233263 77.366 2.021 46.050399 -96.153316 +56591 170 62 2231367 155131 0.862 0.060 47.085957 -95.842386 +56592 516 243 151459723 2638744 58.479 1.019 47.538201 -96.009471 +56593 14 11 46180 0 0.018 0.000 46.803537 -95.353468 +56594 440 201 247520175 0 95.568 0.000 46.548256 -96.642980 +56601 32225 14446 947837480 132397786 365.962 51.119 47.507361 -94.864016 +56621 4639 2378 812075878 23346440 313.544 9.014 47.419058 -95.412927 +56623 2749 2102 1225519734 36312833 473.176 14.020 48.597453 -94.600591 +56626 356 271 149402633 19281333 57.685 7.445 47.320538 -94.246106 +56627 309 346 2180833173 2595599 842.024 1.002 48.256132 -94.070723 +56628 1681 1910 646517620 63498232 249.622 24.517 47.694210 -93.590040 +56629 197 216 644514255 4395294 248.848 1.697 48.545164 -94.101623 +56630 2117 1177 709006345 13166222 273.749 5.084 47.757029 -94.497762 +56633 4541 2516 570777313 223740301 220.378 86.387 47.318784 -94.501180 +56634 1639 817 309668433 5362368 119.564 2.070 47.680725 -95.398130 +56636 5137 3215 1165945602 283396284 450.174 109.420 47.437935 -93.919202 +56637 227 176 61567106 8465827 23.771 3.269 47.608115 -93.829972 +56639 459 486 781921378 13506873 301.902 5.215 47.917841 -93.536303 +56641 324 354 81814324 19634243 31.589 7.581 47.222364 -94.252758 +56644 787 528 267523709 6221427 103.291 2.402 47.797005 -95.495088 +56646 355 208 203083936 3087391 78.411 1.192 47.773594 -95.632726 +56647 839 520 208449560 17808848 80.483 6.876 47.689935 -94.618731 +56649 9932 5312 667058071 237528921 257.553 91.710 48.574989 -92.917067 +56650 722 606 464963269 261497 179.523 0.101 47.998056 -94.557478 +56651 538 476 172707590 8730230 66.683 3.371 47.454496 -95.616723 +56652 539 350 217950272 8294138 84.151 3.202 47.733484 -95.248518 +56653 1336 816 1635027834 3363887 631.288 1.299 48.272085 -93.509558 +56654 153 110 306283087 1836624 118.257 0.709 48.473941 -93.976772 +56655 1303 2188 272674254 72977768 105.280 28.177 47.028931 -94.231326 +56657 304 551 143838558 22894967 55.536 8.840 47.573005 -93.634311 +56658 6 28 187759190 29914 72.494 0.012 48.063342 -93.842402 +56659 54 78 34047830 3473133 13.146 1.341 47.653088 -94.017436 +56660 240 200 466825593 1070580 180.242 0.413 47.991314 -94.192377 +56661 942 793 1017466708 26405935 392.846 10.195 47.860563 -94.195382 +56662 511 1174 155090031 14646965 59.881 5.655 46.862191 -93.852993 +56663 220 224 146594298 30665240 56.600 11.840 47.466429 -94.446625 +56666 1066 307 113863536 20657 43.963 0.008 48.033237 -94.821241 +56667 662 336 237904632 20327468 91.855 7.848 47.722587 -94.968511 +56668 136 77 402637 5737 0.155 0.002 48.613385 -93.346928 +56669 375 480 568538165 49714243 219.514 19.195 48.383950 -93.135452 +56670 1440 429 120377507 1761661 46.478 0.680 47.853262 -94.863596 +56671 3371 1078 572255628 15721403 220.949 6.070 47.895133 -95.305386 +56672 2097 2670 1121105283 101265925 432.861 39.099 47.072504 -94.001840 +56673 795 626 304223278 21032421 117.461 8.121 48.822330 -95.105483 +56676 1663 1029 528205793 24027728 203.941 9.277 47.539652 -95.195778 +56678 1321 645 319649661 5781497 123.417 2.232 47.421954 -95.118076 +56680 117 185 74930206 7898397 28.931 3.050 47.659089 -93.957158 +56681 318 324 269278842 25907001 103.969 10.003 47.611763 -94.237388 +56683 772 439 160331868 16474892 61.904 6.361 47.736307 -94.751107 +56684 282 172 258977193 559030 99.992 0.216 47.855617 -95.698912 +56685 117 293 326416061 404015 126.030 0.156 48.238688 -94.531271 +56686 984 832 456610218 8912691 176.298 3.441 48.784049 -94.911697 +56687 73 37 4462427 31621 1.723 0.012 47.501024 -94.994123 +56688 157 185 288012437 4462812 111.202 1.723 47.772963 -93.912179 +56701 12690 5693 987868330 3969178 381.418 1.533 48.121195 -96.192034 +56710 490 237 109221123 0 42.171 0.000 48.215386 -97.001820 +56711 96 243 48964391 27324586 18.905 10.550 49.311073 -94.958950 +56713 1022 470 495440857 43524 191.291 0.017 48.351356 -96.814494 +56714 1157 593 537534754 104548 207.543 0.040 48.783858 -96.004640 +56715 350 171 165995082 0 64.091 0.000 47.808974 -95.941278 +56716 9416 3865 820704631 98855 316.876 0.038 47.743248 -96.555403 +56720 57 27 49193912 7466 18.994 0.003 48.569749 -96.892978 +56721 10096 4220 488480080 1219495 188.603 0.471 47.969729 -96.946980 +56722 386 167 374761000 62412 144.696 0.024 47.985086 -96.646021 +56723 970 410 295181760 0 113.970 0.000 47.809408 -96.806430 +56724 159 131 297323854 0 114.797 0.000 48.445803 -95.735912 +56725 978 470 754515643 125685 291.320 0.049 48.150367 -95.797690 +56726 1631 795 814130915 840861 314.338 0.325 48.753797 -96.239203 +56727 769 630 2130496229 1250041 822.589 0.483 48.288717 -95.412061 +56728 1364 747 502253001 2995971 193.921 1.157 48.782511 -97.008219 +56729 140 79 147371051 729770 56.900 0.282 48.669682 -96.569079 +56731 93 47 97706126 11616 37.725 0.004 48.913017 -97.072561 +56732 1136 627 363811211 2943341 140.468 1.136 48.584211 -96.467330 +56733 390 234 379593140 930143 146.562 0.359 48.638068 -96.895762 +56734 467 339 472035418 3070387 182.254 1.185 48.770296 -96.602484 +56735 816 487 878676518 8880522 339.259 3.429 48.910175 -96.635315 +56736 903 978 275740291 10890441 106.464 4.205 47.708668 -96.191476 +56737 871 496 495415492 34606836 191.281 13.362 48.434470 -96.036715 +56738 1368 626 463444720 3663 178.937 0.001 48.334907 -96.335704 +56741 23 159 13085194 749612 5.052 0.289 49.306868 -94.853222 +56742 918 447 328766446 57964 126.937 0.022 47.928291 -95.807021 +56744 621 305 265573256 4989934 102.538 1.927 48.243805 -97.127610 +56748 600 291 224495186 0 86.678 0.000 47.921967 -96.010269 +56750 2539 1171 599856934 192475 231.606 0.074 47.893024 -96.294498 +56751 5575 2599 1210792108 6973723 467.489 2.693 48.809822 -95.733307 +56754 546 246 95563598 332159 36.897 0.128 47.999110 -96.188545 +56755 102 70 124397894 575872 48.030 0.222 48.970326 -97.097235 +56756 799 362 274603460 21894 106.025 0.008 48.893305 -95.538296 +56757 932 523 573588433 1349147 221.464 0.521 48.478088 -96.898134 +56758 418 247 276287641 513181 106.675 0.198 48.465369 -96.511240 +56759 364 200 381009492 6461198 147.109 2.495 48.554528 -96.070090 +56760 358 174 192521085 0 74.333 0.000 48.243570 -96.453251 +56761 488 272 276033542 0 106.577 0.000 48.602677 -95.696207 +56762 2494 1164 880413735 0 339.930 0.000 48.168749 -96.739610 +56763 5180 2427 629408871 1796250 243.016 0.694 48.815298 -95.360862 +57001 1672 792 329446438 283979 127.200 0.110 42.989202 -96.637675 +57002 863 394 153994275 0 59.458 0.000 44.296448 -96.676931 +57003 1879 706 124793686 389087 48.183 0.150 43.746313 -96.755327 +57004 3356 1489 515231024 196152 198.932 0.076 43.079784 -96.791217 +57005 10473 3854 133214601 687445 51.434 0.265 43.592068 -96.585656 +57006 24530 9745 402702682 4414464 155.484 1.704 44.315423 -96.797514 +57010 493 251 146131255 2951495 56.422 1.140 42.819184 -96.816158 +57012 1160 496 220567891 1968935 85.162 0.760 43.594543 -97.277198 +57013 4440 1886 354182186 508742 136.751 0.196 43.278376 -96.617496 +57014 1471 688 344361899 46370 132.959 0.018 43.111803 -96.956350 +57015 787 328 126917836 0 49.003 0.000 43.418384 -96.980022 +57016 693 469 87857373 5196130 33.922 2.006 43.899015 -96.958995 +57017 1340 568 325798917 1502128 125.792 0.580 44.015156 -96.849104 +57018 1372 585 211716958 3875279 81.744 1.496 43.797893 -96.981006 +57020 1502 533 41972793 9697 16.206 0.004 43.681278 -96.820156 +57021 276 133 80628174 76061 31.131 0.029 43.264816 -96.972194 +57022 4996 1985 339869008 1219338 131.224 0.471 43.840900 -96.717205 +57024 428 183 82752845 0 31.951 0.000 43.988522 -96.679219 +57025 2795 1221 343287261 5785785 132.544 2.234 42.728403 -96.697716 +57026 1458 603 408307669 94756 157.648 0.037 44.259932 -96.518396 +57027 109 44 15228398 47851 5.880 0.018 43.179998 -96.517223 +57028 3448 1528 518286843 974210 200.112 0.376 44.061736 -96.599811 +57029 2023 1007 495854544 249325 191.451 0.096 43.339062 -97.484847 +57030 2959 1145 389009927 1012423 150.198 0.391 43.738304 -96.519561 +57031 741 315 125189492 5390033 48.336 2.081 42.875321 -97.185729 +57032 5906 2140 126371399 352835 48.792 0.136 43.424192 -96.678132 +57033 4713 1753 303702688 3441167 117.260 1.329 43.617972 -96.960938 +57034 712 318 187666441 34856 72.458 0.013 43.119930 -96.553807 +57035 1200 487 222706640 5005072 85.988 1.932 43.627175 -97.080459 +57036 811 373 236184585 793895 91.191 0.307 43.278144 -97.139059 +57037 819 369 258034307 126217 99.628 0.049 43.104561 -97.249244 +57038 1667 672 138367763 6536530 53.424 2.524 42.585156 -96.576625 +57039 3265 1361 228618315 21464 88.270 0.008 43.337838 -96.874855 +57040 389 189 170361851 188633 65.777 0.073 43.061032 -97.587350 +57041 97 44 7709918 0 2.977 0.000 43.729774 -96.867629 +57042 8415 3845 531475542 11087962 205.204 4.281 43.986587 -97.156681 +57043 1378 636 282747234 36983 109.169 0.014 43.422611 -97.310061 +57045 996 500 316075737 472221 122.038 0.182 43.205008 -97.528384 +57046 626 274 121748207 1876467 47.007 0.725 42.957636 -97.306648 +57047 256 122 38182366 0 14.742 0.000 43.520670 -97.211956 +57048 1170 448 330815367 1062280 127.729 0.410 43.741984 -97.200336 +57049 5789 2482 36144043 4363802 13.955 1.685 42.531466 -96.507606 +57050 191 83 103561152 2171638 39.985 0.838 44.157204 -97.012788 +57051 263 174 165110952 4530351 63.750 1.749 44.232681 -97.337907 +57052 452 128 189445615 135279 73.145 0.052 43.292356 -97.707966 +57053 1893 841 368463508 0 142.265 0.000 43.410059 -97.140286 +57054 502 263 298622980 957422 115.299 0.370 44.131488 -97.259790 +57055 1090 449 45169293 195419 17.440 0.075 43.666850 -96.743898 +57057 152 63 74555489 258586 28.786 0.100 44.102232 -96.959250 +57058 1973 911 411959333 1621009 159.058 0.626 43.738190 -97.395155 +57059 1522 705 387922529 679166 149.778 0.262 43.119205 -97.764306 +57061 102 49 561797 0 0.217 0.000 44.242348 -97.044011 +57062 2410 694 261965801 16574288 101.146 6.399 42.846199 -97.945247 +57063 1006 388 235626501 38772010 90.976 14.970 42.930268 -97.684565 +57064 5072 1790 67377032 0 26.014 0.000 43.455933 -96.873794 +57065 397 172 78416394 0 30.277 0.000 43.904576 -96.615579 +57066 1508 731 303132871 87913 117.040 0.034 42.990046 -97.869396 +57067 537 204 169301887 902793 65.368 0.349 43.045592 -97.469006 +57068 1512 622 116123707 76523 44.836 0.030 43.575015 -96.495601 +57069 11988 4767 425467947 7859051 164.274 3.034 42.843155 -96.975173 +57070 1387 753 245383945 708335 94.743 0.273 43.180067 -97.173356 +57071 2758 1221 308905146 3991801 119.269 1.541 44.272806 -96.958351 +57072 584 267 224443432 493099 86.658 0.190 42.988671 -97.188559 +57073 711 347 178659337 49433 68.981 0.019 43.005958 -97.055057 +57075 893 730 176105844 10579702 67.995 4.085 44.004375 -96.959014 +57076 521 153 320591623 198748 123.781 0.077 43.971525 -97.359727 +57077 1324 508 117984285 66213 45.554 0.026 43.321853 -96.756407 +57078 19121 8204 289035112 11965942 111.597 4.620 42.915648 -97.446689 +57103 34480 14067 31114106 297578 12.013 0.115 43.545833 -96.690132 +57104 25901 12105 72467590 617751 27.980 0.239 43.604804 -96.708645 +57105 22268 10052 18066824 155761 6.976 0.060 43.520296 -96.735607 +57106 39852 17425 78058325 153095 30.138 0.059 43.507343 -96.839962 +57107 8044 3249 125791510 412814 48.568 0.159 43.597620 -96.820415 +57108 17267 7283 79890940 59707 30.846 0.023 43.479526 -96.704983 +57110 12309 4788 52606858 408628 20.312 0.158 43.545488 -96.642616 +57117 61 0 243309 0 0.094 0.000 43.531243 -96.754971 +57197 959 0 219695 0 0.085 0.000 43.524568 -96.738629 +57201 24983 11415 840295158 35360391 324.440 13.653 44.936722 -97.092757 +57212 2062 1039 590523450 27210644 228.002 10.506 44.378729 -97.139135 +57213 485 300 177638756 10000081 68.587 3.861 44.553491 -96.529494 +57214 75 37 10702285 0 4.132 0.000 44.501979 -97.204842 +57216 1044 728 161913774 16023835 62.515 6.187 45.303240 -96.529779 +57217 244 149 261414481 6509384 100.933 2.513 45.072481 -97.677502 +57218 327 146 181113766 315826 69.928 0.122 44.652379 -96.592103 +57219 567 292 412608866 9286470 159.309 3.586 45.290641 -97.796148 +57220 767 428 285619288 9775568 110.278 3.774 44.467055 -96.917466 +57221 808 321 265938581 2593364 102.679 1.001 44.596631 -97.456541 +57223 1356 602 331075703 9996815 127.829 3.860 44.710240 -97.012493 +57224 195 95 134053994 619362 51.759 0.239 45.859161 -97.134345 +57225 1873 887 723284887 6424936 279.262 2.481 44.888194 -97.728400 +57226 2072 949 491270199 14492237 189.680 5.595 44.788157 -96.714071 +57227 434 416 112523293 3389943 43.445 1.309 45.361550 -96.704786 +57231 1695 887 708067060 31224488 273.386 12.056 44.361520 -97.572040 +57232 299 284 206519166 48104403 79.737 18.573 45.623465 -97.392610 +57233 118 68 88798233 0 34.285 0.000 44.511948 -97.398286 +57234 1274 691 261740677 11293498 101.059 4.360 44.610285 -96.894291 +57235 844 349 353028289 19094564 136.305 7.372 45.068355 -97.295125 +57236 118 71 127005259 578217 49.037 0.223 44.985548 -97.585622 +57237 665 473 245948683 6055893 94.961 2.338 44.797699 -96.500497 +57238 483 210 196250151 4144790 75.773 1.600 44.873359 -96.860868 +57239 223 437 118196102 6281486 45.636 2.425 45.509211 -97.299294 +57241 1048 389 261757643 18214654 101.065 7.033 44.695552 -97.216193 +57242 432 163 212134622 343558 81.906 0.133 44.770719 -97.365496 +57243 604 270 309074796 15666677 119.334 6.049 44.913130 -97.442840 +57245 126 54 1254867 0 0.485 0.000 44.897581 -96.918190 +57246 161 77 79343661 59351 30.635 0.023 45.054911 -96.666980 +57247 320 460 148899315 28077908 57.490 10.841 45.717409 -97.437809 +57248 1057 631 177033887 37505109 68.353 14.481 44.583539 -97.187953 +57249 994 596 381954765 28952552 147.474 11.179 44.383725 -97.360199 +57251 127 61 124074518 2088772 47.905 0.806 45.283314 -96.915377 +57252 4800 2268 422261181 2702016 163.036 1.043 45.200406 -96.612559 +57255 538 243 273801609 5435544 105.715 2.099 45.868787 -96.936649 +57256 127 64 74244356 625435 28.666 0.241 45.260899 -97.195291 +57257 810 276 191776531 1303113 74.045 0.503 45.497519 -97.028157 +57258 385 127 315045748 563612 121.640 0.218 44.889599 -97.922617 +57259 505 240 353732940 688328 136.577 0.266 45.002497 -96.563488 +57260 1093 541 425590357 27358430 164.321 10.563 45.841733 -96.719612 +57261 321 186 173405560 25251659 66.952 9.750 45.529422 -97.499694 +57262 4963 1998 897141388 28733625 346.388 11.094 45.672913 -97.070014 +57263 450 207 242976936 2952457 93.814 1.140 45.142128 -96.995940 +57264 219 104 112002015 571996 43.244 0.221 45.116757 -96.823791 +57265 225 114 205990937 9308497 79.534 3.594 44.992203 -96.781562 +57266 607 270 342770992 3840038 132.345 1.483 45.280440 -97.095259 +57268 443 213 164659945 16478 63.576 0.006 44.567964 -96.689414 +57269 413 187 261488935 814002 100.961 0.314 45.220983 -96.814676 +57270 904 363 433546272 15598700 167.393 6.023 45.841192 -97.338627 +57271 247 100 226108436 18154 87.301 0.007 44.739380 -97.522039 +57272 173 84 86707373 2875375 33.478 1.110 45.101225 -97.462871 +57273 1316 940 452665845 57386858 174.775 22.157 45.337132 -97.280432 +57274 2813 1492 1006511126 62795239 388.616 24.245 45.305460 -97.564541 +57276 1178 449 323553113 159697 124.925 0.062 44.430861 -96.613455 +57278 748 292 459841194 3308172 177.546 1.277 44.638139 -97.705276 +57279 1058 653 375843414 8607476 145.114 3.323 45.421222 -96.876323 +57301 18375 8256 626483879 3669189 241.887 1.417 43.713759 -98.047697 +57311 1616 517 481135117 592295 185.767 0.229 43.655651 -97.763378 +57312 516 236 274834419 1371022 106.114 0.529 44.207237 -98.379249 +57313 1128 588 452165287 997046 174.582 0.385 43.305031 -98.374320 +57314 734 345 725735069 1670612 280.208 0.645 44.046091 -97.981288 +57315 987 500 312659583 1071837 120.719 0.414 42.988388 -98.040294 +57317 526 308 402635940 23045820 155.459 8.898 43.143555 -98.966447 +57319 1003 487 380316771 3249835 146.841 1.255 43.533018 -97.480025 +57321 388 194 300791138 300146 116.136 0.116 43.870131 -97.560020 +57322 296 112 415883132 328010 160.573 0.127 44.628064 -97.974422 +57323 215 186 233277496 833462 90.069 0.322 44.146873 -97.720279 +57324 383 184 191967949 0 74.119 0.000 44.298430 -98.054051 +57325 3054 1432 566661098 68250821 218.789 26.352 43.752355 -99.301892 +57328 1134 520 417554574 2760081 161.219 1.066 43.437622 -98.439006 +57329 258 119 165516548 378893 63.906 0.146 42.974030 -98.147336 +57330 625 257 331387386 189901 127.949 0.073 43.248016 -98.156995 +57331 459 189 190228344 314467 73.448 0.121 43.474415 -98.044848 +57332 730 342 266670023 162007 102.962 0.063 43.550500 -97.656776 +57334 895 325 276782380 148648 106.866 0.057 43.549822 -97.997122 +57335 244 162 266014265 36396483 102.709 14.053 43.053690 -98.783901 +57337 140 83 207793689 501118 80.230 0.193 44.011963 -97.795813 +57339 1525 429 330982280 28062502 127.793 10.835 44.102176 -99.417293 +57340 355 140 207074087 1853488 79.952 0.716 43.795764 -97.837547 +57341 151 97 654100903 1565349 252.550 0.604 44.094667 -99.117978 +57342 558 340 414412487 21922722 160.006 8.464 43.244626 -98.701381 +57344 155 77 89309448 905614 34.483 0.350 43.463754 -98.653802 +57345 1238 627 1701123400 7651370 656.807 2.954 44.578381 -99.444401 +57346 68 27 133728749 5887017 51.633 2.273 44.240731 -99.600069 +57348 527 257 654056694 995097 252.533 0.384 44.625569 -98.372220 +57349 1493 808 601915323 1172717 232.401 0.453 44.030097 -97.580800 +57350 14534 6951 796451565 13612127 307.512 5.256 44.404316 -98.199291 +57353 829 345 804919219 546305 310.781 0.211 44.358421 -97.842036 +57355 1352 639 1012591421 6055000 390.964 2.338 43.780853 -98.943362 +57356 1993 792 392027210 38941306 151.363 15.035 43.158170 -98.529608 +57358 34 23 2450553 0 0.946 0.000 44.075350 -98.421921 +57359 649 329 432883850 328519 167.137 0.127 43.902872 -98.182622 +57361 198 59 7462923 0 2.881 0.000 42.996986 -98.429216 +57362 2149 1133 1296892508 3759486 500.733 1.452 44.493857 -99.074449 +57363 1003 442 463228045 122332 178.853 0.047 43.680487 -98.255520 +57364 56 31 342441 0 0.132 0.000 43.429099 -98.606899 +57365 522 274 159991700 24672482 61.773 9.526 43.811327 -99.416428 +57366 2228 1044 578290201 811050 223.279 0.313 43.377168 -97.946533 +57367 210 122 9607226 695987 3.709 0.269 43.061622 -98.524701 +57368 1226 550 608438756 1696971 234.920 0.655 43.749509 -98.472097 +57369 2495 1089 1148483871 66167311 443.432 25.547 43.420751 -98.953012 +57370 814 351 550300363 14993705 212.472 5.789 43.789461 -99.165857 +57371 234 148 512589927 818497 197.912 0.316 44.413157 -99.272207 +57373 437 216 528429962 225337 204.028 0.087 44.538356 -98.872431 +57374 343 160 195018968 1267029 75.297 0.489 43.753348 -97.599126 +57375 647 339 377496759 104262 145.752 0.040 43.563945 -98.489710 +57376 1010 554 405548663 140197 156.583 0.054 43.217502 -97.937265 +57379 84 50 139533116 208949 53.874 0.081 44.254665 -98.557176 +57380 3470 1338 725048388 9133823 279.943 3.527 43.030618 -98.298550 +57381 490 314 790572299 3200608 305.242 1.236 44.391041 -98.737454 +57382 1591 827 1141512128 12819713 440.740 4.950 44.059026 -98.659699 +57383 732 369 672951986 8758305 259.828 3.382 43.724481 -98.733640 +57384 839 404 549018099 224321 211.977 0.087 44.419038 -98.493066 +57385 1221 637 596939422 3118342 230.480 1.204 44.045304 -98.286742 +57386 209 93 140177500 563127 54.123 0.217 44.505721 -98.006176 +57401 30061 13781 752483831 3936319 290.536 1.520 45.482335 -98.532540 +57420 75 195 119709868 53314 46.220 0.021 45.292760 -100.149046 +57421 88 53 102347023 261870 39.516 0.101 45.755478 -97.907063 +57422 235 141 285959497 1285561 110.410 0.496 45.419693 -97.909471 +57424 291 155 392721686 756020 151.631 0.292 45.006471 -98.564447 +57426 63 28 18123055 0 6.997 0.000 45.737952 -98.495591 +57427 620 250 156159155 10761 60.293 0.004 45.480547 -98.318576 +57428 710 370 487307859 10996136 188.151 4.246 45.452705 -99.678220 +57429 94 43 70103538 0 27.067 0.000 45.174757 -98.297445 +57430 2243 1047 941919741 17094199 363.677 6.600 45.812693 -97.719580 +57432 465 169 265414478 1756925 102.477 0.678 45.682867 -98.031046 +57433 383 225 327913127 10795443 126.608 4.168 45.638241 -98.320765 +57434 566 269 746129522 2096874 288.082 0.810 45.176247 -98.072285 +57435 247 147 360572841 6256086 139.218 2.415 45.179674 -98.908940 +57436 384 242 551551180 346226 212.955 0.134 44.863789 -98.088799 +57437 1286 921 1482157132 16376107 572.264 6.323 45.788904 -99.604081 +57438 1580 658 1214116145 28866907 468.773 11.146 45.059381 -99.158928 +57439 52 27 12943881 0 4.998 0.000 45.331675 -98.065112 +57440 612 197 369252510 1752716 142.569 0.677 44.856969 -98.271934 +57441 607 321 733761669 5966803 283.307 2.304 45.829281 -98.527902 +57442 1664 1116 1579243340 122825775 609.749 47.423 45.061754 -100.158164 +57445 2068 894 662934280 236357 255.960 0.091 45.465537 -98.114967 +57446 472 283 400182303 5804154 154.511 2.241 45.870828 -98.152670 +57448 348 226 459634689 6585572 177.466 2.543 45.635460 -99.411330 +57449 146 82 198587267 17664258 76.675 6.820 45.737408 -98.176157 +57450 672 349 507697034 19272534 196.023 7.441 45.225996 -99.848392 +57451 2293 1044 1136795375 7960514 438.919 3.074 45.437401 -98.956602 +57452 278 192 513576771 3650399 198.293 1.409 45.529397 -99.862852 +57454 558 294 389941001 9425333 150.557 3.639 45.610240 -97.783531 +57455 96 72 328587674 2586374 126.868 0.999 45.018819 -99.681470 +57456 862 422 1048642353 9767395 404.883 3.771 45.735597 -98.980082 +57457 90 84 317528636 11651150 122.598 4.499 45.877277 -99.154299 +57460 365 161 310706129 9165874 119.964 3.539 45.279575 -98.670681 +57461 392 183 319629363 0 123.410 0.000 45.156870 -98.432019 +57465 371 170 399376857 2878841 154.200 1.112 45.136035 -98.687486 +57466 124 77 363585467 14024577 140.381 5.415 45.223605 -99.460633 +57467 293 152 486320140 1447618 187.769 0.559 44.832072 -99.176549 +57468 247 136 202140789 3901284 78.047 1.506 45.499753 -97.758142 +57469 3305 1651 755038857 7798622 291.522 3.011 44.857384 -98.571778 +57470 143 93 389592590 3059398 150.423 1.181 44.883901 -98.894286 +57471 674 346 883105990 32519125 340.969 12.556 45.404536 -99.318265 +57472 953 491 706980977 3106556 272.967 1.199 45.435717 -100.068105 +57473 161 92 428694527 7921845 165.520 3.059 44.991457 -99.499341 +57474 197 92 157452775 958 60.793 0.000 45.292014 -98.278733 +57475 160 94 301447064 6622740 116.389 2.557 45.223553 -99.624634 +57476 463 218 425976807 4796641 164.471 1.852 44.713364 -98.615226 +57477 117 85 237076570 37619 91.536 0.015 45.046943 -98.162357 +57479 666 252 137804497 0 53.207 0.000 45.302945 -98.443214 +57481 598 188 473105833 1269634 182.667 0.490 45.655751 -98.669076 +57501 16309 7384 1514618132 251824003 584.797 97.230 44.527597 -100.309041 +57520 153 103 381356628 654248 147.243 0.253 44.852798 -100.193658 +57521 167 105 1000474003 5953042 386.285 2.298 43.804144 -101.202163 +57522 463 220 305791451 204656 118.067 0.079 44.468070 -99.994864 +57523 1094 655 677712693 32917789 261.666 12.710 43.233401 -99.213765 +57528 748 397 517772838 425559 199.913 0.164 43.190776 -99.761251 +57529 395 255 645461640 1524458 249.214 0.589 43.230602 -99.563794 +57531 228 132 869544386 1694156 335.733 0.654 43.973671 -100.485912 +57532 2835 1307 3033319410 170269792 1171.171 65.742 44.400310 -100.628221 +57533 1900 1075 1054595683 22532448 407.182 8.700 43.378934 -99.424938 +57534 183 95 479075589 1703155 184.972 0.658 43.570922 -99.687364 +57536 469 235 958461598 55537144 370.064 21.443 44.405385 -99.765270 +57537 83 47 535297871 17549975 206.680 6.776 44.578086 -101.067304 +57538 322 178 343623075 534341 132.674 0.206 43.153994 -99.142047 +57540 106 49 368408434 1003161 142.243 0.387 44.517324 -99.612595 +57541 167 82 307033261 2450786 118.546 0.946 43.594019 -99.883888 +57543 870 460 1196281012 7616524 461.887 2.941 43.774191 -101.501212 +57544 419 229 839932229 2911079 324.300 1.124 43.941236 -99.906100 +57547 139 70 655722179 786024 253.176 0.303 43.473527 -101.422190 +57548 1380 393 302942662 91767174 116.967 35.432 44.086805 -99.660117 +57551 2279 926 1880501041 11907269 726.066 4.597 43.175434 -101.702079 +57552 554 315 2643836259 19625305 1020.791 7.577 44.282982 -101.199910 +57553 153 75 680767352 8621088 262.846 3.329 44.472682 -101.647601 +57555 3834 1365 1085952253 2936648 419.289 1.134 43.242096 -100.611797 +57559 638 382 984040284 711436 379.940 0.275 43.936209 -100.723479 +57560 436 154 424741976 519268 163.994 0.200 43.439227 -101.190933 +57562 98 50 285614454 556766 110.276 0.215 43.897568 -100.958429 +57563 240 90 74832979 85983 28.893 0.033 43.365383 -100.365523 +57564 995 521 1353807256 9384395 522.708 3.623 44.729609 -99.989662 +57566 1060 320 452129036 1152946 174.568 0.445 43.323502 -101.090950 +57567 1406 718 2528687059 17011448 976.332 6.568 44.097101 -101.721691 +57568 689 405 951981263 3747876 367.562 1.447 43.885649 -100.077342 +57569 445 235 931287635 24941018 359.572 9.630 43.856447 -99.572854 +57570 2064 618 246219792 597654 95.066 0.231 43.198189 -100.830995 +57571 14 16 1018696 0 0.393 0.000 43.085219 -99.092505 +57572 1847 523 434526692 22057 167.772 0.009 43.146539 -101.069903 +57574 104 61 506847972 2923693 195.695 1.129 43.105640 -101.345928 +57576 204 111 561989958 1181395 216.986 0.456 43.920919 -100.296114 +57577 1211 296 612428131 556507 236.460 0.215 43.528760 -101.677216 +57579 1330 525 1689546340 3638128 652.338 1.405 43.597198 -100.786176 +57580 4449 2389 2799889153 7947937 1081.043 3.069 43.289349 -100.090107 +57584 125 85 247680106 577147 95.630 0.223 43.536198 -100.070869 +57585 226 132 857529962 2624911 331.094 1.013 43.539111 -100.405433 +57601 4003 1948 539353000 36465315 208.245 14.079 45.457862 -100.540610 +57620 515 273 953576738 5791775 368.178 2.236 45.377258 -102.540212 +57621 378 97 246998162 2672949 95.367 1.032 45.750092 -101.072861 +57622 318 108 280914449 1292724 108.462 0.499 44.665466 -101.535499 +57623 1042 415 2040993492 5649110 788.032 2.181 45.029810 -101.685858 +57625 4230 1414 3182362939 233439785 1228.717 90.132 44.955728 -101.004447 +57626 971 488 3128774736 6734618 1208.027 2.600 44.994647 -102.216510 +57630 32 16 28417455 0 10.972 0.000 45.439160 -100.905544 +57631 361 246 405221742 85936383 156.457 33.180 45.532933 -100.281010 +57632 634 355 524689953 2682890 202.584 1.036 45.834003 -100.037727 +57633 414 199 1949971145 7445660 752.888 2.875 45.457211 -101.447990 +57634 115 58 571096475 1425278 220.502 0.550 45.752033 -101.896411 +57636 164 60 52832558 298748 20.399 0.115 45.031827 -101.437430 +57638 1921 1170 2530081465 26718884 976.870 10.316 45.869861 -102.232060 +57639 371 88 53483341 1761787 20.650 0.680 45.696189 -100.755383 +57640 176 112 1032592681 1954483 398.686 0.755 45.789598 -102.717620 +57641 295 180 849555117 3089109 328.015 1.193 45.869353 -101.317955 +57642 1917 703 1510365501 50611068 583.155 19.541 45.811247 -100.749546 +57644 335 182 2076577278 9656108 801.771 3.728 45.449229 -102.046492 +57645 217 118 646870688 1651265 249.758 0.638 45.980453 -101.739290 +57646 199 121 356428276 2591319 137.618 1.001 45.682420 -100.081670 +57648 335 355 346115997 94285667 133.636 36.404 45.910167 -100.354491 +57649 217 128 1242927233 7429102 479.897 2.868 45.523816 -102.857947 +57650 29 23 168010979 338209 64.869 0.131 45.847957 -103.014362 +57651 115 61 801947988 1333419 309.634 0.515 45.475472 -103.148843 +57652 402 149 1146341437 101777836 442.605 39.297 45.205412 -100.607935 +57656 723 331 1144340155 4555999 441.832 1.759 45.392991 -101.059332 +57657 203 101 707650240 7623601 273.225 2.943 45.518884 -100.792161 +57658 446 132 354706422 61637199 136.953 23.798 45.679845 -100.494653 +57660 99 48 731507795 1180573 282.437 0.456 45.797336 -101.586365 +57661 88 25 53570246 0 20.684 0.000 45.256752 -100.960193 +57701 43462 18977 183417086 268540 70.818 0.104 44.145868 -103.206866 +57702 32980 15142 756278009 5213836 292.001 2.013 44.048273 -103.420465 +57703 14205 5645 332811948 379532 128.499 0.147 44.004564 -103.042628 +57706 2903 983 16686316 0 6.443 0.000 44.157189 -103.093560 +57714 872 226 483197343 179905 186.564 0.069 43.301624 -101.936856 +57716 486 155 468160261 2091052 180.758 0.807 43.106936 -102.207567 +57717 8007 3552 3214026448 32640813 1240.943 12.603 44.940200 -103.901961 +57718 6307 2520 58623463 3775 22.635 0.001 44.170732 -103.368194 +57719 6217 2400 428209302 3574429 165.333 1.380 44.232442 -102.976094 +57720 651 397 3354819776 10565191 1295.303 4.079 45.575865 -103.657033 +57722 283 173 1239072904 1449029 478.409 0.559 43.456289 -102.921098 +57724 210 126 848367639 1241786 327.557 0.479 45.645373 -104.023825 +57725 162 72 299384032 62740 115.593 0.024 43.932032 -102.791900 +57730 5315 3134 1383009786 1466935 533.983 0.566 43.724138 -103.649729 +57732 1979 1329 299070789 31749 115.472 0.012 44.201037 -103.692542 +57735 1327 883 2376909884 1603334 917.730 0.619 43.300919 -103.849710 +57738 170 92 387683820 685492 149.686 0.265 43.636700 -103.123928 +57741 63 41 4565351 0 1.763 0.000 44.404969 -103.466634 +57744 2238 977 1302130596 2741378 502.755 1.058 43.782636 -103.045941 +57745 2109 1513 951085130 1448503 367.216 0.559 44.019240 -103.778602 +57747 5870 3389 1144655578 20508944 441.954 7.919 43.384853 -103.527240 +57748 318 141 1012668675 6824130 390.994 2.635 44.591039 -102.044590 +57750 295 143 712688135 1518329 275.170 0.586 43.593792 -101.955547 +57751 844 556 176675936 112796 68.215 0.044 43.884533 -103.453138 +57752 2245 648 1087690592 569761 419.960 0.220 43.460259 -102.183721 +57754 3793 2693 610472312 4706 235.705 0.002 44.255588 -103.887435 +57755 116 66 582402581 539492 224.867 0.208 45.847740 -103.362052 +57756 1126 264 342345288 70819 132.180 0.027 43.229698 -102.498430 +57758 200 105 1348256346 4227303 520.565 1.632 44.909445 -102.816181 +57759 546 260 151106353 23816 58.342 0.009 44.229188 -103.559963 +57760 1353 695 3079923802 10969708 1189.165 4.235 45.012175 -103.286940 +57761 1210 522 1387313242 3237267 535.645 1.250 44.231205 -102.740608 +57762 531 263 274091942 850551 105.827 0.328 44.753351 -103.619692 +57763 282 165 1069814067 1348556 413.058 0.521 43.111350 -103.251934 +57764 1923 470 911310807 2544097 351.859 0.982 43.183211 -102.837949 +57766 237 133 331408518 507893 127.958 0.196 43.397620 -103.197804 +57767 149 72 405465297 27752 156.551 0.011 44.136748 -102.571112 +57769 3515 1519 328258375 534783 126.741 0.206 44.247073 -103.286944 +57770 5271 1422 517004162 624343 199.616 0.241 43.059484 -102.590242 +57772 2048 506 1273413539 658705 491.668 0.254 43.532550 -102.588896 +57773 133 81 29011804 0 11.202 0.000 43.592114 -103.568147 +57775 230 120 825449205 4184467 318.708 1.616 44.101964 -102.028950 +57776 15 9 322062555 961702 124.349 0.371 45.263783 -103.497547 +57779 333 159 102563062 153134 39.600 0.059 44.563773 -103.755322 +57780 102 57 846749214 1987933 326.932 0.768 43.780265 -102.510542 +57782 61 37 327116064 179766 126.300 0.069 43.296596 -103.140671 +57783 14290 7097 608379788 417052 234.897 0.161 44.467599 -103.915361 +57785 9377 4532 1544541071 5239730 596.351 2.023 44.425660 -103.232500 +57787 365 200 1521540142 2376859 587.470 0.918 44.685408 -102.652557 +57788 485 238 554524608 1326368 214.103 0.512 44.618348 -103.206853 +57790 1111 605 1922508539 8122599 742.285 3.136 44.082084 -102.217278 +57791 190 96 531097505 3560733 205.058 1.375 44.223162 -102.443930 +57792 129 76 633626400 802462 244.645 0.310 44.536402 -102.423902 +57793 1913 824 382702433 218086 147.762 0.084 44.525591 -103.579310 +57794 644 145 130657616 0 50.447 0.000 43.124034 -102.394843 +57799 660 10 361500 0 0.140 0.000 44.498707 -103.872416 +58001 55 28 624677 0 0.241 0.000 46.445185 -96.719993 +58002 23 11 9024328 40362 3.484 0.016 46.971090 -97.397242 +58004 266 115 147578836 20672 56.981 0.008 47.026475 -97.270723 +58005 854 299 259334469 0 100.130 0.000 47.052877 -96.950904 +58006 427 183 159942829 0 61.754 0.000 47.101562 -97.209796 +58007 119 57 126166969 0 48.713 0.000 47.024361 -97.468653 +58008 229 102 141669869 0 54.699 0.000 46.309281 -97.000547 +58009 102 45 114821209 0 44.333 0.000 47.327689 -97.246559 +58011 391 192 287311350 121857 110.932 0.047 46.918750 -97.539887 +58012 2474 986 174245380 335241 67.277 0.129 46.941686 -97.168331 +58013 101 71 191874052 5805789 74.083 2.242 46.057851 -97.353266 +58015 291 121 50454624 0 19.481 0.000 46.595255 -96.816487 +58016 192 81 180011880 0 69.503 0.000 47.367125 -97.461755 +58017 313 199 497204109 833080 191.972 0.322 46.043361 -97.851471 +58018 324 145 186467262 0 71.995 0.000 46.435977 -96.896504 +58021 447 176 167725921 5558 64.759 0.002 46.739076 -97.083235 +58027 1391 689 473032395 3184944 182.639 1.230 46.633000 -97.607916 +58029 129 60 107772546 465987 41.611 0.180 47.119604 -97.403783 +58030 649 332 330451887 0 127.588 0.000 46.030059 -96.670069 +58031 414 205 413443505 1404863 159.631 0.542 46.767684 -97.671491 +58032 722 354 263763798 840260 101.840 0.324 46.065094 -97.642819 +58033 374 200 342597450 201430 132.278 0.078 46.434700 -97.919560 +58035 262 147 238444597 388086 92.064 0.150 47.260723 -97.420094 +58036 274 138 192122001 0 74.179 0.000 47.155563 -96.948134 +58038 332 152 223897392 0 86.447 0.000 47.245107 -96.995775 +58040 920 459 208970386 2286931 80.684 0.883 46.189495 -97.685000 +58041 1545 786 521050713 10660465 201.179 4.116 46.047905 -96.918364 +58042 1386 500 111352102 293337 42.993 0.113 46.970891 -96.956035 +58043 167 91 150677498 1700299 58.177 0.656 45.973580 -97.545003 +58045 2230 1042 526775370 1068276 203.389 0.412 47.388882 -97.016318 +58046 583 303 592572300 1116523 228.793 0.431 47.328122 -97.724586 +58047 3560 1251 181098627 172445 69.923 0.067 46.724262 -96.872758 +58048 418 213 285666973 200218 110.297 0.077 47.198809 -97.223803 +58049 289 174 342658884 1757756 132.301 0.679 46.650738 -98.008073 +58051 1458 592 285035302 9716 110.053 0.004 46.636833 -97.021501 +58052 581 282 393162400 161000 151.801 0.062 46.635532 -97.272001 +58053 1171 663 577031342 14946251 222.793 5.771 46.052506 -97.180528 +58054 3128 1534 750794084 969009 289.883 0.374 46.416881 -97.668729 +58056 191 134 245243612 6828726 94.689 2.637 47.231351 -97.929394 +58057 147 78 233242537 0 90.055 0.000 46.424475 -97.257276 +58058 123 61 48611435 0 18.769 0.000 46.182543 -96.963366 +58059 1168 448 317437467 369741 122.563 0.143 46.843963 -97.125564 +58060 1329 624 623430029 6587976 240.708 2.544 46.264126 -97.415599 +58061 413 174 157322322 145185 60.742 0.056 46.278946 -96.902058 +58062 174 90 144924441 141331 55.956 0.055 46.637435 -97.818823 +58063 340 160 317883470 265691 122.735 0.103 46.959034 -97.797584 +58064 450 223 408519805 331970 157.730 0.128 47.144741 -97.610872 +58065 22 17 53179627 0 20.533 0.000 47.186168 -97.760507 +58067 243 143 146390519 927413 56.522 0.358 46.070822 -97.469354 +58068 321 151 291427000 1442545 112.521 0.557 46.530291 -97.395771 +58069 176 77 151520296 728521 58.502 0.281 46.247288 -97.830088 +58071 409 183 272040251 17264 105.035 0.007 46.956401 -97.676759 +58072 7997 3974 819789930 8637844 316.523 3.335 46.925717 -98.006833 +58075 9276 4210 645061457 374699 249.060 0.145 46.275536 -96.730394 +58076 236 0 96571 0 0.037 0.000 46.272827 -96.607584 +58077 787 325 364118441 0 140.587 0.000 46.524837 -96.975120 +58078 26321 10946 101456444 1122021 39.173 0.433 46.862500 -96.924088 +58079 530 220 345235165 445478 133.296 0.172 46.868242 -97.324952 +58081 845 406 427656706 0 165.119 0.000 46.310635 -97.141395 +58102 29850 14338 80929583 152567 31.247 0.059 46.927094 -96.834703 +58103 47302 24011 29283647 0 11.306 0.000 46.856143 -96.822078 +58104 28322 12436 74199324 0 28.649 0.000 46.793238 -96.839684 +58105 2483 5 1484243 0 0.573 0.000 46.895385 -96.807848 +58201 34880 16488 182953299 548729 70.639 0.212 47.866638 -97.141144 +58202 1839 3 426583 5455 0.165 0.002 47.920759 -97.072208 +58203 18229 7772 175504570 1077524 67.763 0.416 47.970477 -97.165490 +58204 2107 807 20643953 0 7.971 0.000 47.955002 -97.386797 +58205 260 0 417527 0 0.161 0.000 47.951474 -97.378991 +58210 322 207 394815164 7872899 152.439 3.040 48.405691 -98.111589 +58212 474 283 522243776 3801679 201.639 1.468 47.708541 -98.000416 +58214 367 179 178743988 0 69.013 0.000 47.924547 -97.499701 +58216 153 79 175998417 0 67.953 0.000 48.881885 -97.434480 +58218 700 306 318729057 80710 123.062 0.031 47.593867 -97.038395 +58219 47 24 13895263 0 5.365 0.000 47.477626 -96.878975 +58220 2360 1198 447385679 1430548 172.737 0.552 48.796322 -97.719638 +58222 295 161 210091509 23058 81.117 0.009 48.609949 -97.678687 +58223 212 109 183069454 85373 70.684 0.033 47.505232 -97.037889 +58224 41 28 30754848 0 11.875 0.000 48.172338 -97.943628 +58225 1125 608 611497417 7515996 236.100 2.902 48.611238 -97.222779 +58227 504 291 274196217 344641 105.868 0.133 48.549096 -97.892709 +58228 880 462 270810378 270504 104.560 0.104 47.880961 -97.354638 +58229 114 87 212118285 2446215 81.899 0.944 48.498485 -98.244323 +58230 663 355 415919806 2302206 160.588 0.889 47.474136 -97.831611 +58231 490 232 317544362 1231076 122.605 0.475 48.201306 -97.824163 +58233 283 136 181909475 0 70.236 0.000 48.226173 -97.525719 +58235 418 216 227044778 0 87.662 0.000 48.098989 -97.474761 +58237 5499 2521 637019577 551825 245.955 0.213 48.414207 -97.402876 +58238 167 100 239964784 123290 92.651 0.048 48.782789 -97.392813 +58239 71 49 235012705 5446300 90.739 2.103 48.922142 -98.695066 +58240 1276 753 389392936 2764836 150.345 1.068 47.634161 -97.487234 +58241 126 84 126692727 0 48.916 0.000 48.698421 -97.677426 +58243 539 295 225768413 0 87.170 0.000 48.512705 -97.680859 +58244 194 124 148872772 34174 57.480 0.013 48.144067 -97.611693 +58249 2574 1419 1051464878 9157817 405.973 3.536 48.822776 -98.326766 +58250 241 147 236149291 2500969 91.178 0.966 48.274378 -98.000815 +58251 2049 943 509144772 980708 196.582 0.379 47.954294 -97.700238 +58254 513 341 272648862 1532383 105.270 0.592 47.774003 -98.150008 +58256 872 356 235431019 1860890 90.900 0.718 48.084025 -97.200169 +58257 2239 1023 313175831 0 120.918 0.000 47.497296 -97.281830 +58258 290 135 110403573 653759 42.627 0.252 48.015382 -97.351918 +58259 454 286 431588229 18468343 166.637 7.131 48.025758 -98.128230 +58260 173 119 331867162 551151 128.135 0.213 48.637588 -98.024787 +58261 1112 536 366604405 3694282 141.547 1.426 48.244895 -97.312762 +58262 134 71 46327169 0 17.887 0.000 48.682182 -97.876345 +58265 519 243 227510797 65278 87.842 0.025 48.956085 -97.612143 +58266 203 116 278664163 1664183 107.593 0.643 48.000939 -97.849975 +58267 1520 710 609783750 387428 235.439 0.150 47.752355 -97.639177 +58269 207 117 200896725 677167 77.567 0.261 48.696182 -98.176865 +58270 1950 973 364814474 737111 140.856 0.285 48.393945 -97.784084 +58271 708 359 260852085 2208666 100.716 0.853 48.912895 -97.289694 +58272 312 172 314393843 3667017 121.388 1.416 48.016263 -97.981833 +58273 264 132 168063640 0 64.890 0.000 48.296100 -97.668546 +58274 953 453 338375294 514454 130.647 0.199 47.491896 -97.488549 +58275 733 292 266218978 99358 102.788 0.038 47.679374 -97.121138 +58276 503 279 308737792 80944 119.204 0.031 48.638084 -97.460350 +58277 225 133 225227438 599132 86.961 0.231 47.608381 -97.823310 +58278 1988 738 319675456 1053595 123.427 0.407 47.770086 -97.121538 +58281 124 68 323546109 7117433 124.922 2.748 48.855839 -98.616489 +58282 1441 763 614695234 812744 237.335 0.314 48.912003 -97.940624 +58301 9864 4661 629454581 187469650 243.034 72.382 48.142106 -98.871704 +58311 60 57 285195732 3724058 110.115 1.438 48.652100 -98.590163 +58316 6486 2242 305517201 14732631 117.961 5.688 48.824301 -99.776962 +58317 226 155 354096403 2618062 136.717 1.011 48.605338 -99.373909 +58318 3684 2707 740529609 31746724 285.920 12.257 48.858254 -100.398144 +58321 161 117 318979846 14697280 123.159 5.675 48.200714 -98.344818 +58323 47 28 148814266 1497885 57.458 0.578 48.855224 -98.885162 +58324 1345 831 632252973 11986622 244.114 4.628 48.479397 -99.220944 +58325 92 49 277867140 36314357 107.285 14.021 48.290313 -99.148558 +58327 390 177 410450733 39192950 158.476 15.132 48.100954 -98.594378 +58329 3313 1233 596212970 38050765 230.199 14.691 48.873307 -100.079593 +58330 341 218 435279468 4037117 168.062 1.559 48.449502 -98.459621 +58331 122 97 264916787 6792478 102.285 2.623 48.639292 -99.088781 +58332 320 241 546538050 20162907 211.020 7.785 48.044159 -99.772971 +58335 1694 409 76074748 6911794 29.373 2.669 47.986582 -99.021353 +58338 105 72 205123815 4054760 79.199 1.566 48.537137 -98.624443 +58339 47 30 80068305 889545 30.915 0.343 48.899531 -99.436299 +58341 2597 1459 1187176380 18193296 458.371 7.024 47.782102 -99.844409 +58343 81 53 165923604 5555992 64.063 2.145 48.303796 -99.729507 +58344 958 539 539585870 12437465 208.335 4.802 48.027839 -98.341509 +58345 158 113 355353483 11330892 137.203 4.375 48.307009 -98.366226 +58346 650 409 534322555 20013426 206.303 7.727 48.287375 -99.427696 +58348 727 440 665143610 7178648 256.813 2.772 47.971665 -99.521090 +58351 478 309 453107428 7703683 174.946 2.974 48.099065 -99.278079 +58352 435 237 565968833 19596536 218.522 7.566 48.710574 -98.872781 +58353 140 66 226227448 5620131 87.347 2.170 48.634662 -99.596632 +58355 84 61 114960980 1607271 44.387 0.621 48.590751 -98.366420 +58356 1751 954 752249716 3709603 290.445 1.432 47.678659 -99.085157 +58357 364 160 305885454 14225929 118.103 5.493 47.948460 -99.238515 +58361 190 143 339927682 4576578 131.247 1.767 47.752479 -98.339226 +58362 82 43 83278108 631676 32.154 0.244 48.212202 -99.085481 +58363 83 43 164963203 397073 63.693 0.153 48.755027 -99.447307 +58365 304 222 767730303 13247108 296.422 5.115 48.859376 -99.252883 +58366 1080 505 639266204 24233988 246.822 9.357 48.653521 -99.874028 +58367 1707 783 328959997 2348628 127.012 0.907 48.870402 -99.580643 +58368 3801 1895 1678826928 106926891 648.199 41.285 48.260871 -100.053220 +58369 1231 574 176870351 17225302 68.290 6.651 48.943639 -99.797109 +58370 1280 404 133149260 13787138 51.409 5.323 47.985178 -98.834887 +58372 106 77 276764472 3058880 106.859 1.181 48.945191 -98.996927 +58374 640 356 674153843 6866343 260.292 2.651 47.839573 -99.097658 +58377 334 196 603922053 13098064 233.176 5.057 48.464438 -98.872823 +58379 360 198 36051229 714161 13.919 0.276 47.905577 -98.843555 +58380 442 265 444668807 25226760 171.688 9.740 47.825153 -98.501854 +58381 317 175 392743367 28329063 151.639 10.938 47.825765 -98.748768 +58382 163 96 344280943 12688014 132.928 4.899 48.318151 -98.778792 +58384 549 353 1014878989 15121440 391.847 5.838 48.595867 -100.265560 +58385 225 117 318658597 14511189 123.035 5.603 48.479811 -99.656395 +58386 134 93 305878266 17598185 118.100 6.795 48.305995 -99.598337 +58401 17142 8103 1093445105 20900304 422.182 8.070 46.884369 -98.766655 +58402 260 0 446362 0 0.172 0.000 46.880348 -98.687205 +58405 427 0 110712 0 0.043 0.000 46.915167 -98.699439 +58413 1150 797 1174000801 43473500 453.284 16.785 46.035752 -99.293167 +58415 145 61 153548611 53520 59.285 0.021 46.373335 -98.489402 +58416 440 358 445804340 9736111 172.126 3.759 47.528938 -98.347888 +58418 353 230 555946688 11122335 214.652 4.294 47.420589 -99.638974 +58420 314 137 420085158 17852778 162.196 6.893 47.061018 -98.858440 +58421 2850 1434 1003331147 18926819 387.388 7.308 47.440419 -99.076593 +58422 195 109 382788740 2881848 147.796 1.113 47.600221 -99.405230 +58423 78 64 259038803 12010191 100.015 4.637 47.401106 -99.836299 +58424 301 165 468248217 28258773 180.792 10.911 46.887399 -99.110117 +58425 1379 742 553984986 1836364 213.895 0.709 47.456370 -98.124700 +58426 200 111 356093615 4130754 137.489 1.595 47.218524 -98.589253 +58428 271 361 375030776 45615821 144.800 17.612 46.828271 -99.779393 +58429 357 240 346703289 12107363 133.863 4.675 47.190008 -98.158296 +58430 112 71 242126908 6598771 93.486 2.548 47.508825 -100.256876 +58431 132 83 184236309 176143 71.134 0.068 46.510931 -98.486606 +58433 1092 559 797856328 1086312 308.054 0.419 46.370064 -98.712080 +58436 1965 1008 822044786 1492913 317.393 0.576 46.089591 -98.581639 +58438 625 382 385965949 5989100 149.022 2.312 47.666874 -99.602381 +58439 310 105 374313168 2900849 144.523 1.120 45.975635 -98.829165 +58440 181 147 598481466 8325681 231.075 3.215 46.253311 -99.163638 +58441 389 170 378572236 1179361 146.168 0.455 46.175288 -98.368493 +58442 478 331 572848978 12724404 221.178 4.913 46.553679 -99.179594 +58443 200 126 260540229 2420522 100.595 0.935 47.449844 -98.681116 +58444 192 180 479276503 22010578 185.050 8.498 47.494062 -100.129143 +58445 160 153 142732731 4064648 55.109 1.569 47.565900 -98.809454 +58448 347 195 378923105 1654356 146.303 0.639 47.305957 -98.225008 +58451 185 121 339681040 11644017 131.152 4.496 47.447140 -99.958447 +58452 27 15 4189432 0 1.618 0.000 47.547759 -98.231235 +58454 360 216 634432005 5062007 244.956 1.954 46.588078 -98.953320 +58455 303 162 364719556 11702509 140.819 4.518 47.304908 -98.766798 +58456 523 364 581850482 7155467 224.654 2.763 46.265514 -98.954289 +58458 1397 650 493652368 4701290 190.600 1.815 46.367931 -98.293851 +58460 230 200 463986437 17106626 179.146 6.605 46.301694 -99.324558 +58461 413 251 525088697 831577 202.738 0.321 46.652585 -98.194794 +58463 651 432 1010619268 17730835 390.202 6.846 47.493414 -100.471014 +58464 242 146 473724027 15400109 182.906 5.946 47.610726 -98.565277 +58466 355 203 417200989 1126647 161.082 0.435 46.623799 -98.368908 +58467 606 331 583070029 39183511 225.125 15.129 46.884858 -99.330649 +58472 419 209 420912378 659965 162.515 0.255 46.638569 -98.650249 +58474 2681 1291 982103658 7103512 379.192 2.743 46.100294 -98.127097 +58475 150 127 366419979 29594198 141.476 11.426 47.179948 -99.555396 +58476 271 156 624910482 21702468 241.279 8.379 47.200511 -99.011587 +58477 148 92 342862523 1424614 132.380 0.550 47.218894 -100.504652 +58478 135 144 386125760 25522410 149.084 9.854 47.175493 -99.749464 +58479 192 173 164283394 9788780 63.430 3.779 47.092281 -98.182702 +58480 340 155 331784027 9445539 128.103 3.647 46.957653 -98.259449 +58481 272 133 352639243 9505980 136.155 3.670 46.927787 -98.428684 +58482 1003 496 603512196 29423653 233.017 11.361 46.853459 -99.899917 +58483 340 236 413876837 24033117 159.799 9.279 46.646328 -99.429770 +58484 65 55 153442214 963919 59.244 0.372 47.375996 -98.485054 +58486 262 151 406174341 8265407 156.825 3.191 47.391360 -99.382027 +58487 444 235 639201377 25886907 246.797 9.995 46.856767 -99.605672 +58488 258 194 596926020 25611468 230.474 9.889 47.176298 -99.994035 +58490 240 134 328695909 2202184 126.910 0.850 46.376985 -98.065932 +58492 481 227 364703260 5039981 140.813 1.946 47.156398 -98.441320 +58494 350 203 880511791 27780050 339.968 10.726 47.184778 -100.262723 +58495 1332 755 925519446 15052942 357.345 5.812 46.277793 -99.604874 +58496 182 128 554141340 39557681 213.955 15.273 47.146460 -99.328693 +58497 326 144 287635609 13490 111.057 0.005 46.765067 -98.549987 +58501 28055 13182 62828782 165652 24.258 0.064 46.816035 -100.700296 +58503 25734 10872 344008563 5219511 132.822 2.015 46.904120 -100.750302 +58504 24342 10169 268113806 21251069 103.519 8.205 46.737571 -100.678406 +58505 2 1 581761 0 0.225 0.000 46.820212 -100.780917 +58520 264 144 472571919 133985 182.461 0.052 46.674204 -101.576123 +58521 658 263 392775388 2904554 151.651 1.121 47.008103 -100.693945 +58523 3619 1897 677769113 38685408 261.688 14.937 47.257221 -101.779709 +58524 100 70 279351548 595202 107.858 0.230 46.600122 -100.073660 +58528 798 195 175204684 18820276 67.647 7.267 46.338619 -100.636812 +58529 660 381 1148882599 675519 443.586 0.261 46.295012 -101.559699 +58530 1193 611 871285217 19144050 336.405 7.392 47.127782 -101.142920 +58531 307 279 297359210 80601242 114.811 31.120 47.567258 -101.195631 +58532 297 146 585997866 10164380 226.255 3.924 46.857611 -100.108874 +58533 945 760 819059406 3967885 316.241 1.532 46.405842 -101.789702 +58535 571 303 860420753 522196 332.210 0.202 46.501789 -101.247288 +58538 2489 745 456106109 68078614 176.104 26.285 46.109619 -100.689563 +58540 2449 1393 1005241054 339004081 388.126 130.890 47.628881 -101.727334 +58541 364 206 479039647 69006715 184.958 26.644 47.366124 -102.068222 +58542 324 168 507273524 5000090 195.859 1.931 46.050849 -100.009897 +58544 551 318 867601296 26923511 334.983 10.395 46.512194 -100.370811 +58545 3461 1828 798066012 63224695 308.135 24.411 47.357925 -101.591236 +58549 214 106 497048963 6874541 191.912 2.654 46.479104 -99.929710 +58552 1797 1122 1416184626 34889751 546.792 13.471 46.247200 -100.283060 +58554 22884 9792 1591736503 42709499 614.573 16.490 46.742723 -100.935300 +58558 812 327 412940682 475785 159.437 0.184 46.829735 -100.488304 +58559 218 354 412559631 17208963 159.290 6.644 47.489371 -100.728214 +58560 161 85 245887954 21178044 94.938 8.177 46.678439 -100.265129 +58561 1085 549 856703700 9001146 330.775 3.475 46.487150 -99.682891 +58562 415 297 755586282 9573916 291.734 3.697 46.377350 -101.996874 +58563 1977 906 1409994325 4271289 544.402 1.649 46.898984 -101.439257 +58564 92 64 305983794 82502 118.141 0.032 46.266095 -101.344234 +58565 209 192 7458792 338070 2.880 0.131 47.493482 -101.370899 +58566 180 75 212109601 0 81.896 0.000 46.583219 -100.925343 +58568 535 227 1202833869 767558 464.417 0.296 46.087315 -101.045286 +58569 77 52 361477884 104544 139.567 0.040 46.268099 -101.199370 +58570 397 168 728890500 229343 281.426 0.089 46.381918 -100.887669 +58571 603 320 301881974 6672824 116.557 2.576 47.279500 -101.397673 +58572 319 171 448050097 875306 172.993 0.338 46.857026 -100.341305 +58573 674 343 531000139 4061810 205.020 1.568 46.098273 -100.201007 +58575 920 579 610605236 20173360 235.756 7.789 47.567272 -100.896029 +58576 953 465 431902834 6871900 166.759 2.653 47.436908 -101.214233 +58577 1671 900 487071484 12732151 188.059 4.916 47.317793 -101.052285 +58579 1190 609 671729803 5473434 259.356 2.113 47.179421 -100.738366 +58580 455 229 424712005 1598234 163.982 0.617 47.267529 -101.943318 +58581 258 189 353575350 406433 136.516 0.157 46.035178 -99.774432 +58601 21078 9184 1488387804 7252573 574.670 2.800 46.916872 -102.834258 +58620 132 82 608003435 1842386 234.751 0.711 46.520262 -103.330485 +58621 1231 730 1038476996 1481776 400.958 0.572 47.088368 -103.930449 +58622 1489 743 1620564646 3583623 625.704 1.384 46.894005 -103.263285 +58623 2370 1208 1508531685 7145288 582.447 2.759 46.187311 -103.433731 +58625 185 126 260042307 616347 100.403 0.238 47.268133 -102.199765 +58626 262 158 427771229 11568979 165.163 4.467 47.383027 -102.622965 +58627 154 83 707094147 1040310 273.011 0.402 47.240135 -103.299937 +58630 502 249 523154127 1345484 201.991 0.519 46.944101 -102.578560 +58631 1150 610 959303778 5679136 370.389 2.193 46.806565 -101.800739 +58632 149 95 207269648 256532 80.027 0.099 46.665985 -103.965986 +58634 251 152 1069138146 4353754 412.797 1.681 47.423095 -103.316291 +58636 706 517 1119573514 49646010 432.270 19.168 47.379346 -102.367171 +58638 992 533 901644220 2515624 348.127 0.971 46.945999 -102.045415 +58639 1816 1048 1152510614 1476523 444.987 0.570 46.094238 -102.602641 +58640 1344 674 1127272279 5346971 435.242 2.064 47.441538 -102.908533 +58641 79 56 182674957 101035 70.531 0.039 46.667877 -102.513912 +58642 334 136 443185615 812157 171.115 0.314 47.209459 -102.840448 +58643 191 129 761128994 3467371 293.874 1.339 46.330898 -103.944785 +58645 238 198 1085171468 8232773 418.987 3.179 46.951266 -103.552350 +58646 1138 667 1450399310 2455184 560.002 0.948 46.392913 -102.287643 +58647 1142 596 1339636560 878668 517.237 0.339 46.518902 -102.936294 +58649 321 219 667069505 757386 257.557 0.292 46.126274 -102.922871 +58650 393 248 810901483 830700 313.091 0.321 46.443050 -102.582946 +58651 475 277 1772369389 4250635 684.316 1.641 46.255912 -103.733341 +58652 987 487 996363938 4547069 384.698 1.756 46.894071 -102.241813 +58653 601 347 1056508148 7094257 407.920 2.739 46.097262 -103.130557 +58654 289 141 1230838485 3250480 475.229 1.255 46.887230 -103.794850 +58655 484 200 256557612 609769 99.057 0.235 46.781105 -103.030395 +58656 366 213 473972304 1514683 183.002 0.585 46.943037 -102.458368 +58701 28368 13381 571802084 8170855 220.774 3.155 48.144826 -101.326016 +58702 0 0 12695 0 0.005 0.000 48.232139 -101.293788 +58703 19396 8278 415944709 2995265 160.597 1.156 48.334038 -101.307237 +58704 4770 1463 4753839 251078 1.835 0.097 48.424722 -101.320944 +58705 751 0 385419 0 0.149 0.000 48.422342 -101.333910 +58707 509 0 164989 0 0.064 0.000 48.246218 -101.300520 +58710 469 276 479121828 25665754 184.990 9.910 47.868061 -100.231091 +58711 211 121 305513966 1085639 117.960 0.419 48.929575 -101.289090 +58712 155 90 308392660 8207075 119.071 3.169 47.970973 -100.531684 +58713 35 21 70143318 315914 27.082 0.122 48.538378 -100.581797 +58716 147 82 183943116 3592952 71.021 1.387 47.804326 -101.067845 +58718 1040 456 1071296214 60716782 413.630 23.443 48.305559 -101.803517 +58721 529 334 618992032 20833602 238.994 8.044 48.803080 -102.273464 +58722 1516 592 163032350 2079720 62.947 0.803 48.238173 -101.501497 +58723 236 206 533246980 18987365 205.888 7.331 47.745887 -100.596246 +58725 341 157 373947879 2432530 144.382 0.939 48.495490 -101.680009 +58727 279 250 644807401 8337686 248.962 3.219 48.839872 -102.796832 +58730 1295 749 639271214 17381546 246.824 6.711 48.864883 -103.316671 +58731 300 143 307219343 503932 118.618 0.195 48.436748 -100.984013 +58733 402 164 241595489 8488583 93.281 3.277 48.175009 -101.587881 +58734 241 151 487335566 10699782 188.161 4.131 48.513686 -101.935295 +58735 314 304 513039267 12017783 198.086 4.640 47.870209 -101.481270 +58736 452 305 416389086 21998422 160.769 8.494 47.930851 -100.396626 +58737 140 129 354129092 5502075 136.730 2.124 48.915978 -102.382326 +58740 755 343 432429873 583155 166.962 0.225 48.468901 -101.224182 +58741 554 277 420153059 6105045 162.222 2.357 48.276800 -100.830824 +58744 143 110 224102087 1854143 86.526 0.716 48.116546 -100.615320 +58746 1620 836 1132258857 23611723 437.168 9.117 48.713443 -102.094053 +58748 148 120 309013861 17118564 119.311 6.610 48.681729 -100.654837 +58750 528 250 573297490 8732621 221.351 3.372 48.610954 -101.397529 +58752 223 137 174845662 1979546 67.508 0.764 48.829491 -102.579963 +58755 129 95 230352585 1918287 88.940 0.741 48.625886 -102.951118 +58756 250 140 230409713 3354976 88.962 1.295 47.970898 -101.814643 +58757 909 507 957596910 134214266 369.730 51.820 47.686282 -102.555817 +58758 222 129 286864895 9791286 110.759 3.780 47.782028 -100.101707 +58759 821 374 599762584 8397043 231.570 3.242 47.855616 -101.238927 +58760 254 146 392436614 962839 151.521 0.372 48.697300 -101.157620 +58761 1104 612 727683482 8942697 280.960 3.453 48.784372 -101.534814 +58762 246 149 282682423 6003070 109.144 2.318 48.673209 -100.940087 +58763 3502 1917 1341813768 272666491 518.077 105.277 47.990944 -102.564713 +58765 248 184 415252618 5894115 160.330 2.276 48.873295 -103.042817 +58768 282 122 202386023 204600 78.142 0.079 48.233235 -101.003629 +58769 229 196 527726978 14656988 203.757 5.659 48.319909 -102.202714 +58770 1240 818 642915206 73412068 248.231 28.345 47.884344 -102.169646 +58771 453 265 717226794 18686425 276.923 7.215 48.088309 -101.976214 +58772 137 94 129468786 1058424 49.988 0.409 48.959569 -102.622887 +58773 687 405 808660602 25504180 312.226 9.847 48.582580 -102.657837 +58775 290 119 223232392 1284805 86.191 0.496 47.710059 -101.861201 +58776 298 153 432432609 4070696 166.963 1.572 48.247805 -102.623232 +58778 133 243 350910412 3609214 135.487 1.394 47.787886 -100.934223 +58779 367 215 741675167 8205708 286.362 3.168 47.869388 -101.775409 +58781 695 298 277738470 720494 107.235 0.278 48.015761 -101.132721 +58782 436 231 491445201 701113 189.748 0.271 48.944346 -101.704670 +58783 346 232 681580443 6426880 263.160 2.481 48.879354 -100.763660 +58784 2330 962 830812541 29923369 320.779 11.553 48.364360 -102.417701 +58785 1091 392 118803243 269989 45.870 0.104 48.307789 -101.089369 +58787 136 148 272222958 9244958 105.106 3.569 48.756322 -101.813659 +58788 1124 647 1384611179 26193067 534.601 10.113 48.345799 -100.467754 +58789 321 217 364515108 16648356 140.740 6.428 48.553182 -100.808895 +58790 1585 693 475947665 1516058 183.764 0.585 48.029571 -100.947714 +58792 227 138 423170320 9656598 163.387 3.728 47.971228 -100.746785 +58793 609 315 422747349 8884869 163.224 3.430 48.872191 -101.049811 +58794 159 150 252461751 23253582 97.476 8.978 48.268907 -102.780037 +58795 198 175 524156422 10643040 202.378 4.109 48.640375 -103.156753 +58801 18371 8179 2153625645 91481225 831.520 35.321 48.217890 -103.763084 +58830 213 153 767513781 10724626 296.339 4.141 48.611872 -103.461197 +58831 472 255 858003866 6941533 331.277 2.680 47.799354 -103.658527 +58833 80 71 220199227 6748618 85.019 2.606 48.887118 -103.510039 +58835 313 174 591169602 24165113 228.252 9.330 47.767584 -103.436929 +58838 199 101 643373488 18709771 248.408 7.224 47.769991 -103.900837 +58843 466 247 554682384 41552988 214.164 16.044 48.233860 -103.377490 +58844 142 112 608257024 14604808 234.849 5.639 48.887526 -103.749952 +58845 371 213 667384060 22517265 257.678 8.694 48.641039 -103.917535 +58847 283 125 506692736 108523 195.635 0.042 47.910892 -102.907792 +58849 883 521 657092892 12492038 253.705 4.823 48.317528 -103.202925 +58852 1750 933 898826133 52482687 347.039 20.264 48.364287 -102.946753 +58853 292 118 9721795 0 3.754 0.000 48.075430 -103.836881 +58854 2804 1417 1565821259 61331620 604.567 23.680 47.828352 -103.153270 +58856 131 88 478143343 6497295 184.612 2.509 48.595028 -103.732864 +59001 1643 904 413032866 172048 159.473 0.066 45.532893 -109.532582 +59002 165 75 168867755 163251 65.200 0.063 46.008342 -108.657558 +59003 1160 531 1765141299 94638 681.525 0.037 45.445763 -106.202189 +59006 926 398 167057599 32428 64.501 0.013 45.920830 -108.088880 +59007 113 79 149104807 20761 57.570 0.008 45.141007 -109.129926 +59008 410 215 263558917 1891042 101.761 0.730 45.061726 -109.087750 +59010 102 55 857413150 2040670 331.049 0.788 45.992710 -107.286066 +59011 3027 1694 2425232886 10399784 936.388 4.015 45.924753 -109.949163 +59012 249 119 668153928 139927 257.976 0.054 45.274847 -106.439398 +59013 127 69 7778110 0 3.003 0.000 45.456107 -109.087117 +59014 1446 736 1069450929 2310775 412.917 0.892 45.193946 -108.759696 +59015 576 200 640740098 1403203 247.391 0.542 46.054068 -108.803789 +59016 1089 333 1021686192 222617 394.475 0.086 45.392677 -106.947305 +59018 602 337 541370748 125414 209.024 0.048 45.852744 -110.541821 +59019 3972 1888 890788209 9632569 343.935 3.719 45.651783 -109.217531 +59020 77 162 608359724 7811250 234.889 3.016 45.107963 -110.101355 +59022 1945 481 431463992 187704 166.589 0.072 45.537869 -107.287695 +59024 390 220 1297924724 10959573 501.132 4.232 46.278426 -107.807114 +59025 56 74 1174689788 8811169 453.550 3.402 45.107180 -106.633203 +59026 194 91 53305971 379524 20.582 0.147 45.485364 -108.784370 +59027 836 622 558189936 3010625 215.518 1.162 45.242152 -110.912914 +59028 434 369 566512289 3144736 218.732 1.214 45.302402 -109.713875 +59029 733 375 263006925 1472873 101.548 0.569 45.407971 -108.798810 +59030 1263 875 1251086900 2694589 483.047 1.040 45.104515 -110.518994 +59031 339 106 181846931 19814 70.211 0.008 45.502431 -107.414815 +59032 408 206 1094795048 1641241 422.703 0.634 47.024621 -108.703075 +59033 334 165 197167201 3937444 76.127 1.520 45.729478 -109.701409 +59034 5189 2111 1978239194 14688180 763.802 5.671 45.697254 -107.693463 +59035 227 238 195460638 1387995 75.468 0.536 45.283000 -107.963105 +59036 1505 765 1471712276 516087 568.231 0.199 46.480275 -109.933967 +59037 1672 719 486150088 3377221 187.704 1.304 45.823982 -108.242236 +59038 656 382 2262373942 15441085 873.507 5.962 46.203126 -107.207584 +59039 28 31 1129649358 1753444 436.160 0.677 46.686774 -107.291122 +59041 1950 921 509552693 3572184 196.739 1.379 45.526812 -108.982487 +59043 2950 863 1056594513 176921 407.953 0.068 45.550799 -106.676381 +59044 10971 4588 459283638 6167714 177.330 2.381 45.630153 -108.728479 +59046 390 218 1445004507 2317745 557.919 0.895 46.398482 -109.015696 +59047 11880 6506 2321030241 7785868 896.155 3.006 45.547286 -110.571103 +59050 1715 540 1586546107 2589598 612.569 1.000 45.236633 -107.544498 +59052 139 321 1799070966 3810610 694.625 1.471 45.466295 -110.145130 +59053 354 299 1524283190 2930672 588.529 1.132 46.461290 -110.459635 +59054 315 184 1677555491 1270215 647.708 0.490 46.644536 -107.748778 +59055 59 40 636685509 322925 245.826 0.125 46.108998 -109.809893 +59057 692 292 683917985 791517 264.062 0.306 45.853502 -108.933193 +59058 50 34 1025928744 4311922 396.113 1.665 47.147005 -107.717565 +59059 146 129 643514363 22458 248.462 0.009 46.407918 -108.072627 +59061 272 401 696829250 3181101 269.047 1.228 45.266327 -109.890082 +59062 35 32 340563545 126450 131.492 0.049 45.092944 -106.150400 +59063 2058 841 180362409 2260946 69.638 0.873 45.669765 -108.948235 +59064 284 132 386415629 4181453 149.196 1.614 45.819184 -107.977538 +59065 197 151 152909539 1805589 59.039 0.697 45.271428 -110.715080 +59066 701 236 776951938 87423 299.983 0.034 45.335866 -108.510339 +59067 221 137 899205514 3379227 347.185 1.305 46.000389 -109.217637 +59068 3580 2913 1366767095 14296578 527.712 5.520 45.119299 -109.446013 +59069 461 263 906035027 2502196 349.822 0.966 45.820354 -109.500979 +59070 1047 651 405868921 2877594 156.707 1.111 45.375314 -109.186103 +59071 104 239 255969478 698595 98.830 0.270 45.245669 -109.631058 +59072 4140 2366 2590049840 6082879 1000.024 2.349 46.471295 -108.545192 +59074 490 261 1559932913 270536 602.293 0.104 46.363060 -109.353209 +59075 289 141 751221687 3314682 290.048 1.280 45.405332 -107.883610 +59076 33 22 30794313 0 11.890 0.000 46.278750 -107.073958 +59077 79 58 1410654841 1199874 544.657 0.463 47.205086 -107.600605 +59078 145 146 639814201 8069924 247.034 3.116 46.333651 -109.610551 +59079 3481 1354 917152356 1424226 354.115 0.550 46.062118 -108.363307 +59081 9 98 2317387 0 0.895 0.000 45.008320 -109.973519 +59082 39 18 753595 39485 0.291 0.015 45.743009 -110.225294 +59085 88 88 760080381 4395462 293.469 1.697 46.331578 -110.185230 +59086 727 489 1241215140 2801616 479.236 1.082 46.072243 -110.561218 +59087 436 295 3837677535 47779218 1481.736 18.448 47.141917 -108.226575 +59088 1373 613 853308771 5560187 329.464 2.147 46.074337 -108.093579 +59089 467 153 642214330 128945 247.960 0.050 45.083475 -107.361533 +59101 39562 17387 1318340900 7299954 509.014 2.819 45.613054 -108.390305 +59102 46564 21613 38267476 0 14.775 0.000 45.775649 -108.580206 +59105 29624 11855 269289047 2565941 103.973 0.991 45.892816 -108.497574 +59106 12375 4798 251089534 39400 96.946 0.015 45.813662 -108.705501 +59201 5100 2048 3567261549 26659547 1377.327 10.293 48.172933 -105.699503 +59211 125 97 276106262 63962 106.605 0.025 48.698644 -104.349863 +59212 373 187 791637677 8997685 305.653 3.474 48.222386 -104.143067 +59213 772 283 1140011975 10817936 440.161 4.177 48.189413 -104.886609 +59214 120 73 887417572 18260838 342.634 7.051 47.307279 -105.993835 +59215 1135 606 3436097462 19604238 1326.685 7.569 47.518194 -105.774820 +59217 100 42 9007765 0 3.478 0.000 47.579319 -104.249465 +59218 927 449 848197656 3888773 327.491 1.501 48.082623 -104.560133 +59219 199 120 661650920 11294734 255.465 4.361 48.526096 -104.219763 +59221 1658 795 733263938 15561187 283.115 6.008 47.934085 -104.188313 +59222 221 147 611581071 191834 236.133 0.074 48.693491 -105.116454 +59223 364 290 575199149 64229742 222.086 24.799 47.833775 -106.212668 +59225 560 203 794513020 3959470 306.763 1.529 48.284384 -105.975287 +59226 410 255 841476083 3543489 324.896 1.368 48.352474 -104.571021 +59230 4490 2385 3997652749 155160187 1543.502 59.908 48.101697 -106.836150 +59231 264 1001 5165801 0 1.995 0.000 48.398053 -106.547859 +59240 21 17 104518380 0 40.355 0.000 48.842166 -106.235732 +59241 413 240 3424980406 6728026 1322.392 2.598 48.477635 -107.059858 +59242 79 41 98648002 38470506 38.088 14.854 48.443672 -104.450943 +59243 345 175 987382385 4902810 381.230 1.893 47.757547 -104.679209 +59244 65 40 512894356 308451 198.030 0.119 48.590447 -106.306396 +59247 314 216 399176104 807219 154.123 0.312 48.516199 -104.523506 +59248 762 465 1524843154 12175669 588.745 4.701 48.291580 -106.299423 +59250 198 150 1418193172 967426 547.567 0.374 48.874816 -106.556891 +59252 115 96 498039081 509397 192.294 0.197 48.917904 -104.816259 +59253 112 87 660917420 46112 255.182 0.018 48.701091 -105.898705 +59254 2026 1125 703467156 364566 271.610 0.141 48.754335 -104.607972 +59255 3429 1159 1735019396 16208097 669.895 6.258 48.244168 -105.169231 +59256 59 39 164239119 495500 63.413 0.191 48.925113 -104.563481 +59257 61 71 397082173 10499 153.314 0.004 48.751314 -104.962457 +59258 110 73 465066518 41611 179.563 0.016 48.584700 -104.691284 +59259 348 252 1623287493 1576393 626.755 0.609 47.680957 -105.099851 +59260 110 94 894003842 222593 345.177 0.086 48.826953 -106.087919 +59261 520 354 1291138632 22712094 498.511 8.769 48.573615 -107.386829 +59262 655 306 712737965 3651934 275.190 1.410 47.489619 -104.497095 +59263 1349 800 1738846633 641849 671.372 0.248 48.788149 -105.529249 +59270 7339 3411 2493672441 22000685 962.812 8.495 47.609455 -104.086128 +59274 206 131 925242329 733947 357.238 0.283 47.821893 -105.484790 +59275 376 249 986681780 31675077 380.960 12.230 48.874467 -104.199016 +59276 40 53 291030003 141905 112.367 0.055 48.952233 -105.212453 +59301 11404 5421 8145678644 19209945 3145.064 7.417 46.293338 -105.759506 +59311 159 118 2630498028 7691369 1015.641 2.970 45.171683 -104.417202 +59312 31 29 650616229 167463 251.204 0.065 47.002377 -106.214844 +59313 2498 1257 2401019577 4568546 927.039 1.764 46.309664 -104.244522 +59314 112 76 728919060 294830 281.437 0.114 45.075613 -105.374924 +59315 150 84 582689031 196851 224.978 0.076 47.436500 -104.858271 +59317 1164 672 4768566240 679643 1841.154 0.262 45.356538 -105.488298 +59318 136 74 1329003931 69112867 513.131 26.685 47.501154 -107.513850 +59322 85 46 1419618896 1436906 548.118 0.555 47.010502 -106.686345 +59323 2294 1019 159687236 721538 61.656 0.279 45.984210 -106.666467 +59324 821 578 4157045621 6846048 1605.044 2.643 45.783736 -104.542550 +59326 265 152 918755706 10311630 354.734 3.981 46.770357 -104.859402 +59327 2945 1531 5483029503 24754401 2117.010 9.558 46.236772 -106.682233 +59330 8307 3806 3146092717 19563369 1214.713 7.553 47.098693 -104.748781 +59332 146 87 1555484360 4671038 600.576 1.803 45.328163 -104.862100 +59333 21 13 19229886 1180351 7.425 0.456 46.277368 -106.219986 +59336 192 115 2403616571 1762646 928.042 0.681 46.331998 -105.022988 +59337 812 595 5967374150 369231573 2304.016 142.561 47.384253 -106.798410 +59338 142 57 202714726 4705617 78.269 1.817 46.640459 -105.640492 +59339 149 88 850687952 435116 328.452 0.168 47.270550 -105.195851 +59343 82 42 453550735 160492 175.117 0.062 45.662588 -105.465132 +59344 300 168 1163398234 850864 449.191 0.329 46.398877 -104.593818 +59347 321 172 2183413464 13496274 843.021 5.211 46.383891 -106.319968 +59349 913 526 3622663514 13003555 1398.718 5.021 46.890151 -105.502227 +59351 200 109 1384147889 351893 534.423 0.136 45.752350 -105.749927 +59353 1017 538 2303184548 1713204 889.265 0.661 46.962866 -104.274466 +59354 41 15 116522670 96360 44.990 0.037 46.181923 -104.300203 +59401 13774 6749 8047826 754368 3.107 0.291 47.511219 -111.275500 +59404 26867 11142 936538857 9625587 361.600 3.716 47.631766 -111.328870 +59405 31438 14307 1051061831 7499487 405.817 2.896 47.319261 -111.298533 +59410 666 608 3028828352 22627723 1169.437 8.737 47.486880 -112.635447 +59411 460 467 619454431 18668360 239.173 7.208 48.862924 -113.394345 +59412 1747 799 994586429 65410 384.012 0.025 47.327271 -110.889110 +59414 904 474 4311609 456557 1.665 0.176 47.528099 -111.259323 +59416 337 210 899259817 1320486 347.206 0.510 48.037342 -111.492748 +59417 7719 2521 3630657266 60283606 1401.805 23.276 48.701391 -113.129197 +59418 95 49 264290479 11787 102.043 0.005 46.799504 -109.920424 +59419 96 61 217568763 11670815 84.004 4.506 47.983733 -112.417010 +59420 243 94 633795042 322986 244.710 0.125 47.877491 -111.003826 +59421 1831 1441 1797424790 12370095 693.990 4.776 47.196070 -111.737370 +59422 2643 1338 2769366869 19498470 1069.259 7.528 47.813941 -112.473813 +59424 87 53 178097568 30037 68.764 0.012 47.352939 -110.107221 +59425 3751 1728 1460561190 1232319 563.926 0.476 48.187188 -111.898534 +59427 4757 2054 2754374815 19443794 1063.470 7.507 48.770230 -112.533090 +59430 454 271 1318910280 2826699 509.234 1.091 47.428095 -109.828966 +59432 104 75 126792052 62221 48.955 0.024 48.168933 -112.411284 +59433 594 323 936793720 284604 361.698 0.110 47.883621 -111.692030 +59434 463 306 754954787 7761170 291.490 2.997 48.479489 -113.363518 +59436 1827 828 680381308 18228933 262.697 7.038 47.612001 -112.047320 +59440 175 92 441290856 3427874 170.383 1.324 47.716021 -111.158540 +59441 82 96 640945299 145192 247.470 0.056 46.860923 -108.983837 +59442 1789 1008 2201869582 22132070 850.147 8.545 47.894607 -110.644944 +59443 612 261 161444891 28723 62.334 0.011 47.563934 -111.828933 +59444 355 111 861455504 3712673 332.610 1.433 48.727062 -111.377291 +59446 564 329 1834884977 16916391 708.453 6.531 47.618400 -110.159518 +59447 250 165 1005734303 309753 388.316 0.120 47.264849 -110.473317 +59448 743 206 292400032 3755430 112.896 1.450 48.267024 -112.781368 +59450 467 250 987406169 3101134 381.240 1.197 47.552525 -110.742839 +59451 241 132 601694518 648068 232.316 0.250 47.389175 -109.389662 +59452 525 376 1072716337 1185640 414.178 0.458 46.861898 -110.106626 +59453 362 220 1150616115 49782 444.255 0.019 46.638569 -109.652844 +59454 201 122 324132910 7295121 125.148 2.817 48.722520 -112.005415 +59456 233 91 970675939 51589662 374.780 19.919 48.270150 -111.361670 +59457 9105 4448 2798595405 1163504 1080.544 0.449 47.139997 -109.310721 +59460 233 150 718370075 6216390 277.364 2.400 48.084570 -110.504941 +59461 33 19 137172743 203195 52.963 0.078 48.489338 -111.201456 +59462 168 102 359363271 181226 138.751 0.070 47.122564 -109.891841 +59463 169 391 590254687 0 227.899 0.000 47.035641 -110.830833 +59464 500 236 566102848 242735 218.574 0.094 46.907111 -109.655409 +59465 52 185 112713362 0 43.519 0.000 46.890345 -110.720273 +59466 97 63 395884573 2707194 152.852 1.045 48.768832 -111.701050 +59467 259 44 636450987 420970 245.735 0.163 48.067356 -112.601298 +59468 571 250 652658757 184733 251.993 0.071 47.705609 -111.627730 +59469 157 111 264370402 0 102.074 0.000 47.201398 -110.701673 +59471 295 166 2449361285 7840371 945.704 3.027 47.426655 -108.772077 +59472 657 284 104444617 40482 40.326 0.016 47.396634 -111.159034 +59474 3820 1602 1829373767 25152630 706.325 9.711 48.508807 -111.729540 +59477 521 200 187046158 197032 72.219 0.076 47.450159 -111.916558 +59479 826 498 1679315654 325886 648.387 0.126 47.032558 -110.305320 +59480 383 205 633140976 34495 244.457 0.013 47.156478 -111.229206 +59482 802 329 844670760 19247080 326.129 7.431 48.869875 -111.912019 +59483 530 230 270589748 114295 104.475 0.044 47.453014 -111.701370 +59484 111 94 345278492 2458790 133.313 0.949 48.967184 -111.658692 +59485 705 269 52070369 1655288 20.104 0.639 47.401699 -111.572195 +59486 1328 506 1419110216 38092156 547.922 14.707 48.328011 -112.352072 +59487 1240 559 136063522 2270 52.534 0.001 47.587197 -111.638487 +59489 396 212 1636049440 13873323 631.682 5.357 47.624548 -109.229309 +59501 12638 5863 3330702440 23087870 1285.991 8.914 48.689862 -109.781130 +59520 1030 585 2808258596 12341725 1084.275 4.765 48.025105 -109.910509 +59521 3475 1002 763283487 737963 294.705 0.285 48.298777 -109.918262 +59522 1755 749 2303778045 9371872 889.494 3.619 48.550782 -111.005156 +59523 2287 1180 3531900257 12276845 1363.674 4.740 48.531584 -109.238565 +59524 663 313 1866138297 10261569 720.520 3.962 48.229062 -108.337007 +59525 384 149 866095954 3465183 334.402 1.338 48.689648 -110.302843 +59526 2435 936 2021830157 2636214 780.633 1.018 48.440569 -108.718051 +59527 974 331 545286062 2512166 210.536 0.970 48.033360 -108.752914 +59528 208 130 393506461 132949 151.934 0.051 48.576175 -110.408743 +59529 163 88 1076248703 663318 415.542 0.256 48.824522 -108.631789 +59530 99 92 633991585 376617 244.786 0.145 48.631778 -110.717397 +59531 241 189 589635967 259303 227.660 0.100 48.788389 -110.801412 +59532 180 103 560943062 14326616 216.581 5.532 48.578152 -110.105784 +59535 74 69 1912375421 7904934 738.372 3.052 47.980497 -109.291498 +59537 96 36 1163709820 2716917 449.311 1.049 48.829781 -108.056377 +59538 3037 1553 6651252546 137732066 2568.063 53.179 48.112019 -107.845520 +59540 371 231 1038590657 2429620 401.002 0.938 48.595081 -110.564262 +59542 192 95 631103630 1351541 243.670 0.522 48.793007 -108.379302 +59544 175 94 1390281488 4960887 536.791 1.915 48.805309 -107.557123 +59545 39 30 227177900 493354 87.714 0.190 48.938962 -111.162590 +59546 129 125 1338242207 7962666 516.698 3.074 47.751189 -108.592475 +59547 38 23 73202140 328405 28.264 0.127 48.661556 -109.030355 +59601 29283 14056 358316301 677424 138.347 0.262 46.527398 -112.210370 +59602 24285 10411 1382134841 53940985 533.645 20.827 46.739365 -111.905529 +59631 237 157 441053463 50100 170.292 0.019 46.318339 -112.429775 +59632 1939 914 1297752214 3166531 501.065 1.223 46.199908 -112.020452 +59633 206 186 578343021 96137 223.299 0.037 46.818845 -112.342933 +59634 4819 1859 398216670 500633 153.752 0.193 46.453506 -111.947796 +59635 7282 2892 186823787 319436 72.133 0.123 46.565126 -111.825982 +59636 12 18 5051796 0 1.951 0.000 46.619729 -112.109921 +59638 617 283 249874183 367 96.477 0.000 46.360758 -111.967499 +59639 1286 1215 1753524070 4539982 677.039 1.753 47.076140 -112.692961 +59640 89 63 8934724 424 3.450 0.000 46.736116 -112.299386 +59642 62 40 323186459 724605 124.783 0.280 46.283477 -110.718587 +59643 437 261 538126297 3178881 207.772 1.227 46.172521 -111.589827 +59644 4036 1972 1914160488 61323866 739.062 23.677 46.428793 -111.415948 +59645 1635 1083 4323550337 3796514 1669.332 1.466 46.687671 -111.054661 +59647 334 141 202243451 51657603 78.087 19.945 46.491037 -111.652939 +59648 635 710 1729804758 19434652 667.881 7.504 47.077240 -112.127867 +59701 33147 16176 1171365899 1954602 452.267 0.755 46.035043 -112.475720 +59703 43 18 2321651 0 0.896 0.000 46.045687 -112.537462 +59710 286 264 1562045333 3954772 603.109 1.527 45.065350 -112.067993 +59711 8933 5592 1597568960 19466426 616.825 7.516 46.099059 -113.139108 +59713 213 113 426037156 187511 164.494 0.072 46.700778 -112.561064 +59714 18182 7462 1152621399 2756451 445.030 1.064 45.980279 -111.129807 +59715 31567 14370 1197347236 707503 462.298 0.273 45.826410 -110.898798 +59716 1798 3137 1037824419 1344006 400.706 0.519 45.067125 -111.489175 +59718 27367 12530 619007855 2925524 239.000 1.130 45.576265 -111.118089 +59720 191 394 943087834 9230378 364.128 3.564 44.858750 -111.723513 +59721 433 263 666227336 1169243 257.232 0.451 45.883065 -111.837159 +59722 5781 2124 948510205 1926817 366.222 0.744 46.366483 -112.772501 +59724 128 110 1516778976 89141 585.632 0.034 44.696254 -112.762062 +59725 7963 3861 5619702634 21905278 2169.779 8.458 45.098018 -112.821469 +59727 221 163 715549908 877450 276.275 0.339 45.801675 -112.837769 +59728 343 229 533567894 29048 206.012 0.011 46.508907 -112.434846 +59729 2141 1553 1395154676 4432750 538.672 1.711 45.293720 -111.649073 +59730 1790 1341 1743626459 4549707 673.218 1.757 45.274465 -111.135185 +59731 209 123 354636564 7066 136.926 0.003 46.582200 -112.779623 +59732 128 101 358423444 828236 138.388 0.320 45.485220 -112.727015 +59733 198 117 469972792 922242 181.458 0.356 46.492252 -112.941615 +59735 331 234 450237960 1912412 173.838 0.738 45.651217 -111.869264 +59736 127 134 1094482043 1775697 422.582 0.686 45.320646 -113.373845 +59739 340 375 2498616532 46649610 964.721 18.012 44.635875 -112.172070 +59740 495 357 303790053 16035381 117.294 6.191 45.482937 -111.827844 +59741 4352 1929 406300675 1451326 156.874 0.560 45.769824 -111.368344 +59743 134 122 212059927 171028 81.877 0.066 45.680410 -112.680338 +59745 134 82 451780559 1268718 174.433 0.490 45.595197 -111.614817 +59746 92 193 420190582 805564 162.236 0.311 45.386453 -113.062070 +59747 159 143 149990805 152351 57.912 0.059 45.735177 -111.923859 +59748 254 102 52593601 0 20.307 0.000 46.046682 -112.699236 +59749 1513 907 512857630 359775 198.015 0.139 45.451603 -112.085260 +59750 309 142 174278403 378812 67.289 0.146 45.948191 -112.757232 +59751 208 140 600709592 79169 231.935 0.031 45.704776 -112.436317 +59752 3431 1583 1001000950 13069518 386.489 5.046 45.946381 -111.503941 +59754 964 556 771304440 350496 297.802 0.135 45.456857 -112.326386 +59755 210 200 221525414 53798 85.531 0.021 45.319288 -111.917328 +59756 463 48 29882610 0 11.538 0.000 46.179849 -112.828004 +59758 1769 1742 824943838 52792769 318.513 20.383 44.741942 -111.182902 +59759 3643 1794 1178489848 683198 455.017 0.264 45.851618 -112.191421 +59760 260 152 154463724 1100043 59.639 0.425 45.766631 -111.632061 +59761 265 274 2229948549 4061742 860.988 1.568 45.642317 -113.534189 +59762 258 271 1583874278 4070748 611.537 1.572 45.602186 -113.030793 +59801 30940 14103 17620495 193291 6.803 0.075 46.856398 -114.014338 +59802 18407 9143 119157242 1722294 46.007 0.665 46.903865 -113.919148 +59803 16203 6429 206695382 795357 79.806 0.307 46.796608 -113.950416 +59804 7533 3236 326145514 2929810 125.925 1.131 46.875763 -114.233812 +59808 17904 7792 339609884 4316678 131.124 1.667 46.980859 -114.086201 +59820 1361 768 1030541795 3445161 397.894 1.330 46.898852 -114.625586 +59821 2377 1040 610148487 1000612 235.580 0.386 47.173341 -114.077435 +59823 1561 804 837290028 2929379 323.280 1.131 46.919806 -113.577725 +59824 1792 713 234224646 12072605 90.435 4.661 47.422742 -114.203035 +59825 2412 1243 1341987361 2265042 518.144 0.875 46.614276 -113.735591 +59826 521 682 1131889356 21050906 437.025 8.128 47.373920 -113.792237 +59827 300 209 196102667 356124 75.716 0.138 45.885625 -114.004111 +59828 5543 2477 431741740 885536 166.696 0.342 46.331172 -113.975380 +59829 2679 1642 1934768009 8715679 747.018 3.365 45.776417 -114.295604 +59830 146 106 84847755 0 32.760 0.000 47.424528 -115.343643 +59831 454 210 281317823 2977730 108.617 1.150 47.260120 -114.368312 +59832 765 450 674120558 684811 260.279 0.264 46.688956 -113.252857 +59833 5448 2247 450222027 1526899 173.832 0.590 46.655485 -114.062364 +59834 2240 852 190288189 1347982 73.471 0.520 47.080954 -114.221653 +59837 407 224 432100428 884229 166.835 0.341 46.540302 -113.255399 +59840 13052 6696 1214005677 6897788 468.730 2.663 46.185493 -114.193689 +59841 917 194 3354738 3575 1.295 0.001 46.334211 -114.222998 +59842 90 70 331826944 291594 128.119 0.113 47.329951 -115.437448 +59843 260 244 957772847 4378714 369.798 1.691 46.832595 -112.965761 +59844 736 383 313096431 5138696 120.887 1.984 48.058227 -115.974258 +59845 1186 760 1180427260 6347987 455.766 2.451 47.690337 -114.555981 +59846 1617 741 533574357 679409 206.014 0.262 47.151810 -114.513148 +59847 5658 2290 927868047 1088990 358.252 0.420 46.702089 -114.460596 +59848 106 52 91559044 1069279 35.351 0.413 47.699486 -114.693294 +59851 173 82 558856 61896 0.216 0.024 46.871544 -113.876537 +59853 699 481 674742915 15628256 260.520 6.034 48.042017 -115.790724 +59854 239 226 958041043 6328022 369.902 2.443 47.028464 -113.087968 +59855 957 363 1869748 0 0.722 0.000 47.605510 -114.118589 +59856 347 256 207072159 3495764 79.951 1.350 47.314176 -114.748394 +59858 1538 1299 2118727895 3467254 818.045 1.339 46.285772 -113.467400 +59859 3270 1776 1796271298 12039627 693.544 4.649 47.535214 -114.826544 +59860 9913 6461 628839920 151633963 242.796 58.546 47.706523 -114.172820 +59863 76 53 31974522 84932 12.345 0.033 47.300226 -114.182539 +59864 6752 2753 490635567 7294503 189.435 2.816 47.529251 -114.109302 +59865 3185 1336 404780607 4507284 156.287 1.740 47.330512 -114.010198 +59866 943 588 588350667 2355561 227.163 0.909 47.327042 -115.158561 +59867 28 45 151267396 97400 58.405 0.038 47.440003 -115.611979 +59868 2054 1991 468659168 19177593 180.950 7.405 47.211792 -113.506003 +59870 9617 4444 657466584 3152912 253.849 1.217 46.516308 -114.063450 +59871 218 343 868010071 1477786 335.141 0.571 45.870728 -113.819335 +59872 2309 1212 1235990890 4940539 477.219 1.908 47.110018 -114.900920 +59873 3085 1865 1959419268 11124470 756.536 4.295 47.668305 -115.297327 +59874 1568 930 919524333 19091877 355.030 7.371 47.799410 -115.623421 +59875 3537 1803 334868360 1716170 129.293 0.663 46.419841 -114.314609 +59901 49693 22002 1170968819 32844591 452.114 12.681 48.229649 -114.385053 +59910 356 419 143474039 70920690 55.396 27.383 47.795266 -114.298852 +59911 7678 5995 1016258548 104066929 392.380 40.180 47.738441 -113.740522 +59912 13499 6048 363216876 6109462 140.239 2.359 48.408215 -114.154362 +59913 675 374 148002464 684271 57.144 0.264 48.440278 -113.951352 +59914 234 242 36072427 18413961 13.928 7.110 47.858197 -114.281831 +59915 403 326 87069295 9657317 33.618 3.729 47.848129 -114.405200 +59916 130 389 270386370 1110457 104.397 0.429 48.256533 -113.381612 +59917 4225 2387 668804910 4981967 258.227 1.924 48.936035 -114.876902 +59918 592 326 235137383 2260935 90.787 0.873 48.768101 -114.859061 +59919 839 662 2459948825 8638661 949.792 3.335 47.958549 -113.239590 +59920 1680 853 467114762 5979728 180.354 2.309 48.053743 -114.545855 +59922 2408 1548 87606570 99316862 33.825 38.346 47.996638 -114.187522 +59923 9856 5285 3546462042 17846596 1369.297 6.891 48.226144 -115.392222 +59925 1435 1011 978837007 22235874 377.931 8.585 48.048355 -114.833941 +59926 513 270 24989096 316590 9.648 0.122 48.352716 -113.997993 +59927 368 217 615251264 6425044 237.550 2.481 48.592348 -114.711833 +59928 88 508 1553916391 16139881 599.970 6.232 48.778144 -114.458340 +59929 237 263 156764810 6445060 60.527 2.488 47.927434 -114.369341 +59930 867 704 214628336 47209879 82.868 18.228 48.866733 -115.133187 +59931 328 436 26537498 51990995 10.246 20.074 47.914632 -114.174975 +59932 1648 974 67606713 28642456 26.103 11.059 48.057999 -114.192423 +59933 43 37 20706511 578772 7.995 0.223 48.682382 -114.772578 +59934 528 344 489388380 3340250 188.954 1.290 48.600295 -114.898300 +59935 3576 2330 2329688177 13866489 899.498 5.354 48.650377 -115.832885 +59936 367 632 2379916682 67077137 918.891 25.899 48.626399 -113.807633 +59937 12588 7873 778899587 23485209 300.735 9.068 48.406092 -114.532766 +60002 24299 10548 84457987 12420094 32.609 4.795 42.471077 -88.083818 +60004 50582 21177 28701818 66765 11.082 0.026 42.112780 -87.979542 +60005 29308 13484 16979978 104883 6.556 0.040 42.064490 -87.985462 +60007 33820 14168 36460145 946066 14.077 0.365 42.008650 -87.997360 +60008 22717 8905 13389228 11945 5.170 0.005 42.069786 -88.016221 +60010 44095 17154 191097599 6853778 73.783 2.646 42.146794 -88.165268 +60012 11120 3933 44593835 22151 17.218 0.009 42.272492 -88.314084 +60013 26872 9409 37767656 2134159 14.582 0.824 42.223188 -88.235532 +60014 48550 17894 65536181 2905763 25.304 1.122 42.232414 -88.327449 +60015 26800 9928 35037256 489285 13.528 0.189 42.173809 -87.878173 +60016 59690 25330 27518585 251245 10.625 0.097 42.049580 -87.895000 +60018 30099 10954 42345213 656169 16.350 0.253 41.979388 -87.911763 +60020 9825 5389 11831882 3301667 4.568 1.275 42.389054 -88.173346 +60021 5545 2162 5675592 362692 2.191 0.140 42.194697 -88.217108 +60022 8153 2993 10174351 3744418 3.928 1.446 42.135423 -87.761882 +60025 39105 15684 29799274 262577 11.506 0.101 42.075201 -87.821026 +60026 13335 5359 10552664 0 4.074 0.000 42.092234 -87.837445 +60029 482 157 2165140 0 0.836 0.000 42.059253 -87.778339 +60030 36056 14489 66389884 3320939 25.633 1.282 42.337078 -88.044326 +60031 37947 14559 48850231 884041 18.861 0.341 42.373574 -87.939353 +60033 13922 5223 314241724 367857 121.329 0.142 42.424786 -88.608011 +60034 2040 840 67279665 0 25.977 0.000 42.456318 -88.419695 +60035 29763 12256 32848990 6895094 12.683 2.662 42.185968 -87.805939 +60040 5431 1950 1824463 0 0.704 0.000 42.206369 -87.813102 +60041 9250 3823 24887372 3946005 9.609 1.524 42.364552 -88.151120 +60042 8547 3309 11853313 1364469 4.577 0.527 42.278206 -88.196627 +60043 2513 855 1591034 0 0.614 0.000 42.088859 -87.714588 +60044 9792 4211 19592039 3803150 7.565 1.468 42.284408 -87.862297 +60045 20925 8004 54790343 4224848 21.155 1.631 42.235997 -87.864777 +60046 35111 12946 59312529 8032151 22.901 3.101 42.416323 -88.059119 +60047 41669 14157 90114747 3564843 34.793 1.376 42.203134 -88.044208 +60048 29095 11069 71298056 1806464 27.528 0.697 42.295408 -87.950611 +60050 31620 12682 72477002 2323367 27.984 0.897 42.331147 -88.295180 +60051 25192 10202 82827733 4058386 31.980 1.567 42.355462 -88.228663 +60053 23260 9030 13014738 0 5.025 0.000 42.042336 -87.788949 +60056 55219 22216 27850658 1196 10.753 0.000 42.067166 -87.934719 +60060 37189 13194 61023056 3425504 23.561 1.323 42.270156 -88.039275 +60061 25748 10179 20639233 505481 7.969 0.195 42.234909 -87.959135 +60062 39936 16649 47995817 307011 18.531 0.119 42.126511 -87.846704 +60064 15407 5413 13408002 1746687 5.177 0.674 42.324027 -87.856704 +60067 38585 16577 35545352 160434 13.724 0.062 42.106323 -88.064362 +60068 37475 15026 18373706 77742 7.094 0.030 42.011762 -87.843434 +60069 8384 3830 17549922 417859 6.776 0.161 42.196156 -87.923934 +60070 16001 6382 9329364 75022 3.602 0.029 42.103663 -87.928972 +60071 3598 1666 67245458 411441 25.964 0.159 42.468058 -88.315930 +60072 928 333 20630678 0 7.966 0.000 42.406697 -88.305871 +60073 60002 19344 53100857 2438804 20.502 0.942 42.348824 -88.109581 +60074 38985 15444 18487770 324299 7.138 0.125 42.131462 -88.026329 +60076 33415 11959 13866395 0 5.354 0.000 42.035259 -87.729928 +60077 26825 11332 10426672 0 4.026 0.000 42.034751 -87.757186 +60081 10079 3712 45758232 807105 17.667 0.312 42.451014 -88.225409 +60083 9838 3671 68463662 1049561 26.434 0.405 42.436403 -87.941889 +60084 16771 6639 37841077 2529442 14.611 0.977 42.269669 -88.140911 +60085 71714 24362 38771835 2441917 14.970 0.943 42.352097 -87.867656 +60087 26978 9878 34455146 2276108 13.303 0.879 42.403085 -87.850836 +60088 15761 1430 6020439 2652331 2.325 1.024 42.309632 -87.844061 +60089 41533 17047 25258713 92303 9.752 0.036 42.167465 -87.960653 +60090 37633 15392 24323149 154296 9.391 0.060 42.129419 -87.921102 +60091 27020 10268 13856986 3492923 5.350 1.349 42.078067 -87.720581 +60093 19570 7536 22045825 4020510 8.512 1.552 42.106708 -87.756292 +60096 6897 2755 12430994 2113847 4.800 0.816 42.479722 -87.824805 +60097 11250 4534 38192908 3080447 14.746 1.189 42.396954 -88.371039 +60098 32228 12646 272655866 197664 105.273 0.076 42.326227 -88.456071 +60099 31104 11609 58826359 2951675 22.713 1.140 42.459907 -87.864977 +60101 39119 13341 29866966 854519 11.532 0.330 41.931060 -88.013050 +60102 32193 11653 37541285 939599 14.495 0.363 42.164741 -88.308625 +60103 41928 14772 49681202 913012 19.182 0.353 41.980446 -88.203407 +60104 19038 6612 6096104 0 2.354 0.000 41.882845 -87.876430 +60106 20309 7444 23233400 260810 8.970 0.101 41.959701 -87.941835 +60107 39927 13659 20645758 86799 7.971 0.034 42.020586 -88.177771 +60108 22735 9369 18630709 905100 7.193 0.349 41.950022 -88.091865 +60109 560 231 7445739 0 2.875 0.000 42.049789 -88.545910 +60110 38557 11822 23121084 552209 8.927 0.213 42.114687 -88.291866 +60111 258 117 52828981 193591 20.397 0.075 42.009497 -88.805358 +60112 4560 1651 9587096 5454 3.702 0.002 41.924797 -88.690186 +60113 337 134 410023 0 0.158 0.000 41.932247 -88.965872 +60115 46272 17761 209171024 882158 80.761 0.341 41.901264 -88.759253 +60118 15851 6461 52304125 1639366 20.195 0.633 42.106199 -88.304394 +60119 10371 3772 130684223 12477 50.457 0.005 41.851532 -88.476450 +60120 50955 16718 42961291 867266 16.587 0.335 42.034492 -88.238396 +60123 47405 17495 35666047 681546 13.771 0.263 42.040644 -88.311296 +60124 18935 6987 99070783 173659 38.251 0.067 42.020169 -88.400686 +60126 46371 17417 28841228 296537 11.136 0.114 41.896843 -87.941240 +60129 242 99 44293766 0 17.102 0.000 42.008121 -88.974996 +60130 14167 7834 7168774 0 2.768 0.000 41.866440 -87.817389 +60131 18097 6479 14368840 0 5.548 0.000 41.938755 -87.884263 +60133 38103 11529 21024056 779300 8.117 0.301 41.977726 -88.142590 +60134 28565 10459 39872798 628323 15.395 0.243 41.878343 -88.342066 +60135 7248 2741 120089744 591632 46.367 0.228 42.112495 -88.670862 +60136 7013 2335 17768066 11407 6.860 0.004 42.105485 -88.380573 +60137 37805 14837 28010288 591169 10.815 0.228 41.865213 -88.061479 +60139 34381 11947 14375637 362510 5.550 0.140 41.918877 -88.078095 +60140 14341 5166 212657836 70449 82.108 0.027 42.080051 -88.515442 +60141 224 84 1072024 0 0.414 0.000 41.857831 -87.837993 +60142 26447 11286 103982238 118357 40.148 0.046 42.173997 -88.444664 +60143 10360 4227 17832233 703260 6.885 0.272 41.974170 -88.022774 +60144 58 27 106763 0 0.041 0.000 41.835957 -88.520644 +60145 2627 957 92837637 637676 35.845 0.246 42.084558 -88.773824 +60146 2713 1029 139274043 1078918 53.774 0.417 42.100452 -88.874353 +60148 51468 21662 35095925 690970 13.551 0.267 41.873571 -88.020766 +60150 1794 709 138573749 176373 53.504 0.068 41.925825 -88.894473 +60151 4061 1577 211167486 274713 81.532 0.106 41.918475 -88.574468 +60152 12533 4918 244605801 302338 94.443 0.117 42.237792 -88.625522 +60153 24106 8400 7762120 0 2.997 0.000 41.879283 -87.843251 +60154 16773 7246 12486176 0 4.821 0.000 41.847471 -87.891643 +60155 7927 3321 4829426 0 1.865 0.000 41.857696 -87.856225 +60156 28987 9894 29297796 593363 11.312 0.229 42.203618 -88.320768 +60157 2380 881 3844518 96485 1.484 0.037 41.975300 -88.056122 +60160 25432 8534 11518695 0 4.447 0.000 41.904144 -87.860665 +60162 8111 3114 8289155 0 3.200 0.000 41.867533 -87.902188 +60163 5209 1919 4165453 0 1.608 0.000 41.888830 -87.909048 +60164 22048 7332 12276020 0 4.740 0.000 41.917512 -87.900698 +60165 4946 1285 880352 0 0.340 0.000 41.903215 -87.880713 +60169 33847 12805 19898547 225859 7.683 0.087 42.050870 -88.116615 +60171 10246 4434 5847505 0 2.258 0.000 41.925046 -87.838372 +60172 24537 9711 18001807 369060 6.951 0.142 41.979850 -88.089628 +60173 12217 6548 15863102 9786 6.125 0.004 42.051556 -88.055522 +60174 30752 12907 36274040 1140366 14.005 0.440 41.930757 -88.298737 +60175 25564 8150 88657505 724196 34.231 0.280 41.948188 -88.388701 +60176 11795 4700 6860618 0 2.649 0.000 41.958125 -87.868886 +60177 22659 7722 22128596 839679 8.544 0.324 41.988481 -88.310167 +60178 21840 9022 179557810 1421223 69.328 0.549 42.006791 -88.670669 +60180 1694 651 56109220 0 21.664 0.000 42.225262 -88.524527 +60181 28836 11567 17076728 213231 6.593 0.082 41.876897 -87.976328 +60184 2448 897 21026502 739247 8.118 0.285 41.951502 -88.253170 +60185 36527 11142 78570519 2077598 30.336 0.802 41.896691 -88.211014 +60187 29016 10074 17154064 242721 6.623 0.094 41.872720 -88.112442 +60188 42656 15967 26155804 812082 10.099 0.314 41.915737 -88.129434 +60189 30472 12340 26394675 909914 10.191 0.351 41.839981 -88.117716 +60190 10663 3999 12029415 201551 4.645 0.078 41.871796 -88.157034 +60191 14310 5725 14511095 347639 5.603 0.134 41.966306 -87.980851 +60192 16343 5520 27319690 209342 10.548 0.081 42.063272 -88.203662 +60193 39188 16649 23666216 75195 9.138 0.029 42.009666 -88.096644 +60194 19777 8476 9375542 177883 3.620 0.069 42.034820 -88.110285 +60195 4769 2528 5122557 0 1.978 0.000 42.074962 -88.086284 +60201 43125 18268 12236667 2538085 4.725 0.980 42.056140 -87.692240 +60202 31361 14913 7913053 1455196 3.055 0.562 42.030355 -87.685549 +60203 4523 1763 1765387 0 0.682 0.000 42.049045 -87.717453 +60301 2539 1764 400865 0 0.155 0.000 41.888545 -87.798933 +60302 32108 15670 7803797 0 3.013 0.000 41.894611 -87.789713 +60304 17231 7085 3969173 0 1.533 0.000 41.872389 -87.789483 +60305 11172 4176 6410886 4794 2.475 0.002 41.894875 -87.819064 +60401 7797 3203 146986570 12586 56.752 0.005 41.343959 -87.616400 +60402 63448 23339 13653673 151970 5.272 0.059 41.835216 -87.791373 +60403 17529 7649 16965798 21597 6.551 0.008 41.553739 -88.134185 +60404 17395 6372 40433858 467679 15.612 0.181 41.513049 -88.223977 +60406 25460 9559 14381543 240123 5.553 0.093 41.654945 -87.681952 +60407 1684 664 31051182 364810 11.989 0.141 41.234907 -88.261302 +60408 5696 2202 19501759 539019 7.530 0.208 41.263739 -88.215536 +60409 37186 15708 19287124 322264 7.447 0.124 41.613641 -87.552122 +60410 12687 4258 64248674 6181206 24.807 2.387 41.423600 -88.201907 +60411 58136 21400 82189811 544594 31.734 0.210 41.508774 -87.590314 +60415 14139 5849 5944001 0 2.295 0.000 41.702948 -87.778830 +60416 9397 3825 57848324 2669489 22.335 1.031 41.293908 -88.283101 +60417 15547 6426 100929225 98330 38.969 0.038 41.427585 -87.586149 +60419 22788 8640 10879981 136161 4.201 0.053 41.629147 -87.599490 +60420 6102 2173 260417231 266790 100.548 0.103 41.088287 -88.416970 +60421 3968 1570 105656104 398391 40.794 0.154 41.431182 -88.099710 +60422 9403 3668 10918079 0 4.215 0.000 41.536964 -87.684139 +60423 30423 10540 94430508 6761 36.460 0.003 41.477368 -87.832416 +60424 2440 1017 133607502 836705 51.586 0.323 41.164148 -88.327716 +60425 9117 3578 12396163 0 4.786 0.000 41.545576 -87.611726 +60426 29594 11405 19954704 0 7.705 0.000 41.610343 -87.653394 +60428 12203 4278 13454827 0 5.195 0.000 41.599800 -87.690565 +60429 15630 6054 10123623 54689 3.909 0.021 41.574029 -87.683706 +60430 20094 8276 17614501 126073 6.801 0.049 41.558880 -87.664442 +60431 22577 8110 35290456 116251 13.626 0.045 41.509668 -88.180211 +60432 21403 6810 21711268 231439 8.383 0.089 41.541747 -88.034728 +60433 17160 6163 33632353 89440 12.986 0.035 41.499502 -88.043681 +60435 48899 19611 27734572 126331 10.708 0.049 41.548590 -88.128928 +60436 18315 6926 39020767 2460576 15.066 0.950 41.486888 -88.129295 +60437 187 87 49756386 6915 19.211 0.003 41.162929 -88.560435 +60438 28884 11963 20581151 149619 7.946 0.058 41.566242 -87.550204 +60439 22919 8533 78807832 3407701 30.428 1.316 41.676397 -87.981770 +60440 52911 17217 41638235 484473 16.077 0.187 41.700600 -88.075006 +60441 36869 12655 72777727 1419141 28.100 0.548 41.592639 -88.050043 +60442 9924 3462 176967018 0 68.327 0.000 41.392698 -87.963468 +60443 21145 8209 29946635 134015 11.562 0.052 41.502184 -87.748201 +60444 1761 723 122199738 1452040 47.182 0.561 41.243115 -88.402732 +60445 26057 10811 17911389 163034 6.916 0.063 41.634390 -87.736395 +60446 39807 12670 44694672 676085 17.257 0.261 41.632017 -88.106200 +60447 13709 4787 176476060 862426 68.138 0.333 41.487239 -88.322166 +60448 24423 8534 47015624 37158 18.153 0.014 41.537785 -87.892451 +60449 9217 3539 125850268 167099 48.591 0.065 41.417545 -87.778882 +60450 20332 8685 407526783 22860437 157.347 8.826 41.366374 -88.434609 +60451 34063 11553 66085897 192519 25.516 0.074 41.507651 -87.961090 +60452 27969 10663 24098229 163819 9.304 0.063 41.608007 -87.753490 +60453 56855 23586 21904195 59 8.457 0.000 41.713436 -87.752560 +60455 16446 5894 11285494 0 4.357 0.000 41.742076 -87.808642 +60456 4349 1935 1240336 0 0.479 0.000 41.731248 -87.731134 +60457 14049 5487 7504069 0 2.897 0.000 41.724664 -87.828043 +60458 14428 5838 7439101 126302 2.872 0.049 41.753399 -87.826946 +60459 28929 9717 10868636 0 4.196 0.000 41.744431 -87.768577 +60460 1522 654 249127860 74780 96.189 0.029 40.998479 -88.536714 +60461 4836 1999 7200227 9275 2.780 0.004 41.522116 -87.700733 +60462 38723 15656 40625938 964328 15.686 0.372 41.625307 -87.832930 +60463 14671 5853 13929262 322458 5.378 0.125 41.662446 -87.789969 +60464 9620 4030 20067859 970289 7.748 0.375 41.662840 -87.860756 +60465 17495 7637 12297367 8799 4.748 0.003 41.698023 -87.829143 +60466 22115 9897 16599952 66519 6.409 0.026 41.477816 -87.683188 +60467 26046 9593 37685742 1055057 14.551 0.407 41.601621 -87.889096 +60468 6116 2377 187163524 175443 72.264 0.068 41.335283 -87.810291 +60469 5930 1866 2457397 0 0.949 0.000 41.628359 -87.687037 +60470 616 260 96170850 0 37.132 0.000 41.168970 -88.641026 +60471 14101 5574 12430330 31490 4.799 0.012 41.478971 -87.734059 +60472 5390 2060 4284829 154441 1.654 0.060 41.643075 -87.708082 +60473 22439 7893 22037857 40377 8.509 0.016 41.597379 -87.599150 +60474 760 342 8556009 1767973 3.303 0.683 41.180025 -88.266368 +60475 9870 4248 12481010 7855 4.819 0.003 41.472540 -87.627508 +60476 2391 1059 8744246 208984 3.376 0.081 41.569482 -87.601707 +60477 38161 16328 33047771 30851 12.760 0.012 41.572143 -87.789250 +60478 16833 6170 13456587 45922 5.196 0.018 41.563453 -87.725409 +60479 760 290 105684426 144636 40.805 0.056 41.232384 -88.526396 +60480 5246 2288 15117477 697481 5.837 0.269 41.729244 -87.881310 +60481 11851 5735 284863855 12504108 109.987 4.828 41.285227 -88.114298 +60482 11063 4708 6322620 33038 2.441 0.013 41.687843 -87.789946 +60484 6829 2605 17428533 5723 6.729 0.002 41.443615 -87.708354 +60487 26928 9057 22300994 63502 8.610 0.025 41.562730 -87.834416 +60490 20463 5926 24443086 52343 9.438 0.020 41.669320 -88.145399 +60491 22743 7919 65902462 126402 25.445 0.049 41.602549 -87.962887 +60501 11626 3896 12527100 970849 4.837 0.375 41.780204 -87.823462 +60502 21873 8200 27090071 406323 10.460 0.157 41.790651 -88.259738 +60503 16717 5441 8627509 19957 3.331 0.008 41.712127 -88.255180 +60504 37919 14382 22992804 546999 8.878 0.211 41.747452 -88.238622 +60505 76573 23262 28917881 459593 11.165 0.177 41.764527 -88.294658 +60506 53013 18743 48479757 841576 18.718 0.325 41.765385 -88.362227 +60510 28897 11046 67148707 2418582 25.926 0.934 41.841141 -88.306602 +60511 1793 693 77245763 35743 29.825 0.014 41.758993 -88.551993 +60512 1111 429 20557908 0 7.937 0.000 41.701578 -88.439805 +60513 19047 7816 8175969 17368 3.157 0.007 41.825059 -87.847546 +60514 9708 3967 5263005 32448 2.032 0.013 41.795689 -87.962155 +60515 27503 12117 29182943 297387 11.268 0.115 41.810554 -88.022796 +60516 29084 11969 20481229 322455 7.908 0.125 41.761302 -88.013394 +60517 32038 12971 22512557 486493 8.692 0.188 41.740329 -88.042149 +60518 3580 1538 346895933 576987 133.937 0.223 41.598864 -88.919706 +60519 88 36 160704 0 0.062 0.000 41.777821 -88.242610 +60520 2886 1155 116345479 411720 44.921 0.159 41.787267 -88.667548 +60521 17597 6308 12205020 296246 4.712 0.114 41.800683 -87.928172 +60523 9890 4751 23108741 878175 8.922 0.339 41.836610 -87.953472 +60525 31168 13095 32646552 35241 12.605 0.014 41.784430 -87.868952 +60526 13576 5837 7111387 0 2.746 0.000 41.831794 -87.873995 +60527 27486 12151 37499879 937009 14.479 0.362 41.742624 -87.932360 +60530 649 253 72829460 57040 28.120 0.022 41.796909 -88.952980 +60531 1902 786 150904320 124831 58.264 0.048 41.617322 -88.779640 +60532 27066 12481 23124188 689988 8.928 0.266 41.789443 -88.083984 +60534 10649 4340 4398839 74139 1.698 0.029 41.813241 -87.821890 +60536 126 48 1965028 0 0.759 0.000 41.597542 -88.549957 +60537 665 241 1712657 153497 0.661 0.059 41.560516 -88.604224 +60538 26619 9324 26134134 266374 10.090 0.103 41.726871 -88.338195 +60539 341 6 1941673 47721 0.750 0.018 41.827240 -88.336209 +60540 42910 16130 34163246 544204 13.191 0.210 41.764670 -88.145428 +60541 3148 1189 218465394 874295 84.350 0.338 41.513357 -88.532418 +60542 17099 6233 24412860 609371 9.426 0.235 41.809609 -88.352556 +60543 36156 12624 110499901 1076271 42.664 0.416 41.664136 -88.317818 +60544 25959 9812 60437797 3948929 23.335 1.525 41.613637 -88.218719 +60545 12940 4691 98030276 871346 37.850 0.336 41.679761 -88.532995 +60546 15668 6708 10027969 48322 3.872 0.019 41.837923 -87.821859 +60548 12218 4918 104775331 982217 40.454 0.379 41.649149 -88.638131 +60549 643 255 61566308 633425 23.771 0.245 41.502537 -88.739635 +60550 1440 588 115180098 1529180 44.471 0.590 41.781386 -88.863296 +60551 5062 1514 149407405 1675266 57.687 0.647 41.524826 -88.687688 +60552 4448 1842 70274137 739316 27.133 0.285 41.666888 -88.706507 +60553 782 314 133154820 113445 51.411 0.044 41.827060 -89.033728 +60554 11796 4371 92427115 245229 35.686 0.095 41.776684 -88.457062 +60555 13538 5272 17815545 629590 6.879 0.243 41.822167 -88.180773 +60556 2007 814 135517540 297255 52.324 0.115 41.762918 -88.771142 +60557 155 63 1740612 229755 0.672 0.089 41.448102 -88.760078 +60558 12960 4584 9130758 263 3.525 0.000 41.805603 -87.901039 +60559 24852 10847 12656797 240515 4.887 0.093 41.794371 -87.972860 +60560 22415 8403 201705138 1879037 77.879 0.726 41.608220 -88.429346 +60561 23115 9587 16179386 284381 6.247 0.110 41.745663 -87.981494 +60563 35922 16086 39270125 1174087 15.162 0.453 41.789996 -88.204404 +60564 41312 13153 41650701 405676 16.081 0.157 41.707430 -88.194820 +60565 40524 13942 32283283 355415 12.465 0.137 41.730729 -88.124336 +60585 22311 6761 41520367 592797 16.031 0.229 41.657058 -88.225243 +60586 46251 13808 45379297 390868 17.521 0.151 41.571405 -88.237756 +60601 11110 8594 999363 0 0.386 0.000 41.885310 -87.622129 +60602 1204 791 225435 0 0.087 0.000 41.883073 -87.629149 +60603 493 749 375285 0 0.145 0.000 41.880188 -87.625509 +60604 570 496 239756 0 0.093 0.000 41.878095 -87.628461 +60605 24668 14805 3225725 2031071 1.245 0.784 41.867566 -87.617228 +60606 2308 2022 661666 0 0.255 0.000 41.882066 -87.637349 +60607 23897 13356 6009736 0 2.320 0.000 41.874932 -87.651596 +60608 82739 28852 16452029 456919 6.352 0.176 41.846223 -87.672388 +60609 64906 24656 20092663 49424 7.758 0.019 41.812680 -87.656935 +60610 37726 26614 3037781 1138536 1.173 0.440 41.906844 -87.631939 +60611 28718 24211 2094884 1543098 0.809 0.596 41.895700 -87.613775 +60612 33472 15513 9705205 0 3.747 0.000 41.880320 -87.687749 +60613 48281 29976 5634577 1114040 2.176 0.430 41.956949 -87.654272 +60614 66617 37951 8200331 744059 3.166 0.287 41.922714 -87.649577 +60615 40603 23192 5730411 1663609 2.213 0.642 41.801647 -87.596288 +60616 48433 25198 10482831 1480932 4.047 0.572 41.844883 -87.624032 +60617 84155 33392 35909179 3912352 13.865 1.511 41.718197 -87.552739 +60618 92084 39547 13107751 0 5.061 0.000 41.946962 -87.702548 +60619 63825 31893 15593782 0 6.021 0.000 41.743690 -87.605526 +60620 72216 29936 18353976 10735 7.087 0.004 41.740497 -87.652558 +60621 35912 16904 9656913 0 3.729 0.000 41.776382 -87.639571 +60622 52548 26433 6354377 35154 2.453 0.014 41.902172 -87.683337 +60623 92108 30931 13873043 253947 5.356 0.098 41.848897 -87.717661 +60624 38105 16693 9155267 14139 3.535 0.005 41.880504 -87.724444 +60625 78651 32255 10093806 29163 3.897 0.011 41.973292 -87.700351 +60626 50139 25517 4416736 1192512 1.705 0.460 42.010019 -87.667095 +60628 72202 28651 28281273 194237 10.919 0.075 41.690875 -87.615773 +60629 113916 34000 17639584 161563 6.811 0.062 41.775868 -87.711496 +60630 54093 22195 12365754 3027 4.774 0.001 41.972071 -87.756569 +60631 28641 12650 9635928 0 3.720 0.000 41.994855 -87.813003 +60632 91326 27057 19235615 123025 7.427 0.048 41.810166 -87.713252 +60633 12927 5182 26600801 5011682 10.271 1.935 41.663809 -87.561470 +60634 74298 27449 18422020 24085 7.113 0.009 41.946189 -87.806117 +60636 40916 15300 10132375 0 3.912 0.000 41.775739 -87.669064 +60637 49503 24632 11667654 1911137 4.505 0.738 41.781621 -87.599876 +60638 55026 21397 28752636 0 11.101 0.000 41.781442 -87.770534 +60639 90407 28183 12631958 0 4.877 0.000 41.920553 -87.756056 +60640 65790 37598 6234410 652940 2.407 0.252 41.972872 -87.662604 +60641 71663 27072 10468217 0 4.042 0.000 41.946606 -87.746787 +60642 18480 9910 4409406 83164 1.702 0.032 41.902042 -87.658544 +60643 49952 19525 19027065 32586 7.346 0.013 41.700273 -87.663267 +60644 48648 19620 9074682 24575 3.504 0.009 41.880084 -87.756373 +60645 45274 17528 5847014 0 2.258 0.000 42.008558 -87.694735 +60646 27177 11443 11840818 0 4.572 0.000 41.993019 -87.759627 +60647 87291 38453 10481520 30466 4.047 0.012 41.921215 -87.701028 +60649 46650 26343 7589170 2576122 2.930 0.995 41.763420 -87.565879 +60651 64267 23199 9055133 0 3.496 0.000 41.902095 -87.740850 +60652 40959 13394 12993375 0 5.017 0.000 41.747940 -87.714807 +60653 29908 15989 6043069 1696671 2.333 0.655 41.819962 -87.605984 +60654 14875 11859 1574555 0 0.608 0.000 41.892289 -87.637271 +60655 28550 11036 11411336 0 4.406 0.000 41.694781 -87.703779 +60656 27613 12660 8465988 0 3.269 0.000 41.974280 -87.827131 +60657 65996 41483 5888326 2025836 2.273 0.782 41.940293 -87.646857 +60659 38104 14198 5250723 2819 2.027 0.001 41.991488 -87.703986 +60660 42752 23645 3303447 595676 1.275 0.230 41.991110 -87.663076 +60661 7792 5866 769603 0 0.297 0.000 41.883026 -87.644098 +60706 23134 9669 7660354 0 2.958 0.000 41.964257 -87.816242 +60707 42920 16901 9344447 0 3.608 0.000 41.921854 -87.807282 +60712 12590 4640 6888377 0 2.660 0.000 42.005432 -87.733239 +60714 29931 12623 16481998 0 6.364 0.000 42.028055 -87.810960 +60803 22285 9288 19567015 376929 7.555 0.146 41.673552 -87.735958 +60804 84573 24986 19848453 372767 7.664 0.144 41.838036 -87.759870 +60805 19852 7559 8823142 0 3.407 0.000 41.722005 -87.702442 +60827 27946 11457 18161652 1229641 7.012 0.475 41.649434 -87.633572 +60901 37157 14895 247980663 5277374 95.746 2.038 41.109505 -87.897917 +60910 538 226 1298839 288092 0.501 0.111 41.080546 -87.809530 +60911 1372 597 166230204 153651 64.182 0.059 40.880243 -87.976584 +60912 599 268 92040351 28989 35.537 0.011 40.973619 -87.603476 +60913 1617 631 118805919 0 45.871 0.000 41.146985 -88.061778 +60914 29107 10589 126388530 916617 48.799 0.354 41.187368 -87.861802 +60915 10774 4466 8208456 79558 3.169 0.031 41.146304 -87.861046 +60917 574 217 95749272 16479 36.969 0.006 41.047493 -88.186315 +60918 898 407 131327108 150753 50.706 0.058 40.594970 -88.025670 +60919 558 238 90280429 9598 34.857 0.004 40.987875 -88.237518 +60920 178 73 5098987 0 1.969 0.000 41.029257 -88.304970 +60921 1519 716 185358990 165919 71.568 0.064 40.731456 -88.297018 +60922 2459 1045 137645111 536429 53.145 0.207 41.003226 -87.917188 +60924 1635 780 188020204 105421 72.595 0.041 40.551009 -87.886524 +60926 67 35 7159743 0 2.764 0.000 40.566351 -87.823657 +60927 2404 950 190176967 607858 73.428 0.235 40.938489 -87.972776 +60928 709 320 28588297 0 11.038 0.000 40.741660 -87.849011 +60929 730 355 101697663 0 39.266 0.000 40.874974 -88.289163 +60930 918 372 114181397 0 44.086 0.000 40.829913 -88.002574 +60931 615 258 119389258 31755 46.096 0.012 40.889327 -87.588141 +60932 78 39 1917884 0 0.740 0.000 40.463312 -87.805561 +60933 302 137 5239176 0 2.023 0.000 40.464728 -88.271912 +60934 273 128 83820337 73472 32.363 0.028 40.958061 -88.353047 +60935 1064 407 48993151 980612 18.916 0.379 41.170447 -88.175861 +60936 4321 1956 262293916 610144 101.272 0.236 40.467849 -88.351997 +60938 2131 940 131982905 171086 50.959 0.066 40.773028 -87.988260 +60940 3369 1298 195926226 66966 75.648 0.026 41.249777 -87.642858 +60941 2039 831 135782973 0 52.426 0.000 41.041988 -88.082084 +60942 6181 2880 299218819 81203 115.529 0.031 40.465380 -87.661377 +60945 153 92 1370577 0 0.529 0.000 40.828189 -87.584213 +60946 426 195 112757905 0 43.536 0.000 40.916505 -88.202897 +60948 1533 813 122225924 781915 47.192 0.302 40.525039 -88.081061 +60949 636 281 65395164 54633 25.249 0.021 40.378337 -88.105151 +60950 12168 4902 197832607 457400 76.384 0.177 41.252784 -87.884593 +60951 961 423 137872589 724446 53.233 0.280 40.914602 -87.755127 +60952 684 307 106387162 110184 41.076 0.043 40.562795 -88.250366 +60953 2469 1184 384960982 54555 148.634 0.021 40.629577 -87.688641 +60954 6104 2677 172066808 1975843 66.435 0.763 41.147708 -87.622516 +60955 1901 737 225527849 61580 87.077 0.024 40.699506 -87.969261 +60957 5615 2410 258437345 441483 99.783 0.170 40.443183 -88.135890 +60958 2135 1059 135233859 0 52.214 0.000 41.064833 -87.591359 +60959 1082 490 143631854 0 55.457 0.000 40.789695 -88.181996 +60960 1064 473 215186994 78997 83.084 0.031 40.438957 -87.890723 +60961 700 418 96035981 325791 37.080 0.126 41.109567 -88.221504 +60962 524 268 104710175 175442 40.429 0.068 40.626121 -88.187136 +60963 1807 789 201660222 0 77.861 0.000 40.366679 -87.648421 +60964 4968 2145 194218318 1429661 74.988 0.552 41.038816 -87.744203 +60966 1526 696 155599673 0 60.077 0.000 40.751503 -87.583223 +60968 433 207 112093655 53781 43.280 0.021 40.672352 -88.119538 +60969 65 30 655728 0 0.253 0.000 41.110975 -88.149737 +60970 7190 3431 336372581 1247969 129.874 0.482 40.794942 -87.734726 +60973 385 187 89922773 0 34.719 0.000 40.541685 -87.663146 +60974 283 112 3562597 0 1.376 0.000 40.719013 -87.733847 +61001 1179 1209 100465323 1698879 38.790 0.656 42.465816 -90.110232 +61006 1759 745 179878792 129173 69.452 0.050 41.861743 -89.202103 +61007 534 219 69297991 0 26.756 0.000 42.197755 -89.589505 +61008 34311 12775 223881717 1468983 86.441 0.567 42.245919 -88.841130 +61010 8032 3109 100645312 1983483 38.859 0.766 42.134991 -89.266354 +61011 2945 1106 98834710 30528 38.160 0.012 42.392526 -88.897904 +61012 2175 808 93951389 231790 36.275 0.089 42.401445 -88.764558 +61013 528 228 901287 0 0.348 0.000 42.372123 -89.639278 +61014 1173 537 168217067 0 64.949 0.000 41.974687 -89.884447 +61015 946 402 106124180 134989 40.975 0.052 41.996752 -89.197077 +61016 4837 2067 73023042 1188202 28.194 0.459 42.197297 -88.947723 +61018 1080 454 83428996 0 32.212 0.000 42.415263 -89.555222 +61019 3550 1906 93712000 1171343 36.182 0.452 42.439512 -89.410047 +61020 3108 1083 81789135 0 31.579 0.000 42.110183 -89.098207 +61021 23745 9926 388060368 8522280 149.831 3.290 41.827392 -89.479188 +61024 2620 1094 161828362 233798 62.482 0.090 42.436415 -89.297114 +61025 4867 2102 89898472 11199206 34.710 4.324 42.470902 -90.556260 +61027 52 26 666663 0 0.257 0.000 42.330909 -89.757279 +61028 1989 1125 277103931 14050 106.990 0.005 42.298465 -90.175881 +61030 2205 951 154549098 86205 59.672 0.033 42.119648 -89.591624 +61031 1656 664 120131587 51067 46.383 0.020 41.832071 -89.311588 +61032 31651 15028 383297473 428230 147.992 0.165 42.318004 -89.636784 +61036 6821 5166 275504071 10854125 106.373 4.191 42.413614 -90.377097 +61037 140 58 435113 0 0.168 0.000 41.789331 -89.760294 +61038 1354 537 110293769 594840 42.585 0.230 42.265818 -88.737964 +61039 802 341 72450012 0 27.973 0.000 42.208868 -89.467558 +61041 1327 839 154680852 273797 59.723 0.106 42.273156 -90.311245 +61042 527 222 172233014 37536 66.500 0.014 41.687626 -89.562791 +61043 131 59 4883555 0 1.886 0.000 42.056438 -89.105241 +61044 232 105 32578287 0 12.579 0.000 42.318779 -89.915092 +61046 2831 2079 212975872 1661474 82.230 0.641 42.104394 -89.811739 +61047 1711 788 172254247 0 66.508 0.000 42.153152 -89.395916 +61048 4360 1889 215706094 214741 83.285 0.083 42.382637 -89.841231 +61049 585 216 52836578 52054 20.400 0.020 42.049626 -89.008914 +61050 376 161 24719219 0 9.544 0.000 42.440288 -89.734143 +61051 1574 730 139433793 0 53.836 0.000 41.982781 -89.754875 +61052 1148 444 71493502 0 27.604 0.000 42.111372 -88.999555 +61053 2852 1424 285925779 37192 110.397 0.014 42.120761 -89.983427 +61054 3973 1862 102855804 0 39.713 0.000 42.054974 -89.449449 +61057 168 57 4389664 0 1.695 0.000 41.829200 -89.382046 +61059 141 69 4315879 0 1.666 0.000 42.453149 -89.940200 +61060 1432 633 93712746 0 36.183 0.000 42.478161 -89.621909 +61061 7009 3310 271513927 4981822 104.832 1.923 41.997917 -89.341656 +61062 1983 799 191332218 23705 73.874 0.009 42.250635 -89.835749 +61063 4132 1719 197888238 1144734 76.405 0.442 42.319493 -89.340658 +61064 3868 1733 273589141 0 105.633 0.000 41.987852 -89.582338 +61065 11156 3939 132348585 947315 51.100 0.366 42.400588 -88.836952 +61067 811 361 77763145 282163 30.025 0.109 42.305046 -89.478928 +61068 14858 6074 304537796 407810 117.583 0.157 41.945817 -89.060013 +61070 1130 484 89882701 0 34.704 0.000 42.416818 -89.473074 +61071 14381 6397 184235182 5429332 71.134 2.096 41.724673 -89.698867 +61072 11797 4606 136055039 2668332 52.531 1.030 42.442353 -89.138490 +61073 20052 7599 70812638 1423118 27.341 0.549 42.423717 -88.993849 +61074 4431 2353 192352665 11603715 74.268 4.480 42.125818 -90.120321 +61075 958 478 130977978 0 50.571 0.000 42.464449 -90.258941 +61077 73 39 82842 0 0.032 0.000 42.238138 -89.357813 +61078 1374 619 148689202 0 57.409 0.000 42.165921 -89.729005 +61079 188 78 4571209 91398 1.765 0.035 42.437245 -89.216208 +61080 10599 4539 64991876 884411 25.094 0.341 42.482064 -88.988025 +61081 21934 9616 319967102 5366921 123.540 2.072 41.843847 -89.735295 +61084 3175 1211 90063187 992561 34.774 0.383 42.124022 -89.185652 +61085 3443 1654 334798394 0 129.266 0.000 42.341810 -90.032187 +61087 1670 800 77075124 0 29.759 0.000 42.480217 -89.992631 +61088 6020 2320 142843377 22127 55.152 0.009 42.268117 -89.262692 +61089 867 378 111081976 0 42.889 0.000 42.473424 -89.819325 +61091 63 28 2104521 0 0.813 0.000 41.906878 -89.527690 +61101 21593 9024 107833729 174784 41.635 0.067 42.346079 -89.146087 +61102 20538 7474 89168070 2812241 34.428 1.086 42.228769 -89.162524 +61103 24578 11479 44744957 1409075 17.276 0.544 42.340261 -89.086492 +61104 19269 9013 11681766 147628 4.510 0.057 42.251720 -89.079945 +61107 30439 14065 38423400 341404 14.835 0.132 42.285290 -89.001692 +61108 28550 12465 27341335 38186 10.557 0.015 42.257371 -89.002129 +61109 28333 12056 99998954 802766 38.610 0.310 42.191304 -89.055756 +61111 23492 10217 36826109 1132904 14.219 0.437 42.335503 -89.002745 +61112 86 95 2021969 0 0.781 0.000 42.241981 -88.975184 +61114 15776 6832 20634896 11147 7.967 0.004 42.306605 -88.990894 +61115 23180 9226 27511093 710636 10.622 0.274 42.364306 -89.027467 +61201 39116 17464 46759130 5180514 18.054 2.000 41.477559 -90.575628 +61230 1232 576 48675680 73785 18.794 0.028 41.734087 -90.213132 +61231 5627 2520 387926802 230929 149.779 0.089 41.211487 -90.718219 +61232 1284 500 7332336 0 2.831 0.000 41.430737 -90.732438 +61234 1258 574 149479740 458995 57.714 0.177 41.417963 -89.914339 +61235 1391 642 134698944 519620 52.008 0.201 41.401294 -90.023559 +61236 193 82 3860172 144362 1.490 0.056 41.515956 -90.367807 +61238 3247 1388 268070698 47264 103.503 0.018 41.282483 -90.172661 +61239 1219 509 4327804 151585 1.671 0.059 41.480572 -90.383246 +61240 5870 2438 95383222 977301 36.828 0.377 41.421158 -90.428608 +61241 7124 2900 46720429 2843221 18.039 1.098 41.488588 -90.321158 +61242 1145 521 81284566 6898282 31.384 2.663 41.708009 -90.285148 +61243 264 104 70557865 0 27.243 0.000 41.618771 -89.682944 +61244 24053 10312 67464803 4767379 26.048 1.841 41.522559 -90.390822 +61250 2737 1133 221936269 4269723 85.690 1.649 41.655926 -90.112419 +61251 347 148 46048338 0 17.779 0.000 41.730595 -90.075699 +61252 5436 2550 152884361 2014374 59.029 0.778 41.836910 -90.125373 +61254 11414 4956 447722980 1976622 172.867 0.763 41.467196 -90.149810 +61256 1822 788 3625940 1932248 1.400 0.746 41.547833 -90.407493 +61257 1210 542 106224542 2754421 41.014 1.063 41.593358 -90.221845 +61258 204 83 888721 0 0.343 0.000 41.521564 -89.914010 +61259 1276 533 197948296 20800291 76.428 8.031 41.392567 -90.954365 +61260 856 392 151702058 36224 58.572 0.014 41.245974 -90.880521 +61261 975 421 46463225 1177605 17.940 0.455 41.726285 -89.915460 +61262 1188 492 111451135 91391 43.032 0.035 41.276069 -90.348286 +61263 530 218 781595 0 0.302 0.000 41.258847 -90.604730 +61264 10548 4801 185877568 8744621 71.768 3.376 41.402220 -90.594859 +61265 45099 20647 49105652 3689165 18.960 1.424 41.482387 -90.493492 +61270 7306 3182 392873921 582693 151.689 0.225 41.826598 -89.963451 +61272 1504 741 233423587 13997367 90.125 5.404 41.253608 -91.004598 +61273 3316 1341 120845609 0 46.659 0.000 41.362901 -90.398881 +61274 351 145 63314499 0 24.446 0.000 41.368573 -90.276974 +61275 4347 1826 86960956 3582050 33.576 1.383 41.605575 -90.307048 +61276 138 57 6052175 0 2.337 0.000 41.304077 -90.589916 +61277 3355 1490 327900572 2439775 126.603 0.942 41.613582 -89.930578 +61278 412 184 2612254 0 1.009 0.000 41.582025 -90.336732 +61279 1061 447 110261813 0 42.572 0.000 41.320528 -90.726796 +61281 2597 1079 99705271 644645 38.496 0.249 41.299780 -90.520144 +61282 7809 3674 8648236 0 3.339 0.000 41.495554 -90.412989 +61283 1640 634 214868237 0 82.961 0.000 41.591859 -89.786563 +61284 2292 963 116847600 2165532 45.115 0.836 41.394212 -90.751797 +61285 1631 902 102304042 1779912 39.500 0.687 41.985776 -90.058320 +61301 10588 4865 103080721 350768 39.800 0.135 41.401096 -89.082214 +61310 3970 1757 277542139 1024721 107.160 0.396 41.701366 -89.356823 +61311 232 107 40351054 0 15.580 0.000 41.037692 -88.860016 +61312 474 220 90440323 29449 34.919 0.011 41.436355 -89.234905 +61313 282 127 108824104 0 42.017 0.000 41.073694 -88.668671 +61314 807 382 121041227 27988 46.734 0.011 41.296481 -89.678495 +61315 322 163 3727743 171166 1.439 0.066 41.287804 -89.364517 +61316 282 138 4100430 0 1.583 0.000 41.259082 -89.124987 +61317 513 230 8460306 0 3.267 0.000 41.431454 -89.208916 +61318 700 314 89617453 38199 34.601 0.015 41.711285 -89.078271 +61319 1293 576 128760830 964468 49.715 0.372 41.018416 -88.742318 +61320 710 314 2421214 0 0.935 0.000 41.354680 -89.170456 +61321 282 132 72555582 0 28.014 0.000 40.969276 -88.973147 +61322 1647 625 10218988 2970649 3.946 1.147 41.314131 -89.317590 +61323 111 46 456242 0 0.176 0.000 41.433059 -89.396789 +61324 109 42 503962 0 0.195 0.000 41.769914 -89.413892 +61325 1073 436 130783142 71412 50.496 0.028 41.234953 -88.809633 +61326 2452 1091 127753991 2160952 49.326 0.834 41.245918 -89.231034 +61327 1235 560 88946083 4885858 34.342 1.886 41.226710 -89.311467 +61328 42 18 1261054 0 0.487 0.000 41.499544 -89.459257 +61329 1303 590 4621643 0 1.784 0.000 41.375034 -89.180739 +61330 1483 625 199630077 30908 77.078 0.012 41.536068 -89.267012 +61331 55 24 71553 0 0.028 0.000 41.747703 -89.277542 +61332 134 64 1318075 0 0.509 0.000 41.188769 -88.988778 +61333 381 167 46243265 0 17.855 0.000 40.989245 -88.888154 +61334 741 322 96152877 0 37.125 0.000 41.145113 -89.098451 +61335 532 299 54046919 64606 20.868 0.025 41.165748 -89.218354 +61336 628 277 101948398 2864726 39.362 1.106 41.112606 -89.231916 +61337 478 187 17196274 0 6.640 0.000 41.436413 -89.328430 +61338 284 129 1466626 0 0.566 0.000 41.458737 -89.676107 +61340 292 124 1324492 0 0.511 0.000 41.261250 -89.250157 +61341 8234 3656 235396309 10179754 90.887 3.930 41.352042 -88.693281 +61342 9216 3803 271994121 367546 105.018 0.142 41.543343 -89.084270 +61344 374 171 63377174 107090 24.470 0.041 41.411154 -89.839694 +61345 846 385 127161993 219551 49.098 0.085 41.280245 -89.794395 +61346 75 44 462232 0 0.178 0.000 41.511190 -89.718402 +61348 4696 2170 98737225 1824290 38.123 0.704 41.285723 -89.035197 +61349 977 446 171132787 105347 66.075 0.041 41.544823 -89.442299 +61350 24246 10984 398076249 13776445 153.698 5.319 41.372048 -88.865134 +61353 1333 587 82394337 134509 31.813 0.052 41.704316 -88.991053 +61354 10870 5062 109686222 899101 42.350 0.347 41.327928 -89.143248 +61356 11281 5272 460184474 2145030 177.678 0.828 41.394790 -89.433868 +61358 478 221 64474197 0 24.894 0.000 40.978724 -89.044023 +61359 312 144 2144660 38138 0.828 0.015 41.362452 -89.271459 +61360 3393 1364 128697032 1032644 49.690 0.399 41.328218 -88.600572 +61361 1409 664 220535221 702635 85.149 0.271 41.413064 -89.756154 +61362 5911 2616 64600476 745568 24.942 0.288 41.358708 -89.233220 +61363 220 118 1357892 0 0.524 0.000 41.254185 -89.182339 +61364 20133 9159 375729148 386954 145.070 0.149 41.128078 -88.841565 +61367 864 416 120773898 395343 46.631 0.153 41.621412 -89.259488 +61368 1489 665 190433285 288449 73.527 0.111 41.264642 -89.521296 +61369 1711 767 118839666 0 45.884 0.000 40.984046 -89.155061 +61370 1460 624 135913810 108772 52.477 0.042 41.199778 -89.038477 +61372 145 70 667768 0 0.258 0.000 41.464900 -89.078018 +61373 2031 891 125652118 1153172 48.515 0.445 41.407228 -88.995936 +61374 119 50 7319803 0 2.826 0.000 41.547712 -89.358725 +61375 1156 773 124184396 915695 47.948 0.354 41.033889 -89.244454 +61376 2280 979 250133736 176176 96.577 0.068 41.545347 -89.613262 +61377 1457 658 141435016 95387 54.608 0.037 41.061382 -89.034038 +61378 512 225 153471786 304641 59.256 0.118 41.722671 -89.155402 +61379 1359 604 106990603 68110 41.309 0.026 41.390795 -89.606980 +61401 34788 15516 296371906 1299878 114.430 0.502 40.944559 -90.385282 +61410 3912 1713 106705358 24459 41.199 0.009 40.796475 -90.396007 +61411 378 177 98046488 42515 37.856 0.016 40.400982 -90.502128 +61412 1321 625 194419899 572 75.066 0.000 41.078398 -90.579715 +61413 1075 497 82399988 110031 31.815 0.042 41.190597 -90.368905 +61414 854 375 131193921 0 50.654 0.000 41.124680 -90.155739 +61415 1747 853 290256757 1024225 112.069 0.395 40.656310 -90.431270 +61416 235 119 2283710 0 0.882 0.000 40.499397 -90.562897 +61417 259 134 74422083 0 28.735 0.000 40.774174 -90.538320 +61418 673 326 137908264 158471 53.247 0.061 40.850174 -90.862586 +61419 128 65 1384627 0 0.535 0.000 41.199461 -90.117460 +61420 1067 565 184114849 28005 71.087 0.011 40.547722 -90.866640 +61421 1392 599 245234078 209610 94.685 0.081 41.187539 -89.647935 +61422 3416 1573 102508503 34333 39.579 0.013 40.551362 -90.532761 +61423 682 296 127114388 0 49.079 0.000 40.886282 -90.501204 +61424 100 43 1891796 0 0.730 0.000 41.076767 -89.634994 +61425 483 378 80246325 3596890 30.983 1.389 40.759242 -91.040150 +61426 107 40 8221384 0 3.174 0.000 41.119997 -89.706980 +61427 2329 1032 151857292 4745102 58.632 1.832 40.508521 -90.183878 +61428 986 903 85170709 2369060 32.885 0.915 40.943829 -90.107135 +61430 828 362 4486060 143756 1.732 0.056 40.939231 -90.311209 +61431 371 176 86906297 323136 33.555 0.125 40.608009 -90.276497 +61432 676 291 95348626 1016741 36.814 0.393 40.648385 -90.153167 +61433 74 25 2747558 181420 1.061 0.070 40.554375 -90.168989 +61434 3312 1593 204978638 16978 79.143 0.007 41.183981 -90.038516 +61435 116 57 25324079 0 9.778 0.000 40.975148 -90.544946 +61436 951 403 158863064 40035 61.337 0.015 40.860149 -90.223174 +61437 818 459 104237490 4946641 40.246 1.910 40.848791 -90.987759 +61438 760 356 111140559 0 42.912 0.000 40.582743 -90.651654 +61439 269 127 1757576 0 0.679 0.000 41.028419 -90.357059 +61440 766 368 132203045 22904 51.044 0.009 40.305582 -90.598626 +61441 897 468 158830565 61546 61.325 0.024 40.338564 -90.277187 +61442 762 425 67510325 4536201 26.066 1.751 41.108865 -90.921684 +61443 14214 6516 252605049 46642 97.531 0.018 41.263671 -89.944897 +61447 924 407 95753175 124270 36.971 0.048 40.867312 -90.753342 +61448 3823 1637 109059820 0 42.108 0.000 40.933620 -90.246813 +61449 512 239 97500441 120259 37.645 0.046 41.091504 -89.979463 +61450 1742 834 216956854 11812 83.768 0.005 40.578637 -90.979104 +61451 393 160 59598810 273427 23.011 0.106 40.938697 -89.939478 +61452 293 137 76048865 0 29.363 0.000 40.236190 -90.660627 +61453 781 333 148137930 0 57.196 0.000 41.012202 -90.764135 +61454 725 329 80492958 75004 31.079 0.029 40.681930 -91.039891 +61455 22086 9476 442476552 1282117 170.841 0.495 40.439873 -90.646505 +61458 822 395 215184809 484514 83.083 0.187 40.782252 -90.183139 +61459 433 205 90860329 401583 35.081 0.155 40.510245 -90.419564 +61460 291 140 90441707 0 34.920 0.000 40.716661 -90.829174 +61462 11643 4876 405163401 507678 156.434 0.196 40.923249 -90.644346 +61465 1213 542 108235785 38567 41.790 0.015 41.210673 -90.479667 +61466 342 150 60617989 0 23.405 0.000 41.110013 -90.479663 +61467 1048 456 127971336 496007 49.410 0.192 41.076367 -90.240813 +61468 104 42 5046396 0 1.948 0.000 41.257745 -90.387780 +61469 2184 1197 117989789 10978379 45.556 4.239 40.955988 -90.908236 +61470 547 232 57387642 0 22.157 0.000 40.603863 -90.504840 +61471 140 65 837632 0 0.323 0.000 40.697480 -90.834837 +61472 648 289 102461287 0 39.561 0.000 41.102149 -90.382867 +61473 1667 778 269011848 24804 103.866 0.010 40.707687 -90.640428 +61474 292 153 73510158 28306 28.382 0.011 40.736456 -90.380402 +61475 205 92 76414056 0 29.504 0.000 40.597924 -90.753451 +61476 407 185 105671869 51444 40.800 0.020 41.099146 -90.833940 +61477 631 301 130085371 83793 50.226 0.032 40.495994 -90.310552 +61478 290 128 94244030 0 36.388 0.000 40.757855 -90.760645 +61479 165 68 31106764 0 12.010 0.000 41.004790 -89.644768 +61480 1324 594 164523840 22840 63.523 0.009 40.727421 -90.913356 +61482 650 296 143250506 424432 55.309 0.164 40.384239 -90.408345 +61483 1961 903 245598472 54476 94.826 0.021 41.084830 -89.881372 +61484 825 387 99341104 270697 38.356 0.105 40.295816 -90.435790 +61485 560 296 112121811 1994075 43.290 0.770 41.021282 -90.102912 +61486 1552 668 111653222 62056 43.110 0.024 41.195016 -90.577870 +61488 1120 499 66940833 0 25.846 0.000 41.032239 -90.318320 +61489 900 418 118242608 303358 45.654 0.117 40.930858 -90.033162 +61490 1091 498 101894497 31883 39.342 0.012 41.185531 -90.258712 +61491 2197 992 258290370 626675 99.726 0.242 41.054464 -89.730734 +61501 1921 900 201023658 7070601 77.616 2.730 40.228366 -90.311915 +61516 720 301 81897259 0 31.621 0.000 40.858083 -89.135201 +61517 3259 1270 178564620 156336 68.944 0.060 40.828366 -89.844868 +61519 233 115 3075062 0 1.187 0.000 40.460070 -90.088956 +61520 17839 7348 398100547 21870439 153.707 8.444 40.539026 -90.023221 +61523 11204 4842 138274182 5962231 53.388 2.302 40.911930 -89.537770 +61524 262 121 616779 0 0.238 0.000 40.491321 -90.034735 +61525 9021 3393 81131483 0 31.325 0.000 40.848480 -89.669078 +61526 1088 418 82677295 21098 31.922 0.008 40.922901 -89.619957 +61528 2668 998 47369338 0 18.289 0.000 40.778955 -89.722961 +61529 2880 1210 165807156 893877 64.019 0.345 40.782018 -89.937608 +61530 6713 2507 161336095 169033 62.292 0.065 40.714370 -89.260105 +61531 3379 1469 145827438 1354109 56.304 0.523 40.682505 -90.036794 +61532 534 246 86187469 0 33.277 0.000 40.339487 -89.818789 +61533 2427 1039 106180244 2178959 40.996 0.841 40.586374 -89.842499 +61534 1737 708 142628033 0 55.069 0.000 40.414441 -89.666079 +61535 1629 639 22491297 164207 8.684 0.063 40.578709 -89.516102 +61536 2919 1292 106341042 325089 41.059 0.126 40.689425 -89.793782 +61537 2974 1357 152917014 2894805 59.042 1.118 41.119200 -89.471462 +61539 205 97 2043925 519038 0.789 0.200 40.556403 -89.762073 +61540 2916 1299 135115915 16467489 52.169 6.358 41.014600 -89.366597 +61541 136 63 425088 0 0.164 0.000 40.980378 -89.234952 +61542 3794 1794 297641789 992692 114.920 0.383 40.389729 -90.130236 +61543 151 77 20224308 4399833 7.809 1.699 40.412512 -89.974552 +61544 713 330 85056112 169064 32.840 0.065 40.693648 -90.235793 +61545 646 279 78964743 0 30.488 0.000 40.870710 -89.353494 +61546 4276 1919 262993557 17406684 101.542 6.721 40.448338 -89.809589 +61547 3779 1467 57910082 1462092 22.359 0.565 40.580832 -89.720918 +61548 12085 4569 196046104 10702238 75.694 4.132 40.808363 -89.412699 +61550 17721 7566 105928199 142004 40.899 0.055 40.610249 -89.441854 +61552 239 100 1379365 0 0.533 0.000 40.817632 -89.565655 +61553 213 102 690658 0 0.267 0.000 40.625932 -90.032265 +61554 43810 18655 181120412 1173921 69.931 0.453 40.539343 -89.618320 +61559 3332 1321 254261849 331294 98.171 0.128 40.919018 -89.779203 +61560 754 655 85783471 21266903 33.121 8.211 41.187262 -89.419790 +61561 2788 1120 142794788 130433 55.133 0.050 40.803036 -89.200895 +61562 46 25 70325 0 0.027 0.000 40.880395 -89.501542 +61563 526 241 902896 0 0.349 0.000 40.492024 -90.054216 +61564 1077 414 742194 0 0.287 0.000 40.493466 -89.653494 +61565 1504 653 170596220 8750487 65.868 3.379 41.038714 -89.505036 +61567 624 330 95567764 0 36.899 0.000 40.358139 -89.896566 +61568 4459 1724 174108319 222312 67.224 0.086 40.511627 -89.482220 +61569 1220 519 102079428 872339 39.413 0.337 40.683232 -89.900619 +61570 1879 775 172425705 12698739 66.574 4.903 40.921072 -89.325733 +61571 23744 9799 147157075 31210 56.818 0.012 40.704146 -89.417889 +61572 1068 477 92282267 358366 35.630 0.138 40.803170 -90.044471 +61602 1055 665 3943497 535903 1.523 0.207 40.674568 -89.608587 +61603 17600 7731 11117130 148321 4.292 0.057 40.712882 -89.576722 +61604 31647 14343 40892671 0 15.789 0.000 40.705729 -89.653624 +61605 16303 7105 10769613 0 4.158 0.000 40.676541 -89.633346 +61606 8051 2998 3450145 0 1.332 0.000 40.699807 -89.611514 +61607 10941 4665 82986199 2576389 32.041 0.995 40.627135 -89.685132 +61610 5476 2423 10879378 946022 4.201 0.365 40.642116 -89.599560 +61611 25268 11239 105906094 24048974 40.891 9.285 40.713236 -89.535816 +61614 27628 13929 31250722 236645 12.066 0.091 40.759136 -89.604123 +61615 22432 10534 81906221 35245 31.624 0.014 40.737893 -89.686781 +61616 6116 3058 6562244 334918 2.534 0.129 40.746726 -89.571641 +61625 385 5 36486 0 0.014 0.000 40.697618 -89.612699 +61701 36105 17557 29243079 0 11.291 0.000 40.476771 -88.992995 +61704 35981 15047 47816811 24508 18.462 0.009 40.471127 -88.944538 +61705 12263 4708 226415209 197933 87.419 0.076 40.413575 -88.897098 +61720 236 120 72676088 0 28.060 0.000 40.554670 -88.514468 +61721 613 264 92019561 27046 35.529 0.010 40.350757 -89.323483 +61722 549 226 131272893 13803 50.685 0.005 40.418661 -88.632370 +61723 2321 1032 168157038 132279 64.926 0.051 40.264664 -89.276542 +61724 536 247 99107265 1397 38.266 0.001 40.329508 -88.530877 +61725 1547 608 124659385 107279 48.131 0.041 40.610446 -89.122717 +61726 2544 1122 236625063 569780 91.361 0.220 40.738395 -88.692315 +61727 10015 4585 319222878 4194448 123.253 1.619 40.142419 -88.961160 +61728 1410 599 169854695 54860 65.581 0.021 40.571735 -88.627336 +61729 1073 399 48713452 81781 18.808 0.032 40.628647 -89.221289 +61730 379 171 75613335 0 29.194 0.000 40.532486 -88.729413 +61731 280 108 57619398 0 22.247 0.000 40.613947 -88.485525 +61732 2096 827 144320349 132771 55.722 0.051 40.529527 -89.208590 +61733 1124 469 55691090 66084 21.502 0.026 40.618858 -89.336899 +61734 2867 1214 214513571 52147 82.824 0.020 40.375995 -89.512608 +61735 420 199 81161749 8165534 31.337 3.153 40.200639 -88.814798 +61736 1808 657 95278636 85647 36.787 0.033 40.402310 -88.840561 +61737 516 233 88319735 35130 34.100 0.014 40.464516 -88.745295 +61738 4212 1670 206924740 141337 79.894 0.055 40.744984 -89.029986 +61739 4897 2021 253032602 752964 97.696 0.291 40.732942 -88.520725 +61740 1634 720 191027962 0 73.756 0.000 40.884263 -88.861634 +61741 1746 689 144768657 0 55.895 0.000 40.759435 -88.404270 +61742 1144 423 16368594 37116 6.320 0.014 40.635557 -89.270049 +61743 212 95 39148869 0 15.115 0.000 40.875664 -88.781679 +61744 2031 830 202578667 0 78.216 0.000 40.739971 -88.887112 +61745 4408 1655 203455111 354022 78.554 0.137 40.326135 -88.970354 +61747 1560 669 71973394 29752 27.789 0.011 40.416219 -89.435480 +61748 2782 1175 102212318 5531080 39.464 2.136 40.619486 -88.991155 +61749 556 279 84201070 34047 32.510 0.013 40.092849 -89.116222 +61750 133 62 3089792 0 1.193 0.000 40.123545 -88.859650 +61751 124 57 4303557 0 1.662 0.000 40.214556 -89.299252 +61752 4339 1812 216362299 794132 83.538 0.307 40.339682 -88.754301 +61753 3012 1263 220328073 157910 85.069 0.061 40.629725 -88.788001 +61754 1261 520 174874824 54201 67.520 0.021 40.333729 -89.181830 +61755 4669 1774 127047472 551660 49.053 0.213 40.528022 -89.337173 +61756 2337 983 213580146 0 82.464 0.000 40.031242 -88.973447 +61759 1534 659 87990143 32045 33.973 0.012 40.437333 -89.334895 +61760 2544 1108 189275321 131074 73.080 0.051 40.879243 -89.021795 +61761 52879 18982 110251111 160794 42.568 0.062 40.529083 -88.958937 +61764 14460 5725 422653342 1329799 163.187 0.513 40.882442 -88.628136 +61769 619 258 98182789 0 37.909 0.000 40.882009 -88.399364 +61770 1108 503 161414408 137476 62.322 0.053 40.442966 -88.525267 +61771 860 349 59588346 51440 23.007 0.020 40.702016 -89.131374 +61772 351 156 72163663 0 27.863 0.000 40.381256 -89.065969 +61773 477 225 112647583 274741 43.493 0.106 40.571620 -88.383439 +61774 962 410 111699896 0 43.128 0.000 40.430677 -89.203945 +61775 307 120 89741480 83333 34.649 0.032 40.653696 -88.375962 +61776 1409 594 113777770 396706 43.930 0.153 40.566516 -88.874490 +61777 952 418 104212314 34688 40.237 0.013 40.244063 -88.945663 +61778 683 313 78187708 0 30.188 0.000 40.232881 -89.091171 +61801 30937 13868 13861667 70059 5.352 0.027 40.108966 -88.211024 +61802 19052 9223 214640288 247466 82.873 0.096 40.131498 -88.156770 +61810 361 154 53432081 0 20.630 0.000 39.916122 -87.914791 +61811 703 296 73419327 0 28.347 0.000 40.292742 -87.622848 +61812 375 172 69086175 0 26.674 0.000 40.226685 -87.911218 +61813 1971 833 168843285 12023 65.191 0.005 39.910750 -88.565701 +61814 1157 482 55782913 0 21.538 0.000 40.230607 -87.572471 +61815 228 105 758355 0 0.293 0.000 40.110752 -88.376547 +61816 509 215 74437586 0 28.741 0.000 39.922809 -88.001216 +61817 2583 1099 72222042 197258 27.885 0.076 40.035275 -87.716283 +61818 1665 693 106729800 10889 41.209 0.004 39.886708 -88.716505 +61820 36964 14760 16927476 797 6.536 0.000 40.107890 -88.244266 +61821 30174 13784 19541881 54136 7.545 0.021 40.109646 -88.274903 +61822 21608 9423 281768478 167443 108.791 0.065 40.136481 -88.305307 +61830 478 224 98607931 95462 38.073 0.037 40.033078 -88.716508 +61831 157 72 30081623 0 11.615 0.000 40.225090 -87.792070 +61832 37290 17511 67130134 2965801 25.919 1.145 40.136234 -87.636466 +61833 2124 1018 4037123 29096 1.559 0.011 40.099747 -87.644220 +61834 8454 2809 277929993 1443258 107.309 0.557 40.152546 -87.673298 +61839 586 272 86254118 0 33.303 0.000 40.137717 -88.629166 +61840 709 289 86469339 208822 33.386 0.081 40.298873 -88.300263 +61841 1386 590 149778579 801671 57.830 0.310 40.020594 -87.816871 +61842 2984 1312 257724908 2782026 99.508 1.074 40.238677 -88.665395 +61843 2363 956 98373650 405882 37.982 0.157 40.314162 -88.375163 +61844 970 426 150290571 19113 58.028 0.007 40.141080 -87.868799 +61845 364 174 78019106 390626 30.123 0.151 40.373621 -88.396814 +61846 5101 2228 113269162 232180 43.733 0.090 39.977252 -87.607538 +61847 1256 507 80641593 54985 31.136 0.021 40.319307 -88.011235 +61848 227 95 2003491 0 0.774 0.000 40.308060 -87.702771 +61849 1842 784 148896166 574712 57.489 0.222 40.014226 -87.967370 +61850 671 284 89158703 123199 34.424 0.048 39.931734 -87.739797 +61851 436 219 88467998 0 34.158 0.000 39.960820 -88.434724 +61852 261 111 51003038 0 19.692 0.000 39.903152 -88.075799 +61853 13206 5142 125403933 1011779 48.419 0.391 40.214956 -88.421171 +61854 1438 628 138949661 125434 53.649 0.048 40.199872 -88.529328 +61855 96 52 26399907 0 10.193 0.000 39.922139 -88.660929 +61856 7433 3226 270110150 285405 104.290 0.110 40.026695 -88.580103 +61857 153 74 619767 0 0.239 0.000 40.116554 -87.842280 +61858 3124 1377 74563377 1554296 28.789 0.600 40.134258 -87.761877 +61859 1297 510 81156728 33010 31.335 0.013 40.150428 -87.962905 +61862 510 213 104362020 212279 40.294 0.082 40.306027 -87.958606 +61863 814 355 84235905 80662 32.524 0.031 39.905255 -88.278472 +61864 1715 654 59010108 52474 22.784 0.020 39.975064 -88.152723 +61865 1391 592 199542732 51984 77.044 0.020 40.304925 -87.802464 +61866 14048 6542 207847661 287583 80.250 0.111 40.312587 -88.154549 +61870 1327 600 107055364 0 41.334 0.000 39.897549 -87.618389 +61871 284 129 900562 0 0.348 0.000 40.190222 -87.968042 +61872 760 321 85050217 173063 32.838 0.067 39.945376 -88.378110 +61873 6250 2398 174220980 799024 67.267 0.309 40.133896 -88.039122 +61874 7114 3355 10779441 49098 4.162 0.019 40.045756 -88.259444 +61875 761 309 82295621 3293 31.775 0.001 40.103485 -88.416420 +61876 800 333 112624454 1085 43.485 0.000 39.902767 -87.839529 +61877 1627 666 72984498 271809 28.179 0.105 39.989192 -88.081601 +61878 1433 682 71952521 56090 27.781 0.022 40.242651 -88.145453 +61880 4183 1711 156928345 142360 60.590 0.055 39.973795 -88.248906 +61882 713 308 97958852 4419861 37.822 1.707 40.106230 -88.754729 +61883 4438 2057 55137961 0 21.289 0.000 40.037393 -87.641523 +61884 1244 501 66256549 146033 25.582 0.056 40.089160 -88.477814 +61910 4463 1617 268502741 336017 103.669 0.130 39.675509 -88.299912 +61911 4860 1715 163016154 43701 62.941 0.017 39.700938 -88.469322 +61912 1344 592 131375803 209213 50.724 0.081 39.521951 -88.039710 +61913 1684 768 107992340 0 41.696 0.000 39.827555 -88.466090 +61914 1920 828 153447115 1456676 59.246 0.562 39.630343 -88.762449 +61917 591 281 164873497 0 63.658 0.000 39.714200 -87.897725 +61919 813 367 56766760 118599 21.918 0.046 39.784439 -88.137770 +61920 25594 10220 387612577 2331997 149.658 0.900 39.512041 -88.154193 +61924 2449 1164 375365038 106435 144.929 0.041 39.786199 -87.663216 +61925 912 368 108193424 12677 41.774 0.005 39.719105 -88.840528 +61928 757 362 93124138 681499 35.955 0.263 39.451216 -88.501263 +61929 769 359 105033754 1727 40.554 0.001 39.824789 -88.625797 +61930 515 239 80785226 0 31.191 0.000 39.680887 -88.130478 +61931 1255 498 82524363 59371 31.863 0.023 39.586339 -88.349775 +61932 456 238 55931575 0 21.595 0.000 39.803595 -87.879047 +61933 1141 547 155110234 87033 59.888 0.034 39.546695 -87.926758 +61936 243 112 5812751 0 2.244 0.000 39.801351 -88.730259 +61937 2022 901 243872212 42339 94.160 0.016 39.741355 -88.654821 +61938 22409 10616 322883444 932599 124.666 0.360 39.484141 -88.374771 +61940 258 129 72792788 0 28.105 0.000 39.807701 -87.818525 +61941 57 44 3541164 0 1.367 0.000 39.804067 -88.072940 +61942 1202 579 183442835 196117 70.828 0.076 39.814412 -88.003205 +61943 1637 780 201180223 391228 77.676 0.151 39.673103 -88.030850 +61944 12908 6079 686313176 1421835 264.987 0.549 39.600845 -87.700643 +61949 179 88 7357388 0 2.841 0.000 39.633642 -87.873648 +61951 8017 3476 349319129 20598960 134.873 7.953 39.595754 -88.590280 +61953 6216 2796 312417390 577804 120.625 0.223 39.803409 -88.291339 +61955 157 78 645288 0 0.249 0.000 39.582172 -87.591665 +61956 2909 1281 87589997 68518 33.819 0.026 39.858190 -88.135009 +61957 1869 856 213371879 7748581 82.383 2.992 39.440561 -88.615209 +62001 1752 691 132747831 848728 51.254 0.328 38.881403 -89.745001 +62002 32704 15397 108835425 5466405 42.022 2.111 38.939532 -90.124504 +62006 648 329 76055762 20586053 29.365 7.948 39.053054 -90.669715 +62009 1810 872 9756320 9550 3.767 0.004 39.091549 -89.798118 +62010 11186 4881 57233665 666341 22.098 0.257 38.921117 -90.045305 +62011 284 135 74150241 0 28.630 0.000 39.126511 -89.216001 +62012 6654 2669 154163183 1160816 59.523 0.448 39.044749 -90.148200 +62013 552 330 64018383 14407920 24.718 5.563 38.956413 -90.573646 +62014 4122 1680 153781561 697328 59.375 0.269 39.043376 -89.951132 +62015 487 240 86364357 2117148 33.345 0.817 39.221451 -89.544038 +62016 3816 1775 343647308 232508 132.683 0.090 39.295025 -90.431767 +62017 1185 588 82081173 2795372 31.692 1.079 39.065099 -89.368619 +62018 3604 1469 8216988 63121 3.173 0.024 38.907779 -90.081320 +62019 490 234 70349778 1470553 27.162 0.568 39.017263 -89.442402 +62021 936 417 51887369 722175 20.034 0.279 38.984867 -89.971728 +62022 1138 453 48579866 30839 18.757 0.012 39.003162 -90.326185 +62023 91 32 805187 72365 0.311 0.028 39.112293 -89.787059 +62024 9775 4581 16159133 2905303 6.239 1.122 38.875659 -90.073363 +62025 33748 13409 282296361 4703682 108.995 1.816 38.831391 -89.932326 +62027 536 272 165397716 5111477 63.860 1.974 39.249602 -90.562735 +62028 1276 499 15284978 2359101 5.902 0.911 38.958230 -90.354956 +62030 114 54 283996 0 0.110 0.000 39.154621 -90.164239 +62031 970 533 148835883 4855247 57.466 1.875 39.111496 -90.536930 +62032 749 351 122770817 0 47.402 0.000 39.115639 -89.288514 +62033 4894 2271 127831982 1573373 49.356 0.607 39.136567 -89.839885 +62034 13819 5867 36212358 462050 13.982 0.178 38.754871 -89.972284 +62035 16494 7036 119583858 8998053 46.172 3.474 38.964906 -90.240063 +62036 704 368 74103891 11401356 28.612 4.402 38.918311 -90.589735 +62037 1993 947 151460880 7985957 58.479 3.083 39.010404 -90.465642 +62040 43735 19464 115254887 20818860 44.500 8.038 38.725838 -90.111791 +62044 2009 901 269806868 531709 104.173 0.205 39.363052 -90.221550 +62045 647 407 98230949 7679583 37.927 2.965 39.264194 -90.690137 +62046 713 294 2055365 13351 0.794 0.005 38.889834 -89.846171 +62047 1555 725 93278388 4849694 36.015 1.872 39.122744 -90.626199 +62048 1459 697 19758062 1355048 7.629 0.523 38.801357 -90.091714 +62049 8470 3035 219839904 3723143 84.881 1.438 39.131717 -89.481382 +62050 473 229 145095189 2124265 56.022 0.820 39.440017 -90.544720 +62051 950 426 98614415 1064026 38.075 0.411 39.201650 -89.403275 +62052 13002 5530 365178872 217690 140.996 0.084 39.110571 -90.321217 +62053 650 436 119042777 2104557 45.963 0.813 39.319254 -90.665420 +62054 872 381 100832295 27595 38.932 0.011 39.204343 -90.339427 +62056 8930 4048 279376291 3757273 107.868 1.451 39.179457 -89.671970 +62058 843 409 3092843 11322 1.194 0.004 38.971118 -89.769571 +62059 746 325 685819 0 0.265 0.000 38.656488 -90.165046 +62060 4847 2418 9138801 1102776 3.529 0.426 38.681906 -90.142429 +62061 1718 715 62654720 504003 24.191 0.195 38.789567 -89.779093 +62062 7658 3216 16630310 234799 6.421 0.091 38.725931 -89.961315 +62063 1214 493 125485546 68520 48.450 0.026 39.198422 -90.149764 +62065 97 89 27990881 3402382 10.807 1.314 39.226090 -90.632707 +62067 2401 1013 47705757 425338 18.419 0.164 38.929602 -89.982053 +62069 3313 1603 82406607 711323 31.817 0.275 39.089106 -89.739298 +62070 37 27 4417107 85575 1.705 0.033 39.296898 -90.732493 +62074 1087 487 107401825 547616 41.468 0.211 38.955000 -89.689742 +62075 3458 1612 286389970 50733 110.576 0.020 39.302262 -89.296245 +62076 135 65 997472 0 0.385 0.000 39.343372 -89.219136 +62077 347 178 1351944 2470 0.522 0.001 39.029185 -89.522448 +62078 119 50 1154544 0 0.446 0.000 39.478630 -90.486079 +62079 256 111 24562624 119937 9.484 0.046 39.110499 -90.143849 +62080 2508 1113 314619963 501678 121.475 0.194 39.137908 -89.104220 +62081 298 146 63223773 45222 24.411 0.017 39.264927 -90.225000 +62082 3109 1410 281457065 232539 108.671 0.090 39.489989 -90.317508 +62083 295 110 50634729 0 19.550 0.000 39.354451 -89.201432 +62084 1606 720 13683798 429481 5.283 0.166 38.838368 -90.063668 +62085 209 94 2057344 32053 0.794 0.012 39.081894 -89.804500 +62086 1437 660 137363035 57674 53.036 0.022 38.980771 -89.579837 +62087 2087 875 7853118 237911 3.032 0.092 38.817014 -90.065488 +62088 6960 3136 112071435 1316619 43.271 0.508 39.012430 -89.799816 +62089 489 231 1973320 86121 0.762 0.033 39.129585 -89.495141 +62090 1189 513 4034907 594 1.558 0.000 38.670356 -90.169630 +62091 337 155 81541680 37130 31.483 0.014 39.056246 -89.610567 +62092 2979 1371 161286260 242535 62.273 0.094 39.418572 -90.431226 +62093 435 194 1648018 66754 0.636 0.026 39.066361 -89.853922 +62094 1152 585 83046249 26763 32.064 0.010 39.245549 -89.349870 +62095 11237 5154 18047959 222940 6.968 0.086 38.861343 -90.069002 +62097 2828 1172 100180905 1395510 38.680 0.539 38.936656 -89.852627 +62098 91 39 8446744 0 3.261 0.000 39.386098 -90.304622 +62201 7547 2890 39068660 3677875 15.084 1.420 38.644405 -90.140016 +62203 8209 3223 17235995 431592 6.655 0.167 38.599955 -90.077337 +62204 7960 3799 14499430 450440 5.598 0.174 38.633745 -90.090166 +62205 9329 4301 13078154 185234 5.050 0.072 38.609757 -90.122803 +62206 16509 6649 36285156 1261445 14.010 0.487 38.572342 -90.166652 +62207 8750 3857 17255095 241247 6.662 0.093 38.582466 -90.123247 +62208 17376 8044 34637989 237632 13.374 0.092 38.595079 -90.005138 +62214 1229 545 165617067 217719 63.945 0.084 38.376408 -89.603629 +62215 1872 661 27704271 352986 10.697 0.136 38.508311 -89.608827 +62216 2526 912 55159103 17408 21.297 0.007 38.618617 -89.601788 +62217 807 391 71332631 6483906 27.542 2.503 38.175668 -89.853507 +62218 1481 570 119770573 575971 46.244 0.222 38.522191 -89.473788 +62219 1009 426 1569625 0 0.606 0.000 38.605786 -89.431899 +62220 20504 9341 75802394 1125293 29.267 0.434 38.478277 -89.998032 +62221 27858 12063 88878409 764087 34.316 0.295 38.512111 -89.905289 +62223 17560 8075 65634450 442756 25.342 0.171 38.535957 -90.059457 +62225 5381 1654 18336732 79704 7.080 0.031 38.542964 -89.852114 +62226 29744 13722 36022066 739270 13.908 0.285 38.535124 -89.999588 +62230 6194 2535 129182493 96441 49.878 0.037 38.635081 -89.531014 +62231 7589 3694 492077674 2352680 189.992 0.908 38.612258 -89.319337 +62232 7260 3025 34133518 304774 13.179 0.118 38.631500 -89.999928 +62233 10037 2832 169006983 777115 65.254 0.300 37.942252 -89.788551 +62234 33430 15004 94881819 2584053 36.634 0.998 38.683215 -89.982058 +62236 12562 5029 141485650 7586698 54.628 2.929 38.436908 -90.216606 +62237 2659 1230 249647767 1328324 96.390 0.513 38.186721 -89.568470 +62238 696 328 110374827 1697462 42.616 0.655 38.038556 -89.532296 +62239 4954 2238 20471529 113219 7.904 0.044 38.535176 -90.161471 +62240 1966 842 41922434 2679943 16.186 1.035 38.501857 -90.176557 +62241 1061 479 94923602 4236743 36.650 1.636 38.011291 -89.893673 +62242 1526 725 142738168 3032253 55.112 1.171 38.098153 -89.946871 +62243 5910 2408 136292414 5183095 52.623 2.001 38.420129 -89.889488 +62244 1156 496 129288100 3038340 49.918 1.173 38.195693 -90.198775 +62245 1794 726 55498415 733186 21.428 0.283 38.545339 -89.562816 +62246 10355 3770 369861147 3361007 142.804 1.298 38.890364 -89.427497 +62248 320 133 453925 0 0.175 0.000 38.303038 -89.996400 +62249 15971 6511 220685777 4377064 85.207 1.690 38.754556 -89.667278 +62250 504 204 984987 0 0.380 0.000 38.540795 -89.266110 +62253 696 386 87254220 7310129 33.689 2.822 38.777731 -89.300082 +62254 6089 2527 98068053 1241061 37.864 0.479 38.609042 -89.823248 +62255 1001 437 65442104 1359458 25.267 0.525 38.313204 -89.783121 +62257 3214 1493 190693440 2732230 73.627 1.055 38.284874 -89.728709 +62258 9199 3745 190334213 2331669 73.488 0.900 38.460897 -89.782081 +62260 7290 3037 122949539 3206583 47.471 1.238 38.460653 -90.100700 +62261 152 165 74558180 7599822 28.787 2.934 37.997579 -90.000394 +62262 1810 853 174221696 65876 67.267 0.025 38.940678 -89.282715 +62263 5387 2354 377242014 2052510 145.654 0.792 38.326439 -89.410588 +62264 3338 1417 169604635 10529924 65.485 4.066 38.318803 -89.903533 +62265 4353 1736 100465105 457182 38.790 0.177 38.499764 -89.673407 +62266 254 94 2937472 0 1.134 0.000 38.486685 -89.677069 +62268 738 320 135202914 26519 52.202 0.010 38.275671 -89.530213 +62269 31348 12753 69991816 760748 27.024 0.294 38.600069 -89.915479 +62271 2077 954 150167958 420945 57.980 0.163 38.450127 -89.519128 +62272 1674 779 98191669 1507637 37.912 0.582 37.986664 -89.597916 +62273 426 178 3481904 0 1.344 0.000 38.786795 -89.583856 +62274 8410 2894 361517079 3643098 139.583 1.407 38.100030 -89.413973 +62275 3621 1484 263578338 474264 101.768 0.183 38.809868 -89.551148 +62277 1314 599 165431554 6443198 63.873 2.488 38.097110 -90.112311 +62278 6690 2891 265162042 3353962 102.380 1.295 38.207527 -89.992598 +62279 69 33 344845 3499 0.133 0.001 38.150859 -90.135778 +62280 444 200 136455327 3017802 52.686 1.165 37.846636 -89.647988 +62281 2155 844 87241880 949897 33.684 0.367 38.706901 -89.779338 +62282 471 208 2644262 544 1.021 0.000 38.363067 -89.718104 +62284 636 273 72385432 203854 27.948 0.079 38.881265 -89.313988 +62285 4484 1722 42378844 1082553 16.363 0.418 38.389752 -90.010301 +62286 6008 2819 280289125 4505045 108.220 1.739 38.118590 -89.715824 +62288 2918 1349 98316923 148461 37.960 0.057 37.988592 -89.687262 +62289 350 151 535336 0 0.207 0.000 38.596911 -89.751472 +62292 947 436 3789966 30512 1.463 0.012 38.211313 -89.676629 +62293 4748 2019 154016770 359585 59.466 0.139 38.619267 -89.697198 +62294 14367 5548 79652166 1437968 30.754 0.555 38.702392 -89.868492 +62295 1599 677 176157155 17076483 68.015 6.593 38.283878 -90.323662 +62297 452 212 61825490 561174 23.871 0.217 38.052121 -89.806332 +62298 16609 6735 373427051 3770864 144.181 1.456 38.311831 -90.149848 +62301 33758 15576 29259045 1398004 11.297 0.540 39.931138 -91.385695 +62305 18052 7668 358291765 20994415 138.337 8.106 39.928206 -91.343825 +62311 860 417 132148691 163845 51.023 0.063 40.209847 -90.930892 +62312 2162 1023 238419841 152277 92.054 0.059 39.707353 -91.024237 +62313 389 183 109584209 179359 42.311 0.069 40.317726 -91.228289 +62314 611 325 180960627 50183 69.869 0.019 39.767988 -90.891698 +62316 660 283 106624094 36116 41.168 0.014 40.235474 -91.053025 +62319 264 141 105079879 0 40.572 0.000 40.152482 -90.731284 +62320 2185 949 225488250 378997 87.062 0.146 40.030377 -91.082819 +62321 4091 1997 433902056 538216 167.531 0.208 40.411428 -91.105551 +62323 290 138 107863325 1397601 41.646 0.540 39.797568 -90.687395 +62324 1361 617 228873260 668299 88.368 0.258 39.998277 -90.966328 +62325 403 176 40714337 82935 15.720 0.032 40.045624 -91.162046 +62326 2478 1179 196757468 462749 75.968 0.179 40.416736 -90.809095 +62330 1769 924 209372966 6006392 80.839 2.319 40.571437 -91.125784 +62334 172 81 5796727 4523 2.238 0.002 40.388846 -91.233644 +62336 47 26 153002 0 0.059 0.000 40.468065 -91.171385 +62338 1473 600 94959896 205594 36.664 0.079 39.987974 -91.238047 +62339 874 383 84591479 33647 32.661 0.013 40.128568 -91.038183 +62340 1715 810 235935326 2300976 91.095 0.888 39.734770 -90.728245 +62341 3610 1587 120321019 8765691 46.456 3.384 40.426611 -91.295738 +62343 712 377 196463842 13046125 75.855 5.037 39.697869 -91.245869 +62344 138 77 92668768 0 35.780 0.000 40.168894 -90.831101 +62345 357 193 56029383 14318 21.633 0.006 39.704319 -91.127325 +62346 178 106 87714993 58397 33.867 0.023 40.150624 -90.951257 +62347 2282 983 310937009 265932 120.053 0.103 39.870093 -91.088955 +62348 170 70 4667990 0 1.802 0.000 40.187557 -91.367322 +62349 636 296 114840001 463033 44.340 0.179 40.170391 -91.190106 +62351 1856 763 192016779 731329 74.138 0.282 40.113608 -91.268867 +62352 271 118 978774 0 0.378 0.000 39.564547 -90.650116 +62353 5637 1772 484991183 426662 187.256 0.165 39.967744 -90.756355 +62354 1684 973 95028359 20489240 36.691 7.911 40.526340 -91.337591 +62355 820 432 211682298 8528718 81.731 3.293 39.412245 -90.778624 +62356 571 318 150794516 4688786 58.222 1.810 39.589680 -91.076672 +62357 245 107 51914447 26388 20.044 0.010 39.688071 -90.867226 +62358 752 350 111647005 2905758 43.107 1.122 40.587585 -91.253470 +62359 166 68 10360074 7921 4.000 0.003 40.033880 -91.201455 +62360 1656 685 92627315 0 35.764 0.000 39.816263 -91.263432 +62361 539 322 155866887 1682364 60.181 0.650 39.480283 -90.645467 +62362 399 211 982408 0 0.379 0.000 39.782328 -90.747127 +62363 6353 2842 409308639 4744829 158.035 1.832 39.590496 -90.769665 +62365 647 262 72664377 50492 28.056 0.019 39.796403 -91.165124 +62366 1408 716 184499459 12503897 71.236 4.828 39.472086 -90.901821 +62367 1345 623 295810327 20505 114.213 0.008 40.299312 -90.874264 +62370 520 301 163119087 8908254 62.981 3.439 39.517293 -91.007228 +62373 300 132 93073756 363322 35.936 0.140 40.241879 -91.339323 +62374 298 159 59541814 0 22.989 0.000 40.408924 -90.912064 +62375 369 194 116151309 45384 44.846 0.018 40.006342 -90.868520 +62376 1198 552 195448214 10146176 75.463 3.917 40.120548 -91.434891 +62378 896 473 173703096 3667262 67.067 1.416 39.905859 -90.634784 +62379 2049 1005 247286006 21851688 95.478 8.437 40.283497 -91.403355 +62380 401 181 109905689 385264 42.435 0.149 40.238230 -91.190901 +62401 19096 8564 269775416 2394112 104.161 0.924 39.118722 -88.562385 +62410 985 426 97208089 1963823 37.532 0.758 38.538800 -87.733213 +62411 4430 1832 222923786 370331 86.071 0.143 39.071264 -88.733649 +62413 421 168 81323649 87880 31.399 0.034 39.138799 -87.837748 +62414 1886 833 191322518 102244 73.870 0.039 39.174413 -88.826356 +62417 3064 1340 93659814 65854 36.162 0.025 38.707439 -87.766379 +62418 2133 972 238915998 282306 92.246 0.109 39.022253 -88.973917 +62419 410 186 59823386 20591 23.098 0.008 38.610736 -87.989672 +62420 4759 2219 318695616 483902 123.049 0.187 39.287033 -87.998545 +62421 778 329 137178261 0 52.965 0.000 38.753530 -87.943530 +62422 1156 515 103416593 0 39.929 0.000 39.238796 -88.883247 +62423 724 324 60006845 42605 23.169 0.016 39.462687 -87.579890 +62424 2092 768 223420841 93524 86.263 0.036 38.991159 -88.420192 +62425 649 275 108295456 148474 41.813 0.057 38.830094 -88.092198 +62426 1085 512 122687704 285053 47.370 0.110 38.892302 -88.664028 +62427 1702 771 229992062 983384 88.800 0.380 38.873127 -87.649864 +62428 3104 1467 248608135 300804 95.988 0.116 39.262654 -88.136713 +62431 1232 549 142505646 35462 55.022 0.014 39.228170 -88.988744 +62432 571 264 103053524 0 39.789 0.000 39.135473 -88.139823 +62433 998 470 83327219 978085 32.173 0.378 39.106742 -87.715756 +62434 330 160 69003184 111294 26.642 0.043 38.842186 -88.321609 +62436 562 249 57828067 0 22.328 0.000 39.179864 -88.252556 +62438 433 180 68505579 0 26.450 0.000 39.321114 -88.869227 +62439 7536 3814 365041518 3578266 140.943 1.382 38.744062 -87.639699 +62440 1316 573 99999598 0 38.610 0.000 39.395491 -88.267884 +62441 7395 3493 448794256 5083529 173.280 1.963 39.397619 -87.697612 +62442 2421 1210 365080732 1223359 140.958 0.472 39.311623 -87.858380 +62443 1623 642 190205988 160820 73.439 0.062 38.954328 -88.627068 +62444 387 174 75304417 0 29.075 0.000 39.276544 -88.739300 +62445 907 383 121860119 23784 47.050 0.009 39.169156 -88.321348 +62446 414 196 155207498 271176 59.926 0.105 38.502952 -88.213291 +62447 3404 1579 154874910 3720209 59.798 1.436 39.314746 -88.448275 +62448 5834 2648 528357652 8854042 204.000 3.419 38.968356 -88.179181 +62449 3175 1388 316719181 44061 122.286 0.017 39.006223 -87.914352 +62450 12218 5747 394225659 4588402 152.211 1.772 38.713182 -88.089183 +62451 2156 1027 161484978 2574679 62.350 0.994 38.971177 -87.611121 +62452 400 183 52219397 55955 20.162 0.022 38.589885 -88.015156 +62454 11467 4905 318655627 947416 123.034 0.366 38.999665 -87.755852 +62458 2228 956 147706702 392349 57.030 0.151 39.024780 -88.851563 +62459 243 123 2827359 0 1.092 0.000 38.930022 -88.027785 +62460 1231 564 119692997 1222676 46.214 0.472 38.601727 -87.717505 +62461 854 359 103654026 95648 40.021 0.037 39.196877 -88.683234 +62462 1149 408 104285321 19679 40.265 0.008 39.236991 -88.460632 +62463 1294 555 120637036 0 46.578 0.000 39.276648 -88.605375 +62465 858 377 96122400 0 37.113 0.000 39.349390 -88.640463 +62466 4848 1130 367913868 210982 142.052 0.081 38.728411 -87.852631 +62467 3741 1335 152594169 0 58.917 0.000 39.131186 -88.435002 +62468 2564 1132 183364704 6702 70.798 0.003 39.276946 -88.270309 +62469 419 171 60512536 58677 23.364 0.023 39.351236 -88.333828 +62471 10233 4027 354575608 3901501 136.902 1.506 38.946168 -89.130130 +62473 1422 533 57242549 20094 22.101 0.008 39.021570 -88.567790 +62474 848 391 93891687 34377 36.252 0.013 39.423611 -88.000675 +62475 387 160 78326059 146529 30.242 0.057 38.889901 -88.046920 +62476 1734 853 194787598 228271 75.208 0.088 38.535112 -88.006982 +62477 946 460 163860360 2001006 63.267 0.773 39.233553 -87.643438 +62478 398 190 76434985 124367 29.512 0.048 39.179972 -87.743616 +62479 820 342 136911583 43817 52.862 0.017 39.037041 -88.306897 +62480 787 341 147383279 239421 56.905 0.092 38.997392 -87.999575 +62481 386 178 93300874 0 36.024 0.000 39.127228 -88.022012 +62501 2661 1119 205344934 658419 79.284 0.254 39.941961 -88.805357 +62510 1669 803 198323710 26118 76.573 0.010 39.530665 -89.028916 +62512 500 210 120520203 11015 46.533 0.004 40.147136 -89.209159 +62513 1766 741 180252008 0 69.596 0.000 39.721984 -89.150811 +62514 252 113 2889730 0 1.116 0.000 39.762441 -89.050691 +62515 961 412 164494789 18269 63.512 0.007 39.860416 -89.378281 +62517 226 101 319625 31153 0.123 0.012 39.591653 -89.425262 +62518 457 203 65982023 0 25.476 0.000 40.054193 -89.191409 +62519 94 44 3896441 0 1.504 0.000 39.928796 -89.395320 +62520 1529 640 56622374 0 21.862 0.000 39.818055 -89.455965 +62521 35851 16791 173319594 10259096 66.919 3.961 39.817070 -88.926317 +62522 16630 7395 65714810 651000 25.373 0.251 39.827583 -89.047800 +62523 1237 404 1241689 0 0.479 0.000 39.844096 -88.952216 +62526 34075 16415 159627935 665085 61.633 0.257 39.901937 -88.989475 +62530 1532 685 73275327 88961 28.292 0.034 39.560286 -89.675123 +62531 1792 821 156330123 573024 60.359 0.221 39.674378 -89.377560 +62532 105 45 5382547 0 2.078 0.000 39.763355 -88.989322 +62533 973 460 125412710 158546 48.422 0.061 39.446936 -89.615992 +62534 1130 571 153290568 5564297 59.186 2.148 39.529684 -88.800594 +62535 3534 1370 9600818 0 3.707 0.000 39.924757 -88.969078 +62536 912 338 17900735 161667 6.912 0.062 39.629076 -89.652328 +62537 92 37 2350330 0 0.907 0.000 39.853267 -89.094760 +62538 378 186 87995962 0 33.975 0.000 39.356412 -89.519915 +62539 1358 574 120566449 0 46.551 0.000 39.866030 -89.251291 +62540 1492 686 5292372 545141 2.043 0.210 39.583957 -89.417493 +62541 57 29 1063302 0 0.411 0.000 39.965366 -89.355146 +62543 540 243 53695109 0 20.732 0.000 39.971422 -89.152233 +62544 1776 768 177029131 0 68.351 0.000 39.706412 -88.967840 +62545 1246 509 71869783 558864 27.749 0.216 39.756717 -89.388304 +62546 1630 712 296502716 39876 114.480 0.015 39.431455 -89.445923 +62547 804 354 108460238 9017 41.877 0.003 39.770482 -89.242253 +62548 2258 1035 229866137 65286 88.752 0.025 39.981254 -89.283539 +62549 6269 2503 20522229 31636 7.924 0.012 39.771029 -88.867155 +62550 2869 1238 229679958 51728 88.680 0.020 39.617876 -88.989628 +62551 837 366 69542898 150800 26.851 0.058 39.855374 -89.158927 +62553 437 191 92589272 0 35.749 0.000 39.266267 -89.107186 +62554 1563 651 47739348 958204 18.432 0.370 39.944478 -88.882262 +62555 540 226 91879097 885885 35.475 0.342 39.462980 -89.210466 +62556 422 186 55577407 19975 21.459 0.008 39.474974 -89.375213 +62557 7607 3878 322751411 1301847 124.615 0.503 39.396869 -89.104534 +62558 3590 1504 239226530 8353897 92.366 3.225 39.586712 -89.549853 +62560 1508 666 164689659 235954 63.587 0.091 39.298630 -89.602818 +62561 5315 2145 68811611 778702 26.568 0.301 39.863895 -89.501913 +62563 5686 2210 149143546 1252087 57.585 0.483 39.719264 -89.496253 +62565 7538 3578 315180748 9002877 121.692 3.476 39.411777 -88.804095 +62567 1154 495 99847287 0 38.551 0.000 39.645213 -89.189850 +62568 16355 7113 326083921 5108177 125.902 1.972 39.561004 -89.289158 +62570 512 229 679264 52853 0.262 0.020 39.588581 -89.448004 +62571 1532 627 176974967 12853 68.330 0.005 39.381008 -88.960225 +62572 666 309 107886367 0 41.655 0.000 39.360937 -89.701524 +62573 1513 647 114735293 0 44.300 0.000 39.945409 -89.074133 +62601 434 206 116026425 2192 44.798 0.001 39.749094 -90.039255 +62610 199 93 881097 0 0.340 0.000 39.558844 -90.434858 +62611 1067 469 191267437 3861350 73.849 1.491 39.884116 -90.398177 +62612 1915 865 233048522 36723 89.981 0.014 39.896048 -90.063158 +62613 3872 1609 169335530 307181 65.381 0.119 39.997432 -89.665941 +62615 5748 2262 131639437 0 50.826 0.000 39.585061 -89.757381 +62617 762 472 149584324 27333180 57.755 10.553 40.156822 -90.169890 +62618 7955 3166 222138323 5027936 85.768 1.941 39.982598 -90.402049 +62621 1171 532 135739395 365513 52.409 0.141 39.726720 -90.520580 +62622 49 21 4855207 0 1.875 0.000 39.978177 -90.353449 +62624 546 300 91127516 1083456 35.185 0.418 40.156569 -90.363732 +62625 855 349 58513289 401160 22.592 0.155 39.910073 -89.687708 +62626 8354 3716 444472934 1523985 171.612 0.588 39.282802 -89.883939 +62627 992 523 231524499 5636133 89.392 2.176 40.059128 -90.111077 +62628 896 390 97570906 0 37.672 0.000 39.779463 -90.403198 +62629 12949 5062 98373829 3636426 37.982 1.404 39.679778 -89.711833 +62630 532 251 105475194 269026 40.724 0.104 39.255117 -90.091111 +62631 262 118 35978865 84535 13.892 0.033 39.827417 -90.354199 +62633 647 317 178458628 288548 68.903 0.111 40.224979 -89.866296 +62634 821 390 145521350 59322 56.186 0.023 40.011799 -89.454534 +62635 738 331 101445939 0 39.168 0.000 40.296711 -89.471453 +62638 1337 611 175083552 436821 67.600 0.169 39.609301 -90.081236 +62639 316 146 88085814 2698210 34.010 1.042 40.037670 -90.486012 +62640 3756 1786 197681190 2440844 76.325 0.942 39.428260 -89.804994 +62642 1440 696 193369150 686210 74.660 0.265 40.092750 -89.724017 +62643 526 234 88457598 0 34.154 0.000 40.242994 -89.451703 +62644 5385 2679 267283836 20621988 103.199 7.962 40.287943 -90.054538 +62649 488 237 97639349 425058 37.699 0.164 39.357528 -90.070237 +62650 26992 11648 528042590 2994292 203.878 1.156 39.734542 -90.223047 +62655 568 275 146493027 878892 56.561 0.339 40.169931 -89.986537 +62656 20405 7638 373608646 1885210 144.251 0.728 40.139942 -89.371647 +62661 1213 512 105512490 226425 40.739 0.087 39.668014 -89.826988 +62663 292 138 2574513 0 0.994 0.000 39.540551 -90.328759 +62664 3042 1409 282469469 708769 109.062 0.274 40.212562 -89.724144 +62665 1629 788 112464967 7645968 43.423 2.952 39.816949 -90.529555 +62666 616 295 78077585 128866 30.146 0.050 40.086111 -89.543875 +62667 464 218 95660089 56087 36.935 0.022 39.487765 -89.992297 +62668 1512 675 166620773 181236 64.333 0.070 39.572356 -90.234163 +62670 2997 1234 218035568 1807 84.184 0.001 39.742911 -89.891720 +62671 572 247 124967322 0 48.250 0.000 40.172880 -89.558457 +62672 244 105 1898766 0 0.733 0.000 39.398009 -89.804455 +62673 530 235 81443978 924411 31.446 0.357 40.085541 -89.978692 +62674 1454 689 193079438 1313595 74.548 0.507 39.441651 -90.028506 +62675 6154 2785 282900038 1105240 109.228 0.427 40.036029 -89.847921 +62677 2562 1062 238252996 132844 91.990 0.051 39.850588 -89.883032 +62681 5602 2458 448477045 1741246 173.158 0.672 40.135355 -90.550562 +62682 907 374 107795271 107381 41.620 0.041 40.298725 -89.630971 +62684 5111 1904 65066083 323814 25.122 0.125 39.909423 -89.587161 +62685 2097 965 218460894 1030992 84.348 0.398 39.139883 -90.002766 +62688 761 355 121581511 0 46.943 0.000 39.945973 -89.923096 +62689 518 236 1592603 0 0.615 0.000 39.533671 -89.761852 +62690 4120 1885 130951451 114567 50.561 0.044 39.505912 -89.762809 +62691 2426 1155 279840100 235285 108.047 0.091 39.958257 -90.210428 +62692 2093 963 227063724 91493 87.670 0.035 39.583520 -89.939137 +62693 1638 652 102126991 85645 39.431 0.033 39.958048 -89.516172 +62694 3192 1433 403462059 1995331 155.778 0.770 39.622780 -90.477118 +62695 296 130 385211 0 0.149 0.000 39.627088 -90.223650 +62701 1152 758 988330 0 0.382 0.000 39.800697 -89.648801 +62702 37281 18081 39974311 103076 15.434 0.040 39.824137 -89.641927 +62703 30333 13925 39872849 100744 15.395 0.039 39.762449 -89.629884 +62704 39831 20721 31305616 37539 12.087 0.014 39.773498 -89.683840 +62707 7648 3261 111141570 1590917 42.912 0.614 39.854932 -89.650389 +62711 15347 6582 79346300 403700 30.636 0.156 39.765466 -89.729326 +62712 10302 4357 55034043 12678004 21.249 4.895 39.753814 -89.579701 +62801 22415 9942 353589717 4342073 136.522 1.676 38.512863 -89.141837 +62803 1014 409 149680291 12450 57.792 0.005 38.453336 -89.295029 +62806 3412 1583 264995612 464973 102.315 0.180 38.382053 -88.077254 +62807 961 475 114053744 197586 44.036 0.076 38.744774 -88.940675 +62808 1457 666 197408987 78492 76.220 0.030 38.306180 -89.188699 +62809 142 68 30395325 81046 11.736 0.031 38.270745 -88.294663 +62810 1089 424 158562327 1100435 61.221 0.425 38.201276 -88.752318 +62811 310 148 1558844 0 0.602 0.000 38.382970 -87.905586 +62812 11265 5341 247391047 3929419 95.518 1.517 37.997340 -88.916035 +62814 2124 875 183414365 666686 70.817 0.257 38.378397 -88.731915 +62815 416 171 54162917 10719 20.912 0.004 38.458352 -87.966440 +62816 1306 617 89527642 17305564 34.567 6.682 38.189765 -88.922922 +62817 557 290 180413739 442017 69.658 0.171 37.954474 -88.476107 +62818 330 154 67322510 0 25.993 0.000 38.383278 -87.965346 +62819 448 217 2897017 82648 1.119 0.032 37.977311 -89.016586 +62820 162 102 55012747 81957 21.241 0.032 38.242402 -88.237445 +62821 7657 3701 455435276 7769700 175.845 3.000 38.071022 -88.129673 +62822 2574 1274 6929457 45170 2.675 0.017 37.977539 -89.056451 +62823 1691 802 209611258 230909 80.931 0.089 38.530774 -88.442514 +62824 1761 878 274520887 1448586 105.993 0.559 38.669452 -88.341669 +62825 203 92 812955 2538 0.314 0.001 37.998887 -89.068659 +62827 1245 608 167677547 3667853 64.741 1.416 38.172790 -88.047900 +62828 1426 621 211659808 283623 81.722 0.110 38.194537 -88.601621 +62829 72 35 4431527 2021 1.711 0.001 37.973558 -88.489540 +62830 1392 653 73570581 85181 28.406 0.033 38.443409 -88.967632 +62831 573 286 104053695 125502 40.175 0.048 38.234969 -89.222732 +62832 9208 4342 250743185 6900219 96.812 2.664 38.011822 -89.248910 +62833 383 177 119704170 477089 46.218 0.184 38.361723 -88.164177 +62835 1152 547 188909999 132316 72.939 0.051 38.106048 -88.321638 +62836 801 325 98487927 334274 38.026 0.129 38.094569 -88.805455 +62837 8867 4356 422334393 1068202 163.064 0.412 38.360406 -88.352856 +62838 1497 685 221517867 163036 85.529 0.063 38.873738 -88.751389 +62839 6718 3086 190012004 420346 73.364 0.162 38.665804 -88.500905 +62841 98 45 254182 0 0.098 0.000 37.859261 -89.000174 +62842 835 385 113956773 24942 43.999 0.010 38.467672 -88.371044 +62843 100 58 15555324 80454 6.006 0.031 38.382210 -88.199061 +62844 2083 1026 114655361 965285 44.269 0.373 38.262729 -88.043467 +62846 2631 349 55072770 5561071 21.264 2.147 38.145206 -88.866853 +62848 636 297 8479297 15823 3.274 0.006 38.435397 -89.166528 +62849 2205 971 292093001 441619 112.778 0.171 38.584940 -88.773698 +62850 381 142 73418948 1050145 28.347 0.405 38.494727 -88.594820 +62851 329 160 72415501 88449 27.960 0.034 38.427596 -88.659979 +62852 160 80 254367 0 0.098 0.000 38.350223 -87.866785 +62853 1034 426 69576485 94273 26.864 0.036 38.516107 -88.912193 +62854 1776 791 235258615 3262577 90.834 1.260 38.769938 -88.801043 +62856 324 153 2408256 17261 0.930 0.007 37.956409 -88.838457 +62858 2981 1353 399146457 794691 154.111 0.307 38.811813 -88.492950 +62859 5748 2823 539202163 2211977 208.187 0.854 38.081344 -88.532699 +62860 524 247 85814215 250977 33.133 0.097 38.041367 -88.731934 +62861 128 75 1407530 542868 0.543 0.210 38.029945 -88.013891 +62862 364 193 69595336 76990 26.871 0.030 38.219101 -88.299332 +62863 10183 4795 387353599 9053791 149.558 3.496 38.415834 -87.859872 +62864 24108 11420 375957141 1661518 145.158 0.642 38.330493 -88.902519 +62865 2018 919 141164541 2686627 54.504 1.037 37.972104 -89.080092 +62867 521 306 86833021 3955278 33.526 1.527 37.912266 -88.098946 +62868 1872 836 261007739 326281 100.776 0.126 38.677710 -88.228125 +62869 2682 1303 232657340 1698824 89.830 0.656 37.962444 -88.280867 +62870 2080 894 101172275 55907 39.063 0.022 38.635153 -89.053057 +62871 686 320 132259217 286046 51.066 0.110 37.875359 -88.272861 +62872 1178 462 61138765 38257 23.606 0.015 38.268058 -88.809436 +62874 372 177 3669090 79546 1.417 0.031 37.918705 -88.976028 +62875 1167 529 175493468 12642999 67.758 4.881 38.755452 -89.121198 +62876 247 112 7944997 0 3.068 0.000 38.276413 -89.195732 +62877 514 243 84822399 197264 32.750 0.076 38.392808 -89.211193 +62878 410 191 91313837 28318 35.256 0.011 38.574513 -88.507898 +62879 85 49 508346 0 0.196 0.000 38.764906 -88.360495 +62880 717 304 107617393 0 41.551 0.000 38.866987 -88.884389 +62881 11385 5083 260038127 1274966 100.401 0.492 38.635332 -88.927356 +62882 2331 1017 81750659 98880 31.564 0.038 38.636254 -89.118646 +62883 591 271 104621639 222419 40.395 0.086 38.168415 -89.120371 +62884 2940 1372 81093923 2135280 31.311 0.824 38.083366 -89.056171 +62885 839 356 126214759 111492 48.732 0.043 38.859059 -89.054212 +62886 440 199 76848852 37655 29.672 0.015 38.380898 -88.539227 +62887 295 148 58559611 18477 22.610 0.007 38.184525 -88.361960 +62888 2135 975 200328299 144170 77.347 0.056 38.130976 -89.234469 +62889 851 367 78485632 118151 30.303 0.046 38.456539 -88.823598 +62890 2882 1307 272238644 1641819 105.112 0.634 37.906205 -88.737966 +62891 652 292 1952938 5444 0.754 0.002 38.015023 -89.042451 +62892 317 188 57976412 106530 22.385 0.041 38.808355 -89.075972 +62893 977 422 48131382 266550 18.584 0.103 38.465810 -89.030168 +62894 1006 426 116436590 5610352 44.956 2.166 38.208520 -89.036709 +62895 2022 937 265033366 170285 102.330 0.066 38.305545 -88.555138 +62896 12626 5902 166798967 3515658 64.401 1.357 37.890492 -88.915973 +62897 398 213 32285490 2996960 12.465 1.157 38.094608 -88.898862 +62898 2097 856 139776535 123232 53.968 0.048 38.350379 -89.060166 +62899 1612 739 265900629 356845 102.665 0.138 38.618890 -88.642463 +62901 27182 12916 77545948 2373771 29.941 0.917 37.739004 -89.209109 +62902 4531 2240 159204711 4470945 61.469 1.726 37.662587 -89.117546 +62903 2962 1506 51339715 3943116 19.822 1.522 37.674118 -89.276234 +62905 677 304 89376856 818351 34.509 0.316 37.557561 -89.367195 +62906 7276 3267 158106058 1527288 61.045 0.590 37.462109 -89.172530 +62907 2164 944 238813760 7038835 92.207 2.718 37.872468 -89.497450 +62908 467 228 131456451 2325951 50.756 0.898 37.310226 -88.864901 +62910 2865 1315 268614559 6945598 103.713 2.682 37.153109 -88.534459 +62912 1179 548 138696123 1125803 53.551 0.435 37.476199 -89.032407 +62914 3147 1782 50837105 1038694 19.628 0.401 37.061169 -89.218249 +62915 321 149 313171 0 0.121 0.000 37.783608 -89.119606 +62916 995 406 87866955 59814 33.926 0.023 37.930677 -89.568714 +62917 2305 1145 83051297 3280699 32.066 1.267 37.693416 -88.651628 +62918 9793 4403 93303989 3809746 36.025 1.471 37.789529 -89.088131 +62919 1003 640 126501717 6618341 48.843 2.555 37.524023 -88.138368 +62920 3265 1425 169656281 1209934 65.505 0.467 37.550074 -89.237778 +62921 375 204 1971949 26511 0.761 0.010 37.801912 -89.084262 +62922 3119 1723 167740879 4904967 64.765 1.894 37.620754 -88.814807 +62923 518 255 78086810 641825 30.149 0.248 37.346432 -89.016004 +62924 2809 1260 109884801 3325668 42.427 1.284 37.823000 -89.198023 +62926 2263 990 207818282 1676562 80.239 0.647 37.366678 -89.131409 +62927 367 179 1134755 8440 0.438 0.003 37.934662 -89.242307 +62928 293 182 43954467 118262 16.971 0.046 37.482396 -88.575321 +62930 6263 3031 183537479 1297174 70.864 0.501 37.837779 -88.441065 +62931 1571 933 266918552 2461263 103.058 0.950 37.521430 -88.292023 +62932 1592 711 99687684 4371214 38.490 1.688 37.902218 -89.218748 +62933 1230 578 3722083 149857 1.437 0.058 37.772371 -89.025656 +62934 927 460 198985474 2660741 76.829 1.027 37.707239 -88.358633 +62935 1943 978 144355726 1876601 55.736 0.725 37.839547 -88.634847 +62938 3033 1606 435664707 9006602 168.211 3.477 37.381459 -88.539420 +62939 3119 1610 113689635 2103808 43.896 0.812 37.551161 -88.981647 +62940 445 202 66915868 1852308 25.836 0.715 37.738486 -89.471814 +62941 808 391 87890170 4829581 33.935 1.865 37.239258 -88.986107 +62942 707 336 84043437 4393092 32.449 1.696 37.649362 -89.472870 +62943 715 327 98823817 919968 38.156 0.355 37.357564 -88.750384 +62946 12930 5880 360057998 6557724 139.019 2.532 37.709862 -88.538845 +62947 539 308 177079054 413528 68.371 0.160 37.528409 -88.454428 +62948 12865 5893 48619075 1054532 18.772 0.407 37.817138 -89.030678 +62949 810 400 4001695 68811 1.545 0.027 37.827923 -89.144607 +62950 193 97 77920973 2761964 30.085 1.066 37.746447 -89.560711 +62951 5352 2459 63956813 1497346 24.694 0.578 37.823971 -88.929329 +62952 3372 1487 253513024 6852798 97.882 2.646 37.409570 -89.341001 +62953 360 168 2237076 324281 0.864 0.125 37.209471 -88.849519 +62954 515 247 126634253 1128335 48.894 0.436 37.692088 -88.279548 +62956 869 433 67185400 594549 25.940 0.230 37.279795 -88.938359 +62957 996 453 110312684 5461746 42.592 2.109 37.312496 -89.426131 +62958 2262 1093 118651437 6194801 45.812 2.392 37.630995 -89.230987 +62959 26948 12202 350234121 11155021 135.226 4.307 37.716831 -88.910350 +62960 11603 5384 301250793 5064732 116.314 1.956 37.225299 -88.709403 +62961 65 23 580949 15407 0.224 0.006 37.338248 -89.255225 +62962 82 46 101668180 20928492 39.254 8.081 37.075360 -89.335889 +62963 611 284 11912566 1257719 4.599 0.486 37.096507 -89.164912 +62964 1456 744 68099604 1176753 26.293 0.454 37.127788 -89.217003 +62965 125 59 1654544 101007 0.639 0.039 37.767319 -88.520616 +62966 15607 7512 293174741 7985394 113.195 3.083 37.775136 -89.350979 +62967 326 163 16821827 53072 6.495 0.020 37.583822 -88.745771 +62969 731 400 51329077 4631402 19.818 1.788 37.154393 -89.342299 +62970 639 329 71718978 799406 27.691 0.309 37.224577 -89.091093 +62972 1205 682 172645170 3357055 66.659 1.296 37.542288 -88.791037 +62974 1401 618 69217505 952538 26.725 0.368 37.781202 -88.782992 +62975 279 135 59997379 914172 23.165 0.353 37.633773 -89.387589 +62976 469 264 68179509 348633 26.324 0.135 37.221663 -89.204377 +62977 700 314 51044170 245698 19.708 0.095 37.851778 -88.545923 +62979 1230 619 197745381 3543654 76.350 1.368 37.822108 -88.191116 +62982 1328 673 20174298 1554451 7.789 0.600 37.424775 -88.365380 +62983 1504 688 52297326 644111 20.192 0.249 37.902971 -89.121219 +62984 1841 900 205166535 6588506 79.215 2.544 37.712002 -88.154928 +62985 845 468 173874772 1415143 67.133 0.546 37.458595 -88.685445 +62987 1174 557 212152917 4562815 81.913 1.762 37.618469 -88.651906 +62988 2110 789 161222167 15623 62.248 0.006 37.251285 -89.294678 +62990 1109 510 111088308 4186509 42.891 1.616 37.228582 -89.398842 +62992 1032 525 90036361 666897 34.763 0.257 37.280117 -89.165805 +62994 755 308 96702498 1379562 37.337 0.533 37.906728 -89.342358 +62995 5284 1774 281336137 3284251 108.624 1.268 37.437644 -88.869433 +62996 535 283 65670550 1535665 25.356 0.593 37.157531 -89.151028 +62997 599 267 895943 0 0.346 0.000 37.982278 -89.590443 +62998 419 202 120094837 10238758 46.369 3.953 37.512070 -89.458153 +62999 1829 813 5554641 143124 2.145 0.055 37.889816 -89.047542 +63005 17753 6384 89940830 4835317 34.726 1.867 38.644214 -90.651407 +63010 35439 14159 56342909 1394082 21.754 0.538 38.430371 -90.392100 +63011 36347 14828 37358218 0 14.424 0.000 38.603679 -90.559271 +63012 9973 3659 73902237 1375959 28.534 0.531 38.331675 -90.453851 +63013 1589 669 97010631 63939 37.456 0.025 38.415083 -91.161511 +63014 779 375 100237814 5036469 38.702 1.945 38.651805 -91.313445 +63015 2076 842 43509691 522636 16.799 0.202 38.405785 -90.759427 +63016 7582 3017 59097794 396603 22.818 0.153 38.352457 -90.634964 +63017 41470 17735 50722249 691627 19.584 0.267 38.651309 -90.531216 +63019 4449 1937 8492363 1112996 3.279 0.430 38.226362 -90.376992 +63020 20714 8643 366609360 1635243 141.549 0.631 38.100971 -90.565549 +63021 56261 22553 56473197 1034831 21.804 0.400 38.569840 -90.545689 +63023 5831 2506 181933033 381206 70.245 0.147 38.270192 -90.698745 +63025 13854 5218 103577510 2992475 39.992 1.155 38.487575 -90.620136 +63026 44124 17360 65526686 1809275 25.300 0.699 38.503348 -90.460968 +63028 26413 10756 316705389 3312537 122.281 1.279 38.137919 -90.392182 +63030 407 172 50647548 325284 19.555 0.126 38.124692 -90.746292 +63031 48212 20039 38008005 2907546 14.675 1.123 38.813468 -90.353928 +63033 43000 18401 32008713 55816 12.359 0.022 38.799723 -90.274680 +63034 17761 6865 48504472 6006847 18.728 2.319 38.848304 -90.288423 +63036 1064 1783 69655369 1173143 26.894 0.453 37.976428 -90.371764 +63037 3241 1542 212485506 411939 82.041 0.159 38.431389 -91.301865 +63038 6914 2532 54205565 159594 20.929 0.062 38.577047 -90.667758 +63039 726 329 9914172 22379 3.828 0.009 38.494496 -90.839295 +63040 8512 3100 11744869 0 4.535 0.000 38.572950 -90.635031 +63041 534 229 35740653 109671 13.800 0.042 38.260132 -90.787529 +63042 19602 9347 31552710 170774 12.183 0.066 38.784130 -90.383731 +63043 22367 10030 36542078 877959 14.109 0.339 38.729739 -90.461383 +63044 10568 4626 39188163 1856803 15.131 0.717 38.772791 -90.430046 +63045 3 3 4644832 425357 1.793 0.164 38.769205 -90.463466 +63047 31 13 567836 0 0.219 0.000 38.195501 -90.487417 +63048 3357 1404 8816595 745234 3.404 0.288 38.257558 -90.393130 +63049 15896 6429 65399124 11311 25.251 0.004 38.481277 -90.530835 +63050 15716 6211 233298200 1569619 90.077 0.606 38.254768 -90.577992 +63051 14495 5656 119979659 670597 46.324 0.259 38.377768 -90.576636 +63052 26431 9727 84331739 1850599 32.561 0.715 38.388903 -90.436886 +63053 62 29 65553 0 0.025 0.000 38.366588 -90.363927 +63055 2449 1000 71201891 2167250 27.491 0.837 38.527091 -90.824413 +63056 2002 933 151466619 413081 58.482 0.159 38.400027 -91.214849 +63057 56 0 130940 0 0.051 0.000 38.343300 -90.405572 +63060 2461 1056 123499505 182629 47.683 0.071 38.257794 -90.874969 +63061 95 44 5402804 55963 2.086 0.022 38.272892 -90.812221 +63068 4909 2160 233851502 2110065 90.291 0.815 38.565884 -91.244062 +63069 15647 6145 179158493 2241689 69.173 0.866 38.490835 -90.732019 +63070 7438 3119 35195913 796519 13.589 0.308 38.288429 -90.429113 +63071 1103 491 102959516 563071 39.753 0.217 38.147628 -90.831807 +63072 3194 1313 106958057 500839 41.297 0.193 38.369270 -90.812533 +63073 301 119 17766962 1755951 6.860 0.678 38.589752 -90.779293 +63074 15164 7542 9951665 0 3.842 0.000 38.726499 -90.388703 +63077 11798 5213 224777781 646127 86.787 0.249 38.329075 -90.984475 +63079 58 25 2209361 0 0.853 0.000 38.260582 -91.099799 +63080 13987 6427 675093150 930221 260.655 0.359 38.194674 -91.077001 +63084 17414 7047 194507515 173941 75.100 0.067 38.421900 -91.019289 +63087 769 345 34256787 106323 13.227 0.041 38.013279 -90.451539 +63088 8269 4018 15460796 780885 5.969 0.302 38.549620 -90.499888 +63089 5965 2367 93934749 413312 36.268 0.160 38.458271 -90.889554 +63090 21524 9232 211572923 5154030 81.689 1.990 38.535239 -91.048840 +63091 1264 579 125230295 797166 48.352 0.308 38.371663 -91.393223 +63101 2620 2085 976846 0 0.377 0.000 38.631558 -90.192610 +63102 2316 1351 3864674 1261237 1.492 0.487 38.635181 -90.187001 +63103 6900 5625 5592208 0 2.159 0.000 38.629712 -90.216863 +63104 18656 10840 8950000 897412 3.456 0.346 38.611126 -90.214086 +63105 17667 7399 6883619 0 2.658 0.000 38.644308 -90.328202 +63106 11883 5865 5843886 0 2.256 0.000 38.644397 -90.208316 +63107 11912 7090 6218033 0 2.401 0.000 38.663921 -90.212106 +63108 21568 13197 5802373 0 2.240 0.000 38.644803 -90.253417 +63109 26946 14884 9248824 176916 3.571 0.068 38.584601 -90.294432 +63110 17107 9404 16220321 0 6.263 0.000 38.625794 -90.266998 +63111 20313 10670 8383840 1936755 3.237 0.748 38.558084 -90.250008 +63112 20368 11931 8567955 0 3.308 0.000 38.658933 -90.282670 +63113 13167 7160 6574088 0 2.538 0.000 38.658004 -90.247592 +63114 36201 16568 22838169 44971 8.818 0.017 38.702256 -90.363674 +63115 20775 11417 11057944 0 4.269 0.000 38.682188 -90.239975 +63116 43540 21983 14257521 60076 5.505 0.023 38.580814 -90.264108 +63117 9163 5060 6101992 0 2.356 0.000 38.630765 -90.330852 +63118 26704 14594 8687833 674835 3.354 0.261 38.592440 -90.226241 +63119 33969 15446 21732317 0 8.391 0.000 38.588450 -90.351341 +63120 10296 4976 6259219 0 2.417 0.000 38.690576 -90.262089 +63121 26602 12491 18594104 0 7.179 0.000 38.707193 -90.301334 +63122 38495 17320 36671420 177470 14.159 0.069 38.581190 -90.417981 +63123 49308 23271 32521712 45049 12.557 0.017 38.547432 -90.328109 +63124 10417 4935 22670949 0 8.753 0.000 38.638103 -90.380268 +63125 32201 14961 25727230 2037173 9.933 0.787 38.518452 -90.293514 +63126 15112 6811 12031136 0 4.645 0.000 38.549656 -90.378592 +63127 4939 2216 16301015 233937 6.294 0.090 38.533282 -90.416839 +63128 29356 13134 38882716 750512 15.013 0.290 38.492427 -90.386513 +63129 52718 22125 54122271 5071380 20.897 1.958 38.458622 -90.316502 +63130 30084 14020 13044463 0 5.036 0.000 38.665066 -90.325307 +63131 16769 6416 36040575 0 13.915 0.000 38.617395 -90.444190 +63132 13988 6538 13628266 0 5.262 0.000 38.676026 -90.377994 +63133 8161 3660 7734843 0 2.986 0.000 38.680914 -90.305992 +63134 13638 5731 21283008 9653 8.217 0.004 38.740708 -90.346991 +63135 21334 9104 16248529 20503 6.274 0.008 38.749681 -90.298718 +63136 48560 21585 27405368 0 10.581 0.000 38.743306 -90.259779 +63137 20654 8771 19278628 3318600 7.444 1.281 38.750472 -90.211685 +63138 20175 9083 47511686 4958862 18.344 1.915 38.801051 -90.192397 +63139 22789 12843 10078120 0 3.891 0.000 38.610412 -90.291723 +63140 294 173 1303667 0 0.503 0.000 38.738381 -90.323063 +63141 20593 9040 36603879 0 14.133 0.000 38.658277 -90.458203 +63143 9678 5708 5104698 1466 1.971 0.001 38.611729 -90.321432 +63144 8825 4775 6088574 0 2.351 0.000 38.619024 -90.347719 +63146 29262 15142 36259825 3013312 14.000 1.163 38.697686 -90.474667 +63147 11373 4745 15205092 2295197 5.871 0.886 38.694017 -90.216219 +63155 0 0 57711 0 0.022 0.000 38.627871 -90.205457 +63301 48514 20603 228905760 25944139 88.381 10.017 38.858035 -90.463316 +63303 45834 19851 51405804 3987400 19.848 1.540 38.739882 -90.543744 +63304 40336 14765 108146922 8239749 41.756 3.181 38.703508 -90.667522 +63330 125 190 79129889 7548765 30.552 2.915 39.271336 -90.804270 +63332 1292 575 139276532 5034887 53.775 1.944 38.596917 -90.893983 +63333 783 392 113468053 583116 43.810 0.225 39.033743 -91.309018 +63334 8569 2831 451815710 2145416 174.447 0.828 39.297583 -91.188309 +63336 1146 663 186976244 8311663 72.192 3.209 39.332791 -90.933413 +63339 1145 476 219001557 1324681 84.557 0.511 39.344378 -91.371349 +63341 3530 1403 141822357 3532482 54.758 1.364 38.670825 -90.815888 +63343 4546 2118 286520523 10268509 110.626 3.965 39.154813 -90.828184 +63344 1663 707 203377108 650255 78.524 0.251 39.236864 -91.003976 +63345 393 200 53231414 354583 20.553 0.137 39.277056 -91.569141 +63347 3078 1273 97699918 10381857 37.722 4.008 39.069871 -90.766733 +63348 6059 2365 138581072 1139494 53.506 0.440 38.785461 -90.945226 +63349 1934 798 93391391 952664 36.059 0.368 38.974386 -91.150965 +63350 562 299 62384493 1364941 24.087 0.527 38.901096 -91.361708 +63351 1768 796 143267492 484613 55.316 0.187 38.862373 -91.312739 +63352 1078 523 273739929 1257199 105.692 0.485 39.247787 -91.658947 +63353 4593 2344 218269978 5673891 84.275 2.191 39.454496 -91.113225 +63357 5534 2378 328525156 11202226 126.844 4.325 38.661018 -91.086905 +63359 1296 675 368430767 2255829 142.252 0.871 39.151211 -91.356191 +63361 4525 2203 411587737 2943336 158.915 1.136 38.965146 -91.552972 +63362 6350 2394 95377694 1268877 36.826 0.490 38.922800 -90.869845 +63363 1719 955 225496063 1481709 87.065 0.572 38.883906 -91.454906 +63366 46175 17758 178063818 3442079 68.751 1.329 38.857443 -90.725492 +63367 19433 7958 34642454 2105249 13.376 0.813 38.774327 -90.795044 +63368 43360 15431 42698642 0 16.486 0.000 38.751290 -90.729626 +63369 2258 886 83857627 3360248 32.378 1.297 38.935145 -90.763296 +63370 33 17 620954 2792 0.240 0.001 39.091510 -91.240463 +63373 603 309 42986852 7927507 16.597 3.061 38.929574 -90.385407 +63376 70828 27628 107584057 42355 41.538 0.016 38.798905 -90.607540 +63377 2462 1049 341927099 3095831 132.019 1.195 39.110313 -91.103390 +63379 23348 9034 350952331 3775882 135.503 1.458 39.000905 -90.995709 +63381 532 244 69944152 396974 27.006 0.153 38.986402 -91.253305 +63382 4897 1709 298493560 1534651 115.249 0.593 39.305387 -91.495927 +63383 15770 6547 410849910 3581914 158.630 1.383 38.804365 -91.193705 +63384 1955 922 217544579 2051888 83.994 0.792 39.092528 -91.553592 +63385 35750 12777 173598873 313260 67.027 0.121 38.796993 -90.857261 +63386 538 276 80525234 22512886 31.091 8.692 38.870227 -90.219634 +63387 73 31 241598 3640 0.093 0.001 39.183555 -91.016734 +63388 710 466 158779912 1975990 61.305 0.763 38.875111 -91.757122 +63389 6336 2520 105129167 1909293 40.591 0.737 39.010559 -90.774110 +63390 9760 5113 199470126 5338190 77.016 2.061 38.803397 -91.040068 +63401 22067 9750 270291422 6166501 104.360 2.381 39.690673 -91.456616 +63430 639 281 135776964 7782098 52.424 3.005 40.390626 -91.542638 +63431 334 167 120849441 285938 46.660 0.110 39.740221 -92.313960 +63432 513 282 229861066 1048839 88.750 0.405 40.497239 -91.993928 +63433 68 40 32405844 8593943 12.512 3.318 39.534181 -91.131243 +63434 687 317 166195843 213450 64.169 0.082 39.906730 -91.947197 +63435 4219 1743 364920296 8431676 140.897 3.255 40.199137 -91.583680 +63436 1155 658 218520805 3584839 84.371 1.384 39.505732 -91.552510 +63437 1503 762 320529067 1559628 123.757 0.602 39.728217 -92.220654 +63438 466 206 35755949 404050 13.805 0.156 39.968514 -91.687967 +63439 127 78 52247025 0 20.173 0.000 39.801934 -91.860563 +63440 1407 642 232219153 466385 89.660 0.180 39.987475 -91.758834 +63441 1121 565 232916387 1925328 89.930 0.743 39.480325 -91.312032 +63443 440 259 125585164 1675750 48.489 0.647 39.668520 -91.882487 +63445 3911 1820 429920103 3764600 165.993 1.454 40.395662 -91.732212 +63446 691 363 282272321 1244943 108.986 0.481 40.130413 -91.987206 +63447 1133 548 220510091 570845 85.139 0.220 40.097022 -91.903400 +63448 1520 733 127749144 3217501 49.324 1.242 40.024661 -91.557038 +63450 132 69 65771617 30473 25.395 0.012 39.668909 -92.150260 +63451 244 137 149362011 248041 57.669 0.096 39.903783 -92.205892 +63452 1167 570 248666667 353178 96.011 0.136 40.093130 -91.790052 +63453 519 219 157008883 899574 60.621 0.347 40.510756 -91.867256 +63454 946 424 98226450 291754 37.925 0.113 39.922981 -91.650377 +63456 4271 2290 477700710 11641999 184.441 4.495 39.656470 -91.728331 +63457 337 141 89243103 123057 34.457 0.048 40.165850 -91.711889 +63458 197 124 78009622 724858 30.120 0.280 39.992451 -92.019907 +63459 4153 1824 359117760 7039785 138.656 2.718 39.579374 -91.369252 +63460 328 200 221400321 662544 85.483 0.256 39.999269 -92.207897 +63461 5876 2597 410159865 7732492 158.364 2.986 39.790542 -91.568927 +63462 1458 1056 316340828 20113327 122.140 7.766 39.419207 -91.701130 +63463 652 292 122052080 446251 47.125 0.172 39.851438 -91.780965 +63464 21 24 3316530 6312 1.281 0.002 39.980885 -92.083595 +63465 407 207 115478854 2034186 44.587 0.785 40.527638 -91.679549 +63467 75 32 547673 0 0.211 0.000 39.648597 -91.270667 +63468 2644 1319 363922531 847387 140.511 0.327 39.684064 -92.014629 +63469 1194 609 345433072 449284 133.372 0.173 39.825851 -92.041218 +63471 639 283 126240460 10426839 48.742 4.026 39.907238 -91.487808 +63472 587 275 5987619 57768 2.312 0.022 40.404428 -91.585849 +63473 262 178 177256078 739890 68.439 0.286 40.246853 -91.783858 +63474 479 282 173363387 757610 66.936 0.293 40.349765 -91.893573 +63501 21532 9321 532136550 3219144 205.459 1.243 40.166289 -92.591210 +63530 868 435 258105935 1850604 99.655 0.715 39.907620 -92.455054 +63531 532 334 215194459 1243691 83.087 0.480 40.300263 -92.241036 +63532 1322 656 132516869 1964385 51.165 0.758 39.760888 -92.572883 +63533 805 382 171145258 86489 66.080 0.033 40.199773 -92.392226 +63534 804 428 191426629 5579106 73.910 2.154 39.737309 -92.648407 +63535 114 64 67872014 140589 26.206 0.054 40.559957 -92.664954 +63536 851 407 196230371 496660 75.765 0.192 40.485291 -92.355927 +63537 1916 1002 338088778 1956918 130.537 0.756 40.149926 -92.153575 +63538 283 165 147715552 2183915 57.033 0.843 39.953937 -92.679871 +63539 206 145 111538737 351527 43.065 0.136 39.926222 -92.751210 +63540 150 61 22529122 1596 8.699 0.001 40.105389 -92.406887 +63541 409 210 99264442 136781 38.326 0.053 40.504170 -92.627042 +63543 352 185 100432814 577029 38.777 0.223 40.352420 -92.014125 +63544 818 460 316955638 503155 122.377 0.194 40.245752 -92.840197 +63545 1111 597 296462311 1091251 114.465 0.421 40.272236 -92.964521 +63546 1715 741 295008157 2191767 113.903 0.846 40.337736 -92.510989 +63547 459 255 176001745 1139574 67.955 0.440 40.135832 -92.297714 +63548 1287 606 198474697 787340 76.632 0.304 40.536366 -92.489160 +63549 2742 1197 374324656 804315 144.528 0.311 40.018755 -92.486226 +63551 338 200 89293358 0 34.476 0.000 40.500565 -92.735589 +63552 7926 3820 334442074 11594380 129.129 4.477 39.763163 -92.436530 +63555 3201 1553 513690147 4185320 198.337 1.616 40.486404 -92.193179 +63556 3779 1749 625567005 4398580 241.533 1.698 40.182985 -93.127290 +63557 291 204 269300600 843102 103.978 0.326 39.970985 -92.878772 +63558 742 412 292449373 2117254 112.915 0.817 39.749446 -92.751105 +63559 1420 748 286164337 270138 110.489 0.104 40.219823 -92.751687 +63560 239 136 110052412 245314 42.491 0.095 40.359626 -93.120409 +63561 1206 584 221530301 437499 85.533 0.169 40.419561 -92.540863 +63563 575 266 192409981 1181824 74.290 0.456 40.304552 -92.065941 +63565 3805 2280 707702329 4792441 273.245 1.850 40.480620 -92.947276 +63566 125 86 77881554 326834 30.070 0.126 40.043275 -92.925622 +63567 192 117 28707572 0 11.084 0.000 40.418795 -92.719744 +63601 16656 7416 146464394 409090 56.550 0.158 37.824454 -90.546492 +63620 1619 997 506935176 2557326 195.729 0.987 37.381731 -90.651946 +63621 1228 634 169954404 1108182 65.620 0.428 37.478367 -90.610240 +63622 1011 461 116033057 534914 44.801 0.207 37.791016 -90.907454 +63623 882 389 260887264 74723 100.729 0.029 37.685055 -90.882590 +63624 3757 1826 160253148 1894529 61.874 0.731 37.755509 -90.634040 +63625 457 284 208155279 575134 80.369 0.222 37.554897 -90.971768 +63626 1037 412 40893429 302747 15.789 0.117 38.069983 -90.686530 +63627 2937 1289 188426207 8711452 72.752 3.364 38.049222 -90.259610 +63628 16014 6551 302306702 2324128 116.721 0.897 37.945701 -90.524737 +63629 1314 640 670443619 2211630 258.860 0.854 37.408644 -91.236844 +63630 4062 1657 172607409 729158 66.644 0.282 38.029601 -90.717491 +63631 849 421 107612529 72226 41.549 0.028 37.754571 -90.788037 +63633 645 369 253491008 593496 97.873 0.229 37.443467 -91.020460 +63636 608 316 96693882 971978 37.334 0.375 37.293641 -90.575534 +63637 1329 585 43149255 57026 16.660 0.022 37.712286 -90.518346 +63638 2920 1639 859689155 1393796 331.928 0.538 37.215017 -91.018862 +63640 26335 10474 539523848 2032569 208.311 0.785 37.754674 -90.380562 +63645 11420 5486 986177722 6208124 380.765 2.397 37.538676 -90.341803 +63648 1628 664 76297839 40693 29.459 0.016 37.825109 -90.695642 +63650 4401 2115 285794605 1616010 110.346 0.624 37.623377 -90.609439 +63653 1206 493 3743792 0 1.445 0.000 37.860286 -90.591590 +63654 706 423 193674852 2257565 74.778 0.872 37.487529 -90.857827 +63655 1523 786 380293520 1146670 146.832 0.443 37.390559 -90.189106 +63656 531 301 166433541 797460 64.260 0.308 37.593225 -90.797305 +63660 4276 1410 96681132 503761 37.329 0.195 37.909248 -90.688778 +63662 1185 566 169672009 218144 65.511 0.084 37.532424 -90.050025 +63663 723 381 1789179 10524 0.691 0.004 37.626203 -90.647310 +63664 8920 3967 761703436 2560239 294.095 0.989 37.899827 -90.927571 +63665 241 175 179142045 1295452 69.167 0.500 37.292843 -90.843921 +63666 93 37 7361264 3418 2.842 0.001 37.402982 -91.055857 +63670 11295 5342 670470974 10154700 258.870 3.921 37.890180 -90.181170 +63673 2115 1024 283148575 9074483 109.324 3.504 37.841831 -89.991058 +63674 132 57 8758849 38088 3.382 0.015 38.036656 -90.659306 +63675 144 78 33818184 14490 13.057 0.006 37.314478 -90.694829 +63701 36812 15423 334871973 8659051 129.295 3.343 37.335289 -89.574605 +63703 8182 4243 33404030 4441262 12.897 1.715 37.272313 -89.539808 +63730 3430 1583 312031406 2487654 120.476 0.960 37.098288 -89.917161 +63732 834 361 98398093 6498905 37.992 2.509 37.594135 -89.575930 +63735 847 390 156046434 390678 60.250 0.151 36.977711 -89.775684 +63736 3310 1370 174810242 5565371 67.495 2.149 37.093180 -89.510300 +63738 76 42 743236 5189 0.287 0.002 37.089840 -89.957230 +63739 464 247 37314861 89024 14.407 0.034 37.358550 -89.800258 +63740 5339 2359 230948421 1476431 89.170 0.570 37.175369 -89.680721 +63742 64 38 798404 0 0.308 0.000 37.158665 -89.446141 +63743 122 47 16100371 42648 6.216 0.016 37.521279 -89.816136 +63744 111 55 315408 0 0.122 0.000 37.196001 -89.738256 +63745 66 26 13360639 63148 5.159 0.024 37.239802 -89.690157 +63746 65 25 3265025 0 1.261 0.000 37.707841 -89.694828 +63747 469 197 52314004 18273 20.199 0.007 37.556375 -89.799679 +63748 1015 477 189107617 8085989 73.015 3.122 37.668926 -89.626315 +63750 43 29 23279064 130538 8.988 0.050 37.152126 -90.202737 +63751 1249 658 232256125 839772 89.675 0.324 37.275815 -90.128182 +63755 24006 9984 442587054 5229299 170.884 2.019 37.437854 -89.638598 +63758 170 84 1066152 13714 0.412 0.005 37.187019 -89.555945 +63760 614 255 76126493 207909 29.393 0.080 37.242787 -89.898893 +63763 223 112 64913755 26064 25.063 0.010 37.064462 -90.175609 +63764 5984 2742 501107149 776169 193.479 0.300 37.319764 -89.990229 +63766 1288 555 130255396 201843 50.292 0.078 37.430896 -89.836880 +63767 655 302 3454506 0 1.334 0.000 37.046217 -89.611202 +63769 1389 612 135416227 81870 52.284 0.032 37.522403 -89.736581 +63770 192 78 4957498 0 1.914 0.000 37.597515 -89.703017 +63771 2862 1237 254464296 558709 98.249 0.216 37.071612 -89.703733 +63774 76 45 8560099 2191 3.305 0.001 37.089468 -89.764251 +63775 16710 7559 903868944 10527304 348.986 4.065 37.711324 -89.877614 +63780 6740 2867 139720348 4536954 53.946 1.752 37.188716 -89.514476 +63781 1272 552 166297325 312747 64.208 0.121 37.538453 -89.928357 +63782 274 135 39897082 186574 15.404 0.072 37.122136 -90.035305 +63783 132 60 12628280 0 4.876 0.000 37.607268 -89.679848 +63784 279 107 2201297 0 0.850 0.000 36.984534 -89.691550 +63785 1000 454 124621413 623954 48.117 0.241 37.266837 -89.822213 +63787 719 413 146617788 854578 56.609 0.330 37.121087 -90.133126 +63801 23123 10112 543271829 1009578 209.758 0.390 36.904787 -89.617923 +63820 226 104 1248268 0 0.482 0.000 36.824262 -89.325574 +63821 970 444 95647801 424044 36.930 0.164 36.047674 -90.239110 +63822 2867 1329 171246322 560395 66.119 0.216 36.665946 -89.998831 +63823 1247 566 103236118 79990 39.860 0.031 36.895007 -89.460378 +63824 164 69 231877 0 0.090 0.000 37.004918 -89.526686 +63825 4409 1963 254527749 2330389 98.274 0.900 36.931693 -89.945740 +63826 84 43 8076603 11809 3.118 0.005 36.170362 -89.841743 +63827 829 400 229174386 2199199 88.485 0.849 36.256012 -89.887342 +63828 345 123 2537451 0 0.980 0.000 36.750369 -89.691841 +63829 1120 576 61967829 723244 23.926 0.279 36.035510 -90.308867 +63830 7102 3140 177909321 24701108 68.691 9.537 36.132049 -89.689540 +63833 242 110 211840946 461573 81.792 0.178 36.650344 -89.730765 +63834 7135 2431 644672073 30448348 248.909 11.756 36.914293 -89.274233 +63837 1653 742 58747255 26180 22.682 0.010 36.461978 -89.992151 +63839 485 197 4196028 0 1.620 0.000 36.044736 -89.813578 +63841 13123 5977 345352916 1529481 133.342 0.591 36.771316 -89.984451 +63845 5814 2585 528648880 17269672 204.112 6.668 36.712948 -89.324393 +63846 1554 711 284961399 1649685 110.024 0.637 36.826242 -89.799442 +63847 64 34 4651607 0 1.796 0.000 36.439950 -90.038933 +63848 1592 671 188274444 1575383 72.693 0.608 36.444495 -89.906147 +63849 186 80 48202911 258192 18.611 0.100 36.138609 -89.978779 +63851 4225 1920 239922513 16843861 92.635 6.503 36.259153 -89.717229 +63852 1488 655 132075846 684035 50.995 0.264 36.369145 -90.015764 +63853 244 120 4030270 0 1.556 0.000 36.064740 -89.870321 +63855 1117 524 203558485 3714156 78.594 1.434 36.069107 -90.056809 +63857 12956 5698 283509664 6630133 109.464 2.560 36.224266 -90.045760 +63860 131 60 17372209 68035 6.707 0.026 36.652181 -89.594665 +63862 1705 806 152893304 1240489 59.032 0.479 36.614001 -89.641714 +63863 6359 2982 153762891 221955 59.368 0.086 36.564889 -89.976765 +63866 488 244 16514593 53637 6.376 0.021 36.528537 -89.605643 +63867 1019 446 232474515 383790 89.759 0.148 36.732716 -89.551881 +63868 838 434 4115280 0 1.589 0.000 36.849167 -89.693430 +63869 3783 1743 232353678 30504286 89.712 11.778 36.597025 -89.482225 +63870 1097 512 217017402 311648 83.791 0.120 36.621139 -89.857202 +63873 4947 2165 517859856 30416841 199.947 11.744 36.422873 -89.671168 +63874 350 171 2943696 17530 1.137 0.007 36.542998 -89.822657 +63876 2374 1029 150675766 433808 58.176 0.167 36.132276 -90.170310 +63877 3931 1716 357251675 1391514 137.936 0.537 36.075721 -89.858336 +63878 138 67 1388071 0 0.536 0.000 36.503021 -89.822358 +63879 773 366 59424228 234372 22.944 0.090 36.359516 -89.812721 +63880 117 41 406690 2520 0.157 0.001 36.326036 -90.023873 +63882 431 238 1179127 24401 0.455 0.009 36.915279 -89.222715 +63901 34665 15651 811184998 3361529 313.200 1.298 36.760331 -90.460565 +63902 0 0 27936 0 0.011 0.000 36.767620 -90.427107 +63932 1254 587 135411495 447817 52.283 0.173 36.683242 -90.255782 +63933 3719 1667 262547818 2693195 101.370 1.040 36.528179 -90.106956 +63934 201 110 30515117 44997 11.782 0.017 37.198621 -90.368652 +63935 10158 4817 1226981622 5349247 473.740 2.065 36.675361 -90.921484 +63936 754 358 201155801 1915480 77.667 0.740 36.808925 -90.129028 +63937 2922 1335 488050997 1235841 188.438 0.477 36.935121 -90.784031 +63939 1430 613 94826342 49717 36.613 0.019 36.651332 -90.673446 +63940 1393 677 142821685 1106199 55.144 0.427 36.768003 -90.227674 +63941 371 216 390723270 322393 150.859 0.124 36.885592 -91.159046 +63942 652 332 219117870 443895 84.602 0.171 36.554374 -91.074481 +63943 915 433 148141831 417489 57.198 0.161 36.827168 -90.788984 +63944 1844 1189 467423461 8380905 180.473 3.236 37.113156 -90.359498 +63945 1163 546 69769639 320454 26.938 0.124 36.632973 -90.542740 +63951 331 197 68794653 633907 26.562 0.245 37.114876 -90.257876 +63952 408 237 143782588 1268460 55.515 0.490 37.010062 -90.642044 +63953 1635 756 145333335 394991 56.114 0.153 36.587245 -90.637706 +63954 1219 573 261798039 665191 101.081 0.257 36.557494 -90.471256 +63955 288 143 19976736 0 7.713 0.000 36.603559 -90.680881 +63956 1133 573 197157353 2064550 76.123 0.797 37.213951 -90.521728 +63957 5440 3244 496249457 6343688 191.603 2.449 37.122980 -90.648266 +63960 3326 1477 307380883 8454376 118.680 3.264 36.956940 -90.131465 +63961 1610 776 227501168 2564331 87.839 0.990 36.567208 -90.277076 +63962 41 19 46710 0 0.018 0.000 36.844028 -90.281507 +63964 784 502 165719013 492797 63.984 0.190 37.262947 -90.414973 +63965 2697 1572 545829164 2872656 210.746 1.109 36.965170 -91.021293 +63966 2601 1987 170982802 14938665 66.017 5.768 36.979507 -90.264717 +63967 1906 1071 294066372 10726101 113.540 4.141 36.940696 -90.485325 +64001 656 298 102075856 171057 39.412 0.066 39.114216 -93.540908 +64011 3106 1441 81421619 462437 31.437 0.179 38.959756 -94.067926 +64012 27260 11265 123513336 890189 47.689 0.344 38.789354 -94.543625 +64014 24797 9518 31210422 73401 12.050 0.028 39.006760 -94.255136 +64015 31217 12590 59084187 5822285 22.813 2.248 39.015059 -94.312605 +64016 4713 1903 84191974 7094 32.507 0.003 39.119616 -94.215755 +64017 464 205 50065065 1652175 19.330 0.638 39.195620 -94.024205 +64018 890 367 60688427 469610 23.432 0.181 39.454719 -94.721261 +64019 2368 951 218292675 621638 84.283 0.240 38.777542 -93.865281 +64020 3608 1621 276270601 2799362 106.669 1.081 38.967425 -93.599784 +64021 633 297 93615279 150413 36.145 0.058 39.104490 -93.619004 +64022 183 93 26196397 1290186 10.114 0.498 39.194364 -93.671804 +64024 16230 6853 182515180 1335981 70.470 0.516 39.327618 -94.226953 +64029 16574 6276 73661374 41589 28.441 0.016 39.005687 -94.212799 +64030 24422 11052 38117439 143449 14.717 0.055 38.881359 -94.522744 +64034 7612 2799 52357979 1179783 20.216 0.456 38.858551 -94.297554 +64035 971 443 163181294 2123104 63.005 0.820 39.290513 -93.812219 +64036 389 147 48364338 3092976 18.674 1.194 39.193758 -93.936807 +64037 6150 2794 259220334 2763688 100.086 1.067 39.054863 -93.732709 +64040 6574 2838 443881761 2068207 171.384 0.799 38.723760 -93.987660 +64048 4140 1615 121286456 253912 46.829 0.098 39.437763 -94.363579 +64050 22178 10470 34157034 905484 13.188 0.350 39.115913 -94.410525 +64052 20911 10253 16865361 0 6.512 0.000 39.073415 -94.450236 +64053 5319 2710 8215839 208950 3.172 0.081 39.109351 -94.465282 +64054 3731 1892 5220909 85893 2.016 0.033 39.110355 -94.439036 +64055 33858 16057 31683934 71242 12.233 0.028 39.050847 -94.397998 +64056 16576 6411 53920499 580764 20.819 0.224 39.113308 -94.319802 +64057 14141 6296 39251650 161459 15.155 0.062 39.071957 -94.319308 +64058 6659 2454 91262081 5024514 35.236 1.940 39.173856 -94.313560 +64060 13042 4847 147229605 975196 56.846 0.377 39.368913 -94.364835 +64061 3387 1446 167221026 1407608 64.564 0.543 38.783394 -94.084862 +64062 6121 2413 229769750 573328 88.715 0.221 39.455731 -94.163205 +64063 20374 8396 16222907 0 6.264 0.000 38.911994 -94.351673 +64064 16223 6500 45015537 2763183 17.381 1.067 38.974502 -94.345220 +64065 27 10 1856996 20041 0.717 0.008 38.954778 -94.404843 +64066 38 18 4281439 24736 1.653 0.010 39.135995 -94.125836 +64067 5789 2583 189749969 6803293 73.263 2.627 39.154878 -93.830311 +64068 36280 14208 223598466 2164448 86.332 0.836 39.258315 -94.389653 +64070 3309 1316 101957401 366713 39.366 0.142 38.886623 -94.148890 +64071 828 347 94773370 683781 36.592 0.264 39.027828 -93.831717 +64072 239 116 2254084 464224 0.870 0.179 39.242067 -94.293788 +64074 638 273 58037093 1782162 22.408 0.688 39.083651 -94.071296 +64075 11810 4560 131224462 546526 50.666 0.211 38.999815 -94.145243 +64076 9512 3986 313594200 2635670 121.079 1.018 38.983162 -93.948056 +64077 1940 828 184874665 5080119 71.381 1.961 39.224578 -94.139126 +64078 8902 3454 144359272 386831 55.737 0.149 38.702692 -94.458131 +64079 12485 5112 243109984 4270617 93.865 1.649 39.359124 -94.793687 +64080 12866 5027 318687487 4622695 123.046 1.785 38.764209 -94.260410 +64081 23144 9818 36947566 88829 14.266 0.034 38.907046 -94.403932 +64082 14456 5188 49875313 2234031 19.257 0.863 38.862111 -94.408320 +64083 20995 8194 74209976 542913 28.653 0.210 38.797393 -94.445534 +64084 1556 621 127330635 102955 49.163 0.040 39.384345 -94.066883 +64085 8803 4004 438760132 2712050 169.406 1.047 39.334841 -93.945283 +64086 21925 9203 96916305 4094210 37.420 1.581 38.899171 -94.272385 +64088 1378 559 71974582 1548672 27.790 0.598 39.151558 -94.181903 +64089 11470 4442 165629535 16160704 63.950 6.240 39.393806 -94.560817 +64090 116 48 305567 0 0.118 0.000 38.759359 -94.163578 +64092 44 24 15058411 1170265 5.814 0.452 39.217578 -94.811119 +64093 27608 11075 484244765 1762570 186.968 0.681 38.796393 -93.731782 +64096 1171 512 110008479 4842900 42.475 1.870 39.208822 -93.552504 +64097 1410 605 88017461 2244768 33.984 0.867 39.104909 -93.984271 +64098 2892 1312 189864041 1638134 73.307 0.632 39.468076 -94.891475 +64101 339 24 1040002 0 0.402 0.000 39.103463 -94.600614 +64102 0 0 797713 0 0.308 0.000 39.093844 -94.604041 +64105 3505 2904 1949993 220454 0.753 0.085 39.104725 -94.590375 +64106 7701 3669 3988802 159794 1.540 0.062 39.104839 -94.572176 +64108 7584 4484 9405986 4803 3.632 0.002 39.084895 -94.586470 +64109 9931 5994 5365744 4529 2.072 0.002 39.065794 -94.566343 +64110 15318 7985 7852892 0 3.032 0.000 39.034503 -94.572806 +64111 16318 11569 7051152 0 2.722 0.000 39.057580 -94.593879 +64112 8147 5744 3819182 0 1.475 0.000 39.035975 -94.595190 +64113 11328 4863 6460877 0 2.495 0.000 39.014065 -94.595652 +64114 23158 12764 18132052 6836 7.001 0.003 38.957802 -94.598599 +64116 15318 8032 28114888 1926126 10.855 0.744 39.148811 -94.575242 +64117 14017 6360 15588833 614489 6.019 0.237 39.164449 -94.522657 +64118 40191 18746 33180917 40486 12.811 0.016 39.212744 -94.572366 +64119 27341 11880 34764002 157309 13.422 0.061 39.209967 -94.514665 +64120 369 239 21214475 1996306 8.191 0.771 39.135007 -94.514957 +64123 10387 4108 4266260 0 1.647 0.000 39.114346 -94.523234 +64124 12639 5618 4409734 0 1.703 0.000 39.107225 -94.539212 +64125 1953 849 4278780 92464 1.652 0.036 39.106463 -94.494153 +64126 6514 2828 6447492 59356 2.489 0.023 39.091093 -94.495978 +64127 17332 8464 10838126 0 4.185 0.000 39.089138 -94.538537 +64128 11613 6344 7935529 0 3.064 0.000 39.065566 -94.534623 +64129 9486 4467 26999048 30537 10.424 0.012 39.047897 -94.491958 +64130 20492 10854 18639293 0 7.197 0.000 39.033683 -94.540754 +64131 21465 11139 19266884 34078 7.439 0.013 38.936041 -94.585011 +64132 13810 6787 26397243 76789 10.192 0.030 38.988304 -94.542261 +64133 33780 15503 43126499 234135 16.651 0.090 39.013941 -94.455876 +64134 21973 9316 30850741 2250277 11.912 0.869 38.928039 -94.487626 +64136 2153 983 12256241 92418 4.732 0.036 39.012767 -94.405845 +64137 10554 4703 18764232 234277 7.245 0.090 38.935360 -94.542668 +64138 25294 11220 34702536 20488 13.399 0.008 38.967119 -94.467927 +64139 1762 575 10588840 67868 4.088 0.026 38.968342 -94.416366 +64145 5389 2303 17044922 169116 6.581 0.065 38.873529 -94.594020 +64146 1376 732 12466686 62722 4.813 0.024 38.883038 -94.572741 +64147 769 232 8441499 38 3.259 0.000 38.852723 -94.550490 +64149 343 151 22122023 711833 8.541 0.275 38.861907 -94.468876 +64150 3048 1570 14423809 715207 5.569 0.276 39.172196 -94.632534 +64151 24134 11197 34102020 532083 13.167 0.205 39.214394 -94.630168 +64152 26024 10240 76977596 2569684 29.721 0.992 39.219074 -94.724730 +64153 5358 2634 94849737 997787 36.622 0.385 39.274581 -94.726643 +64154 9257 4432 36047302 118042 13.918 0.046 39.280230 -94.637094 +64155 21901 8670 28790814 68275 11.116 0.026 39.272410 -94.580082 +64156 5404 2259 36547157 25526 14.111 0.010 39.273306 -94.519995 +64157 16122 5686 28585683 52191 11.037 0.020 39.279003 -94.483504 +64158 5161 2156 7839103 11730 3.027 0.005 39.234315 -94.485477 +64161 388 174 40904691 2557113 15.793 0.987 39.158486 -94.450780 +64163 689 417 22285114 34527 8.604 0.013 39.344561 -94.688186 +64164 302 128 26653353 16940 10.291 0.007 39.329423 -94.627074 +64165 112 44 10994635 0 4.245 0.000 39.321429 -94.576341 +64166 278 109 12863322 0 4.967 0.000 39.322071 -94.523143 +64167 353 124 3548624 126541 1.370 0.049 39.320589 -94.487141 +64192 15 9 640269 0 0.247 0.000 38.960455 -94.522029 +64401 1417 557 97319984 1282464 37.575 0.495 39.633348 -94.715618 +64402 2388 1198 351472701 209614 135.704 0.081 40.257169 -94.327329 +64420 53 35 1470351 0 0.568 0.000 40.485340 -94.288679 +64421 952 454 71420069 1706654 27.575 0.659 39.912325 -94.935909 +64422 337 151 84362109 500442 32.572 0.193 39.885929 -94.498907 +64423 761 356 193134661 81696 74.570 0.032 40.192871 -94.851656 +64424 4585 2132 457237759 2702223 176.540 1.043 40.261889 -94.036075 +64426 356 193 135009863 222320 52.128 0.086 40.521710 -93.859518 +64427 606 283 158792277 791213 61.310 0.305 40.111362 -94.833155 +64428 898 438 251100241 725989 96.950 0.280 40.436610 -95.093894 +64429 13158 4317 406471882 3071888 156.940 1.186 39.736726 -94.225807 +64430 764 357 106609289 954338 41.162 0.368 39.838990 -94.565539 +64431 382 221 126612340 213031 48.885 0.082 40.528193 -94.996257 +64432 141 30 544513 0 0.210 0.000 40.263494 -94.668692 +64433 210 30 1941542 26931 0.750 0.010 40.238680 -94.678085 +64434 518 218 91014832 0 35.141 0.000 40.261855 -94.733515 +64436 781 315 83041085 1273721 32.062 0.492 39.857727 -94.691859 +64437 792 742 402049444 10527216 155.232 4.065 40.122385 -95.347485 +64438 270 128 120822972 16101 46.650 0.006 40.158583 -94.413766 +64439 1642 745 137937598 704862 53.258 0.272 39.524413 -94.753373 +64440 737 295 97608981 97317 37.687 0.038 39.585134 -94.910338 +64441 178 132 132335075 25918 51.095 0.010 40.392917 -94.271300 +64442 882 366 215633468 1558504 83.257 0.602 40.489895 -94.011464 +64443 1096 487 126040763 1210514 48.665 0.467 39.742886 -94.653163 +64444 1340 566 90600162 230004 34.981 0.089 39.485433 -94.648013 +64445 312 159 109354854 16689 42.222 0.006 40.540243 -95.149108 +64446 1117 594 378345411 2269711 146.080 0.876 40.316786 -95.422168 +64448 1104 467 98674733 323044 38.099 0.125 39.596748 -94.822765 +64449 451 209 102783604 233190 39.685 0.090 40.041200 -94.978475 +64451 446 237 119751619 5422509 46.236 2.094 40.001495 -95.193705 +64453 217 105 97396788 0 37.605 0.000 40.345019 -94.480161 +64454 2667 1073 170384203 551619 65.786 0.213 39.596500 -94.592553 +64455 368 188 135353254 144873 52.260 0.056 40.180566 -95.004990 +64456 1459 844 437050418 305658 168.746 0.118 40.493138 -94.391080 +64457 329 157 103216793 81909 39.852 0.032 40.162713 -94.682355 +64458 145 82 157552646 876496 60.831 0.338 40.514955 -94.145198 +64459 472 232 63877870 578075 24.663 0.223 39.928943 -94.649389 +64461 897 441 199854523 182459 77.164 0.070 40.521587 -94.807190 +64463 1643 767 357134212 2272253 137.890 0.877 40.062598 -94.482585 +64465 4251 1886 247157604 1182783 95.428 0.457 39.549898 -94.287621 +64466 541 266 151127614 441610 58.351 0.171 40.166220 -95.106267 +64467 186 101 114478150 636387 44.200 0.246 40.401658 -94.162947 +64468 16023 6029 374578517 644822 144.626 0.249 40.343552 -94.881028 +64469 2339 1014 315718828 2766739 121.900 1.068 39.918689 -94.365018 +64470 1631 819 196631670 1153736 75.920 0.445 40.160107 -95.229189 +64471 483 263 108378779 594671 41.845 0.230 40.253201 -94.192879 +64473 1457 720 283488203 2282467 109.455 0.881 39.979261 -95.076209 +64474 820 388 154125320 1862515 59.508 0.719 39.755309 -94.379595 +64475 468 258 183239831 48091 70.749 0.019 40.436279 -94.623615 +64476 379 190 77775741 65556 30.029 0.025 40.452969 -94.830590 +64477 3404 1533 233798439 1584920 90.270 0.612 39.575558 -94.452827 +64479 906 400 177199232 1993 68.417 0.001 40.333987 -94.647005 +64480 307 140 73134963 629805 28.238 0.243 40.054115 -94.705477 +64481 1088 586 325956014 2408420 125.852 0.930 40.353947 -93.887733 +64482 2101 1062 318951755 859953 123.148 0.332 40.464970 -95.546378 +64483 709 298 95791779 527954 36.985 0.204 40.038891 -94.839109 +64484 1229 582 187474836 8443243 72.384 3.260 39.561200 -95.017149 +64485 8124 3376 267315965 2168935 103.211 0.837 39.949977 -94.818163 +64486 455 266 151562359 263362 58.519 0.102 40.530389 -94.624411 +64487 757 408 349388854 180197 134.900 0.070 40.300935 -95.095911 +64489 2198 917 324002250 25166 125.098 0.010 40.236887 -94.547271 +64490 2056 891 239555445 1104735 92.493 0.427 39.731215 -94.514713 +64491 1875 1000 292142523 111105 112.797 0.043 40.446045 -95.358054 +64492 1782 733 78351697 10537115 30.252 4.068 39.470667 -94.532644 +64493 460 209 71030956 0 27.425 0.000 39.635053 -94.318186 +64494 1018 459 155608189 1151976 60.081 0.445 39.989408 -94.609608 +64496 154 90 86987383 2475005 33.586 0.956 40.481159 -95.645934 +64497 598 256 107846523 925666 41.640 0.357 39.930459 -94.219852 +64498 375 204 193707080 0 74.791 0.000 40.539605 -95.321933 +64499 119 68 26753176 0 10.329 0.000 40.393864 -94.439790 +64501 12503 5914 9354543 599460 3.612 0.231 39.765442 -94.844432 +64503 12921 5730 39160873 768624 15.120 0.297 39.748884 -94.843728 +64504 10763 4657 119286563 4249383 46.057 1.641 39.691247 -94.905924 +64505 13161 5546 116936145 1368897 45.149 0.529 39.846780 -94.823908 +64506 24030 9627 28489618 153757 11.000 0.059 39.789915 -94.803312 +64507 13738 5993 147066896 2334269 56.783 0.901 39.728509 -94.763541 +64601 12438 5385 621245770 7101701 239.864 2.742 39.805381 -93.579097 +64620 466 288 47324100 925378 18.272 0.357 39.894531 -94.089951 +64622 600 293 170101036 199984 65.676 0.077 39.492550 -93.542717 +64623 609 321 181944044 1109499 70.249 0.428 39.469599 -93.333742 +64624 1662 780 297757389 888343 114.965 0.343 39.562364 -93.784471 +64625 644 348 176678178 1542547 68.216 0.596 39.744043 -93.802883 +64628 6144 3015 394722311 3635779 152.403 1.404 39.796166 -93.041516 +64630 602 331 261145866 1636673 100.829 0.632 40.037692 -93.156662 +64631 902 515 197826528 441163 76.381 0.170 39.824250 -92.866091 +64632 629 388 250251213 534698 96.623 0.206 40.468986 -93.766788 +64633 5216 2556 598320930 9434349 231.013 3.643 39.356863 -93.484492 +64635 515 244 151979462 694102 58.680 0.268 39.952780 -93.433845 +64636 299 146 62307783 262959 24.057 0.102 40.110098 -93.980463 +64637 667 353 213454697 891507 82.415 0.344 39.557997 -93.915091 +64638 521 246 170654483 222474 65.890 0.086 39.617643 -93.620136 +64639 240 123 103928200 4364437 40.127 1.685 39.391732 -93.222763 +64640 3140 1738 363212289 5502812 140.237 2.125 39.895648 -93.935107 +64641 666 339 196200912 1381655 75.754 0.533 40.175889 -93.399564 +64642 855 475 293356444 877254 113.266 0.339 40.170792 -93.836449 +64643 1072 556 283886944 3296928 109.609 1.273 39.613045 -93.369158 +64644 3024 1344 284909254 2645582 110.004 1.021 39.735438 -93.975183 +64645 195 121 114019338 506389 44.023 0.196 40.300070 -93.322320 +64646 297 172 148684504 1058031 57.407 0.409 40.099034 -93.309021 +64647 379 198 131649650 1009572 50.830 0.390 40.031136 -93.984725 +64648 2129 823 302870827 1366623 116.939 0.528 39.989061 -93.802749 +64649 864 360 94950729 884069 36.661 0.341 39.773347 -94.086390 +64650 727 318 105967042 883872 40.914 0.341 39.635657 -94.071505 +64651 570 311 112044122 1353097 43.260 0.522 39.766804 -93.185672 +64652 441 223 117321914 925653 45.298 0.357 40.021508 -93.418192 +64653 687 344 239196630 2212373 92.354 0.854 39.897256 -93.212092 +64654 52 28 7193077 159661 2.777 0.062 39.840341 -93.773159 +64655 264 153 186071519 531161 71.843 0.205 40.446530 -93.257493 +64656 240 158 52261916 760 20.178 0.000 39.676910 -93.692789 +64657 323 204 168739321 300019 65.151 0.116 40.129094 -94.223765 +64658 3277 1627 244986080 2146884 94.590 0.829 39.662965 -92.917299 +64659 964 425 191198233 3532975 73.822 1.364 39.784623 -93.298635 +64660 513 272 206183484 7065598 79.608 2.728 39.564517 -93.098666 +64661 916 657 267249318 1445455 103.186 0.558 40.536314 -93.517049 +64664 350 171 131792762 1240874 50.885 0.479 39.749706 -93.651288 +64667 395 195 231175280 741613 89.257 0.286 40.385743 -93.331269 +64668 1416 714 396527601 1794964 153.100 0.693 39.355068 -93.704415 +64670 1090 509 329751215 3370800 127.318 1.301 40.047765 -94.141692 +64671 2062 1237 220387786 871833 85.092 0.337 39.531881 -94.050775 +64672 251 137 181024654 451135 69.894 0.174 40.544835 -93.255082 +64673 2492 1258 619800414 1497789 239.306 0.578 40.374309 -93.586901 +64674 428 241 152258066 944099 58.787 0.365 39.962633 -93.137733 +64676 215 110 72921148 305387 28.155 0.118 39.638456 -93.058469 +64679 805 358 226284345 322399 87.369 0.124 40.237511 -93.580329 +64681 192 170 113529914 8572206 43.834 3.310 39.645516 -93.230453 +64682 378 176 91540145 69658 35.344 0.027 39.550123 -93.490551 +64683 8144 4048 592301650 4677067 228.689 1.806 40.078396 -93.601040 +64686 271 122 4199550 114232 1.621 0.044 39.748959 -93.624336 +64688 548 240 154446855 4119587 59.632 1.591 39.817132 -93.375060 +64689 683 304 89205138 822382 34.442 0.318 39.872556 -94.150128 +64701 14385 5845 303869346 2143646 117.325 0.828 38.624513 -94.329255 +64720 3843 1676 338980051 1821517 130.881 0.703 38.404674 -94.343478 +64722 525 239 98934974 1185713 38.199 0.458 38.278074 -94.542511 +64723 665 308 116917298 974182 45.142 0.376 38.361639 -94.559592 +64724 1859 959 317863533 3292311 122.728 1.271 38.153210 -94.006638 +64725 2271 917 152776376 1639519 58.987 0.633 38.490658 -94.372655 +64726 467 236 114689296 1124682 44.282 0.434 38.527153 -93.921941 +64728 594 271 198229552 1632551 76.537 0.630 37.703047 -94.523816 +64730 7109 3354 737683017 5639371 284.821 2.177 38.259262 -94.300276 +64733 1159 529 189334550 448254 73.102 0.173 38.584819 -93.827198 +64734 2004 788 110898691 593777 42.818 0.229 38.654734 -94.559334 +64735 13258 6509 681759339 49882985 263.229 19.260 38.367806 -93.743646 +64738 1149 609 208016002 1611453 80.315 0.622 37.901664 -93.651689 +64739 997 434 132548803 137290 51.177 0.053 38.511280 -94.096624 +64740 1884 1130 249095676 28670402 96.176 11.070 38.226188 -93.703771 +64741 351 157 84713394 774983 32.708 0.299 37.818234 -94.562345 +64742 2193 958 196170496 1115882 75.742 0.431 38.508095 -94.541195 +64743 292 111 770145 0 0.297 0.000 38.668454 -94.232284 +64744 7836 3867 647123049 11957197 249.856 4.617 37.848197 -93.978926 +64745 117 63 8133946 318032 3.141 0.123 38.171889 -94.497226 +64746 1428 630 80296353 790305 31.003 0.305 38.602100 -94.496698 +64747 3910 1637 311108178 2091393 120.120 0.807 38.578826 -94.182182 +64748 1493 733 276445209 1264193 106.736 0.488 37.359673 -94.090739 +64750 423 194 80847114 775106 31.215 0.299 37.940899 -94.101696 +64752 735 341 174124712 3526319 67.230 1.362 38.065018 -94.563468 +64755 2596 1147 390946237 2191616 150.945 0.846 37.337416 -94.308691 +64756 742 401 162641052 409183 62.796 0.158 37.619045 -94.015490 +64759 8244 3662 683069144 5562101 263.734 2.148 37.521220 -94.257040 +64761 1493 658 185790763 464184 71.734 0.179 38.601551 -93.683114 +64762 1604 744 340688629 2113941 131.541 0.816 37.546659 -94.501483 +64763 1568 1007 208869634 15498163 80.645 5.984 38.143551 -93.701939 +64765 44 28 249598 1636 0.096 0.001 37.995885 -94.443796 +64767 821 358 147529746 836227 56.962 0.323 37.737357 -94.201452 +64769 611 272 101686758 1868550 39.261 0.721 37.480688 -94.568309 +64770 1056 552 298362402 9834819 115.198 3.797 38.281457 -93.989537 +64771 610 281 105575550 450789 40.763 0.174 37.750223 -94.470296 +64772 13596 6138 358744142 3044641 138.512 1.176 37.832567 -94.334697 +64776 3942 2307 621438621 45570728 239.939 17.595 38.048385 -93.663470 +64778 702 281 302521618 4323861 116.804 1.669 37.919357 -94.479382 +64779 2693 1236 494717691 17278457 191.012 6.671 38.092018 -94.396212 +64780 639 377 252875442 13092886 97.636 5.055 38.059202 -94.046961 +64781 106 69 2700032 406369 1.042 0.157 37.981517 -93.812591 +64783 775 396 162016031 11472146 62.555 4.429 38.005239 -94.109400 +64784 1500 664 286653337 1183188 110.677 0.457 37.664651 -94.234169 +64788 1415 685 271966598 3487504 105.007 1.347 38.423906 -94.019548 +64790 861 373 206215532 2667643 79.620 1.030 37.927026 -94.220647 +64801 34753 16039 152073809 70799 58.716 0.027 37.109783 -94.496221 +64804 37521 16825 236144379 1540312 91.176 0.595 37.022425 -94.509420 +64830 639 281 3683381 0 1.422 0.000 37.231391 -94.410370 +64831 5879 2527 304714638 37079 117.651 0.014 36.656869 -94.455992 +64832 731 347 183622203 2560552 70.897 0.989 37.340209 -94.573598 +64833 125 54 506308 0 0.195 0.000 37.193810 -94.129842 +64834 9556 3580 82017761 411882 31.667 0.159 37.187875 -94.573612 +64835 1899 804 6222247 0 2.402 0.000 37.148444 -94.437484 +64836 23940 9671 471665086 1908813 182.111 0.737 37.189255 -94.279255 +64840 2813 1140 131824521 269172 50.898 0.104 37.016570 -94.336063 +64841 384 173 1001009 0 0.386 0.000 37.078348 -94.416752 +64842 829 349 57787591 27863 22.312 0.011 36.789007 -94.105994 +64843 3259 1375 147618235 0 56.996 0.000 36.733895 -94.443926 +64844 4680 1941 168949249 491503 65.232 0.190 36.916226 -94.238563 +64847 437 220 10182371 0 3.931 0.000 36.593982 -94.440999 +64848 744 290 117622014 803502 45.414 0.310 37.171779 -93.989626 +64849 186 81 1016654 0 0.393 0.000 37.254904 -94.444881 +64850 24063 9940 530470600 1074132 204.816 0.415 36.860531 -94.401672 +64854 4170 1779 174804369 264987 67.492 0.102 36.545988 -94.455884 +64855 2795 1078 112214544 522378 43.326 0.202 37.295478 -94.485320 +64856 4251 1857 260898852 40970 100.734 0.016 36.565948 -94.269907 +64857 424 174 1559406 0 0.602 0.000 37.245854 -94.438585 +64858 166 73 1047179 52476 0.404 0.020 36.901178 -94.530495 +64859 1358 547 133692130 110283 51.619 0.043 37.162761 -94.137989 +64861 1179 515 147244892 48889 56.852 0.019 36.695352 -94.154072 +64862 3337 1453 216861353 1590804 83.731 0.614 37.100665 -94.119523 +64863 1828 749 80358029 60666 31.026 0.023 36.559367 -94.583340 +64865 5997 2399 201157513 124370 77.667 0.048 36.842677 -94.581306 +64866 1484 610 146107223 530425 56.412 0.205 36.869577 -94.156423 +64867 1440 654 149167850 204626 57.594 0.079 36.728044 -94.235106 +64870 14325 5829 88082755 145626 34.009 0.056 37.182917 -94.477775 +64873 1072 430 111205875 249732 42.937 0.096 37.013395 -94.045714 +64874 760 360 5344594 2577 2.064 0.001 36.758474 -94.054314 +65001 414 189 48132604 150474 18.584 0.058 38.290230 -92.010272 +65010 5704 2350 157410047 459129 60.776 0.177 38.793269 -92.237172 +65011 2374 1374 207281062 4476194 80.032 1.728 38.389067 -92.713345 +65013 3515 1782 318633233 1720214 123.025 0.664 38.284774 -91.762257 +65014 2252 1257 339003010 1493718 130.890 0.577 38.316176 -91.631137 +65016 1376 605 130177414 2696167 50.262 1.041 38.560079 -91.933877 +65017 1549 710 150972090 1670858 58.291 0.645 38.092307 -92.494503 +65018 7714 3300 423154283 2593853 163.381 1.001 38.620197 -92.563615 +65020 14286 9927 323175217 26542154 124.779 10.248 38.006239 -92.780644 +65023 1730 793 139327539 2225661 53.795 0.859 38.653901 -92.396296 +65024 1086 611 259797727 5765470 100.308 2.226 38.619249 -91.756356 +65025 786 352 122191665 314616 47.178 0.121 38.675948 -92.690020 +65026 11551 5609 373429966 2974648 144.182 1.149 38.324361 -92.564791 +65032 1792 718 148490606 1300893 57.333 0.502 38.346567 -92.378378 +65034 679 265 88848365 60916 34.305 0.024 38.559677 -92.818106 +65035 1826 782 207083423 576319 79.955 0.223 38.363815 -91.946963 +65037 4938 5573 211007876 22112083 81.471 8.538 38.243419 -92.849146 +65039 2328 1027 152700918 4070585 58.958 1.572 38.711084 -92.296622 +65040 1208 578 108412118 1254344 41.858 0.484 38.348240 -92.284439 +65041 5725 3384 608273551 9825093 234.856 3.793 38.632996 -91.489763 +65043 9452 4036 135692800 1974300 52.391 0.762 38.623449 -92.102764 +65046 1194 562 193022979 3396192 74.527 1.311 38.786494 -92.488423 +65047 1351 877 83849869 3075742 32.375 1.188 38.150970 -92.578409 +65048 154 76 51681039 107148 19.954 0.041 38.373120 -92.040605 +65049 6618 8517 50320046 25581044 19.429 9.877 38.199500 -92.674809 +65050 755 216 59618453 150543 23.019 0.058 38.543645 -92.687801 +65051 4874 2177 313294194 1136654 120.964 0.439 38.469165 -91.797166 +65052 3446 1924 133445140 12644268 51.523 4.882 38.083492 -92.617340 +65053 1425 585 90932289 22898 35.109 0.009 38.527054 -92.378964 +65054 835 369 65576638 200405 25.319 0.077 38.488994 -91.949439 +65058 1017 480 246799178 1109518 95.290 0.428 38.249621 -92.127853 +65059 867 364 95077979 4004802 36.710 1.546 38.700661 -91.867637 +65061 746 577 132045427 5382720 50.983 2.078 38.599503 -91.635510 +65062 49 57 10251997 810068 3.958 0.313 38.504042 -91.659235 +65063 3412 1398 226349988 1786579 87.394 0.690 38.721260 -92.087607 +65064 578 262 46934767 24171 18.122 0.009 38.402845 -92.471423 +65065 6414 8216 40520109 14388796 15.645 5.556 38.134934 -92.662853 +65066 6703 3262 516863871 3799374 199.562 1.467 38.349483 -91.484846 +65067 379 269 114313385 1024981 44.137 0.396 38.766201 -91.703149 +65068 827 364 115790140 76811 44.707 0.030 38.825749 -92.614762 +65069 645 409 194332017 6785783 75.032 2.620 38.753012 -91.589785 +65072 1847 2721 48926645 8993017 18.891 3.472 38.266773 -92.729350 +65074 3061 1284 237980933 755658 91.885 0.292 38.484301 -92.468144 +65075 784 335 118316369 972970 45.682 0.376 38.250489 -92.257520 +65076 829 298 66986030 1618154 25.863 0.625 38.379486 -92.194056 +65077 561 326 75333590 906169 29.086 0.350 38.772199 -91.812579 +65078 3743 3078 394083557 13820526 152.157 5.336 38.389492 -93.022188 +65079 4729 6349 78390861 27749826 30.267 10.714 38.150286 -92.748302 +65080 1015 443 109035311 4302324 42.099 1.661 38.636261 -91.978927 +65081 3928 1267 170636444 445013 65.883 0.172 38.644434 -92.782268 +65082 1127 498 174434753 3069224 67.350 1.185 38.219313 -92.421422 +65083 375 161 39009236 43033 15.062 0.017 38.140911 -92.440994 +65084 6797 3223 437202766 1232656 168.805 0.476 38.434240 -92.856128 +65085 1240 519 145015662 2353503 55.991 0.909 38.397651 -92.084526 +65101 30587 12197 343899160 14807502 132.780 5.717 38.495766 -92.134532 +65109 38090 16982 212842005 4584225 82.179 1.770 38.574160 -92.277944 +65201 39417 15571 221517393 799386 85.528 0.309 38.900944 -92.238425 +65202 46547 20485 385568391 1886661 148.869 0.728 39.020370 -92.296535 +65203 53307 23790 200080930 4749192 77.252 1.834 38.884324 -92.398565 +65215 203 0 22985 0 0.009 0.000 38.953173 -92.320850 +65230 703 347 177319920 427284 68.464 0.165 39.290548 -92.702593 +65231 3334 1514 320860226 2318760 123.885 0.895 39.016540 -91.897785 +65232 249 129 63974660 298963 24.701 0.115 39.160695 -91.756000 +65233 11703 4749 362085059 6312792 139.802 2.437 38.917096 -92.728078 +65236 1404 740 192533557 3750637 74.338 1.448 39.440542 -93.065958 +65237 907 437 245727721 161981 94.876 0.063 38.766639 -92.793644 +65239 1309 598 141087487 1247054 54.474 0.481 39.533520 -92.432043 +65240 7590 3169 460595376 1650352 177.837 0.637 39.220638 -92.125561 +65243 2806 891 255494322 539383 98.647 0.208 39.268429 -92.354421 +65244 412 215 173428597 3135841 66.961 1.211 39.484800 -92.659485 +65246 101 71 83559477 4116802 32.262 1.590 39.378901 -92.996616 +65247 616 314 125768065 2648556 48.559 1.023 39.635059 -92.470615 +65248 4619 1966 437396987 4255500 168.880 1.643 39.138606 -92.660133 +65250 617 287 139664779 5369820 53.925 2.073 39.030100 -92.840101 +65251 22437 8694 558257003 7169356 215.544 2.768 38.841849 -91.977132 +65254 1810 872 274346440 9717485 105.926 3.752 39.210375 -92.853371 +65255 3731 1511 140609087 172170 54.289 0.066 39.102561 -92.218393 +65256 1787 715 129652566 172684 50.059 0.067 39.120991 -92.456477 +65257 1564 775 216424322 689681 83.562 0.266 39.287086 -92.533811 +65258 500 245 134619133 780274 51.977 0.301 39.520236 -92.135201 +65259 2858 1240 269321567 6898518 103.986 2.664 39.476712 -92.569715 +65260 574 253 119955797 172424 46.315 0.067 39.580629 -92.385861 +65261 1094 693 224731556 3687490 86.769 1.424 39.475211 -92.933433 +65262 955 389 125718759 1242771 48.540 0.480 38.960143 -91.955313 +65263 1948 891 351275683 1054777 135.628 0.407 39.461874 -92.220167 +65264 720 344 137811634 1113747 53.209 0.430 39.088314 -91.685640 +65265 15409 7050 586190938 5904222 226.330 2.280 39.203373 -91.885371 +65270 17681 7278 295610533 1563733 114.136 0.604 39.413639 -92.394950 +65274 1710 815 132385342 3797268 51.114 1.466 39.015799 -92.686203 +65275 2535 1402 457106709 6426057 176.490 2.481 39.453066 -91.994965 +65276 1609 720 251865341 344129 97.246 0.133 38.849568 -92.952563 +65278 123 52 292673 0 0.113 0.000 39.341583 -92.410624 +65279 1766 793 142391781 2197401 54.978 0.848 39.001389 -92.528490 +65280 243 110 50361962 194456 19.445 0.075 39.242871 -91.736982 +65281 3098 1486 531454768 3990207 205.196 1.541 39.468240 -92.798834 +65282 178 144 31853282 1685080 12.299 0.651 39.387929 -91.822967 +65283 387 417 148049349 36874363 57.162 14.237 39.509271 -91.827525 +65284 2361 1010 173711378 716370 67.070 0.277 39.206410 -92.293325 +65285 695 301 145528557 910824 56.189 0.352 39.271734 -91.999838 +65286 129 88 116595493 2302473 45.018 0.889 39.507568 -93.220334 +65287 422 211 81384757 2978148 31.423 1.150 38.886302 -92.530138 +65301 34267 15029 623296635 5111129 240.656 1.973 38.698269 -93.225707 +65305 2538 784 14813253 25627 5.719 0.010 38.733096 -93.553162 +65320 56 61 345226 0 0.133 0.000 39.070000 -92.947247 +65321 417 200 87581217 116195 33.815 0.045 39.092622 -93.468630 +65322 587 281 140226593 3240484 54.142 1.251 38.982087 -92.951995 +65323 976 455 146655577 5044314 56.624 1.948 38.443904 -93.617513 +65324 1634 1778 172285849 11909532 66.520 4.598 38.126812 -93.029914 +65325 3171 1505 392941308 1247729 151.715 0.482 38.439774 -93.189165 +65326 1996 2617 355403910 12771414 137.222 4.931 38.165840 -93.139170 +65327 227 105 993588 0 0.384 0.000 38.973973 -93.495313 +65329 494 214 83652481 17860 32.298 0.007 38.621034 -92.966698 +65330 412 203 120471868 4937779 46.514 1.906 39.217726 -92.952862 +65332 1652 659 230990731 962346 89.186 0.372 38.624224 -93.414805 +65333 759 327 161392784 891535 62.314 0.344 38.900768 -93.319941 +65334 935 347 176587860 635462 68.181 0.245 38.845310 -93.226858 +65335 196 102 32936920 98575 12.717 0.038 38.504713 -93.342103 +65336 5981 2693 301663843 1574100 116.473 0.608 38.792708 -93.575353 +65337 1899 775 214041238 1087723 82.642 0.420 38.794493 -93.431379 +65338 3046 2013 305450543 7892717 117.935 3.047 38.363547 -93.279912 +65339 712 313 241541636 5671031 93.260 2.190 39.195918 -93.374737 +65340 15937 6458 668766558 2905308 258.212 1.122 39.090860 -93.182975 +65344 332 158 193593873 6258329 74.747 2.416 39.313866 -93.192186 +65345 387 163 69535920 102834 26.848 0.040 38.537892 -93.126897 +65347 681 340 202467501 2889856 78.173 1.116 38.988926 -93.040250 +65348 1350 618 191069599 115079 73.772 0.044 38.714024 -92.974231 +65349 2441 1292 246394836 5154983 95.134 1.990 39.230471 -93.045452 +65350 1822 755 179475464 699686 69.296 0.270 38.645970 -93.090672 +65351 2525 1163 305336392 2426140 117.891 0.937 38.994268 -93.381217 +65354 628 266 67094329 8508 25.905 0.003 38.653942 -92.876448 +65355 10519 8572 596858553 99043958 230.448 38.241 38.219545 -93.366948 +65360 4752 2099 400143449 3434655 154.496 1.326 38.516411 -93.517553 +65401 32383 13795 685125613 2341411 264.528 0.904 37.900035 -91.768578 +65436 91 47 53845736 36122 20.790 0.014 37.623801 -91.963610 +65438 2980 1409 845769135 477333 326.553 0.184 36.931336 -91.501101 +65439 259 128 102598847 931988 39.614 0.360 37.655276 -91.070009 +65440 527 263 213856126 1650613 82.570 0.637 37.619926 -91.172728 +65441 5194 2416 454243980 688842 175.385 0.266 38.096380 -91.159022 +65443 96 52 22182874 70197 8.565 0.027 38.131683 -92.094622 +65444 1087 544 212129746 533540 81.904 0.206 37.379114 -92.057206 +65446 331 174 99769687 37416 38.521 0.014 37.777805 -91.281340 +65449 351 218 125352100 22239 48.399 0.009 37.852033 -91.494674 +65452 3315 1489 240416122 715725 92.825 0.276 37.966890 -92.266127 +65453 8548 4349 356405313 1653162 137.609 0.638 38.106493 -91.439811 +65456 518 286 167077173 33268 64.509 0.013 37.784607 -91.189780 +65457 338 152 49207610 991386 18.999 0.383 37.810110 -92.059538 +65459 8233 3724 607181578 3729046 234.434 1.440 38.029720 -92.096732 +65461 105 52 47361974 678025 18.287 0.262 37.676732 -92.043738 +65462 1593 725 244757782 95559 94.502 0.037 37.683375 -91.848757 +65463 1011 478 178025778 546049 68.736 0.211 37.853617 -92.784345 +65464 492 271 150900930 40285 58.263 0.016 37.186578 -91.899782 +65466 1634 923 483790649 123232 186.793 0.048 37.205455 -91.348447 +65468 102 50 31403028 0 12.125 0.000 37.249928 -91.790223 +65470 923 448 275872007 1483686 106.515 0.573 37.547434 -92.401801 +65473 15059 2013 256337594 1829615 98.973 0.706 37.706433 -92.154489 +65479 441 218 221612063 47293 85.565 0.018 37.342026 -91.636139 +65483 4737 2279 273733964 957804 105.689 0.370 37.298969 -91.955093 +65484 186 95 64087777 23001 24.744 0.009 37.356223 -92.227015 +65486 3423 1522 331109879 98056 127.842 0.038 38.108287 -92.328061 +65501 163 97 48037372 7597 18.547 0.003 37.462127 -91.566241 +65529 232 127 1519468 286680 0.587 0.111 37.929166 -92.010040 +65534 1029 431 106029286 336136 40.938 0.130 37.690279 -92.284280 +65535 1673 791 112048976 126749 43.262 0.049 38.070003 -91.274154 +65536 28874 12903 1052115048 5370449 406.224 2.074 37.687697 -92.644482 +65541 236 113 43786134 78623 16.906 0.030 37.651862 -91.772205 +65542 6776 2424 563001368 1321247 217.376 0.510 37.495709 -91.883745 +65543 431 184 159654041 185990 61.643 0.072 37.461870 -92.289349 +65548 5908 2726 414346668 555704 159.980 0.215 37.013085 -91.712657 +65550 3127 1593 467172095 2696008 180.376 1.041 37.822689 -91.954540 +65552 2013 911 384608881 1106969 148.498 0.427 37.535168 -92.165880 +65555 1087 565 210354602 4301 81.218 0.002 37.367583 -91.767023 +65556 5869 2716 588325620 3712152 227.154 1.433 37.835406 -92.408789 +65557 166 76 13459459 13561 5.197 0.005 37.509813 -92.100972 +65559 9385 4057 485792082 2282081 187.565 0.881 38.024853 -91.610098 +65560 14392 6742 1773052067 4004294 684.579 1.546 37.596621 -91.503902 +65564 220 93 29442104 15994 11.368 0.006 37.227369 -91.968826 +65565 5854 2797 703258675 550368 271.530 0.212 37.893625 -91.242232 +65566 772 376 13104207 30355 5.060 0.012 37.720734 -91.126642 +65567 1253 578 157854017 281761 60.948 0.109 37.865133 -92.535705 +65570 528 242 74765698 41973 28.867 0.016 37.452634 -92.094798 +65571 2134 1045 470824230 191081 181.786 0.074 37.186248 -91.623030 +65580 829 413 142556793 748755 55.041 0.289 38.116494 -91.789799 +65582 2181 1163 354079119 3262118 136.711 1.260 38.196054 -91.923639 +65583 12307 4992 165649917 1879417 63.958 0.726 37.822730 -92.255536 +65584 9855 4165 60821178 141953 23.483 0.055 37.828203 -92.131212 +65586 33 28 4225625 0 1.632 0.000 37.849588 -91.431656 +65588 2680 1213 525804465 272834 203.014 0.105 36.981751 -91.272971 +65589 188 90 28633651 0 11.056 0.000 37.245475 -91.838239 +65590 1231 583 176422680 944307 68.117 0.365 37.606148 -92.951287 +65591 1512 668 129990573 1510 50.190 0.001 37.938453 -92.640747 +65601 812 440 129870758 16973246 50.143 6.553 37.539862 -93.588004 +65603 206 131 59952204 5996583 23.148 2.315 37.556769 -93.865230 +65604 3746 1625 221321588 385317 85.453 0.149 37.269914 -93.598471 +65605 12136 5451 412969107 1157405 159.448 0.447 36.771716 -93.654747 +65606 3613 1765 527819704 1868328 203.792 0.721 36.697257 -91.359397 +65608 9403 4462 1118481267 861746 431.848 0.333 36.898747 -92.677621 +65609 778 365 91759221 513177 35.428 0.198 36.542528 -92.151703 +65610 5239 2161 230095973 341481 88.841 0.132 37.030759 -93.530942 +65611 1969 1409 77004537 16616545 29.732 6.416 36.549846 -93.372149 +65612 1354 596 91798207 90547 35.443 0.035 37.215241 -93.540109 +65613 17396 7269 488227432 3711696 188.506 1.433 37.636902 -93.396427 +65614 591 271 215897587 947 83.359 0.000 36.754466 -92.909237 +65616 24284 15673 191931986 12503900 74.105 4.828 36.669373 -93.248879 +65617 1630 667 75861591 154785 29.290 0.060 37.438072 -93.336027 +65618 148 94 71830684 155720 27.734 0.060 36.733139 -92.359711 +65619 7393 3048 49472040 159486 19.101 0.062 37.121719 -93.394691 +65620 262 102 27221665 17648 10.510 0.007 37.022629 -92.944583 +65622 8716 3980 415850660 1259720 160.561 0.486 37.633024 -93.103604 +65623 36 13 45406 0 0.018 0.000 36.748816 -93.906409 +65624 1577 1046 144441262 8552481 55.769 3.302 36.730202 -93.566299 +65625 8328 3750 410504199 1857358 158.497 0.717 36.674069 -93.816497 +65626 1637 814 268502954 357190 103.670 0.138 36.594943 -92.130859 +65627 460 491 140056436 10051755 54.076 3.881 36.564690 -93.030872 +65629 574 277 176754197 5804 68.245 0.002 36.891489 -93.000589 +65630 310 138 25361062 1216 9.792 0.000 36.832959 -93.213650 +65631 4678 1864 110995926 427887 42.856 0.165 37.000699 -93.423999 +65632 2939 1239 268959179 482841 103.846 0.186 37.497907 -92.809930 +65633 4131 1788 219782570 472193 84.859 0.182 36.894781 -93.534748 +65634 766 461 206157240 1661509 79.598 0.642 38.015397 -93.194616 +65635 541 288 98527246 18520215 38.042 7.151 37.531741 -93.717143 +65637 1135 575 235831393 826988 91.055 0.319 36.759338 -92.200166 +65638 461 263 139046794 230223 53.686 0.089 36.838205 -92.322251 +65640 887 362 105377519 304370 40.686 0.118 37.698467 -93.566848 +65641 1250 956 123249457 7688576 47.587 2.969 36.543773 -93.769176 +65644 2759 1197 209194601 718980 80.770 0.278 37.510937 -93.038245 +65646 2046 954 272368031 2317313 105.162 0.895 37.333448 -93.703246 +65647 2347 1022 144597919 263470 55.830 0.102 36.692553 -94.007438 +65648 5614 2326 202809776 295179 78.305 0.114 37.408853 -93.167091 +65649 1593 779 159750009 15809872 61.680 6.104 37.617274 -93.623215 +65650 1520 1013 185721769 6229644 71.708 2.405 37.813994 -93.441928 +65652 4157 1491 187144299 246560 72.257 0.095 37.133949 -92.948822 +65653 5708 2930 166414169 3397482 64.253 1.312 36.840830 -93.140383 +65654 159 89 2840550 1016 1.097 0.000 37.022203 -93.909637 +65655 3186 1579 540785338 2524103 208.798 0.975 36.595898 -92.425548 +65656 4929 2836 303676123 13102821 117.250 5.059 36.793766 -93.467830 +65657 94 39 45922764 36222 17.731 0.014 36.838309 -93.007524 +65658 1131 971 53906487 8547255 20.813 3.300 36.540154 -93.637963 +65660 182 90 58165170 51598 22.458 0.020 37.334212 -92.273898 +65661 2562 1392 221753587 18129621 85.620 7.000 37.467688 -93.825199 +65662 1269 591 194882064 275772 75.244 0.106 37.446733 -92.570452 +65663 2481 1004 291342522 606757 112.488 0.234 37.623371 -93.246727 +65664 159 78 2013254 4901 0.777 0.002 37.198055 -93.615151 +65667 3305 1620 479016615 1658579 184.949 0.640 37.308459 -92.514047 +65668 1745 1101 91638240 2949615 35.382 1.139 37.931230 -93.290503 +65669 2031 859 105851331 273224 40.869 0.105 36.911907 -93.302603 +65672 9048 4700 143525999 6950365 55.416 2.684 36.560354 -93.219488 +65674 2991 1321 255300828 1232314 98.572 0.476 37.785786 -93.607277 +65676 472 319 41540449 4426488 16.039 1.709 36.572170 -92.615940 +65679 2704 1220 136155584 9184590 52.570 3.546 36.579445 -93.095925 +65680 1201 612 55597849 2219654 21.466 0.857 36.653164 -93.003455 +65681 2345 1648 87499919 13708863 33.784 5.293 36.550848 -93.461857 +65682 1980 921 389471925 1077926 150.376 0.416 37.411878 -93.961715 +65685 877 423 86350755 46047 33.340 0.018 37.752300 -93.166953 +65686 4920 3461 24721434 14488389 9.545 5.594 36.622117 -93.436156 +65689 4859 2312 473334795 840630 182.756 0.325 37.144416 -92.092904 +65690 298 169 113554629 588880 43.844 0.227 36.589090 -91.279346 +65692 1332 634 296226986 126570 114.374 0.049 36.627591 -91.631413 +65702 473 213 74772899 12559 28.870 0.005 37.072020 -92.494058 +65704 4047 1854 324642059 102737 125.345 0.040 37.127620 -92.586107 +65705 3999 1786 104070133 139984 40.182 0.054 36.988526 -93.621572 +65706 14439 6083 465331372 1093748 179.665 0.422 37.322820 -92.898635 +65707 2299 1052 248192207 521937 95.828 0.202 37.233674 -93.843315 +65708 12624 5298 237001271 377106 91.507 0.146 36.902894 -93.911536 +65710 1275 520 78935296 509432 30.477 0.197 37.485556 -93.421088 +65711 9926 4600 753726584 1326524 291.015 0.512 37.176383 -92.275679 +65712 8494 3608 315011522 422341 121.627 0.163 37.110674 -93.800291 +65713 2496 1156 281554729 733181 108.709 0.283 37.404644 -92.746951 +65714 29818 12114 134557698 722240 51.953 0.279 37.038095 -93.320282 +65715 92 46 35404877 6995 13.670 0.003 36.731375 -92.574001 +65717 2568 1099 356372666 49588 137.596 0.019 37.060440 -92.416048 +65720 665 285 89797985 74030 34.671 0.029 36.940563 -92.950037 +65721 28550 11646 252529310 686365 97.502 0.265 36.982818 -93.209226 +65722 1909 800 144049816 240188 55.618 0.093 37.582915 -92.805465 +65723 3606 1552 228592229 477514 88.260 0.184 36.958625 -94.040320 +65724 1392 1574 55257389 13477800 21.335 5.204 37.844430 -93.313311 +65725 2459 1046 85862180 361770 33.152 0.140 37.433273 -93.288160 +65727 218 93 36050856 221132 13.919 0.085 37.755095 -93.294846 +65728 76 28 2367166 0 0.914 0.000 36.871381 -93.345561 +65729 264 271 38651677 9065871 14.923 3.500 36.513960 -92.592739 +65730 196 108 37003800 0 14.287 0.000 36.623694 -94.177289 +65731 281 145 3650069 231002 1.409 0.089 36.653342 -93.126038 +65732 871 427 135804340 369413 52.434 0.143 37.941693 -93.161545 +65733 720 667 163442583 21955134 63.106 8.477 36.527116 -92.849419 +65734 3497 1480 207051336 456626 79.943 0.176 36.795214 -93.941817 +65735 110 79 53719377 119882 20.741 0.046 38.039920 -93.458727 +65737 8413 5212 219311308 16862857 84.677 6.511 36.714025 -93.360672 +65738 17550 7271 133678392 90220 51.614 0.035 37.139280 -93.506398 +65739 1326 863 33906707 6680751 13.091 2.579 36.510959 -93.274159 +65740 3405 1795 11634426 738746 4.492 0.285 36.713574 -93.163478 +65742 11367 4691 302351290 799617 116.738 0.309 37.124614 -93.079797 +65744 142 68 54460953 0 21.027 0.000 36.622787 -92.897552 +65745 2693 1179 183571174 177404 70.877 0.068 36.530708 -93.970641 +65746 7895 2802 466721070 579735 180.202 0.224 37.146190 -92.778195 +65747 3746 3342 201598508 42169068 77.838 16.282 36.600861 -93.580084 +65752 432 202 108786303 174280 42.003 0.067 37.327705 -93.830886 +65753 5027 2066 180671336 415246 69.758 0.160 37.002844 -93.046087 +65754 950 374 53689136 845 20.729 0.000 36.836654 -93.281437 +65755 519 260 106139819 10765 40.981 0.004 36.814669 -92.626445 +65756 748 323 74164851 92447 28.635 0.036 37.098035 -93.973906 +65757 6975 2850 213146003 340435 82.296 0.131 37.282848 -93.098940 +65759 1423 605 126099545 87819 48.687 0.034 36.762545 -93.068019 +65760 739 447 84885502 1144826 32.774 0.442 36.634217 -92.281329 +65761 1273 1041 313373544 25792339 120.994 9.958 36.576449 -92.724984 +65762 441 243 190940744 1127422 73.723 0.435 36.684886 -92.651285 +65764 1287 561 237919023 1155115 91.861 0.446 37.814523 -92.948688 +65766 105 124 14099485 925102 5.444 0.357 36.536157 -92.268221 +65767 2106 1124 223305174 2231564 86.219 0.862 37.852256 -93.155931 +65768 488 238 150471360 112920 58.097 0.044 36.919435 -92.270035 +65769 3091 1208 220640559 395440 85.190 0.153 36.919096 -93.799405 +65770 3002 1295 258634904 555235 99.859 0.214 37.422627 -93.548226 +65771 1398 569 101974135 0 39.372 0.000 36.772472 -93.206420 +65772 2158 911 211628297 109273 81.710 0.042 36.598992 -94.023207 +65773 711 368 171402432 91480 66.179 0.035 36.762508 -92.501811 +65774 953 481 131879245 514696 50.919 0.199 37.930273 -93.489344 +65775 24908 11035 1178768500 2347681 455.125 0.906 36.700074 -91.858053 +65777 328 159 41466790 73889 16.010 0.029 36.525746 -91.997786 +65778 524 309 102404706 192800 39.539 0.074 36.529757 -91.269785 +65779 2207 1687 194999316 7468640 75.290 2.884 37.977567 -93.378863 +65781 8543 3365 184294774 108492 71.157 0.042 37.355541 -93.417569 +65783 225 104 45519501 458865 17.575 0.177 37.714570 -92.933321 +65784 34 15 4924914 0 1.902 0.000 36.679888 -92.313911 +65785 5259 2858 563575760 30162840 217.598 11.646 37.708475 -93.825054 +65786 2250 1103 279035611 1604805 107.736 0.620 37.965780 -92.962723 +65787 1864 1489 104656889 8561039 40.408 3.305 38.070593 -92.883347 +65788 422 173 56760385 30295 21.915 0.012 36.806689 -91.694945 +65789 2014 905 206482310 91060 79.723 0.035 36.862869 -91.873714 +65790 739 330 139947141 335253 54.034 0.129 36.703024 -92.109540 +65791 4585 2268 341116361 71357 131.706 0.028 36.579764 -91.497595 +65793 6337 2912 694727448 999801 268.236 0.386 36.991559 -91.971986 +65802 44270 19682 164728470 8728 63.602 0.003 37.207450 -93.354612 +65803 40902 18732 240750741 4097703 92.954 1.582 37.283140 -93.289599 +65804 36801 18923 47250794 1302395 18.244 0.503 37.149307 -93.252749 +65806 10586 6008 5369508 0 2.073 0.000 37.205585 -93.299157 +65807 54952 25655 56212563 61949 21.704 0.024 37.165185 -93.325004 +65809 11257 4629 45948401 431344 17.741 0.167 37.166589 -93.182484 +65810 20984 8789 30948673 164696 11.949 0.064 37.119534 -93.309929 +66002 13755 5588 465082157 6080000 179.569 2.348 39.538742 -95.137635 +66006 7459 2862 277609345 3047416 107.186 1.177 38.804266 -95.232670 +66007 5614 2265 58779197 252104 22.695 0.097 39.156220 -94.941650 +66008 286 133 89084538 33891 34.396 0.013 39.718049 -95.176504 +66010 606 308 233995665 1091058 90.346 0.421 38.088217 -94.979170 +66012 11210 4492 124079132 3141341 47.907 1.213 39.065593 -94.919276 +66013 1839 695 108845261 1259345 42.025 0.486 38.730666 -94.695551 +66014 349 176 172880673 1009672 66.750 0.390 38.228845 -94.987105 +66015 782 360 247109984 1460888 95.410 0.564 38.074849 -95.413199 +66016 519 214 81774335 15353 31.573 0.006 39.475168 -95.231745 +66017 304 156 100261703 65163 38.711 0.025 39.703716 -95.273961 +66018 5760 2196 54532092 3214588 21.055 1.241 38.962643 -94.964154 +66019 246 120 110999 0 0.043 0.000 38.945440 -95.003284 +66020 1442 578 160256188 396860 61.875 0.153 39.339341 -95.116107 +66021 2612 1027 123784575 2859598 47.793 1.104 38.766280 -95.014400 +66023 1124 522 183265096 726310 70.759 0.280 39.512289 -95.392403 +66024 927 401 11574509 1828218 4.469 0.706 39.736988 -94.881614 +66025 7704 2931 169492516 2478229 65.441 0.957 38.891903 -95.083340 +66026 698 284 106910585 1368713 41.278 0.528 38.396304 -94.864355 +66027 5742 1585 21298782 1826770 8.224 0.705 39.368618 -94.911426 +66030 20961 8126 122715034 1294733 47.381 0.500 38.815137 -94.940266 +66031 1072 0 7515354 47511 2.902 0.018 38.832069 -94.890084 +66032 5115 2303 540119833 3920175 208.541 1.514 38.286777 -95.278214 +66033 767 363 141809181 814653 54.753 0.315 38.363289 -95.122267 +66035 1311 526 139217255 653518 53.752 0.252 39.870996 -95.253591 +66039 628 325 254249080 1260339 98.166 0.487 38.104411 -95.164855 +66040 3404 2103 374785343 17661832 144.705 6.819 38.354528 -94.747904 +66041 725 312 141439067 173599 54.610 0.067 39.600303 -95.307974 +66042 657 308 73642590 821930 28.434 0.317 38.422786 -95.079886 +66043 10787 3193 33981847 1525631 13.120 0.589 39.251199 -94.882513 +66044 28417 11792 160824232 3403847 62.095 1.314 39.023294 -95.208909 +66045 2023 2 838040 5685 0.324 0.002 38.958845 -95.247749 +66046 19452 8669 105730625 2348875 40.823 0.907 38.904524 -95.209753 +66047 18268 8420 137240744 4730652 52.989 1.827 38.892426 -95.346521 +66048 35475 14425 350337468 3107757 135.266 1.200 39.282330 -94.995995 +66049 25957 11386 115282200 3859874 44.511 1.490 38.978105 -95.344139 +66050 1822 767 111921730 1608872 43.213 0.621 39.011834 -95.442516 +66052 2031 811 107839148 3815674 41.637 1.473 39.015766 -95.048266 +66053 7524 2941 257311695 3535595 99.349 1.365 38.581078 -94.668065 +66054 2860 1247 196703610 2233441 75.948 0.862 39.206136 -95.198043 +66056 1694 1165 220851984 2177550 85.271 0.841 38.151453 -94.844282 +66058 393 179 93301827 68466 36.024 0.026 39.541067 -95.520384 +66060 1122 474 155305698 759496 59.964 0.293 39.418161 -95.332230 +66061 55805 21117 166149206 2522111 64.151 0.974 38.893764 -94.879975 +66062 74411 27198 123721575 1099001 47.769 0.424 38.835366 -94.778679 +66064 6098 2570 194214299 2524285 74.987 0.975 38.480714 -94.988936 +66066 2636 1132 201000606 4697031 77.607 1.814 39.203002 -95.330593 +66067 16170 7013 429694101 3954661 165.906 1.527 38.623617 -95.276284 +66070 2661 1191 78907828 38707875 30.466 14.945 39.205690 -95.450917 +66071 12360 5107 602000984 19106431 232.434 7.377 38.573078 -94.864562 +66072 1054 446 194615255 1027386 75.141 0.397 38.309431 -94.963963 +66073 2537 1022 169591319 4943845 65.480 1.909 39.082417 -95.368342 +66075 2103 1059 272318335 8178998 105.143 3.158 38.200521 -94.693412 +66076 2200 951 251663518 1976037 97.168 0.763 38.632455 -95.443013 +66078 961 404 167107750 1962640 64.521 0.758 38.485440 -95.259302 +66079 781 344 109151449 1300538 42.144 0.502 38.542467 -95.108134 +66080 1065 429 151410032 1227437 58.460 0.474 38.406970 -95.260197 +66083 8910 3326 167336652 8056859 64.609 3.111 38.730587 -94.831552 +66085 7779 2885 67598379 781579 26.100 0.302 38.798768 -94.656684 +66086 9759 3800 246715823 1383963 95.258 0.534 39.119526 -95.081230 +66087 2042 924 289364572 2123673 111.724 0.820 39.802081 -95.122122 +66088 2457 1036 313121644 5067912 120.897 1.957 39.339329 -95.461198 +66090 2520 1125 201906603 5226950 77.957 2.018 39.788124 -94.973467 +66091 352 195 155846045 1816573 60.172 0.701 38.178278 -95.312532 +66092 4084 1637 217160047 1664546 83.846 0.643 38.701500 -95.097953 +66093 609 274 286281575 1893089 110.534 0.731 38.207810 -95.494138 +66094 416 244 123748288 1834514 47.779 0.708 39.951286 -95.342440 +66095 896 386 183466808 2034878 70.837 0.786 38.441094 -95.438861 +66097 1071 478 128158793 965264 49.482 0.373 39.328599 -95.246083 +66101 13220 5831 8420003 0 3.251 0.000 39.118982 -94.625983 +66102 29282 11633 28935079 174728 11.172 0.067 39.108964 -94.692538 +66103 13934 7072 12542285 351844 4.843 0.136 39.060338 -94.626797 +66104 25401 11325 41774015 1704559 16.129 0.658 39.150204 -94.689501 +66105 2924 1025 8690722 418982 3.356 0.162 39.087011 -94.638934 +66106 23367 9209 48197667 1814561 18.609 0.701 39.069454 -94.702613 +66109 20480 8140 119207033 3208040 46.026 1.239 39.165351 -94.829341 +66111 10155 4171 56351297 1731641 21.757 0.669 39.084010 -94.789981 +66112 11458 5309 16146653 0 6.234 0.000 39.114520 -94.773577 +66115 0 0 10273915 1311956 3.967 0.507 39.148258 -94.605084 +66118 3 0 2100603 359060 0.811 0.139 39.103981 -94.613129 +66202 16173 8826 13611180 33601 5.255 0.013 39.023150 -94.669466 +66203 19156 8754 16268606 10652 6.281 0.004 39.020331 -94.705787 +66204 18832 9423 12800344 25219 4.942 0.010 38.990381 -94.678214 +66205 13216 6484 9723341 0 3.754 0.000 39.031176 -94.630762 +66206 9693 4071 10235053 53497 3.952 0.021 38.960717 -94.620277 +66207 13004 5730 12102721 31979 4.673 0.012 38.955644 -94.643247 +66208 20945 9748 16829321 2474 6.498 0.001 38.998262 -94.628568 +66209 19561 8445 15992185 44062 6.175 0.017 38.899600 -94.638358 +66210 18102 8772 15709372 84964 6.065 0.033 38.921707 -94.704655 +66211 4276 2296 11528999 86714 4.451 0.033 38.923059 -94.636336 +66212 32096 15496 19894176 51726 7.681 0.020 38.955565 -94.679875 +66213 27322 11190 19604662 75203 7.569 0.029 38.898859 -94.708219 +66214 11691 5603 10123892 19327 3.909 0.007 38.967425 -94.714087 +66215 24770 11130 20405437 37940 7.879 0.015 38.957701 -94.744269 +66216 24368 9466 20204094 164001 7.801 0.063 39.013774 -94.741577 +66217 5319 2667 24292095 1084405 9.379 0.419 39.009521 -94.782287 +66218 7754 2577 23299965 214438 8.996 0.083 39.020690 -94.818803 +66219 10486 4842 19664575 171522 7.593 0.066 38.952366 -94.776220 +66220 7133 2534 17476690 135314 6.748 0.052 38.961714 -94.819584 +66221 15219 5196 19485132 242939 7.523 0.094 38.863662 -94.708502 +66223 21759 8514 16072349 228261 6.206 0.088 38.863482 -94.668479 +66224 11917 4010 17835298 184665 6.886 0.071 38.863539 -94.626804 +66226 12877 4225 29613547 1981780 11.434 0.765 39.030902 -94.859095 +66227 4543 1875 34255192 256147 13.226 0.099 38.972676 -94.874826 +66401 1721 968 612397558 2736489 236.448 1.057 38.932251 -96.309695 +66402 2955 1157 111309924 2821160 42.977 1.089 38.914000 -95.843270 +66403 757 324 244340770 505701 94.341 0.195 39.893573 -96.285893 +66404 530 212 173616003 231377 67.034 0.089 39.878146 -96.173343 +66406 421 205 141240731 335792 54.533 0.130 39.894106 -96.420729 +66407 479 192 148530428 2513983 57.348 0.971 39.228519 -96.198795 +66408 434 204 115844301 8596 44.728 0.003 39.959454 -95.969994 +66409 2997 1200 169094014 2175496 65.288 0.840 38.924185 -95.559640 +66411 1292 607 297940013 5755177 115.035 2.222 39.645460 -96.628455 +66412 287 132 125977751 297963 48.640 0.115 39.907630 -96.777462 +66413 1802 894 260379662 689577 100.533 0.266 38.768874 -95.880727 +66414 2914 1257 157906071 2230824 60.968 0.861 38.830304 -95.688649 +66415 885 399 245262091 1941790 94.696 0.750 39.688276 -96.147458 +66416 489 209 91072824 115002 35.163 0.044 39.525706 -95.863240 +66417 310 129 92631630 202400 35.765 0.078 39.656559 -96.044857 +66418 707 249 222528533 263103 85.919 0.102 39.279496 -95.933586 +66419 442 187 46438443 108087 17.930 0.042 39.360679 -95.598882 +66422 487 194 159287494 747424 61.501 0.289 39.336294 -96.085516 +66423 985 444 413729301 1244732 159.742 0.481 38.801294 -96.232746 +66424 610 295 148114260 448688 57.187 0.173 39.674689 -95.404063 +66425 465 238 120899666 326747 46.680 0.126 39.816196 -95.738422 +66427 1281 614 543974544 2708638 210.030 1.046 39.661283 -96.438829 +66428 415 203 243159692 674367 93.884 0.260 39.676115 -95.931359 +66429 579 244 33476442 172402 12.925 0.067 39.093770 -95.534186 +66431 671 290 163245213 904418 63.029 0.349 38.802909 -96.003769 +66432 396 188 156632683 702767 60.476 0.271 39.489763 -96.066716 +66434 4828 2363 559196178 1004176 215.907 0.388 39.861691 -95.549365 +66436 5879 2677 482774115 3682961 186.400 1.422 39.467881 -95.698276 +66438 149 63 47956211 107222 18.516 0.041 39.854484 -96.492864 +66439 2747 1296 226601385 1479517 87.491 0.571 39.656331 -95.540086 +66440 2063 829 127386339 101094 49.184 0.039 39.268181 -95.676822 +66441 26746 12102 618476803 7456497 238.795 2.879 38.973520 -96.803088 +66442 14283 3517 88795722 1354826 34.284 0.523 39.091847 -96.790133 +66449 846 378 173176655 96905 66.864 0.037 39.390138 -96.856465 +66451 1793 886 213675978 4238877 82.501 1.637 38.614716 -95.672323 +66501 260 124 608802 13478 0.235 0.005 39.053810 -96.237446 +66502 43850 19332 594567578 14490860 229.564 5.595 39.157803 -96.521914 +66503 13428 5888 210679162 12143128 81.344 4.688 39.265057 -96.692192 +66506 3614 36 1723768 0 0.666 0.000 39.195860 -96.581571 +66507 1247 468 247171056 2526369 95.433 0.975 39.045162 -96.067960 +66508 4375 2118 525949394 2674777 203.070 1.033 39.855917 -96.630811 +66509 2596 1049 327830388 104191 126.576 0.040 39.340866 -95.780372 +66510 779 361 146703383 498832 56.642 0.193 38.499626 -95.610199 +66512 3361 1371 169677441 2866324 65.513 1.107 39.199170 -95.545107 +66514 1657 729 42004146 207198 16.218 0.080 39.126223 -96.875603 +66515 425 184 83508999 130153 32.243 0.050 39.936244 -95.703732 +66516 378 161 120390578 98110 46.483 0.038 39.627947 -95.720734 +66517 2087 992 4048489 154982 1.563 0.060 39.113132 -96.706605 +66518 189 102 99335198 585477 38.354 0.226 39.965606 -96.550756 +66520 577 279 270496094 32825114 104.439 12.674 39.418894 -96.617663 +66521 1532 750 473954043 1263405 182.995 0.488 39.480218 -96.218995 +66522 49 20 445109 0 0.172 0.000 39.868546 -95.941994 +66523 3833 1755 389645891 17105877 150.443 6.605 38.610562 -95.839913 +66524 2499 1092 330612292 1427418 127.650 0.551 38.790944 -95.506081 +66526 801 321 183135713 1146190 70.709 0.443 39.065509 -96.154801 +66527 267 117 105259109 54767 40.641 0.021 39.745394 -95.673710 +66528 945 416 171288523 173789 66.135 0.067 38.597755 -95.535308 +66531 1380 580 98569844 74444 38.058 0.029 39.310997 -96.821533 +66532 668 303 228294291 297543 88.145 0.115 39.821429 -95.377943 +66533 1832 689 134952199 2352730 52.105 0.908 39.163187 -95.947495 +66534 3725 1663 383966185 1218324 148.250 0.470 39.884360 -95.837144 +66535 2616 1075 110311932 849974 42.592 0.328 39.267030 -96.433702 +66536 3922 1213 152578371 4591555 58.911 1.773 39.225094 -96.080292 +66537 1448 593 147908334 1098902 57.108 0.424 38.751242 -95.719623 +66538 3264 1486 377635139 49211 145.806 0.019 39.850557 -96.044691 +66539 2806 1091 106687863 1312666 41.192 0.507 39.141967 -95.840390 +66540 540 245 219743802 329625 84.844 0.127 39.490516 -95.976268 +66541 264 154 108931025 230093 42.059 0.089 39.974736 -96.366926 +66542 3335 1325 84185096 2479943 32.504 0.958 39.010744 -95.544771 +66543 725 411 22675922 16481 8.755 0.006 38.644955 -95.592811 +66544 337 193 222262701 2020396 85.816 0.780 39.692051 -96.280047 +66546 1012 436 99132886 1148233 38.275 0.443 38.895461 -95.721038 +66547 7617 3118 349074405 4508519 134.778 1.741 39.231558 -96.295611 +66548 961 462 203504352 1041865 78.573 0.402 39.677943 -96.761417 +66549 1646 721 448005778 1376049 172.976 0.531 39.427677 -96.415466 +66550 607 253 160593127 488792 62.005 0.189 39.655442 -95.820665 +66552 396 189 117933257 124806 45.534 0.048 39.593892 -95.624167 +66554 567 293 277553704 10227162 107.164 3.949 39.494814 -96.790528 +66603 2001 1169 2236348 166587 0.863 0.064 39.057894 -95.676160 +66604 23344 11539 17137815 19891 6.617 0.008 39.039022 -95.726188 +66605 19919 8018 25842412 651816 9.978 0.252 39.011911 -95.634774 +66606 11284 5913 14815828 770322 5.720 0.297 39.061436 -95.719870 +66607 10498 3793 18512870 7311 7.148 0.003 39.042580 -95.636364 +66608 5991 2722 12110526 1004074 4.676 0.388 39.079611 -95.663226 +66609 7068 3285 31129756 1411956 12.019 0.545 38.978236 -95.660737 +66610 9080 3447 99269961 2360211 38.328 0.911 38.976726 -95.844565 +66611 9832 5014 8801074 7835 3.398 0.003 39.018756 -95.696387 +66612 2477 1645 2660726 0 1.027 0.000 39.040436 -95.680471 +66614 31354 14724 74340030 659171 28.703 0.255 39.010366 -95.852479 +66615 2814 1332 117227885 4591001 45.262 1.773 39.050826 -95.897866 +66616 5874 2700 15589728 1299519 6.019 0.502 39.068476 -95.623407 +66617 8688 3538 108584981 3034089 41.925 1.171 39.134832 -95.623239 +66618 9402 3486 186991864 5162387 72.198 1.993 39.139508 -95.748267 +66619 3070 1113 20492688 102615 7.912 0.040 38.947635 -95.688062 +66621 643 0 646632 0 0.250 0.000 39.033321 -95.701543 +66622 76 0 272640 0 0.105 0.000 39.025896 -95.722270 +66701 12325 5645 762737317 5324063 294.495 2.056 37.822015 -94.762136 +66710 746 354 180652601 1291753 69.750 0.499 37.552628 -95.624072 +66711 610 318 133575064 602262 51.574 0.233 37.637096 -94.685001 +66712 1939 950 56413467 314283 21.781 0.121 37.564876 -94.714519 +66713 5836 2668 153613351 954945 59.310 0.369 37.040492 -94.785294 +66714 177 96 70503066 438863 27.221 0.169 37.636602 -95.698621 +66716 567 290 222108390 1002858 85.757 0.387 37.948020 -95.036782 +66717 497 251 136750979 1100733 52.800 0.425 37.695860 -95.696902 +66720 11299 5168 475651545 4135448 183.650 1.597 37.648330 -95.457190 +66724 1065 466 94055592 395602 36.315 0.153 37.350289 -94.857052 +66725 5739 2700 608061672 1778491 234.774 0.687 37.156583 -94.895319 +66728 91 42 3412309 0 1.317 0.000 37.171277 -94.704071 +66732 291 146 119095387 712655 45.983 0.275 37.799187 -95.187002 +66733 2215 1053 365755950 2580512 141.219 0.996 37.596759 -95.254823 +66734 332 192 75040871 934014 28.973 0.361 37.618089 -94.830183 +66735 421 190 9809949 54731 3.788 0.021 37.523161 -94.708564 +66736 3954 1993 665035284 6103467 256.772 2.357 37.551477 -95.861095 +66738 376 200 99556300 452508 38.439 0.175 38.013735 -94.723389 +66739 5453 2465 178520690 3153873 68.927 1.218 37.125780 -94.655261 +66740 477 183 116028397 239895 44.799 0.093 37.479551 -95.364186 +66741 237 94 53755154 304585 20.755 0.118 37.719140 -94.656007 +66743 4373 1908 383826183 2130689 148.196 0.823 37.503998 -94.893692 +66746 261 120 122701561 418358 47.375 0.162 37.668111 -94.954136 +66748 2750 1271 296659738 3431946 114.541 1.325 37.795954 -95.441606 +66749 7974 3659 302761411 4901187 116.897 1.892 37.935949 -95.406943 +66751 849 404 121338122 982580 46.849 0.379 37.943731 -95.289784 +66753 1077 506 345434771 2040365 133.373 0.788 37.362055 -95.011049 +66754 451 376 119979002 900616 46.324 0.348 38.004862 -94.885623 +66755 1178 588 346561587 2101198 133.808 0.811 37.928862 -95.179278 +66756 1007 496 52889954 1191471 20.421 0.460 37.544830 -94.659149 +66757 3560 1671 294908147 2221086 113.865 0.858 37.417206 -95.695818 +66758 216 127 112023675 1599750 43.253 0.618 38.015990 -95.586950 +66760 98 57 1970181 9684 0.761 0.004 37.348316 -94.624352 +66761 238 118 109268455 853025 42.189 0.329 37.918260 -95.569215 +66762 24786 11172 347012277 4490385 133.982 1.734 37.393869 -94.710469 +66763 3369 1506 16598898 562621 6.409 0.217 37.463150 -94.697810 +66767 511 241 121013193 1742883 46.723 0.673 38.073554 -94.703031 +66769 557 224 136795918 547376 52.817 0.211 37.856527 -94.889957 +66770 1158 484 17964804 297322 6.936 0.115 37.080735 -94.715342 +66771 1028 421 183067918 5633487 70.683 2.175 37.487563 -95.145995 +66772 253 122 87210470 479675 33.672 0.185 37.754519 -95.206284 +66773 866 409 80222975 171917 30.974 0.066 37.272257 -94.806572 +66775 191 102 67045238 93229 25.886 0.036 37.701935 -95.148771 +66776 1288 541 282855880 813029 109.211 0.314 37.462882 -95.489391 +66777 639 560 366163866 11770001 141.377 4.544 37.799903 -95.972096 +66778 139 68 389398 0 0.150 0.000 37.000499 -94.840857 +66779 650 313 191800566 789652 74.055 0.305 37.825646 -94.991966 +66780 589 296 279742162 1265916 108.009 0.489 37.621728 -95.056933 +66781 1347 607 118487953 325556 45.748 0.126 37.288583 -94.733491 +66782 178 93 766729 0 0.296 0.000 37.285017 -94.926319 +66783 2230 1241 776342196 6132672 299.747 2.368 37.874461 -95.737014 +66801 28492 12936 759975316 8498608 293.428 3.281 38.413743 -96.218187 +66830 262 116 75007548 403036 28.961 0.156 38.602420 -96.087420 +66833 536 246 327931550 2135386 126.615 0.824 38.695591 -96.195012 +66834 848 419 398361433 1436718 153.808 0.555 38.861969 -96.437347 +66835 1360 569 156146095 1232480 60.288 0.476 38.543253 -96.258153 +66838 182 94 132915416 578161 51.319 0.223 38.555305 -96.800981 +66839 4007 1851 365926910 44863232 141.285 17.322 38.217399 -95.748127 +66840 777 336 482662795 1265426 186.357 0.489 38.065599 -96.879024 +66842 324 213 282146113 1636181 108.937 0.632 38.009995 -96.651497 +66843 205 140 349835586 2001473 135.072 0.773 38.222479 -96.740487 +66845 1232 573 392640524 2861925 151.599 1.105 38.298731 -96.508392 +66846 3504 2114 739487905 17042204 285.518 6.580 38.647470 -96.470435 +66849 485 235 175929111 716569 67.927 0.277 38.877492 -96.589623 +66850 228 119 361707678 2220728 139.656 0.857 38.433969 -96.744392 +66851 583 339 182627565 465534 70.513 0.180 38.217863 -96.918638 +66852 631 315 373608775 2925681 144.251 1.130 38.064370 -95.895613 +66853 429 258 359804684 1466291 138.921 0.566 38.001895 -96.235303 +66854 816 418 261101529 13517743 100.812 5.219 38.250808 -95.979552 +66856 1613 728 361879932 13842510 139.723 5.345 38.397806 -95.811788 +66857 943 440 227429127 2260205 87.811 0.873 38.096342 -95.633116 +66858 456 217 201074799 377954 77.635 0.146 38.480437 -96.932543 +66859 178 86 93925511 115826 36.265 0.045 38.556181 -96.962420 +66860 1258 680 491295257 3225178 189.690 1.245 38.127280 -96.165629 +66861 3204 1749 537310812 16509566 207.457 6.374 38.367759 -97.008508 +66862 116 91 245925270 1054799 94.952 0.407 38.154999 -96.556128 +66863 63 30 2320969 0 0.896 0.000 37.832866 -96.081781 +66864 456 205 105382637 1885287 40.688 0.728 38.354887 -95.981495 +66865 1124 479 396227360 2897832 152.984 1.119 38.223476 -96.293207 +66866 1789 822 362840331 694175 140.093 0.268 38.173042 -97.107439 +66868 764 349 332322912 4801318 128.311 1.854 38.544773 -95.979419 +66869 748 365 310043241 1659038 119.708 0.641 38.463875 -96.516685 +66870 166 123 203740566 647560 78.665 0.250 37.944163 -96.029569 +66871 1346 597 351963742 2464055 135.894 0.951 38.362643 -95.610225 +66872 1134 533 379224101 1331945 146.419 0.514 38.790751 -96.768749 +66873 319 162 220934745 671598 85.303 0.259 38.618816 -96.679596 +66901 6605 3108 637968777 3643401 246.321 1.407 39.560035 -97.638951 +66930 186 135 193730314 475552 74.800 0.184 39.706683 -97.479485 +66932 157 87 187222967 49400 72.287 0.019 39.779487 -98.930885 +66933 298 186 213518344 961161 82.440 0.371 39.675419 -96.872319 +66935 2563 1416 381027886 894934 147.116 0.346 39.840598 -97.631694 +66936 344 258 354407202 661761 136.837 0.256 39.921187 -98.316114 +66937 893 437 382911102 2405710 147.843 0.929 39.587719 -97.270636 +66938 1005 513 279505339 1529667 107.918 0.591 39.574462 -97.413988 +66939 537 291 285414464 1131499 110.199 0.437 39.852860 -97.904290 +66940 339 233 180961985 290018 69.870 0.112 39.807788 -97.448891 +66941 242 173 309133146 628132 119.357 0.243 39.835576 -98.438848 +66942 247 155 254994873 970706 98.454 0.375 39.805279 -98.000706 +66943 505 282 239645699 619873 92.528 0.239 39.671811 -96.966281 +66944 195 157 227540178 520405 87.854 0.201 39.839676 -97.303062 +66945 1096 499 267919409 2539492 103.444 0.981 39.887172 -96.878258 +66946 126 76 133852090 812967 51.681 0.314 39.966411 -97.004607 +66948 494 259 295913259 3822561 114.253 1.476 39.598250 -97.852349 +66949 668 374 309104747 249804 119.346 0.096 39.643570 -98.186309 +66951 764 389 427285853 1199142 164.976 0.463 39.850601 -99.019698 +66952 499 358 625240758 1434152 241.407 0.554 39.835805 -98.604785 +66953 703 289 198796469 551280 76.756 0.213 39.690191 -97.106623 +66955 114 71 104804180 278387 40.465 0.107 39.967870 -97.297736 +66956 1157 675 514842709 3933471 198.782 1.519 39.794314 -98.227649 +66958 314 181 212353769 956932 81.990 0.369 39.889446 -97.177186 +66959 203 126 137492023 302781 53.086 0.117 39.923008 -97.529645 +66960 167 107 151706749 166733 58.574 0.064 39.936764 -97.434754 +66962 264 134 132991135 276658 51.348 0.107 39.599322 -97.114331 +66963 135 104 204668516 451700 79.023 0.174 39.636931 -97.999399 +66964 204 147 146223106 1186066 56.457 0.458 39.941213 -97.804925 +66966 624 353 263529901 1824225 101.749 0.704 39.775329 -97.766299 +66967 2096 1165 651650032 784304 251.603 0.303 39.819725 -98.794227 +66968 1626 804 331699014 1968912 128.070 0.760 39.824736 -97.065893 +66970 97 181 86790538 4028041 33.510 1.555 39.948228 -98.034453 +67001 1676 527 61303312 84970 23.669 0.033 37.758455 -97.629161 +67002 13764 5076 95560921 441519 36.896 0.170 37.699294 -97.108354 +67003 2626 1406 641726796 2566251 247.772 0.991 37.099126 -98.073777 +67004 827 397 265120140 149855 102.363 0.058 37.278725 -97.753071 +67005 16535 7456 400505825 6226000 154.636 2.404 37.065173 -96.995733 +67008 556 287 318578668 376020 123.004 0.145 37.486787 -96.779441 +67009 856 413 344198217 335931 132.896 0.130 37.218022 -98.266833 +67010 13890 5751 271482714 2554283 104.820 0.986 37.664428 -96.976424 +67012 61 37 25072269 99596 9.680 0.038 37.673665 -96.546550 +67013 3145 1325 203758976 1351283 78.672 0.522 37.381869 -97.268220 +67016 530 221 781857 0 0.302 0.000 37.886791 -97.514822 +67017 2294 886 168155823 0 64.925 0.000 37.826286 -97.111635 +67018 149 89 169907364 185708 65.602 0.072 37.072631 -97.859040 +67019 945 442 262719763 545143 101.437 0.210 37.306570 -96.777587 +67020 1689 751 329121983 2705598 127.075 1.045 38.007923 -97.670641 +67021 65 45 100524856 0 38.813 0.000 37.778497 -98.915310 +67022 1461 922 493526193 44955 190.552 0.017 37.076549 -97.632662 +67023 230 130 371904372 733304 143.593 0.283 37.346116 -96.592204 +67024 849 501 567559648 4678454 219.136 1.806 37.110747 -96.486330 +67025 3884 1507 296090379 6706177 114.321 2.589 37.643002 -97.785091 +67026 4845 1838 253901367 917651 98.032 0.354 37.510870 -97.494299 +67028 225 152 464883939 449796 179.493 0.174 37.458774 -98.936392 +67029 1063 591 1018640605 1886394 393.299 0.728 37.171432 -99.279961 +67030 2659 886 105012448 343243 40.546 0.133 37.785616 -97.546810 +67031 2308 858 289541027 22561 111.792 0.009 37.399302 -97.639518 +67035 970 482 589812253 589460 227.728 0.228 37.649234 -98.387334 +67036 151 81 100293541 0 38.724 0.000 37.297567 -97.876668 +67037 26577 10460 145627673 1420401 56.227 0.548 37.571767 -97.217333 +67038 602 276 464887045 627247 179.494 0.242 37.101790 -96.723843 +67039 3395 1365 271800545 458305 104.943 0.177 37.527668 -96.974290 +67041 229 77 730724 0 0.282 0.000 38.054139 -97.129971 +67042 17969 7283 663620500 31933160 256.225 12.329 37.857264 -96.780718 +67045 3644 2034 1144516412 6665471 441.900 2.574 37.866145 -96.345282 +67047 731 715 414986334 11392993 160.227 4.399 37.628305 -96.056963 +67049 79 41 111937296 0 43.219 0.000 37.177439 -97.846362 +67050 1844 683 116567242 505844 45.007 0.195 37.674351 -97.675588 +67051 456 224 187657267 575824 72.455 0.222 37.089302 -97.196565 +67052 8325 2924 134128403 1654457 51.787 0.639 37.657709 -97.575586 +67053 539 231 857166 0 0.331 0.000 38.246815 -97.346339 +67054 1167 610 602749622 230362 232.723 0.089 37.575040 -99.316072 +67055 71 38 2249995 2895 0.869 0.001 37.790028 -97.197687 +67056 2935 1268 209959459 0 81.066 0.000 38.021951 -97.525412 +67057 241 164 424293336 817122 163.821 0.315 37.071203 -98.779531 +67058 2093 1052 560618920 548097 216.456 0.212 37.317916 -98.061352 +67059 1042 429 730962793 181446 282.226 0.070 37.636944 -99.097274 +67060 13733 5217 69253830 142209 26.739 0.055 37.542973 -97.363698 +67061 171 106 296090586 972272 114.321 0.375 37.092794 -98.381734 +67062 4156 1614 74556901 0 28.787 0.000 38.145186 -97.437098 +67063 3942 1591 348545269 4914236 134.574 1.897 38.340735 -97.233749 +67065 228 109 198288795 32935 76.560 0.013 37.464925 -98.516204 +67066 302 140 139940872 31363 54.031 0.012 37.769997 -98.766895 +67067 1541 599 11753847 56118 4.538 0.022 37.793161 -97.274036 +67068 4354 2099 742216474 2706468 286.571 1.045 37.617195 -98.105834 +67070 1169 651 289180376 463744 111.653 0.179 37.079078 -98.525994 +67071 94 106 537527735 545059 207.541 0.210 37.262719 -98.882142 +67072 244 152 308820545 1509208 119.236 0.583 37.544533 -96.611371 +67073 309 136 77727055 110122 30.011 0.043 38.383819 -97.328482 +67074 1741 735 463462838 1306715 178.944 0.505 37.670731 -96.723859 +67101 3604 1361 38841478 509577 14.997 0.197 37.785255 -97.464268 +67103 326 144 134167684 0 51.802 0.000 37.266320 -97.560608 +67104 2506 1373 768370603 1994569 296.670 0.770 37.265078 -98.664433 +67105 190 110 130663973 0 50.450 0.000 37.233364 -97.675780 +67106 388 167 129205649 0 49.887 0.000 37.467123 -97.757279 +67107 2979 1322 297214382 159535 114.755 0.062 38.194214 -97.547655 +67108 1696 663 177228359 8707423 68.428 3.362 37.812835 -97.685161 +67109 418 204 505490836 47600 195.171 0.018 37.561275 -99.485817 +67110 8415 3303 136546279 1675941 52.721 0.647 37.465896 -97.226554 +67111 352 162 151253656 1083111 58.399 0.418 37.614563 -97.936927 +67112 227 143 159675384 67675 61.651 0.026 37.467197 -98.419349 +67114 21852 9295 615281152 1386059 237.561 0.535 38.075620 -97.289251 +67117 1769 746 2619955 8127 1.012 0.003 38.074214 -97.346242 +67118 810 351 205615573 694003 79.389 0.268 37.481665 -97.854212 +67119 1457 656 207475927 3221475 80.107 1.244 37.238853 -97.195177 +67120 1358 554 105207886 849857 40.621 0.328 37.469282 -97.373531 +67122 221 153 317333845 2104764 122.523 0.813 37.619001 -96.428116 +67123 741 317 134105144 525439 51.778 0.203 37.948534 -96.996749 +67124 8203 3796 711717099 1334252 274.796 0.515 37.634439 -98.773642 +67127 701 369 511571298 1325852 197.519 0.512 37.164820 -99.487114 +67131 258 108 92042010 395196 35.538 0.153 37.426970 -96.955448 +67132 410 155 224881596 1357458 86.827 0.524 37.850881 -96.584695 +67133 6379 2309 109267385 20339 42.188 0.008 37.569962 -97.107428 +67134 420 178 214798896 129989 82.934 0.050 37.490343 -98.675037 +67135 3493 1350 267365264 364879 103.230 0.141 37.917958 -97.460022 +67137 634 411 236862046 1287762 91.453 0.497 37.633843 -96.221972 +67138 397 194 259639955 183193 100.248 0.071 37.276388 -98.415842 +67140 802 382 349022285 0 134.758 0.000 37.079302 -97.356496 +67142 445 270 318239707 223881 122.873 0.086 37.452585 -98.113620 +67143 58 49 101721512 81469 39.275 0.031 37.341823 -98.963403 +67144 2716 1055 116746204 40743 45.076 0.016 37.819170 -97.003301 +67146 1830 794 205410557 1179658 79.309 0.455 37.384484 -97.104645 +67147 9908 3739 272705152 1625647 105.292 0.628 37.860576 -97.312763 +67149 988 392 144144469 785938 55.654 0.303 37.540156 -97.629512 +67150 12 17 10566198 0 4.080 0.000 37.007406 -98.222462 +67151 479 204 78689128 47502 30.382 0.018 38.142146 -97.257065 +67152 9541 4295 596060784 1697851 230.140 0.656 37.260289 -97.413396 +67154 1510 546 204676453 87230 79.026 0.034 37.978385 -97.125224 +67155 166 112 694748903 627873 268.244 0.242 37.274948 -99.137561 +67156 15269 6499 650808697 4573571 251.279 1.766 37.255658 -96.961559 +67159 169 106 211188284 100476 81.540 0.039 37.426270 -98.309908 +67202 1393 949 2562503 134813 0.989 0.052 37.686984 -97.334920 +67203 31287 14847 18373313 979085 7.094 0.378 37.700763 -97.365701 +67204 21194 8599 41714086 1332801 16.106 0.515 37.767146 -97.360492 +67205 16811 5909 45708453 4290134 17.648 1.656 37.749473 -97.423461 +67206 15186 7237 26613915 335457 10.276 0.130 37.704071 -97.225463 +67207 26978 12386 26025960 133220 10.049 0.051 37.665576 -97.227205 +67208 18161 8239 12916600 25717 4.987 0.010 37.703847 -97.279266 +67209 13654 5438 32269434 1114383 12.459 0.430 37.651239 -97.428543 +67210 10339 3797 35120524 116384 13.560 0.045 37.630260 -97.246498 +67211 20644 9790 13305171 0 5.137 0.000 37.666880 -97.317453 +67212 44707 19428 32871644 1375078 12.692 0.531 37.702404 -97.438899 +67213 21368 9976 16789151 290574 6.482 0.112 37.667476 -97.364194 +67214 16542 7980 14175159 2055 5.473 0.001 37.707178 -97.317750 +67215 5708 2015 42969796 727282 16.591 0.281 37.615560 -97.420717 +67216 24041 9936 31767750 1958460 12.266 0.756 37.611061 -97.312708 +67217 30186 12661 37946002 1109326 14.651 0.428 37.618074 -97.362465 +67218 22772 11451 12942649 0 4.997 0.000 37.668511 -97.280418 +67219 12121 4629 37562620 429963 14.503 0.166 37.771477 -97.318704 +67220 14214 5990 19038910 192913 7.351 0.074 37.751156 -97.278361 +67223 513 180 9596532 50303 3.705 0.019 37.742432 -97.495544 +67226 17757 7960 69775961 357905 26.941 0.138 37.773213 -97.213035 +67227 344 131 14218215 0 5.490 0.000 37.628186 -97.499679 +67228 2033 656 20569998 28740 7.942 0.011 37.769004 -97.169689 +67230 9959 3551 25560541 549765 9.869 0.212 37.687431 -97.171336 +67232 298 156 8951839 95336 3.456 0.037 37.636292 -97.170212 +67235 11446 4057 28517765 218028 11.011 0.084 37.688993 -97.500046 +67260 0 0 537081 0 0.207 0.000 37.719376 -97.293576 +67301 13556 6192 543039335 10624306 209.669 4.102 37.208230 -95.756081 +67330 1535 631 153513061 1217537 59.272 0.470 37.158055 -95.309148 +67332 207 94 58578884 720080 22.617 0.278 37.043368 -95.236567 +67333 3089 1396 132457831 1101687 51.142 0.425 37.045391 -95.882452 +67334 104 70 1057055 718 0.408 0.000 37.023897 -96.177144 +67335 3671 1641 334440055 4339600 129.128 1.676 37.275391 -95.527461 +67336 1683 885 244974168 2941970 94.585 1.136 37.095595 -95.064296 +67337 13493 6471 373031919 516534 144.028 0.199 37.053665 -95.598198 +67340 355 182 2060589 0 0.796 0.000 37.059602 -95.713117 +67341 373 143 57295857 857836 22.122 0.331 37.344370 -95.428356 +67342 969 452 187592065 1154885 72.430 0.446 37.059534 -95.357301 +67344 877 460 447387395 7947471 172.737 3.069 37.287471 -95.953857 +67345 161 114 113076023 1192988 43.659 0.461 37.377620 -96.199264 +67346 372 228 298684085 2765484 115.323 1.068 37.324395 -96.434690 +67347 431 242 150196511 1722658 57.991 0.665 37.154406 -95.951539 +67349 1034 644 603495391 5874489 233.011 2.268 37.494403 -96.297916 +67351 391 199 110573072 185570 42.693 0.072 37.143556 -95.568937 +67352 593 335 275892755 3143022 106.523 1.214 37.407194 -96.022826 +67353 582 353 210705035 2672369 81.354 1.032 37.308381 -96.317193 +67354 825 367 145692186 157399 56.252 0.061 37.209440 -95.409185 +67355 213 111 61965060 431741 23.925 0.167 37.046836 -96.010838 +67356 2834 1341 301405785 5676845 116.373 2.192 37.176257 -95.145772 +67357 13006 6126 458615831 8324607 177.073 3.214 37.345929 -95.261617 +67360 409 247 125467061 941094 48.443 0.363 37.038024 -96.106561 +67361 1841 1062 620843290 5503668 239.709 2.125 37.137644 -96.217607 +67363 78 47 5639977 16917 2.178 0.007 37.339471 -95.723052 +67364 311 141 12191650 39005 4.707 0.015 37.060387 -95.810429 +67401 51499 22326 621620301 1394170 240.009 0.538 38.831846 -97.654491 +67410 10141 4615 832253444 3539725 321.335 1.367 38.956476 -97.219090 +67416 1146 476 160405490 108204 61.933 0.042 38.673059 -97.582120 +67417 179 93 177927640 21866 68.698 0.008 39.444585 -97.545188 +67418 246 158 346228385 528963 133.680 0.204 39.174886 -98.046452 +67420 4721 2283 1085595259 1008810 419.151 0.390 39.400935 -98.085468 +67422 1366 549 170223908 184727 65.724 0.071 39.021084 -97.585249 +67423 316 165 136542259 333279 52.719 0.129 38.951230 -97.975323 +67425 689 327 568210180 1339762 219.387 0.517 38.785097 -97.919607 +67427 408 216 155027252 49003 59.856 0.019 38.498461 -98.399346 +67428 1465 636 269077691 437401 103.891 0.169 38.369631 -97.417862 +67430 611 401 343848603 24210886 132.761 9.348 39.531091 -98.424914 +67431 2471 1020 312457899 1739667 120.641 0.672 38.951046 -97.012425 +67432 6019 2888 962657898 3782733 371.684 1.461 39.329343 -97.193388 +67436 636 360 318440820 250691 122.951 0.097 39.269705 -97.735810 +67437 1161 639 355939821 1023853 137.429 0.395 39.515079 -98.555646 +67438 300 152 195148920 576004 75.347 0.222 38.495918 -97.283406 +67439 3674 1424 552274356 1407209 213.234 0.543 38.749782 -98.220447 +67441 1115 440 100532002 1022528 38.816 0.395 38.880034 -97.105222 +67442 266 116 122068776 56753 47.131 0.022 38.655900 -97.772084 +67443 1794 708 218791246 183192 84.476 0.071 38.380616 -97.525768 +67444 527 403 425546789 7496714 164.305 2.894 38.544862 -98.136257 +67445 680 385 304588337 44832 117.602 0.017 39.371393 -97.824145 +67446 617 349 298813909 19701641 115.373 7.607 39.473766 -98.305489 +67447 320 157 196934809 388452 76.037 0.150 39.485459 -96.972954 +67448 1374 612 578078081 1101759 223.197 0.425 38.649547 -97.412961 +67449 3351 1692 396969084 3437259 153.271 1.327 38.676644 -96.893941 +67450 555 317 131045239 111550 50.597 0.043 38.615016 -98.451374 +67451 948 486 378063128 1759021 145.971 0.679 38.703171 -97.121580 +67452 201 143 338173184 210422 130.569 0.081 39.240071 -98.371607 +67454 563 303 92195714 1501715 35.597 0.580 38.698840 -98.112105 +67455 1980 1085 759126608 934097 293.100 0.361 39.020478 -98.165407 +67456 4736 1937 375155271 1287601 144.848 0.497 38.600676 -97.675387 +67457 878 374 240160915 105525 92.727 0.041 38.393628 -97.992841 +67458 261 127 162134164 334637 62.600 0.129 39.170754 -97.304396 +67459 251 117 183418119 327197 70.818 0.126 38.600789 -98.340484 +67460 15168 6788 595619956 1897018 229.970 0.732 38.382552 -97.699453 +67464 1090 710 297679031 8626884 114.935 3.331 38.559244 -97.897144 +67466 774 397 384820949 330060 148.580 0.127 39.327815 -97.472357 +67467 2904 1324 693890508 881360 267.913 0.340 39.142355 -97.695820 +67468 307 138 107584084 990765 41.538 0.383 39.459493 -97.257263 +67470 456 225 128351162 18249 49.557 0.007 38.922632 -97.507598 +67473 1728 942 686544649 1280325 265.076 0.494 39.378744 -98.740576 +67474 224 152 237029654 235187 91.518 0.091 39.576622 -98.716940 +67475 283 133 70678080 48537 27.289 0.019 38.590043 -97.054948 +67478 89 62 2620249 0 1.012 0.000 39.386063 -97.938827 +67480 1805 768 422762642 1069047 163.230 0.413 38.965482 -97.402962 +67481 590 421 482885486 1221407 186.443 0.472 39.012750 -98.380935 +67482 99 43 254251 0 0.098 0.000 39.026891 -97.259713 +67483 338 173 214336110 472453 82.756 0.182 38.556735 -97.203516 +67484 891 422 361416195 366943 139.544 0.142 38.993508 -97.845300 +67485 339 180 201546947 362919 77.818 0.140 39.283399 -98.501910 +67487 1422 609 250263151 713074 96.627 0.275 39.179061 -97.071219 +67490 1055 572 387677638 181519 149.683 0.070 38.788536 -98.439661 +67491 399 176 186313194 87303 71.936 0.034 38.387496 -97.902441 +67492 166 80 73502295 411886 28.379 0.159 38.809283 -96.962784 +67501 27212 11658 476889426 2929739 184.128 1.131 37.977493 -97.926452 +67502 23739 10546 203341660 279369 78.511 0.108 38.126736 -97.929949 +67505 2457 1207 7245167 214957 2.797 0.083 38.031355 -97.945800 +67510 281 131 140125832 44438 54.103 0.017 38.006359 -98.206324 +67511 318 171 164683763 0 63.585 0.000 38.432498 -99.047255 +67512 234 123 90839757 833041 35.073 0.322 38.224569 -98.335159 +67513 93 58 147318661 19862 56.880 0.008 38.445112 -99.538302 +67514 765 356 224963555 218064 86.859 0.084 37.861953 -98.202381 +67515 63 43 88116586 0 34.022 0.000 38.624639 -100.068657 +67516 447 247 438823219 237757 169.431 0.092 38.385737 -99.686820 +67518 69 39 376265052 0 145.277 0.000 38.414590 -100.167102 +67519 193 120 184397187 0 71.196 0.000 37.930345 -99.091082 +67520 415 200 321820642 15416 124.256 0.006 38.589677 -99.187712 +67521 155 133 429760599 109897 165.932 0.042 38.628167 -99.712902 +67522 2049 805 160160437 415665 61.838 0.160 38.122196 -97.747612 +67523 373 200 385981282 338781 149.028 0.131 38.199262 -99.544182 +67524 630 296 138338290 20718 53.413 0.008 38.369422 -98.378618 +67525 1119 551 357546257 1585860 138.049 0.612 38.572533 -98.563033 +67526 2759 1325 436961929 842880 168.712 0.325 38.332756 -98.544743 +67529 365 191 282559194 26137 109.097 0.010 38.076234 -99.254382 +67530 19699 8706 636070610 2372665 245.588 0.916 38.352059 -98.794484 +67543 2125 879 239063454 1147570 92.303 0.443 37.878040 -97.799264 +67544 3216 1625 533670822 8797327 206.051 3.397 38.586791 -98.759205 +67545 215 120 178865901 1769209 69.061 0.683 38.165916 -98.610758 +67546 2597 1048 340101588 740287 131.314 0.286 38.236266 -97.818712 +67547 1769 1000 779496685 214599 300.965 0.083 37.930565 -99.455866 +67548 1467 801 292031748 65331 112.754 0.025 38.589785 -99.344998 +67550 5905 2586 818250976 425794 315.928 0.164 38.185383 -99.124590 +67552 720 354 497445970 0 192.065 0.000 37.866129 -99.228430 +67553 114 65 23229570 7431 8.969 0.003 38.669467 -99.308357 +67554 4334 1992 471219845 270462 181.939 0.104 38.372211 -98.195208 +67556 320 211 460196131 308057 177.683 0.119 38.616492 -99.523571 +67557 723 323 354408998 74976 136.838 0.029 37.934601 -98.958462 +67559 52 42 204984957 65957 79.145 0.025 38.385868 -99.454502 +67560 1740 898 860135708 233803 332.100 0.090 38.399335 -99.939209 +67561 1538 671 168422147 1636101 65.028 0.632 38.109017 -98.096853 +67563 371 178 270115672 0 104.292 0.000 37.844005 -99.556354 +67564 308 167 208525839 125224 80.512 0.048 38.531104 -98.930946 +67565 429 256 241825753 173822 93.369 0.067 38.600591 -99.044062 +67566 650 245 153624437 146923 59.315 0.057 37.933172 -98.097399 +67567 526 273 244451095 72305 94.383 0.028 38.272185 -98.979093 +67568 309 149 166297525 94313 64.208 0.036 38.006314 -98.316595 +67570 1338 615 359935327 27295678 138.972 10.539 37.787407 -97.964176 +67572 456 273 545565861 11709397 210.644 4.521 38.689492 -99.907938 +67573 170 91 170414916 1269695 65.798 0.490 38.264697 -98.423563 +67574 252 144 315234594 187603 121.713 0.072 38.225884 -99.384908 +67575 465 273 419427362 65419 161.942 0.025 38.411940 -99.257638 +67576 1915 975 828132151 234196 319.744 0.090 38.035977 -98.795217 +67578 1405 815 576420192 5040637 222.557 1.946 37.991416 -98.574156 +67579 3095 1254 580917932 1726458 224.294 0.667 38.188579 -98.235601 +67581 416 244 246544501 405949 95.191 0.157 37.977536 -98.408746 +67583 1022 557 587355897 558323 226.779 0.216 37.799431 -98.475000 +67584 269 185 647657449 73661 250.062 0.028 38.682589 -100.163316 +67601 23797 10733 998433801 349587 385.497 0.135 38.876881 -99.349544 +67621 393 229 157898108 379037 60.965 0.146 39.821165 -99.132679 +67622 599 306 341116000 16257 131.706 0.006 39.895868 -99.735065 +67623 270 166 391145345 1054495 151.022 0.407 39.444471 -98.954264 +67625 257 175 287316537 55472 110.934 0.021 39.389004 -99.685595 +67626 145 108 239748602 747921 92.567 0.289 38.881563 -98.716958 +67628 78 54 134720935 392928 52.016 0.152 39.627384 -99.001622 +67629 143 88 231457959 10612 89.366 0.004 39.699951 -100.199353 +67631 249 151 429759781 78352 165.931 0.030 39.009136 -100.081392 +67632 227 132 133408678 46686 51.509 0.018 39.343605 -99.580695 +67634 301 204 306842539 17165493 118.473 6.628 38.819004 -98.608832 +67635 169 92 274713420 5302 106.067 0.002 39.590217 -100.433582 +67637 2651 1283 870152998 14360135 335.968 5.544 38.938377 -99.605330 +67638 230 149 178502650 93394 68.920 0.036 39.614201 -98.854602 +67639 193 113 160171980 508880 61.843 0.196 39.636857 -99.308434 +67640 505 259 271754402 328195 104.925 0.127 38.914134 -99.049114 +67642 1729 928 597653462 238457 230.755 0.092 39.359078 -99.844495 +67643 195 169 343790129 367480 132.738 0.142 39.677205 -100.304033 +67644 264 223 205031900 19857375 79.163 7.667 39.643724 -99.157743 +67645 546 353 828836815 214490 320.016 0.083 39.590207 -99.873738 +67646 718 394 444281439 419902 171.538 0.162 39.638451 -99.577449 +67647 256 142 217212742 311283 83.866 0.120 39.934554 -99.544883 +67648 549 341 435726339 15167952 168.235 5.856 39.087252 -98.580363 +67649 297 197 234010006 150649 90.352 0.058 39.126972 -98.679981 +67650 258 175 390896006 75923 150.926 0.029 39.372670 -100.102673 +67651 507 323 593727778 1264883 229.240 0.488 39.212864 -99.052635 +67653 298 196 539536694 383444 208.316 0.148 39.906700 -100.208054 +67654 4362 1792 898001140 7684304 346.720 2.967 39.823962 -99.949132 +67656 156 116 315579560 209199 121.846 0.081 38.989343 -99.750361 +67657 429 239 349253841 143895 134.848 0.056 39.202293 -99.616784 +67658 120 69 207004709 379242 79.925 0.146 39.103062 -98.947717 +67659 154 90 295569712 65736 114.120 0.025 39.322801 -100.005362 +67660 81 44 49184417 0 18.990 0.000 38.718247 -99.156555 +67661 3483 1795 1011360751 866440 390.489 0.335 39.820881 -99.318975 +67663 2615 1316 798331049 1463817 308.237 0.565 39.212793 -99.354247 +67664 305 155 261858774 100613 101.104 0.039 39.818227 -99.583409 +67665 5162 2721 836170967 471409 322.847 0.182 38.849085 -98.882530 +67667 204 84 293235 0 0.113 0.000 38.713130 -99.332501 +67669 1725 968 852827028 8972134 329.278 3.464 39.458229 -99.344150 +67671 1714 742 334504104 79645 129.153 0.031 38.847160 -99.134667 +67672 2359 1227 815961533 210503 315.045 0.081 39.008413 -99.912006 +67673 108 89 322946986 301731 124.691 0.116 39.152204 -98.818662 +67674 55 33 12683374 0 4.897 0.000 38.863858 -99.068721 +67675 217 143 251661075 637986 97.167 0.246 39.446185 -99.090258 +67701 6502 2893 1255385446 55182 484.707 0.021 39.395154 -101.061478 +67730 1612 899 991498240 259313 382.820 0.100 39.808975 -101.111247 +67731 675 382 800828596 751187 309.202 0.290 39.765919 -101.537324 +67732 543 273 799518412 24166 308.696 0.009 39.424720 -101.343783 +67733 149 80 501386070 0 193.586 0.000 39.319367 -101.512704 +67734 182 86 240289519 25599 92.776 0.010 39.523518 -100.895989 +67735 5476 2851 1584643531 459741 611.834 0.178 39.344787 -101.753217 +67736 228 145 617917085 17263 238.579 0.007 38.851088 -100.479471 +67737 444 236 367209374 17251 141.780 0.007 39.129483 -100.478093 +67738 520 283 769710048 169173 297.187 0.065 38.982284 -100.639410 +67739 258 183 352658033 27288 136.162 0.011 39.878434 -100.812798 +67740 1724 857 1130937762 327313 436.658 0.126 39.374969 -100.368493 +67741 326 188 454435744 88507 175.459 0.034 39.402735 -101.994659 +67743 158 74 273142752 0 105.461 0.000 39.372796 -101.247184 +67744 185 113 363359186 18441 140.294 0.007 39.843990 -100.939843 +67745 322 185 683196889 95402 263.784 0.037 39.807589 -101.345391 +67747 158 78 323259555 0 124.811 0.000 39.042010 -101.065079 +67748 2544 1257 1202168805 247579 464.160 0.096 39.039785 -100.859850 +67749 2317 1348 1188804863 1018312 459.000 0.393 39.834858 -100.562519 +67751 259 142 231726551 22493 89.470 0.009 39.125650 -100.345765 +67752 1399 635 746463193 60601 288.211 0.023 38.994968 -100.251374 +67753 530 247 628536341 139153 242.679 0.054 39.432606 -100.747899 +67756 2016 1118 1675866075 1932780 647.056 0.746 39.797204 -101.836735 +67757 482 259 531810087 191988 205.333 0.074 39.552908 -100.617249 +67758 1016 556 1120455853 49512 432.610 0.019 38.856062 -101.764693 +67761 249 123 1051815345 115828 406.108 0.045 38.969188 -101.531917 +67762 288 130 566954547 49286 218.902 0.019 38.905865 -101.975293 +67764 345 228 1327709247 163771 512.631 0.063 38.926382 -101.209985 +67801 30559 10529 980669235 1425609 378.639 0.550 37.723603 -100.057186 +67831 1117 599 1034847024 1545538 399.557 0.597 37.185621 -99.795980 +67834 964 425 508163015 248147 196.203 0.096 37.519051 -99.633312 +67835 2954 1148 1131724513 430992 436.961 0.166 37.966772 -100.325941 +67836 147 77 160143519 1047160 61.832 0.404 38.020556 -102.008235 +67837 903 343 622960534 431768 240.526 0.167 37.554824 -100.675137 +67838 982 368 292597069 109598 112.972 0.042 38.084106 -101.127740 +67839 1416 822 1466574044 551220 566.247 0.213 38.470501 -100.441624 +67840 103 81 89261130 26689 34.464 0.010 37.057346 -100.043728 +67841 339 152 254004159 103473 98.072 0.040 37.634648 -100.242500 +67842 427 220 391311234 1430050 151.086 0.552 37.561138 -99.769712 +67843 165 98 447309 0 0.173 0.000 37.730266 -99.936956 +67844 894 420 636927434 38654 245.919 0.015 37.385860 -100.194588 +67846 33696 12229 2061906442 1059395 796.107 0.409 38.034156 -100.768068 +67849 380 205 322386653 83434 124.474 0.032 38.151242 -99.708571 +67850 335 165 322401646 0 124.480 0.000 38.586731 -100.614162 +67851 2691 883 553423253 352654 213.678 0.136 38.068425 -101.021258 +67853 860 346 785890707 198111 303.434 0.076 37.885578 -100.528171 +67854 1407 689 1452020160 541533 560.628 0.209 38.104952 -100.017067 +67855 1976 844 1162137505 196869 448.704 0.076 37.551783 -101.685232 +67857 174 91 828115040 143170 319.737 0.055 37.980694 -101.555227 +67859 735 277 458414812 1165575 176.995 0.450 37.235172 -100.770115 +67860 2878 1128 1522091609 936848 587.683 0.362 38.008385 -101.307036 +67861 1962 921 1530545044 61987 590.947 0.024 38.470438 -101.382987 +67862 302 166 655911969 19085 253.249 0.007 37.552511 -101.948962 +67863 305 149 440983361 0 170.265 0.000 38.573114 -101.216506 +67864 2227 1011 1218671746 1139400 470.532 0.440 37.176517 -100.317270 +67865 1081 484 711100204 208282 274.557 0.080 37.435511 -99.968370 +67867 1578 600 573258720 564098 221.336 0.218 37.570246 -100.463734 +67868 198 77 150735016 0 58.199 0.000 37.821113 -100.708784 +67869 1492 591 811671559 2449501 313.388 0.946 37.236184 -100.566487 +67870 1765 694 661351090 148305 255.349 0.057 37.522178 -101.003499 +67871 4973 2217 2206094693 417054 851.778 0.161 38.511485 -100.888344 +67876 1156 487 628211946 144097 242.554 0.056 37.862844 -99.743464 +67877 2255 893 648871628 506814 250.531 0.196 37.554925 -100.843926 +67878 2436 1105 1930557497 1781042 745.392 0.688 38.028056 -101.828261 +67879 1247 629 2016176814 0 778.450 0.000 38.480408 -101.805984 +67880 7878 2969 1649949736 911245 637.049 0.352 37.583432 -101.313039 +67882 346 149 260411381 305252 100.545 0.118 37.804181 -99.879885 +67901 22073 7727 897846181 1014546 346.660 0.392 37.097799 -100.913292 +67950 2558 1141 560491951 227203 216.407 0.088 37.046857 -101.867879 +67951 4981 1996 1322811470 1326 510.740 0.001 37.160599 -101.349103 +67952 710 281 465406529 463610 179.694 0.179 37.292954 -101.149465 +67953 144 83 670131220 450110 258.739 0.174 37.250679 -101.890965 +67954 661 293 750311323 23470 289.697 0.009 37.208870 -101.641311 +68001 77 51 7405512 4475 2.859 0.002 41.331136 -96.960029 +68002 2150 892 187517643 1564954 72.401 0.604 41.499022 -96.337716 +68003 4284 2056 321232101 8505361 124.028 3.284 41.081263 -96.382497 +68004 885 404 203825954 606643 78.698 0.234 42.009736 -96.623048 +68005 22132 9880 46824703 2949803 18.079 1.139 41.142686 -95.892969 +68007 7612 2718 93035317 304804 35.921 0.118 41.367445 -96.190097 +68008 12285 4973 343478275 3973667 132.618 1.534 41.546712 -96.162811 +68010 745 15 3757601 103362 1.451 0.040 41.255102 -96.132638 +68014 287 145 99417025 182161 38.385 0.070 41.282025 -96.961996 +68015 1151 520 141224502 1453586 54.527 0.561 41.385580 -96.643418 +68016 413 331 2005624 1647692 0.774 0.636 41.041448 -96.105394 +68017 1692 664 185194843 220530 71.504 0.085 41.053678 -96.657761 +68018 516 194 113268308 655472 43.733 0.253 41.302097 -96.615195 +68019 550 265 191161350 109500 73.808 0.042 41.781019 -96.375352 +68020 749 427 210430467 5992991 81.248 2.314 41.971179 -96.264175 +68022 16422 6295 98065764 850943 37.863 0.329 41.278064 -96.246536 +68023 2536 1079 91036549 1675379 35.149 0.647 41.447225 -96.016389 +68025 30376 13728 322063288 14210594 124.349 5.487 41.437235 -96.487880 +68028 10839 3797 166555690 5402241 64.308 2.086 41.105185 -96.258314 +68029 899 404 218495395 154195 84.362 0.060 41.657003 -96.273537 +68030 835 352 99615430 1911045 38.462 0.738 42.322905 -96.455432 +68031 1745 792 315175911 5055620 121.690 1.952 41.640586 -96.525171 +68033 392 152 84082413 273340 32.464 0.106 41.124967 -96.511022 +68034 886 352 86566507 8197 33.424 0.003 41.459558 -96.225269 +68036 402 253 158765882 3255541 61.300 1.257 41.387378 -96.952344 +68037 2286 977 150662684 5079722 58.171 1.961 40.983506 -96.130047 +68038 1280 664 254930498 1677547 98.429 0.648 41.947113 -96.452756 +68039 1421 357 112865051 2687952 43.577 1.038 42.116251 -96.345452 +68040 369 156 92107608 432967 35.563 0.167 41.283485 -96.734999 +68041 955 383 97603032 159082 37.685 0.061 41.241423 -96.493389 +68042 122 83 1693305 279812 0.654 0.108 41.098862 -96.437726 +68044 724 294 87354423 1993698 33.728 0.770 41.551677 -96.442191 +68045 1801 865 244481428 1136210 94.395 0.439 41.825554 -96.492473 +68046 25191 9295 70637905 2095066 27.273 0.809 41.121820 -96.052767 +68047 1614 755 326956234 618887 126.239 0.239 42.111188 -96.733089 +68048 12422 5363 249533840 8733437 96.346 3.372 40.984080 -95.942013 +68050 609 309 145739979 978611 56.271 0.378 41.300053 -96.842321 +68055 341 162 135970365 304255 52.498 0.117 42.054161 -96.472190 +68057 1544 763 316106619 3062464 122.049 1.182 41.661870 -96.723527 +68058 252 214 1572698 1886478 0.607 0.728 41.005824 -96.244785 +68059 3158 1320 126590024 3772843 48.877 1.457 41.064450 -96.158755 +68061 2504 1197 391618123 5116478 151.205 1.975 41.793192 -96.207830 +68062 311 130 109211431 218666 42.167 0.084 42.198845 -96.677510 +68063 234 135 4540549 12688 1.753 0.005 41.735320 -96.497082 +68064 3376 1677 124623248 8787287 48.117 3.393 41.355752 -96.357708 +68065 1510 648 235680373 1350979 90.997 0.522 41.068901 -96.839466 +68066 5640 2367 237092444 397177 91.542 0.153 41.186819 -96.627933 +68067 1288 413 146489360 162813 56.560 0.063 42.160437 -96.482508 +68068 127 49 442649 0 0.171 0.000 41.397892 -96.208503 +68069 2558 1386 78362680 10604077 30.256 4.094 41.241065 -96.315939 +68070 836 351 169061031 483868 65.275 0.187 41.196681 -96.800948 +68071 1934 564 194469862 2269031 75.085 0.876 42.236097 -96.471415 +68072 66 28 99803 0 0.039 0.000 41.609181 -96.504788 +68073 1960 769 111321627 7062174 42.982 2.727 41.256126 -96.415363 +68102 6102 3495 4645662 364982 1.794 0.141 41.262129 -95.933854 +68104 34664 15099 17058327 45443 6.586 0.018 41.295431 -96.002289 +68105 23842 10707 9746876 5709 3.763 0.002 41.240737 -95.963660 +68106 19936 9894 13054674 50523 5.040 0.020 41.238785 -96.002274 +68107 29491 9996 17081950 519194 6.595 0.200 41.208271 -95.953445 +68108 14664 5728 8351422 249682 3.225 0.096 41.237553 -95.930102 +68110 9173 3352 22322242 2352417 8.619 0.908 41.302503 -95.892521 +68111 23393 9665 13569629 19725 5.239 0.008 41.295458 -95.964916 +68112 11508 4668 39255444 2457400 15.157 0.949 41.374859 -95.959052 +68113 994 242 8163479 40088 3.152 0.015 41.117846 -95.906496 +68114 16928 8847 15042981 135727 5.808 0.052 41.263205 -96.050513 +68116 25429 9876 23303297 116043 8.997 0.045 41.298964 -96.167128 +68117 8032 3205 11798424 76308 4.555 0.029 41.207130 -96.000564 +68118 9389 3441 10427004 53429 4.026 0.021 41.263857 -96.179006 +68122 9794 3796 50063353 2167067 19.330 0.837 41.372501 -96.049201 +68123 27926 11280 59381093 3488351 22.927 1.347 41.101821 -95.943504 +68124 15690 7074 14864659 89051 5.739 0.034 41.235473 -96.051334 +68127 21117 10282 17229210 58762 6.652 0.023 41.205610 -96.049760 +68128 17784 7333 16587189 8905 6.404 0.003 41.182074 -96.065315 +68130 17972 6983 19764618 561417 7.631 0.217 41.235704 -96.195354 +68131 12302 6535 5270224 0 2.035 0.000 41.264566 -95.964480 +68132 14101 6549 6813565 6693 2.631 0.003 41.262331 -96.001137 +68133 9703 3275 45569788 530086 17.595 0.205 41.112563 -95.995482 +68134 28257 13213 22155789 60020 8.554 0.023 41.301477 -96.048846 +68135 25875 8450 20747084 567717 8.010 0.219 41.207379 -96.193646 +68136 13829 4941 22030699 272292 8.506 0.105 41.168702 -96.186946 +68137 24921 10541 21468364 111220 8.289 0.043 41.205825 -96.118601 +68138 12013 4742 31294556 680393 12.083 0.263 41.155995 -96.127966 +68142 3072 1262 48643756 112144 18.781 0.043 41.371146 -96.107080 +68144 24233 10374 19371385 45099 7.479 0.017 41.234983 -96.118450 +68147 10351 3916 13079652 4393 5.050 0.002 41.173061 -95.959746 +68152 5837 2572 35294242 179659 13.627 0.069 41.368529 -95.999998 +68154 22692 10476 16977410 199582 6.555 0.077 41.265139 -96.114445 +68157 5213 1979 6503544 33186 2.511 0.013 41.178455 -95.993951 +68164 27387 11865 23025222 591449 8.890 0.228 41.296881 -96.106748 +68178 1573 0 300473 0 0.116 0.000 41.265696 -95.947658 +68301 1466 587 261752004 1756652 101.063 0.678 40.458675 -96.532460 +68303 289 164 158649116 269565 61.255 0.104 40.268358 -97.428607 +68304 330 143 57003039 44174 22.009 0.017 40.878837 -96.397869 +68305 4389 2157 367377211 187492 141.845 0.072 40.368597 -95.864617 +68307 515 234 104810725 164052 40.468 0.063 40.788873 -96.131003 +68309 121 58 4737174 15934 1.829 0.006 40.055767 -96.567159 +68310 14546 6905 539607148 5953654 208.343 2.299 40.249821 -96.749490 +68313 900 393 194386851 1384853 75.053 0.535 40.783683 -97.271315 +68314 351 162 84556681 723840 32.648 0.279 41.011259 -97.035931 +68315 129 72 100280703 35360 38.719 0.014 40.252618 -97.544115 +68316 447 201 142965248 501315 55.199 0.194 41.024569 -97.626400 +68317 1495 624 116097369 0 44.825 0.000 40.671741 -96.507292 +68318 526 260 122680767 1570033 47.367 0.606 40.150996 -96.637561 +68319 552 266 180933271 1468363 69.859 0.567 40.937755 -97.759710 +68320 369 196 153103523 39413 59.114 0.015 40.487145 -95.939002 +68321 311 190 72669843 1074846 28.058 0.415 40.389213 -95.688270 +68322 440 225 144216408 114881 55.682 0.044 40.342479 -97.549592 +68323 315 221 280652659 3196545 108.361 1.234 40.142650 -96.382238 +68324 174 91 74658687 0 28.826 0.000 40.560049 -96.292163 +68325 232 143 130474715 169888 50.377 0.066 40.024095 -97.753101 +68326 241 109 117482644 115673 45.360 0.045 40.283408 -97.684246 +68327 299 184 82056838 202935 31.682 0.078 40.024106 -97.624004 +68328 429 215 87060623 873519 33.614 0.337 40.485026 -96.835829 +68329 673 338 188141883 465422 72.642 0.180 40.497921 -96.169239 +68331 961 401 130268018 925735 50.297 0.357 40.472865 -96.714782 +68332 146 83 115737633 75517 44.687 0.029 40.315108 -96.400251 +68333 8327 2995 299846319 3000258 115.771 1.158 40.622183 -96.949812 +68335 518 275 198781576 155434 76.750 0.060 40.274892 -97.804048 +68336 557 223 50681226 379863 19.568 0.147 40.965855 -96.690917 +68337 383 216 179190921 40642 69.186 0.016 40.098408 -95.831894 +68338 324 163 147839201 810646 57.081 0.313 40.313910 -97.264952 +68339 1311 498 112072289 1373482 43.271 0.530 40.732053 -96.870103 +68340 992 504 163227183 261168 63.022 0.101 40.125343 -97.755279 +68341 1041 477 256607751 2011903 99.077 0.777 40.381113 -96.920261 +68342 530 259 185754310 2149183 71.720 0.830 40.097171 -96.946317 +68343 1050 457 237542721 1103716 91.716 0.426 40.618234 -97.132103 +68344 441 214 104063559 251755 40.179 0.097 40.566742 -96.399847 +68345 269 157 126335267 292566 48.778 0.113 40.040583 -96.024862 +68346 493 209 140674597 1199823 54.315 0.463 40.657703 -96.025186 +68347 2570 953 88818031 128901 34.293 0.050 40.804571 -96.425835 +68348 256 137 101140513 123971 39.051 0.048 40.310315 -96.132908 +68349 1098 454 130254633 466573 50.292 0.180 40.831630 -96.296896 +68350 216 112 64427951 1896438 24.876 0.732 40.041679 -97.069689 +68351 853 412 238629866 461006 92.136 0.178 40.661361 -97.434635 +68352 5222 2775 752474623 6448650 290.532 2.490 40.142403 -97.229238 +68354 839 437 260210422 1844661 100.468 0.712 40.638978 -97.577161 +68355 5113 2570 391861651 2370842 151.299 0.915 40.109001 -95.567883 +68357 421 190 134031335 1317826 51.750 0.509 40.312925 -96.547756 +68358 1877 616 124442280 520661 48.047 0.201 40.531423 -96.608292 +68359 1585 775 319442360 484486 123.337 0.187 40.631292 -97.284829 +68360 501 207 56605306 450220 21.855 0.174 40.950556 -96.956412 +68361 2573 1215 250980266 70759 96.904 0.027 40.512146 -97.598807 +68362 46 27 12729491 19761 4.915 0.008 40.152250 -97.441445 +68364 142 73 345832 0 0.134 0.000 40.832667 -97.218787 +68365 245 122 141011868 284486 54.445 0.110 40.604554 -97.718432 +68366 1047 425 134350399 475452 51.873 0.184 40.974112 -96.434942 +68367 461 238 175112108 485137 67.611 0.187 41.039521 -97.396840 +68368 485 193 92166781 826807 35.586 0.319 40.557745 -96.822721 +68370 2075 1020 443584858 979711 171.269 0.378 40.139642 -97.547632 +68371 1467 682 202924394 840615 78.350 0.325 40.771376 -97.790140 +68372 2827 1033 93111444 2392047 35.951 0.924 40.608346 -96.605480 +68375 121 77 105829283 907315 40.861 0.350 40.033188 -97.456145 +68376 1445 767 382131836 772805 147.542 0.298 40.174357 -95.945332 +68377 425 202 137655822 1621524 53.149 0.626 40.213937 -97.019100 +68378 680 343 168916631 196026 65.219 0.076 40.385989 -96.018413 +68379 59 38 227491 0 0.088 0.000 40.519885 -95.867366 +68380 81 43 10456081 40643 4.037 0.016 40.243149 -96.384102 +68381 249 115 160753499 1473796 62.067 0.569 40.076649 -96.480625 +68382 41 20 104075 0 0.040 0.000 40.597299 -96.024060 +68401 717 322 115069964 1208855 44.429 0.467 40.738600 -97.591130 +68402 1210 478 85624418 0 33.060 0.000 40.907803 -96.857212 +68403 206 80 1659658 3130 0.641 0.001 40.920637 -96.168023 +68404 902 366 126601297 1351567 48.881 0.522 40.613627 -96.752842 +68405 3257 1276 204766573 2201773 79.061 0.850 40.762050 -97.073498 +68406 458 271 138720951 22228 53.560 0.009 40.500089 -97.385641 +68407 747 328 118381675 207376 45.707 0.080 40.916700 -96.266964 +68409 807 343 80677608 12760 31.150 0.005 40.907713 -95.954180 +68410 8716 3859 393061873 5620033 151.762 2.170 40.634941 -95.883057 +68413 533 240 131557460 19898 50.795 0.008 40.838846 -96.012639 +68414 256 156 126307191 2791666 48.767 1.078 40.308102 -95.665835 +68415 649 288 184313874 1872224 71.164 0.723 40.069634 -96.821216 +68416 226 128 117639439 121242 45.421 0.047 40.410300 -97.459542 +68417 292 133 62053860 370316 23.959 0.143 40.733168 -96.094147 +68418 1070 458 170268892 49766 65.741 0.019 40.687767 -96.403382 +68419 256 100 734783 0 0.284 0.000 40.599806 -96.511171 +68420 1285 735 350332884 457118 135.264 0.176 40.092970 -96.209452 +68421 1107 385 117920493 1609681 45.529 0.622 40.493981 -95.743549 +68422 513 230 121127403 923950 46.768 0.357 40.388735 -96.694709 +68423 898 391 139993732 1834375 54.052 0.708 40.807477 -96.957450 +68424 730 338 167159572 1909239 64.541 0.737 40.299195 -97.016261 +68428 1375 544 133882327 7437676 51.692 2.872 40.964424 -96.793115 +68430 1402 537 114114107 0 44.060 0.000 40.668621 -96.663354 +68431 353 219 124979086 3683057 48.255 1.422 40.067562 -95.438183 +68433 265 153 133689016 35497 51.618 0.014 40.053339 -95.738532 +68434 8576 3468 411277939 2802437 158.795 1.082 40.909586 -97.116949 +68436 581 282 239507288 290408 92.474 0.112 40.430260 -97.738261 +68437 261 158 77989776 69655 30.112 0.027 40.226069 -95.643950 +68438 142 63 251649 0 0.097 0.000 40.626605 -96.744615 +68439 478 213 94293848 644835 36.407 0.249 40.995896 -97.205463 +68440 110 82 53575153 253449 20.685 0.098 40.060556 -97.001788 +68441 302 143 162851653 230489 62.877 0.089 40.222441 -96.240128 +68442 313 170 98026625 0 37.848 0.000 40.238673 -95.773233 +68443 1047 483 269149678 554810 103.919 0.214 40.447459 -96.350076 +68444 97 52 69322261 0 26.765 0.000 40.411381 -97.577080 +68445 152 91 57075187 0 22.037 0.000 40.389231 -97.079163 +68446 2690 1210 260578122 969051 100.610 0.374 40.653402 -96.175404 +68447 464 274 133184628 22695 51.423 0.009 40.208885 -96.072644 +68448 399 191 88569828 96011 34.197 0.037 40.557858 -96.024165 +68450 3182 1188 323966975 430816 125.084 0.166 40.363539 -96.229749 +68452 86 52 39860066 0 15.390 0.000 40.394441 -97.852288 +68453 304 172 154530415 237366 59.665 0.092 40.412994 -97.325813 +68454 625 296 142889009 0 55.170 0.000 40.691824 -96.288481 +68455 681 345 89906784 1420704 34.713 0.549 40.820047 -95.897286 +68456 1127 470 142385331 540652 54.975 0.209 40.909053 -97.320861 +68457 343 192 102547154 93758 39.594 0.036 40.153193 -95.699364 +68458 135 75 61369878 629954 23.695 0.243 40.227499 -96.509005 +68460 788 368 248977560 2077902 96.131 0.802 40.890741 -97.435140 +68461 734 278 62334067 2109 24.067 0.001 40.762334 -96.511432 +68462 3827 1367 143264112 537394 55.315 0.207 40.952129 -96.519659 +68463 1517 664 147314852 147347 56.879 0.057 40.875803 -96.129031 +68464 478 266 208269011 169069 80.413 0.065 40.428738 -97.206836 +68465 2404 1031 259089985 1861633 100.035 0.719 40.486338 -97.022227 +68466 1861 955 253873338 2856898 98.021 1.103 40.066854 -96.642831 +68467 9338 4183 466708293 1730302 180.197 0.668 40.866364 -97.595637 +68502 26238 12001 15309818 1312 5.911 0.001 40.785810 -96.698002 +68503 15264 6572 7656099 0 2.956 0.000 40.824554 -96.674040 +68504 16444 8205 17336291 351017 6.694 0.136 40.854478 -96.660184 +68505 15137 6847 9708777 0 3.749 0.000 40.824839 -96.619262 +68506 27952 13228 18624692 396740 7.191 0.153 40.783655 -96.632223 +68507 13429 6086 26650121 0 10.290 0.000 40.858885 -96.614848 +68508 14475 4814 7648228 274984 2.953 0.106 40.818272 -96.703937 +68510 20514 9917 15074870 76029 5.820 0.029 40.806237 -96.635703 +68512 11659 4740 23531211 0 9.085 0.000 40.738801 -96.707513 +68514 127 47 13373930 23465 5.164 0.009 40.921979 -96.653112 +68516 38956 15813 49322145 87633 19.043 0.034 40.735276 -96.642790 +68517 538 193 69413507 395545 26.801 0.153 40.936247 -96.615020 +68520 1143 494 28705971 26827 11.083 0.010 40.799995 -96.552282 +68521 31733 12857 37458957 228480 14.463 0.088 40.868266 -96.705455 +68522 12728 4274 27917278 125341 10.779 0.048 40.790111 -96.762488 +68523 1390 506 41415516 288839 15.991 0.112 40.735633 -96.758183 +68524 5983 2020 79415055 2880790 30.662 1.112 40.907023 -96.787442 +68526 4800 1715 29190810 11181 11.271 0.004 40.729968 -96.582101 +68527 696 275 70182861 0 27.098 0.000 40.847113 -96.524224 +68528 6285 2731 49796346 1682760 19.226 0.650 40.820839 -96.830216 +68531 48 19 10522148 0 4.063 0.000 40.901432 -96.723224 +68532 493 182 22806310 0 8.806 0.000 40.792052 -96.842655 +68601 28185 12031 747438819 27281759 288.588 10.534 41.454500 -97.398273 +68620 2967 1406 792916822 325986 306.147 0.126 41.745200 -98.074478 +68621 517 254 83598058 5102648 32.277 1.970 41.492162 -96.639488 +68622 275 140 453936813 61190 175.266 0.024 41.948970 -98.625436 +68623 313 155 225432764 1238877 87.040 0.478 41.441473 -98.151971 +68624 1062 586 179374707 5926491 69.257 2.288 41.345613 -97.229358 +68626 614 314 160738417 1103181 62.061 0.426 41.169497 -96.992008 +68627 622 328 331434552 364024 127.968 0.141 41.559010 -98.174381 +68628 826 520 277333578 8725680 107.079 3.369 41.227620 -97.836915 +68629 1344 644 373593661 443070 144.245 0.171 41.719653 -97.132617 +68631 480 215 108077231 131235 41.729 0.051 41.692093 -97.344630 +68632 3989 1713 401306470 2390329 154.945 0.923 41.246154 -97.131198 +68633 1179 530 267399917 220183 103.244 0.085 41.706202 -96.896404 +68634 345 140 1064067 0 0.411 0.000 41.389898 -97.493069 +68635 491 239 141824719 772197 54.759 0.298 41.083416 -97.015909 +68636 1254 651 583679250 153022 225.360 0.059 42.009224 -98.152606 +68637 267 307 250824041 880989 96.844 0.340 41.881019 -98.721803 +68638 1749 879 393728440 9251569 152.019 3.572 41.375492 -97.992939 +68640 1613 717 320019826 2506207 123.560 0.968 41.460369 -97.785881 +68641 1063 510 245479460 108524 94.780 0.042 41.735670 -97.015265 +68642 1721 703 335647356 483604 129.594 0.187 41.689215 -97.513932 +68643 903 436 247837258 567598 95.691 0.219 41.705976 -97.263334 +68644 721 313 235521463 102205 90.935 0.039 41.704257 -97.670015 +68647 646 279 175856121 1530211 67.898 0.591 41.518774 -97.628340 +68648 484 245 107137617 1115869 41.366 0.431 41.400719 -96.800326 +68649 1835 963 267471649 11314548 103.271 4.369 41.505048 -96.785365 +68651 1470 666 322577301 321767 124.548 0.124 41.228224 -97.570129 +68652 715 347 325134986 183956 125.535 0.071 41.861404 -98.044181 +68653 783 322 149561538 334994 57.746 0.129 41.558235 -97.485954 +68654 541 289 139027254 250927 53.679 0.097 41.067027 -97.779132 +68655 159 80 76965011 709586 29.716 0.274 41.655561 -98.242514 +68658 683 305 195027248 218949 75.300 0.085 41.197668 -97.291232 +68659 215 89 83996641 22510 32.431 0.009 41.545943 -96.935406 +68660 1137 531 345701629 26621 133.476 0.010 41.572817 -97.869571 +68661 7282 2536 394873038 10245827 152.461 3.956 41.492505 -97.088623 +68662 1231 539 242621689 308184 93.677 0.119 41.210704 -97.417564 +68663 761 388 232708405 7910328 89.849 3.054 41.319184 -97.685134 +68664 300 144 1033974 0 0.399 0.000 41.704011 -96.786542 +68665 940 460 726310518 347083 280.430 0.134 41.769883 -98.392246 +68666 1611 734 232933425 350844 89.936 0.135 41.110595 -97.611211 +68667 92 43 37934329 106884 14.647 0.041 41.109766 -97.304753 +68669 422 210 144628233 612968 55.841 0.237 41.079231 -97.236898 +68701 30670 13197 491227109 5117303 189.664 1.976 42.019977 -97.442988 +68710 830 368 219558224 298182 84.772 0.115 42.441865 -96.859268 +68711 141 94 612506183 2525555 236.490 0.975 42.198074 -99.040962 +68713 2212 1118 1478455961 3972300 570.835 1.534 42.540150 -98.959566 +68714 1224 737 1877659791 8099991 724.969 3.127 42.431105 -99.495233 +68715 1446 574 145385969 998350 56.134 0.385 41.963891 -97.609897 +68716 1011 469 155109628 1576892 59.888 0.609 41.926838 -96.822632 +68717 198 107 58868955 3590 22.729 0.001 42.387870 -97.222971 +68718 1765 913 580895658 10250292 224.285 3.958 42.668353 -97.692958 +68719 146 110 157442783 2124640 60.789 0.820 42.954456 -98.560153 +68720 340 171 172851192 51634 66.738 0.020 42.344997 -98.014660 +68722 555 304 241149357 287847 93.108 0.111 42.929935 -98.869016 +68723 566 260 179589772 62194 69.340 0.024 42.282752 -97.208240 +68724 140 75 88344183 0 34.110 0.000 42.638007 -97.894007 +68725 501 284 435422965 67683 168.118 0.026 42.197414 -98.777902 +68726 893 383 312290097 754172 120.576 0.291 42.184661 -98.210110 +68727 730 402 184070254 53341 71.070 0.021 42.515296 -97.202478 +68728 254 113 62532475 106013 24.144 0.041 42.375131 -96.947120 +68729 1745 866 410254137 477013 158.400 0.184 42.471872 -97.905075 +68730 1860 1121 355044948 31082288 137.084 12.001 42.767263 -97.534632 +68731 2637 938 94360772 829484 36.433 0.320 42.404578 -96.472928 +68732 260 114 121472506 11050 46.901 0.004 42.493826 -96.978733 +68733 1286 579 256856604 260391 99.173 0.101 42.285116 -96.725180 +68734 155 61 62561774 14362 24.155 0.006 42.458508 -98.803963 +68735 922 440 963446742 1876284 371.989 0.724 42.139520 -98.466036 +68736 726 284 181566986 0 70.103 0.000 42.735371 -97.367806 +68739 3002 1274 577485924 46806 222.969 0.018 42.625997 -97.269952 +68740 892 357 181379334 166705 70.031 0.064 42.152347 -97.296170 +68741 790 303 165828601 126080 64.027 0.049 42.343022 -96.594478 +68742 243 128 100904117 28316 38.959 0.011 42.352415 -98.529412 +68743 693 285 164983309 2725602 63.700 1.052 42.458331 -96.630154 +68745 1572 721 308580796 45907 119.144 0.018 42.456197 -97.083883 +68746 480 439 604416562 11937882 233.367 4.609 42.809636 -98.437442 +68747 174 88 82997199 12141 32.045 0.005 42.391145 -97.496125 +68748 3260 1160 437847542 977049 169.054 0.377 41.842603 -97.473669 +68749 65 42 5226605 0 2.018 0.000 42.453088 -97.475351 +68751 76 34 414370 0 0.160 0.000 42.690454 -96.980916 +68752 789 375 377708600 1001409 145.834 0.387 42.028776 -97.723726 +68753 111 77 380650759 636404 146.970 0.246 42.889507 -99.427656 +68755 259 177 375321037 126000 144.912 0.049 42.926512 -99.130016 +68756 2058 1017 338854764 497699 130.833 0.192 42.182460 -97.981850 +68757 754 418 331404225 9617565 127.956 3.713 42.652949 -96.929689 +68758 1164 575 290861095 205603 112.302 0.079 41.792434 -97.785946 +68759 295 181 635802704 778508 245.485 0.301 42.704140 -99.310540 +68760 1364 896 542671289 36934225 209.527 14.260 42.708842 -97.874979 +68761 434 224 101134988 1067291 39.048 0.412 42.049904 -97.962050 +68763 4887 2346 1403106852 828845 541.743 0.320 42.501043 -98.608208 +68764 753 395 352454014 314213 136.083 0.121 42.404882 -98.231670 +68765 1380 599 302975300 103952 116.979 0.040 42.342300 -97.613711 +68766 393 220 318500785 114588 122.974 0.044 42.433234 -98.403063 +68767 3174 1331 546293436 3302028 210.925 1.275 42.199402 -97.552777 +68768 642 352 178332526 1559964 68.855 0.602 41.995221 -97.066425 +68769 1806 913 371865144 77983 143.578 0.030 42.325158 -97.811327 +68770 1552 689 237280917 6244126 91.615 2.411 42.561623 -96.764827 +68771 1637 752 380253478 190972 146.817 0.074 42.395624 -97.359991 +68773 173 94 137869039 267542 53.232 0.103 42.359065 -98.118578 +68774 348 169 102952367 5879350 39.750 2.270 42.812870 -97.274313 +68776 15447 5493 53727629 2575627 20.744 0.994 42.467422 -96.447050 +68777 774 453 459250352 2793687 177.318 1.079 42.860843 -98.688029 +68778 572 374 1228901442 1410232 474.482 0.544 42.853013 -99.798484 +68779 2433 1104 441189856 4185027 170.344 1.616 41.957174 -97.199010 +68780 1028 496 802148500 671658 309.711 0.259 42.632961 -99.128190 +68781 1407 662 299844759 1142194 115.771 0.441 42.025745 -97.863783 +68783 1086 543 572856201 2896501 221.181 1.118 42.618474 -98.159234 +68784 2104 862 271182324 1422414 104.704 0.549 42.257167 -96.891367 +68785 274 125 79397212 0 30.655 0.000 42.426528 -96.724096 +68786 1079 485 313330749 10926 120.978 0.004 42.501560 -97.557442 +68787 6647 2498 363909392 184268 140.506 0.071 42.213113 -97.030970 +68788 4898 2237 498388955 5509745 192.429 2.127 41.839631 -96.721283 +68789 176 108 113759487 76616 43.923 0.030 42.543523 -97.970320 +68790 777 357 169104197 92091 65.291 0.036 42.156671 -97.181822 +68791 1800 859 344907926 2688644 133.170 1.038 41.988425 -96.984375 +68792 407 300 144903620 6594623 55.948 2.546 42.742919 -97.108243 +68801 30005 11506 232261015 3685761 89.676 1.423 40.948040 -98.290699 +68803 22560 9613 226373797 172964 87.403 0.067 40.956077 -98.414575 +68810 1109 435 49271594 43597 19.024 0.017 40.855284 -98.463677 +68812 785 333 306251363 68004 118.244 0.026 40.887782 -99.283842 +68813 534 282 1457130553 1464782 562.601 0.566 41.699128 -99.856377 +68814 911 494 499698085 0 192.935 0.000 41.316486 -99.412938 +68815 596 326 387442347 40545 149.592 0.016 41.418284 -99.143990 +68816 180 72 96840065 0 37.390 0.000 41.177383 -98.132949 +68817 386 213 244025264 146022 94.219 0.056 41.267480 -98.793822 +68818 5475 2333 470190636 1290609 181.542 0.498 40.817854 -98.005876 +68820 391 195 104846302 1408752 40.481 0.544 41.112899 -98.701416 +68821 134 103 517531849 2491381 199.820 0.962 42.010446 -99.767592 +68822 4834 2298 1029360303 296673 397.438 0.115 41.380918 -99.631719 +68823 2401 1443 2407860417 11752214 929.680 4.538 41.924397 -99.111788 +68824 1414 586 276230888 865641 106.653 0.334 40.994135 -98.597716 +68825 1024 519 815454840 37872 314.849 0.015 41.264062 -99.968062 +68826 3955 1836 375462129 7207232 144.967 2.783 41.163588 -98.016399 +68827 693 300 158742910 2225099 61.291 0.859 41.042659 -98.181454 +68828 240 174 255035292 25305 98.470 0.010 41.549540 -99.237374 +68831 812 372 168729390 2565015 65.147 0.990 41.108676 -98.554699 +68832 1974 830 280082054 7032491 108.140 2.715 40.763300 -98.369182 +68833 299 188 1190992482 5198912 459.845 2.007 41.825835 -100.205383 +68834 226 106 249466448 0 96.320 0.000 41.031607 -99.658913 +68835 485 256 252787408 3045124 97.602 1.176 41.331899 -98.617240 +68836 1688 720 383947964 5745863 148.243 2.218 40.709811 -99.373986 +68837 103 55 62762485 0 24.233 0.000 41.659793 -99.076621 +68838 301 146 132112578 247 51.009 0.000 41.217662 -98.670906 +68840 2945 1176 377847418 3951492 145.888 1.526 40.759666 -98.877542 +68841 610 253 168919944 373359 65.220 0.144 40.758828 -98.171175 +68842 668 360 413497458 0 159.652 0.000 41.567553 -98.500538 +68843 806 345 213984774 503836 82.620 0.195 40.905251 -97.890768 +68844 228 118 115844865 39958 44.728 0.015 41.054098 -99.059410 +68845 19523 7718 288924709 1610800 111.554 0.622 40.721039 -99.164684 +68846 296 136 74099987 61065 28.610 0.024 41.068251 -97.895188 +68847 16504 7194 243223843 2279281 93.909 0.880 40.760030 -99.017084 +68849 384 0 431572 0 0.167 0.000 40.700703 -99.109416 +68850 12295 4253 675779678 3463892 260.920 1.337 40.826405 -99.739779 +68852 565 277 283347299 114533 109.401 0.044 41.161301 -99.124626 +68853 1559 1128 506791295 12278705 195.673 4.741 41.294283 -98.991830 +68854 731 385 178067757 3504156 68.752 1.353 41.009922 -98.002428 +68855 417 232 489077255 42202 188.834 0.016 41.169365 -99.325507 +68856 611 286 284284025 32290 109.763 0.012 41.541733 -99.758395 +68858 266 125 158709489 205871 61.278 0.079 40.965652 -99.376310 +68859 509 296 224799404 2175376 86.796 0.840 41.474517 -98.825464 +68860 324 184 466421152 6101 180.086 0.002 41.133930 -99.795328 +68861 118 52 952799 0 0.368 0.000 40.702356 -99.258817 +68862 3007 1561 731757737 3011645 282.533 1.163 41.599956 -98.936456 +68863 1151 507 316256105 5631172 122.107 2.174 40.766301 -99.532137 +68864 1027 449 441514078 5241062 170.470 2.024 41.263630 -98.235239 +68865 894 408 161512798 4556384 62.360 1.759 40.896549 -98.178659 +68866 850 372 306697181 80443 118.416 0.031 40.976946 -99.124408 +68869 2202 1048 536738157 2052669 207.236 0.793 40.996135 -98.884197 +68870 439 198 111299287 32183 42.973 0.012 40.853989 -99.167086 +68871 250 127 169357040 2388308 65.389 0.922 41.140917 -98.852753 +68872 853 347 172451777 0 66.584 0.000 41.094857 -98.334000 +68873 3289 1560 457246056 7560218 176.544 2.919 41.240105 -98.453771 +68874 956 536 693042833 98280 267.585 0.038 41.644123 -99.418929 +68875 658 324 508551430 1798226 196.353 0.694 41.563132 -98.670522 +68876 1545 657 234399097 3241695 90.502 1.252 40.818433 -98.755243 +68878 446 201 344838769 91099 133.143 0.035 40.982333 -99.517885 +68879 417 237 888664237 725744 343.115 0.280 41.897714 -99.509764 +68881 73 30 64864705 0 25.044 0.000 41.438428 -99.351889 +68882 473 256 303109419 43563 117.031 0.017 41.439999 -98.389411 +68883 2411 954 441449248 5496732 170.445 2.122 40.808239 -98.597294 +68901 26354 11340 355096372 1479078 137.103 0.571 40.592593 -98.372329 +68920 1446 753 329668285 27169201 127.286 10.490 40.154543 -99.339914 +68922 1336 667 423480932 180931 163.507 0.070 40.335199 -99.896424 +68923 131 60 4134903 0 1.596 0.000 40.359107 -99.468322 +68924 1180 475 252824256 0 97.616 0.000 40.495556 -99.118997 +68925 474 186 157762324 115248 60.912 0.044 40.428762 -98.430110 +68926 783 465 370408250 297036 143.015 0.115 40.105271 -99.839105 +68927 1164 519 398134972 573360 153.721 0.221 40.499975 -99.633924 +68928 426 205 296457610 29964 114.463 0.012 40.284345 -98.606840 +68929 160 108 130539304 65288 50.402 0.025 40.150880 -99.049980 +68930 1461 609 363719741 71634 140.433 0.028 40.284768 -98.415566 +68932 493 235 189754920 84288 73.265 0.033 40.315286 -98.722738 +68933 932 440 155550663 103878 60.058 0.040 40.517843 -98.022998 +68934 188 98 69750110 142444 26.931 0.055 40.338815 -98.138986 +68935 750 373 313720236 564628 121.128 0.218 40.378358 -97.962002 +68936 243 132 195077288 842225 75.320 0.325 40.328446 -99.771423 +68937 1836 1439 410862431 14507213 158.635 5.601 40.590960 -99.881880 +68938 582 292 151065754 823642 58.327 0.318 40.415596 -98.117141 +68939 1318 674 318041866 0 122.797 0.000 40.101287 -98.968918 +68940 496 220 243463784 62673 94.002 0.024 40.547151 -99.246818 +68941 832 356 217606466 0 84.018 0.000 40.457210 -98.278089 +68942 490 289 376304645 244028 145.292 0.094 40.096601 -98.300584 +68943 269 138 133682952 178883 51.615 0.069 40.057370 -97.907250 +68944 1323 588 271697371 661993 104.903 0.256 40.643601 -98.094793 +68945 213 90 106205528 0 41.006 0.000 40.568226 -98.777823 +68946 53 36 68518933 0 26.455 0.000 40.111639 -99.985789 +68947 549 276 179220333 0 69.197 0.000 40.280096 -99.047663 +68948 363 211 234751349 120050 90.638 0.046 40.318263 -100.021482 +68949 6567 3026 552992646 36417 213.512 0.014 40.427217 -99.389597 +68950 331 156 123146733 0 47.547 0.000 40.461783 -98.669439 +68952 172 80 169999650 1925 65.637 0.001 40.076280 -98.662556 +68954 94 43 30138497 14013 11.637 0.005 40.622945 -98.234368 +68955 2025 766 246125364 684748 95.030 0.264 40.595497 -98.539686 +68956 1215 493 253901318 1702656 98.032 0.657 40.636323 -98.691023 +68957 631 292 278330297 139460 107.464 0.054 40.273952 -98.246364 +68958 661 279 192956587 212821 74.501 0.082 40.518810 -99.497357 +68959 4015 1812 791445598 211662 305.579 0.082 40.484000 -98.916010 +68960 183 128 141116396 176546 54.485 0.068 40.096651 -99.136253 +68961 732 447 327742448 582720 126.542 0.225 40.208997 -98.043802 +68964 135 75 81663976 151315 31.531 0.058 40.238096 -97.911878 +68966 674 385 318842715 277548 123.106 0.107 40.159905 -99.467272 +68967 1142 613 498568710 1413109 192.498 0.546 40.254035 -99.624404 +68969 38 26 3990161 0 1.541 0.000 40.303874 -99.283398 +68970 1342 773 396061188 7469 152.920 0.003 40.110321 -98.509567 +68971 458 798 242693456 25776938 93.704 9.953 40.110633 -99.247931 +68972 209 149 334208497 216580 129.039 0.084 40.118855 -98.810982 +68973 463 194 130364918 90218 50.334 0.035 40.454782 -98.564830 +68974 184 111 81178830 114708 31.343 0.044 40.125862 -97.867653 +68975 160 60 70484309 315842 27.214 0.122 40.618810 -97.948619 +68976 316 147 238204793 101622 91.971 0.039 40.590459 -99.727626 +68977 342 189 275080684 0 106.209 0.000 40.069843 -99.630867 +68978 2377 1323 370122379 564454 142.905 0.218 40.066660 -98.097500 +68979 1888 835 328335822 1140027 126.771 0.440 40.589677 -97.851484 +68980 388 148 76931806 225009 29.704 0.087 40.676614 -98.250701 +68981 314 160 212330542 22754 81.981 0.009 40.278734 -98.896151 +68982 649 282 263709653 0 101.819 0.000 40.332296 -99.180146 +69001 9449 4519 1151731395 6705083 444.686 2.589 40.246709 -100.643942 +69020 397 209 244844860 79141 94.535 0.031 40.197245 -100.300903 +69021 1348 751 783396345 1795004 302.471 0.693 40.141610 -101.540343 +69022 1570 942 918699010 9673934 354.712 3.735 40.360199 -100.189357 +69023 440 229 582074274 1085588 224.740 0.419 40.482983 -101.907320 +69024 1195 571 747718308 11602 288.696 0.004 40.232726 -100.847051 +69025 1220 571 612394647 213207 236.447 0.082 40.620868 -100.509480 +69026 220 117 130348893 0 50.328 0.000 40.046771 -100.429674 +69027 133 96 101811984 6370386 39.310 2.460 40.427280 -101.544243 +69028 731 376 459856715 1485100 177.552 0.573 40.639148 -100.057395 +69029 316 190 511965864 141931 197.671 0.055 40.708969 -100.252969 +69030 324 184 856433617 723501 330.671 0.279 40.211719 -101.919863 +69032 498 258 867673182 304251 335.011 0.117 40.570659 -101.014404 +69033 2577 1183 952653719 381652 367.822 0.147 40.559381 -101.676010 +69034 908 454 493902571 895650 190.697 0.346 40.250914 -100.433897 +69036 126 76 129129318 0 49.857 0.000 40.048682 -100.274350 +69037 115 68 196814505 50542 75.991 0.020 40.184984 -101.405741 +69038 449 244 452475776 198127 174.702 0.076 40.589874 -100.748476 +69039 139 82 265758443 327899 102.610 0.127 40.692107 -100.391408 +69040 634 362 512232161 242596 197.774 0.094 40.350306 -101.125171 +69041 161 87 419211116 244566 161.858 0.094 40.171238 -101.743643 +69042 36 28 109275962 0 42.192 0.000 40.476668 -100.405251 +69043 549 344 494608718 8546637 190.970 3.300 40.128711 -101.255201 +69044 825 635 486325085 13426345 187.771 5.184 40.130145 -101.016489 +69045 975 516 968668191 414241 374.005 0.160 40.465392 -101.369178 +69046 194 146 291761769 0 112.650 0.000 40.076407 -100.086526 +69101 29904 13715 1531969113 11874639 591.497 4.585 41.141895 -100.800597 +69120 931 530 867838185 124346 335.074 0.048 41.397011 -100.218112 +69121 400 223 1630258881 5148543 629.446 1.988 41.557430 -101.696401 +69122 619 348 491320126 2022969 189.700 0.781 41.131252 -102.102414 +69123 935 485 523238507 3370441 202.024 1.301 41.011466 -100.371817 +69125 346 213 618467273 2444751 238.792 0.944 41.626490 -102.824548 +69127 739 640 446577947 11748616 172.425 4.536 41.141045 -101.929094 +69128 302 179 1115425434 841581 430.668 0.325 41.226670 -103.928819 +69129 1368 720 797518273 207987 307.924 0.080 41.113295 -102.409026 +69130 5307 2489 586821722 2873299 226.573 1.109 40.894116 -99.952965 +69131 561 290 492817969 0 190.278 0.000 41.407395 -102.973516 +69132 117 51 351445076 0 135.694 0.000 40.793401 -100.957871 +69133 386 199 592427378 0 228.737 0.000 41.188423 -103.460347 +69134 364 197 570108893 519001 220.120 0.200 40.835298 -101.376254 +69135 65 44 411459363 238973 158.865 0.092 42.227830 -100.206025 +69138 4489 2053 872603886 689342 336.914 0.266 40.995816 -100.176551 +69140 1775 855 918228773 1684794 354.530 0.651 40.850303 -101.773477 +69141 385 197 299983623 0 115.824 0.000 41.306523 -102.955003 +69142 137 83 319634920 1159082 123.412 0.448 41.918180 -100.320427 +69143 1460 631 618244390 1242682 238.706 0.480 41.211518 -101.042025 +69144 202 128 313218744 1628249 120.934 0.629 41.272158 -101.537461 +69145 3214 1633 1074299149 606865 414.789 0.234 41.246022 -103.667696 +69146 334 594 403381839 87229239 155.747 33.679 41.312561 -101.773429 +69147 737 967 1167071972 3320562 450.609 1.282 41.579126 -102.086642 +69148 217 149 955037930 9424780 368.742 3.639 41.590372 -102.598259 +69149 699 383 781332118 203658 301.674 0.079 41.221745 -102.677147 +69150 522 239 436708569 597741 168.614 0.231 40.847700 -101.543056 +69151 815 356 826514890 782491 319.119 0.302 41.090203 -100.495252 +69152 886 520 3870154620 6473575 1494.275 2.499 42.124962 -101.146814 +69153 5769 2973 498900622 22315082 192.627 8.616 41.101361 -101.675692 +69154 1291 726 1157929857 9557195 447.079 3.690 41.430572 -102.351775 +69155 1034 480 912460926 1434575 352.303 0.554 41.189373 -101.396154 +69156 699 366 842102481 0 325.138 0.000 41.310781 -103.331902 +69157 21 23 69850193 498206 26.969 0.192 42.060157 -100.144245 +69161 81 73 348138371 1640328 134.417 0.633 42.156506 -100.781305 +69162 7765 3715 1125255851 100501 434.464 0.039 41.128860 -103.020689 +69163 873 431 1678973519 1203561 648.255 0.465 41.569639 -100.541642 +69165 1789 776 1086535716 11437911 419.514 4.416 41.269716 -101.209874 +69166 600 345 2090658691 6588428 807.208 2.544 42.028175 -100.608556 +69167 441 231 1659708770 1213707 640.817 0.469 41.596232 -101.006031 +69168 271 155 420720793 0 162.441 0.000 40.798996 -101.986523 +69169 651 291 657234110 645351 253.760 0.249 40.821942 -101.160866 +69170 372 172 569324106 693853 219.817 0.268 40.796027 -100.744306 +69171 26 12 7288061 0 2.814 0.000 40.890044 -100.070711 +69201 4005 2054 3196740174 56730918 1234.268 21.904 42.723626 -100.596392 +69210 2484 1402 2037060234 6896047 786.513 2.663 42.349390 -99.923176 +69211 311 182 1267554634 6814334 489.406 2.631 42.832233 -101.303366 +69212 248 146 477035000 244393 184.184 0.094 42.932930 -100.801436 +69214 203 124 753879624 2902374 291.075 1.121 42.598549 -100.099662 +69216 232 125 618582235 249232 238.836 0.096 42.977810 -100.983593 +69217 533 377 459422563 15978 177.384 0.006 42.565207 -99.666992 +69218 260 152 1338870625 4630363 516.941 1.788 42.789248 -101.674835 +69219 80 49 754088427 2292577 291.155 0.885 42.600609 -101.192427 +69220 59 39 125769586 0 48.560 0.000 42.865604 -100.130357 +69221 222 130 1186681954 2557559 458.180 0.987 42.582492 -100.300943 +69301 10125 4864 2659295604 28121729 1026.760 10.858 42.122965 -102.881280 +69331 59 34 431054926 1209959 166.431 0.467 41.913434 -102.982627 +69333 239 154 1500590100 20730839 579.381 8.004 42.056214 -101.974382 +69334 2351 1096 805019138 849055 310.820 0.328 41.821808 -103.290160 +69335 53 44 267065660 2619852 103.115 1.012 42.073797 -102.105309 +69336 2466 1163 1187478170 1757468 458.488 0.679 41.628527 -103.167371 +69337 7365 3199 1797676120 1311859 694.087 0.507 42.827175 -103.012899 +69339 1462 863 1002880053 347895 387.214 0.134 42.606930 -103.413648 +69340 121 69 760457356 17924904 293.614 6.921 42.214870 -102.207861 +69341 11165 4731 570023173 780882 220.087 0.302 41.720755 -103.633028 +69343 2538 1327 3279488466 18015556 1266.218 6.956 42.705504 -102.024422 +69345 455 244 1135266793 359656 438.329 0.139 41.589582 -103.744617 +69346 592 429 2978655298 1767718 1150.065 0.683 42.671533 -103.782541 +69347 1249 690 1130457479 667130 436.472 0.258 42.606820 -102.684723 +69348 1503 823 2391409915 33801 923.329 0.013 42.275532 -103.350427 +69350 383 262 1177438501 13960206 454.612 5.390 41.962420 -101.763242 +69351 235 142 2055595945 75785215 793.670 29.261 42.038757 -102.420461 +69352 619 301 342123719 326700 132.095 0.126 41.803986 -103.973548 +69353 37 12 76819 0 0.030 0.000 41.747228 -103.416509 +69354 97 63 544446874 6143617 210.212 2.372 42.369194 -103.603633 +69355 115 61 1465936 21653 0.566 0.008 41.783287 -103.506205 +69356 1882 946 329911715 8917240 127.380 3.443 41.901589 -103.450940 +69357 3567 1622 813289243 483625 314.013 0.187 42.110496 -103.768458 +69358 1907 903 485676007 640831 187.521 0.247 42.065333 -103.968435 +69360 1361 752 1088161948 1296457 420.142 0.501 42.696594 -102.467141 +69361 17999 7977 296157543 4215323 114.347 1.628 41.922838 -103.622904 +69365 44 20 47339013 72660 18.278 0.028 42.984091 -102.500583 +69366 253 146 1798067205 19830164 694.238 7.656 42.159428 -101.549770 +69367 259 137 541554102 4307975 209.095 1.663 42.811821 -103.330405 +70001 37996 19261 15546989 0 6.003 0.000 29.983724 -90.167179 +70002 18879 9411 8336101 611369 3.219 0.236 30.012223 -90.162523 +70003 40150 17005 18179721 404870 7.019 0.156 30.001164 -90.209724 +70005 24339 12663 10826238 479482 4.180 0.185 29.999416 -90.134065 +70006 15703 6784 6705503 382484 2.589 0.148 30.014032 -90.191345 +70030 4585 1784 81547151 13593924 31.486 5.249 29.819271 -90.433160 +70031 1316 547 9109388 47262 3.517 0.018 29.941918 -90.298986 +70032 3635 1918 4527960 6631 1.748 0.003 29.958602 -89.997477 +70036 1227 625 11341143 1665234 4.379 0.643 29.714032 -90.121496 +70037 15590 5863 161924735 13382657 62.519 5.167 29.818986 -90.030559 +70038 426 247 3443006 179972 1.329 0.069 29.349224 -89.438450 +70039 2460 976 31406641 99177 12.126 0.038 29.886734 -90.389186 +70040 1604 718 163615577 23237358 63.172 8.972 29.744682 -89.938296 +70041 2381 1145 27186107 1338955 10.497 0.517 29.341824 -89.493269 +70043 16760 7958 20138103 1410735 7.775 0.545 29.948414 -89.962678 +70047 13006 4807 27858249 230951 10.756 0.089 29.968947 -90.367309 +70049 2481 999 46933276 324338 18.121 0.125 30.028090 -90.570797 +70050 74 41 1498195 34210 0.578 0.013 29.379520 -89.590148 +70051 2518 1021 23039580 160698 8.896 0.062 30.086150 -90.647603 +70052 3795 1442 7521957 192131 2.904 0.074 30.055069 -90.695015 +70053 16499 7466 8883569 1176763 3.430 0.454 29.913421 -90.053201 +70056 39082 15224 17530113 153480 6.768 0.059 29.888653 -90.029014 +70057 4719 1710 99682076 1347162 38.487 0.520 29.965327 -90.467386 +70058 39887 15204 32712777 1505332 12.630 0.581 29.868864 -90.064875 +70062 17095 6914 18324276 1778074 7.075 0.687 29.991710 -90.258065 +70065 51116 21784 20801066 1215140 8.031 0.469 30.027292 -90.253450 +70067 2757 1106 27140760 6925930 10.479 2.674 29.710880 -90.096785 +70068 34101 12592 139371249 6065289 53.812 2.342 30.156056 -90.436745 +70070 12471 4678 239464332 50068529 92.458 19.332 29.829844 -90.310628 +70071 3653 1437 6681634 103086 2.580 0.040 30.051526 -90.705712 +70072 56344 21355 53744076 2491804 20.751 0.962 29.837276 -90.112449 +70075 4417 1828 8572174 244920 3.310 0.095 29.933315 -89.921256 +70076 292 125 7081555 613537 2.734 0.237 30.061579 -90.649050 +70079 3067 1270 5800943 108488 2.240 0.042 30.003414 -90.410210 +70080 1556 618 27695902 619452 10.693 0.239 29.883998 -90.433699 +70082 336 135 35449577 335404 13.687 0.130 29.554250 -89.735531 +70083 2353 1219 324684862 289212616 125.362 111.666 29.463084 -89.894753 +70084 7552 3007 39146227 436512 15.114 0.169 30.075606 -90.566652 +70085 4427 2364 99981176 20269340 38.603 7.826 29.836707 -89.737441 +70086 1969 724 58601361 2645146 22.626 1.021 30.036818 -90.866682 +70087 8122 3058 32650225 211082 12.606 0.081 29.976027 -90.315015 +70090 7671 3039 128861704 1302402 49.754 0.503 29.969253 -90.701136 +70091 278 223 573889731 991975055 221.580 383.004 29.119054 -89.271121 +70092 6651 2724 12560381 231164 4.850 0.089 29.898940 -89.895262 +70094 31669 12879 91843778 13769110 35.461 5.316 29.915778 -90.207605 +70112 3655 2563 2258740 0 0.872 0.000 29.957008 -90.076936 +70113 7025 4793 2634502 0 1.017 0.000 29.943022 -90.083074 +70114 22870 11714 12612223 1888702 4.870 0.729 29.937445 -90.032322 +70115 31695 19083 10042864 1329710 3.878 0.513 29.923968 -90.101795 +70116 11507 9825 3345483 292559 1.292 0.113 29.967440 -90.064783 +70117 23389 15771 14192015 2013652 5.480 0.777 29.968157 -90.029962 +70118 33008 16410 12131648 1764915 4.684 0.681 29.944727 -90.125661 +70119 36228 20543 11582141 89224 4.472 0.034 29.975137 -90.086944 +70121 12029 6341 9728625 1488438 3.756 0.575 29.959763 -90.163314 +70122 28564 15539 18268300 2562251 7.053 0.989 30.013437 -90.062798 +70123 26475 13148 19432218 3873193 7.503 1.495 29.949674 -90.205801 +70124 16824 9325 17245862 2731541 6.659 1.055 30.007379 -90.103919 +70125 14479 7935 6068459 0 2.343 0.000 29.952072 -90.103313 +70126 23958 11341 26167003 4700361 10.103 1.815 30.018200 -90.020724 +70127 20471 10118 18376415 1619183 7.095 0.625 30.023738 -89.976804 +70128 17113 7524 12623595 2990396 4.874 1.155 30.050846 -89.956039 +70129 9064 3417 234935032 112698283 90.709 43.513 30.080851 -89.813366 +70130 14064 10680 5454481 1248247 2.106 0.482 29.937353 -90.069648 +70131 29915 13315 30840332 7908526 11.908 3.053 29.906312 -89.958343 +70139 0 0 14214 0 0.005 0.000 29.950279 -90.071002 +70163 0 0 10072 0 0.004 0.000 29.950058 -90.075441 +70301 43037 17516 746045261 19286498 288.050 7.447 29.808328 -90.750267 +70339 6033 3396 145638447 67316469 56.231 25.991 29.909500 -91.182867 +70340 109 32 185882 0 0.072 0.000 29.669779 -91.105354 +70341 4449 1841 150126337 363442 57.964 0.140 30.032520 -91.067460 +70342 4979 2032 19240667 2909549 7.429 1.123 29.693147 -91.238340 +70343 5504 1964 74929690 1276155 28.931 0.493 29.548266 -90.557051 +70344 6143 2576 266390147 661452027 102.854 255.388 29.176879 -90.515055 +70345 9754 3787 240707848 37990172 92.938 14.668 29.548416 -90.259020 +70346 10925 4257 133272951 12558321 51.457 4.849 30.153716 -91.003200 +70352 205 92 9575245 676565 3.697 0.261 29.684401 -90.940158 +70353 1402 623 55120021 12130696 21.282 4.684 29.358143 -90.700118 +70354 4931 2050 302734799 64263909 116.887 24.812 29.436974 -90.281745 +70355 1041 391 268690977 10918033 103.742 4.215 29.717200 -90.468950 +70356 2484 1047 169831416 15908276 65.572 6.142 29.631566 -90.970879 +70357 3043 1579 547661857 644732095 211.453 248.932 29.242273 -90.219498 +70358 1296 1945 16598908 13680215 6.409 5.282 29.216515 -90.025543 +70359 8408 3133 24673866 0 9.527 0.000 29.694018 -90.776515 +70360 26429 10706 166601143 3543073 64.325 1.368 29.578671 -90.805402 +70363 26513 9602 194124487 12642586 74.952 4.881 29.538288 -90.704647 +70364 30503 12157 109759884 1058444 42.379 0.409 29.627650 -90.681803 +70372 2518 1072 75943752 0 29.322 0.000 29.782968 -90.988969 +70373 7141 2788 186183258 64262591 71.886 24.812 29.597954 -90.318653 +70374 7125 2856 127925505 6496164 49.392 2.508 29.602497 -90.501695 +70375 125 44 5668030 30723 2.188 0.012 29.691512 -90.533421 +70377 4403 1676 342474364 247862713 132.230 95.700 29.347284 -90.502648 +70380 22928 10107 167893242 34740054 64.824 13.413 29.731623 -91.134095 +70390 6969 2923 417478513 1015788 161.189 0.392 29.897281 -91.031061 +70391 202 92 2004168 0 0.774 0.000 29.990822 -91.060800 +70392 8456 3446 79614951 3238722 30.740 1.250 29.731242 -91.318321 +70393 774 295 18739534 0 7.235 0.000 29.991358 -91.007272 +70394 14328 5571 222813301 7923991 86.029 3.059 29.692722 -90.616014 +70395 4658 1736 126837788 212604 48.972 0.082 29.697436 -90.861730 +70397 1365 663 114784014 5127835 44.318 1.980 29.393850 -90.792692 +70401 20415 9092 90633544 480058 34.994 0.185 30.533587 -90.455381 +70402 1514 0 222799 0 0.086 0.000 30.516161 -90.470129 +70403 26011 10909 111266119 560434 42.960 0.216 30.485236 -90.487941 +70420 7345 3036 132147489 1457498 51.022 0.563 30.484687 -89.953028 +70422 13797 5662 438515684 2993592 169.312 1.156 30.734462 -90.479388 +70426 6342 2415 314113225 3838041 121.280 1.482 30.932581 -89.860415 +70427 20033 9398 381385194 7780976 147.254 3.004 30.744198 -89.912079 +70431 5366 2311 186367454 3047310 71.957 1.177 30.616728 -89.967389 +70433 31133 13172 125877565 2998722 48.602 1.158 30.458860 -90.156595 +70435 16603 6637 270814805 4792569 104.562 1.850 30.565961 -90.103423 +70436 629 253 10197713 18949 3.937 0.007 30.793499 -90.521701 +70437 7918 3364 237833087 1623270 91.828 0.627 30.619596 -90.209238 +70438 18540 8149 870401360 5843225 336.064 2.256 30.846224 -90.111321 +70441 5112 2439 539139550 797466 208.163 0.308 30.859967 -90.749066 +70442 277 111 17606761 27031 6.798 0.010 30.693140 -90.334028 +70443 10232 4113 199741440 1549230 77.121 0.598 30.632673 -90.534579 +70444 10160 4518 651250736 2450177 251.449 0.946 30.897040 -90.489367 +70445 10840 4623 299551705 9633497 115.658 3.720 30.374640 -89.910840 +70446 5877 2293 220163770 1127364 85.006 0.435 30.630171 -90.349707 +70447 10150 3828 81061723 6963880 31.298 2.689 30.421875 -90.198684 +70448 24851 9629 56848595 7119584 21.949 2.749 30.362180 -90.039451 +70449 3611 2105 176847085 4388546 68.281 1.694 30.273972 -90.670157 +70450 2884 1377 192642784 655964 74.380 0.253 30.929199 -90.266152 +70451 182 75 465787 0 0.180 0.000 30.548420 -90.480881 +70452 13163 5345 192792072 3563324 74.437 1.376 30.420852 -89.799212 +70453 1045 397 90503254 17329 34.944 0.007 30.700689 -90.764888 +70454 24954 10299 419177482 3856667 161.845 1.489 30.362846 -90.358594 +70455 1474 596 42848670 141882 16.544 0.055 30.524975 -90.323623 +70456 2850 1193 82879049 1669416 32.000 0.645 30.791766 -90.505923 +70458 35077 15130 54683650 9215248 21.113 3.558 30.262109 -89.792557 +70460 22096 8741 94915111 7935996 36.647 3.064 30.297957 -89.840688 +70461 27818 10926 126032111 11968575 48.661 4.621 30.231078 -89.716933 +70462 5699 2839 207579810 4443834 80.147 1.716 30.376282 -90.580763 +70463 126 63 1830807 32801 0.707 0.013 30.658239 -89.903867 +70464 312 145 25698442 94821 9.922 0.037 30.551195 -89.919008 +70465 776 313 12713449 80198 4.909 0.031 30.856259 -90.523930 +70466 8512 3466 81718682 602058 31.552 0.232 30.568714 -90.500761 +70471 21383 8583 76096337 4419578 29.381 1.706 30.408722 -90.061652 +70501 31358 12884 40457576 107795 15.621 0.042 30.241710 -91.991044 +70503 27816 11406 30707298 286661 11.856 0.111 30.163949 -92.055824 +70506 41163 19011 53647064 0 20.713 0.000 30.195474 -92.081292 +70507 16558 6799 54896983 34663 21.196 0.013 30.278260 -92.027952 +70508 34810 15831 64643959 286460 24.959 0.111 30.155239 -92.028225 +70510 25313 10694 596312401 8380041 230.238 3.236 29.894612 -92.193173 +70512 9780 4102 245726188 2068767 94.875 0.799 30.416317 -91.918607 +70513 124 81 4988131 207236 1.926 0.080 29.899969 -91.903251 +70514 2545 1040 13345566 312237 5.153 0.121 29.846514 -91.548808 +70515 3838 1456 191046967 1463913 73.764 0.565 30.452467 -92.577743 +70516 1546 581 102048108 87528 39.401 0.034 30.364974 -92.304219 +70517 26500 10804 362689941 19774231 140.035 7.635 30.298246 -91.833570 +70518 12297 4934 108478117 101253 41.884 0.039 30.134806 -91.927448 +70519 222 113 9102945 0 3.515 0.000 30.080175 -91.897382 +70520 18405 7202 101947643 372064 39.362 0.144 30.330999 -92.033704 +70523 906 412 11624289 2311934 4.488 0.893 29.879201 -91.470316 +70524 314 157 9845705 0 3.801 0.000 30.556953 -92.311285 +70525 13150 5272 282124798 421582 108.929 0.163 30.411533 -92.218809 +70526 19206 8101 323617985 463446 124.950 0.179 30.210073 -92.379963 +70528 2333 1001 11592738 0 4.476 0.000 29.939505 -91.984992 +70529 11752 4686 92052438 45668 35.542 0.018 30.202279 -92.161580 +70531 1261 499 71979647 950432 27.791 0.367 30.233947 -92.517483 +70532 2685 1237 252843785 202621 97.624 0.078 30.452737 -92.697025 +70533 7385 3078 203439443 4623220 78.548 1.785 29.890140 -92.046464 +70534 899 352 24867744 336824 9.601 0.130 30.227090 -92.431559 +70535 18215 7752 390557692 1705752 150.795 0.659 30.463256 -92.420164 +70537 541 235 15226401 38959 5.879 0.015 30.250363 -92.569402 +70538 14844 6286 401113134 33711593 154.871 13.016 29.805551 -91.498353 +70541 432 195 5371669 43406 2.074 0.017 30.426836 -92.047499 +70542 3435 1915 490019575 19935076 189.198 7.697 30.009678 -92.584774 +70543 4077 1653 190471629 40629 73.542 0.016 30.335404 -92.501138 +70544 11677 4706 269205506 10511114 103.941 4.058 29.904121 -91.662095 +70546 16425 6710 391938206 2900615 151.328 1.120 30.266368 -92.673552 +70548 10353 5026 1320998422 73236489 510.040 28.277 29.784928 -92.405155 +70549 3948 1885 304475605 19360652 117.559 7.475 30.069531 -92.802184 +70550 174 83 952474 0 0.368 0.000 30.518594 -92.187657 +70552 1819 750 47118425 106632 18.193 0.041 30.067552 -91.672717 +70554 5582 2531 298394772 636401 115.211 0.246 30.618180 -92.484346 +70555 7372 2892 128268275 85991 49.525 0.033 30.081400 -92.145854 +70556 331 159 16525142 814878 6.380 0.315 30.194416 -92.555922 +70558 134 66 307936 0 0.119 0.000 30.100525 -92.075759 +70559 2943 1221 213036533 1729717 82.254 0.668 30.128785 -92.502668 +70560 42022 17019 522463827 29868724 201.724 11.532 29.921943 -91.878669 +70563 18502 7495 161776745 2329018 62.462 0.899 30.016630 -91.710041 +70570 38987 16110 448510666 1585734 173.171 0.612 30.533657 -92.104961 +70575 55 30 84005 0 0.032 0.000 29.948922 -92.158095 +70576 1526 350 2912659 0 1.125 0.000 30.780968 -92.418254 +70577 4645 2046 155348777 3374797 59.981 1.303 30.550352 -91.934234 +70578 16122 6624 294115802 374420 113.559 0.145 30.229350 -92.261529 +70580 179 86 386291 0 0.149 0.000 30.675238 -92.428327 +70581 929 351 62271948 31800 24.043 0.012 30.250866 -92.731431 +70582 19781 8003 372208612 10145086 143.711 3.917 30.161555 -91.783868 +70583 11693 4896 71800235 19692 27.722 0.008 30.261107 -92.123965 +70584 7358 3104 91867829 117166 35.470 0.045 30.386694 -92.098490 +70585 235 108 1544266 0 0.596 0.000 30.878345 -92.407676 +70586 20313 9009 776961667 28198171 299.987 10.887 30.746507 -92.328138 +70589 3283 1452 306740047 3716168 118.433 1.435 30.680315 -92.003197 +70591 5299 2219 441006578 2344701 170.274 0.905 30.257744 -92.832802 +70592 18878 7132 107786979 0 41.617 0.000 30.080625 -92.012358 +70601 32384 15452 40115011 8600373 15.488 3.321 30.226792 -93.215443 +70605 32741 13923 112472661 13702489 43.426 5.291 30.128204 -93.274700 +70607 25560 11227 307132459 68331846 118.585 26.383 30.038425 -93.190125 +70611 19256 7533 211794594 4371103 81.774 1.688 30.348118 -93.203600 +70615 14335 5251 127095539 5645157 49.072 2.180 30.255414 -93.126507 +70630 1440 588 479283642 17953938 185.052 6.932 30.025908 -93.016943 +70631 962 570 1273651190 377749849 491.759 145.850 29.853375 -93.568288 +70632 371 217 252822226 24768774 97.615 9.563 29.836947 -93.057765 +70633 7604 3257 405605147 1980746 156.605 0.765 30.426005 -93.391290 +70634 25125 10937 1170037324 12584717 451.754 4.859 30.793357 -93.240067 +70637 654 268 104084919 567475 40.187 0.219 30.697645 -92.963463 +70638 937 389 74143813 547926 28.627 0.212 30.849148 -92.797138 +70639 684 300 177328872 1814502 68.467 0.701 30.978267 -93.491139 +70640 301 133 3001497 19636 1.159 0.008 30.371931 -92.904722 +70643 352 221 876306170 322701738 338.344 124.596 29.820556 -92.811553 +70644 308 117 35363280 47849 13.654 0.018 30.792345 -92.945596 +70645 1262 715 279681750 139349718 107.986 53.803 29.928002 -93.473885 +70646 750 316 18132583 353907 7.001 0.137 30.088888 -92.918574 +70647 8703 3399 466331725 5610893 180.052 2.166 30.254625 -93.023942 +70648 8026 3006 508849889 5054725 196.468 1.952 30.505073 -92.889361 +70650 435 164 4659095 0 1.799 0.000 30.237437 -92.923188 +70651 500 207 68649189 1545811 26.506 0.597 30.567901 -92.954149 +70652 2203 926 259298576 782034 100.116 0.302 30.608540 -93.266029 +70653 3111 1451 707181759 7347571 273.044 2.837 30.667154 -93.562092 +70654 155 66 58498702 314735 22.586 0.122 30.661452 -92.875433 +70655 3002 1338 453250692 1785206 175.001 0.689 30.664765 -92.723210 +70656 4023 1735 1176236331 1245621 454.147 0.481 30.961373 -92.968114 +70657 4315 1688 375324357 1249975 144.914 0.483 30.503084 -93.153008 +70658 955 436 228421133 841534 88.194 0.325 30.527772 -93.043397 +70659 1482 613 5651308 11088 2.182 0.004 30.921932 -93.284285 +70660 2612 701 376460138 512544 145.352 0.198 30.556098 -93.444692 +70661 2309 1085 446823868 3357970 172.520 1.297 30.354504 -93.649655 +70662 411 185 55547945 163371 21.447 0.063 30.799561 -92.993759 +70663 28150 12008 250649951 3517546 96.776 1.358 30.290269 -93.371690 +70665 10743 4167 416594542 14479652 160.848 5.591 30.120167 -93.447613 +70668 6424 2810 372865121 6226930 143.964 2.404 30.187906 -93.598313 +70669 10131 4325 79458634 8811681 30.679 3.402 30.242348 -93.272318 +70706 20752 7449 133272138 2310436 51.457 0.892 30.607221 -90.907376 +70710 3593 1441 21328340 74207 8.235 0.029 30.352897 -91.262230 +70711 5266 1961 50436180 9509 19.474 0.004 30.530369 -90.598868 +70712 479 191 62076047 4018901 23.968 1.552 30.969575 -91.596702 +70714 19803 7631 89126910 310005 34.412 0.120 30.587189 -91.127633 +70715 1433 802 478747962 38099979 184.846 14.710 30.754248 -91.690985 +70719 4460 1665 42108410 1374190 16.258 0.531 30.377420 -91.298207 +70721 701 212 13156931 3307135 5.080 1.277 30.223688 -91.084262 +70722 5713 2565 432025691 3442700 166.806 1.329 30.857424 -90.929032 +70723 1759 713 66541890 3188627 25.692 1.231 30.058907 -90.839604 +70725 1826 676 22026442 4659186 8.504 1.799 30.128332 -90.958896 +70726 50583 19703 240350962 2116792 92.800 0.817 30.425575 -90.886120 +70729 1032 405 52701826 4194640 20.348 1.620 30.587693 -91.344857 +70730 3499 1509 178117245 595688 68.771 0.230 30.816514 -91.102324 +70732 1178 515 108591003 234330 41.927 0.090 30.619230 -91.608398 +70733 1621 747 26751136 886502 10.329 0.342 30.299662 -90.812688 +70734 7554 2578 72631288 8114408 28.043 3.133 30.206621 -90.996981 +70736 518 214 9832860 0 3.796 0.000 30.632183 -91.338362 +70737 38643 15318 139415712 823582 53.829 0.318 30.222380 -90.922197 +70739 12486 4772 126153010 1419148 48.708 0.548 30.601066 -90.965337 +70740 1305 638 225053015 2384317 86.893 0.921 30.322900 -91.443419 +70743 350 133 6428330 3253 2.482 0.001 30.031281 -90.779453 +70744 6181 2412 272188186 341690 105.092 0.132 30.553487 -90.674224 +70747 180 158 10868366 3599447 4.196 1.390 30.873669 -91.676232 +70748 6657 2033 205617409 1883620 79.389 0.727 30.817729 -91.193986 +70749 1554 881 64118547 4924585 24.756 1.901 30.650223 -91.394511 +70750 1951 1007 332291147 11594381 128.298 4.477 30.501282 -91.765791 +70752 806 352 24508895 21495 9.463 0.008 30.586680 -91.406589 +70753 870 412 176871452 12995522 68.290 5.018 30.942185 -91.732185 +70754 10170 3761 313549482 987080 121.062 0.381 30.411567 -90.746721 +70755 2186 874 62692668 0 24.206 0.000 30.593309 -91.530033 +70756 393 176 36527891 0 14.103 0.000 30.546816 -91.614154 +70757 3177 1395 127047689 204796 49.053 0.079 30.489381 -91.519489 +70759 1528 731 117827443 3050246 45.493 1.178 30.697384 -91.579455 +70760 6993 3247 84620438 15233926 32.672 5.882 30.706456 -91.450744 +70761 897 445 160908278 336093 62.127 0.130 30.978671 -91.031423 +70762 926 560 49954573 1275003 19.288 0.492 30.578340 -91.464653 +70763 3816 1393 30794567 520687 11.890 0.201 30.044055 -90.741628 +70764 17584 7529 407891814 25921702 157.488 10.008 30.216866 -91.282778 +70767 14914 5905 372932840 16814026 143.990 6.492 30.481128 -91.330712 +70769 36084 13074 125455805 1689764 48.439 0.652 30.307430 -90.940643 +70770 2923 1154 53448665 0 20.637 0.000 30.643797 -90.996933 +70772 784 350 36597648 0 14.130 0.000 30.436961 -91.468653 +70773 143 62 9285028 164557 3.585 0.064 30.611166 -91.361880 +70774 10076 4050 196554471 4580264 75.890 1.768 30.214553 -90.761905 +70775 14720 4601 811057758 30080143 313.151 11.614 30.858188 -91.368979 +70776 6043 1007 86410303 7006583 33.363 2.705 30.264282 -91.095360 +70777 4269 1679 162497931 399466 62.741 0.154 30.740249 -91.078628 +70778 2291 942 62302039 739142 24.055 0.285 30.157789 -90.862655 +70780 1015 422 32946930 9796101 12.721 3.782 30.298733 -91.185298 +70782 299 179 67202454 4358882 25.947 1.683 30.955114 -91.509241 +70783 2604 1535 51676632 4742094 19.952 1.831 30.685464 -91.403798 +70785 20979 8009 249055340 125676 96.161 0.049 30.557101 -90.819236 +70787 127 87 12338241 53316 4.764 0.021 30.961632 -91.440710 +70788 4051 1661 279028896 8529134 107.734 3.293 30.132190 -91.177771 +70789 750 360 60044124 191204 23.183 0.074 30.940581 -91.082957 +70791 24918 9207 312124808 8704661 120.512 3.361 30.651982 -91.154440 +70801 13 17 336411 0 0.130 0.000 30.449656 -91.185977 +70802 27267 13056 19933632 2960562 7.696 1.143 30.444393 -91.177389 +70803 1335 185 624355 0 0.241 0.000 30.414307 -91.177653 +70805 29909 11724 29540969 1529971 11.406 0.591 30.488966 -91.158289 +70806 28706 14256 22988264 0 8.876 0.000 30.448759 -91.124753 +70807 20377 6748 66042672 11057969 25.499 4.270 30.543725 -91.219682 +70808 32504 15238 31272696 1013549 12.074 0.391 30.404141 -91.139138 +70809 25050 12811 38412858 46412 14.831 0.018 30.394045 -91.070972 +70810 37980 16471 70114507 1686339 27.071 0.651 30.332364 -91.091478 +70811 13676 5313 30195197 39117 11.658 0.015 30.537702 -91.134691 +70812 11206 4006 11270681 0 4.352 0.000 30.500728 -91.110436 +70814 14514 5533 20067395 0 7.748 0.000 30.485177 -91.067984 +70815 30075 12129 24815808 0 9.581 0.000 30.455462 -91.066262 +70816 43194 19976 41276173 676331 15.937 0.261 30.431813 -91.021967 +70817 31192 12629 66696691 851179 25.752 0.329 30.375106 -90.980420 +70818 9649 3860 37465391 0 14.465 0.000 30.542532 -91.049894 +70819 5040 1959 15038289 115356 5.806 0.045 30.472459 -91.009536 +70820 17222 8224 49234705 7364883 19.010 2.844 30.365042 -91.204051 +70836 0 0 58993 0 0.023 0.000 30.391248 -91.090342 +71001 4531 2029 320716741 222284 123.829 0.086 32.591547 -92.889253 +71003 989 507 164156408 89315 63.381 0.034 32.629546 -93.030824 +71004 644 306 103972349 3984446 40.144 1.538 32.748798 -93.859811 +71006 12158 5011 530629459 21359796 204.877 8.247 32.722679 -93.630387 +71007 1141 526 47832034 478319 18.468 0.185 32.362527 -94.006751 +71008 739 543 391338709 465388 151.097 0.180 32.346501 -92.967270 +71016 2070 994 322779936 5092040 124.626 1.966 32.224416 -93.116270 +71018 1622 866 218777908 1107745 84.471 0.428 32.823719 -93.426706 +71019 8555 3827 847739072 25070704 327.314 9.680 32.048755 -93.316966 +71021 772 468 1788535 11760 0.691 0.005 32.967708 -93.446542 +71023 3632 2021 125570708 15155583 48.483 5.852 32.476212 -93.410302 +71024 1420 696 157604330 257143 60.851 0.099 32.498109 -93.201695 +71027 1585 701 162856821 6676912 62.879 2.578 32.253378 -93.640018 +71028 1666 980 334235959 234961 129.049 0.091 32.497702 -93.075167 +71029 219 112 71869678 1772660 27.749 0.684 32.837200 -93.841034 +71030 1537 639 93507111 917005 36.103 0.354 32.195972 -93.784896 +71031 1064 594 383436642 29610530 148.046 11.433 32.002968 -92.904241 +71032 2164 1004 312828697 4333777 120.784 1.673 32.094865 -93.795369 +71033 3510 1532 65672796 791309 25.356 0.306 32.412084 -94.010585 +71034 313 144 8682506 23409 3.352 0.009 32.181488 -93.311368 +71037 19325 7874 283685726 742802 109.532 0.287 32.474983 -93.487497 +71038 4064 2154 561125632 610206 216.652 0.236 32.951539 -93.062870 +71039 1934 944 119510268 6882096 46.143 2.657 32.430294 -93.289700 +71040 10268 4159 751092046 24278698 289.998 9.374 32.772862 -93.023730 +71043 546 284 36292969 2977027 14.013 1.149 32.886012 -93.887836 +71044 657 355 138342544 3536212 53.414 1.365 32.954178 -93.882456 +71045 663 407 122264276 2625856 47.207 1.014 32.331678 -93.184616 +71046 1351 648 231616404 880556 89.428 0.340 32.163058 -93.948825 +71047 12203 4883 278686651 1196192 107.602 0.462 32.289524 -93.914938 +71048 104 82 53179593 0 20.533 0.000 32.838519 -92.845589 +71049 3460 1706 224621067 10199323 86.727 3.938 32.009206 -93.966552 +71051 2409 1216 242654398 23677222 93.689 9.142 32.319454 -93.477953 +71052 10259 4976 839182169 24700367 324.010 9.537 32.003718 -93.663325 +71055 20268 8928 667712274 6968580 257.805 2.691 32.677002 -93.293272 +71060 3089 1392 174893347 20699460 67.527 7.992 32.654150 -93.980594 +71061 1712 861 47686092 1380359 18.412 0.533 32.778379 -93.955346 +71063 748 379 266375624 1344762 102.848 0.519 31.911493 -93.515127 +71064 4096 1915 556246119 10406911 214.768 4.018 32.913180 -93.679607 +71065 1232 609 147894338 55106 57.102 0.021 31.800690 -93.504181 +71067 3297 1390 99530710 20813 38.429 0.008 32.598629 -93.503881 +71068 3627 2098 372596375 17691609 143.860 6.831 32.278612 -93.310394 +71069 812 434 81407213 11223594 31.432 4.333 32.967888 -93.987968 +71070 1833 1081 529553773 14158081 204.462 5.466 32.101917 -93.012875 +71071 2685 1209 124297722 2651657 47.992 1.024 32.921887 -93.456762 +71072 1530 728 253365287 1472736 97.825 0.569 32.937113 -93.311269 +71073 2319 1094 73928080 12667523 28.544 4.891 32.520966 -93.311594 +71075 6416 3138 96030646 9546946 37.078 3.686 32.994947 -93.509177 +71078 5546 2211 120350087 1027950 46.467 0.397 32.256499 -93.781822 +71079 272 127 85394575 1923809 32.971 0.743 32.933417 -92.810705 +71082 5119 2361 195810318 39727164 75.603 15.339 32.832885 -93.964837 +71101 8197 4357 11197092 487480 4.323 0.188 32.506371 -93.747221 +71103 7813 3605 9825515 0 3.794 0.000 32.491936 -93.772098 +71104 14802 7349 10255808 28990 3.960 0.011 32.483775 -93.731646 +71105 21907 11161 23817706 2012548 9.196 0.777 32.456691 -93.709890 +71106 34814 14429 84016468 3863012 32.439 1.492 32.378473 -93.730665 +71107 33800 13099 370025766 27281199 142.868 10.533 32.595618 -93.859525 +71108 20388 8014 22144890 14114 8.550 0.005 32.443173 -93.787826 +71109 22154 9722 32539131 3263376 12.563 1.260 32.467911 -93.813872 +71110 2793 735 86531119 2290993 33.410 0.885 32.504882 -93.596138 +71111 38456 16485 118313813 4996586 45.681 1.929 32.573112 -93.699378 +71112 31358 13027 110805936 6845328 42.782 2.643 32.444413 -93.633120 +71115 14506 6952 285798789 19380220 110.348 7.483 32.268803 -93.579561 +71118 24761 10598 34209861 259019 13.209 0.100 32.393679 -93.804064 +71119 11562 5005 114871428 13747981 44.352 5.308 32.490693 -93.925460 +71129 13391 6186 116988654 718938 45.170 0.278 32.386201 -93.913016 +71201 20319 10052 33620804 1435509 12.981 0.554 32.532695 -92.105168 +71202 29044 10341 298790883 7101170 115.364 2.742 32.399905 -92.056550 +71203 37105 15266 307805782 17132374 118.844 6.615 32.582214 -92.018420 +71209 154 0 24286 8767 0.009 0.003 32.528999 -92.069586 +71219 1288 548 157430102 177776 60.784 0.069 32.325706 -91.693220 +71220 23266 10050 962419987 15790397 371.592 6.097 32.864539 -91.908541 +71222 3481 1673 379587919 317336 146.560 0.123 32.827193 -92.657274 +71223 523 263 144979603 387353 55.977 0.150 32.888914 -91.654814 +71225 7068 2808 151220965 196712 58.387 0.076 32.512270 -92.338609 +71226 1638 1148 389109356 19322016 150.236 7.460 32.250749 -92.437982 +71227 3635 1615 289910851 784646 111.935 0.303 32.536500 -92.478015 +71229 1662 642 151920459 3355367 58.657 1.296 32.631926 -91.896748 +71232 6581 2897 780755869 1414256 301.452 0.546 32.405303 -91.466092 +71233 305 152 1629716 0 0.629 0.000 32.325178 -90.932097 +71234 3992 1952 307240625 2999233 118.626 1.158 32.645272 -92.330561 +71235 4280 2033 418423914 754414 161.554 0.291 32.692530 -92.674464 +71237 1578 565 167805272 173304 64.790 0.067 32.597160 -91.494797 +71238 2807 1222 283437234 137658 109.436 0.053 32.363146 -92.375771 +71241 9982 4812 504198061 61733531 194.672 23.835 32.779113 -92.353396 +71243 194 106 66006271 4815035 25.485 1.859 31.954770 -91.810966 +71245 4718 1310 18197312 56873 7.026 0.022 32.534093 -92.725885 +71247 1175 630 6439521 1069894 2.486 0.413 32.273630 -92.722117 +71250 220 179 247249385 2897618 95.464 1.119 32.954994 -91.583189 +71251 9051 3855 473910663 6766436 182.978 2.613 32.220631 -92.676890 +71253 255 123 2624760 0 1.013 0.000 32.991202 -91.309440 +71254 6759 2422 680898417 28768830 262.896 11.108 32.796481 -91.253379 +71256 688 315 124668941 5583291 48.135 2.156 32.949640 -92.721146 +71259 1697 743 244454466 1378680 94.384 0.532 32.271101 -91.848307 +71260 3177 1792 732788410 5608579 282.931 2.165 32.907919 -92.234961 +71261 1684 901 327793187 3049978 126.562 1.178 32.772402 -91.698336 +71263 8275 3681 537098326 1291791 207.375 0.499 32.873248 -91.425862 +71264 1045 529 295457449 2682293 114.077 1.036 32.601281 -91.772528 +71266 1699 780 294905980 921098 113.864 0.356 32.694663 -91.504375 +71268 2819 1353 329507208 484082 127.223 0.187 32.346067 -92.737020 +71269 12757 5039 836752076 9745553 323.072 3.763 32.440635 -91.793784 +71270 30887 13914 529833360 1252507 204.570 0.484 32.494104 -92.642120 +71272 1893 0 423127 0 0.163 0.000 32.526867 -92.649341 +71275 2453 1158 263938289 32065 101.907 0.012 32.511899 -92.816833 +71276 289 125 125878645 9529079 48.602 3.679 32.570222 -91.147841 +71277 1758 906 282816887 379024 109.196 0.146 32.943343 -92.550972 +71279 45 25 135755 0 0.052 0.000 32.487355 -91.857122 +71280 3647 1608 166322680 6325078 64.218 2.442 32.723664 -92.091646 +71282 11070 4283 1186630319 67563983 458.161 26.087 32.358981 -91.181064 +71286 615 307 240538575 17976060 92.872 6.941 32.661616 -91.199855 +71291 32644 14480 167734104 5461641 64.763 2.109 32.565664 -92.172926 +71292 21541 9104 390644499 21181529 150.829 8.178 32.396678 -92.214764 +71295 14343 5977 823871180 8899703 318.098 3.436 32.148625 -91.707292 +71301 22859 9766 32317153 348303 12.478 0.134 31.274156 -92.467107 +71302 15049 6478 170509700 5977543 65.834 2.308 31.197018 -92.370220 +71303 21015 8947 171081274 475955 66.055 0.184 31.281321 -92.547344 +71316 37 35 114221641 3246505 44.101 1.253 31.241848 -91.741404 +71322 6969 3075 461322510 3559976 178.118 1.375 30.858308 -92.161866 +71323 989 387 70987172 266576 27.408 0.103 31.267741 -92.211702 +71325 1321 643 220375231 4861197 85.087 1.877 30.999205 -92.322145 +71326 1164 559 208226606 4897684 80.397 1.891 31.777078 -91.603933 +71327 5454 1607 108856707 52989 42.030 0.020 30.982392 -92.031295 +71328 7414 3110 313927767 20626144 121.208 7.964 31.355107 -92.175672 +71331 1036 429 180551593 10193697 69.711 3.936 31.257244 -92.113148 +71333 666 362 98150672 206514 37.896 0.080 30.909986 -92.071870 +71334 9839 4208 441620358 31567079 170.511 12.188 31.659268 -91.564781 +71336 1650 865 306582010 7736061 118.372 2.987 32.034750 -91.598722 +71339 130 56 22078031 0 8.524 0.000 31.013823 -91.932294 +71340 1710 526 298883106 14977716 115.399 5.783 31.759812 -91.808050 +71341 3069 1362 66615951 817588 25.721 0.316 31.065430 -92.168056 +71342 7533 3318 393427515 34695893 151.903 13.396 31.606608 -92.143215 +71343 7678 3739 1358541637 117589670 524.536 45.402 31.523925 -91.896812 +71345 69 36 427341 926 0.165 0.000 30.728356 -91.975451 +71346 3040 1346 213169689 4024481 82.305 1.554 31.118246 -92.374928 +71350 4124 1943 90061901 942509 34.773 0.364 31.067691 -92.074182 +71351 11502 5222 528714823 31600872 204.138 12.201 31.183488 -91.961712 +71353 1664 926 194833931 10318246 75.226 3.984 30.772930 -91.789004 +71354 1699 927 245261351 13377748 94.696 5.165 31.404453 -91.750055 +71355 2764 1424 368451922 33272196 142.260 12.846 31.080929 -91.843964 +71356 648 308 89553721 293932 34.577 0.113 30.815703 -92.040935 +71357 2149 1407 725283872 32360713 280.034 12.495 32.117473 -91.299990 +71358 1111 593 233808422 5215776 90.274 2.014 30.691880 -91.870105 +71360 35361 14471 507450502 27631365 195.928 10.669 31.328109 -92.350376 +71362 2169 921 133495105 267493 51.543 0.103 30.899115 -91.961060 +71366 1974 1265 424070699 37010301 163.735 14.290 31.937216 -91.337058 +71367 1278 601 172878493 8309914 66.749 3.208 30.881575 -92.298045 +71368 1459 851 215741784 3646917 83.298 1.408 31.872681 -91.680146 +71369 3222 1315 197314767 4411066 76.184 1.703 30.930023 -91.877060 +71371 2151 991 387062503 1991213 149.446 0.769 31.681682 -92.255293 +71373 7358 3267 710311966 73129308 274.253 28.235 31.311094 -91.608958 +71375 1129 685 344433110 7470358 132.986 2.884 31.874207 -91.487794 +71377 112 50 832687 5777 0.322 0.002 31.610604 -91.786272 +71378 2536 1211 128524566 6456312 49.624 2.493 31.952617 -91.709405 +71401 117 60 73347899 0 28.320 0.000 31.797481 -91.945921 +71403 4584 2063 361902563 13826831 139.731 5.339 31.215061 -93.434114 +71404 797 463 264494643 3053325 102.122 1.179 31.747006 -92.751585 +71405 5592 2302 37962882 47165 14.658 0.018 31.410200 -92.402686 +71406 216 97 20585319 0 7.948 0.000 31.733102 -93.504579 +71407 933 367 35568091 162880 13.733 0.063 31.511005 -92.485916 +71409 6874 3031 347081699 18446087 134.009 7.122 31.312475 -92.698494 +71410 124 71 1787695 0 0.690 0.000 31.964808 -92.771461 +71411 2875 1583 174122745 24331185 67.229 9.394 31.905455 -93.090534 +71414 238 94 1581455 20437 0.611 0.008 31.827932 -93.023897 +71416 842 463 174644127 5227587 67.430 2.018 31.540434 -92.896951 +71417 4932 2167 359627691 22074891 138.853 8.523 31.508165 -92.649637 +71418 6295 3459 887302777 31531001 342.590 12.174 32.153925 -92.066720 +71419 2444 1368 365315244 257659 141.049 0.099 31.819541 -93.712333 +71422 1542 779 376091970 825801 145.210 0.319 32.075286 -92.665698 +71423 4538 1961 334843224 11931912 129.284 4.607 31.608231 -92.568390 +71424 1225 494 149701816 517808 57.800 0.200 31.198217 -92.689845 +71425 214 125 97270880 1079369 37.556 0.417 31.886070 -91.873993 +71426 229 106 2990647 0 1.155 0.000 31.498836 -93.459873 +71427 413 198 40744802 173409 15.732 0.067 31.393954 -92.895939 +71429 3179 1945 628237617 807579 242.564 0.312 31.409171 -93.434636 +71430 2576 1046 221591635 17927881 85.557 6.922 31.045222 -92.495816 +71432 1053 495 234857099 1304944 90.679 0.504 31.749577 -92.467710 +71433 4367 1960 417837512 2003454 161.328 0.774 31.002986 -92.645832 +71435 3979 1766 522996395 199656 201.930 0.077 32.031741 -92.166355 +71438 1626 715 224461566 165361 86.665 0.064 31.123274 -92.824105 +71439 1897 862 139512878 978138 53.866 0.378 31.336817 -93.395725 +71441 618 295 141335510 45450 54.570 0.018 31.951563 -92.153440 +71446 22762 10364 1540881608 16497114 594.938 6.370 31.166711 -93.186912 +71447 1469 734 390104560 27742546 150.620 10.711 31.439054 -92.812704 +71449 9696 5924 610746247 12908275 235.810 4.984 31.545133 -93.511491 +71450 1070 537 165690727 620855 63.974 0.240 31.777653 -93.415279 +71452 57 59 29060349 813789 11.220 0.314 31.585083 -92.944474 +71454 2527 1406 274146463 10808571 105.849 4.173 31.691420 -92.858382 +71455 227 150 159102580 34553 61.430 0.013 31.403448 -92.989500 +71456 1223 739 96065126 3864587 37.091 1.492 31.642077 -92.978467 +71457 27809 12191 684331261 40008089 264.222 15.447 31.741850 -93.105944 +71459 11902 3436 24073471 30656 9.295 0.012 31.049335 -93.223895 +71461 2577 1080 4832731 1744 1.866 0.001 31.117968 -93.288907 +71462 1432 830 106479096 9679931 41.112 3.737 31.656767 -93.721339 +71463 10801 3758 616768716 2311401 238.136 0.892 30.810055 -92.609872 +71465 3139 1471 588253373 405461 227.126 0.157 31.876805 -92.179144 +71466 591 236 22073920 0 8.523 0.000 31.215147 -92.748626 +71467 7998 2342 463756543 7798796 179.057 3.011 31.563307 -92.387126 +71468 868 485 456343774 1093660 176.195 0.422 31.480849 -93.148903 +71469 2792 1332 605349165 2896039 233.727 1.118 31.694472 -93.270631 +71472 287 137 51035660 727 19.705 0.000 31.168851 -92.787163 +71473 495 450 338112916 68266 130.546 0.026 32.060376 -92.436094 +71474 663 310 59047767 110990 22.798 0.043 31.274616 -93.013045 +71479 738 387 244688139 281899 94.475 0.109 31.848859 -92.367977 +71480 1324 323 13200854 54532 5.097 0.021 31.862283 -92.290599 +71483 11294 4871 951947461 10203124 367.549 3.939 31.892384 -92.657875 +71485 1804 782 162805140 4650300 62.859 1.795 31.156610 -92.541679 +71486 4940 2855 262400307 5486937 101.313 2.119 31.659006 -93.607437 +71601 17327 7411 284800346 15157896 109.962 5.852 34.179353 -91.892651 +71602 17982 7630 300511240 16126409 116.028 6.226 34.265166 -92.145566 +71603 34343 14760 459137476 1098922 177.274 0.424 34.121075 -92.088127 +71630 405 247 89314615 15545501 34.485 6.002 33.620304 -91.207069 +71631 673 414 318841630 0 123.105 0.000 33.580025 -92.264958 +71635 12348 5803 560032086 26246994 216.230 10.134 33.130555 -91.996610 +71638 3794 1655 600925739 12390537 232.019 4.784 33.520939 -91.484745 +71639 6579 2992 470269974 13045225 181.572 5.037 33.901476 -91.520374 +71640 3227 1494 507661790 26754508 196.009 10.330 33.101218 -91.278079 +71642 648 377 137750473 202456 53.186 0.078 33.387395 -91.887479 +71643 1109 599 281889192 14800572 108.838 5.715 34.016891 -91.576497 +71644 4264 506 193581814 5705519 74.742 2.203 34.098301 -91.704714 +71646 6756 2836 1012039611 3770313 390.751 1.456 33.235544 -91.787587 +71647 2111 1197 652475698 2802946 251.922 1.082 33.364360 -92.114035 +71651 150 163 217884798 4572774 84.126 1.766 33.322335 -92.284943 +71652 1159 628 433409340 338359 167.340 0.131 33.932638 -92.333039 +71653 5152 2502 816710428 90348472 315.334 34.884 33.343373 -91.251768 +71654 4671 2242 182932289 3276400 70.631 1.265 33.621364 -91.363284 +71655 15387 6845 936458402 2623489 361.569 1.013 33.633633 -91.747241 +71658 728 334 291843640 5154886 112.681 1.990 33.315968 -91.562057 +71659 104 62 5775702 0 2.230 0.000 34.143566 -91.775854 +71660 963 521 311623481 508501 120.319 0.196 33.758739 -92.202721 +71661 450 230 246684262 995988 95.245 0.385 33.151034 -91.550243 +71662 82 49 26964536 1365511 10.411 0.527 33.843455 -91.506833 +71663 732 347 200017156 997661 77.227 0.385 33.226443 -91.429483 +71665 6054 2686 729409419 1613217 281.627 0.623 33.930085 -92.110319 +71666 79 41 6635245 0 2.562 0.000 33.761035 -91.282223 +71667 8267 3561 814975442 2850723 314.664 1.101 33.924493 -91.837096 +71670 1403 698 528960269 18658505 204.233 7.204 33.725289 -91.407232 +71671 8665 4115 477907491 1554960 184.521 0.600 33.601989 -92.096049 +71674 738 392 630299262 44860372 243.360 17.321 33.837006 -91.175209 +71675 1824 896 438817474 1599361 169.428 0.618 33.591748 -91.938191 +71676 684 438 272587209 2848328 105.247 1.100 33.052156 -91.567617 +71677 185 92 20260322 332759 7.823 0.128 33.761875 -91.480643 +71701 20286 9877 740326302 6565506 285.842 2.535 33.586463 -92.819690 +71711 106 26 6024084 0 2.326 0.000 33.637549 -92.720251 +71720 2498 1302 386885278 189779 149.377 0.073 33.785026 -92.653926 +71722 87 65 46465059 225689 17.940 0.087 33.715030 -93.166445 +71724 431 261 3061393 2077575 1.182 0.802 33.327776 -92.535675 +71725 555 365 369977818 38285 142.849 0.015 34.049630 -92.557937 +71726 1435 983 500159796 10149268 193.113 3.919 33.678186 -92.998159 +71730 32213 14828 1183678699 5006359 457.021 1.933 33.198815 -92.627072 +71740 1735 878 477858862 234875 184.502 0.091 33.076871 -93.167354 +71742 5980 2789 472520969 1297654 182.441 0.501 33.852672 -92.448887 +71743 4090 2086 534525148 598325 206.381 0.231 33.889332 -93.097793 +71744 3224 1849 1033619295 6799823 399.083 2.625 33.498821 -92.480920 +71745 264 146 3872185 0 1.495 0.000 33.500735 -92.396088 +71747 1097 752 207500126 20883337 80.116 8.063 33.060731 -92.202891 +71749 2595 1205 427853970 202374 165.195 0.078 33.071881 -92.818579 +71751 939 481 203218332 1746606 78.463 0.674 33.411484 -92.760260 +71752 1052 562 98476700 277621 38.022 0.107 33.392631 -93.192015 +71753 16848 7786 824833950 864667 318.470 0.334 33.227759 -93.183903 +71758 450 232 179904526 186860 69.462 0.072 33.309289 -92.914948 +71759 600 250 16406587 0 6.335 0.000 33.320987 -92.644185 +71762 2501 1159 147979544 245207 57.135 0.095 33.342916 -92.768358 +71763 1666 997 583728150 2055897 225.379 0.794 33.916457 -92.805340 +71764 1880 1018 473845523 373317 182.953 0.144 33.432526 -93.047925 +71765 2156 1156 513582173 12799859 198.295 4.942 33.141882 -92.331795 +71766 670 372 188964734 324418 72.960 0.125 33.725131 -92.506653 +71770 3526 1779 382617502 546651 147.729 0.211 33.388092 -93.317427 +71772 34 19 324701 0 0.125 0.000 33.832642 -93.126092 +71801 16745 7347 781719178 6153649 301.823 2.376 33.641730 -93.600599 +71820 103 64 49328299 922093 19.046 0.356 33.798767 -94.272322 +71822 8925 4230 658085461 15839940 254.088 6.116 33.663107 -94.156265 +71823 83 41 23569620 1705615 9.100 0.659 33.826826 -94.121611 +71825 645 275 63388996 237650 24.475 0.092 33.877783 -93.556496 +71826 1315 615 331004405 10632638 127.802 4.105 33.092540 -93.723219 +71827 817 429 148496309 448529 57.335 0.173 33.425189 -93.396517 +71832 11253 4145 457377248 3348246 176.594 1.293 34.036919 -94.351136 +71833 2280 1058 412220499 1508916 159.159 0.583 34.141928 -94.041250 +71834 1491 774 385045777 6051346 148.667 2.336 33.114846 -93.957839 +71835 1334 650 212975550 847572 82.230 0.327 33.644014 -93.429182 +71836 2856 1411 438410593 8759719 169.271 3.382 33.714994 -94.397650 +71837 5227 2107 411959416 5959768 159.058 2.301 33.254863 -93.844922 +71838 1148 637 330959164 8572575 127.784 3.310 33.652497 -93.812294 +71839 280 216 100476426 4521012 38.794 1.746 33.334884 -93.729032 +71841 913 434 178574545 1007460 68.948 0.389 34.161996 -94.339512 +71842 2241 931 199633718 2286371 77.079 0.883 33.902882 -94.285269 +71845 2387 1214 545715211 15845996 210.702 6.118 33.323581 -93.634637 +71846 2652 1379 559516485 33250552 216.031 12.838 33.943737 -94.127736 +71847 673 329 148315042 254548 57.265 0.098 33.926251 -93.636805 +71851 2241 1089 218288779 7896728 84.282 3.049 33.856659 -93.942522 +71852 10102 4504 701724770 2697734 270.937 1.042 33.997681 -93.855553 +71853 365 189 81660907 8110739 31.529 3.132 33.593799 -93.938035 +71854 36438 16175 721189765 14731714 278.453 5.688 33.451415 -93.881829 +71855 708 387 142277764 512642 54.934 0.198 33.864553 -93.750907 +71857 5894 2850 698296926 5156004 269.614 1.991 33.801468 -93.337590 +71858 1710 942 518283490 1185596 200.110 0.458 33.585136 -93.263796 +71859 477 335 55922918 23774232 21.592 9.179 33.744439 -93.910186 +71860 2633 1422 281914578 1050035 108.848 0.405 33.290403 -93.489882 +71861 2258 1482 362091977 15754443 139.804 6.083 33.100673 -93.499952 +71862 771 420 167817913 42175 64.795 0.016 33.777523 -93.727827 +71865 194 105 1577227 0 0.609 0.000 33.740987 -94.149863 +71866 725 457 114615715 1735208 44.253 0.670 33.877497 -94.406484 +71901 29491 14385 267404865 3957905 103.246 1.528 34.526453 -92.974072 +71909 15508 9128 209958141 7557419 81.065 2.918 34.643688 -92.997552 +71913 43436 23942 328138040 26524691 126.695 10.241 34.448083 -93.095565 +71921 3652 1690 512935854 23805771 198.046 9.191 34.243654 -93.390909 +71922 129 78 5386764 127145 2.080 0.049 34.023734 -93.415372 +71923 15637 7078 1024218420 22675158 395.453 8.755 34.085100 -93.045228 +71929 4487 2121 247239923 7289018 95.460 2.814 34.303737 -93.159556 +71933 1616 754 246451419 190460 95.155 0.074 34.439307 -93.342843 +71935 808 437 303317760 1262169 117.112 0.487 34.395731 -93.751549 +71937 2026 997 180762517 1169099 69.793 0.451 34.399366 -94.390304 +71940 1652 849 279541043 1788819 107.931 0.691 34.023354 -93.520406 +71941 2098 969 193987317 794059 74.899 0.307 34.247250 -92.948746 +71943 4821 2079 290590708 1448117 112.198 0.559 34.340316 -93.607268 +71944 773 358 109016925 543262 42.092 0.210 34.242824 -94.332769 +71945 1437 674 185579356 1151922 71.653 0.445 34.485153 -94.339565 +71949 1989 1310 538549529 71790786 207.935 27.719 34.698923 -93.220440 +71950 875 584 95656694 3250389 36.933 1.255 34.256518 -93.717836 +71952 145 75 68113868 492980 26.299 0.190 34.277731 -93.825032 +71953 14882 7339 1655657531 8229677 639.253 3.177 34.608105 -94.196979 +71956 1882 889 60054189 5500277 23.187 2.124 34.597999 -93.153103 +71957 3133 2419 362438860 33800451 139.938 13.050 34.565024 -93.574701 +71958 2525 1299 278736292 9489665 107.621 3.664 34.120932 -93.661109 +71959 754 398 158572766 577351 61.225 0.223 34.243165 -93.931584 +71960 1383 750 392660054 453052 151.607 0.175 34.483985 -93.709571 +71961 1003 509 226104469 1829444 87.299 0.706 34.596691 -93.841855 +71962 792 469 428812857 213600 165.566 0.082 34.036161 -93.322844 +71964 3926 1621 89175444 121527 34.431 0.047 34.424134 -93.240731 +71965 315 168 56503052 390439 21.816 0.151 34.670485 -93.746571 +71968 4717 2345 254537608 37026590 98.278 14.296 34.524148 -93.290405 +71969 376 210 85824440 1034178 33.137 0.399 34.669242 -93.629210 +71970 792 565 199880647 13200389 77.174 5.097 34.668442 -93.488527 +71971 513 249 171548123 213237 66.235 0.082 34.304022 -94.034257 +71972 309 150 75791388 372378 29.263 0.144 34.382891 -94.276862 +71973 1424 590 204280327 1264719 78.873 0.488 34.301882 -94.318986 +71998 321 16 93590 0 0.036 0.000 34.126385 -93.055286 +71999 706 0 159776 0 0.062 0.000 34.127458 -93.059067 +72001 566 250 65798778 154185 25.405 0.060 35.058351 -92.885846 +72002 14134 5717 148711648 1835352 57.418 0.709 34.660794 -92.527512 +72003 746 378 258220595 7208826 99.700 2.783 34.382529 -91.390261 +72004 1311 629 405782228 29378785 156.673 11.343 34.282786 -91.779310 +72005 248 116 52906865 591426 20.427 0.228 35.537189 -91.070427 +72006 2603 1418 497172506 13422960 191.959 5.183 35.243873 -91.359583 +72007 6708 2601 113509311 446369 43.826 0.172 35.001906 -91.983200 +72010 6577 2884 351812230 2835923 135.835 1.095 35.319509 -91.536893 +72011 4074 1551 145922716 2393897 56.341 0.924 34.500623 -92.465885 +72012 11986 4923 236409561 582443 91.278 0.225 35.094896 -91.907692 +72013 2197 1098 253336103 4500322 97.814 1.738 35.455378 -92.368576 +72014 60 37 1540375 0 0.595 0.000 35.432519 -91.111806 +72015 27307 11259 212052834 728315 81.874 0.281 34.485476 -92.585282 +72016 3268 1359 210416985 16827966 81.242 6.497 34.970823 -92.632882 +72017 726 413 130734045 4550792 50.477 1.757 34.899441 -91.415565 +72019 23346 9391 426358828 1371547 164.618 0.530 34.638030 -92.685264 +72020 4295 1972 447642189 5943384 172.836 2.295 35.472034 -91.470145 +72021 4348 2170 467895989 8279814 180.656 3.197 34.845540 -91.217479 +72022 14270 6104 39450241 226410 15.232 0.087 34.607453 -92.488535 +72023 35026 13652 244016317 1995858 94.215 0.771 34.964293 -92.063696 +72024 3777 1720 522817573 12771896 201.861 4.931 34.760848 -91.741919 +72025 847 399 151976583 406468 58.678 0.157 35.052266 -92.999978 +72026 393 238 76705119 3050573 29.616 1.178 34.502506 -91.300494 +72027 1417 631 176090332 1189652 67.989 0.459 35.373818 -92.572871 +72029 1912 1005 131042849 1874405 50.596 0.724 34.707121 -91.238574 +72030 705 348 135976828 1846050 52.501 0.713 35.427090 -92.675901 +72031 7683 4017 769801356 12928219 297.222 4.992 35.632831 -92.532111 +72032 31436 13327 295576156 19734469 114.123 7.620 35.065889 -92.362874 +72034 44723 18778 145427592 2268495 56.150 0.876 35.049921 -92.486049 +72035 1083 0 320344 0 0.124 0.000 35.078763 -92.457353 +72036 817 577 303604111 1762500 117.222 0.681 35.011116 -91.273098 +72037 28 17 394192 0 0.152 0.000 34.537243 -91.874679 +72038 74 43 52788530 2379294 20.382 0.919 34.453852 -91.240529 +72039 2131 976 151442891 86542 58.472 0.033 35.355769 -92.397334 +72040 2867 1434 445659540 19891293 172.070 7.680 34.974056 -91.540872 +72041 1457 901 250649106 22687861 96.776 8.760 34.721785 -91.467356 +72042 5161 2438 613535074 19207422 236.887 7.416 34.260580 -91.324459 +72044 881 730 159922615 11547868 61.746 4.459 35.660028 -92.164976 +72045 1151 522 115570630 16009 44.622 0.006 35.129841 -92.032290 +72046 4470 2125 605693831 28943232 233.860 11.175 34.554711 -91.949635 +72047 969 403 81462933 0 31.453 0.000 35.223782 -92.210687 +72048 114 81 215734089 8709325 83.295 3.363 34.217058 -91.127703 +72051 622 321 108446895 2212 41.872 0.001 35.786051 -92.321011 +72055 849 521 237875087 20842365 91.844 8.047 34.098693 -91.354190 +72057 1070 505 231976594 52608 89.567 0.020 34.140939 -92.310368 +72058 15911 6212 404340072 367239 156.117 0.142 35.245942 -92.374500 +72059 37 43 35107957 0 13.555 0.000 35.139594 -91.315003 +72060 666 316 166227199 981790 64.181 0.379 35.073708 -91.599008 +72061 250 96 8884848 0 3.430 0.000 35.322763 -92.299994 +72063 1683 771 206489730 4003326 79.726 1.546 35.318065 -92.790206 +72064 2451 1139 390964448 8714998 150.952 3.365 34.791589 -91.608698 +72065 5207 2159 148205518 3894442 57.222 1.504 34.526710 -92.282418 +72067 2726 2674 126029834 33606858 48.660 12.976 35.563373 -92.155437 +72068 424 180 2479359 0 0.957 0.000 35.190309 -91.710765 +72069 1369 1038 604902797 11954199 233.554 4.616 34.536297 -91.150062 +72070 1813 919 174538069 3602717 67.390 1.391 35.008120 -92.706952 +72072 544 246 94688009 9019716 36.559 3.483 34.523961 -91.739547 +72073 1139 621 353499482 17019110 136.487 6.571 34.381138 -91.669076 +72074 167 115 89578377 1935495 34.586 0.747 35.078270 -91.095316 +72076 37979 16922 191809667 368159 74.058 0.142 34.916269 -92.139537 +72079 786 334 60633148 999229 23.411 0.386 34.390546 -92.173539 +72080 662 417 245735897 839244 94.879 0.324 35.437998 -92.834510 +72081 7798 3287 241423917 731363 93.214 0.282 35.382007 -91.670425 +72082 1935 895 13788858 131668 5.324 0.051 35.232834 -91.673570 +72083 237 108 14767760 85709 5.702 0.033 34.593528 -92.008712 +72084 1229 676 512459963 1103917 197.862 0.426 34.143958 -92.667512 +72085 220 111 894234 0 0.345 0.000 35.363958 -91.829069 +72086 10727 4322 376074400 38230244 145.203 14.761 34.807090 -91.907630 +72087 2051 975 198596978 17200 76.679 0.007 34.596727 -92.826199 +72088 2391 2237 38201165 7950161 14.750 3.070 35.595187 -92.267834 +72099 616 0 480780 0 0.186 0.000 34.899278 -92.141459 +72101 3378 1599 671753109 1714917 259.365 0.662 35.242387 -91.164298 +72102 2873 1203 131042912 394067 50.596 0.152 35.147155 -91.830016 +72103 13078 5289 79658466 441492 30.756 0.170 34.590486 -92.390045 +72104 23354 9832 822785948 5164262 317.679 1.994 34.342042 -92.821803 +72106 5376 2462 118852979 17461338 45.889 6.742 34.973953 -92.522958 +72107 339 154 30273732 775586 11.689 0.299 35.141820 -92.536244 +72108 73 39 25345998 123136 9.786 0.048 34.687786 -91.066022 +72110 11498 5208 321342886 20982813 124.071 8.102 35.156629 -92.781666 +72111 1362 596 151707579 54020 58.575 0.021 35.238551 -92.131305 +72112 11467 4613 850468590 14770939 328.368 5.703 35.582263 -91.230074 +72113 21273 9372 67834553 4634208 26.191 1.789 34.859543 -92.397596 +72114 12658 6313 20682519 2945609 7.986 1.137 34.764532 -92.258752 +72116 21431 10493 17332478 447294 6.692 0.173 34.800258 -92.245317 +72117 12684 5388 143475461 14754266 55.396 5.697 34.775747 -92.140707 +72118 22592 10066 74499417 4267762 28.764 1.648 34.840380 -92.325288 +72119 5 3 778530 0 0.301 0.000 34.834025 -92.292252 +72120 31610 13557 130166218 923087 50.257 0.356 34.900292 -92.241495 +72121 2704 1422 185090178 0 71.464 0.000 35.455321 -91.786140 +72122 927 405 269988676 4778993 104.243 1.845 34.781864 -92.787412 +72123 450 229 2275373 0 0.879 0.000 35.258740 -91.235388 +72125 905 410 56197455 1744215 21.698 0.673 35.066154 -92.790755 +72126 3674 1798 525425200 8553431 202.868 3.302 34.942789 -92.916184 +72127 2149 983 137484454 3524540 53.083 1.361 35.173287 -92.606244 +72128 814 331 58290836 113746 22.506 0.044 34.313070 -92.621432 +72129 1409 608 124227392 178616 47.964 0.069 34.325635 -92.542736 +72130 560 247 84477606 1212444 32.617 0.468 35.661399 -92.056438 +72131 4631 2383 338940248 17321289 130.866 6.688 35.415890 -92.187763 +72132 3242 1394 157658263 4709451 60.872 1.818 34.446273 -92.204774 +72134 315 145 125610148 3879909 48.498 1.498 34.617709 -91.350619 +72135 2623 1142 183897233 35848027 71.003 13.841 34.877841 -92.540100 +72136 1772 752 132621596 444965 51.205 0.172 35.241599 -92.005774 +72137 2555 1091 176619227 114149 68.193 0.044 35.335706 -92.037221 +72139 216 104 1072958 0 0.414 0.000 35.361003 -91.507798 +72140 305 207 49569648 770220 19.139 0.297 34.362455 -91.167189 +72141 625 373 216713648 923272 83.674 0.356 35.513306 -92.672187 +72142 2499 1104 269458716 18447026 104.039 7.122 34.692358 -92.054865 +72143 35169 14381 788976682 6020599 304.626 2.325 35.232983 -91.736474 +72149 0 0 29652 0 0.011 0.000 35.249093 -91.726214 +72150 12006 5171 760025548 1178481 293.448 0.455 34.313365 -92.394063 +72152 429 262 190219095 8571710 73.444 3.310 34.356114 -91.979332 +72153 2572 1465 218796410 9753528 84.478 3.766 35.646118 -92.326280 +72156 639 285 66419180 828540 25.645 0.320 35.281036 -92.685033 +72157 1607 741 132346220 30169 51.099 0.012 35.271247 -92.556658 +72160 10736 5137 870327339 48832698 336.035 18.854 34.427743 -91.528699 +72165 111 53 13095360 0 5.056 0.000 35.575447 -91.457962 +72166 260 238 263907818 20219228 101.895 7.807 34.058494 -91.233567 +72167 1719 702 116077619 68967 44.818 0.027 34.417804 -92.647499 +72168 1834 226 117047151 2317141 45.192 0.895 34.440061 -91.971787 +72169 203 91 29698232 0 11.467 0.000 35.396488 -91.226561 +72170 202 104 24013705 160825 9.272 0.062 34.586000 -91.417505 +72173 9078 3449 248238330 593023 95.845 0.229 35.100101 -92.211144 +72175 354 190 118165255 2546195 45.624 0.983 34.336715 -91.764040 +72176 8141 3260 205462785 564557 79.330 0.218 35.002357 -91.835241 +72179 450 237 60550785 0 23.379 0.000 35.503585 -91.855553 +72181 62 21 3260527 0 1.259 0.000 35.162396 -92.445162 +72201 1024 902 3134578 317438 1.210 0.123 34.746905 -92.280049 +72202 9978 6311 22473183 3515715 8.677 1.357 34.730509 -92.233147 +72204 32505 13800 40019363 586319 15.452 0.226 34.717617 -92.358338 +72205 23000 12159 20243176 100569 7.816 0.039 34.750326 -92.351206 +72206 25624 11394 295564648 15283778 114.118 5.901 34.632496 -92.234986 +72207 10344 5461 7911501 2694 3.055 0.001 34.773531 -92.346499 +72209 32376 13437 42685836 895346 16.481 0.346 34.676378 -92.345074 +72210 14258 6389 130941140 1621139 50.557 0.626 34.713900 -92.508450 +72211 21288 10503 19491763 169369 7.526 0.065 34.750556 -92.417622 +72212 12705 5329 17146435 78785 6.620 0.030 34.785888 -92.415028 +72223 19890 8435 155142850 5022704 59.901 1.939 34.788813 -92.511369 +72227 11462 5879 9766442 522681 3.771 0.202 34.775283 -92.374573 +72301 26069 10892 48920238 206184 18.888 0.080 35.144685 -90.189236 +72311 135 71 2644956 0 1.021 0.000 34.723828 -90.891487 +72315 23966 10850 652362025 22578605 251.878 8.718 35.902592 -89.903372 +72320 1847 85 137673795 12901738 53.156 4.981 34.823642 -90.523669 +72321 154 70 3576992 0 1.381 0.000 35.815941 -89.944581 +72322 195 80 5035060 0 1.944 0.000 35.064935 -90.822094 +72324 1978 885 327400501 722676 126.410 0.279 35.390418 -90.786566 +72325 43 21 14609987 0 5.641 0.000 35.322096 -90.245960 +72326 2267 1055 215540635 1526201 83.221 0.589 35.117110 -90.910607 +72327 1732 794 264221261 1440641 102.016 0.556 35.233284 -90.331957 +72328 64 44 140047094 2321436 54.072 0.896 33.986204 -91.091192 +72329 80 42 35517487 0 13.713 0.000 35.614568 -89.988074 +72330 756 294 106309907 0 41.046 0.000 35.587784 -90.210299 +72331 3184 1378 370441883 2184749 143.028 0.844 35.281139 -90.466262 +72332 104 32 172173 0 0.066 0.000 35.101950 -90.308837 +72333 667 317 160894544 10238384 62.122 3.953 34.302008 -90.866645 +72335 20121 7086 412801099 7239940 159.383 2.795 34.994363 -90.745988 +72338 52 20 74361981 6004111 28.711 2.318 35.413944 -90.147781 +72339 204 90 18490146 0 7.139 0.000 35.422012 -90.268104 +72340 90 35 21028277 90931 8.119 0.035 34.939320 -91.027828 +72341 222 114 52468680 77513 20.258 0.030 34.883947 -90.753835 +72342 5532 2708 231233559 10549062 89.280 4.073 34.448956 -90.684489 +72346 697 342 212577463 1212085 82.077 0.468 35.082327 -90.484497 +72347 711 353 245101960 79863 94.634 0.031 35.377743 -91.014418 +72348 2594 1479 424963599 38298256 164.079 14.787 34.941736 -90.417877 +72350 1226 559 200637813 2952973 77.467 1.140 35.499753 -90.129287 +72351 835 348 16994992 0 6.562 0.000 35.673714 -90.096329 +72353 114 53 84112121 2452654 32.476 0.947 34.300515 -91.007283 +72354 2470 1107 130524961 50183 50.396 0.019 35.618852 -90.319289 +72355 2768 1259 270399037 70770 104.402 0.027 34.474201 -90.797703 +72358 1690 616 152983391 5221620 59.067 2.016 35.792191 -89.890811 +72359 430 201 5465422 162850 2.110 0.063 35.026355 -90.722124 +72360 6466 3165 840247204 17964198 324.421 6.936 34.749251 -90.780746 +72364 15831 6323 187833290 6371006 72.523 2.460 35.217536 -90.189224 +72365 3146 1432 132644829 1464112 51.214 0.565 35.520899 -90.450066 +72366 2543 1244 378890210 318940 146.290 0.123 34.518108 -90.960860 +72367 108 79 180229180 20534051 69.587 7.928 34.197327 -90.943901 +72368 1228 644 366551481 1575813 141.526 0.608 34.810402 -91.023371 +72370 8606 3717 293055508 382191 113.149 0.148 35.714403 -90.027711 +72372 1945 904 326667072 367197 126.127 0.142 34.967590 -90.950562 +72373 1329 680 291878974 6228218 112.695 2.405 35.308676 -90.594228 +72374 876 383 108676632 168482 41.960 0.065 34.566337 -90.833499 +72376 1977 849 221894087 8656731 85.674 3.342 35.087232 -90.299750 +72377 36 25 1999634 37946 0.772 0.015 35.692845 -90.335954 +72379 50 47 225695478 38723842 87.142 14.951 34.054780 -91.041036 +72383 53 31 13305134 0 5.137 0.000 34.491055 -91.039621 +72384 953 447 239469399 8599030 92.460 3.320 35.375830 -90.219459 +72386 1777 820 303149388 2163038 117.047 0.835 35.450240 -90.365994 +72389 204 114 147356617 278791 56.895 0.108 34.371344 -90.912075 +72390 9107 4052 95089185 1103312 36.714 0.426 34.551045 -90.679410 +72392 481 249 121762154 1326238 47.013 0.512 34.967280 -91.096575 +72394 625 311 213335005 4666889 82.369 1.802 35.060029 -90.614020 +72395 1017 451 62734078 16075 24.222 0.006 35.593114 -90.079509 +72396 13734 5890 693375091 7878570 267.714 3.042 35.229931 -90.823730 +72401 53767 22765 303596345 3214572 117.219 1.241 35.886339 -90.656776 +72404 23482 9636 326410535 1486102 126.028 0.574 35.773928 -90.778830 +72410 498 238 179868884 2017205 69.448 0.779 35.940746 -91.094667 +72411 2294 973 99425749 150242 38.388 0.058 35.745090 -90.575507 +72412 633 290 162478895 0 62.733 0.000 36.124168 -90.694378 +72413 598 309 97063768 2120876 37.477 0.819 36.301830 -90.822219 +72414 443 194 44735499 926151 17.272 0.358 35.824609 -90.374049 +72415 1346 603 98389784 1407714 37.989 0.544 36.126736 -91.174948 +72416 5783 2372 240703416 672766 92.936 0.260 35.963977 -90.795722 +72417 3568 1491 118456479 332146 45.736 0.128 35.916276 -90.539526 +72419 1748 809 131759250 1126978 50.873 0.435 35.749599 -90.353550 +72421 554 265 196736679 1409124 75.960 0.544 35.785321 -90.971951 +72422 4979 2427 454081360 1448685 175.322 0.559 36.426430 -90.527118 +72424 94 45 3542638 0 1.368 0.000 36.390527 -90.736363 +72425 446 210 180605523 301777 69.732 0.117 36.215476 -90.732294 +72426 196 94 2308898 13022 0.891 0.005 35.868207 -90.041639 +72427 174 95 40266830 0 15.547 0.000 35.867056 -90.935772 +72428 95 48 16359228 0 6.316 0.000 35.739351 -90.224596 +72429 427 223 199388884 2995 76.984 0.001 35.491380 -90.925826 +72430 411 211 68340672 0 26.386 0.000 36.334529 -90.171274 +72431 401 204 15754405 162042 6.083 0.063 35.632571 -91.079409 +72432 6462 2780 410977371 2546651 158.679 0.983 35.551768 -90.719944 +72433 3067 1371 145034331 1420952 55.998 0.549 36.025741 -91.047639 +72434 2108 1028 220743298 439655 85.229 0.170 36.217536 -91.156352 +72435 505 252 189064039 1121335 72.998 0.433 36.315759 -90.579100 +72436 942 402 75353611 128435 29.094 0.050 36.237337 -90.484839 +72437 3272 1419 275846655 5516351 106.505 2.130 35.848382 -90.458281 +72438 2574 1115 144542351 663 55.808 0.000 35.949108 -90.217756 +72440 255 135 15430836 0 5.958 0.000 36.005556 -91.227055 +72441 94 54 672243 0 0.260 0.000 36.436953 -90.385317 +72442 4886 2065 291284477 129239 112.466 0.050 35.818572 -90.186693 +72443 2986 1273 151626856 80349 58.543 0.031 36.175770 -90.411414 +72444 1821 892 249319153 1306148 96.263 0.504 36.428649 -90.852789 +72445 91 47 1165462 0 0.450 0.000 35.976503 -91.026627 +72447 1964 888 144688668 752932 55.865 0.291 35.910876 -90.327485 +72449 213 102 7428036 0 2.868 0.000 36.177465 -90.819634 +72450 36033 15267 743344414 2890440 287.007 1.116 36.079546 -90.516440 +72453 198 190 72280285 0 27.908 0.000 36.294577 -90.707988 +72454 5127 2559 263551165 731853 101.758 0.283 36.406767 -90.202573 +72455 12518 5804 734046490 5113399 283.417 1.974 36.319716 -91.029353 +72456 585 289 119960556 281980 46.317 0.109 36.447254 -90.338356 +72457 132 71 509281 0 0.197 0.000 36.088891 -91.068221 +72458 755 396 67619065 3210757 26.108 1.240 36.072601 -91.158549 +72459 1329 784 257543703 668375 99.438 0.258 36.292523 -91.292990 +72460 832 423 154789487 87842 59.765 0.034 36.349823 -91.169303 +72461 3789 1839 469633558 585896 181.327 0.226 36.264943 -90.285306 +72462 408 204 15626271 883808 6.033 0.341 36.389116 -90.759335 +72464 98 51 334543 0 0.129 0.000 36.457748 -90.144108 +72466 1481 758 319751089 691992 123.457 0.267 36.053793 -91.330727 +72467 303 0 86365 0 0.033 0.000 35.841039 -90.675602 +72469 1124 547 199094019 2518040 76.871 0.972 35.951943 -91.288951 +72470 319 157 87247613 936208 33.686 0.361 36.470822 -90.702257 +72471 1108 526 217646547 1835716 84.034 0.709 35.827874 -91.110148 +72472 9447 4130 456108119 3416751 176.104 1.319 35.596449 -90.534178 +72473 2376 1085 149620235 353987 57.769 0.137 35.738259 -91.171319 +72476 7155 3074 517139679 871555 199.669 0.337 36.049514 -90.919912 +72478 390 175 132202109 138812 51.044 0.054 36.447888 -91.059874 +72479 1489 743 508078193 5680937 196.170 2.193 35.633662 -90.905465 +72482 1241 954 177967347 1039437 68.714 0.401 36.276702 -91.366309 +72501 25099 11042 786131316 9109455 303.527 3.517 35.791171 -91.653381 +72512 2234 1410 56621144 3335529 21.862 1.288 36.220421 -91.746312 +72513 2856 1300 244302199 37634 94.326 0.015 36.226285 -91.658306 +72515 63 36 25279059 0 9.760 0.000 36.276377 -92.056433 +72517 487 248 88768896 0 34.274 0.000 36.132313 -91.973272 +72519 3150 1478 385392790 9923428 148.801 3.831 36.134070 -92.180271 +72520 309 149 66048377 0 25.501 0.000 36.390900 -91.720193 +72521 4814 2140 325250421 291689 125.580 0.113 35.949672 -91.541118 +72522 405 150 15217352 0 5.875 0.000 35.810884 -91.470426 +72523 1091 521 103326376 52973 39.895 0.020 35.628072 -91.844162 +72524 376 184 145284119 2155272 56.095 0.832 35.835033 -91.299239 +72526 154 90 14372604 0 5.549 0.000 35.883198 -91.779304 +72527 583 252 10264810 0 3.963 0.000 35.739860 -91.684967 +72528 65 38 10355500 0 3.998 0.000 36.227487 -92.138311 +72529 4726 2985 50788994 2271445 19.610 0.877 36.292323 -91.564285 +72530 1987 1303 289338141 17060948 111.714 6.587 35.603916 -91.944720 +72531 800 825 148299691 18700872 57.259 7.220 36.329984 -92.144212 +72532 1712 919 268684014 173093 103.739 0.067 36.104385 -91.599911 +72533 416 236 111335849 18333 42.987 0.007 35.978576 -92.246613 +72534 1320 578 160150917 40278 61.835 0.016 35.601037 -91.744389 +72536 429 239 65783792 4898 25.399 0.002 36.142308 -91.768340 +72537 805 583 74224625 11256331 28.658 4.346 36.446131 -92.222556 +72538 432 224 120572343 1148 46.553 0.000 36.445552 -92.100286 +72539 253 133 42761019 0 16.510 0.000 36.332140 -91.711144 +72540 149 109 48003208 796298 18.534 0.307 35.919706 -91.910048 +72542 3826 2470 410808420 2227694 158.614 0.860 36.299525 -91.467533 +72543 12535 6956 293494095 19924539 113.319 7.693 35.450539 -91.987292 +72544 636 792 71504758 8711169 27.608 3.363 36.403465 -92.188339 +72546 181 102 10055449 0 3.882 0.000 35.578882 -91.941061 +72550 985 449 119227815 1628819 46.034 0.629 35.710126 -91.783974 +72553 69 34 905267 0 0.350 0.000 35.700500 -91.480840 +72554 2923 1835 399257123 918411 154.154 0.355 36.438698 -91.562211 +72555 182 108 34625811 1104145 13.369 0.426 35.781172 -91.877982 +72556 3375 1808 398116640 1261502 153.714 0.487 36.013876 -91.970013 +72560 8754 4886 844438834 5638335 326.040 2.177 35.851011 -92.094066 +72561 981 484 132353027 283489 51.102 0.109 35.948021 -91.808538 +72562 2238 1041 213712470 4147017 82.515 1.601 35.735469 -91.401119 +72564 546 241 76347616 682051 29.478 0.263 35.595880 -91.456611 +72565 999 482 99111186 28223 38.267 0.011 36.217416 -91.912766 +72566 624 318 121761984 0 47.013 0.000 36.216760 -92.078015 +72567 262 143 29960641 0 11.568 0.000 35.814568 -91.925955 +72568 1662 735 120583004 0 46.557 0.000 35.569396 -91.624998 +72569 468 256 107511041 0 41.510 0.000 36.146178 -91.399363 +72571 369 150 47808748 427668 18.459 0.165 35.631477 -91.537156 +72572 228 101 36804688 0 14.210 0.000 35.899142 -91.291045 +72573 278 138 38187858 69493 14.744 0.027 36.076165 -91.797364 +72576 3868 1943 413972056 298782 159.836 0.115 36.348536 -91.856033 +72577 700 341 109113194 0 42.129 0.000 36.027133 -91.713924 +72578 212 102 55444499 0 21.407 0.000 36.453153 -91.886354 +72579 1287 552 97669127 56888 37.710 0.022 35.848827 -91.449196 +72581 1030 679 28580289 3642709 11.035 1.406 35.550954 -91.989243 +72583 1679 816 256530804 420866 99.047 0.162 36.414776 -91.994110 +72584 568 281 82317889 0 31.783 0.000 36.140997 -91.843699 +72585 216 113 58228845 0 22.482 0.000 36.183223 -92.008137 +72587 134 77 27004644 0 10.427 0.000 36.225589 -91.816758 +72601 30163 13468 956139085 1584944 369.167 0.612 36.238029 -93.085970 +72611 1696 739 197771004 527143 76.360 0.204 36.244796 -93.330718 +72616 10441 4466 543227514 482151 209.741 0.186 36.330648 -93.555323 +72617 198 123 97635859 54380 37.697 0.021 36.022871 -92.390530 +72619 1936 1203 12029479 5589059 4.645 2.158 36.373473 -92.591631 +72623 648 323 65096936 7514844 25.134 2.901 36.455556 -92.308496 +72624 594 337 176292713 215259 68.067 0.083 36.057715 -93.381785 +72626 1243 770 14608264 1202775 5.640 0.464 36.322222 -92.551574 +72628 803 471 292391910 309624 112.893 0.120 35.839875 -93.281762 +72629 629 371 113163901 310896 43.693 0.120 35.738502 -92.566795 +72630 197 161 2200155 4659273 0.849 1.799 36.478794 -92.904907 +72631 3709 2558 123619397 10185531 47.730 3.933 36.462434 -93.713362 +72632 4449 2734 257086038 9222452 99.261 3.561 36.373213 -93.743893 +72633 1833 850 244819496 54551 94.525 0.021 36.128875 -92.872765 +72634 4670 2384 332289522 7410176 128.298 2.861 36.200113 -92.513515 +72635 3624 1580 75542201 566551 29.167 0.219 36.318384 -92.513781 +72636 24 32 767929 45533 0.296 0.018 35.989702 -92.716224 +72638 7186 3056 485997788 788120 187.645 0.304 36.322765 -93.404544 +72639 683 434 165318081 335878 63.830 0.130 36.021332 -92.480450 +72640 385 200 57584735 377533 22.234 0.146 36.001187 -93.062042 +72641 2585 1463 356687214 1944759 137.718 0.751 35.986549 -93.243741 +72642 1979 1222 22202898 4226590 8.573 1.632 36.375472 -92.540407 +72644 2268 1254 221984841 15990617 85.709 6.174 36.433124 -92.992763 +72645 1867 1192 446409003 1016804 172.359 0.393 35.804138 -92.575385 +72648 716 419 115712684 595958 44.677 0.230 36.078547 -93.151902 +72650 4362 2437 694849848 1612746 268.283 0.623 35.884317 -92.701437 +72651 1206 663 19129622 27118 7.386 0.010 36.388396 -92.482359 +72653 28560 14766 574500032 27844478 221.816 10.751 36.342381 -92.385430 +72655 457 279 245415498 675859 94.755 0.261 35.900720 -93.016516 +72658 1685 975 193122631 3477167 74.565 1.343 36.167387 -92.319143 +72660 524 245 44446235 2004300 17.161 0.774 36.478646 -93.377872 +72661 580 418 66630442 18808553 25.726 7.262 36.449273 -92.578136 +72662 2986 1424 304032019 2677779 117.387 1.034 36.431043 -93.180824 +72663 361 155 58751583 0 22.684 0.000 35.937773 -92.327794 +72666 275 177 46372569 206643 17.905 0.080 35.942186 -93.265263 +72668 521 411 72472305 12040714 27.982 4.649 36.434791 -92.780989 +72669 107 59 4433957 0 1.712 0.000 36.064963 -92.876157 +72670 99 58 43636990 277909 16.848 0.107 35.981417 -93.388128 +72672 279 146 18198854 73348 7.027 0.028 36.288088 -92.844404 +72675 1399 893 447373382 3300522 172.732 1.274 35.999510 -92.795221 +72677 525 246 2190184 1095 0.846 0.000 36.253163 -92.685642 +72679 48 34 18213810 35455 7.032 0.014 35.730057 -92.832143 +72680 807 427 96465194 20956 37.245 0.008 35.887334 -92.329530 +72682 194 110 37200780 5965 14.363 0.002 36.137542 -92.741396 +72683 211 102 26664462 184735 10.295 0.071 35.923130 -93.102771 +72685 1365 632 132548557 252230 51.177 0.097 36.065548 -92.984561 +72686 182 128 74200295 135305 28.649 0.052 35.780128 -92.843856 +72687 6461 3357 724155023 31626983 279.598 12.211 36.262223 -92.706768 +72701 39782 17819 327777051 4757005 126.555 1.837 35.992387 -94.085584 +72703 28261 14905 115718514 2983846 44.679 1.152 36.118332 -94.043243 +72704 21336 10221 196922886 1559939 76.032 0.602 36.105701 -94.296796 +72712 40933 16890 258978500 1552992 99.992 0.600 36.346567 -94.256280 +72714 11880 5539 49084288 869109 18.952 0.336 36.467299 -94.220903 +72715 15051 8003 73908703 3364180 28.536 1.299 36.465817 -94.304540 +72717 1071 489 115602902 451627 44.635 0.174 35.838873 -94.424640 +72718 1465 579 16765269 119982 6.473 0.046 36.268458 -94.219446 +72719 8975 3519 22030067 53234 8.506 0.021 36.367161 -94.295087 +72721 391 206 114932438 132795 44.376 0.051 35.798415 -93.825719 +72722 3138 1291 109731152 244731 42.367 0.094 36.342698 -94.468192 +72727 5658 2523 402551353 1810156 155.426 0.699 35.916365 -93.900502 +72729 280 123 31686556 102717 12.234 0.040 35.771526 -94.456211 +72730 7585 3115 53617136 270810 20.702 0.105 36.030477 -94.268676 +72732 4716 2576 220483520 32886706 85.129 12.698 36.432516 -93.959444 +72734 7322 2974 211273066 2854062 81.573 1.102 36.270150 -94.452834 +72736 6208 2624 229570833 29928 88.638 0.012 36.413778 -94.465066 +72738 2419 1106 221033159 1204231 85.341 0.465 36.155900 -93.886845 +72739 473 207 13321965 949 5.144 0.000 36.423158 -94.327383 +72740 9543 4302 955642292 4177340 368.976 1.613 36.105438 -93.684034 +72742 545 310 194491918 446846 75.094 0.173 35.963804 -93.501240 +72744 5343 2347 204647973 1622431 79.015 0.626 35.962580 -94.435365 +72745 11376 4641 85423282 5699871 32.982 2.201 36.247242 -94.103144 +72747 152 60 14459760 0 5.583 0.000 36.368630 -94.582789 +72749 84 30 3410844 17906 1.317 0.007 35.868416 -94.437597 +72751 6434 2543 64331721 13848 24.839 0.005 36.460064 -94.115428 +72752 293 233 308838545 457828 119.243 0.177 35.817589 -93.590342 +72753 7936 3408 231928531 2175244 89.548 0.840 35.933889 -94.331072 +72756 38455 16779 360865747 40250621 139.331 15.541 36.320391 -93.978383 +72758 33487 13088 78766078 3267595 30.412 1.262 36.299665 -94.137210 +72760 342 206 90686232 131192 35.014 0.051 35.832945 -93.706729 +72761 21211 8192 295372332 2807476 114.044 1.084 36.168191 -94.455335 +72762 35342 13463 155106018 1744627 59.887 0.674 36.181583 -94.230652 +72764 50230 18490 161282228 7380248 62.271 2.850 36.175682 -94.060223 +72768 1306 673 97615786 29350 37.690 0.011 36.478322 -94.498595 +72769 1162 478 105396651 645374 40.694 0.249 36.035853 -94.495892 +72773 953 422 80233037 307389 30.978 0.119 36.022251 -93.835944 +72774 6121 2583 302573115 1609017 116.824 0.621 35.948126 -94.147174 +72776 574 338 159123099 352239 61.438 0.136 35.921488 -93.649644 +72801 18685 7479 21061744 0 8.132 0.000 35.279127 -93.140877 +72802 20973 8479 348511144 18933362 134.561 7.310 35.318851 -93.081640 +72821 2048 889 95074508 2453735 36.708 0.947 35.434935 -93.717371 +72823 6765 2902 304815253 11217175 117.690 4.331 35.251217 -92.905571 +72824 1876 770 209062439 1643581 80.719 0.635 35.132996 -93.412111 +72826 47 16 780530 1650 0.301 0.001 35.119440 -93.708890 +72827 187 125 101044730 472468 39.014 0.182 34.882965 -93.615705 +72828 114 71 53654393 519870 20.716 0.201 34.930718 -93.534996 +72830 14896 6217 339949593 15021784 131.255 5.800 35.509167 -93.515619 +72832 923 431 21361258 3407322 8.248 1.316 35.414740 -93.670516 +72833 4384 1708 467699949 3890607 180.580 1.502 35.021703 -93.472595 +72834 10565 4430 403926194 22685980 155.957 8.759 35.168824 -93.183821 +72835 923 461 133000416 7439561 51.352 2.872 35.277805 -93.346311 +72837 7845 3465 603840184 1220064 233.144 0.471 35.503672 -93.109424 +72838 115 69 47912540 378867 18.499 0.146 34.910749 -93.679045 +72839 242 202 386576750 1384873 149.258 0.535 35.629695 -93.244275 +72840 2149 958 135511962 6722887 52.321 2.596 35.458090 -93.615427 +72841 227 118 133419558 876362 51.514 0.338 34.837318 -93.800771 +72842 1478 740 243842827 6001037 94.148 2.317 35.082380 -93.617393 +72843 2274 1089 548380042 375496 211.731 0.145 35.599930 -92.937520 +72845 1216 563 29918465 21379759 11.552 8.255 35.361637 -93.377869 +72846 3913 1732 249329330 8302228 96.267 3.206 35.483900 -93.326796 +72847 2850 1252 112297264 16332138 43.358 6.306 35.377533 -93.273453 +72851 572 311 120580120 2897131 46.556 1.119 35.255293 -93.438152 +72852 315 199 219468288 247446 84.737 0.096 35.669875 -93.553400 +72853 2217 994 156822908 1022095 60.550 0.395 35.016833 -93.202344 +72854 703 496 373728699 412250 144.297 0.159 35.709147 -93.423363 +72855 6314 2964 468232197 3335594 180.785 1.288 35.258968 -93.683862 +72856 464 306 335906339 215438 129.694 0.083 35.786064 -93.083345 +72857 1430 933 843277994 12266042 325.591 4.736 34.861544 -93.319913 +72858 3178 1214 65063409 2412846 25.121 0.932 35.240223 -93.044393 +72860 375 212 91628834 495056 35.378 0.191 34.953573 -93.432355 +72863 1582 774 134250974 28079709 51.835 10.842 35.369401 -93.511253 +72865 1366 497 72543168 405874 28.009 0.157 35.309458 -93.574330 +72901 21591 10306 22734322 1315521 8.778 0.508 35.366187 -94.416458 +72903 26148 12091 43404896 3496628 16.759 1.350 35.350978 -94.361247 +72904 21893 8447 33982447 4596164 13.121 1.775 35.413340 -94.382352 +72908 13378 5779 21013520 115790 8.113 0.045 35.305453 -94.410646 +72916 7131 2971 89645642 715351 34.612 0.276 35.261053 -94.389414 +72921 13787 5521 222392534 6033332 85.866 2.329 35.477101 -94.196225 +72923 4735 2094 19440143 429976 7.506 0.166 35.314863 -94.309688 +72926 545 280 214769166 1209161 82.923 0.467 34.732436 -94.036964 +72927 8701 3842 803868587 9120346 310.375 3.521 35.079823 -93.940515 +72928 755 328 60511932 160110 23.364 0.062 35.291336 -93.930613 +72930 320 167 74350370 4123926 28.707 1.592 35.430450 -93.965301 +72932 1597 656 48639358 0 18.780 0.000 35.604219 -94.377357 +72933 4999 2162 295420584 1572434 114.063 0.607 35.328499 -94.013245 +72934 1047 569 178350809 19940 68.862 0.008 35.686804 -94.284334 +72935 577 234 8480615 0 3.274 0.000 35.491333 -94.126480 +72936 14527 5865 227293459 2683691 87.758 1.036 35.189230 -94.219961 +72937 3858 1688 167583484 2841175 64.704 1.097 35.135024 -94.392017 +72938 1391 643 129814415 775748 50.122 0.300 35.004118 -94.377819 +72940 2515 1149 114231266 1257922 44.105 0.486 35.121991 -94.259252 +72941 5251 2164 139304939 11162690 53.786 4.310 35.367921 -94.156301 +72943 2646 1178 255681175 6783538 98.719 2.619 35.180144 -93.786949 +72944 2919 1288 204850306 1751176 79.093 0.676 35.024077 -94.234595 +72945 314 139 1764176 74596 0.681 0.029 35.087473 -94.347301 +72946 3654 1812 248853153 3044873 96.083 1.176 35.669540 -94.134989 +72947 4433 2065 328187016 6827442 126.714 2.636 35.572054 -94.028384 +72948 518 284 159642965 121018 61.638 0.047 35.702673 -94.392995 +72949 10177 4514 884205792 15699812 341.394 6.062 35.584277 -93.805165 +72950 409 221 349425135 1163406 134.914 0.449 34.776041 -93.888006 +72951 988 422 43283112 325437 16.712 0.126 35.327345 -93.872128 +72952 2945 1283 132300664 0 51.082 0.000 35.568761 -94.300414 +72955 438 184 32204963 510 12.434 0.000 35.614170 -94.437808 +72956 34074 14013 272993155 11859488 105.403 4.579 35.466000 -94.349293 +72958 8117 3671 900801787 9951067 347.802 3.842 34.903829 -94.137433 +72959 2786 1400 463072338 950831 178.793 0.367 35.786762 -94.064776 +73002 1062 513 121133443 687936 46.770 0.266 34.939235 -97.728318 +73003 20617 8467 19553507 23950 7.550 0.009 35.668905 -97.497380 +73004 857 358 128075354 31888 49.450 0.012 35.152297 -97.844118 +73005 9541 3980 399764803 1602248 154.350 0.619 35.051308 -98.240141 +73006 3718 1678 453945068 2555081 175.269 0.987 34.906219 -98.400220 +73007 2178 982 105640113 577192 40.788 0.223 35.686640 -97.328268 +73008 19800 9009 20189808 1488121 7.795 0.575 35.513888 -97.647993 +73009 1264 619 206537752 1246474 79.745 0.481 35.286403 -98.372763 +73010 17563 6826 468558714 2929154 180.912 1.131 35.111365 -97.679215 +73011 416 229 134561464 946269 51.954 0.365 34.847842 -97.746577 +73012 25851 9578 92492075 272545 35.711 0.105 35.667234 -97.593657 +73013 43933 18074 75840293 1014553 29.282 0.392 35.618788 -97.484375 +73014 1431 660 382490035 1916636 147.680 0.740 35.587533 -98.145189 +73015 2877 1503 567550008 2946966 219.132 1.138 35.083633 -98.594435 +73016 1850 740 164634419 1882646 63.566 0.727 35.802136 -97.687697 +73017 1780 804 197330175 976167 76.190 0.377 34.926555 -98.093596 +73018 19936 8995 407987108 424887 157.525 0.164 35.051452 -97.940504 +73019 0 0 505504 0 0.195 0.000 35.206058 -97.443580 +73020 20810 8201 156632122 177108 60.476 0.068 35.458810 -97.262802 +73021 352 184 166517938 605475 64.293 0.234 35.345111 -98.663738 +73024 637 272 116136366 167428 44.841 0.065 35.360504 -98.797453 +73025 11579 3959 136325070 202671 52.635 0.078 35.733923 -97.577365 +73026 10437 4200 277322995 24032547 107.075 9.279 35.240460 -97.275732 +73027 1493 739 208820922 3589938 80.626 1.386 35.978178 -97.251982 +73028 3454 1699 375751231 2290539 145.078 0.884 35.977961 -97.631503 +73029 1818 845 128152345 286648 49.480 0.111 34.905404 -98.206268 +73030 4464 2109 494033493 5381072 190.747 2.078 34.466145 -97.164542 +73032 222 121 5270524 80933 2.035 0.031 34.398207 -97.047107 +73033 387 166 16955915 0 6.547 0.000 35.314385 -98.546625 +73034 39872 16090 140302920 6492618 54.171 2.507 35.703414 -97.434052 +73036 18595 7371 474828890 3050886 183.332 1.178 35.509391 -97.959769 +73038 2032 1261 387204133 15980275 149.500 6.170 35.124504 -98.451304 +73040 1976 927 606446588 1405819 234.150 0.543 35.645563 -98.375225 +73041 366 249 271478445 1392823 104.818 0.538 35.042288 -98.876115 +73042 1073 528 275681463 686880 106.441 0.265 35.222872 -98.246944 +73043 125 80 49669102 752 19.177 0.000 35.734250 -98.403416 +73044 20226 8813 681543245 6492592 263.145 2.507 35.859572 -97.422809 +73045 10378 4228 171436547 1930459 66.192 0.745 35.514271 -97.150530 +73047 4774 1782 391348174 1839536 151.100 0.710 35.456816 -98.315115 +73048 2020 1055 484572935 787636 187.095 0.304 35.496580 -98.546273 +73049 5910 2407 158884210 1474905 61.346 0.569 35.587046 -97.309326 +73050 1370 49 4159373 0 1.606 0.000 35.938697 -97.263815 +73051 10264 3032 332178553 4597328 128.255 1.775 35.031853 -97.246341 +73052 6315 2895 533413291 5830388 205.952 2.251 34.833535 -97.589045 +73053 745 356 194715811 1194358 75.180 0.461 35.355475 -98.413998 +73054 4189 1700 236721750 430059 91.399 0.166 35.670650 -97.191089 +73055 9942 4435 655507116 16496285 253.093 6.369 34.643850 -97.910747 +73056 441 213 293314978 713971 113.250 0.276 36.176938 -97.626209 +73057 2384 1087 227331081 4468865 87.773 1.725 34.830332 -97.420312 +73058 332 201 106614409 758340 41.164 0.293 35.815567 -97.220104 +73059 2924 1287 434687382 1338127 167.834 0.517 35.311705 -98.046390 +73061 1596 665 291102381 12696947 112.395 4.902 36.355132 -97.005557 +73062 1396 795 650867729 3214670 251.301 1.241 35.046247 -98.740922 +73063 691 330 277981594 652093 107.329 0.252 36.052707 -97.425008 +73064 20611 8032 130911015 2831515 50.545 1.093 35.368764 -97.746556 +73065 6546 2544 132773341 2624519 51.264 1.013 35.256171 -97.609981 +73066 417 200 2153064 0 0.831 0.000 35.500215 -97.327478 +73067 2161 935 323642035 1773975 124.959 0.685 34.911077 -97.907103 +73068 11707 4777 163180687 1909606 63.004 0.737 35.138510 -97.291801 +73069 23912 11118 41022526 571314 15.839 0.221 35.249662 -97.462408 +73071 36711 16480 63119893 1370123 24.371 0.529 35.238349 -97.411896 +73072 42797 17300 136412875 2691309 52.669 1.039 35.212702 -97.504181 +73073 541 259 299896144 476195 115.791 0.184 36.151761 -97.415610 +73074 1190 514 103067189 1754685 39.794 0.677 34.833387 -97.274101 +73075 9519 4458 355938166 7872422 137.429 3.040 34.748808 -97.232285 +73077 7135 3487 698104413 4950586 269.540 1.911 36.306134 -97.266383 +73078 7786 2726 170214313 2146569 65.720 0.829 35.674945 -97.753837 +73079 643 271 194280614 293126 75.012 0.113 35.210934 -98.012001 +73080 9276 3832 280559457 5553373 108.325 2.144 34.994519 -97.479806 +73082 2980 1442 394204377 3170615 152.203 1.224 34.776197 -97.902110 +73084 6518 3008 43748081 0 16.891 0.000 35.525860 -97.344367 +73086 8345 4304 459977814 15769536 177.598 6.089 34.481795 -96.964187 +73089 11522 4388 272610312 276854 105.255 0.107 35.268623 -97.792855 +73090 1198 390 156286282 1407570 60.342 0.543 35.398904 -97.948406 +73092 908 429 146072748 3453795 56.399 1.334 35.123886 -98.100016 +73093 2612 1034 136561506 1263064 52.727 0.488 35.109609 -97.486492 +73095 1895 849 180807911 3478376 69.810 1.343 34.898559 -97.296140 +73096 13037 5727 516376785 1197866 199.374 0.462 35.514052 -98.740993 +73097 187 84 2008810 0 0.776 0.000 35.400491 -97.644789 +73098 4227 2030 353070846 5346718 136.321 2.064 34.626987 -97.162187 +73099 57492 23063 314135941 6466797 121.289 2.497 35.525168 -97.771727 +73102 3858 1299 2052859 0 0.793 0.000 35.470749 -97.519001 +73103 4315 2875 3029514 0 1.170 0.000 35.489073 -97.518909 +73104 1664 1040 3926639 0 1.516 0.000 35.475230 -97.503918 +73105 5210 3020 11522183 15052 4.449 0.006 35.520032 -97.501254 +73106 13581 5999 8120282 0 3.135 0.000 35.481967 -97.536812 +73107 26561 12521 20276430 0 7.829 0.000 35.481606 -97.575612 +73108 15350 5780 19462146 0 7.514 0.000 35.450007 -97.567737 +73109 20594 8331 14059075 0 5.428 0.000 35.433138 -97.524548 +73110 32666 15497 27652692 0 10.677 0.000 35.461181 -97.397639 +73111 11781 6064 22317068 164724 8.617 0.064 35.519496 -97.477422 +73112 30943 16359 19959330 106363 7.706 0.041 35.518170 -97.575423 +73114 17422 8045 24332615 80327 9.395 0.031 35.578137 -97.517674 +73115 20541 9190 15343238 0 5.924 0.000 35.442343 -97.441523 +73116 9241 4831 14079788 2274260 5.436 0.878 35.546701 -97.564592 +73117 5191 2887 16784745 5368 6.481 0.002 35.474862 -97.462502 +73118 13571 7251 12872439 7266 4.970 0.003 35.517968 -97.528718 +73119 31347 11746 15729115 0 6.073 0.000 35.422007 -97.566125 +73120 34824 19076 28678275 6539020 11.073 2.525 35.581316 -97.573674 +73121 3053 1457 25996170 54943 10.037 0.021 35.521118 -97.439540 +73122 13164 5988 8581570 89704 3.313 0.035 35.520484 -97.613440 +73127 24077 11123 31437210 452184 12.138 0.175 35.477422 -97.653194 +73128 4200 1643 17105168 29410 6.604 0.011 35.458482 -97.662381 +73129 20126 7749 32587191 0 12.582 0.000 35.431488 -97.484275 +73130 19439 8212 25775212 0 9.952 0.000 35.458633 -97.345632 +73131 3145 1343 31138126 55280 12.022 0.021 35.576458 -97.469294 +73132 26432 12382 19356944 645278 7.474 0.249 35.552908 -97.635848 +73134 4312 2671 10697487 0 4.130 0.000 35.614168 -97.568447 +73135 20529 8324 30014625 89469 11.589 0.035 35.400268 -97.433076 +73139 17253 7953 11344948 4186 4.380 0.002 35.386417 -97.525661 +73141 2727 1307 27835446 36659 10.747 0.014 35.516830 -97.399670 +73142 10707 5198 25326520 423792 9.779 0.164 35.616598 -97.645321 +73145 2859 640 15088852 0 5.826 0.000 35.419088 -97.394046 +73149 4643 2068 13597033 0 5.250 0.000 35.389417 -97.489325 +73150 4609 1910 49050096 254131 18.938 0.098 35.401238 -97.329876 +73151 1446 501 7476710 34116 2.887 0.013 35.571679 -97.416568 +73159 30350 12747 31684617 224317 12.233 0.087 35.387855 -97.578835 +73160 53666 21285 58155467 886069 22.454 0.342 35.332438 -97.475217 +73162 27758 12137 18023553 406197 6.959 0.157 35.582011 -97.640928 +73165 5809 2238 103530315 11015911 39.973 4.253 35.355435 -97.365215 +73169 1782 672 17211587 53059 6.645 0.020 35.382770 -97.642601 +73170 35343 13876 54272525 1300932 20.955 0.502 35.325769 -97.552609 +73173 1299 500 42054455 689583 16.237 0.266 35.346324 -97.624038 +73179 3082 1153 31831264 66111 12.290 0.026 35.428391 -97.640843 +73401 34927 15531 851751394 33392662 328.863 12.893 34.203289 -97.115520 +73425 84 46 3578547 5327 1.382 0.002 34.455104 -97.558417 +73430 1176 716 235866015 7056974 91.068 2.725 33.898323 -97.361382 +73432 974 474 153113223 1288377 59.117 0.497 34.251236 -96.413873 +73433 2761 1274 426177332 2305060 164.548 0.890 34.628170 -97.406715 +73434 699 305 256748215 4710596 99.131 1.819 34.618539 -97.579188 +73437 107 50 33500120 273786 12.934 0.106 34.367943 -97.412376 +73438 3708 1738 224620275 901695 86.726 0.348 34.281559 -97.503211 +73439 7400 6194 331623667 29965336 128.041 11.570 33.937903 -96.744103 +73440 398 221 30219684 8478999 11.668 3.274 33.944702 -96.896744 +73441 165 91 9553245 0 3.689 0.000 33.904470 -97.430574 +73442 428 211 208637446 773296 80.555 0.299 34.327013 -97.664593 +73443 3585 1488 136439374 236519 52.680 0.091 34.164985 -97.297643 +73444 156 71 105211210 381382 40.622 0.147 34.475095 -97.361366 +73446 8042 3591 597731499 29051691 230.785 11.217 34.089592 -96.777798 +73447 1205 559 235232116 4639311 90.824 1.791 34.247252 -96.853450 +73448 5784 2624 555129881 20014326 214.337 7.728 33.948312 -97.106144 +73449 2987 1750 97382170 21402579 37.599 8.264 34.008750 -96.544138 +73450 1248 594 243299909 1735496 93.939 0.670 34.263432 -96.533234 +73453 661 323 182953423 922819 70.639 0.356 34.041675 -97.238508 +73455 673 297 23511505 692833 9.078 0.268 34.229981 -96.760353 +73456 2082 1065 661130456 3717678 255.264 1.435 34.124547 -97.645662 +73458 952 419 272126730 4700888 105.069 1.815 34.359542 -97.249856 +73459 1132 497 89960205 6749921 34.734 2.606 33.773890 -97.130517 +73460 4747 2167 415619854 28517502 160.472 11.011 34.275807 -96.651260 +73461 795 399 157316463 1291246 60.740 0.499 34.360797 -96.456915 +73463 3501 1568 527617329 1291942 203.714 0.499 34.107709 -97.434852 +73481 978 468 196226455 966482 75.763 0.373 34.439270 -97.522015 +73487 232 128 29758851 264303 11.490 0.102 34.484337 -97.448953 +73491 721 360 44846444 508097 17.315 0.196 34.473395 -97.637933 +73501 20935 8868 303899573 1128842 117.336 0.436 34.557945 -98.290973 +73503 10996 1502 218334116 1014724 84.299 0.392 34.682971 -98.491820 +73505 49809 21600 143116807 246279 55.258 0.095 34.576274 -98.481242 +73507 22847 10558 528630360 1529446 204.105 0.591 34.795717 -98.629094 +73520 149 76 27450251 134072 10.599 0.052 34.263009 -97.989868 +73521 21636 9705 476000078 623285 183.785 0.241 34.641313 -99.315940 +73526 2133 1002 212567705 114663 82.073 0.044 34.791644 -99.275969 +73527 5184 1983 211730257 363631 81.750 0.140 34.578229 -98.622288 +73528 680 304 223724046 1821381 86.380 0.703 34.398379 -98.633421 +73529 5344 2416 562310492 10768152 217.109 4.158 34.350658 -97.944725 +73530 442 252 346425644 6826491 133.756 2.636 34.255180 -99.022339 +73531 401 187 205748321 2209215 79.440 0.853 34.194637 -98.536922 +73532 600 296 364618560 768293 140.780 0.297 34.643206 -99.585884 +73533 28434 13111 859620316 12356003 331.901 4.771 34.505317 -97.865916 +73537 643 373 459303773 411868 177.338 0.159 34.486692 -99.664244 +73538 4675 1979 207189753 1269426 79.996 0.490 34.673992 -98.237715 +73539 218 126 186285328 1919067 71.925 0.741 34.457183 -99.280585 +73540 439 204 143614612 398013 55.450 0.154 34.467092 -98.560889 +73541 3106 1302 216238727 427773 83.490 0.165 34.788728 -98.180721 +73542 4659 2300 860070304 8219247 332.075 3.173 34.401795 -98.948196 +73543 1859 765 179963417 714735 69.484 0.276 34.470062 -98.374021 +73544 268 177 333896815 487227 128.918 0.188 34.682536 -99.745682 +73546 1232 647 349071995 3201008 134.777 1.236 34.222944 -98.723483 +73547 2319 703 316400975 9817245 122.163 3.790 34.992899 -99.413335 +73548 519 337 131503043 13775936 50.774 5.319 34.286479 -98.108572 +73549 296 158 191769649 167312 74.043 0.065 34.644812 -99.152829 +73550 2512 1253 556507093 2832100 214.869 1.093 34.689605 -99.900320 +73551 65 30 28406973 30920 10.968 0.012 34.354051 -98.888948 +73552 1612 640 295332527 1045098 114.029 0.404 34.642436 -98.761949 +73553 46 27 111807026 415175 43.169 0.160 34.326642 -98.722084 +73554 3614 1861 1051417216 1237520 405.954 0.478 34.893237 -99.616858 +73555 214 104 51360474 171745 19.830 0.066 34.501511 -98.965922 +73556 166 90 3733975 0 1.442 0.000 34.730084 -99.384051 +73557 427 327 6029518 182981 2.328 0.071 34.731987 -98.488973 +73559 540 306 271308838 9067575 104.753 3.501 34.731386 -98.963699 +73560 829 379 346745382 405416 133.879 0.157 34.539283 -99.446744 +73562 772 364 264262646 7439954 102.032 2.873 34.181006 -98.409240 +73564 551 351 493583623 15171026 190.574 5.858 34.848450 -98.999659 +73565 1092 589 510483706 4470614 197.099 1.726 34.019909 -97.893975 +73566 1674 836 287560341 653164 111.028 0.252 34.616560 -98.930065 +73567 860 371 11942909 36831 4.611 0.014 34.745916 -98.144111 +73568 1182 648 236979150 4709526 91.498 1.818 34.252094 -98.213039 +73569 537 324 191978196 6107496 74.123 2.358 33.935967 -97.782705 +73570 1128 614 320837206 1047198 123.876 0.404 34.514630 -99.114772 +73571 87 73 324267915 185604 125.201 0.072 34.931971 -99.891316 +73572 3699 1736 716009025 5461825 276.453 2.109 34.359644 -98.345276 +73573 2551 1255 553951972 25132782 213.882 9.704 34.165641 -97.938643 +73601 10299 4371 346656075 962559 133.845 0.372 35.489614 -98.963496 +73620 1194 464 320394149 699051 123.705 0.270 35.622330 -99.025127 +73622 266 143 139779332 703319 53.969 0.272 35.386159 -98.996649 +73624 2142 937 26189472 61834 10.112 0.024 35.341629 -99.177885 +73625 554 376 346353342 19965821 133.728 7.709 35.676706 -99.190504 +73626 1136 608 299249926 9190683 115.541 3.549 35.421462 -99.278941 +73627 628 303 262460058 1306141 101.336 0.504 35.197014 -99.452704 +73628 1583 835 961883012 6968620 371.385 2.691 35.630124 -99.700231 +73632 3433 1655 524359658 2876629 202.456 1.111 35.269560 -98.932044 +73638 142 92 352198157 518179 135.984 0.200 35.840371 -99.784713 +73639 602 333 382961162 996731 147.862 0.385 35.739089 -98.960620 +73641 762 365 110352250 80801 42.607 0.031 35.271211 -99.173707 +73642 187 110 251985916 1442083 97.292 0.557 35.822727 -99.909944 +73644 14147 6433 493967458 2144564 190.722 0.828 35.419594 -99.437791 +73645 1538 853 742462094 419121 286.666 0.162 35.197482 -99.896396 +73646 384 234 297506316 534511 114.868 0.206 35.829574 -98.609606 +73647 519 264 279283481 2250537 107.832 0.869 35.435506 -99.159954 +73650 1020 437 498366429 4178124 192.420 1.613 35.645945 -99.402948 +73651 4268 2152 541452125 2375850 209.056 0.917 35.014541 -99.075637 +73654 866 489 882146554 8068989 340.599 3.115 35.871027 -99.367671 +73655 864 648 408780225 10020477 157.831 3.869 34.982350 -99.263681 +73658 260 140 211909068 45717 81.819 0.018 35.949209 -98.741972 +73659 160 106 376344217 4515869 145.307 1.744 35.862816 -98.917268 +73660 430 235 326356406 1130448 126.007 0.436 35.617653 -99.917328 +73661 420 200 174608046 2329271 67.417 0.899 35.167199 -99.009351 +73662 6093 2193 1006755639 1608056 388.711 0.621 35.298362 -99.684321 +73663 1332 625 350970003 956300 135.510 0.369 36.102944 -98.894969 +73664 1184 542 338250146 1183688 130.599 0.457 35.185996 -99.247421 +73666 180 94 195727037 206728 75.571 0.080 35.472982 -99.920163 +73667 517 294 394826873 1929640 152.444 0.745 36.005902 -99.039900 +73669 1675 780 356576255 342072 137.675 0.132 35.730713 -98.744834 +73673 319 189 324772991 618222 125.396 0.239 35.054415 -99.567517 +73701 24808 10453 375959183 448395 145.159 0.173 36.426744 -97.791989 +73703 27951 12927 293788877 242724 113.433 0.094 36.427053 -97.969332 +73705 267 0 1146031 0 0.442 0.000 36.338237 -97.902629 +73716 510 302 327045817 330472 126.273 0.128 36.499454 -98.524842 +73717 6846 3235 1702124781 2606753 657.194 1.006 36.848381 -98.764389 +73718 501 254 184931028 534138 71.402 0.206 36.224794 -98.166797 +73719 83 50 113725563 0 43.910 0.000 36.956781 -98.288439 +73720 265 126 149279126 42135 57.637 0.016 36.201132 -97.872750 +73722 427 218 438799957 559759 169.422 0.216 36.848080 -98.215556 +73724 1190 825 396161947 33745106 152.959 13.029 36.052152 -98.663719 +73726 472 300 275332411 223394 106.306 0.086 36.587781 -98.497112 +73727 267 112 98092036 141672 37.874 0.055 36.499524 -98.041755 +73728 1861 1043 590981662 620667 228.179 0.240 36.747408 -98.372460 +73729 578 288 148117414 370364 57.188 0.143 36.422415 -98.476581 +73730 734 357 148491149 181420 57.333 0.070 36.320793 -97.539278 +73731 171 110 98059477 32200 37.861 0.012 36.644994 -98.603442 +73733 221 99 133458641 14028 51.529 0.005 36.254662 -97.687940 +73734 1067 457 268678513 3659365 103.737 1.413 35.978388 -97.863019 +73735 684 285 91534597 136767 35.342 0.053 36.280361 -98.062871 +73736 356 167 143509425 530391 55.409 0.205 36.340239 -97.681730 +73737 3367 1709 839021357 2604736 323.948 1.006 36.293239 -98.639880 +73738 1134 554 266255492 1067841 102.802 0.412 36.451015 -97.552000 +73739 369 194 125945109 296205 48.628 0.114 36.512467 -98.143537 +73741 1614 328 274664259 518208 106.048 0.200 36.557445 -98.256726 +73742 3824 1595 603556460 3916076 233.034 1.512 36.095059 -97.934650 +73743 122 50 14390364 18842 5.556 0.007 36.576139 -98.013178 +73744 267 133 235623850 69590 90.975 0.027 35.947878 -98.306188 +73746 37 19 1322106 0 0.510 0.000 36.685124 -98.657624 +73747 285 137 108410442 497234 41.858 0.192 36.227890 -98.331843 +73749 448 406 204953423 2546551 79.133 0.983 36.716824 -98.154929 +73750 7025 2993 688242363 5329239 265.732 2.058 35.852627 -97.952374 +73753 468 197 168517823 80111 65.065 0.031 36.555251 -97.863739 +73754 1078 476 94581915 116480 36.518 0.045 36.398190 -98.096146 +73755 905 603 191038023 131001 73.760 0.051 36.138233 -98.564734 +73756 352 168 213195744 1228055 82.315 0.474 35.979497 -98.130059 +73757 178 95 89741304 369295 34.649 0.143 36.286880 -97.458177 +73758 197 135 243634449 380982 94.068 0.147 36.950248 -98.081048 +73759 1468 814 984261805 1150834 380.026 0.444 36.860105 -97.720424 +73760 470 199 154137352 855365 59.513 0.330 36.371004 -98.169059 +73761 395 231 262265497 768953 101.261 0.297 36.682910 -98.043453 +73762 2156 915 486824029 5293286 187.964 2.044 35.713187 -97.964437 +73763 1623 780 516206477 795746 199.308 0.307 36.092871 -98.326387 +73764 144 78 128824694 369743 49.739 0.143 35.854740 -98.201702 +73766 1096 560 395621949 3149312 152.750 1.216 36.655593 -97.825727 +73768 1568 658 339471998 1718979 131.071 0.664 36.355228 -98.292148 +73771 495 314 349756510 193319 135.042 0.075 36.875804 -97.973133 +73772 6119 1972 632870088 627873 244.353 0.242 35.863246 -98.430296 +73773 1744 790 275346570 69229 106.312 0.027 36.265726 -97.920476 +73801 15228 7024 1242086526 7272857 479.572 2.808 36.479952 -99.438732 +73832 929 552 1186452337 181013 458.092 0.070 36.049727 -99.689764 +73834 1643 856 1056635094 2240574 407.969 0.865 36.846523 -99.540299 +73835 309 177 359544763 725158 138.821 0.280 35.967125 -99.219327 +73838 462 248 372709438 309571 143.904 0.120 36.237873 -98.895489 +73840 691 340 448741487 82998 173.260 0.032 36.356174 -99.614847 +73841 1482 234 97758229 0 37.745 0.000 36.558739 -99.624304 +73842 494 295 1129809060 6644710 436.222 2.566 36.818340 -99.198573 +73843 883 473 830089681 61207 320.499 0.024 36.398532 -99.814293 +73844 269 158 880282180 5802980 339.879 2.241 36.871687 -100.142151 +73848 2156 1099 1576395226 610433 608.650 0.236 36.660888 -100.012458 +73851 80 63 127302602 0 49.152 0.000 36.591412 -99.806525 +73852 2051 973 1052636172 307374 406.425 0.119 36.479260 -99.120104 +73853 379 184 340858260 1571 131.606 0.001 36.241563 -99.147365 +73855 106 68 350038585 2600539 135.151 1.004 36.917876 -99.867740 +73857 623 270 163559234 16033 63.151 0.006 36.269884 -99.329123 +73858 1666 920 643340397 626809 248.395 0.242 36.179173 -99.921531 +73859 1459 682 488600596 225082 188.650 0.087 36.126412 -99.299640 +73860 1337 834 875080172 2267471 337.870 0.875 36.545708 -98.836860 +73901 156 73 32291862 93688 12.468 0.036 36.740055 -101.017225 +73931 510 243 665198587 352545 256.835 0.136 36.608697 -100.797981 +73932 2092 1030 1439634031 609893 555.846 0.235 36.715772 -100.499279 +73933 1697 1028 2694463162 5467797 1040.338 2.111 36.740858 -102.579737 +73937 173 108 453782309 2055274 175.206 0.794 36.554897 -102.795910 +73938 781 351 513218116 141840 198.155 0.055 36.932374 -100.578761 +73939 1695 634 861393811 4022140 332.586 1.553 36.776778 -101.789896 +73942 12953 4965 1614595836 6556524 623.399 2.531 36.738486 -101.506398 +73944 388 236 578728013 340765 223.448 0.132 36.590948 -101.108017 +73945 2889 1175 999530341 2954405 385.921 1.141 36.826905 -101.232916 +73946 45 57 465534169 6017921 179.744 2.324 36.935479 -102.804080 +73947 472 347 855308093 549458 330.236 0.212 36.820446 -102.149079 +73949 1688 764 1360361346 5991913 525.238 2.313 36.581136 -101.915456 +73950 1736 732 565079815 137996 218.179 0.053 36.854769 -100.894971 +73951 1141 497 248222129 802925 95.839 0.310 36.942879 -101.062787 +74001 367 198 15542156 122084 6.001 0.047 36.493357 -96.082863 +74002 2333 1061 374195498 2640742 144.478 1.020 36.557214 -96.143004 +74003 14249 6951 315929479 2256007 121.981 0.871 36.728272 -96.067573 +74006 25750 11719 230030857 1402246 88.815 0.541 36.712435 -95.895038 +74008 22461 8845 205165141 8365286 79.215 3.230 35.923478 -95.877013 +74010 10501 4755 851239299 10927916 328.665 4.219 35.814546 -96.363831 +74011 25448 9996 61284078 5117665 23.662 1.976 35.981808 -95.809192 +74012 57526 22205 64132269 97528 24.762 0.038 36.051397 -95.805771 +74014 34579 12954 272576661 3878708 105.242 1.498 36.055628 -95.680816 +74015 8064 3766 147528229 1844910 56.961 0.712 36.180425 -95.702838 +74016 6005 2667 387901842 895556 149.770 0.346 36.545156 -95.451260 +74017 28057 11669 373875263 4500712 144.354 1.738 36.390961 -95.587812 +74019 17648 6957 285373230 2353986 110.183 0.909 36.284765 -95.603194 +74020 7294 3385 176620588 32303859 68.194 12.473 36.246127 -96.420895 +74021 17359 6708 178403384 781699 68.882 0.302 36.383434 -95.841669 +74022 1760 832 306430325 23185702 118.313 8.952 36.944293 -95.987771 +74023 11741 5317 455832049 4385688 175.998 1.693 35.958944 -96.751382 +74026 896 413 6331070 72844 2.444 0.028 35.711744 -96.761978 +74027 1015 463 238693605 428823 92.160 0.166 36.788842 -95.585735 +74028 1881 802 263363388 4106714 101.685 1.586 35.786264 -96.520013 +74029 5128 2303 134116685 277085 51.783 0.107 36.822884 -95.889907 +74030 3864 1842 178587071 892691 68.953 0.345 35.986114 -96.558831 +74032 2219 1034 267261323 2930638 103.190 1.132 36.206930 -96.898778 +74033 10163 3712 30830375 0 11.904 0.000 35.945975 -96.007443 +74034 150 75 8347288 0 3.223 0.000 36.226279 -96.579091 +74035 4565 1702 624227900 19713179 241.016 7.611 36.421430 -96.387983 +74036 6734 2663 318498163 3247628 122.973 1.254 36.158045 -95.506549 +74037 15159 5699 37204863 3633903 14.365 1.403 35.998551 -95.979890 +74038 2254 993 250875859 1469420 96.864 0.567 36.157622 -96.559277 +74039 3770 1511 169273283 2623442 65.357 1.013 35.901719 -96.236557 +74041 2057 841 19300748 252686 7.452 0.098 35.941561 -96.054853 +74042 540 238 147804417 1499870 57.068 0.579 36.858552 -95.578615 +74044 7406 3170 209066196 29320217 80.721 11.321 36.094022 -96.385295 +74045 311 170 116077330 41329 44.818 0.016 36.221128 -96.708163 +74046 115 57 2234284 16777 0.863 0.006 35.750950 -96.559172 +74047 7163 2880 257531408 1058270 99.433 0.409 35.853233 -96.010833 +74048 6092 2809 540726196 3713856 208.776 1.434 36.695375 -95.658799 +74050 323 159 634404 0 0.245 0.000 36.072822 -96.064557 +74051 1904 822 87158139 1117984 33.652 0.432 36.613010 -95.956685 +74052 1180 585 37681173 711056 14.549 0.275 36.085343 -96.578060 +74053 4315 1712 102336866 625618 39.512 0.242 36.430563 -95.731724 +74054 844 409 73708965 15275996 28.459 5.898 36.279882 -96.347466 +74055 38680 14912 132310744 286322 51.085 0.111 36.276705 -95.819071 +74056 5720 2990 1692269628 18105984 653.389 6.991 36.795302 -96.330851 +74058 4259 2033 667142175 8562593 257.585 3.306 36.362625 -96.758594 +74059 5476 2365 299085712 3026664 115.478 1.169 35.957081 -97.061042 +74060 586 276 37495435 3750370 14.477 1.448 36.271979 -96.246217 +74061 2095 906 237700336 1432478 91.777 0.553 36.533125 -95.892635 +74062 1123 483 81608114 2687935 31.509 1.038 36.037717 -96.900950 +74063 29808 12632 351787392 19958933 135.826 7.706 36.150767 -96.199590 +74066 31060 13011 328318086 4107659 126.764 1.586 35.993142 -96.164294 +74068 111 60 1973980 9690 0.762 0.004 35.907253 -96.577983 +74070 13928 5688 488232547 26052055 188.508 10.059 36.399677 -96.082714 +74071 180 88 19416058 303376 7.497 0.117 35.783474 -96.296196 +74072 1816 832 293144119 389545 113.184 0.150 36.951523 -95.534407 +74073 5118 2089 121309325 9089330 46.838 3.509 36.293072 -96.026136 +74074 29184 12607 341272611 6323091 131.766 2.441 36.078949 -97.074012 +74075 23866 11430 239766105 14985121 92.574 5.786 36.169169 -97.083226 +74078 2295 0 626995 0 0.242 0.000 36.124101 -97.070460 +74079 4504 2141 454510598 7987959 175.488 3.084 35.746626 -96.655169 +74080 2829 1151 259327676 792742 100.127 0.306 36.542107 -95.749012 +74081 1837 798 88223598 5544620 34.063 2.141 36.180499 -96.451582 +74082 107 40 197541 0 0.076 0.000 36.450476 -95.881557 +74083 1031 477 270983063 520123 104.627 0.201 36.879210 -95.753383 +74084 628 345 157442714 116122 60.789 0.045 36.533455 -96.351473 +74085 2588 1238 241068385 1352404 93.077 0.522 36.110793 -96.722608 +74103 2692 160 1477507 0 0.570 0.000 36.155600 -95.994557 +74104 12724 6606 7052674 0 2.723 0.000 36.146469 -95.954005 +74105 26547 14622 18922019 792782 7.306 0.306 36.097442 -95.961087 +74106 17648 8379 19616643 6586 7.574 0.003 36.191942 -95.985150 +74107 19458 8947 66446160 3341157 25.655 1.290 36.115021 -96.032367 +74108 7490 2936 21106609 19620 8.149 0.008 36.139497 -95.790064 +74110 14862 6378 15326364 6436 5.918 0.002 36.188107 -95.953879 +74112 20684 10275 17560641 29404 6.780 0.011 36.147036 -95.902328 +74114 15778 8020 12622115 208989 4.873 0.081 36.126943 -95.946695 +74115 22941 9886 40554601 1980396 15.658 0.765 36.192085 -95.909152 +74116 3890 1777 46559752 170461 17.977 0.066 36.188754 -95.842578 +74117 87 44 31595960 247180 12.199 0.095 36.246037 -95.901508 +74119 3561 3036 2037045 0 0.787 0.000 36.142076 -95.989166 +74120 4940 3028 5523242 4742 2.133 0.002 36.150737 -95.977408 +74126 10598 4795 62054905 226804 23.960 0.088 36.241925 -96.025829 +74127 17151 7906 63160827 2902520 24.387 1.121 36.179654 -96.045507 +74128 12676 5193 9572817 0 3.696 0.000 36.147470 -95.851460 +74129 18976 7935 10792940 41382 4.167 0.016 36.126240 -95.871215 +74130 2065 977 10518882 37440 4.061 0.014 36.241481 -95.956590 +74131 2775 1173 25766701 199938 9.949 0.077 36.052418 -96.068613 +74132 7543 3113 31542565 1151031 12.179 0.444 36.048782 -96.016734 +74133 43414 19962 35635722 52197 13.759 0.020 36.039272 -95.877428 +74134 15083 6211 28571775 1041667 11.032 0.402 36.110481 -95.805491 +74135 20651 10984 15622888 13887 6.032 0.005 36.096205 -95.924016 +74136 30703 15610 20929510 1065967 8.081 0.412 36.062400 -95.941457 +74137 25737 11276 26743390 1147825 10.326 0.443 36.019356 -95.931955 +74145 17402 8507 15726203 33270 6.072 0.013 36.097138 -95.890482 +74146 15498 6214 13157932 33903 5.080 0.013 36.098806 -95.855191 +74301 11840 5399 1026339514 9242696 396.272 3.569 36.677726 -95.224726 +74330 2884 1306 251280513 3045264 97.020 1.176 36.437107 -95.272373 +74331 7258 6258 291000258 55897712 112.356 21.582 36.639422 -94.940409 +74332 1972 894 177347841 2388669 68.474 0.922 36.516971 -95.228630 +74333 1221 540 232201963 319830 89.654 0.123 36.794004 -95.081910 +74337 5060 2341 238179855 9762970 91.962 3.770 36.140741 -95.336936 +74338 5480 2243 429489972 1425472 165.827 0.550 36.257119 -94.731772 +74339 2606 1108 8902463 0 3.437 0.000 36.933947 -94.879710 +74340 311 259 4666571 4136747 1.802 1.597 36.475230 -95.023102 +74342 2927 2501 193502360 14008878 74.712 5.409 36.429301 -94.933848 +74343 3100 1466 166743523 13063638 64.380 5.044 36.735704 -94.828285 +74344 14412 8385 231970248 45622695 89.564 17.615 36.595478 -94.740686 +74346 7864 3849 574329526 20576124 221.750 7.944 36.439457 -94.754394 +74347 2593 1354 91197678 221229 35.212 0.085 36.209915 -94.811983 +74349 318 237 3592680 173640 1.387 0.067 36.517520 -95.037356 +74350 862 490 15338116 681634 5.922 0.263 36.465922 -95.052442 +74352 6803 3074 338807556 14029311 130.814 5.417 36.141902 -95.180408 +74354 18126 7806 468231633 7140021 180.785 2.757 36.886136 -94.882511 +74358 270 124 321134 0 0.124 0.000 36.917847 -94.880601 +74359 656 258 24304443 352 9.384 0.000 36.171801 -94.794922 +74360 31 39 16649433 46327 6.428 0.018 36.970393 -94.833857 +74361 16293 7077 443019610 17541404 171.051 6.773 36.302767 -95.306842 +74363 2892 1207 176206393 1104693 68.034 0.427 36.955400 -94.715091 +74364 1750 751 246553475 1677 95.195 0.001 36.196316 -94.948524 +74365 5110 2391 185581041 16394161 71.653 6.330 36.293708 -95.071341 +74366 1474 843 95387548 7313494 36.829 2.824 36.390403 -95.046162 +74367 587 319 47490204 4868650 18.336 1.880 36.416088 -95.112888 +74368 117 36 2904808 0 1.122 0.000 36.207553 -94.848541 +74369 1803 866 592563888 1028294 228.790 0.397 36.924620 -95.202002 +74370 3537 1747 281643784 16810357 108.743 6.491 36.749774 -94.680369 +74401 17476 8050 313459418 9898811 121.027 3.822 35.723078 -95.467700 +74403 30709 13759 294719963 19655973 113.792 7.589 35.670516 -95.306945 +74421 4607 1979 342678664 419767 132.309 0.162 35.761858 -96.044150 +74422 824 421 169171887 2012931 65.318 0.777 35.627056 -95.705786 +74423 872 403 141272515 12458849 54.546 4.810 35.672774 -95.191729 +74425 1240 813 42376242 6413558 16.362 2.476 35.170896 -95.641497 +74426 9891 6242 573334710 77691571 221.366 29.997 35.451697 -95.530308 +74427 1383 1307 102541735 12405286 39.592 4.790 35.677088 -94.886897 +74428 882 447 157261527 3099357 60.719 1.197 35.569374 -95.637768 +74429 14445 5697 224014160 4687018 86.492 1.810 35.955524 -95.627569 +74430 588 306 16610489 2235450 6.413 0.863 35.126839 -95.660771 +74431 918 383 9483743 52353 3.662 0.020 35.470865 -95.941735 +74432 9730 6925 557079717 99647639 215.090 38.474 35.284422 -95.659320 +74434 9067 3657 233780912 12043712 90.263 4.650 35.809549 -95.210870 +74435 3185 1749 168325188 22125423 64.991 8.543 35.576616 -95.093838 +74436 5078 2171 355969595 9529846 137.441 3.679 35.797413 -95.696981 +74437 10448 4850 540375364 28090238 208.640 10.846 35.447877 -95.935805 +74438 163 87 20280304 36561 7.830 0.014 35.544411 -95.758570 +74441 5362 2392 359889684 22391235 138.954 8.645 35.976851 -95.145009 +74442 920 455 155376393 10122726 59.991 3.908 35.133651 -95.819115 +74445 3226 1268 212264458 573896 81.956 0.222 35.631467 -95.828602 +74446 558 240 2634034 357665 1.017 0.138 35.849008 -95.315722 +74447 17275 7977 595326459 7378492 229.857 2.849 35.640224 -96.001771 +74450 1948 781 185652309 178857 71.681 0.069 35.600099 -95.477888 +74451 4283 2557 191162576 23096623 73.808 8.918 35.735657 -94.963999 +74452 473 207 67415909 0 26.029 0.000 36.120172 -95.068078 +74454 3179 1365 282235464 7577125 108.972 2.926 35.854320 -95.515876 +74455 3158 2216 296341125 9250454 114.418 3.572 35.361255 -95.263055 +74456 247 111 3178397 0 1.227 0.000 35.711240 -95.996987 +74457 608 281 183306526 1130245 70.775 0.436 36.005891 -94.841179 +74458 147 68 3526501 0 1.362 0.000 35.883581 -95.591741 +74459 86 52 4091050 0 1.580 0.000 35.534348 -95.492198 +74460 283 126 2316973 0 0.895 0.000 35.507855 -95.956524 +74462 7875 4736 642332834 34501620 248.006 13.321 35.290920 -95.164244 +74463 2033 146 5726204 17896 2.211 0.007 35.759869 -95.550393 +74464 30111 12693 734403866 3868616 283.555 1.494 35.927971 -94.982454 +74467 14995 6978 401538861 33262985 155.035 12.843 35.966337 -95.392663 +74468 263 120 7798179 0 3.011 0.000 35.612166 -95.568090 +74469 2531 1011 112941937 334424 43.607 0.129 35.495106 -95.308333 +74470 1693 814 212920758 7623893 82.209 2.944 35.476717 -95.166878 +74471 1800 750 125072025 3628462 48.291 1.401 35.834204 -94.871883 +74472 554 241 34804328 556327 13.438 0.215 35.249889 -95.268414 +74477 5 71 94901 0 0.037 0.000 36.003882 -95.266586 +74501 29073 12593 1432792721 94500419 553.204 36.487 34.985768 -95.790791 +74521 217 120 24761749 262371 9.561 0.101 34.654509 -95.088174 +74522 344 141 2118515 0 0.818 0.000 34.903596 -95.692957 +74523 6048 2884 566588185 6355785 218.761 2.454 34.228459 -95.611929 +74525 10112 4323 1081205690 27679554 417.456 10.687 34.336099 -96.068225 +74528 174 105 87310749 710526 33.711 0.274 34.720120 -95.723961 +74530 214 102 49847496 560731 19.246 0.216 34.436131 -96.494625 +74531 1062 535 333069852 2830475 128.599 1.093 34.885419 -96.251927 +74533 849 390 107145009 568463 41.369 0.219 34.208012 -96.197011 +74534 250 130 74934610 529803 28.932 0.205 34.615230 -96.367738 +74535 126 56 16303195 11317 6.295 0.004 34.484536 -96.445879 +74536 1760 939 741927783 52512920 286.460 20.275 34.563839 -95.459785 +74538 4200 2001 932227048 9096558 359.935 3.512 34.582143 -96.258960 +74540 172 103 103130371 402392 39.819 0.155 34.571449 -95.708704 +74543 370 216 348953335 1394203 134.732 0.538 34.370550 -95.437629 +74546 824 405 4110824 134722 1.587 0.052 34.858319 -95.579056 +74547 3463 1597 269843519 5081473 104.187 1.962 34.810286 -95.613452 +74549 76 75 99678568 506023 38.486 0.195 34.562466 -94.894120 +74552 1058 507 255969418 1934683 98.830 0.747 35.120810 -95.242490 +74553 1384 674 188382265 1539536 72.735 0.594 34.713411 -95.925284 +74554 1744 828 12307584 58419 4.752 0.023 34.921255 -95.710699 +74555 861 405 169947766 896288 65.617 0.346 34.249162 -95.964544 +74556 422 179 40624452 790629 15.685 0.305 34.464259 -96.179638 +74557 464 494 334678125 1922546 129.220 0.742 34.391030 -95.700287 +74558 455 239 218930382 1913980 84.529 0.739 34.504780 -95.165928 +74560 635 340 560960710 2387161 216.588 0.922 34.648749 -95.760131 +74561 2175 964 348371066 496114 134.507 0.192 35.129949 -95.415131 +74562 937 479 418253386 2377499 161.489 0.918 34.296000 -95.285523 +74563 2042 989 489010513 2550322 188.808 0.985 34.969930 -95.072648 +74565 707 358 30300093 43229 11.699 0.017 34.807295 -95.841908 +74567 242 120 142510278 592383 55.024 0.229 34.426298 -95.392805 +74569 633 350 518613539 2082622 200.238 0.804 34.477346 -95.924320 +74570 1089 543 397628946 1736674 153.525 0.671 34.862799 -96.100966 +74571 3765 1737 860672370 3954473 332.307 1.527 34.717269 -94.978738 +74572 712 340 111146910 894696 42.914 0.345 34.644407 -96.428477 +74574 1080 577 377720946 7336354 145.839 2.833 34.689048 -95.290387 +74576 210 108 122422947 756393 47.268 0.292 34.655609 -96.039321 +74577 271 117 19633564 197556 7.581 0.076 34.674841 -94.808016 +74578 6822 2977 859967489 6301317 332.035 2.433 34.906148 -95.341654 +74601 20257 9364 445919316 4397237 172.170 1.698 36.702158 -97.148862 +74604 12301 5654 348257996 14944624 134.463 5.770 36.701928 -96.982361 +74630 702 312 275890271 381029 106.522 0.147 36.512112 -97.433506 +74631 7709 3706 246317613 135561 95.104 0.052 36.793015 -97.305140 +74632 578 385 284680167 1095119 109.916 0.423 36.938862 -97.338198 +74633 471 225 243935491 17537358 94.184 6.771 36.710203 -96.776628 +74636 268 138 135550942 0 52.337 0.000 36.817793 -97.522271 +74637 1899 1076 485437952 4965432 187.429 1.917 36.566438 -96.664805 +74640 312 149 156285719 524296 60.342 0.202 36.551638 -97.651364 +74641 715 462 44872403 26225333 17.325 10.126 36.795045 -96.886599 +74643 615 312 282686991 1567871 109.146 0.605 36.656364 -97.572768 +74644 478 216 199668809 4025551 77.093 1.554 36.551919 -97.098284 +74646 233 121 148928259 52394 57.502 0.020 36.832439 -97.441607 +74647 3765 1659 791665670 12752538 305.664 4.924 36.918100 -96.994561 +74650 693 357 366617383 13125703 141.552 5.068 36.487496 -96.750533 +74651 743 283 385034911 12952558 148.663 5.001 36.468416 -97.173257 +74652 897 544 621691479 10112976 240.036 3.905 36.859161 -96.644012 +74653 3892 1635 305552440 3004789 117.974 1.160 36.649344 -97.350320 +74701 22365 9928 456478525 9314225 176.247 3.596 34.006822 -96.378921 +74720 608 267 33541619 244320 12.950 0.094 33.831466 -96.371691 +74722 286 132 40127257 215582 15.493 0.083 34.379578 -94.898336 +74723 1729 857 518525952 7740556 200.204 2.989 33.992934 -96.017162 +74724 377 176 82916075 130778 32.014 0.050 34.346276 -94.861330 +74726 2398 1158 392368077 3469292 151.494 1.340 33.941333 -96.174356 +74727 2038 1013 513769646 5919088 198.368 2.285 34.018744 -95.858764 +74728 11343 5344 1026460729 32648780 396.319 12.606 34.150313 -94.802807 +74729 2741 1248 401523101 2617396 155.029 1.011 34.146482 -96.253999 +74730 4259 1775 164273548 3193201 63.426 1.233 33.912019 -96.430988 +74731 1747 950 33677532 450742 13.003 0.174 33.873765 -96.560439 +74733 2853 1297 123428451 5261298 47.656 2.031 33.836767 -96.479035 +74734 1087 567 410544896 12040433 158.512 4.649 34.102246 -94.542510 +74735 1549 805 411804747 4082235 158.999 1.576 34.096968 -95.247520 +74736 1178 500 170421820 6462467 65.800 2.495 33.932253 -94.991693 +74738 560 280 82959365 6358817 32.031 2.455 33.895661 -95.443340 +74740 2288 1100 667160724 18001877 257.592 6.951 33.784428 -94.604790 +74741 972 480 206718492 10889956 79.814 4.205 33.780883 -96.304088 +74743 8537 4163 568062289 37604821 219.330 14.519 34.008426 -95.494469 +74745 9912 4526 440001940 10841799 169.886 4.186 33.859098 -94.816353 +74747 153 81 1107285 9355 0.428 0.004 33.776584 -96.357317 +74748 642 325 100680624 858363 38.873 0.331 34.151028 -96.398918 +74750 364 188 13344822 62847 5.152 0.024 33.967835 -95.018636 +74753 52 24 182262 0 0.070 0.000 33.907926 -96.536581 +74754 385 239 137275349 7127286 53.002 2.752 34.197888 -95.134579 +74755 83 59 18861226 2204310 7.282 0.851 34.134683 -95.114767 +74756 870 446 124049525 21629004 47.896 8.351 34.084510 -95.374012 +74759 1358 665 357979386 3146677 138.217 1.215 34.056602 -95.712147 +74760 295 123 51114823 1605159 19.736 0.620 34.161523 -95.362964 +74761 70 48 3859302 24654 1.490 0.010 34.005089 -95.200867 +74764 3473 1612 342190912 11760405 132.121 4.541 34.047907 -95.095766 +74766 1595 685 278843532 3003465 107.662 1.160 34.143876 -94.980172 +74801 21657 9861 197064324 4337030 76.087 1.675 35.315129 -96.969671 +74804 19631 7958 242250632 491529 93.533 0.190 35.391465 -96.921469 +74820 30802 13597 796075847 6629110 307.367 2.560 34.788674 -96.715184 +74824 1253 544 95550317 677074 36.892 0.261 35.888673 -96.871192 +74825 2170 984 363416487 1837493 140.316 0.709 34.817952 -96.409963 +74826 1252 605 208380879 1787776 80.456 0.690 35.021910 -96.893188 +74827 387 210 96135409 982676 37.118 0.379 34.946034 -96.341858 +74829 1521 296 122754498 1417125 47.396 0.547 35.517014 -96.472326 +74830 229 105 4213089 0 1.627 0.000 35.143876 -96.664968 +74831 923 423 204196953 4615457 78.841 1.782 34.908121 -97.059948 +74832 936 418 72448642 377928 27.973 0.146 35.828769 -97.006776 +74833 703 333 129182245 1293102 49.878 0.499 35.572085 -96.412003 +74834 7590 3295 495670355 9371649 191.379 3.618 35.701353 -96.884595 +74836 171 89 90068337 165609 34.776 0.064 34.466523 -96.705068 +74837 310 135 6746345 37974 2.605 0.015 35.362686 -96.449187 +74839 770 364 195982966 2362613 75.669 0.912 35.241382 -96.032446 +74840 1924 792 154307311 211091 59.578 0.082 35.252916 -96.798752 +74842 135 60 18487702 43247 7.138 0.017 34.624919 -96.612564 +74843 340 144 75273663 22461 29.063 0.009 34.657025 -96.728586 +74844 371 165 6664951 2477 2.573 0.001 34.865518 -96.572386 +74845 494 255 262679308 5236534 101.421 2.022 35.252338 -95.888900 +74848 8326 3358 656860958 11797478 253.615 4.555 35.078885 -96.361626 +74849 3132 1405 318049888 9778539 122.800 3.776 34.978391 -96.735519 +74850 283 153 149371719 1651541 57.673 0.638 35.109677 -96.107056 +74851 9805 3521 220783852 2949277 85.245 1.139 35.426235 -97.081938 +74852 1347 593 188224738 273562 72.674 0.106 35.123940 -97.008872 +74854 1897 870 198797304 1658926 76.756 0.641 35.108543 -96.749097 +74855 4639 1999 277497127 4798299 107.142 1.853 35.519045 -96.898554 +74856 782 341 323192365 1751184 124.785 0.676 34.421746 -96.807482 +74857 9288 3653 156176909 1123832 60.300 0.434 35.336799 -97.196790 +74859 6221 2910 776793512 13786435 299.922 5.323 35.456479 -96.321622 +74860 1653 757 250397878 2687990 96.679 1.038 35.531903 -96.569823 +74864 5274 2335 292427409 3320985 112.907 1.282 35.495862 -96.710291 +74865 1711 747 421672631 916638 162.809 0.354 34.602136 -96.803604 +74867 1045 487 217748848 3004570 84.073 1.160 34.970304 -96.563479 +74868 13152 5868 551028991 2162510 212.753 0.835 35.278531 -96.644613 +74869 710 334 137496604 4598921 53.088 1.776 35.601170 -96.760192 +74871 2415 1124 440115226 3316725 169.929 1.281 34.605109 -96.544061 +74872 3692 1643 374359587 7534380 144.541 2.909 34.771695 -96.988016 +74873 11821 4827 383882460 932969 148.218 0.360 35.220987 -96.969539 +74875 1165 513 126071743 351751 48.677 0.136 35.877069 -96.969603 +74878 1565 745 306298960 2784637 118.263 1.075 35.004771 -97.069829 +74880 2239 1026 285335316 4045488 110.169 1.562 35.377444 -96.119784 +74881 4509 2024 399879012 2402996 154.394 0.928 35.714363 -97.079617 +74883 2526 1248 457340705 8998062 176.580 3.474 35.219684 -96.225558 +74884 6024 2948 345600579 4798403 133.437 1.853 35.190549 -96.515400 +74901 1992 904 30518762 934456 11.783 0.361 35.367066 -94.441795 +74902 4095 1739 78662568 749700 30.372 0.289 35.248925 -94.484116 +74930 2155 923 189264179 740472 73.075 0.286 35.183480 -94.776318 +74931 1411 574 211793680 713199 81.774 0.275 35.699605 -94.741134 +74932 2286 971 203269495 1916100 78.483 0.740 35.151594 -94.537988 +74935 174 99 29618731 47270 11.436 0.018 34.949693 -94.896888 +74936 1153 477 63473107 3442888 24.507 1.329 35.376865 -94.724464 +74937 5959 2322 536200436 4831433 207.028 1.865 34.816741 -94.587128 +74939 1455 448 386790269 2234518 149.341 0.863 34.729807 -94.632473 +74940 2697 1066 159300545 6352254 61.506 2.453 34.953637 -94.622427 +74941 2713 1182 291398597 69193671 112.510 26.716 35.287754 -94.883911 +74942 193 88 4234318 61484 1.635 0.024 34.900349 -94.978885 +74943 112 56 34728118 17822 13.409 0.007 35.072116 -95.079876 +74944 1272 583 305833412 2170055 118.083 0.838 35.139371 -94.989919 +74945 497 207 63451105 513028 24.499 0.198 35.599526 -94.809421 +74946 137 73 8420918 1683565 3.251 0.650 35.392451 -94.454714 +74948 12788 5213 564912386 11142560 218.114 4.302 35.467968 -94.568942 +74949 308 165 73436293 799220 28.354 0.309 34.660805 -94.753786 +74951 1504 699 16251498 617648 6.275 0.238 35.170654 -94.656684 +74953 11632 4813 356195801 2157323 137.528 0.833 35.043436 -94.610418 +74954 4590 1913 46960070 426406 18.131 0.165 35.425090 -94.501593 +74955 15344 6616 514107142 44622492 198.498 17.229 35.496424 -94.748101 +74956 1905 780 106854962 460825 41.257 0.178 35.109713 -94.769089 +74957 1170 658 605164954 2862776 233.656 1.105 34.523791 -94.655141 +74959 6736 2982 251327852 10503201 97.038 4.055 35.270912 -94.623306 +74960 13643 5371 782590911 4001334 302.160 1.545 35.810418 -94.650483 +74962 5092 2688 371190228 30494105 143.317 11.774 35.544019 -94.940814 +74963 608 309 195484107 2769039 75.477 1.069 34.400588 -94.579138 +74964 2834 1188 195625841 2267750 75.532 0.876 36.111948 -94.658801 +74965 5170 2161 290274479 2233705 112.076 0.862 35.996383 -94.630755 +74966 3719 1664 594639294 11353368 229.592 4.384 34.917644 -94.865138 +75001 12414 8102 9931768 8702 3.835 0.003 32.960047 -96.838522 +75002 63140 21373 96246535 5339800 37.161 2.062 33.089587 -96.607767 +75006 46364 17747 43735887 657535 16.887 0.254 32.962473 -96.898170 +75007 51624 19296 30163744 557048 11.646 0.215 33.005262 -96.896742 +75009 8785 3074 247128692 4075868 95.417 1.574 33.338899 -96.752977 +75010 21607 8830 20894417 259926 8.067 0.100 33.050164 -96.874540 +75013 30347 10517 38794452 174467 14.979 0.067 33.114327 -96.693964 +75019 38666 14346 42662666 4658389 16.472 1.799 32.963417 -96.984664 +75020 21872 10085 162043271 12430958 62.565 4.800 33.770785 -96.604061 +75021 8036 3489 156065645 178157 60.257 0.069 33.727126 -96.470794 +75022 22545 7149 49756501 5378599 19.211 2.077 33.034890 -97.124906 +75023 45452 18498 24400691 29165 9.421 0.011 33.056756 -96.730831 +75024 36039 16253 32729786 312216 12.637 0.121 33.075422 -96.802686 +75025 50926 18697 24152966 119648 9.326 0.046 33.090085 -96.740008 +75028 42226 14476 39228785 184965 15.146 0.071 33.032710 -97.060070 +75032 27986 9850 132895395 21678772 51.311 8.370 32.851681 -96.436170 +75034 72723 26706 129520409 10264340 50.008 3.963 33.146336 -96.856347 +75035 47553 16739 61234999 260865 23.643 0.101 33.163129 -96.790192 +75038 27802 13907 34630078 105488 13.371 0.041 32.874833 -96.996735 +75039 11032 7793 13588928 900324 5.247 0.348 32.885259 -96.942108 +75040 59406 19195 40542776 17014 15.654 0.007 32.928902 -96.619782 +75041 30700 10380 20723410 5950 8.001 0.002 32.880196 -96.651555 +75042 37881 12321 19376562 2357 7.481 0.001 32.911702 -96.674838 +75043 58094 22920 37626923 13513331 14.528 5.218 32.857617 -96.576325 +75044 40811 16026 27816000 175911 10.740 0.068 32.964607 -96.649686 +75048 20328 6972 27153807 331267 10.484 0.128 32.969008 -96.580883 +75050 41041 16470 64060502 669541 24.734 0.259 32.776671 -97.009389 +75051 39285 13862 31402968 6307998 12.125 2.436 32.729440 -96.996462 +75052 88996 29926 67746521 4943028 26.157 1.909 32.664953 -97.024692 +75054 5053 1690 14074282 2504698 5.434 0.967 32.591210 -97.039429 +75056 47852 18126 65384741 16055425 25.245 6.199 33.070292 -96.912391 +75057 12900 5249 26342071 5943844 10.171 2.295 33.050715 -96.974546 +75058 2982 1021 149285655 1461913 57.640 0.564 33.450768 -96.742245 +75060 45980 15384 34345887 786828 13.261 0.304 32.796608 -96.954903 +75061 53442 20001 29948116 82661 11.563 0.032 32.825907 -96.966915 +75062 44537 17955 28466086 230565 10.991 0.089 32.847370 -96.957871 +75063 35090 16678 39313581 343986 15.179 0.133 32.920435 -96.985989 +75065 10748 4127 20578069 19971883 7.945 7.711 33.110351 -97.005469 +75067 60982 25790 34427071 261976 13.292 0.101 33.013546 -97.000160 +75068 34934 11990 71094991 19703525 27.450 7.608 33.176495 -96.950551 +75069 34108 13423 83015420 1735222 32.052 0.670 33.179994 -96.586856 +75070 74734 27329 61975282 621953 23.929 0.240 33.172033 -96.696270 +75071 36090 12872 204087237 2265030 78.799 0.875 33.245879 -96.631295 +75074 44622 16019 42773971 115046 16.515 0.044 33.031561 -96.673164 +75075 33262 13764 25522472 16554 9.854 0.006 33.021268 -96.741558 +75076 7378 4448 128850031 23123466 49.749 8.928 33.800717 -96.725989 +75077 35330 13213 36139170 3552833 13.953 1.372 33.081367 -97.061017 +75078 10592 3849 84774626 704042 32.732 0.272 33.241902 -96.807989 +75080 44009 18849 29602654 45524 11.430 0.018 32.976063 -96.742080 +75081 34156 13893 23899228 10820 9.228 0.004 32.948918 -96.709719 +75082 21182 7921 20285639 183141 7.832 0.071 32.991557 -96.663063 +75087 28145 10513 67809828 24569568 26.182 9.486 32.943901 -96.452875 +75088 24712 8744 22856071 8204801 8.825 3.168 32.897846 -96.550385 +75089 30251 9821 28703349 1250821 11.082 0.483 32.938077 -96.556367 +75090 23724 9123 199566790 131193 77.053 0.051 33.604131 -96.550405 +75092 22839 10580 293528883 1072154 113.332 0.414 33.656879 -96.703808 +75093 47187 19851 36574285 327047 14.121 0.126 33.034225 -96.811607 +75094 20579 5956 18059413 37434 6.973 0.014 33.021793 -96.615482 +75098 48197 16288 85323200 20369546 32.943 7.865 33.012135 -96.534936 +75101 646 206 2130982 0 0.823 0.000 32.270032 -96.702494 +75102 1322 555 157211700 1547630 60.700 0.598 32.057938 -96.632547 +75103 12851 5572 516576903 8411399 199.451 3.248 32.518146 -95.888865 +75104 45373 16480 101237619 657215 39.088 0.254 32.580181 -96.964675 +75105 301 146 133025919 1938592 51.362 0.748 32.263010 -96.387663 +75109 3658 1669 301189029 70922553 116.290 27.383 32.043193 -96.350943 +75110 28132 11265 388361633 3480691 149.947 1.344 32.084915 -96.528172 +75114 4660 1685 112013963 1126841 43.249 0.435 32.610576 -96.444256 +75115 48877 19326 56814302 95690 21.936 0.037 32.599427 -96.864075 +75116 19669 6932 13271661 15027 5.124 0.006 32.660660 -96.911882 +75117 3722 1634 121466312 862381 46.898 0.333 32.715013 -95.854461 +75119 26601 9758 685705854 24046000 264.753 9.284 32.325868 -96.588241 +75124 4446 2097 241080193 5178753 93.082 2.000 32.326026 -95.974056 +75125 6691 2260 180443324 2062130 69.670 0.796 32.536700 -96.621747 +75126 33396 11080 200319901 2406628 77.344 0.929 32.743178 -96.454900 +75127 1593 653 68840646 1135685 26.580 0.438 32.690295 -95.789932 +75132 294 153 3839208 1391 1.482 0.001 32.945503 -96.375325 +75134 20276 7380 26469299 32942 10.220 0.013 32.617663 -96.778058 +75135 5910 2175 161008437 230740 62.166 0.089 33.066284 -96.222134 +75137 18861 7082 15781643 15921 6.093 0.006 32.643212 -96.916468 +75140 6958 2916 290749871 5954468 112.259 2.299 32.646573 -95.687531 +75141 5374 1164 29537659 1989237 11.405 0.768 32.638520 -96.695516 +75142 18982 7019 449172332 5723784 173.426 2.210 32.568801 -96.255103 +75143 14619 7381 460603249 63804556 177.840 24.635 32.366686 -96.245039 +75144 3291 1598 444885559 43643895 171.771 16.851 32.109406 -96.207611 +75146 17993 6929 85957909 537293 33.189 0.207 32.562744 -96.752161 +75147 6602 2765 242815942 6565653 93.752 2.535 32.436676 -96.079558 +75148 5842 3250 226646735 15818271 87.509 6.107 32.127470 -96.014230 +75149 56065 20056 41135821 170053 15.883 0.066 32.771707 -96.616717 +75150 58730 23905 33006607 31191 12.744 0.012 32.817309 -96.630277 +75152 4606 1638 105522562 869619 40.742 0.336 32.439873 -96.678049 +75153 605 235 60901171 3262864 23.514 1.260 32.158265 -96.329632 +75154 36041 12766 121759855 69589 47.012 0.027 32.521773 -96.807315 +75155 2579 975 98553488 1606313 38.052 0.620 32.229113 -96.475509 +75156 14580 8847 80995804 42082521 31.273 16.248 32.277759 -96.105332 +75157 310 139 4352078 78210 1.680 0.030 32.464756 -96.439520 +75158 4139 1602 227734419 2879700 87.929 1.112 32.462831 -96.402131 +75159 18339 5838 154899645 13325453 59.807 5.145 32.605800 -96.542308 +75160 23627 9109 310745346 2090041 119.979 0.807 32.758408 -96.301323 +75161 6165 2555 295125898 6841108 113.949 2.641 32.738471 -96.169166 +75163 2285 1548 87493184 15660755 33.781 6.047 32.166584 -96.118820 +75164 671 260 5905053 457020 2.280 0.176 33.066219 -96.309004 +75165 37966 14560 291845300 4388018 112.682 1.694 32.372201 -96.784944 +75166 3070 1089 34224383 8540578 13.214 3.298 33.012652 -96.454083 +75167 8436 2808 252730069 1482690 97.580 0.572 32.360829 -96.915523 +75169 14644 6540 554516084 36281240 214.100 14.008 32.703269 -95.994666 +75172 3956 1398 30195425 383625 11.659 0.148 32.605192 -96.674333 +75173 4353 1627 78887263 12670990 30.459 4.892 33.061789 -96.393331 +75180 23031 7772 19836095 44608 7.659 0.017 32.716601 -96.620085 +75181 25908 8180 45570309 190796 17.595 0.074 32.725663 -96.558988 +75182 5118 1705 45600198 5977070 17.606 2.308 32.800510 -96.547563 +75189 22406 7702 287468772 2617946 110.992 1.011 32.942050 -96.311660 +75201 9409 6926 3741301 0 1.445 0.000 32.787742 -96.799390 +75202 1666 1468 1830231 0 0.707 0.000 32.779274 -96.804786 +75203 15721 6456 12250768 63845 4.730 0.025 32.746823 -96.802681 +75204 26279 16495 6622718 0 2.557 0.000 32.802132 -96.788852 +75205 23061 9985 11265090 6592 4.349 0.003 32.835893 -96.795514 +75206 36248 22937 11023986 42978 4.256 0.017 32.831279 -96.771191 +75207 9648 770 9973729 106435 3.851 0.041 32.786796 -96.819971 +75208 30171 10853 15383328 13590 5.940 0.005 32.753141 -96.839613 +75209 13653 7076 9155181 22594 3.535 0.009 32.848310 -96.825474 +75210 7482 3344 5844199 394735 2.256 0.152 32.770635 -96.746362 +75211 73146 21528 45642456 2526137 17.623 0.975 32.736986 -96.907815 +75212 24884 7530 26650784 254485 10.290 0.098 32.781246 -96.878831 +75214 32950 17269 18742812 641800 7.237 0.248 32.828651 -96.745951 +75215 14648 7539 21793234 510346 8.414 0.197 32.750602 -96.756846 +75216 49416 19261 37875089 440119 14.624 0.170 32.711324 -96.781215 +75217 80324 23805 70767649 2504779 27.324 0.967 32.710306 -96.678549 +75218 21665 10842 18100090 45658 6.988 0.018 32.841987 -96.702574 +75219 22124 15075 5668971 0 2.189 0.000 32.811847 -96.812903 +75220 41891 15382 29314538 986470 11.318 0.381 32.868529 -96.876118 +75223 13947 4728 8941224 0 3.452 0.000 32.792244 -96.744003 +75224 34034 11084 15131592 28762 5.842 0.011 32.711405 -96.838591 +75225 20892 9500 12217853 33352 4.717 0.013 32.864887 -96.790359 +75226 3506 2013 2901206 0 1.120 0.000 32.782826 -96.776443 +75227 55029 17838 29517405 34557 11.397 0.013 32.767119 -96.689321 +75228 66551 26701 29529376 43526 11.401 0.017 32.824924 -96.679438 +75229 31571 11688 32456782 76000 12.532 0.029 32.893295 -96.864339 +75230 26934 13735 18765844 104733 7.246 0.040 32.902679 -96.793393 +75231 37052 17796 14598387 69158 5.636 0.027 32.873485 -96.747539 +75232 28682 10570 21411352 9339 8.267 0.004 32.660862 -96.840948 +75233 14043 4966 8965836 7493 3.462 0.003 32.703913 -96.871889 +75234 28794 11033 26772766 715354 10.337 0.276 32.923189 -96.891721 +75235 17177 7089 17404396 515313 6.720 0.199 32.832614 -96.849082 +75236 15949 6179 32341363 1126062 12.487 0.435 32.676238 -96.936565 +75237 17101 8204 17223678 0 6.650 0.000 32.665618 -96.873056 +75238 30483 13098 17033725 0 6.577 0.000 32.878497 -96.707819 +75240 24296 10793 9759368 21713 3.768 0.008 32.930338 -96.787496 +75241 27066 10137 69557122 420773 26.856 0.162 32.665447 -96.759451 +75243 55406 28843 22540592 27362 8.703 0.011 32.912633 -96.736637 +75244 13266 6103 11941841 6490 4.611 0.003 32.925283 -96.836800 +75246 2770 1415 1169833 2154 0.452 0.001 32.792496 -96.772763 +75247 468 255 16933910 94796 6.538 0.037 32.813576 -96.878036 +75248 33395 16409 19187212 80984 7.408 0.031 32.969699 -96.797334 +75249 13373 4420 11905773 43506 4.597 0.017 32.636077 -96.964622 +75251 2331 1816 1140995 11257 0.441 0.004 32.919789 -96.770948 +75252 24112 13082 13069572 27521 5.046 0.011 32.997373 -96.788213 +75253 18450 5959 35001924 2258347 13.514 0.872 32.674006 -96.609953 +75254 23253 12460 8596236 686 3.319 0.000 32.944622 -96.801792 +75270 0 0 14850 0 0.006 0.000 32.781197 -96.802229 +75287 49004 28942 14498752 46940 5.598 0.018 32.999309 -96.841688 +75390 0 0 13392 0 0.005 0.000 32.814164 -96.840650 +75401 18552 7506 269268549 2579635 103.965 0.996 33.189011 -96.108870 +75402 15920 7123 233879785 3198273 90.301 1.235 33.068454 -96.084274 +75407 14120 5282 128285310 40985156 49.531 15.824 33.151747 -96.483157 +75409 11831 4207 207767762 2622301 80.220 1.012 33.355461 -96.515553 +75410 4334 2083 213029863 30646838 82.251 11.833 32.790203 -95.631982 +75411 1118 575 203309399 15456191 78.498 5.968 33.857868 -95.649137 +75412 778 442 393461518 3811989 151.916 1.472 33.801868 -95.151966 +75413 305 131 3637331 0 1.404 0.000 33.441440 -96.179163 +75414 3136 1312 126137306 866543 48.702 0.335 33.623645 -96.427874 +75415 144 80 27221610 267210 10.510 0.103 33.462218 -95.757461 +75416 2893 1209 191692209 1938913 74.013 0.749 33.683869 -95.344733 +75417 2456 1273 417937886 16200230 161.367 6.255 33.439658 -95.140371 +75418 14411 5423 362001056 5203221 139.769 2.009 33.572107 -96.175218 +75420 1076 504 94792931 1235320 36.600 0.477 33.052795 -95.721230 +75421 1003 420 141567946 968062 54.660 0.374 33.661952 -95.731361 +75422 2883 1184 189183446 1089749 73.044 0.421 33.141400 -95.934195 +75423 2982 1204 210214831 941597 81.164 0.364 33.284385 -96.200389 +75424 3297 1353 173125329 1229651 66.844 0.475 33.321734 -96.378479 +75426 5301 2846 846699349 12341015 326.912 4.765 33.663063 -94.997258 +75428 10089 4502 222723122 3989480 85.994 1.540 33.271869 -95.917415 +75431 2052 862 152443874 1255528 58.859 0.485 33.014190 -95.460935 +75432 3323 1517 274173283 19465510 105.859 7.516 33.395031 -95.677824 +75433 2773 1238 269592087 2929158 104.090 1.131 33.098096 -95.803234 +75435 1185 591 173860141 315874 67.128 0.122 33.482646 -95.320088 +75436 1876 917 428198204 2657424 165.328 1.026 33.713765 -95.240033 +75437 1078 494 156003489 3221077 60.233 1.244 33.261225 -95.472420 +75438 972 440 118582964 357966 45.785 0.138 33.615539 -96.072156 +75439 868 395 36043840 127655 13.917 0.049 33.553520 -96.282897 +75440 6350 3155 297757615 28404811 114.965 10.967 32.880733 -95.749061 +75441 142 65 18240189 74690 7.043 0.029 33.427656 -95.642911 +75442 8858 3459 273111803 20066218 105.449 7.748 33.174219 -96.356004 +75446 3180 1530 456600342 3344473 176.294 1.291 33.615167 -95.900109 +75447 1080 492 138652142 2712293 53.534 1.047 33.776751 -96.109370 +75448 655 300 73418127 15990923 28.347 6.174 33.316269 -95.788968 +75449 1186 648 210753669 649493 81.372 0.251 33.420872 -95.945707 +75450 331 175 154245504 4308717 59.555 1.664 33.402250 -95.483203 +75451 1211 630 90208791 4843985 34.830 1.870 32.965772 -95.127063 +75452 4090 1710 197159583 1771843 76.124 0.684 33.402226 -96.238570 +75453 3255 1481 193830836 18242791 74.839 7.044 32.989261 -95.912936 +75454 5699 2012 49669107 440289 19.177 0.170 33.285118 -96.566247 +75455 28293 10305 764660841 30009413 295.237 11.587 33.216220 -94.979111 +75457 6522 3176 348771619 11177918 134.661 4.316 33.168595 -95.215150 +75459 4326 1726 205369298 985944 79.294 0.381 33.532620 -96.671495 +75460 23592 11186 234593160 13715805 90.577 5.296 33.655162 -95.605194 +75462 11350 4725 517790313 7622879 199.920 2.943 33.624551 -95.490113 +75468 888 393 130991045 1559823 50.576 0.602 33.502152 -95.402913 +75469 371 207 79760032 596665 30.796 0.230 33.421409 -95.810604 +75470 288 123 49771350 283407 19.217 0.109 33.576823 -95.809701 +75471 1424 578 124814819 955521 48.191 0.369 33.056806 -95.373518 +75472 3548 1707 164863548 46949425 63.654 18.127 32.884423 -95.869602 +75473 3855 1671 215647836 14631190 83.262 5.649 33.815579 -95.488005 +75474 14882 6721 277880681 61964728 107.290 23.925 32.924709 -96.113355 +75475 129 72 5331282 0 2.058 0.000 33.474888 -96.238237 +75476 1304 578 133973068 620500 51.727 0.240 33.708311 -96.240654 +75477 977 486 157011824 1958326 60.623 0.756 33.529909 -95.738073 +75478 932 409 138076659 2513223 53.312 0.970 33.176532 -95.358602 +75479 1849 779 131537921 3823922 50.787 1.476 33.617364 -96.345020 +75480 1646 1285 83866541 10602729 32.381 4.094 33.024442 -95.197098 +75481 395 193 179816065 3548930 69.427 1.370 33.318688 -95.368391 +75482 24385 10317 808903706 49563472 312.319 19.137 33.167979 -95.608219 +75486 2346 967 270514797 7101864 104.446 2.742 33.745236 -95.744327 +75487 1541 732 263403509 3516655 101.701 1.358 33.334851 -95.161500 +75488 1161 553 303057768 4072016 117.011 1.572 33.778716 -95.996823 +75489 993 400 3138151 0 1.212 0.000 33.519251 -96.484322 +75490 2211 913 75982780 199445 29.337 0.077 33.439125 -96.311485 +75491 4801 2073 247955597 718376 95.736 0.277 33.494577 -96.396115 +75492 516 275 110828841 130363 42.791 0.050 33.584371 -95.993541 +75493 611 192 13979405 1701130 5.397 0.657 33.146391 -95.108087 +75494 10862 5256 588388963 11823763 227.178 4.565 32.917192 -95.259860 +75495 7095 2789 174353356 759602 67.318 0.293 33.435660 -96.549913 +75496 3351 1510 320249972 629878 123.649 0.243 33.349615 -96.057939 +75497 3350 1882 167473119 47676499 64.662 18.408 32.925093 -95.568154 +75501 36298 14933 246569347 19014794 95.201 7.342 33.371870 -94.139816 +75503 24379 10491 204585003 6295028 78.991 2.431 33.511784 -94.133888 +75550 808 481 213402222 14109606 82.395 5.448 33.498221 -94.890845 +75551 11007 5016 427468850 17978376 165.047 6.941 33.119333 -94.220490 +75554 1806 941 424615120 3928785 163.945 1.517 33.553515 -94.780261 +75555 1611 769 289741939 498657 111.870 0.193 32.939200 -94.142287 +75556 1133 488 62218663 112493 24.023 0.043 33.157645 -94.062427 +75558 1636 671 130173989 1828383 50.260 0.706 33.241961 -94.857848 +75559 5568 2658 679826638 10715580 262.483 4.137 33.503694 -94.627358 +75560 1088 540 205926011 21550085 79.508 8.321 33.185033 -94.363930 +75561 5395 2412 128789611 3843777 49.726 1.484 33.516200 -94.282349 +75562 176 103 42887320 0 16.559 0.000 32.925399 -94.248447 +75563 4282 2136 418556779 2047174 161.606 0.790 33.002696 -94.383454 +75565 361 145 18089311 252986 6.984 0.098 32.929999 -94.076560 +75566 782 418 124054379 0 47.898 0.000 33.148176 -94.491749 +75567 4225 1758 175584552 44059077 67.794 17.011 33.310999 -94.311707 +75568 2876 1454 347323993 3061443 134.103 1.182 33.194056 -94.588989 +75569 2874 1245 7779199 29876 3.004 0.012 33.441822 -94.128587 +75570 11518 3963 350241397 3433178 135.229 1.326 33.459236 -94.438723 +75571 2846 1319 268381509 3504913 103.623 1.353 33.207019 -94.773630 +75572 3491 1739 186741194 12874751 72.101 4.971 33.225893 -94.127695 +75573 181 82 25774098 5676134 9.951 2.192 33.340712 -94.244427 +75574 1868 826 275171949 2884058 106.244 1.114 33.325004 -94.550659 +75601 15849 6473 24198185 6988 9.343 0.003 32.509075 -94.724433 +75602 23286 8383 126889389 4611780 48.992 1.781 32.449538 -94.666065 +75603 5456 2580 119697757 7609027 46.216 2.938 32.403050 -94.711174 +75604 29934 11973 121730425 986709 47.000 0.381 32.509164 -94.824416 +75605 27823 12405 205093224 529787 79.187 0.205 32.582292 -94.725315 +75630 2588 1590 234476594 27231267 90.532 10.514 32.867565 -94.549481 +75631 2787 1244 302956225 3302515 116.972 1.275 32.249664 -94.453070 +75633 13977 6296 825669439 22008149 318.793 8.497 32.130161 -94.254575 +75638 6036 2762 229381403 7183460 88.565 2.774 33.020475 -94.729699 +75639 3460 1560 441684409 1543474 170.535 0.596 32.293824 -94.169679 +75640 4652 1915 219206767 4943051 84.636 1.909 32.708417 -94.683181 +75641 223 105 8615481 0 3.326 0.000 32.378409 -94.575786 +75642 229 100 5817292 0 2.246 0.000 32.371536 -94.176599 +75643 2074 1055 176444900 6373831 68.126 2.461 32.019371 -94.361907 +75644 11444 5020 485476524 4432021 187.444 1.711 32.791087 -94.999833 +75645 9778 4092 375676658 4744943 145.050 1.832 32.688692 -94.871843 +75647 13196 5498 196735858 2916283 75.960 1.126 32.514636 -94.953266 +75650 8611 3335 321619158 6956716 124.178 2.686 32.513277 -94.548846 +75651 2189 924 151993024 566341 58.685 0.219 32.664407 -94.538189 +75652 16638 5584 455086060 11199664 175.710 4.324 32.239409 -94.728328 +75654 12417 5217 526086320 2759276 203.123 1.065 32.077773 -94.830130 +75656 4804 2066 277469692 1220043 107.132 0.471 33.011304 -94.572161 +75657 8246 4705 868216976 58199217 335.220 22.471 32.794973 -94.310306 +75661 2807 1835 329864950 24363168 127.362 9.407 32.631317 -94.171261 +75662 24536 9717 330418631 543635 127.575 0.210 32.384458 -94.870169 +75667 1021 532 218788490 698689 84.475 0.270 31.988175 -94.844274 +75668 1993 991 59017363 10300194 22.787 3.977 32.907075 -94.678637 +75669 606 371 163332806 3882181 63.063 1.499 32.038799 -94.575880 +75670 17290 6923 318488304 1162361 122.969 0.449 32.569858 -94.418658 +75672 17097 7557 614662902 1873527 237.323 0.723 32.468303 -94.299079 +75681 2562 1277 332577251 491786 128.409 0.190 31.925449 -94.704029 +75682 473 197 7965607 0 3.076 0.000 32.250339 -94.936535 +75683 3914 1792 145957495 17695532 56.355 6.832 32.826816 -94.737224 +75684 7548 2928 261608170 850090 101.007 0.328 32.277021 -94.937156 +75686 12985 5900 600629187 32471471 231.904 12.537 32.966409 -94.952884 +75691 4219 1755 240866550 18654891 92.999 7.203 32.311915 -94.552000 +75692 5098 2138 232499964 895814 89.769 0.346 32.470839 -94.118039 +75693 6869 2533 28434214 124207 10.979 0.048 32.533780 -94.860660 +75701 34373 14582 40707790 67190 15.717 0.026 32.321937 -95.302223 +75702 27069 9448 35336430 186165 13.643 0.072 32.362434 -95.315262 +75703 37166 17763 140461344 1335071 54.232 0.515 32.235066 -95.321028 +75704 8684 3499 173729709 1732539 67.077 0.669 32.413107 -95.443348 +75705 2168 861 71718340 643144 27.691 0.248 32.362631 -95.086688 +75706 8771 3199 194269005 2891667 75.008 1.116 32.469555 -95.307879 +75707 13711 5795 133865761 10104812 51.686 3.901 32.301523 -95.177964 +75708 7156 2640 141849528 1279130 54.768 0.494 32.418412 -95.213070 +75709 5062 2557 53673053 1770191 20.723 0.683 32.304235 -95.390814 +75750 3937 1635 121266162 4108292 46.821 1.586 32.267540 -95.077715 +75751 17253 7209 417075196 10240180 161.034 3.954 32.094348 -95.906047 +75752 6986 3338 383276144 10653841 147.984 4.113 32.244008 -95.807608 +75754 5783 2470 321683055 5213626 124.203 2.013 32.427978 -95.661983 +75755 5719 2405 270372390 4059962 104.391 1.568 32.640640 -95.072192 +75756 4002 1682 177553976 843517 68.554 0.326 32.303020 -95.601475 +75757 10022 4438 226065485 12569067 87.284 4.853 32.112740 -95.347503 +75758 9072 4365 127876503 46383249 49.373 17.909 32.271436 -95.521442 +75759 141 79 5818740 0 2.247 0.000 32.035939 -95.418796 +75760 2614 1392 337106643 354035 130.158 0.137 31.796249 -94.854340 +75762 12466 5229 112777825 19214497 43.544 7.419 32.218325 -95.413415 +75763 6005 2916 279176713 18958123 107.791 7.320 32.042754 -95.523388 +75764 233 95 3272996 0 1.264 0.000 31.895427 -95.143719 +75765 7607 4119 264531281 8794588 102.136 3.396 32.642043 -95.234859 +75766 26388 10762 790806004 13287537 305.332 5.130 31.945137 -95.256980 +75770 2776 1284 312774806 8493510 120.763 3.279 32.158557 -95.643712 +75771 18361 7564 372937963 7322486 143.992 2.827 32.537897 -95.435716 +75773 12791 5848 462001029 13119767 178.380 5.066 32.681453 -95.447702 +75778 3254 1730 145804201 2813747 56.295 1.086 32.300926 -95.709837 +75779 122 57 2228456 9976 0.860 0.004 31.863226 -95.484612 +75780 312 90 3255397 0 1.257 0.000 31.991020 -95.091844 +75783 7219 3714 315474604 22682264 121.805 8.758 32.816432 -95.424745 +75784 658 332 99967500 70026 38.598 0.027 31.872135 -94.974153 +75785 11263 4190 692794769 593540 267.490 0.229 31.779325 -95.192670 +75788 126 89 8815886 0 3.404 0.000 31.825939 -94.925873 +75789 7593 3230 489306649 4345462 188.922 1.678 32.111861 -95.100374 +75790 4203 1697 95196621 1075443 36.756 0.415 32.535169 -95.643977 +75791 13125 4952 99816806 6835480 38.539 2.639 32.221577 -95.220644 +75792 3518 1538 244176217 3634487 94.277 1.403 32.482238 -95.106353 +75801 16799 7556 555807428 6484251 214.598 2.504 31.734520 -95.531381 +75803 22397 6930 861013281 11471331 332.439 4.429 31.881777 -95.679494 +75831 5386 2706 660836163 3481782 255.150 1.344 31.473728 -96.009175 +75832 66 31 43135114 1213095 16.655 0.468 31.932010 -95.980743 +75833 3324 2070 635015862 1161937 245.181 0.449 31.267759 -95.841230 +75835 12012 6007 1165487021 4346183 449.997 1.678 31.284891 -95.490625 +75838 666 364 181152773 682905 69.943 0.264 31.478900 -96.229757 +75839 5069 2272 381863557 3928555 147.438 1.517 31.606693 -95.583340 +75840 7076 3160 707875153 11494201 273.312 4.438 31.782559 -96.093621 +75844 5718 3463 931352433 8290993 359.597 3.201 31.513801 -95.437616 +75845 3259 1736 820386536 808566 316.753 0.312 31.087456 -95.076849 +75846 2718 1559 377433456 16228511 145.728 6.266 31.329520 -96.152778 +75847 1859 1071 627616755 579727 242.324 0.224 31.356209 -95.152898 +75848 92 48 513052 0 0.198 0.000 31.765240 -96.329922 +75849 75 37 4936108 0 1.906 0.000 31.417425 -95.481652 +75850 671 419 184844413 369651 71.369 0.143 31.136452 -95.934344 +75851 5050 1432 671818059 2710282 259.390 1.046 31.092367 -95.499937 +75852 3762 768 446089377 9770361 172.236 3.772 30.959521 -95.715509 +75853 963 487 193209705 2248897 74.599 0.868 31.946003 -95.813468 +75855 2369 1538 704585609 5706942 272.042 2.203 31.557267 -95.863721 +75856 196 139 66055072 0 25.504 0.000 31.188898 -95.255739 +75858 43 27 1190405 0 0.460 0.000 31.390774 -95.126653 +75859 1923 1457 305734458 48532803 118.045 18.739 31.894080 -96.236861 +75860 6644 2508 439372223 1378965 169.643 0.532 31.611350 -96.238051 +75861 9017 835 296635610 5181399 114.532 2.001 31.851579 -95.888459 +75862 10091 6313 639238984 54337141 246.812 20.980 30.964255 -95.326074 +75901 29036 11430 418207583 9440517 161.471 3.645 31.301706 -94.641414 +75904 34004 13921 368246251 4069680 142.181 1.571 31.340783 -94.826170 +75925 4179 1908 612743654 1836588 236.582 0.709 31.612950 -95.062090 +75926 1070 620 304668291 639273 117.633 0.247 31.248085 -94.969099 +75928 1411 679 233969231 1731604 90.336 0.669 30.671395 -93.711340 +75929 1599 1471 343422565 116365552 132.596 44.929 31.245162 -94.175514 +75930 2023 1241 349067325 38509660 134.776 14.869 31.322048 -94.032615 +75931 2631 1962 145092323 52700250 56.020 20.348 31.113664 -94.021385 +75932 1437 1234 324780341 9584952 125.398 3.701 31.056147 -93.615655 +75933 1599 784 192592794 685384 74.360 0.265 30.553812 -93.812696 +75934 99 100 19139315 276156 7.390 0.107 30.893277 -94.755703 +75935 13685 5914 917623359 8008762 354.296 3.092 31.732513 -94.191290 +75936 889 515 325242518 0 125.577 0.000 30.952076 -94.579622 +75937 994 482 174073246 3417209 67.210 1.319 31.465312 -94.367277 +75938 2608 1607 481694771 13640974 185.983 5.267 30.946401 -94.357637 +75939 3992 1838 625456789 666570 241.490 0.257 31.013779 -94.797420 +75941 9105 2990 219675569 3627126 84.817 1.400 31.186933 -94.758734 +75942 115 60 1069171 23822 0.413 0.009 30.815166 -94.430587 +75943 1262 580 166177295 2932656 64.161 1.132 31.642378 -94.907231 +75944 1301 783 103102899 54076666 39.808 20.879 31.325741 -94.385215 +75946 3578 1709 359715746 4101137 138.887 1.583 31.819320 -94.520617 +75948 6281 5241 634309908 178273257 244.908 68.832 31.307588 -93.784102 +75949 7976 3599 511805215 55313161 197.609 21.357 31.230511 -94.509986 +75951 16134 7536 1018060996 38038737 393.076 14.687 30.937323 -94.056005 +75954 3280 1574 270658212 39468969 104.502 15.239 31.904341 -94.048094 +75956 7623 3463 629377584 3246300 243.004 1.253 30.676371 -93.983158 +75959 923 752 120515406 19837257 46.531 7.659 31.512307 -93.861732 +75960 913 408 111272339 48419 42.962 0.019 30.912856 -94.865672 +75961 14910 6970 717820123 17140868 277.152 6.618 31.558383 -94.504452 +75962 3029 0 687981 0 0.266 0.000 31.619873 -94.647080 +75964 20097 7840 600437693 7210691 231.830 2.784 31.631742 -94.740721 +75965 17591 8152 191437608 1102698 73.914 0.426 31.723329 -94.628596 +75966 5371 2325 701508679 2133532 270.854 0.824 30.826908 -93.714056 +75968 1766 847 190123496 3762911 73.407 1.453 31.252292 -93.953926 +75969 4116 1632 222461472 2234405 85.893 0.863 31.445713 -94.887599 +75972 6620 3379 934814185 4620935 360.934 1.784 31.485703 -94.130647 +75973 2599 1642 463982552 58920791 179.145 22.749 31.711246 -93.943111 +75974 3126 1331 266746917 5250857 102.992 2.027 31.958364 -94.239838 +75975 3699 1865 371574994 2341670 143.466 0.904 31.897138 -94.413785 +75976 827 369 58833160 48479 22.716 0.019 31.514484 -94.924113 +75977 750 389 473893091 320710 182.971 0.124 31.066591 -93.782800 +75978 144 49 1421715 0 0.549 0.000 31.509051 -94.527216 +75979 11423 5242 754234839 11795455 291.212 4.554 30.748559 -94.389120 +75980 2836 2182 418625552 98967563 161.632 38.212 31.138382 -94.375214 +76001 30460 10290 26749398 9539 10.328 0.004 32.635563 -97.148829 +76002 30269 9252 18625959 134989 7.192 0.052 32.622321 -97.093204 +76006 22639 13132 19586597 123807 7.562 0.048 32.784952 -97.100052 +76008 13602 4905 191977557 1102868 74.123 0.426 32.695708 -97.631482 +76009 19759 7397 254342829 4525031 98.202 1.747 32.414944 -97.196367 +76010 55706 19819 23145577 0 8.937 0.000 32.722844 -97.080239 +76011 21594 11417 20752280 115994 8.013 0.045 32.754272 -97.083196 +76012 25689 11038 21175685 208246 8.176 0.080 32.755130 -97.139242 +76013 30680 14378 23214593 1305167 8.963 0.504 32.719328 -97.155028 +76014 34072 11790 14933003 22911 5.766 0.009 32.692105 -97.086517 +76015 16658 7190 11095687 4383 4.284 0.002 32.692186 -97.133304 +76016 30852 11926 22948330 2572818 8.860 0.993 32.689222 -97.189130 +76017 44724 17688 26920311 62090 10.394 0.024 32.662513 -97.164024 +76018 26938 8994 19820006 18440 7.653 0.007 32.665076 -97.096815 +76020 27270 11451 170951261 13352259 66.005 5.155 32.900196 -97.561179 +76021 33673 16186 18755360 27046 7.241 0.010 32.852971 -97.130443 +76022 13212 6070 6917629 0 2.671 0.000 32.830658 -97.145157 +76023 5832 2421 145601651 25022 56.217 0.010 33.041942 -97.597083 +76028 59744 22307 199789133 358091 77.139 0.138 32.532666 -97.306547 +76031 17759 6427 187711724 2428091 72.476 0.937 32.346162 -97.328078 +76033 24819 10177 424765167 11817265 164.003 4.563 32.276663 -97.508356 +76034 22748 8148 33818712 268008 13.057 0.103 32.891787 -97.149641 +76035 1622 720 174457559 198204 67.358 0.077 32.562070 -97.631011 +76036 22352 8283 119049171 179814 45.965 0.069 32.581858 -97.420575 +76039 32925 15514 16887348 34169 6.520 0.013 32.860285 -97.086028 +76040 27524 12627 29459547 1094343 11.374 0.423 32.814107 -97.091323 +76041 434 167 30608718 284768 11.818 0.110 32.237512 -96.842324 +76043 7071 3038 355714360 10381161 137.342 4.008 32.208483 -97.795247 +76044 3866 1491 261518713 1957009 100.973 0.756 32.425936 -97.539874 +76048 21989 11384 280982506 15226432 108.488 5.879 32.421697 -97.811051 +76049 25130 11619 261518560 18066404 100.973 6.975 32.459828 -97.706694 +76050 5875 2300 316167616 4494887 122.073 1.735 32.280923 -97.160760 +76051 46320 19674 95386641 11473885 36.829 4.430 32.925765 -97.071545 +76052 15995 5318 117351765 296257 45.310 0.114 32.986624 -97.377255 +76053 28421 11951 20815396 162425 8.037 0.063 32.817200 -97.180586 +76054 11764 4734 9846790 9036 3.802 0.003 32.859410 -97.178636 +76055 3084 1168 230664781 1625570 89.060 0.628 32.162639 -97.154900 +76058 17123 6276 140903501 1094346 54.403 0.423 32.474087 -97.422013 +76059 4881 1757 7106415 37929 2.744 0.015 32.392588 -97.327540 +76060 6764 2573 19165416 80101 7.400 0.031 32.639649 -97.217476 +76061 152 77 3916006 0 1.512 0.000 32.503973 -97.188374 +76063 61361 20899 134276857 529929 51.845 0.205 32.570725 -97.144834 +76064 1883 634 77355908 1067110 29.867 0.412 32.302367 -97.037219 +76065 28986 10192 254784166 3426398 98.373 1.323 32.469267 -96.990710 +76066 3142 1463 222939181 3638194 86.077 1.405 32.704456 -97.993148 +76067 22117 8702 451706204 6088175 174.405 2.351 32.799602 -98.126806 +76070 752 352 92846985 2764851 35.848 1.068 32.266222 -97.655141 +76071 3320 1307 19543814 1098348 7.546 0.424 33.000850 -97.444409 +76073 5327 2088 218077574 413380 84.200 0.160 33.098727 -97.723422 +76077 590 239 18931154 734582 7.309 0.284 32.278261 -97.691539 +76078 8572 3200 174015988 544900 67.188 0.210 33.093365 -97.462793 +76082 17748 7072 260252245 407053 100.484 0.157 32.970044 -97.733748 +76084 8327 2569 131641090 758158 50.827 0.293 32.426322 -97.090328 +76085 8787 3452 165364427 533009 63.848 0.206 32.853068 -97.696600 +76086 20196 8654 38014827 48094 14.678 0.019 32.754964 -97.791085 +76087 24746 10354 482861972 10024968 186.434 3.871 32.682733 -97.782298 +76088 11499 4732 410845781 2588050 158.628 0.999 32.848403 -97.903219 +76092 26669 8529 58418722 7910979 22.556 3.054 32.959922 -97.148582 +76093 2095 864 95916995 764371 37.034 0.295 32.210496 -97.392571 +76102 8111 3792 11174528 505930 4.315 0.195 32.759104 -97.329756 +76103 14572 5754 14124915 86527 5.454 0.033 32.749099 -97.272957 +76104 17446 7377 15176131 0 5.860 0.000 32.728688 -97.317801 +76105 22194 7431 14428853 0 5.571 0.000 32.724047 -97.269432 +76106 35389 10386 37680075 123007 14.548 0.047 32.816503 -97.359532 +76107 25917 14399 27908878 337297 10.776 0.130 32.742058 -97.381730 +76108 38227 15144 120923330 610034 46.689 0.236 32.787009 -97.523856 +76109 21710 11045 21072148 26703 8.136 0.010 32.700650 -97.386965 +76110 30434 11027 14854838 119785 5.735 0.046 32.707831 -97.338265 +76111 21685 7362 21379160 326272 8.255 0.126 32.778499 -97.300112 +76112 38993 18539 29338361 811464 11.328 0.313 32.747426 -97.217658 +76114 24741 9789 23629790 149221 9.124 0.058 32.774494 -97.402276 +76115 20696 6240 12072075 43418 4.661 0.017 32.678500 -97.330511 +76116 46746 23777 31508794 61044 12.166 0.024 32.720723 -97.447033 +76117 30645 11943 27935149 278616 10.786 0.108 32.803436 -97.267376 +76118 13866 5498 19607185 450706 7.570 0.174 32.800434 -97.192762 +76119 42761 15097 41951817 3643456 16.198 1.407 32.691147 -97.262625 +76120 15283 7369 25257560 1165699 9.752 0.450 32.775915 -97.180963 +76123 29722 9626 20983155 81703 8.102 0.032 32.619833 -97.393562 +76126 19395 8414 164631008 15107913 63.564 5.833 32.635870 -97.503481 +76127 2003 59 5634309 41533 2.175 0.016 32.775409 -97.435599 +76129 2833 2 284932 0 0.110 0.000 32.708639 -97.363495 +76131 28374 9413 39116020 192724 15.103 0.074 32.881807 -97.345955 +76132 24709 13297 18973583 62164 7.326 0.024 32.667305 -97.416615 +76133 48394 19989 23925438 16708 9.238 0.006 32.652918 -97.379538 +76134 23704 8700 20638198 1351 7.968 0.001 32.639029 -97.335106 +76135 20684 8511 67254735 18683504 25.967 7.214 32.847326 -97.482178 +76137 54911 20980 35056042 220158 13.535 0.085 32.859685 -97.291523 +76140 26340 9125 72173017 358210 27.866 0.138 32.620058 -97.274934 +76148 23331 8346 12081159 2743 4.665 0.001 32.868421 -97.252132 +76155 3115 2327 8971300 0 3.464 0.000 32.823978 -97.048681 +76164 16748 5162 10186546 49850 3.933 0.019 32.781100 -97.354585 +76177 4891 2187 37415730 244606 14.446 0.094 32.975361 -97.310486 +76179 48058 17374 139911947 17044763 54.020 6.581 32.913522 -97.433835 +76180 33444 15098 24388871 101024 9.417 0.039 32.840011 -97.225295 +76182 28209 10681 22749837 1302 8.784 0.001 32.886590 -97.208384 +76201 27107 11562 14454499 81985 5.581 0.032 33.220974 -97.146038 +76205 18510 7793 21911088 149534 8.460 0.058 33.192632 -97.129266 +76207 10579 4717 95302298 724928 36.796 0.280 33.227695 -97.183844 +76208 19782 7594 70184954 17554914 27.099 6.778 33.208811 -97.055133 +76209 24018 9999 16948105 0 6.544 0.000 33.231569 -97.109882 +76210 39556 14079 41602434 1202160 16.063 0.464 33.149467 -97.096016 +76225 3156 1330 258158136 388849 99.675 0.150 33.372433 -97.669953 +76226 18419 6352 123484414 2009410 47.678 0.776 33.114675 -97.173782 +76227 22141 8009 205794391 11461370 79.458 4.425 33.273449 -96.990119 +76228 1119 581 478955790 3938316 184.926 1.521 33.616916 -98.063303 +76230 9711 4894 980935495 12043756 378.741 4.650 33.520572 -97.956120 +76233 3235 1367 163065944 5698116 62.960 2.200 33.537706 -96.906575 +76234 15587 6162 804831021 2290409 310.747 0.884 33.276319 -97.514178 +76238 431 164 68595896 64913 26.485 0.025 33.479016 -97.351845 +76239 1087 601 296423885 1289817 114.450 0.498 33.516403 -97.540249 +76240 26120 11378 956845953 8142952 369.440 3.144 33.661583 -97.176350 +76244 60388 20228 44503766 204653 17.183 0.079 32.928037 -97.283914 +76245 1780 1398 58597333 13320498 22.625 5.143 33.830932 -96.839764 +76247 13098 4498 186088036 786273 71.849 0.304 33.099993 -97.340499 +76248 34647 12251 37376460 102171 14.431 0.039 32.924009 -97.225148 +76249 7194 2762 173956459 3136301 67.165 1.211 33.278823 -97.302309 +76250 937 354 22833165 0 8.816 0.000 33.630167 -97.235755 +76251 731 352 137318887 630275 53.019 0.243 33.626904 -97.687873 +76252 2863 1200 479214749 1200864 185.026 0.464 33.682081 -97.382855 +76253 230 103 4006038 0 1.547 0.000 33.615855 -97.310834 +76255 5411 2980 679021465 6091718 262.172 2.352 33.820785 -97.734876 +76258 6659 2588 231270349 2936261 89.294 1.134 33.371246 -96.933242 +76259 4618 1682 146724738 1647909 56.651 0.636 33.198704 -97.311628 +76261 233 115 174910224 268690 67.533 0.104 33.793074 -97.963802 +76262 27648 10894 117366791 2715084 45.316 1.048 33.009335 -97.226720 +76263 44 29 22250808 153410 8.591 0.059 33.471617 -97.445189 +76264 1412 670 92335758 6264332 35.651 2.419 33.737974 -96.839543 +76265 1893 986 505490945 1741933 195.171 0.673 33.741367 -97.535329 +76266 13495 5321 311093966 28046729 120.114 10.829 33.373051 -97.213359 +76268 250 109 1495139 0 0.577 0.000 33.627623 -96.767394 +76270 1853 908 261836197 780440 101.096 0.301 33.455991 -97.751818 +76271 1352 659 102373150 33704730 39.526 13.013 33.464643 -96.892724 +76272 4745 2010 256211911 50023519 98.924 19.314 33.458028 -97.128552 +76273 9135 3973 528068059 21598274 203.888 8.339 33.743893 -96.936121 +76301 16540 8297 30390158 0 11.734 0.000 33.905544 -98.479881 +76302 13206 5630 21390512 0 8.259 0.000 33.864515 -98.491046 +76305 4746 2093 567356958 2113611 219.058 0.816 34.004783 -98.388757 +76306 15991 7067 33838563 61486 13.065 0.024 33.943784 -98.523064 +76308 19677 9348 23185390 3708044 8.952 1.432 33.852942 -98.540730 +76309 13862 6460 14399963 0 5.560 0.000 33.894941 -98.543670 +76310 17989 7747 465637930 24888388 179.784 9.609 33.799085 -98.509840 +76311 7535 634 4313491 0 1.665 0.000 33.969523 -98.509016 +76351 2035 992 496649951 4385995 191.758 1.693 33.558131 -98.695247 +76354 11270 4866 203252519 250436 78.476 0.097 34.103273 -98.622467 +76357 712 328 171874157 985977 66.361 0.381 34.081265 -98.183817 +76360 3502 1826 736327802 6181961 284.298 2.387 33.963477 -98.961142 +76363 256 165 158795584 35526 61.311 0.014 33.476220 -99.544699 +76364 193 104 177003889 419459 68.342 0.162 34.042817 -98.992952 +76365 4831 2450 1378732114 40185084 532.331 15.516 33.758490 -98.202251 +76366 2317 1101 611581570 17264371 236.133 6.666 33.723849 -98.783672 +76367 13045 4122 513842381 8237564 198.396 3.181 33.973297 -98.721096 +76370 299 190 277233358 11093850 107.040 4.283 33.527396 -98.884782 +76371 1606 863 270917197 101904 104.602 0.039 33.484962 -99.642707 +76372 974 540 700814973 5400682 270.586 2.085 33.250203 -98.925556 +76373 162 72 75322554 60195 29.082 0.023 34.131688 -99.106624 +76374 4162 2026 730939629 7785737 282.217 3.006 33.358656 -98.740056 +76377 802 393 78722272 640404 30.395 0.247 34.008308 -98.259320 +76379 591 221 112421777 7568776 43.406 2.922 33.668251 -98.489098 +76380 3820 2737 2464432706 87051044 951.523 33.611 33.621145 -99.243765 +76384 12991 6050 1233536026 5261212 476.271 2.031 34.160890 -99.342853 +76388 203 124 264137116 165023 101.984 0.064 33.322836 -99.642126 +76389 1329 520 515265783 10157866 198.945 3.922 33.512628 -98.457627 +76401 25702 11754 1067962387 7322300 412.343 2.827 32.282235 -98.196717 +76402 847 0 230390 0 0.089 0.000 32.216328 -98.217166 +76424 8992 4402 1333963994 60775559 515.046 23.466 32.804272 -98.892466 +76426 11302 4456 340733604 38892623 131.558 15.017 33.166041 -97.845101 +76427 804 398 146451155 1605235 56.545 0.620 33.158189 -98.377664 +76429 258 233 275958819 7676406 106.548 2.964 32.759373 -98.666449 +76430 2532 1298 931476774 2590431 359.645 1.000 32.790131 -99.241840 +76431 3384 1657 307478538 3369731 118.718 1.301 33.315883 -97.857678 +76432 1370 665 247490480 517693 95.557 0.200 31.842565 -98.805134 +76433 1416 718 311076433 1047556 120.107 0.404 32.315739 -98.022849 +76435 612 382 188278741 463052 72.695 0.179 32.242637 -98.857140 +76436 212 145 117324129 31784 45.299 0.012 31.863402 -98.228103 +76437 5721 3093 1048821531 2910161 404.952 1.124 32.401501 -99.035195 +76442 7545 3779 1157090573 15495075 446.755 5.983 31.891101 -98.614553 +76443 1897 1057 366381384 1041571 141.461 0.402 32.133830 -99.213349 +76444 3635 1846 376310056 3560716 145.294 1.375 32.124074 -98.573858 +76445 407 235 175664970 404485 67.825 0.156 32.298594 -98.552257 +76446 9000 4121 1086420183 10298678 419.469 3.976 32.075301 -98.348620 +76448 5628 3001 326833331 8287541 126.191 3.200 32.399119 -98.801051 +76449 2434 2839 536396085 42582137 207.104 16.441 32.904994 -98.324274 +76450 13258 6348 1194279534 39419244 461.114 15.220 33.057759 -98.622222 +76452 75 29 23124261 34476 8.928 0.013 31.747542 -98.364392 +76453 1125 797 336425093 10397452 129.894 4.014 32.587603 -98.333604 +76454 1688 992 355173849 553870 137.133 0.214 32.211850 -98.735794 +76455 1014 543 233986283 21289 90.343 0.008 31.813332 -98.384478 +76457 3960 2030 819762990 3034752 316.512 1.172 31.944662 -98.027972 +76458 6261 2604 1461119393 15488285 564.141 5.980 33.219585 -98.188154 +76459 146 86 58206224 279780 22.474 0.108 33.276426 -98.382374 +76460 421 224 242813412 1336669 93.751 0.516 33.310107 -98.500474 +76462 2982 1387 434795733 2287883 167.876 0.883 32.527015 -98.008849 +76463 481 293 196299847 1767982 75.792 0.683 32.455408 -98.418168 +76464 506 319 481321107 447535 185.839 0.173 32.556004 -99.164736 +76466 332 168 15694195 0 6.060 0.000 32.433309 -98.737420 +76469 96 46 37017747 463345 14.293 0.179 32.341152 -99.198272 +76470 3238 1818 740057390 1569113 285.738 0.606 32.495875 -98.664020 +76471 1906 1173 453753090 841854 175.195 0.325 32.116953 -98.985140 +76472 1499 695 261323403 2674266 100.898 1.033 32.600503 -98.172760 +76474 281 179 93043662 202049 35.924 0.078 31.976523 -98.793857 +76475 977 785 612928650 7133488 236.653 2.754 32.665466 -98.494478 +76476 2637 1139 266040449 4272334 102.719 1.650 32.362649 -97.924354 +76481 208 162 160167375 2491612 61.841 0.962 32.990420 -98.745490 +76483 1063 690 1646654086 5417183 635.777 2.092 33.187712 -99.265034 +76484 1147 611 275454136 3981682 106.353 1.537 32.764096 -98.276879 +76486 1375 659 267400618 2659213 103.244 1.027 33.014983 -98.053654 +76487 2507 1117 231634479 702009 89.435 0.271 32.972780 -97.889781 +76490 91 38 1924865 0 0.743 0.000 32.945471 -98.018901 +76491 459 276 327794112 791439 126.562 0.306 33.036872 -99.048807 +76501 16897 7082 302603143 2020926 116.836 0.780 31.075303 -97.252433 +76502 31545 13475 161250624 6406153 62.259 2.473 31.103931 -97.412020 +76504 24268 10636 70118704 375696 27.073 0.145 31.137885 -97.373626 +76508 0 0 149411 0 0.058 0.000 31.077568 -97.364064 +76511 3317 945 203078991 1122818 78.409 0.434 30.801782 -97.424411 +76513 34172 13052 273185805 32794655 105.478 12.662 31.051688 -97.499909 +76518 1581 714 301767769 966430 116.513 0.373 30.852653 -97.148898 +76519 626 287 132420522 557621 51.128 0.215 31.020832 -97.120690 +76520 8413 3796 780282251 2655488 301.269 1.025 30.891129 -96.907601 +76522 35534 14536 297396342 131108 114.825 0.051 31.219045 -97.968224 +76523 18 6 1570856 28902 0.607 0.011 30.789254 -97.291628 +76524 2867 1115 174111092 1068067 67.225 0.412 31.268644 -97.202495 +76525 1062 692 496517896 170218 191.707 0.066 31.491738 -98.136304 +76527 4058 1628 332463553 1099019 128.365 0.424 30.841795 -97.809699 +76528 16974 6894 1306135232 18332599 504.302 7.078 31.417256 -97.755604 +76530 2540 1100 241929847 13273057 93.410 5.125 30.710857 -97.413885 +76531 4978 2591 989523030 638065 382.057 0.246 31.686814 -98.187029 +76534 2615 1077 228975931 2037475 88.408 0.787 30.884326 -97.378809 +76537 3870 1481 139245932 538029 53.763 0.208 30.817401 -97.602900 +76538 761 414 388532281 181748 150.013 0.070 31.647684 -97.895645 +76539 7841 3212 355826507 681568 137.385 0.263 31.088158 -98.010690 +76541 19206 10246 12305792 26522 4.751 0.010 31.112884 -97.729602 +76542 40025 15578 208671526 2788181 80.569 1.077 31.009641 -97.746417 +76543 30430 13389 125849014 889954 48.591 0.344 31.149208 -97.633196 +76544 29943 6722 79244900 166459 30.597 0.064 31.143642 -97.761047 +76548 26344 10214 40178145 4163609 15.513 1.608 31.050856 -97.644625 +76549 44490 16945 198483923 1216808 76.635 0.470 31.017077 -97.833092 +76550 11586 5287 1376745602 4808727 531.564 1.857 31.102377 -98.259340 +76554 2104 806 22530598 233916 8.699 0.090 30.964981 -97.372768 +76556 1461 701 255406307 766884 98.613 0.296 30.700385 -96.830550 +76557 5178 2173 351406660 17488883 135.679 6.752 31.285086 -97.390061 +76559 5051 1889 17391911 251150 6.715 0.097 31.075955 -97.604369 +76561 962 421 116833690 2432401 45.110 0.939 31.409518 -97.531134 +76565 74 58 71601330 0 27.645 0.000 31.644769 -98.350878 +76566 258 163 141155263 52301 54.500 0.020 31.553908 -98.049081 +76567 8984 4098 501363818 2433523 193.578 0.940 30.649547 -97.006126 +76569 2498 994 210970071 2438215 81.456 0.941 30.940183 -97.227023 +76570 2572 1276 465742936 3763099 179.824 1.453 31.082267 -96.953514 +76571 6790 2874 306092196 11794773 118.183 4.554 30.925736 -97.598650 +76573 26 17 2314873 0 0.894 0.000 30.818633 -97.502485 +76574 17661 7089 368798460 8385020 142.394 3.237 30.579327 -97.388622 +76577 3046 1382 391451894 3403358 151.140 1.314 30.627232 -97.170250 +76578 1766 717 194389725 2510422 75.054 0.969 30.535409 -97.237170 +76579 4258 1662 148239623 1319166 57.236 0.509 31.195905 -97.265253 +76596 1274 0 781894 10812 0.302 0.004 31.476579 -97.728745 +76597 2882 0 1255390 0 0.485 0.000 31.486416 -97.706884 +76598 523 0 99874 0 0.039 0.000 31.475320 -97.735455 +76599 1956 0 1296064 0 0.500 0.000 31.467983 -97.735272 +76621 1037 456 188307659 1058404 72.706 0.409 31.881728 -97.085410 +76622 1015 461 136535039 1610122 52.716 0.622 31.816191 -97.243292 +76623 242 84 13132338 69989 5.070 0.027 32.211123 -96.752827 +76624 2231 946 166399046 1931929 64.247 0.746 31.661047 -96.955129 +76626 1563 663 105937656 1059929 40.903 0.409 32.122927 -96.723661 +76627 1601 674 229345847 4840392 88.551 1.869 32.108512 -97.395815 +76628 111 48 24011569 109726 9.271 0.042 32.030037 -96.947320 +76629 1989 1117 366563301 5035180 141.531 1.944 31.149750 -96.651785 +76630 1840 691 37327759 273889 14.412 0.106 31.340747 -97.211141 +76631 522 204 105911975 737341 40.893 0.285 31.975524 -96.977168 +76632 1778 715 155557246 1809831 60.061 0.699 31.303129 -97.060171 +76633 4973 1878 125027604 1690775 48.273 0.653 31.693947 -97.325271 +76634 7093 3827 732585464 12871932 282.853 4.970 31.817062 -97.546568 +76635 1341 566 273254982 4556996 105.504 1.759 31.716290 -96.661428 +76636 1497 676 112330433 933957 43.371 0.361 32.171095 -97.291180 +76637 536 300 102742805 396174 39.669 0.153 31.769003 -97.804426 +76638 2837 1137 214098130 445810 82.664 0.172 31.549983 -97.442650 +76639 1584 811 237923742 6662990 91.863 2.573 31.866953 -96.655804 +76640 3005 1299 73554705 891587 28.400 0.344 31.696619 -97.073707 +76641 1674 762 194432346 8624182 75.071 3.330 32.038687 -96.807932 +76642 7057 2967 661691156 36156374 255.480 13.960 31.503056 -96.520013 +76643 13554 5160 20687245 48825 7.987 0.019 31.453501 -97.195339 +76645 11039 4590 433735972 10077371 167.466 3.891 32.022461 -97.133361 +76648 2302 1184 267066799 8006218 103.115 3.091 31.848506 -96.807276 +76649 790 487 358289488 3714164 138.336 1.434 32.001481 -97.882600 +76650 104 52 27013528 151666 10.430 0.059 31.980079 -96.863626 +76651 3300 1347 267174501 2756130 103.157 1.064 32.177712 -96.851180 +76652 1087 639 225632530 5935825 87.117 2.292 32.117538 -97.575601 +76653 1082 607 385003385 5798517 148.651 2.239 31.299588 -96.608952 +76654 151 60 1662778 13740 0.642 0.005 31.734146 -97.010835 +76655 7831 2946 197753043 1137223 76.353 0.439 31.401145 -97.183101 +76656 2276 1046 299768080 2664391 115.741 1.029 31.185096 -97.043667 +76657 9307 3631 275330211 234685 106.306 0.091 31.445540 -97.382609 +76660 506 245 92002146 819114 35.522 0.316 31.924604 -96.904503 +76661 8708 3390 415781904 6660721 160.534 2.572 31.319912 -96.847975 +76664 3514 1502 349764966 3090826 135.045 1.193 31.560995 -96.802449 +76665 2526 1242 411999839 3981022 159.074 1.537 31.916215 -97.710123 +76666 244 123 42418266 472669 16.378 0.182 32.043976 -96.914580 +76667 11313 4740 372970090 8016495 144.005 3.095 31.654919 -96.468137 +76670 1377 571 181446552 1844103 70.057 0.712 32.137513 -96.992470 +76671 1777 1186 206181616 19045582 79.607 7.354 31.988989 -97.529760 +76673 1187 542 238841731 3300774 92.217 1.274 31.751192 -96.891872 +76676 413 188 55577835 303237 21.459 0.117 31.863748 -96.951488 +76678 263 131 97519497 747573 37.652 0.289 31.661096 -96.760043 +76679 1432 662 197536430 4968180 76.269 1.918 31.927546 -96.579359 +76680 190 135 144200367 1638580 55.676 0.633 31.202394 -96.814239 +76681 873 448 189152650 16047349 73.032 6.196 31.893480 -96.433735 +76682 2660 1198 293757281 5282635 113.420 2.040 31.453378 -96.913619 +76685 108 60 34854022 1205887 13.457 0.466 31.354734 -97.012872 +76686 285 155 29295360 409039 11.311 0.158 31.767574 -96.559327 +76687 1466 1025 343542764 14553842 132.643 5.619 31.372916 -96.495028 +76689 3996 1748 595381312 2489444 229.878 0.961 31.662159 -97.506079 +76690 1197 580 210324855 2464326 81.207 0.951 32.083522 -97.736712 +76691 6454 2706 258343074 1230724 99.747 0.475 31.769854 -97.098169 +76692 10115 5478 317554184 40577337 122.608 15.667 31.959701 -97.330421 +76693 1651 801 200191811 545636 77.294 0.211 31.783988 -96.404161 +76701 1826 826 2945553 46096 1.137 0.018 31.552011 -97.138200 +76704 8007 3704 13397540 441231 5.173 0.170 31.576824 -97.127249 +76705 29155 11391 296046972 10850615 114.304 4.189 31.620954 -97.098510 +76706 35015 13833 183714917 3754829 70.933 1.450 31.475671 -97.083854 +76707 16697 6072 8455021 71299 3.265 0.028 31.553876 -97.159082 +76708 24476 9736 120532124 10437619 46.538 4.030 31.627123 -97.215893 +76710 22686 11467 24632273 5141638 9.511 1.985 31.539723 -97.195009 +76711 9042 3402 10251070 26490 3.958 0.010 31.513756 -97.152983 +76712 23506 9856 130341799 14906999 50.325 5.756 31.529664 -97.260442 +76798 1862 0 90399 0 0.035 0.000 31.548378 -97.119061 +76801 25552 11978 989081612 24783606 381.887 9.569 31.748303 -99.032891 +76802 5075 2117 187311207 278020 72.321 0.107 31.743587 -98.911407 +76820 125 163 194302604 693628 75.021 0.268 30.766987 -99.050013 +76821 4869 2369 789947342 11241163 305.000 4.340 31.738576 -99.934162 +76823 2945 1434 290952823 894082 112.338 0.345 31.706204 -99.151374 +76824 35 20 72150321 2318360 27.857 0.895 30.936768 -98.467066 +76825 7091 3457 1349149724 11546469 520.910 4.458 31.105959 -99.394226 +76827 433 219 188034919 343912 72.601 0.133 31.517913 -99.135467 +76828 199 166 251555089 640574 97.126 0.247 32.006925 -99.290758 +76831 63 69 112268420 23383 43.347 0.009 30.653746 -98.918266 +76832 559 343 524944836 173426 202.682 0.067 30.985777 -98.735535 +76834 5908 3368 1063710887 9918916 410.701 3.830 31.881335 -99.481164 +76836 41 33 99099036 593085 38.262 0.229 31.443363 -99.549127 +76837 3188 866 1132587904 2542317 437.295 0.982 31.222764 -99.896212 +76841 61 84 259017519 27850 100.007 0.011 30.897544 -100.107479 +76842 191 159 243115915 228326 93.868 0.088 30.939820 -99.079893 +76844 3550 2037 1061339943 1671016 409.786 0.645 31.432417 -98.508681 +76845 178 168 289996550 688799 111.968 0.266 31.538066 -99.488185 +76848 78 76 157322091 0 60.742 0.000 30.843122 -99.570053 +76849 3944 2725 2447652369 429430 945.044 0.166 30.472197 -99.821945 +76852 212 195 388013254 1950120 149.813 0.753 31.369401 -99.446986 +76853 1622 857 665126067 1489776 256.807 0.575 31.257224 -98.376742 +76854 401 375 353090219 11304 136.329 0.004 30.694792 -99.581345 +76856 3582 2272 1841956545 7415185 711.183 2.863 30.690890 -99.276239 +76857 1791 1412 347651010 4749137 134.229 1.834 31.931233 -98.927404 +76858 254 181 308731002 1150791 119.202 0.444 31.176951 -99.616412 +76859 1982 1462 1860236201 585709 718.241 0.226 30.883707 -99.854936 +76861 1995 863 444148320 157536 171.487 0.061 31.592013 -100.192616 +76862 198 265 330847337 13732475 127.741 5.302 31.411505 -99.682323 +76864 890 518 609808649 1816863 235.448 0.701 31.553975 -98.731107 +76865 160 103 82918547 44135 32.015 0.017 31.858516 -100.165338 +76866 623 449 721200528 9036497 278.457 3.489 31.460967 -99.933766 +76869 125 133 191159718 252054 73.807 0.097 30.910963 -98.994062 +76870 251 139 71339264 30435 27.544 0.012 31.627357 -98.546717 +76871 784 530 604104514 1787382 233.246 0.690 31.289123 -98.995473 +76872 717 477 774592669 4028290 299.072 1.555 31.331919 -99.165902 +76873 55 84 116377507 320625 44.934 0.124 31.515316 -99.380601 +76874 68 113 180573004 0 69.720 0.000 30.458670 -100.069150 +76875 668 319 281131011 56312 108.545 0.022 31.602931 -99.999545 +76877 4558 2108 1439335992 3639326 555.731 1.405 31.157093 -98.763991 +76878 1685 978 685091583 3698896 264.515 1.428 31.649138 -99.295378 +76882 252 200 361984774 442990 139.763 0.171 31.816904 -99.702274 +76884 172 100 89563523 321413 34.581 0.124 31.736902 -99.567791 +76885 154 135 203719462 25686 78.657 0.010 30.858957 -98.861313 +76887 126 97 150964825 1525873 58.288 0.589 31.011897 -99.159484 +76888 110 181 276806413 29879545 106.876 11.537 31.609899 -99.640490 +76890 940 472 242598763 793570 93.668 0.306 31.686677 -98.776277 +76901 27969 11906 715015195 17083106 276.069 6.596 31.610896 -100.553311 +76903 31905 13750 68981203 13091 26.634 0.005 31.484819 -100.437870 +76904 32718 14668 1046108191 27660600 403.905 10.680 31.278370 -100.405795 +76905 11335 4386 538387007 0 207.872 0.000 31.509720 -100.322075 +76908 1951 13 3611818 0 1.395 0.000 31.432075 -100.402169 +76930 156 92 467027294 0 180.320 0.000 31.272551 -101.172783 +76932 3390 1369 2511279153 10136 969.610 0.004 31.268726 -101.542078 +76933 1365 727 671965099 2436971 259.447 0.941 31.858897 -100.284253 +76934 1296 479 40334469 0 15.573 0.000 31.603063 -100.668988 +76935 1606 767 756360713 983614 292.033 0.380 31.083442 -100.423683 +76936 3377 1426 2781929695 87401 1074.109 0.034 30.883539 -100.595464 +76937 37 16 27217373 0 10.509 0.000 31.388546 -100.151449 +76939 51 26 83021384 2165357 32.055 0.836 31.268843 -100.563525 +76940 176 85 38335927 0 14.802 0.000 31.439035 -100.142932 +76941 1348 706 1472356471 75076 568.480 0.029 31.272382 -100.889468 +76943 3693 1872 6499728989 7014729 2509.559 2.708 30.537596 -101.297786 +76945 1665 1399 1545088689 30576520 596.562 11.806 31.885049 -100.610567 +76949 7 16 23778100 106714 9.181 0.041 32.041140 -100.694580 +76950 4180 2145 4765450757 2448814 1839.951 0.945 30.441414 -100.560620 +76951 1143 612 2078497397 76294 802.512 0.029 31.802748 -101.055625 +76953 74 63 118298132 346888 45.675 0.134 31.723768 -100.331902 +76955 133 49 125691607 0 48.530 0.000 31.289523 -100.152670 +76957 59 19 723906 0 0.280 0.000 31.372148 -100.305160 +76958 310 147 255002157 0 98.457 0.000 31.595106 -100.799358 +77002 16793 3757 5227914 128033 2.019 0.049 29.756845 -95.365652 +77003 10508 4713 6567398 67910 2.536 0.026 29.749808 -95.345901 +77004 32692 16618 14960198 68772 5.776 0.027 29.724893 -95.363752 +77005 25528 10299 9958464 720 3.845 0.000 29.718435 -95.423555 +77006 19664 13602 5840517 0 2.255 0.000 29.740970 -95.391302 +77007 30853 17708 20222292 233912 7.808 0.090 29.771545 -95.411083 +77008 30482 16526 16886733 70547 6.520 0.027 29.798249 -95.416933 +77009 38094 15705 16006249 20223 6.180 0.008 29.795344 -95.367590 +77010 366 471 319762 0 0.123 0.000 29.753624 -95.359810 +77011 19547 6932 9243204 428466 3.569 0.165 29.743564 -95.308910 +77012 20719 6952 10172603 845645 3.928 0.327 29.718525 -95.274137 +77013 17602 6155 22650287 213335 8.745 0.082 29.791808 -95.228991 +77014 28684 11671 18533863 105094 7.156 0.041 29.981209 -95.463971 +77015 53621 18461 54698749 5336242 21.119 2.060 29.763930 -95.173121 +77016 26989 10593 25044017 158854 9.670 0.061 29.862532 -95.299980 +77017 32561 10770 22520254 594364 8.695 0.229 29.689824 -95.252393 +77018 25563 11837 17147259 71108 6.621 0.027 29.826448 -95.426267 +77019 18944 10980 9115666 104823 3.520 0.040 29.754150 -95.409498 +77020 25464 9384 17881915 318808 6.904 0.123 29.773179 -95.314327 +77021 26042 11810 15742462 65118 6.078 0.025 29.698430 -95.356900 +77022 29557 10692 15125545 1147 5.840 0.000 29.831590 -95.379553 +77023 28998 10646 14112378 235044 5.449 0.091 29.721825 -95.318275 +77024 34775 15927 32905019 105158 12.705 0.041 29.771225 -95.511751 +77025 26137 13662 11137251 91474 4.300 0.035 29.685706 -95.434764 +77026 23940 10111 16782149 8811 6.480 0.003 29.800187 -95.328888 +77027 14331 10203 7412837 38825 2.862 0.015 29.740079 -95.446409 +77028 16808 6457 23752521 20826 9.171 0.008 29.825715 -95.286149 +77029 17814 6340 33648461 1020378 12.992 0.394 29.759665 -95.256251 +77030 10258 5759 6530028 118054 2.521 0.046 29.706787 -95.401748 +77031 15762 6305 8250354 18564 3.185 0.007 29.652205 -95.546230 +77032 12757 4343 57300665 205180 22.124 0.079 29.987805 -95.353412 +77033 27965 10082 15476400 48319 5.975 0.019 29.666880 -95.335133 +77034 33678 12778 35559329 638131 13.730 0.246 29.619365 -95.191192 +77035 35896 15355 14769443 8531 5.703 0.003 29.653418 -95.475296 +77036 71969 30117 18432161 106524 7.117 0.041 29.701847 -95.534537 +77037 19819 5521 16146946 25516 6.234 0.010 29.890360 -95.392527 +77038 26713 7922 24381853 193179 9.414 0.075 29.918595 -95.441194 +77039 27562 8089 26147028 117333 10.095 0.045 29.911171 -95.341182 +77040 45081 17649 36397226 227882 14.053 0.088 29.874575 -95.527099 +77041 37146 11997 47929493 477837 18.506 0.184 29.858600 -95.580768 +77042 36385 20521 16189862 100352 6.251 0.039 29.741325 -95.560254 +77043 23358 9392 38607360 20653 14.906 0.008 29.812687 -95.583634 +77044 30949 10158 101220908 19129939 39.082 7.386 29.906619 -95.180595 +77045 31255 9730 29892027 393239 11.541 0.152 29.635793 -95.432889 +77046 1196 964 302539 0 0.117 0.000 29.733777 -95.433346 +77047 21077 8097 35794645 602951 13.820 0.233 29.610650 -95.386863 +77048 15294 6501 28702161 223468 11.082 0.086 29.618714 -95.324221 +77049 28521 9402 63665401 2531231 24.581 0.977 29.832928 -95.149040 +77050 4611 1451 17282498 651473 6.673 0.252 29.902887 -95.269296 +77051 15085 6584 18972731 92810 7.325 0.036 29.656113 -95.378696 +77053 28954 8651 31877352 347818 12.308 0.134 29.583542 -95.460693 +77054 22290 14173 14473863 62849 5.588 0.024 29.680250 -95.404913 +77055 41989 16005 21648620 5250 8.359 0.002 29.796871 -95.491650 +77056 18673 12270 8960556 34523 3.460 0.013 29.748202 -95.468948 +77057 39208 22694 11040817 8379 4.263 0.003 29.744081 -95.487974 +77058 16406 9667 21368323 2418306 8.250 0.934 29.561579 -95.099626 +77059 16949 5724 25487509 265021 9.841 0.102 29.613602 -95.119370 +77060 40830 15562 21298928 24543 8.224 0.009 29.934695 -95.394872 +77061 24457 9555 20508214 120868 7.918 0.047 29.647012 -95.276630 +77062 25152 9910 14047202 45900 5.424 0.018 29.573552 -95.130613 +77063 34299 19359 11913976 10576 4.600 0.004 29.736295 -95.523292 +77064 45847 16362 38133902 278430 14.724 0.108 29.918045 -95.535685 +77065 35326 14957 21270772 46256 8.213 0.018 29.926556 -95.603242 +77066 31366 10179 22266615 76586 8.597 0.030 29.957234 -95.503258 +77067 30559 10595 15518005 31484 5.992 0.012 29.952629 -95.446609 +77068 10064 4180 9851150 133593 3.804 0.052 30.007063 -95.488362 +77069 16541 8643 12416846 109818 4.794 0.042 29.988446 -95.531201 +77070 46017 20131 33700571 358184 13.012 0.138 29.979670 -95.572835 +77071 25671 10423 11571164 86641 4.468 0.033 29.652393 -95.521183 +77072 56526 18964 18952884 13769 7.318 0.005 29.699688 -95.584817 +77073 34790 12060 35838025 195794 13.837 0.076 29.999296 -95.400207 +77074 37267 14331 14087207 59980 5.439 0.023 29.687947 -95.515725 +77075 37388 12024 28504209 482492 11.006 0.186 29.620420 -95.268939 +77076 33803 10193 12362319 1255 4.773 0.000 29.860021 -95.382184 +77077 52151 27105 22570700 205539 8.715 0.079 29.750233 -95.615384 +77078 14777 4898 27739005 223558 10.710 0.086 29.852379 -95.254076 +77079 31280 13335 18911214 144827 7.302 0.056 29.776093 -95.603037 +77080 45275 16376 16532128 88865 6.383 0.034 29.815893 -95.522964 +77081 47860 19352 8019956 3242 3.097 0.001 29.712099 -95.480935 +77082 49900 23058 32515705 420932 12.554 0.163 29.724490 -95.640002 +77083 70837 21719 26713360 67963 10.314 0.026 29.694472 -95.649627 +77084 95137 33731 79630562 325455 30.746 0.126 29.827486 -95.659920 +77085 16074 4857 13711520 13494 5.294 0.005 29.620736 -95.486150 +77086 28009 8375 17568012 18599 6.783 0.007 29.917695 -95.489993 +77087 36399 11494 17258938 87757 6.664 0.034 29.685621 -95.304159 +77088 49660 17680 28967373 169952 11.184 0.066 29.881487 -95.452619 +77089 48685 16805 32931806 1461490 12.715 0.564 29.586959 -95.225601 +77090 32930 16429 21289363 133048 8.220 0.051 30.008240 -95.438996 +77091 23472 10992 18598945 80375 7.181 0.031 29.853067 -95.435966 +77092 33745 14870 19724204 42292 7.616 0.016 29.830024 -95.474409 +77093 46929 13858 31147290 20526 12.026 0.008 29.863400 -95.341409 +77094 8498 3189 29196393 810402 11.273 0.313 29.769285 -95.681292 +77095 66502 23943 39850707 386555 15.386 0.149 29.909215 -95.651234 +77096 32628 15431 15503253 148090 5.986 0.057 29.675339 -95.479372 +77098 13076 9064 4598100 164 1.775 0.000 29.734813 -95.416098 +77099 47091 17439 16112274 11938 6.221 0.005 29.670869 -95.585990 +77201 0 0 117997 0 0.046 0.000 29.766003 -95.364364 +77301 30769 10173 48945459 111171 18.898 0.043 30.307375 -95.438548 +77302 18118 6545 149391338 1220427 57.680 0.471 30.221853 -95.338811 +77303 16710 6225 160149089 499184 61.834 0.193 30.377954 -95.377140 +77304 21314 10203 98022294 4927063 37.847 1.902 30.324546 -95.505008 +77306 11931 4061 106523013 89371 41.129 0.035 30.285840 -95.312397 +77316 16036 6185 326851688 1924067 126.198 0.743 30.306163 -95.686390 +77318 14281 6780 99325132 31214456 38.350 12.052 30.438807 -95.533229 +77320 33678 10605 823507805 44760197 317.958 17.282 30.804668 -95.550872 +77326 69 42 6169203 0 2.382 0.000 30.504882 -94.817018 +77327 20160 8267 822812910 16622613 317.690 6.418 30.317569 -94.917669 +77328 13993 5321 420460789 1796993 162.341 0.694 30.392374 -95.191181 +77331 6824 4165 396554524 64855068 153.111 25.041 30.629453 -95.158878 +77334 141 93 37109060 267899 14.328 0.103 30.781835 -95.373442 +77335 2350 1246 94694916 2971584 36.562 1.147 30.574329 -94.911174 +77336 12471 4643 101137904 10118331 39.050 3.907 30.063168 -95.098858 +77338 33971 13017 68564213 2290805 26.473 0.884 30.017301 -95.286217 +77339 37512 16137 43689679 2494775 16.869 0.963 30.046777 -95.221022 +77340 29809 11634 563639312 7128529 217.622 2.752 30.640200 -95.538432 +77342 23 11 352349 2062 0.136 0.001 30.740381 -95.555832 +77345 26122 9822 21906902 5635267 8.458 2.176 30.053105 -95.157943 +77346 53578 18490 44965356 7334996 17.361 2.832 29.994499 -95.177499 +77350 66 37 6831379 0 2.638 0.000 30.824427 -94.833454 +77351 32517 15525 1738898844 95741614 671.393 36.966 30.717816 -94.817231 +77354 30215 10580 196583205 1158507 75.901 0.447 30.216858 -95.647214 +77355 24010 8449 147741533 532215 57.043 0.205 30.156257 -95.749260 +77356 24498 12274 336925884 41269987 130.088 15.934 30.465662 -95.729888 +77357 19987 7318 162611616 439201 62.785 0.170 30.161219 -95.189761 +77358 4993 2189 320687913 8669054 123.818 3.347 30.558321 -95.436252 +77359 721 382 135960120 476067 52.494 0.184 30.751892 -95.301591 +77360 5280 3379 85307813 36442935 32.938 14.071 30.846249 -95.117513 +77362 4600 1703 21091585 32665 8.144 0.013 30.160534 -95.669154 +77363 3269 1541 179405819 1473060 69.269 0.569 30.316397 -95.849990 +77364 2223 1467 78596680 14494772 30.346 5.596 30.767587 -95.218681 +77365 25769 9289 91897689 1457101 35.482 0.563 30.106685 -95.297121 +77367 143 124 2086101 328986 0.805 0.127 30.857216 -95.397909 +77368 152 104 19572169 933694 7.557 0.361 30.443808 -94.822580 +77369 1018 575 94858185 501532 36.625 0.194 30.421815 -94.735330 +77371 7665 3159 329447586 5961606 127.200 2.302 30.483532 -94.989562 +77372 12164 4544 134425311 479737 51.902 0.185 30.238010 -95.164460 +77373 54609 19307 61441336 922383 23.723 0.356 30.062169 -95.383966 +77374 510 213 134321050 358140 51.862 0.138 30.396003 -94.623750 +77375 39351 14626 88185870 1343976 34.049 0.519 30.094886 -95.585826 +77376 617 250 80081161 67609 30.920 0.026 30.443771 -94.663769 +77377 28708 10136 100733936 1211367 38.894 0.468 30.061727 -95.681504 +77378 14685 5287 251855683 1347673 97.242 0.520 30.471374 -95.363872 +77379 70544 25531 65082885 1545338 25.129 0.597 30.040876 -95.528919 +77380 23136 11248 32192102 538324 12.429 0.208 30.136972 -95.468360 +77381 34961 13948 33951991 379803 13.109 0.147 30.178248 -95.500960 +77382 35369 12736 29199377 191337 11.274 0.074 30.194985 -95.548211 +77384 11857 5593 45288522 378433 17.486 0.146 30.233845 -95.495681 +77385 19534 6887 56480919 1112561 21.807 0.430 30.188194 -95.416291 +77386 36407 12870 104261025 1956400 40.255 0.755 30.100394 -95.356377 +77388 40384 14196 36034805 191726 13.913 0.074 30.059307 -95.470689 +77389 21255 7569 54033376 690469 20.862 0.267 30.123428 -95.517064 +77396 43317 14394 69437393 408675 26.810 0.158 29.944166 -95.258689 +77401 17491 6844 9715941 1966 3.751 0.001 29.704019 -95.460905 +77406 33682 11373 168078895 5042690 64.896 1.947 29.646090 -95.794526 +77407 28595 9478 48783490 1844484 18.835 0.712 29.670004 -95.708089 +77412 106 66 22514064 1167988 8.693 0.451 29.553762 -96.412132 +77414 23047 11902 1342527212 42092365 518.353 16.252 28.908185 -95.868152 +77415 46 20 4500166 46632 1.738 0.018 28.933093 -95.734948 +77417 2457 984 155854105 422184 60.176 0.163 29.464406 -95.966234 +77418 9585 4432 492267571 8145922 190.066 3.145 29.987117 -96.252942 +77419 1512 611 163555252 2104947 63.149 0.813 28.849303 -96.254814 +77420 2205 953 137936789 3573422 53.258 1.380 29.258985 -95.930309 +77422 13933 5732 442380182 31178856 170.804 12.038 28.960572 -95.558277 +77423 9483 3471 373722902 4565236 144.295 1.763 29.848463 -95.977102 +77426 2100 1101 229808335 5050134 88.729 1.950 30.122300 -96.258442 +77428 61 64 214412907 339243769 82.785 130.983 28.623423 -96.189925 +77429 72264 25165 99413806 1282834 38.384 0.495 29.997775 -95.669444 +77430 2283 1029 289124677 21492012 111.632 8.298 29.259878 -95.667662 +77432 173 70 65545906 97915 25.307 0.038 29.067417 -96.188569 +77433 50539 16596 151067254 2455252 58.327 0.948 29.934330 -95.747630 +77434 4816 2111 494568459 13642925 190.954 5.268 29.527955 -96.305185 +77435 4539 1819 363821495 1231234 140.472 0.475 29.515593 -96.120409 +77436 73 48 16702822 17556 6.449 0.007 29.418712 -96.234019 +77437 17054 6633 833683206 4860494 321.887 1.877 29.212328 -96.280585 +77440 37 17 13196770 8322 5.095 0.003 28.894647 -96.147768 +77441 4809 1897 113215797 3564761 43.713 1.376 29.670435 -95.922239 +77442 1137 633 499670872 5976345 192.924 2.307 29.422281 -96.506236 +77443 84 60 788374 1732 0.304 0.001 29.349096 -96.191821 +77444 784 348 97078610 822744 37.482 0.318 29.286377 -95.777811 +77445 11977 4989 458546893 7003585 177.046 2.704 30.099931 -96.065554 +77446 5217 967 16985916 0 6.558 0.000 30.086834 -95.990493 +77447 11872 4252 258674539 5326309 99.875 2.056 30.047619 -95.833733 +77448 341 149 16411763 38063 6.337 0.015 29.416447 -96.085418 +77449 94382 29238 77407272 405971 29.887 0.157 29.837561 -95.733756 +77450 71889 25207 52706421 1040250 20.350 0.402 29.745681 -95.742143 +77451 77 45 2993328 24058 1.156 0.009 29.434977 -96.004602 +77453 301 107 30106577 178589 11.624 0.069 29.213766 -95.999923 +77454 217 90 50770142 142159 19.602 0.055 29.522218 -96.218695 +77455 2045 857 546174529 1823656 210.879 0.704 29.132610 -96.426592 +77456 1303 577 135855313 799801 52.454 0.309 29.040018 -96.060809 +77457 651 1085 26169582 3868668 10.104 1.494 28.731160 -95.881868 +77458 468 182 93936365 643855 36.269 0.249 28.951217 -96.237096 +77459 56274 19287 84895370 4166362 32.778 1.609 29.529061 -95.530597 +77460 73 33 1797919 0 0.694 0.000 29.397447 -96.384508 +77461 10679 4017 382902274 6766761 147.839 2.613 29.382583 -95.807011 +77464 221 92 4779053 13886 1.845 0.005 29.592427 -95.955277 +77465 7161 3712 504455986 36347934 194.772 14.034 28.763461 -96.230400 +77466 690 264 29942960 192992 11.561 0.075 29.792687 -96.012215 +77467 57 33 63793093 33971 24.631 0.013 29.201173 -96.101539 +77468 131 73 49740368 147089 19.205 0.057 29.132669 -95.941090 +77469 35321 11767 338646079 16275290 130.752 6.284 29.482678 -95.680186 +77470 338 197 73978387 1025660 28.563 0.396 29.537157 -96.546208 +77471 35241 12687 223498118 4491069 86.293 1.734 29.548404 -95.861706 +77473 97 43 303620 0 0.117 0.000 29.795148 -96.107713 +77474 12782 5233 538810613 10031858 208.036 3.873 29.780109 -96.181158 +77475 773 488 61521039 1235121 23.753 0.477 29.488624 -96.652467 +77476 313 144 13324210 564528 5.145 0.218 29.687606 -95.952260 +77477 35897 13682 27077487 231440 10.455 0.089 29.624310 -95.567968 +77478 24739 9371 25191938 1606621 9.727 0.620 29.620312 -95.605693 +77479 74514 24980 85627045 4020265 33.061 1.552 29.566996 -95.636016 +77480 8097 3357 368645101 7541387 142.335 2.912 29.086319 -95.766667 +77481 35 13 20715931 636973 7.998 0.246 29.473418 -95.558148 +77482 2307 937 153232094 955327 59.163 0.369 29.092422 -95.903553 +77483 311 233 93669401 17241182 36.166 6.657 28.788479 -95.839250 +77484 11068 4357 401022940 1482790 154.836 0.573 30.079593 -95.932264 +77485 4054 1769 215833937 5424933 83.334 2.095 29.632734 -96.055105 +77486 6851 2992 122999380 3357783 47.490 1.296 29.155616 -95.683469 +77488 14148 6220 561981464 5974763 216.982 2.307 29.307215 -96.091291 +77489 35554 12085 29100217 550133 11.236 0.212 29.600434 -95.515549 +77493 23104 7643 149434098 1434171 57.697 0.554 29.853215 -95.831456 +77494 61600 20283 105612110 791578 40.777 0.306 29.740630 -95.829571 +77498 49906 15554 40104373 1655396 15.484 0.639 29.643586 -95.653270 +77502 37995 12079 14541491 0 5.615 0.000 29.679518 -95.199783 +77503 24251 8883 22174586 1024652 8.562 0.396 29.703477 -95.158895 +77504 24529 9883 14299172 87892 5.521 0.034 29.647916 -95.189780 +77505 23223 8881 23708778 174798 9.154 0.067 29.645644 -95.140315 +77506 35977 12156 23704366 3810545 9.152 1.471 29.713919 -95.199702 +77507 0 0 36113651 1281774 13.944 0.495 29.624554 -95.063488 +77510 13731 5478 76091764 496913 29.379 0.192 29.360426 -95.087402 +77511 46627 17688 410573426 3574798 158.523 1.380 29.380858 -95.241857 +77514 4942 2179 564766886 28982194 218.058 11.190 29.700296 -94.603226 +77515 30309 11330 530525634 24908247 204.837 9.617 29.174921 -95.450088 +77517 5315 2024 52206320 388305 20.157 0.150 29.364468 -95.131078 +77518 8673 3427 7114003 443289 2.747 0.171 29.507162 -94.987247 +77519 1191 513 107258205 603735 41.413 0.233 30.232894 -94.587172 +77520 36489 14316 62010184 35480073 23.942 13.699 29.733283 -94.994123 +77521 49507 19637 107414166 1152382 41.473 0.445 29.802438 -94.970225 +77523 17031 6064 233116090 27306248 90.007 10.543 29.789523 -94.859125 +77530 31086 9822 34079270 9788110 13.158 3.779 29.785907 -95.117207 +77531 15639 6394 50930385 2552519 19.664 0.986 29.046833 -95.392183 +77532 26236 9887 203088292 12262531 78.413 4.735 29.932872 -95.057187 +77533 1022 451 66606384 63644 25.717 0.025 30.087167 -94.599575 +77534 2863 1055 93213680 3935656 35.990 1.520 29.231528 -95.314319 +77535 31295 10512 813235437 8718203 313.992 3.366 30.054436 -94.921994 +77536 30690 11157 32410620 1386031 12.514 0.535 29.698461 -95.121268 +77538 934 370 377201376 2182277 145.638 0.843 29.983919 -94.527364 +77539 38806 15386 130507428 7904113 50.389 3.052 29.456766 -95.031051 +77541 17412 8443 305789906 76418486 118.066 29.505 29.021218 -95.278251 +77545 19431 6125 31547553 440033 12.181 0.170 29.537301 -95.474615 +77546 47636 17268 68305675 392013 26.373 0.151 29.515074 -95.192133 +77547 9735 2945 6904819 478895 2.666 0.185 29.735876 -95.238178 +77550 23043 14615 19443309 2903896 7.507 1.121 29.310535 -94.775768 +77551 17753 10330 9878527 2364008 3.814 0.913 29.278188 -94.833290 +77554 8863 9546 91697857 74238449 35.405 28.664 29.253166 -94.924652 +77560 1005 406 81165723 445869 31.338 0.172 29.868546 -94.603021 +77561 53 30 1406299 0 0.543 0.000 30.166506 -94.735446 +77562 10459 4095 38443929 8715746 14.843 3.365 29.832539 -95.050891 +77563 9103 4421 135980828 19707897 52.502 7.609 29.303555 -95.032327 +77564 1988 875 136086336 415258 52.543 0.160 30.191270 -94.670931 +77565 5790 2913 9841180 1825556 3.800 0.705 29.535935 -95.026393 +77566 28739 11891 61204176 11131605 23.631 4.298 29.050464 -95.475843 +77568 14308 6153 32551450 1715328 12.568 0.662 29.363162 -94.980107 +77571 35666 13658 90520025 16288935 34.950 6.289 29.688431 -95.057338 +77573 71580 26951 78141725 3394688 30.171 1.311 29.503790 -95.087307 +77575 15949 6472 620248380 17226523 239.479 6.651 30.075658 -94.733441 +77577 1368 625 51780672 509057 19.993 0.197 29.284543 -95.281510 +77578 12672 4613 96568416 166211 37.285 0.064 29.481461 -95.361402 +77580 312 113 8015644 47559 3.095 0.018 29.871693 -94.865324 +77581 42383 15969 66686482 113542 25.748 0.044 29.561554 -95.279739 +77583 28531 7366 432086749 8352515 166.830 3.225 29.381402 -95.469968 +77584 70228 25184 83119298 201579 32.093 0.078 29.545325 -95.350068 +77585 1014 482 271756321 736829 104.926 0.284 30.295238 -94.524753 +77586 20970 9487 33634002 6117829 12.986 2.362 29.583816 -95.036166 +77587 16568 5156 7689262 1183 2.969 0.000 29.661032 -95.229784 +77590 30374 12489 45679336 3181462 17.637 1.228 29.391397 -94.920149 +77591 13131 5806 27963673 692821 10.797 0.267 29.399203 -94.997254 +77597 777 357 56379262 26824368 21.768 10.357 29.836207 -94.702005 +77598 23059 11956 31342292 515898 12.101 0.199 29.538640 -95.136100 +77611 8219 3785 62436857 17899121 24.107 6.911 30.014437 -93.828240 +77612 8901 3860 900306291 3031327 347.610 1.170 30.401982 -93.922373 +77613 1218 547 98498414 844193 38.030 0.326 30.052049 -94.360752 +77614 603 277 26550011 243893 10.251 0.094 30.301184 -93.774566 +77615 1012 424 39769576 1866306 15.355 0.721 30.327002 -94.051956 +77616 1136 561 135359861 946424 52.263 0.365 30.566846 -94.179320 +77617 73 112 14961475 3572674 5.777 1.379 29.506866 -94.520121 +77619 16147 7041 15465148 275419 5.971 0.106 29.947516 -93.918571 +77622 1390 567 58132021 846447 22.445 0.327 29.862143 -94.288429 +77623 448 232 40636963 3438854 15.690 1.328 29.560344 -94.414427 +77624 856 414 156969853 189287 60.606 0.073 30.685013 -94.291805 +77625 8489 3594 801246599 3226999 309.363 1.246 30.377234 -94.373937 +77627 21454 9460 27407190 5564531 10.582 2.148 29.986791 -94.009416 +77629 877 364 165070876 766559 63.734 0.296 29.979840 -94.403073 +77630 26796 12422 234666106 33494238 90.605 12.932 30.071743 -93.864976 +77632 22776 9346 342250452 9599858 132.144 3.707 30.201442 -93.804542 +77640 16875 8395 99822657 87795934 38.542 33.898 29.881613 -93.940858 +77642 37111 15240 50975851 4740477 19.682 1.830 29.958020 -93.891921 +77650 1896 2362 54502790 6796307 21.044 2.624 29.426496 -94.685696 +77651 13043 5569 32066341 4584292 12.381 1.770 29.985972 -93.955832 +77655 356 178 121830730 29555590 47.039 11.411 29.710502 -93.937850 +77656 17110 7256 407362397 5912956 157.284 2.283 30.414774 -94.173656 +77657 20003 7864 165949773 3631203 64.074 1.402 30.228019 -94.197185 +77659 4910 2016 301756771 2726449 116.509 1.053 30.170761 -94.429636 +77660 1437 684 143979816 1564878 55.591 0.604 30.649823 -94.140750 +77661 962 367 104957086 537403 40.524 0.207 29.751627 -94.420716 +77662 27035 11038 360278904 14964284 139.104 5.778 30.177937 -94.018189 +77663 1353 676 56102831 1023026 21.661 0.395 30.513404 -94.392270 +77664 2681 1261 419969481 414534 162.151 0.160 30.601435 -94.413805 +77665 6446 2487 348794493 2833218 134.670 1.094 29.812999 -94.416117 +77701 14674 6207 17883272 665051 6.905 0.257 30.073053 -94.105486 +77702 2893 1404 3207699 0 1.238 0.000 30.086268 -94.128303 +77703 15006 6369 34270346 1952116 13.232 0.754 30.136892 -94.111285 +77705 40475 11439 614483802 41827544 237.254 16.150 29.898029 -94.161175 +77706 28258 13626 29215797 66336 11.280 0.026 30.102291 -94.173449 +77707 17080 6865 38280414 347174 14.780 0.134 30.053431 -94.170654 +77708 11518 4963 18330830 213750 7.078 0.083 30.145017 -94.160386 +77713 12788 5761 258118434 3524330 99.660 1.361 30.065065 -94.252206 +77801 15449 7158 8321605 175945 3.213 0.068 30.639285 -96.362454 +77802 23288 10995 30417659 0 11.744 0.000 30.661252 -96.322612 +77803 30252 9802 33294879 3553 12.855 0.001 30.681053 -96.386067 +77807 9699 3611 249381782 4165560 96.287 1.608 30.677687 -96.483601 +77808 10634 4245 647488798 4554975 249.997 1.759 30.797736 -96.312084 +77830 2534 1321 488401254 12782270 188.573 4.935 30.527987 -96.011435 +77831 3426 1726 566409038 5922144 218.692 2.287 30.726709 -95.903880 +77833 27492 11915 812523178 16869945 313.717 6.514 30.215075 -96.410272 +77835 2351 1501 290820315 18979491 112.286 7.328 30.193640 -96.588048 +77836 11896 5595 1142925401 15325653 441.286 5.917 30.541565 -96.676232 +77837 1587 915 270330449 2839340 104.375 1.096 31.003109 -96.688981 +77840 56171 22548 29009670 0 11.201 0.000 30.609093 -96.325984 +77845 48938 19141 382123009 3917111 147.539 1.512 30.561385 -96.272583 +77853 953 539 130938927 267237 50.556 0.103 30.354823 -96.840158 +77855 238 166 66849600 206065 25.811 0.080 31.132442 -96.139190 +77856 5096 2835 1018716104 5855582 393.329 2.261 31.075800 -96.425786 +77857 757 373 158419987 1173865 61.166 0.453 30.785246 -96.706056 +77859 6981 3117 439496796 3807842 169.691 1.470 30.871914 -96.526934 +77861 2506 1186 329776176 9881659 127.327 3.815 30.726087 -96.096428 +77864 7647 3183 519706347 5852380 200.660 2.260 30.953672 -95.905344 +77865 1798 1034 364866242 1242412 140.876 0.480 31.235882 -96.229280 +77867 105 42 32634636 115895 12.600 0.045 30.743004 -96.548436 +77868 15511 5432 702837645 9356999 271.367 3.613 30.369294 -96.054766 +77871 3368 1930 511897000 4254743 197.645 1.643 31.064172 -96.126916 +77872 1716 837 195227418 2239988 75.378 0.865 30.871997 -96.146599 +77873 1292 656 209248845 1297310 80.791 0.501 30.569055 -95.807719 +77876 197 107 26915190 280775 10.392 0.108 30.599232 -95.874704 +77878 475 250 64884806 501216 25.052 0.194 30.471301 -96.438114 +77879 4670 2912 485590931 30342305 187.488 11.715 30.398612 -96.497852 +77880 1879 1007 246879524 4943305 95.321 1.909 30.286936 -96.189365 +77901 41548 16779 51231891 0 19.781 0.000 28.804947 -96.984711 +77904 25002 10427 312480086 274829 120.649 0.106 28.938252 -97.020350 +77905 13981 5712 1087253825 21322114 419.791 8.233 28.731567 -97.043002 +77950 197 179 221725146 6956235 85.609 2.686 28.291147 -96.899059 +77951 2616 1035 61215598 871363 23.635 0.336 28.634388 -96.901049 +77954 11506 4724 958386497 1811763 370.035 0.700 29.097035 -97.282413 +77957 8187 3753 979064980 13097448 378.019 5.057 29.042415 -96.689715 +77960 121 51 43910330 100674 16.954 0.039 28.676730 -97.198682 +77961 183 99 105190991 126505 40.614 0.049 28.857880 -96.353868 +77962 3286 1360 426472014 29375328 164.662 11.342 29.020933 -96.489810 +77963 5459 2792 1676801129 9044458 647.417 3.492 28.652457 -97.405775 +77964 7569 4337 1500422297 1554510 579.316 0.600 29.380036 -96.836189 +77968 2774 1110 463511411 204571 178.963 0.079 28.905088 -96.829055 +77969 154 100 74695385 1854152 28.840 0.716 28.775164 -96.658931 +77970 295 147 116429977 527548 44.954 0.204 28.846631 -96.428807 +77971 911 361 157227689 3786386 60.706 1.462 28.833262 -96.521612 +77973 50 27 112384889 1325523 43.392 0.512 28.543661 -96.971090 +77974 455 220 66529527 37584 25.687 0.015 28.891576 -97.310298 +77975 1860 1089 205703237 153325 79.422 0.059 29.564900 -97.083825 +77976 126 60 56160777 25568 21.684 0.010 28.954115 -97.122655 +77977 718 280 22332006 0 8.622 0.000 28.695562 -96.794157 +77978 743 382 26992579 81912670 10.422 31.627 28.667111 -96.570992 +77979 17144 7643 883115038 341842604 340.973 131.986 28.609718 -96.609368 +77982 1253 1723 33189469 7109281 12.815 2.745 28.444644 -96.491788 +77983 2209 1370 292292297 63626152 112.855 24.566 28.429626 -96.574173 +77984 4295 2269 403871993 435105 155.936 0.168 29.453329 -97.191865 +77987 161 102 12207475 0 4.713 0.000 29.342572 -97.075651 +77988 326 169 3708662 0 1.432 0.000 28.839050 -96.889623 +77990 699 480 283299954 87145827 109.383 33.647 28.482983 -96.928782 +77991 357 142 55955600 3262468 21.605 1.260 28.798662 -96.614555 +77993 148 91 38607984 0 14.907 0.000 28.857734 -97.428562 +77994 321 236 135272778 247418 52.229 0.096 29.178194 -97.470843 +77995 9567 4379 924227003 1381792 356.846 0.534 29.202338 -97.076333 +78001 33 32 93658144 625529 36.162 0.242 28.293173 -99.214344 +78002 8255 2813 107547413 1264561 41.524 0.488 29.283035 -98.737267 +78003 8689 4653 584665360 5746988 225.741 2.219 29.707222 -99.095171 +78004 1183 481 68040558 19264 26.271 0.007 29.903262 -98.556446 +78005 817 433 461452727 371677 178.168 0.144 28.941736 -98.851298 +78006 27558 11424 807617612 1480485 311.823 0.572 29.859217 -98.706275 +78007 151 111 65803291 28108701 25.407 10.853 28.498000 -98.368762 +78008 345 287 488913285 1339612 188.770 0.517 28.721144 -98.281256 +78009 7255 2860 185171103 937814 71.495 0.362 29.357251 -98.886655 +78010 3386 1562 189781316 1075720 73.275 0.415 29.902027 -99.037691 +78011 2082 899 493710052 579968 190.623 0.224 28.790915 -98.717634 +78012 436 202 86248092 222512 33.301 0.086 28.764536 -98.485960 +78013 5930 2592 596362278 815423 230.257 0.315 29.972312 -98.904706 +78014 4987 2243 2715068465 15815841 1048.294 6.107 28.375283 -99.135560 +78015 9602 3622 54172872 59737 20.916 0.023 29.747683 -98.650270 +78016 9630 3816 411200034 1827432 158.765 0.706 29.171580 -98.967448 +78017 4787 1569 964676600 719046 372.464 0.278 28.703396 -99.191188 +78019 1855 466 2504549286 4846373 967.012 1.871 28.041684 -99.399193 +78021 126 122 740452971 2911097 285.891 1.124 28.496434 -98.820347 +78022 4627 2254 1137484789 4747734 439.185 1.833 28.257475 -98.143051 +78023 24334 8359 192996897 485931 74.517 0.188 29.609914 -98.746764 +78024 1436 970 675705243 1700136 260.891 0.656 30.026917 -99.507979 +78025 4956 2417 113754775 1116780 43.921 0.431 30.081841 -99.282981 +78026 5861 2435 561727793 1150105 216.884 0.444 28.821017 -98.610076 +78027 459 245 204760959 12404 79.059 0.005 29.969074 -98.539209 +78028 37620 17738 649244230 4220252 250.675 1.629 30.036701 -99.163039 +78029 0 0 23694 0 0.009 0.000 30.159136 -99.345011 +78039 1657 670 47562028 220042 18.364 0.085 29.312148 -98.834802 +78040 42083 13508 16316962 325514 6.300 0.126 27.513811 -99.502143 +78041 44153 14232 47449018 3047769 18.320 1.177 27.545404 -99.461989 +78043 42713 12684 452562522 5326585 174.735 2.057 27.556989 -99.267161 +78044 648 308 543958635 1706011 210.024 0.659 27.751747 -99.126085 +78045 54713 16209 1873929758 9733039 723.528 3.758 27.833509 -99.685482 +78046 64548 15724 636984183 5037510 245.941 1.945 27.373543 -99.350596 +78050 767 284 13862351 0 5.352 0.000 29.070547 -98.481810 +78052 6388 2281 98193838 285316 37.913 0.110 29.203679 -98.776694 +78055 1774 1069 613937747 1949198 237.043 0.753 29.830327 -99.331413 +78056 1917 1032 261096285 8757537 100.810 3.381 29.537033 -98.933944 +78057 871 459 255078993 151549 98.487 0.059 29.037278 -99.001103 +78058 1256 838 1439410855 1589669 555.760 0.614 30.095115 -99.628211 +78059 5387 2017 105952823 410870 40.909 0.159 29.199800 -98.842165 +78060 37 19 1018944 0 0.393 0.000 28.446801 -98.107053 +78061 11031 3535 1432708846 1351245 553.172 0.522 28.890855 -99.141829 +78063 9227 5132 314848255 11544203 121.564 4.457 29.689692 -98.911216 +78064 14102 5649 607436770 909573 234.533 0.351 28.935779 -98.428996 +78065 10831 4046 431986175 255652 166.791 0.099 29.079849 -98.642309 +78066 591 254 66162110 336705 25.545 0.130 29.501055 -98.853494 +78067 916 533 374029222 6581582 144.413 2.541 27.128233 -99.330830 +78069 5137 1780 84333597 62945 32.561 0.024 29.186232 -98.680853 +78070 14618 5884 356650248 3683342 137.703 1.422 29.894760 -98.390967 +78071 4248 1622 929558958 48416539 358.905 18.694 28.470281 -98.226391 +78072 505 324 2228582231 14654094 860.460 5.658 28.310347 -98.573186 +78073 8171 2877 134531259 1236831 51.943 0.478 29.243915 -98.622442 +78075 123 92 344756747 1443579 133.111 0.557 28.622685 -98.369358 +78076 12612 5257 1237259208 107568879 477.708 41.533 26.930929 -99.162765 +78101 7898 2971 132787370 1006950 51.269 0.389 29.353553 -98.238308 +78102 27593 8675 1214712075 36595 469.003 0.014 28.407712 -97.710620 +78104 175 92 60011041 33536 23.170 0.013 28.522541 -97.761958 +78107 360 232 299831250 89050 115.765 0.034 28.568278 -97.579237 +78108 27770 9748 79945206 185670 30.867 0.072 29.575004 -98.220552 +78109 34603 12054 54143166 693994 20.905 0.268 29.487774 -98.291474 +78112 7941 2743 130832924 6003519 50.515 2.318 29.214414 -98.370855 +78113 2435 1222 728107839 6218287 281.124 2.401 28.867033 -98.240425 +78114 20103 7759 950244404 4879176 366.891 1.884 29.114718 -98.208661 +78116 390 266 316501881 2695855 122.202 1.041 29.110831 -97.759342 +78117 545 287 138156758 1762666 53.343 0.681 28.938338 -97.923572 +78118 3976 1640 469402178 3466514 181.237 1.338 28.800642 -98.062937 +78119 7680 2387 846122548 3441661 326.690 1.329 28.733411 -97.894958 +78121 11381 4236 266136343 827503 102.756 0.320 29.350393 -98.107030 +78122 418 247 130783210 316282 50.496 0.122 29.428917 -97.735834 +78123 2397 1262 10137779 929566 3.914 0.359 29.600453 -98.047576 +78124 5609 2196 147494204 57482 56.948 0.022 29.557266 -98.146886 +78125 96 73 76198398 20185 29.420 0.008 28.540900 -97.957001 +78130 59546 24291 239149447 3190302 92.336 1.232 29.696878 -98.070726 +78132 19139 7581 480634995 1804586 185.574 0.697 29.758823 -98.190462 +78133 16269 9397 216619879 31847267 83.637 12.296 29.889085 -98.244624 +78140 3380 1486 375624484 1509355 145.029 0.583 29.333756 -97.765502 +78141 596 366 153956444 296579 59.443 0.115 28.914138 -97.632623 +78142 119 68 14539013 0 5.614 0.000 28.536632 -97.810515 +78143 85 40 4528838 9910 1.749 0.004 29.258664 -97.851216 +78144 45 18 5820247 50575 2.247 0.020 28.952237 -97.887161 +78145 103 49 9489980 0 3.664 0.000 28.645184 -97.994125 +78146 771 305 100309889 0 38.730 0.000 28.603142 -97.838545 +78147 1919 729 8970503 76029 3.464 0.029 29.073446 -98.080406 +78148 20139 8591 24407795 151993 9.424 0.059 29.543813 -98.295356 +78150 11 0 410362 813 0.158 0.000 29.525969 -98.277499 +78151 1347 723 270673309 1076489 104.508 0.416 28.864482 -97.705273 +78152 2294 931 94905800 812026 36.643 0.314 29.436590 -98.205116 +78154 30347 11683 85118681 632684 32.865 0.244 29.547068 -98.262642 +78155 45341 18039 918321745 3963012 354.566 1.530 29.542770 -97.937078 +78159 1023 505 402017180 472760 155.220 0.183 29.231774 -97.590672 +78160 4273 1911 471766239 2140262 182.150 0.826 29.241795 -97.922547 +78161 864 361 33169615 169575 12.807 0.065 29.293499 -98.057016 +78162 375 181 80738501 0 31.173 0.000 28.589962 -97.773497 +78163 9838 3745 199812178 286093 77.148 0.110 29.769466 -98.453225 +78164 3796 2102 731867162 673726 282.576 0.260 28.982560 -97.520734 +78201 45307 18396 18314379 337302 7.071 0.130 29.468413 -98.528889 +78202 11691 4714 6020566 0 2.325 0.000 29.428169 -98.460881 +78203 6099 2333 3330076 0 1.286 0.000 29.415100 -98.459123 +78204 11125 4333 6822073 178382 2.634 0.069 29.404404 -98.505028 +78205 1453 1090 3086345 11844 1.192 0.005 29.423945 -98.486420 +78207 55514 17587 18809822 691879 7.263 0.267 29.422404 -98.525943 +78208 3736 1581 2548039 4511 0.984 0.002 29.439930 -98.458718 +78209 39197 20015 26380171 71801 10.185 0.028 29.488906 -98.456235 +78210 36865 14267 19261959 118406 7.437 0.046 29.395776 -98.464401 +78211 31944 10286 26621935 57232 10.279 0.022 29.342535 -98.570052 +78212 28415 13137 17504379 9930 6.758 0.004 29.464611 -98.493653 +78213 40396 17777 20730102 10941 8.004 0.004 29.516401 -98.523030 +78214 23341 8395 34734732 443271 13.411 0.171 29.324786 -98.470039 +78215 1150 718 2904727 0 1.122 0.000 29.441230 -98.480515 +78216 40267 20120 37019478 140374 14.293 0.054 29.537264 -98.487882 +78217 32165 15550 27179155 348678 10.494 0.135 29.538074 -98.415198 +78218 31917 13900 30625578 50590 11.825 0.020 29.491630 -98.397127 +78219 15225 5890 35522960 301057 13.715 0.116 29.446650 -98.387361 +78220 15965 6446 24039165 54833 9.282 0.021 29.418151 -98.394314 +78221 35990 12326 78777065 4516406 30.416 1.744 29.278280 -98.479052 +78222 19408 7351 56693846 1239265 21.890 0.478 29.354940 -98.371889 +78223 50637 19205 107253256 4005360 41.411 1.546 29.311912 -98.390911 +78224 17601 5539 57289801 343261 22.120 0.133 29.305467 -98.531136 +78225 13025 4736 5082315 0 1.962 0.000 29.387986 -98.526019 +78226 6648 3087 18488195 39194 7.138 0.015 29.383778 -98.569940 +78227 46077 15919 35752347 159645 13.804 0.062 29.406624 -98.630303 +78228 58811 20497 28315693 214135 10.933 0.083 29.460646 -98.571279 +78229 28804 16311 14879257 22717 5.745 0.009 29.501708 -98.569451 +78230 39089 19136 26846023 182153 10.365 0.070 29.545289 -98.556564 +78231 7906 3380 10014566 767 3.867 0.000 29.578541 -98.541904 +78232 35120 16364 31136563 106491 12.022 0.041 29.588638 -98.474585 +78233 43710 17406 34013576 257773 13.133 0.100 29.556038 -98.360283 +78234 7126 924 11775739 8841 4.547 0.003 29.460597 -98.438554 +78235 357 159 2713808 8056 1.048 0.003 29.345246 -98.443874 +78236 10392 232 24485783 5408 9.454 0.002 29.391283 -98.618734 +78237 36929 11904 19089886 69098 7.371 0.027 29.421133 -98.570938 +78238 23514 9914 24885678 13643 9.608 0.005 29.471464 -98.617755 +78239 28736 10912 17190359 41275 6.637 0.016 29.518637 -98.362961 +78240 51111 25099 29307867 32894 11.316 0.013 29.525020 -98.606564 +78242 31395 9734 20232556 219262 7.812 0.085 29.350400 -98.607054 +78243 235 1 1269229 3786 0.490 0.001 29.371436 -98.593411 +78244 30757 10457 24167498 354645 9.331 0.137 29.474147 -98.348083 +78245 56511 18749 86038837 277755 33.220 0.107 29.400889 -98.730674 +78247 49176 18451 42513131 137921 16.414 0.053 29.585862 -98.406811 +78248 13638 5716 10152227 6774 3.920 0.003 29.590028 -98.525262 +78249 49951 19368 38478092 159488 14.856 0.062 29.565270 -98.619211 +78250 54903 19350 24896848 13817 9.613 0.005 29.503453 -98.664636 +78251 49435 18782 39312363 79687 15.179 0.031 29.462006 -98.676785 +78252 7372 1738 89550274 1999939 34.576 0.772 29.341337 -98.705628 +78253 29007 9817 140672829 179785 54.314 0.069 29.468805 -98.797710 +78254 44817 15250 70073843 145475 27.056 0.056 29.537782 -98.734752 +78255 10826 4098 47411732 57482 18.306 0.022 29.652350 -98.656213 +78256 6855 3147 22503004 35991 8.688 0.014 29.624725 -98.624048 +78257 3950 1931 100811687 450060 38.924 0.174 29.660485 -98.583454 +78258 40586 15921 41112464 17973 15.874 0.007 29.634097 -98.497426 +78259 22660 8360 35667290 89805 13.771 0.035 29.627214 -98.427068 +78260 24844 8665 57400269 133839 22.162 0.052 29.697453 -98.486728 +78261 13513 4870 77351033 91473 29.865 0.035 29.690514 -98.401812 +78263 4673 1799 94885435 10755909 36.635 4.153 29.364762 -98.304962 +78264 12339 4206 170883284 330842 65.978 0.128 29.200063 -98.492701 +78266 5591 2120 97347173 856714 37.586 0.331 29.656200 -98.339120 +78330 878 316 45283198 0 17.484 0.000 27.742626 -97.915651 +78332 28710 11023 1294416472 2616898 499.777 1.010 27.725998 -98.135459 +78335 4 4 633209 0 0.244 0.000 27.873028 -97.092196 +78336 11949 6067 126923194 31624523 49.005 12.210 27.926913 -97.177776 +78338 37 32 60788672 36103 23.471 0.014 26.911014 -97.773774 +78339 632 234 2575425 0 0.994 0.000 27.805059 -97.792233 +78340 379 298 56128247 38154276 21.671 14.731 28.120701 -97.196890 +78341 1760 995 634857352 19852 245.120 0.008 27.634419 -98.496692 +78342 386 152 4633707 0 1.789 0.000 27.659920 -98.075720 +78343 4525 1851 427801657 1149313 165.175 0.444 27.622119 -97.751430 +78344 474 217 311919370 0 120.433 0.000 27.480039 -98.864745 +78349 505 361 327049102 235296 126.274 0.091 27.373485 -98.285472 +78351 621 218 5555498 0 2.145 0.000 27.673154 -97.759701 +78352 179 88 4071784 0 1.572 0.000 27.962924 -97.679027 +78353 433 288 525786095 83344 203.007 0.032 26.880517 -98.216213 +78355 7081 3081 886896986 568225 342.433 0.219 27.194074 -98.207295 +78357 3161 1478 790528157 392640 305.225 0.152 27.835918 -98.628970 +78358 709 481 1363582 8782 0.526 0.003 28.067971 -97.042224 +78359 1944 711 6727677 0 2.598 0.000 27.923819 -97.287034 +78361 5350 2526 3006040597 1026064 1160.639 0.396 27.100448 -98.789966 +78362 9447 3891 49110914 1642558 18.962 0.634 27.867937 -97.202971 +78363 30463 11921 395936685 6176433 152.872 2.385 27.444204 -97.865597 +78368 9227 4317 560320287 56712614 216.341 21.897 28.103247 -97.808031 +78369 444 234 269344940 56507 103.995 0.022 27.365130 -98.996708 +78370 4877 1794 240394227 9087388 92.817 3.509 27.948129 -97.598732 +78371 404 254 557324768 1830931 215.184 0.707 27.615256 -98.946373 +78372 5452 2350 554922210 52972 214.257 0.020 27.986244 -98.060187 +78373 3585 4350 43104051 53163529 16.643 20.527 27.777437 -97.114983 +78374 16620 6482 123412013 1110963 47.650 0.429 27.892132 -97.384238 +78375 3352 1425 266665316 67164 102.960 0.026 27.396308 -98.171284 +78376 554 323 631041465 317253 243.646 0.122 27.421353 -98.514272 +78377 3821 1814 1188321337 46628923 458.813 18.004 28.351725 -97.154755 +78379 1585 861 210716561 24610450 81.358 9.502 27.306614 -97.780427 +78380 23141 8465 870042064 5002155 335.925 1.931 27.791253 -97.742139 +78382 19364 13152 260915906 176821456 100.740 68.271 28.132627 -97.062070 +78383 3539 2106 395952441 18150762 152.878 7.008 28.093161 -97.962915 +78384 6640 2591 1180903222 3935767 455.949 1.520 27.849558 -98.385775 +78385 277 113 530008919 5377711 204.638 2.076 27.139147 -97.901370 +78387 9574 3706 555410015 1097711 214.445 0.424 28.121597 -97.553013 +78389 1541 679 330015317 685 127.420 0.000 28.246189 -97.650894 +78390 5616 2235 442170449 14820868 170.723 5.722 27.997261 -97.327442 +78391 325 132 44973028 6550 17.364 0.003 28.179576 -97.708393 +78393 2379 1112 428326653 1066077 165.378 0.412 28.187086 -97.382251 +78401 5391 2379 5580455 920217 2.155 0.355 27.797802 -97.399067 +78402 536 496 2838614 0 1.096 0.000 27.819419 -97.392456 +78404 17236 7842 8046151 0 3.107 0.000 27.768021 -97.399135 +78405 16867 6289 13154232 0 5.079 0.000 27.774250 -97.438774 +78406 1413 357 33349400 0 12.876 0.000 27.771237 -97.518791 +78407 2955 1314 10475667 1705880 4.045 0.659 27.810698 -97.440395 +78408 12061 4689 11495250 0 4.438 0.000 27.794993 -97.446828 +78409 2939 1154 30721846 0 11.862 0.000 27.809474 -97.522886 +78410 26387 9842 59058217 908885 22.803 0.351 27.838247 -97.596306 +78411 28024 11653 15526662 14966 5.995 0.006 27.729894 -97.385247 +78412 36003 15470 22786171 5774173 8.798 2.229 27.703573 -97.345045 +78413 36953 15862 20785270 136772 8.025 0.053 27.683277 -97.406289 +78414 30165 11985 37156986 1930516 14.346 0.745 27.662514 -97.371365 +78415 39271 14265 268447635 258725 103.648 0.100 27.657870 -97.479816 +78416 15508 5540 7604013 0 2.936 0.000 27.752006 -97.436501 +78417 4176 1373 23586912 0 9.107 0.000 27.739630 -97.466820 +78418 29854 14739 112503190 96186498 43.438 37.138 27.627121 -97.269242 +78419 694 193 3332282 0 1.287 0.000 27.695151 -97.269443 +78501 61219 22489 39730145 11292 15.340 0.004 26.215816 -98.239592 +78503 21706 7188 44123957 429431 17.036 0.166 26.162344 -98.248700 +78504 48703 16823 45796472 0 17.682 0.000 26.271965 -98.236570 +78516 33722 11498 98519203 580317 38.038 0.224 26.144539 -98.121312 +78520 59408 19417 94546258 6399421 36.505 2.471 25.963264 -97.550453 +78521 93818 27808 241226803 72283359 93.138 27.909 25.943923 -97.317944 +78526 42460 12240 114031194 4455378 44.028 1.720 25.988942 -97.443582 +78535 581 196 3161926 10485 1.221 0.004 26.252832 -97.743596 +78536 451 209 154438803 0 59.629 0.000 26.649282 -98.451125 +78537 39454 13395 161806304 2459642 62.474 0.950 26.161900 -98.058657 +78538 10657 3127 183915090 9733741 71.010 3.758 26.374541 -97.980280 +78539 30783 11206 34051125 156205 13.147 0.060 26.280689 -98.183295 +78541 42431 13161 748608782 1593369 289.039 0.615 26.450369 -98.276935 +78542 63293 16056 439930290 275540 169.858 0.106 26.451477 -98.092002 +78543 8447 2635 15411506 0 5.950 0.000 26.297375 -97.999973 +78545 555 270 34328514 6393919 13.254 2.469 26.587174 -99.119871 +78548 675 233 10127733 0 3.910 0.000 26.274827 -98.654824 +78549 990 325 71708987 268853 27.687 0.104 26.454669 -98.035943 +78550 53152 19973 247625030 2542165 95.609 0.982 26.255523 -97.667502 +78552 34111 13636 127319534 1032874 49.158 0.399 26.196865 -97.750546 +78557 12547 3316 30180750 839573 11.653 0.324 26.111189 -98.241746 +78558 882 242 3512984 0 1.356 0.000 26.307831 -98.039361 +78559 12751 4726 91249977 2288215 35.232 0.883 26.148831 -97.831112 +78560 4368 1376 34984336 2671622 13.508 1.032 26.242813 -98.494493 +78561 779 214 4726336 103711 1.825 0.040 26.477435 -97.921496 +78562 2868 588 65556130 2800684 25.311 1.081 26.297669 -97.902485 +78563 376 159 672985244 200842 259.841 0.078 26.654283 -98.260022 +78564 270 220 160856780 36979489 62.107 14.278 26.678196 -99.103088 +78565 402 176 13769183 1198381 5.316 0.463 26.253727 -98.567191 +78566 16230 4770 297743004 133448577 114.959 51.525 26.148406 -97.370376 +78567 533 203 4773427 22186 1.843 0.009 26.052713 -97.740451 +78569 4039 1337 343906142 2486756 132.783 0.960 26.368214 -97.743570 +78570 32525 10191 193173663 2261158 74.585 0.873 26.174517 -97.912597 +78572 75221 28658 200792648 2910747 77.526 1.124 26.228735 -98.376166 +78573 34890 9749 88374788 131092 34.122 0.051 26.296434 -98.299977 +78574 57071 15155 152332320 0 58.816 0.000 26.318913 -98.370054 +78575 8056 2951 31914915 1374178 12.322 0.531 26.021760 -97.526109 +78576 8775 2236 99561190 8234 38.441 0.003 26.321607 -98.476164 +78577 70840 22936 82233396 275463 31.750 0.106 26.149684 -98.189714 +78578 12516 6314 155097378 66436180 59.883 25.651 26.051625 -97.312767 +78579 4580 1177 21710228 282233 8.382 0.109 26.083177 -97.962140 +78580 14963 4304 625935169 17964647 241.675 6.936 26.487740 -97.738953 +78582 40455 12346 1686210740 4721196 651.050 1.823 26.546335 -98.715803 +78583 6623 3225 228804999 13083059 88.342 5.051 26.261363 -97.489015 +78584 18128 6140 616662273 1631120 238.095 0.630 26.573299 -98.965905 +78585 396 176 26168668 822781 10.104 0.318 26.532550 -99.112986 +78586 55878 17456 456648972 20572203 176.313 7.943 26.106086 -97.629292 +78588 238 127 100822553 0 38.928 0.000 26.737863 -98.397207 +78589 38004 10747 53855323 0 20.794 0.000 26.167835 -98.154843 +78590 289 97 7137233 83730 2.756 0.032 26.508366 -97.647775 +78591 265 132 323202084 125027 124.789 0.048 26.582929 -98.521632 +78592 836 265 9044594 371129 3.492 0.143 26.062006 -97.846971 +78593 6324 1954 100867401 581674 38.945 0.225 26.275747 -97.823524 +78594 1990 707 4797388 39130 1.852 0.015 26.345257 -97.794892 +78595 6082 1692 38800301 0 14.981 0.000 26.291399 -98.545480 +78596 63844 21949 153734958 1944979 59.357 0.751 26.158622 -97.989155 +78597 2885 6767 23321128 315734935 9.004 121.906 26.235000 -97.271778 +78598 226 437 14624694 3796082 5.647 1.466 26.569308 -97.442331 +78602 25160 9845 501409011 9662778 193.595 3.731 30.123820 -97.327710 +78605 4952 2013 423571895 1027019 163.542 0.397 30.773295 -98.045180 +78606 5205 2660 633504095 1499742 244.597 0.579 30.083786 -98.476159 +78607 166 208 31611226 12724055 12.205 4.913 30.821753 -98.477388 +78608 434 237 99776750 365001 38.524 0.141 30.936006 -97.934579 +78609 2012 1558 60788621 32525423 23.471 12.558 30.759723 -98.438345 +78610 23502 8184 239275955 919588 92.385 0.355 30.078514 -97.838012 +78611 12977 6280 719339113 38087553 277.738 14.706 30.800718 -98.283025 +78612 11457 4274 243038259 1463995 93.838 0.565 30.094098 -97.495104 +78613 65099 24120 72746761 365945 28.088 0.141 30.503949 -97.824200 +78614 456 236 130506566 7445 50.389 0.003 29.410410 -97.587174 +78615 1290 559 135896425 1199396 52.470 0.463 30.465454 -97.384111 +78616 7092 2573 284689372 685975 109.919 0.265 29.940066 -97.568294 +78617 22210 6027 179717734 1188267 69.389 0.459 30.150985 -97.607312 +78618 324 291 427869247 390470 165.201 0.151 30.465163 -99.156225 +78619 3026 1259 99103227 0 38.264 0.000 30.111915 -98.033573 +78620 14367 5633 442905661 1136277 171.007 0.439 30.224134 -98.134815 +78621 21659 7955 484332278 2480793 187.002 0.958 30.338584 -97.361224 +78622 296 126 2139161 30818 0.826 0.012 29.754521 -97.775837 +78623 813 428 53156808 84773 20.524 0.033 29.971139 -98.228231 +78624 21513 10926 1833817930 6701956 708.041 2.588 30.280938 -98.876683 +78626 25996 9146 240988906 2001263 93.046 0.773 30.659122 -97.618195 +78628 23727 9532 190058119 3313804 73.382 1.279 30.647924 -97.753177 +78629 11887 4989 1101753047 5603128 425.389 2.163 29.476954 -97.448924 +78631 2395 1351 841937027 488677 325.074 0.189 30.339770 -99.306580 +78632 910 508 249358182 505620 96.278 0.195 29.696110 -97.470663 +78633 19349 9428 213074925 3298238 82.269 1.273 30.747660 -97.758071 +78634 22791 7884 164868324 1051713 63.656 0.406 30.560042 -97.546124 +78635 149 82 41284692 107773 15.940 0.042 30.182914 -98.566548 +78636 3749 2019 905690423 7174612 349.689 2.770 30.315196 -98.423509 +78638 2005 923 296713119 936770 114.562 0.362 29.659595 -97.785202 +78639 7334 4666 113699046 7114694 43.899 2.747 30.672818 -98.442748 +78640 42954 13673 237402513 2187541 91.662 0.845 29.999103 -97.828207 +78641 44295 15749 327562016 5229126 126.472 2.019 30.562551 -97.907897 +78642 9467 3484 259250810 1159094 100.097 0.448 30.690880 -97.941426 +78643 6139 4003 1823714940 14702250 704.140 5.677 30.688543 -98.689889 +78644 17081 6178 483329667 1847143 186.615 0.713 29.871471 -97.676772 +78645 9773 5698 81769244 16672062 31.571 6.437 30.449996 -97.971806 +78648 7683 3112 376887160 1805638 145.517 0.697 29.690184 -97.633555 +78650 1599 776 172543341 488366 66.619 0.189 30.303885 -97.218899 +78652 4466 1823 44786005 0 17.292 0.000 30.132806 -97.874687 +78653 16375 5532 271878667 1298449 104.973 0.501 30.339696 -97.523512 +78654 17553 8662 518487146 25967334 200.189 10.026 30.581216 -98.208732 +78655 2739 1100 92420333 564687 35.684 0.218 29.816002 -97.835042 +78656 2271 833 55560781 304458 21.452 0.118 29.904758 -97.807296 +78657 5509 4381 102195236 8414597 39.458 3.249 30.530900 -98.377752 +78659 2903 1363 294267606 1018576 113.617 0.393 30.207417 -97.125389 +78660 68789 23950 117317488 63757 45.297 0.025 30.438534 -97.594580 +78661 335 128 6583869 177873 2.542 0.069 29.728332 -97.756438 +78662 2268 1012 206747913 96503 79.826 0.037 29.932072 -97.411709 +78663 746 442 318789418 1793889 123.085 0.693 30.402261 -98.359569 +78664 52932 19894 42896074 243742 16.562 0.094 30.501747 -97.647206 +78665 35985 12870 48574015 774191 18.755 0.299 30.543356 -97.645590 +78666 63836 24433 457268418 2434051 176.552 0.940 29.880162 -97.966164 +78669 8731 4752 361644669 23918120 139.632 9.235 30.430044 -98.112655 +78670 168 75 7359124 94070 2.841 0.036 29.773950 -97.816740 +78671 654 354 120470917 1242706 46.514 0.480 30.219091 -98.629253 +78672 931 936 34293215 9859899 13.241 3.807 30.858836 -98.469511 +78675 188 142 194898862 318760 75.251 0.123 30.437069 -98.708714 +78676 12602 6393 437638949 236329 168.973 0.091 30.034449 -98.142776 +78677 92 42 66474013 0 25.666 0.000 29.349952 -97.580206 +78681 50606 17971 56272290 398124 21.727 0.154 30.534355 -97.725618 +78701 6841 5036 4225636 263055 1.632 0.102 30.270569 -97.742589 +78702 21334 9032 12945838 491697 4.998 0.190 30.263378 -97.714483 +78703 19690 10425 14451214 722351 5.580 0.279 30.293268 -97.766050 +78704 42117 23575 22545278 286587 8.705 0.111 30.243032 -97.765081 +78705 31340 11265 5687340 0 2.196 0.000 30.294333 -97.738517 +78712 860 0 824715 0 0.318 0.000 30.282173 -97.731003 +78717 22538 9055 33330352 218230 12.869 0.084 30.492379 -97.748312 +78719 1764 586 48311283 2110 18.653 0.001 30.183798 -97.684275 +78721 11425 4153 9616066 46866 3.713 0.018 30.269969 -97.683557 +78722 5901 3034 3922403 0 1.514 0.000 30.289963 -97.714696 +78723 28330 12398 17971826 0 6.939 0.000 30.304265 -97.685722 +78724 21696 6138 63183777 5117792 24.395 1.976 30.297099 -97.617767 +78725 6083 1978 45515870 1828078 17.574 0.706 30.230283 -97.608521 +78726 13122 5910 28152254 34415 10.870 0.013 30.430749 -97.840085 +78727 26689 12984 22212535 879 8.576 0.000 30.429937 -97.717796 +78728 20299 10240 21002465 47256 8.109 0.018 30.452674 -97.689368 +78729 27108 13284 23892699 138740 9.225 0.054 30.458396 -97.755344 +78730 7955 3647 37269755 1196694 14.390 0.462 30.370456 -97.835844 +78731 24614 12984 22253088 551387 8.592 0.213 30.348236 -97.768136 +78732 14060 5033 34322161 7904823 13.252 3.052 30.377889 -97.895023 +78733 8762 3122 29670128 711252 11.456 0.275 30.321025 -97.884751 +78734 17655 8345 51899338 11131728 20.038 4.298 30.378350 -97.951209 +78735 16131 7572 53222108 502 20.549 0.000 30.268138 -97.869190 +78736 6946 2806 75077422 0 28.988 0.000 30.261084 -97.959435 +78737 12081 4395 98923962 4561 38.195 0.002 30.190321 -97.956989 +78738 12134 4799 43968609 285113 16.976 0.110 30.319748 -97.958224 +78739 16792 5537 29613883 0 11.434 0.000 30.178419 -97.888662 +78741 44935 20500 19675268 557550 7.597 0.215 30.230475 -97.714082 +78742 820 322 14853922 524663 5.735 0.203 30.242354 -97.659200 +78744 42820 13720 55420088 12136 21.398 0.005 30.177014 -97.725888 +78745 55614 25749 34577796 0 13.351 0.000 30.206844 -97.797420 +78746 26928 11520 58258653 2362500 22.494 0.912 30.295424 -97.808350 +78747 14808 5491 61578835 15434 23.776 0.006 30.126966 -97.739969 +78748 40651 16857 32825971 3309 12.674 0.001 30.167110 -97.823998 +78749 34449 14857 26078450 456 10.069 0.000 30.216168 -97.856006 +78750 26814 11723 34704358 577 13.399 0.000 30.418557 -97.802545 +78751 14385 8375 6208225 0 2.397 0.000 30.310783 -97.722757 +78752 18064 7944 8658632 0 3.343 0.000 30.331818 -97.704294 +78753 49301 19630 28404279 0 10.967 0.000 30.382481 -97.673467 +78754 15036 6492 34325144 7168 13.253 0.003 30.355657 -97.644682 +78756 7194 4396 4329936 0 1.672 0.000 30.322230 -97.740167 +78757 21310 10898 12731650 0 4.916 0.000 30.351538 -97.732571 +78758 44072 19577 24044717 0 9.284 0.000 30.387980 -97.706853 +78759 38891 20640 36045451 0 13.917 0.000 30.402654 -97.761064 +78801 21780 8463 2110801453 7442110 814.985 2.873 29.362904 -99.898132 +78802 242 92 31396828 85717 12.122 0.033 29.151012 -100.015870 +78827 1219 592 264023556 1896467 101.940 0.732 28.421951 -99.733002 +78828 258 279 462348154 1055715 178.514 0.408 29.867563 -100.018530 +78829 1207 523 1349778814 2638028 521.153 1.019 28.888748 -99.562652 +78830 786 413 532345994 1585143 205.540 0.612 28.524903 -99.508480 +78832 3598 1932 2809546767 8629293 1084.772 3.332 29.395621 -100.439985 +78833 1299 824 629688099 877800 243.124 0.339 29.674700 -100.078588 +78834 7829 3244 1441878509 5771497 556.712 2.228 28.453936 -99.918204 +78836 128 84 550044196 2043052 212.373 0.789 28.301642 -99.704277 +78837 281 263 2148777851 36329490 829.648 14.027 29.837220 -101.212436 +78838 275 181 116570799 773683 45.008 0.299 29.536636 -99.746893 +78839 8578 3011 930688777 4985246 359.341 1.925 28.718319 -99.823476 +78840 48149 18118 2464280053 110436839 951.464 42.640 29.729903 -100.881337 +78843 336 14 12444363 108314 4.805 0.042 29.358523 -100.777486 +78850 1145 590 697075858 3697288 269.143 1.428 29.285285 -99.329182 +78851 23 31 1154405279 40867 445.718 0.016 30.028067 -101.970461 +78852 53040 16910 1482697476 16051377 572.473 6.197 28.745217 -100.311368 +78860 229 105 130817033 910522 50.509 0.352 28.476396 -100.276888 +78861 13701 4887 1192326766 3160706 460.360 1.220 29.427375 -99.141134 +78870 984 455 305538598 1839104 117.969 0.710 29.303817 -99.630829 +78871 45 95 1120874047 5530581 432.772 2.135 30.006991 -101.654794 +78872 1905 751 478732028 1807577 184.839 0.698 28.926375 -99.865266 +78873 1788 1444 588834320 1028673 227.350 0.397 29.815503 -99.727201 +78877 989 441 154584784 3089068 59.686 1.193 28.951173 -100.593386 +78879 264 223 117186942 265300 45.246 0.102 29.644470 -99.682471 +78880 1682 1304 4424019509 4168370 1708.124 1.609 29.988092 -100.286076 +78881 2335 1099 634475765 3000917 244.972 1.159 29.383670 -99.529697 +78883 353 304 196781535 497926 75.978 0.192 29.678291 -99.316592 +78884 1158 818 629411039 1075910 243.017 0.415 29.606582 -99.456287 +78885 120 151 200911849 191590 77.573 0.074 29.808690 -99.540450 +78886 647 331 255474790 1101135 98.639 0.425 29.135837 -99.168888 +78931 323 183 44324364 394638 17.114 0.152 30.024253 -96.451051 +78932 757 527 141119943 1707299 54.487 0.659 30.164577 -96.705271 +78933 1433 785 279804384 2503167 108.033 0.966 29.790645 -96.359065 +78934 6712 3281 496957007 7542084 191.876 2.912 29.693447 -96.557401 +78935 978 452 176349084 3268855 68.089 1.262 29.695979 -96.425460 +78938 471 293 57057098 932160 22.030 0.360 29.806557 -96.686537 +78940 2098 1439 348587960 12103368 134.591 4.673 29.930627 -96.662607 +78941 2962 1666 404766115 420108 156.281 0.162 29.727617 -97.158450 +78942 8989 3712 532605456 2320934 205.640 0.896 30.167624 -96.923038 +78943 352 145 15051645 275719 5.811 0.106 29.708998 -96.615598 +78944 562 316 41336778 351629 15.960 0.136 30.014637 -96.507905 +78945 10494 5374 652993485 7815393 252.122 3.018 29.912324 -96.889562 +78946 960 638 249415367 7514314 96.300 2.901 30.188404 -96.778992 +78947 4475 2149 553611493 3218720 213.751 1.243 30.420154 -97.035831 +78948 850 438 166619754 646721 64.332 0.250 30.321105 -96.976365 +78949 517 382 206439048 287350 79.707 0.111 29.833182 -97.087403 +78950 2038 1278 285553464 2387308 110.253 0.922 29.904948 -96.482617 +78951 26 23 5570393 0 2.151 0.000 29.587283 -96.824373 +78953 934 503 237068113 536865 91.533 0.207 29.844013 -97.357996 +78954 1071 908 194696144 1695901 75.173 0.655 30.043016 -96.699188 +78956 5381 2876 437241367 113472 168.820 0.044 29.686278 -96.933605 +78957 9067 4354 484811743 5373490 187.187 2.075 30.013899 -97.182148 +78959 1837 969 404638833 557662 156.232 0.215 29.700745 -97.301328 +78962 4733 2560 503599772 1571370 194.441 0.607 29.658460 -96.732546 +78963 909 468 107731315 1146775 41.595 0.443 29.916920 -97.028763 +79001 249 160 1066833512 396975 411.907 0.153 35.339757 -102.794987 +79003 162 83 102560399 64519 39.599 0.025 35.581845 -100.068724 +79005 1735 639 514326861 50272 198.583 0.019 36.380233 -100.507442 +79007 14542 6873 115292839 168880 44.515 0.065 35.706837 -101.398793 +79009 2166 756 300087170 1374725 115.864 0.531 34.533282 -102.879628 +79010 802 235 451609391 488682 174.367 0.189 35.450973 -102.140605 +79011 236 132 309655874 1987055 119.559 0.767 35.639883 -100.231215 +79012 976 316 172609346 199324 66.645 0.077 35.270514 -102.109125 +79013 3423 987 12184300 199584 4.704 0.077 36.038774 -102.003110 +79014 3771 1617 2443244028 11458430 943.342 4.424 35.908257 -100.285338 +79015 19277 8048 993720993 4633988 383.678 1.789 34.937472 -101.916036 +79016 94 0 30408 0 0.012 0.000 34.983347 -101.918740 +79018 548 248 953560146 449983 368.172 0.174 35.748254 -102.213391 +79019 1707 786 1387975786 7492296 535.900 2.893 35.007100 -101.394035 +79021 138 58 44267825 0 17.092 0.000 33.984844 -102.027747 +79022 10741 3951 4961546574 4461840 1915.664 1.723 36.098587 -102.603518 +79024 405 205 150723652 33582 58.195 0.013 36.439773 -100.369084 +79025 69 34 33458417 0 12.918 0.000 34.940988 -102.205885 +79027 5223 2021 780765234 5218146 301.455 2.015 34.408048 -102.419542 +79029 16177 5926 779226045 1779150 300.861 0.687 35.901966 -102.025897 +79031 1425 606 301161530 354722 116.279 0.137 34.270256 -102.449583 +79032 157 70 50095163 0 19.342 0.000 34.282885 -101.941418 +79033 109 52 30483967 0 11.770 0.000 36.330040 -100.983997 +79034 637 331 761796337 46274 294.131 0.018 36.359771 -100.157216 +79035 5309 1935 1734031300 5980027 669.513 2.309 34.690472 -102.784877 +79036 5128 2555 165988112 9822144 64.088 3.792 35.612828 -101.547377 +79039 779 409 579903001 1623080 223.902 0.627 35.259837 -101.096311 +79040 1839 771 1402240737 465160 541.408 0.180 36.324086 -101.559664 +79041 3194 1324 687550452 37180 265.465 0.014 34.043255 -101.931966 +79042 1169 558 1110988976 6599006 428.955 2.548 34.741334 -101.906795 +79043 1487 563 374567487 2133490 144.621 0.824 34.370661 -102.131315 +79044 766 269 506908896 144376 195.719 0.056 35.863447 -102.367722 +79045 19473 7102 3161925595 5039364 1220.826 1.946 34.914806 -102.554528 +79046 489 276 414866431 121168 160.181 0.047 36.163536 -100.121753 +79051 29 22 91458344 50866 35.312 0.020 36.483086 -102.259356 +79052 1259 553 467549351 4354066 180.522 1.681 34.361819 -101.742898 +79053 137 63 50092726 815187 19.341 0.315 34.408017 -102.579402 +79054 594 327 104254803 402766 40.253 0.156 35.374819 -100.821516 +79056 63 56 106028549 12140 40.938 0.005 36.223812 -100.211576 +79057 1206 654 996784006 2470690 384.860 0.954 35.246000 -100.642178 +79058 10 8 105712922 0 40.816 0.000 35.579500 -101.855136 +79059 837 399 1254750300 153591 484.462 0.059 35.830763 -100.765905 +79061 316 196 420227431 961084 162.251 0.371 35.524915 -100.442492 +79062 218 107 231510509 281931 89.387 0.109 36.030624 -101.529403 +79063 686 266 246718230 1424397 95.258 0.550 34.531086 -102.096270 +79064 2739 1097 378232915 41981 146.037 0.016 34.195479 -102.119153 +79065 20840 9230 1268614641 3626504 489.815 1.400 35.541234 -100.906572 +79068 3197 1346 1020031532 5483676 393.836 2.117 35.346662 -101.444262 +79070 9919 3912 1977463650 1288580 763.503 0.498 36.270658 -100.795007 +79072 28849 10407 991064392 274328 382.652 0.106 34.169757 -101.733850 +79078 377 225 58869181 8116523 22.730 3.134 35.720328 -101.580421 +79079 2646 1469 1387329084 437516 535.651 0.169 35.208980 -100.242918 +79080 605 336 445038070 165945 171.830 0.064 35.748650 -101.213702 +79081 3912 1627 1666582939 1036865 643.471 0.400 36.241620 -101.218409 +79082 315 162 218344700 0 84.303 0.000 34.224256 -102.287745 +79083 2661 1203 821781027 594829 317.291 0.230 35.886172 -101.515093 +79084 2366 956 1385903387 318369 535.100 0.123 36.276881 -101.996725 +79085 53 35 3016821 0 1.165 0.000 34.740717 -102.514426 +79086 2105 865 528544601 279850 204.072 0.108 36.041780 -101.768389 +79087 751 318 626082808 3100740 241.732 1.197 36.287379 -102.911789 +79088 5945 2368 1491715069 15786039 575.954 6.095 34.580896 -101.697218 +79091 147 62 50092674 6549010 19.341 2.529 34.897796 -102.126227 +79092 1106 518 746592093 866560 288.261 0.335 35.312969 -102.446391 +79093 69 40 79504580 0 30.697 0.000 36.289912 -101.033947 +79094 75 40 258088422 1262708 99.649 0.488 34.840077 -101.509700 +79095 2686 1308 963356559 1209746 371.954 0.467 34.904040 -100.208260 +79096 2229 975 628198694 467701 242.549 0.181 35.437391 -100.196706 +79097 1150 528 308433504 3480965 119.087 1.344 35.435886 -101.178360 +79098 517 211 549277467 530741 212.077 0.205 35.153350 -102.216656 +79101 2817 1559 4145842 0 1.601 0.000 35.206030 -101.839602 +79102 9963 4462 6893784 0 2.662 0.000 35.196340 -101.866250 +79103 10594 3823 13319095 40238 5.143 0.016 35.177308 -101.794475 +79104 7869 2773 9927913 111504 3.833 0.043 35.202967 -101.788728 +79105 6 3 44381357 123123 17.136 0.048 35.691238 -101.820831 +79106 27967 12871 24246192 19836 9.362 0.008 35.203066 -101.895003 +79107 33844 11871 43437215 1212651 16.771 0.468 35.230592 -101.802502 +79108 17726 5064 428469417 5598489 165.433 2.162 35.307898 -101.690933 +79109 43516 20968 27055809 151017 10.446 0.058 35.166416 -101.886423 +79110 18811 7453 14486450 165314 5.593 0.064 35.144451 -101.878122 +79111 1808 503 28328728 742915 10.938 0.287 35.220537 -101.708143 +79118 19726 7615 440073898 10636407 169.913 4.107 35.106367 -101.739911 +79119 11539 4830 262771671 5377548 101.457 2.076 35.109084 -102.017887 +79121 6575 3073 4793539 0 1.851 0.000 35.174715 -101.929750 +79124 7819 3225 233474614 97857 90.145 0.038 35.262174 -101.965268 +79201 7040 2909 2228484119 44290694 860.423 17.101 34.437766 -100.280962 +79220 197 151 498146608 1831679 192.335 0.707 33.753501 -100.794632 +79225 976 516 382877518 423205 147.830 0.163 34.255931 -99.515204 +79226 3153 1848 2210331869 14107560 853.414 5.447 34.900760 -100.994549 +79227 1406 853 2220502622 16739096 857.341 6.463 33.899813 -99.773497 +79229 424 264 560541978 752527 216.426 0.291 33.665706 -100.676563 +79230 158 82 165498407 275228 63.899 0.106 34.702273 -100.069222 +79231 45 26 34409275 0 13.285 0.000 33.906379 -101.070036 +79233 180 118 200515478 8455595 77.419 3.265 34.520996 -100.525648 +79234 110 78 306153015 16467 118.206 0.006 34.230443 -100.935228 +79235 3833 1811 1492052163 352764 576.085 0.136 33.961846 -101.246139 +79236 262 167 993201239 3674994 383.477 1.419 33.710684 -100.384217 +79237 513 299 499905589 1383726 193.015 0.534 34.918283 -100.645545 +79239 211 172 515215764 21720887 198.926 8.386 34.655623 -100.763893 +79240 60 41 18829108 332364 7.270 0.128 34.886066 -100.779931 +79241 2480 1104 883796814 601287 341.236 0.232 34.178502 -101.384912 +79243 90 62 137155726 148979 52.956 0.058 33.774479 -100.990114 +79244 720 449 519628546 342156 200.630 0.132 34.030397 -100.843759 +79245 2476 1335 674020690 5298518 260.241 2.046 34.857258 -100.512868 +79247 64 39 19693204 0 7.604 0.000 34.329813 -99.409069 +79248 1493 941 1546589603 2481992 597.142 0.958 33.994322 -100.287247 +79250 1508 686 464376695 254088 179.297 0.098 33.877689 -101.594755 +79251 45 34 157695626 79439 60.887 0.031 34.943421 -100.451566 +79252 3202 1928 1408428690 1820419 543.797 0.703 34.304335 -99.818916 +79255 571 357 519650129 912910 200.638 0.352 34.349913 -101.050762 +79256 319 202 451541282 47960 174.341 0.019 33.900389 -100.745875 +79257 1067 593 1050982869 1225907 405.787 0.473 34.457478 -101.287161 +79258 67 39 83532253 8575 32.252 0.003 34.228291 -101.288735 +79259 48 43 231139120 621261 89.243 0.240 34.398492 -100.472927 +79261 527 360 586469264 6651370 226.437 2.568 34.447226 -100.809848 +79311 3445 1421 449247065 562570 173.455 0.217 33.857882 -101.881538 +79312 971 442 227640214 64975 87.892 0.025 34.019064 -102.419954 +79313 1571 697 340308322 0 131.394 0.000 33.804892 -102.162291 +79314 56 38 41457216 0 16.007 0.000 33.584900 -103.014509 +79316 11451 4319 1210217788 2127209 467.268 0.821 33.137907 -102.326183 +79322 2049 919 783577162 25466 302.541 0.010 33.634566 -101.180116 +79323 6559 2409 596650010 34329 230.368 0.013 32.945746 -102.869403 +79324 61 28 183668442 0 70.915 0.000 33.897884 -102.682490 +79325 2319 928 461726788 2085746 178.274 0.805 34.424608 -102.943742 +79326 40 26 99606447 0 38.458 0.000 34.077938 -102.216144 +79329 3300 1297 242579619 1034222 93.661 0.399 33.715143 -101.674963 +79330 114 286 470330310 3561855 181.596 1.375 33.040784 -101.224946 +79331 13258 4966 1936167883 2951717 747.559 1.140 32.695214 -102.009570 +79336 16972 6830 1119157119 14789 432.109 0.006 33.603903 -102.398414 +79339 7230 3175 718104649 99529 277.262 0.038 33.886503 -102.336677 +79342 352 154 247766678 0 95.663 0.000 32.908208 -102.336600 +79343 1571 692 353510790 591985 136.491 0.229 33.658671 -101.531037 +79344 56 28 39016783 0 15.064 0.000 33.844961 -102.930411 +79345 920 378 491473963 221555 189.759 0.086 33.337542 -102.331350 +79346 2427 1065 1000270555 0 386.207 0.000 33.648086 -102.824958 +79347 7462 2885 1830011667 2843232 706.571 1.098 34.172560 -102.789410 +79350 392 164 3735295 51337 1.442 0.020 33.731820 -101.825789 +79351 1326 632 841039394 1493981 324.727 0.577 32.927010 -101.764414 +79353 10 8 31950965 377188 12.336 0.146 33.783518 -102.581946 +79355 1942 801 1121657947 0 433.075 0.000 33.181664 -102.876731 +79356 6363 1945 1924900113 3348044 743.208 1.293 33.285890 -101.339267 +79357 2303 1004 565165007 6652 218.211 0.003 33.611886 -101.404701 +79358 1116 472 281139669 25135 108.549 0.010 33.442185 -102.195033 +79359 2899 1150 547820460 44284 211.515 0.017 32.971141 -102.586555 +79360 13574 4721 2200427254 64447 849.590 0.025 32.689820 -102.724661 +79363 5369 2066 299760996 1259259 115.738 0.486 33.706516 -102.043175 +79364 8172 3485 510706901 791239 197.185 0.305 33.452572 -101.644174 +79366 1096 477 2106199 400606 0.813 0.155 33.530315 -101.685343 +79367 645 269 82025737 0 31.670 0.000 33.621453 -102.190786 +79369 88 52 33669014 0 13.000 0.000 33.955743 -102.145171 +79370 1889 1082 1058878172 9919809 408.835 3.830 33.506923 -100.907042 +79371 1317 592 728089826 139271 281.117 0.054 33.952621 -102.966213 +79372 1434 569 34204578 0 13.206 0.000 33.434243 -102.488401 +79373 3307 1502 1123403938 2961109 433.749 1.143 33.173872 -101.832563 +79376 95 43 291303905 0 112.473 0.000 33.233860 -102.673107 +79377 277 131 69429585 9240 26.807 0.004 32.929648 -102.133506 +79378 236 109 53621492 112056 20.703 0.043 33.058133 -102.474677 +79379 666 262 186325390 0 71.941 0.000 33.510507 -102.646422 +79380 197 86 26370126 0 10.182 0.000 33.735629 -102.332216 +79381 1263 532 336337119 861753 129.860 0.333 33.315959 -101.769604 +79382 6291 2397 123534224 538066 47.697 0.208 33.455287 -102.014055 +79401 8408 3974 7128885 25940 2.752 0.010 33.588771 -101.850444 +79403 16869 6483 341928427 1854490 132.019 0.716 33.643503 -101.775450 +79404 11289 4018 74594256 1946380 28.801 0.752 33.527702 -101.793717 +79406 6025 3 2532314 4724 0.978 0.002 33.585909 -101.878382 +79407 19068 8480 183291905 460824 70.769 0.178 33.566862 -102.079243 +79410 9429 4390 6244597 101950 2.411 0.039 33.570071 -101.891011 +79411 7951 3575 3853057 0 1.488 0.000 33.570034 -101.857733 +79412 15650 6019 8073862 57932 3.117 0.022 33.546383 -101.856516 +79413 21187 9211 12376682 209095 4.779 0.081 33.547402 -101.885644 +79414 17121 8054 8199174 95824 3.166 0.037 33.547794 -101.920230 +79415 17689 7143 171522690 803540 66.225 0.310 33.701386 -101.897836 +79416 32296 13937 83257147 751185 32.146 0.290 33.600102 -101.982772 +79423 32277 13477 156688931 834008 60.498 0.322 33.439976 -101.855463 +79424 39023 16483 108097803 812280 41.737 0.314 33.468334 -101.947690 +79501 3528 1647 515684107 2730720 199.107 1.054 32.747863 -99.905394 +79502 1350 814 1690405434 8616771 652.669 3.327 33.183064 -100.245133 +79503 175 131 205722925 656663 79.430 0.254 32.868619 -99.694492 +79504 2787 1480 971440680 1601265 375.075 0.618 32.335802 -99.350571 +79505 296 155 480999688 1241077 185.715 0.479 33.577449 -99.811884 +79506 730 774 473826890 9585319 182.946 3.701 32.106426 -100.313408 +79508 1242 564 30830387 0 11.904 0.000 32.274081 -99.826041 +79510 7982 3683 710410439 5762953 274.291 2.225 32.266400 -99.518879 +79511 1338 654 466810194 1164260 180.236 0.450 32.415915 -101.250314 +79512 8197 3449 1488229172 12565336 574.609 4.852 32.314505 -100.918356 +79517 200 113 573381218 1525620 221.384 0.589 32.879511 -101.246784 +79518 124 108 351510639 68474 135.719 0.026 33.341053 -100.714732 +79519 74 52 78436790 410263 30.285 0.158 32.052075 -99.694650 +79520 2449 1231 504394246 3583322 194.748 1.384 32.857004 -100.124032 +79521 3980 2209 807756227 18055725 311.876 6.971 33.122685 -99.650389 +79525 2842 1205 242794207 466933 93.743 0.180 32.630473 -99.830642 +79526 979 509 567879153 751200 219.259 0.290 32.636295 -100.716880 +79527 251 178 244524716 2312724 94.412 0.893 32.593166 -101.059442 +79528 619 348 912118654 435683 352.171 0.168 33.192636 -100.893642 +79529 1383 714 230966903 1237478 89.177 0.478 33.431837 -99.853667 +79530 480 257 89359041 882246 34.502 0.341 32.120249 -99.753027 +79532 940 480 319955048 62528 123.535 0.024 32.404869 -100.711396 +79533 472 298 373020673 855528 144.024 0.330 32.857130 -99.551961 +79534 181 121 155960642 286424 60.217 0.111 32.764330 -100.211993 +79535 183 121 364948060 64401 140.907 0.025 32.223438 -100.479835 +79536 4988 2264 820114358 794235 316.648 0.307 32.473621 -100.032723 +79537 111 67 201808276 0 77.919 0.000 32.291861 -100.210748 +79538 271 200 177486965 549906 68.528 0.212 31.970613 -99.684164 +79539 178 125 97015740 0 37.458 0.000 33.361114 -99.876875 +79540 89 67 141316478 432870 54.563 0.167 33.169164 -100.040999 +79541 791 384 408521466 809710 157.731 0.313 32.150183 -99.810552 +79543 1186 584 425346681 1228375 164.227 0.474 32.714330 -100.407773 +79544 512 318 213819816 0 82.556 0.000 33.301509 -99.852900 +79545 1788 816 589990336 301605 227.797 0.116 32.415212 -100.573539 +79546 2006 1123 931079715 1943443 359.492 0.750 32.891818 -100.498206 +79547 758 485 202658789 27330 78.247 0.011 33.197744 -99.905443 +79548 174 112 236742842 17157 91.407 0.007 33.049768 -99.918963 +79549 15652 6342 2476890651 3001959 956.333 1.159 32.887589 -100.841389 +79553 3469 1794 430567938 1118159 166.243 0.432 32.940911 -99.850964 +79556 12995 6038 787992323 4805905 304.246 1.856 32.458787 -100.357939 +79560 137 106 195426740 613717 75.455 0.237 32.664859 -100.212875 +79561 662 336 324572567 934280 125.318 0.361 32.515445 -100.195108 +79562 3669 1510 300713883 2270772 116.106 0.877 32.236251 -99.866451 +79563 1161 505 42391950 33568 16.368 0.013 32.415823 -99.906230 +79565 295 148 233982935 46677 90.341 0.018 32.397372 -101.087816 +79566 333 220 409437689 1026993 158.085 0.397 32.115508 -100.132071 +79567 3373 1781 817361251 3839802 315.585 1.483 31.972430 -99.950305 +79601 25085 9122 644897723 14492536 248.996 5.596 32.576489 -99.665323 +79602 21519 8917 297316691 3006792 114.795 1.161 32.335677 -99.667488 +79603 24288 9590 151258153 98308 58.401 0.038 32.333551 -99.927724 +79605 30098 13083 28411178 73488 10.970 0.028 32.434599 -99.781827 +79606 22885 10241 161798900 449181 62.471 0.173 32.362783 -99.817314 +79607 2865 673 9820617 77954 3.792 0.030 32.430350 -99.832641 +79699 321 48 246691 0 0.095 0.000 32.462235 -99.715894 +79701 27728 10310 30795660 0 11.890 0.000 31.992384 -102.081464 +79703 20592 7671 17336262 0 6.694 0.000 31.979427 -102.132366 +79705 33536 13678 92112978 0 35.565 0.000 32.051211 -102.059634 +79706 19571 7135 1926761867 3602238 743.927 1.391 31.848988 -102.005075 +79707 32854 14370 183305531 566802 70.775 0.219 32.053604 -102.201660 +79713 592 242 425261991 48842 164.195 0.019 32.489818 -101.754488 +79714 14786 5813 1990106443 101668 768.384 0.039 32.335729 -102.697303 +79718 721 428 792187310 2398025 305.865 0.926 31.004969 -103.759065 +79719 397 204 49535538 50799 19.126 0.020 31.460655 -103.404137 +79720 33640 12529 2359428075 8057282 910.980 3.111 32.253541 -101.472640 +79730 250 113 333658802 0 128.826 0.000 31.169523 -103.085134 +79731 4193 1563 853089041 218836 329.380 0.084 31.422796 -102.487774 +79733 210 86 4740766 0 1.830 0.000 32.102911 -101.365434 +79734 2137 1480 3350902060 119568 1293.791 0.046 30.686139 -103.960150 +79735 13315 4574 4487970069 92162 1732.815 0.036 30.747459 -102.790792 +79738 275 135 833166598 2343587 321.687 0.905 32.748999 -101.484963 +79739 963 443 1371056837 1099899 529.368 0.425 31.763075 -101.501775 +79741 288 137 543160371 3214364 209.715 1.241 31.969312 -102.630882 +79742 490 232 151446038 0 58.474 0.000 31.342040 -102.868447 +79743 339 175 639951833 2310658 247.087 0.892 31.186888 -102.596253 +79744 1362 607 1387148197 0 535.581 0.000 30.922010 -101.970268 +79745 6125 2601 1014532044 133392 391.713 0.052 31.831415 -103.055986 +79748 173 69 143167070 217408 55.277 0.084 32.408946 -101.647745 +79749 255 94 169422495 0 65.414 0.000 32.289048 -101.871764 +79752 2245 1030 568198859 65 219.383 0.000 31.227747 -102.162001 +79754 80 48 413049528 240848 159.479 0.093 31.803547 -103.599914 +79755 230 110 813150614 417117 313.959 0.161 31.517628 -101.918007 +79756 9066 3898 448779617 48821 173.275 0.019 31.540255 -102.844644 +79758 2197 912 136818032 480976 52.826 0.186 32.001129 -102.312423 +79759 23 15 505432836 857352 195.149 0.331 31.799171 -102.632933 +79761 30488 12357 26391291 7665 10.190 0.003 31.855051 -102.350647 +79762 39056 16265 82021614 601804 31.669 0.232 31.925304 -102.357792 +79763 34079 12309 140626947 541052 54.296 0.209 31.799158 -102.474090 +79764 20725 7724 150867031 375615 58.250 0.145 31.866262 -102.537544 +79765 6927 2764 53463355 474055 20.642 0.183 31.906736 -102.262348 +79766 6115 1801 616254967 3791040 237.937 1.464 31.725171 -102.413607 +79770 33 90 246551893 12985710 95.194 5.014 31.875118 -103.933311 +79772 12747 3964 2994903620 1984302 1156.339 0.766 31.422363 -103.627309 +79777 170 114 263469246 260565 101.726 0.101 31.484586 -103.161046 +79778 878 397 270346624 0 104.381 0.000 31.176246 -101.923824 +79780 224 120 306004626 0 118.149 0.000 31.061960 -103.592090 +79781 303 212 1735051105 64269 669.907 0.025 30.596998 -101.784530 +79782 3976 1540 1194870453 913315 461.342 0.353 32.155614 -101.836937 +79783 201 81 434984979 0 167.949 0.000 32.321673 -102.042298 +79785 91 57 410198268 0 158.378 0.000 31.327482 -103.906799 +79788 506 230 11978926 14255 4.625 0.006 31.582473 -102.976850 +79789 974 419 103089861 110400 39.803 0.043 31.696251 -103.138992 +79821 7142 1630 29535301 367962 11.404 0.142 31.983697 -106.596021 +79830 7682 4117 5205246396 9555434 2009.757 3.689 29.802094 -103.222360 +79831 29 29 901806036 575264 348.189 0.222 30.429399 -103.325765 +79834 200 125 2120403193 2620306 818.692 1.012 29.160935 -103.275783 +79835 12690 4022 30636781 229690 11.829 0.089 31.936406 -106.589725 +79836 5772 1733 49696811 128655 19.188 0.050 31.572550 -106.198866 +79837 579 348 4274852705 16347464 1650.530 6.312 32.233570 -105.286539 +79838 8699 2625 76173040 320536 29.411 0.124 31.482839 -106.168049 +79839 1938 715 1252352828 772236 483.536 0.298 31.333177 -105.902546 +79842 498 392 1606588496 1609748 620.307 0.622 30.085732 -103.117740 +79843 2503 1536 3816660283 1564820 1473.621 0.604 30.285296 -104.005761 +79845 5138 2124 1213338956 0 468.473 0.000 29.888046 -104.519139 +79846 104 89 1138830017 70050 439.705 0.027 29.387655 -103.990465 +79847 167 122 2156955228 1684 832.805 0.001 31.835363 -105.053860 +79848 927 620 2091324028 62 807.465 0.000 30.261302 -102.301073 +79849 13208 3574 36306295 197421 14.018 0.076 31.560649 -106.250112 +79851 641 270 1743881300 180317 673.316 0.070 31.278347 -105.311629 +79852 799 690 1377686854 1794765 531.928 0.693 29.396230 -103.617232 +79853 3729 996 80665254 318500 31.145 0.123 31.434001 -106.064089 +79854 213 142 1835385224 28790 708.646 0.011 30.591270 -104.660157 +79855 2336 1098 4718657873 315560 1821.884 0.122 31.093480 -104.624514 +79901 11328 4471 5696318 21256 2.199 0.008 31.760618 -106.478578 +79902 21236 9315 16985318 35059 6.558 0.014 31.783715 -106.498544 +79903 18451 7176 7880270 0 3.043 0.000 31.786182 -106.441937 +79904 35060 12313 22802148 12015 8.804 0.005 31.852764 -106.447636 +79905 26036 8909 16787888 385133 6.482 0.149 31.766054 -106.426202 +79906 4374 1212 10895901 0 4.207 0.000 31.810651 -106.404743 +79907 55132 17537 35241262 105630 13.607 0.041 31.707231 -106.326563 +79908 3673 546 50516512 0 19.505 0.000 31.857201 -106.380388 +79911 1565 582 16170031 0 6.243 0.000 31.892468 -106.542594 +79912 77161 30690 61003568 472684 23.554 0.183 31.848583 -106.534316 +79915 40057 13629 23082374 279365 8.912 0.108 31.746041 -106.371426 +79916 2995 0 4204076 0 1.623 0.000 31.814157 -106.418030 +79920 153 0 12765 0 0.005 0.000 31.824725 -106.451727 +79922 8935 3132 16924455 171468 6.535 0.066 31.814872 -106.561208 +79924 59058 21122 31705879 0 12.242 0.000 31.902442 -106.413245 +79925 40641 16253 43821043 45413 16.919 0.018 31.796943 -106.356829 +79927 39016 11240 73324454 703936 28.311 0.272 31.644008 -106.272524 +79928 49544 14089 269622583 13207 104.102 0.005 31.628665 -106.155823 +79930 28410 11006 28410299 42262 10.969 0.016 31.829304 -106.483334 +79932 24986 8357 36974505 514540 14.276 0.199 31.874964 -106.607988 +79934 19174 6728 153248746 178572 59.170 0.069 31.950670 -106.433518 +79935 18042 6899 9049749 31255 3.494 0.012 31.767715 -106.329332 +79936 111086 35523 69254573 54180 26.739 0.021 31.776593 -106.296976 +79938 53520 15137 943657598 171229 364.348 0.066 31.829712 -105.971362 +79942 2 15 92955753 39827 35.890 0.015 30.575618 -101.331239 +80002 18020 8365 15936766 307236 6.153 0.119 39.794822 -105.105292 +80003 35384 14248 17648602 675853 6.814 0.261 39.825373 -105.063525 +80004 35892 15158 19090026 397431 7.371 0.153 39.816686 -105.122787 +80005 25553 10342 29436851 421385 11.366 0.163 39.851080 -105.130234 +80007 7262 2640 66468299 1633896 25.664 0.631 39.862538 -105.192370 +80010 39728 14334 14283218 31534 5.515 0.012 39.739249 -104.862881 +80011 47461 17531 63847392 178620 24.652 0.069 39.738841 -104.782261 +80012 46665 19634 20111206 0 7.765 0.000 39.699705 -104.837652 +80013 69588 26047 36229567 0 13.988 0.000 39.661408 -104.765655 +80014 36710 18960 18282409 0 7.059 0.000 39.663558 -104.838067 +80015 62432 21996 37030524 606996 14.298 0.234 39.627320 -104.779035 +80016 41219 15602 121731448 3138094 47.001 1.212 39.602253 -104.705114 +80017 34270 13688 15187780 22279 5.864 0.009 39.697928 -104.785460 +80018 9206 3263 68730059 4938 26.537 0.002 39.688002 -104.689740 +80019 1690 719 63627082 48571 24.567 0.019 39.786982 -104.702170 +80020 46871 18011 51170492 694609 19.757 0.268 39.930782 -105.074287 +80021 30051 13183 42709608 6062499 16.490 2.341 39.890663 -105.113724 +80022 42699 14343 119260445 708605 46.047 0.274 39.879644 -104.798561 +80023 15415 6024 45657286 566048 17.628 0.219 39.975858 -105.009387 +80024 228 85 105884 0 0.041 0.000 39.843876 -104.917925 +80025 253 152 30273320 10673 11.689 0.004 39.939842 -105.283939 +80026 26378 10796 57722349 1197713 22.287 0.462 40.012250 -105.099734 +80027 31034 12648 50311737 509705 19.425 0.197 39.950948 -105.159078 +80030 15329 6381 6829156 196752 2.637 0.076 39.830822 -105.037470 +80031 33932 13594 21830198 137783 8.429 0.053 39.873833 -105.038674 +80033 23969 11817 21452446 680211 8.283 0.263 39.772326 -105.103009 +80045 277 173 1735675 2686 0.670 0.001 39.747876 -104.838313 +80101 392 193 608222744 11434 234.836 0.004 39.365030 -104.019170 +80102 5514 2084 769180437 4240870 296.982 1.637 39.745605 -104.442995 +80103 2458 1002 727992115 16612998 281.079 6.414 39.780010 -104.142596 +80104 27588 10470 200935904 84211 77.582 0.033 39.293814 -104.830365 +80105 1171 563 1291545420 5198371 498.668 2.007 39.668495 -103.968891 +80106 4232 1635 455241296 252861 175.770 0.098 39.186147 -104.515915 +80107 12042 4474 403731202 0 155.881 0.000 39.409358 -104.572571 +80108 22612 8497 92149892 0 35.579 0.000 39.445501 -104.852987 +80109 17219 5778 68309904 0 26.375 0.000 39.364266 -104.901375 +80110 20867 9483 16389519 423880 6.328 0.164 39.645994 -105.011411 +80111 28948 12511 27896244 9909 10.771 0.004 39.613005 -104.877957 +80112 29217 12734 47972642 334727 18.522 0.129 39.575740 -104.857645 +80113 20562 10295 19584824 156124 7.562 0.060 39.644445 -104.965111 +80116 3942 1614 223874664 243135 86.438 0.094 39.319995 -104.709712 +80117 2587 1074 631057965 74679 243.653 0.029 39.369598 -104.342891 +80118 5308 2241 353594319 295396 136.524 0.114 39.192431 -104.905265 +80120 28435 13503 21504485 942869 8.303 0.364 39.593836 -105.011460 +80121 17853 7307 19397155 53342 7.489 0.021 39.610992 -104.952730 +80122 29783 12412 18278675 48291 7.057 0.019 39.580309 -104.954917 +80123 44795 19351 30758067 4209261 11.876 1.625 39.616010 -105.069449 +80124 18020 7260 24562911 5755 9.484 0.002 39.532070 -104.891965 +80125 10190 3768 109119224 3802610 42.131 1.468 39.485069 -105.052316 +80126 39698 14237 27775578 14974 10.724 0.006 39.540572 -104.958557 +80127 42597 16325 134087282 1049413 51.771 0.405 39.530599 -105.164662 +80128 34988 14135 31967604 3970349 12.343 1.533 39.563846 -105.078981 +80129 27007 10031 19310720 100998 7.456 0.039 39.545535 -105.010351 +80130 27054 9959 16556712 16382 6.393 0.006 39.530958 -104.923416 +80131 243 107 1954443 0 0.755 0.000 39.476440 -105.007544 +80132 19637 7115 79192247 370295 30.576 0.143 39.099410 -104.846530 +80133 2042 916 79764494 40507 30.797 0.016 39.095018 -104.975692 +80134 55075 20452 145948097 214747 56.351 0.083 39.485500 -104.778638 +80135 3833 1908 852794394 4204340 329.266 1.623 39.253871 -105.157637 +80136 4834 1840 523934870 1392321 202.292 0.538 39.784898 -104.280905 +80137 1323 437 270790666 1502935 104.553 0.580 39.771182 -104.598055 +80138 29786 10781 163742237 175069 63.221 0.068 39.517660 -104.670906 +80202 10148 8399 2900297 0 1.120 0.000 39.751907 -104.997633 +80203 18839 14896 2779201 0 1.073 0.000 39.731686 -104.982650 +80204 31493 13116 14407225 0 5.563 0.000 39.734840 -105.020394 +80205 29221 13656 11874937 119984 4.585 0.046 39.758857 -104.962829 +80206 21521 13536 6361669 0 2.456 0.000 39.730292 -104.952618 +80207 21216 8907 11824012 0 4.565 0.000 39.762296 -104.916636 +80209 21526 13530 9019641 54418 3.483 0.021 39.706581 -104.965750 +80210 33946 16398 15707215 51146 6.065 0.020 39.676626 -104.962315 +80211 31583 15615 11644553 97000 4.496 0.037 39.767444 -105.019736 +80212 18051 9441 9249003 1093090 3.571 0.422 39.772047 -105.048027 +80214 24821 11831 11920975 40722 4.603 0.016 39.743291 -105.069027 +80215 17843 8568 14412678 257327 5.565 0.099 39.744773 -105.115977 +80216 10924 3385 27187751 218028 10.497 0.084 39.787280 -104.957249 +80218 17928 12227 4145058 0 1.600 0.000 39.731082 -104.970673 +80219 61296 20448 19441922 193656 7.507 0.075 39.695293 -105.035601 +80220 33529 16421 13575575 0 5.242 0.000 39.733812 -104.916597 +80221 37779 13536 23461757 666030 9.059 0.257 39.817067 -105.011035 +80222 20073 10256 10282638 0 3.970 0.000 39.671027 -104.927899 +80223 17987 7139 13544714 108937 5.230 0.042 39.695794 -105.003843 +80224 17256 8570 8146834 0 3.146 0.000 39.687765 -104.911337 +80226 30930 13656 20865700 166240 8.056 0.064 39.712845 -105.091519 +80227 33667 15217 19163868 323180 7.399 0.125 39.666295 -105.089824 +80228 30138 13797 28540433 93016 11.020 0.036 39.694967 -105.173161 +80229 49598 18023 34087313 970226 13.161 0.375 39.855318 -104.957119 +80230 7559 3825 6446419 0 2.489 0.000 39.719464 -104.890279 +80231 32127 17134 12212325 0 4.715 0.000 39.671421 -104.887803 +80232 21411 9168 10697719 633368 4.130 0.245 39.686866 -105.090234 +80233 45386 17642 23577904 319277 9.103 0.123 39.899671 -104.946561 +80234 25937 11104 18359744 264953 7.089 0.102 39.909994 -105.002506 +80235 7571 3610 9428336 193115 3.640 0.075 39.649838 -105.088350 +80236 16123 6142 8321007 0 3.213 0.000 39.651675 -105.039573 +80237 17569 10074 9260004 17849 3.575 0.007 39.639871 -104.901711 +80238 10058 3898 12566304 0 4.852 0.000 39.771658 -104.882483 +80239 40512 11206 25855308 31835 9.983 0.012 39.787628 -104.838551 +80241 31746 11638 17101607 648240 6.603 0.250 39.929518 -104.954808 +80246 12875 7840 4469838 8809 1.726 0.003 39.705197 -104.930842 +80247 25449 14986 7617388 1067 2.941 0.000 39.698327 -104.878815 +80249 23404 7765 123618081 31163 47.729 0.012 39.851866 -104.695551 +80260 31412 12518 12417747 295152 4.795 0.114 39.866918 -105.006059 +80264 0 0 19282 0 0.007 0.000 39.742477 -104.985482 +80290 0 0 19489 0 0.008 0.000 39.744092 -104.986754 +80293 0 0 15517 0 0.006 0.000 39.746253 -104.989935 +80294 0 0 15459 0 0.006 0.000 39.749452 -104.989270 +80301 22555 10634 75104967 7580096 28.998 2.927 40.049468 -105.201421 +80302 26941 12663 213860580 866943 82.572 0.335 40.039191 -105.372017 +80303 22361 11222 57102035 2433925 22.047 0.940 39.973222 -105.209276 +80304 25623 11586 23685343 117908 9.145 0.046 40.045421 -105.291263 +80305 16874 7314 18723747 129059 7.229 0.050 39.975334 -105.248158 +80310 6578 953 1124499 5818 0.434 0.002 40.002148 -105.263655 +80401 39378 16895 135136812 1566270 52.177 0.605 39.718726 -105.236031 +80403 18211 7948 346183929 2328734 133.662 0.899 39.834622 -105.293050 +80419 0 0 256676 0 0.099 0.000 39.728392 -105.202819 +80420 933 884 102595137 720911 39.612 0.278 39.324867 -106.116959 +80421 8042 4375 357023560 580541 137.848 0.224 39.462296 -105.502065 +80422 4326 2738 334491129 952351 129.148 0.368 39.870497 -105.528825 +80423 169 177 410884300 1636877 158.643 0.632 39.893953 -106.583549 +80424 9627 11169 326131671 1021224 125.920 0.394 39.473334 -106.004129 +80425 184 189 118140121 314467 45.614 0.121 39.348402 -105.205825 +80426 104 81 344815749 1200838 133.134 0.464 39.912085 -107.000453 +80427 822 630 37901033 0 14.634 0.000 39.780281 -105.494960 +80428 706 611 798466506 5055474 308.290 1.952 40.843694 -106.925249 +80432 439 860 282656348 846415 109.134 0.327 39.222376 -105.796907 +80433 8354 3767 212158921 441461 81.915 0.170 39.477721 -105.262386 +80434 43 38 74237158 483879 28.663 0.187 40.843252 -106.286789 +80435 7278 7610 268632374 6775062 103.720 2.616 39.573678 -105.934581 +80436 565 290 31702715 76333 12.240 0.029 39.781638 -105.642210 +80438 486 387 144190865 486376 55.672 0.188 39.763029 -105.784735 +80439 23778 10766 457823389 711375 176.767 0.275 39.634422 -105.440245 +80440 2422 2274 686865818 1448162 265.200 0.559 39.230807 -105.969036 +80442 2309 2634 182382663 57211 70.418 0.022 39.924007 -105.889416 +80443 3676 5208 269448980 10023763 104.035 3.870 39.543602 -106.172750 +80444 1080 812 82886961 1088616 32.003 0.420 39.608400 -105.751005 +80446 3715 3146 774428527 16955734 299.009 6.547 40.176165 -105.949368 +80447 1964 3613 608271194 22568571 234.855 8.714 40.296378 -105.762482 +80448 193 228 580698843 289229 224.209 0.112 39.423128 -105.649921 +80449 909 1505 1536723392 22373094 593.332 8.638 38.976576 -105.856797 +80451 753 387 177739781 0 68.626 0.000 40.098446 -106.073143 +80452 3097 2112 336292160 1316359 129.843 0.508 39.689403 -105.670791 +80453 197 120 1048445 0 0.405 0.000 39.662687 -105.242573 +80454 1224 620 11104624 8841 4.288 0.003 39.628546 -105.242263 +80455 497 325 90048206 30093 34.768 0.012 40.094826 -105.398382 +80456 620 1343 599169362 1539343 231.341 0.594 39.247370 -105.536533 +80457 612 292 4024245 0 1.554 0.000 39.648250 -105.290978 +80459 2450 1483 1502830495 13507096 580.246 5.215 40.177204 -106.454609 +80461 7090 3970 749102545 8732529 289.230 3.372 39.231742 -106.313157 +80463 136 111 313270310 840298 120.954 0.324 39.970544 -106.720487 +80465 15147 6045 116876159 1507965 45.126 0.582 39.609086 -105.205578 +80466 3338 1929 233241697 2997014 90.055 1.157 39.976421 -105.541527 +80467 2224 1285 595416164 3237321 229.891 1.250 40.207641 -106.826395 +80468 391 315 994246996 6657265 383.881 2.570 39.951923 -106.122681 +80469 337 184 132487812 29063 51.154 0.011 40.200081 -106.968565 +80470 3287 1862 345265510 1170854 133.308 0.452 39.379452 -105.324766 +80471 23 68 2025971 0 0.782 0.000 39.935251 -105.421253 +80473 51 93 165859494 112066 64.039 0.043 40.416344 -106.134341 +80475 57 49 28069390 96618 10.838 0.037 39.455282 -105.570418 +80476 194 207 148701114 36622 57.414 0.014 39.670628 -105.834343 +80477 155 85 69521 0 0.027 0.000 40.486391 -106.829354 +80478 1606 1143 108060688 421723 41.722 0.163 40.029019 -105.852772 +80479 48 53 292109895 346103 112.784 0.134 40.035912 -106.814497 +80480 1300 1155 3939426554 18154025 1521.021 7.009 40.672888 -106.341566 +80481 572 517 185356642 3410861 71.567 1.317 40.101411 -105.576764 +80482 1630 3316 336127697 73649 129.780 0.028 39.890695 -105.785558 +80483 585 305 225244397 175766 86.967 0.068 40.096085 -106.928985 +80487 16745 12300 1893483793 4397795 731.078 1.698 40.540946 -106.850131 +80488 157 104 28800 0 0.011 0.000 40.448703 -106.818184 +80497 411 505 34246088 0 13.222 0.000 39.670756 -106.000063 +80498 7002 5350 677180245 10462941 261.461 4.040 39.746631 -106.270530 +80501 39521 16580 32047275 584271 12.374 0.226 40.164837 -105.103179 +80503 31064 13294 235873042 7952477 91.071 3.070 40.169014 -105.210376 +80504 46876 16985 256553379 10084123 99.056 3.894 40.163388 -105.030087 +80510 420 804 171285283 1149627 66.134 0.444 40.213151 -105.606668 +80511 76 7 268987 0 0.104 0.000 40.340181 -105.572189 +80512 2185 1762 1271380356 10157199 490.883 3.922 40.633408 -105.581555 +80513 10296 4133 170272654 9181802 65.743 3.545 40.300348 -105.103928 +80514 4106 1546 17423578 36621 6.727 0.014 40.065738 -104.955523 +80515 1010 960 156984650 384745 60.612 0.149 40.462379 -105.382289 +80516 20254 7440 103396032 606323 39.921 0.234 40.051112 -105.027632 +80517 9313 7294 766475995 3664365 295.938 1.415 40.384776 -105.585956 +80520 1498 559 1043740 0 0.403 0.000 40.113099 -104.931431 +80521 33409 13059 36755388 1150791 14.191 0.444 40.594597 -105.127416 +80524 31668 13680 327632487 26312840 126.500 10.159 40.647612 -105.029257 +80525 48419 21347 62772554 4145519 24.237 1.601 40.529646 -105.036788 +80526 44183 18673 98867985 5276893 38.173 2.037 40.518836 -105.143224 +80528 17946 6600 49282926 3764348 19.028 1.453 40.494596 -105.004639 +80530 3790 1420 4924057 0 1.901 0.000 40.097792 -104.929279 +80532 165 215 66967049 2974 25.856 0.001 40.493095 -105.467197 +80534 11301 4175 125497199 1253634 48.455 0.484 40.331818 -104.937474 +80535 2636 1193 114690819 340358 44.282 0.131 40.732954 -105.183846 +80536 1759 1250 952074925 1788855 367.598 0.691 40.868337 -105.369065 +80537 38821 16732 274494247 10232549 105.983 3.951 40.364469 -105.179966 +80538 43930 18394 279714979 12754541 107.999 4.925 40.458831 -105.049404 +80540 4461 2531 409888530 1172550 158.259 0.453 40.235694 -105.364549 +80542 3631 1284 23196630 782379 8.956 0.302 40.235081 -104.999386 +80543 5887 2095 81654543 805638 31.527 0.311 40.344353 -104.850948 +80544 111 58 128817 0 0.050 0.000 40.103412 -105.171093 +80545 851 2198 732647654 2625472 282.877 1.014 40.875670 -105.638065 +80546 149 63 198280 0 0.077 0.000 40.525242 -104.849696 +80547 624 241 7720928 51539 2.981 0.020 40.526630 -104.965364 +80549 8642 3201 528846891 9572963 204.189 3.696 40.864456 -105.048773 +80550 20675 8021 141095051 2252739 54.477 0.870 40.484657 -104.900983 +80601 33833 11612 69404913 1779435 26.797 0.687 39.962027 -104.807809 +80602 27665 9248 77907661 1434724 30.080 0.554 39.964431 -104.911602 +80603 11973 4401 208117213 8893681 80.355 3.434 39.982211 -104.737094 +80610 2791 1141 438959998 2112615 169.483 0.816 40.660666 -104.591187 +80611 659 294 996144776 524716 384.614 0.203 40.624982 -104.287097 +80612 430 213 421224907 239353 162.636 0.092 40.872141 -104.852569 +80615 7482 2930 272657136 2658519 105.274 1.026 40.545658 -104.645698 +80620 17775 6477 17091729 216726 6.599 0.084 40.373756 -104.717482 +80621 12079 4359 329925989 2119909 127.385 0.819 40.107238 -104.801093 +80622 268 100 34125516 152099 13.176 0.059 40.538013 -104.460409 +80623 1028 344 1724340 0 0.666 0.000 40.285379 -104.782532 +80624 946 372 81231909 727360 31.364 0.281 40.486784 -104.498802 +80631 48603 17984 266377786 2480316 102.849 0.958 40.442868 -104.673072 +80634 52861 21776 96551391 238573 37.279 0.092 40.403315 -104.792917 +80640 11054 3567 34205162 2535777 13.207 0.979 39.885331 -104.882674 +80642 4309 1274 246084918 3697131 95.014 1.427 40.051416 -104.612139 +80643 3011 1194 541702938 3293136 209.153 1.271 40.112740 -104.482398 +80644 2989 1147 412887154 4117721 159.417 1.590 40.382841 -104.462805 +80645 3905 1521 348441803 11048309 134.534 4.266 40.330728 -104.667961 +80648 1001 424 398420975 82433 153.831 0.032 40.755864 -104.740919 +80649 299 154 472813692 26195790 182.554 10.114 40.380745 -104.176362 +80650 1432 571 131370468 338246 50.722 0.131 40.621518 -104.829835 +80651 4176 1650 246565414 2163583 95.199 0.835 40.241718 -104.809426 +80652 574 247 485108131 297224 187.301 0.115 40.138533 -104.276173 +80653 791 543 323666243 14094139 124.968 5.442 40.398768 -103.971541 +80654 2359 964 588686469 12702187 227.293 4.904 40.138103 -104.065491 +80701 16042 6180 1573752898 5996004 607.629 2.315 40.168193 -103.831757 +80705 884 348 807564 0 0.312 0.000 40.270499 -103.829653 +80720 2558 1277 2411761385 443111 931.186 0.171 40.078252 -103.219881 +80721 154 76 223730401 0 86.383 0.000 40.689612 -102.153900 +80722 349 168 89409090 46402 34.521 0.018 40.506613 -103.271661 +80723 7179 3047 751888883 445179 290.306 0.172 40.166261 -103.555197 +80726 381 223 409178673 2942871 157.985 1.136 40.905042 -102.793047 +80727 425 213 531673138 101110 205.280 0.039 40.071179 -102.513988 +80728 878 417 939237282 0 362.642 0.000 40.644866 -102.873872 +80729 540 307 1869674251 630674 721.885 0.244 40.884243 -104.269296 +80731 1494 768 974540139 135926 376.272 0.052 40.594450 -102.600328 +80733 529 235 81847808 7025967 31.602 2.713 40.371386 -103.450535 +80734 3045 1355 1262374294 313398 487.405 0.121 40.519891 -102.291952 +80735 405 196 758543186 7681057 292.875 2.966 39.709824 -102.273164 +80736 648 320 294694804 170070 113.782 0.066 40.811815 -103.027237 +80737 1537 917 628357959 36263 242.610 0.014 40.876140 -102.177979 +80740 108 71 427409425 922413 165.024 0.356 39.725661 -103.382898 +80741 935 417 589502612 3071611 227.608 1.186 40.573942 -103.477138 +80742 225 155 1155134118 25230 446.000 0.010 40.752316 -103.831083 +80743 1074 537 1202617711 55257 464.333 0.021 40.196787 -102.954960 +80744 488 276 336222752 131823 129.816 0.051 40.873626 -102.391968 +80745 156 90 569546818 35014 219.903 0.014 40.896443 -103.387875 +80746 29 19 686833 0 0.265 0.000 40.609603 -102.465912 +80747 462 209 455638302 49867 175.923 0.019 40.942361 -103.086174 +80749 341 215 430930186 3362648 166.383 1.298 40.867058 -102.547276 +80750 412 180 340238898 2440033 131.367 0.942 40.414765 -103.604846 +80751 18857 7113 1216655161 10908651 469.753 4.212 40.636880 -103.232406 +80754 164 89 546417986 107195 210.973 0.041 40.723113 -103.666956 +80755 163 75 286619179 301686 110.664 0.116 39.911897 -102.344974 +80757 255 141 981433813 1586405 378.934 0.613 39.790981 -103.583221 +80758 3795 1666 1798093515 1534750 694.248 0.593 40.138836 -102.193094 +80759 4698 2014 1671465169 717789 645.356 0.277 40.135241 -102.685959 +80801 154 94 401656612 135200 155.080 0.052 39.732280 -103.101271 +80802 238 122 1037427747 66854 400.553 0.026 38.836946 -102.173384 +80804 327 204 867607915 3669027 334.985 1.417 39.346840 -103.248069 +80805 453 193 434261386 51803 167.669 0.020 39.305959 -102.455614 +80807 5304 1968 1887116835 962287 728.620 0.372 39.321667 -102.223231 +80808 6351 2620 917777500 491294 354.356 0.190 38.988167 -104.303470 +80809 1519 877 130760637 924318 50.487 0.357 38.855321 -105.000241 +80810 1127 554 1381707911 283493 533.480 0.109 38.821854 -102.444900 +80812 275 126 357199661 1606696 137.916 0.620 39.619003 -102.849918 +80813 2055 1397 285358443 1371568 110.178 0.530 38.805574 -105.157507 +80814 4023 2100 255700232 162896 98.726 0.063 38.960297 -105.189763 +80815 911 538 1361287267 3226642 525.596 1.246 39.396721 -103.063405 +80816 5180 3371 479752408 2669901 185.233 1.031 38.857741 -105.315864 +80817 27311 9963 163753246 329556 63.225 0.127 38.638580 -104.686472 +80818 343 184 748812012 3247512 289.118 1.254 39.385913 -103.480409 +80819 921 720 21436616 8295 8.277 0.003 38.962513 -105.011583 +80820 806 822 765475676 887009 295.552 0.342 38.789998 -105.579799 +80821 1093 614 2195742939 8085307 847.781 3.122 38.979683 -103.381661 +80822 260 149 548121285 288736 211.631 0.111 39.700145 -102.675394 +80823 203 126 1055640441 3778115 407.585 1.459 38.663464 -103.419186 +80824 207 120 279485723 238220 107.910 0.092 39.650352 -102.507129 +80825 422 262 1707532579 6206421 659.282 2.396 38.795426 -102.831705 +80827 549 801 625907653 12582493 241.664 4.858 39.056483 -105.467609 +80828 3341 1210 1400751875 2402185 540.833 0.927 39.333574 -103.729511 +80829 5476 3038 55850545 46993 21.564 0.018 38.827928 -104.935752 +80830 254 136 578336049 12560 223.297 0.005 39.114246 -103.894118 +80831 21993 7623 492025488 32023 189.972 0.012 38.986634 -104.487819 +80832 666 328 619506351 97770 239.193 0.038 39.017177 -104.012874 +80833 754 366 1226432622 1825266 473.528 0.705 38.763233 -103.965090 +80834 318 213 743832685 23665 287.195 0.009 39.264797 -102.883640 +80835 911 389 370916090 11962 143.212 0.005 39.221174 -104.024141 +80836 1157 551 983097804 226321 379.576 0.087 39.298071 -102.576778 +80840 6682 721 74829013 35008 28.892 0.014 38.994694 -104.861958 +80860 594 565 194733317 1149709 75.187 0.444 38.705877 -105.088280 +80861 255 139 649830168 38890 250.901 0.015 39.331861 -102.721831 +80862 31 24 356006067 1236303 137.455 0.477 38.873184 -103.057916 +80863 11754 5536 320670496 1734840 123.812 0.670 39.019995 -105.113586 +80864 1325 614 644177990 0 248.719 0.000 38.697666 -104.186739 +80902 12289 2932 37189434 30971 14.359 0.012 38.669371 -104.807971 +80903 15057 7479 12526816 4905 4.837 0.002 38.831490 -104.814501 +80904 19867 11028 24689363 167153 9.533 0.065 38.860829 -104.876163 +80905 16254 8378 12847421 5053 4.960 0.002 38.818910 -104.838348 +80906 37719 16297 120767344 399190 46.629 0.154 38.752622 -104.878195 +80907 26758 13535 25602450 50224 9.885 0.019 38.878612 -104.826451 +80908 13827 5129 247020111 152751 95.375 0.059 39.046483 -104.693246 +80909 35739 16973 21700823 5043 8.379 0.002 38.853475 -104.775218 +80910 28794 12690 15024086 222164 5.801 0.086 38.812066 -104.774580 +80911 30596 11126 31216535 1216253 12.053 0.470 38.752916 -104.723477 +80913 2988 0 68177199 112448 26.323 0.043 38.687472 -104.748776 +80914 386 0 1831139 4050 0.707 0.002 38.824001 -104.704184 +80915 19519 8066 20155304 8832 7.782 0.003 38.849797 -104.717043 +80916 34640 13537 44484175 17208 17.175 0.007 38.806967 -104.708018 +80917 29273 12989 16896613 6031 6.524 0.002 38.886168 -104.745264 +80918 45467 18944 31026523 6317 11.979 0.002 38.910393 -104.780362 +80919 27398 11461 37043007 5329 14.302 0.002 38.928208 -104.852626 +80920 38569 13996 32741006 0 12.641 0.000 38.957604 -104.770779 +80921 18999 6960 225402881 1931706 87.029 0.746 39.016197 -104.910486 +80922 26549 9427 15460506 0 5.969 0.000 38.890569 -104.700630 +80923 26105 9573 17676162 0 6.825 0.000 38.926858 -104.714788 +80924 4534 1605 14087629 15049 5.439 0.006 38.968013 -104.721285 +80925 5906 1970 60921127 40798 23.522 0.016 38.757764 -104.655864 +80926 1403 619 167541067 6609 64.688 0.003 38.634733 -104.903006 +80927 604 241 11219940 0 4.332 0.000 38.928577 -104.658341 +80928 1202 489 851544467 134016 328.783 0.052 38.630403 -104.401634 +80929 231 112 56183888 0 21.693 0.000 38.824710 -104.626967 +80930 821 337 94214870 0 36.377 0.000 38.814229 -104.502478 +80938 17 9 8627904 0 3.331 0.000 38.904708 -104.663423 +80939 0 0 1304282 0 0.504 0.000 38.877605 -104.677361 +80951 4202 1454 12167196 59661 4.698 0.023 38.894945 -104.651538 +81001 30498 13150 90353477 485003 34.886 0.187 38.293234 -104.536493 +81003 14939 6401 20788936 701826 8.027 0.271 38.277713 -104.626098 +81004 25540 12266 421926955 3769184 162.907 1.455 38.043740 -104.714356 +81005 29975 13138 596341566 6844802 230.249 2.643 38.197683 -104.810446 +81006 11513 4789 146693161 2428803 56.639 0.938 38.236078 -104.501002 +81007 29709 11381 383269607 5062391 147.981 1.955 38.360042 -104.773198 +81008 9641 4529 347401499 556756 134.132 0.215 38.441619 -104.621526 +81019 1690 731 25710772 270752 9.927 0.105 37.943700 -104.841876 +81020 954 727 1502014003 156966 579.931 0.061 37.548854 -104.491020 +81021 14 16 565815061 10034465 218.462 3.874 38.387612 -103.380930 +81022 1560 659 1103580254 3184561 426.095 1.230 38.050166 -104.422573 +81023 1236 829 326417799 274918 126.031 0.106 38.052616 -104.964263 +81024 134 98 108676155 0 41.960 0.000 37.249355 -104.734713 +81025 1071 577 1420589018 3921305 548.493 1.514 38.455047 -104.355296 +81027 125 90 1603772188 0 619.220 0.000 37.189352 -103.799939 +81029 326 224 1420920618 209324 548.621 0.081 37.087819 -102.495606 +81030 193 88 943780 207555 0.364 0.080 38.100738 -103.523617 +81033 155 79 837885 0 0.324 0.000 38.194886 -103.861345 +81036 962 551 1947551214 30576193 751.954 11.806 38.388466 -102.756210 +81038 486 0 299771 0 0.116 0.000 38.079243 -103.140420 +81039 1856 936 1528433390 2996371 590.131 1.157 37.939070 -104.085204 +81040 536 524 1342814744 426603 518.464 0.165 37.783983 -105.226512 +81041 760 393 1187727529 2848772 458.584 1.100 37.867474 -102.370249 +81043 61 35 3678185 0 1.420 0.000 38.131096 -102.220817 +81044 224 134 844747403 15141645 326.159 5.846 37.925042 -102.950617 +81045 88 56 591324165 2881151 228.312 1.112 38.487746 -103.164635 +81047 1559 773 1547145131 6097996 597.356 2.354 38.111178 -102.151319 +81049 289 194 3329882248 3052 1285.675 0.001 37.378762 -103.387574 +81050 9894 4680 1391277232 14351831 537.175 5.541 37.940231 -103.505893 +81052 9534 4448 1719030457 8014189 663.721 3.094 37.918016 -102.639554 +81054 5134 1809 2471852745 49817187 954.388 19.235 37.945704 -103.157396 +81055 1339 1679 666199765 573120 257.221 0.221 37.491613 -105.111759 +81057 418 193 135618862 2327193 52.363 0.899 38.121759 -102.883190 +81058 990 475 134907240 2334979 52.088 0.902 38.099953 -103.882859 +81059 651 112 2848329378 424391 1099.746 0.164 37.505391 -104.020765 +81062 2439 374 618609851 806913 238.847 0.312 38.296890 -103.964339 +81063 2726 823 1066804033 13246154 411.895 5.114 38.430710 -103.771060 +81064 282 178 1251331209 36068 483.142 0.014 37.224707 -102.999283 +81067 5670 2675 756622138 7457545 292.133 2.879 37.933631 -103.778471 +81069 1888 1452 708101062 576455 273.399 0.223 37.893271 -104.903626 +81071 334 182 1473805065 3541198 569.039 1.367 38.436195 -102.246008 +81073 1932 1085 1657761689 244558 640.065 0.094 37.420622 -102.712418 +81076 418 246 692046201 18314018 267.201 7.071 38.343221 -103.601595 +81077 532 259 1179693 13232 0.455 0.005 38.017621 -103.630845 +81081 70 46 598538039 177964 231.097 0.069 37.048164 -104.214951 +81082 12480 6259 1547734954 5759976 597.584 2.224 37.178909 -104.516734 +81084 137 98 623875684 5021405 240.880 1.939 37.584413 -102.410872 +81087 145 80 104013431 0 40.160 0.000 37.365900 -102.409003 +81089 4602 2727 1792193562 4670097 691.970 1.803 37.651579 -104.737761 +81090 981 596 1651536020 498132 637.662 0.192 37.358203 -102.222224 +81091 812 699 1119010236 753791 432.052 0.291 37.148986 -104.964753 +81092 865 393 218776830 249562 84.470 0.096 38.193819 -102.752246 +81101 14675 6133 1060256705 1615149 409.367 0.624 37.481245 -105.833213 +81120 2267 1735 2258691910 8481292 872.086 3.275 37.227560 -106.319313 +81121 270 214 121234065 0 46.809 0.000 37.109777 -107.439077 +81122 8228 4430 1313962859 11375076 507.324 4.392 37.351492 -107.475814 +81123 805 453 679319285 3012690 262.287 1.163 37.399731 -105.571815 +81124 303 128 40567544 0 15.663 0.000 37.306244 -106.160588 +81125 3447 1480 697618476 1824701 269.352 0.705 37.819261 -106.069857 +81126 276 176 50441749 0 19.476 0.000 37.155590 -105.334587 +81128 115 156 473327356 299324 182.753 0.116 37.082226 -106.617244 +81129 156 87 10953267 0 4.229 0.000 37.103361 -106.029047 +81130 671 1350 2450315076 14236389 946.072 5.497 37.620400 -107.057537 +81131 1189 979 812454734 616121 313.691 0.238 37.865412 -105.679141 +81132 3231 1830 1751761927 210067 676.359 0.081 37.711280 -106.428957 +81133 840 789 965839956 753552 372.913 0.291 37.430130 -105.307195 +81136 261 126 241823267 160485 93.368 0.062 37.735128 -105.827948 +81137 5225 2272 658449106 16810133 254.229 6.490 37.051911 -107.613601 +81138 56 47 59045662 612025 22.798 0.236 37.030764 -105.620375 +81140 2341 1010 570821695 80882 220.395 0.031 37.313495 -106.110838 +81141 1318 572 111557056 31964 43.072 0.012 37.162298 -105.858338 +81143 672 433 853385812 351200 329.494 0.136 38.049008 -105.856686 +81144 7344 3170 732600541 547746 282.859 0.211 37.553439 -106.167043 +81146 531 295 585181687 73295 225.940 0.028 37.624450 -105.684002 +81147 11446 8323 3494964986 17187030 1349.414 6.636 37.322856 -107.085622 +81148 404 156 604115 0 0.233 0.000 37.171819 -105.985414 +81149 838 619 2162489048 496040 834.942 0.192 38.101708 -106.345890 +81151 1470 656 580586512 599956 224.166 0.232 37.278604 -105.808117 +81152 1434 1048 1141384034 4450637 440.691 1.718 37.110768 -105.402120 +81154 1148 1707 691576292 338752 267.019 0.131 37.574789 -106.603691 +81155 225 251 820395519 28247 316.756 0.011 38.288315 -106.074407 +81201 8645 4742 1154555994 554468 445.777 0.214 38.554832 -106.066038 +81210 275 672 1334454049 9323272 515.236 3.600 38.808675 -106.677959 +81211 7623 3788 1194832475 2632214 461.327 1.016 38.973415 -106.381737 +81212 29742 11914 1599157642 331277 617.438 0.128 38.535973 -105.399681 +81220 141 461 621397209 2384107 239.923 0.921 38.308243 -107.480574 +81221 310 145 3881480 0 1.499 0.000 38.362348 -105.144129 +81222 263 184 79972395 11561 30.878 0.004 38.347997 -105.830935 +81223 1639 1477 1032998402 25799 398.843 0.010 38.364745 -105.612643 +81224 3446 2376 403883203 513255 155.940 0.198 38.879886 -106.934054 +81225 952 1690 212524467 261474 82.056 0.101 38.954250 -106.903504 +81226 9066 2693 212669908 1080385 82.112 0.417 38.320931 -105.142833 +81227 10 53 925408 0 0.357 0.000 38.549241 -106.290217 +81230 9075 5030 4624728595 39579518 1785.618 15.282 38.395065 -106.953683 +81231 715 5 162539 0 0.063 0.000 38.550024 -106.919672 +81232 23 17 4950753 0 1.911 0.000 38.285131 -105.610466 +81233 823 591 228115988 105535 88.076 0.041 38.425974 -105.824878 +81235 802 1008 1398023965 2319184 539.780 0.895 38.012835 -107.299418 +81236 1017 1208 499469960 826800 192.846 0.319 38.675427 -106.264738 +81237 82 110 90228242 0 34.837 0.000 38.603067 -106.614052 +81239 79 64 132545970 0 51.176 0.000 38.508808 -106.663673 +81240 4323 1905 385174348 496767 148.717 0.192 38.500352 -105.034304 +81241 78 367 52675608 3078 20.338 0.001 38.622869 -106.508421 +81242 606 286 5740092 0 2.216 0.000 38.508149 -106.075489 +81243 93 196 866028863 553525 334.376 0.214 38.265999 -107.192094 +81244 398 183 9549354 0 3.687 0.000 38.362933 -105.177721 +81248 48 157 666956434 30778 257.513 0.012 38.464302 -106.378258 +81251 220 301 227091744 9391807 87.681 3.626 39.112263 -106.478184 +81252 3830 3438 1594798009 3109015 615.755 1.200 38.110643 -105.427522 +81253 410 270 333138516 297149 128.626 0.115 38.226594 -105.065186 +81301 28308 15079 1935788731 7407029 747.412 2.860 37.441078 -107.852781 +81303 7743 3372 558768774 699825 215.742 0.270 37.121490 -107.885499 +81320 388 228 486262470 49255 187.747 0.019 37.720141 -108.735147 +81321 14459 6486 1090965459 1152485 421.224 0.445 37.312970 -108.734537 +81323 4409 2581 1853037007 22506861 715.462 8.690 37.702838 -108.126994 +81324 1387 718 1057525431 10768 408.313 0.004 37.658451 -109.029605 +81325 121 139 1476038636 136716 569.902 0.053 37.919007 -108.727136 +81326 2193 1048 647729298 215419 250.090 0.083 37.156378 -108.187079 +81327 639 296 89322982 1890360 34.488 0.730 37.518051 -108.660749 +81328 4069 2206 945915737 3840148 365.220 1.483 37.360003 -108.258342 +81330 26 58 169150364 0 65.309 0.000 37.231252 -108.482502 +81331 476 224 631755235 11318 243.922 0.004 37.446213 -108.907306 +81332 282 219 156669082 57814 60.490 0.022 37.700337 -107.991189 +81334 1493 533 920578766 15568 355.437 0.006 37.146140 -108.612966 +81335 131 64 70234634 0 27.118 0.000 37.496409 -108.757071 +81401 22437 10038 604880984 440635 233.546 0.170 38.484148 -107.770845 +81403 10534 4671 1430892160 183218 552.471 0.071 38.368817 -107.957315 +81410 1655 771 59192154 923970 22.854 0.357 38.804613 -107.966364 +81411 55 39 257180650 0 99.298 0.000 38.250859 -108.979946 +81413 5243 3008 545095357 6628086 210.463 2.559 38.966929 -107.955456 +81415 1612 876 722142283 3956436 278.821 1.528 38.632823 -107.638132 +81416 13874 5666 872216836 5091415 336.765 1.966 38.752097 -108.136935 +81418 1714 772 53420239 490 20.626 0.000 38.848899 -107.987839 +81419 3883 1903 525401267 1648948 202.859 0.637 38.881231 -107.745058 +81422 692 403 694402399 0 268.110 0.000 38.346587 -108.711308 +81423 1480 803 1277114520 3841320 493.097 1.483 38.023159 -108.372470 +81424 1239 656 795436848 77910 307.120 0.030 38.326560 -108.444624 +81425 5424 2035 993028776 450245 383.411 0.174 38.493599 -108.247485 +81426 181 83 43825179 0 16.921 0.000 37.868211 -107.891294 +81427 1124 923 265645111 136049 102.566 0.053 38.030529 -107.635903 +81428 3701 1907 568100136 1163483 219.345 0.449 38.962987 -107.599578 +81429 181 99 592953528 441494 228.941 0.170 38.323946 -108.876176 +81430 727 647 658937192 273576 254.417 0.106 38.022192 -108.022862 +81431 460 249 433541910 25903 167.391 0.010 38.110654 -108.570085 +81432 2682 1761 707139618 1463494 273.028 0.565 38.110115 -107.749673 +81433 659 578 793226729 1933470 306.267 0.747 37.764768 -107.585706 +81434 158 197 1550103496 2079145 598.498 0.803 38.961138 -107.348515 +81435 4965 5085 346647420 1112715 133.841 0.430 37.909549 -107.869218 +81501 23465 10368 20575487 542426 7.944 0.209 39.071848 -108.547131 +81503 15250 6254 90872083 1090564 35.086 0.421 39.029795 -108.434062 +81504 28481 11374 29294793 196441 11.311 0.076 39.079602 -108.491247 +81505 9779 4325 260803901 1060169 100.697 0.409 39.255826 -108.534246 +81506 10961 5442 33308403 12515 12.860 0.005 39.114829 -108.526808 +81507 15081 6453 285153824 2291186 110.099 0.885 39.008939 -108.652183 +81520 13447 5359 53505117 266481 20.658 0.103 39.110944 -108.433769 +81521 15397 6140 382511395 5087937 147.688 1.964 39.123299 -108.798568 +81522 139 104 776991928 34003 299.998 0.013 38.618218 -108.913333 +81523 763 448 855181473 571958 330.187 0.221 38.968751 -108.891394 +81524 2300 872 434099187 3429006 167.607 1.324 39.274252 -108.787139 +81525 871 378 308744128 55833 119.207 0.022 39.286708 -108.946167 +81526 5321 2432 134200858 1896523 51.815 0.732 39.096926 -108.334424 +81527 2073 863 2013822984 3761005 777.541 1.452 38.799081 -108.469867 +81601 15442 6408 894341605 3633800 345.307 1.403 39.601448 -107.304314 +81610 446 264 804523774 222966 310.628 0.086 40.279698 -108.761563 +81611 9921 8103 1109567723 1033979 428.407 0.399 39.160355 -106.687538 +81612 20 24 6976106 0 2.693 0.000 39.134183 -106.837368 +81615 2839 2382 66349433 246360 25.618 0.095 39.221649 -106.927919 +81620 10450 8251 97162308 384517 37.515 0.148 39.595601 -106.513435 +81621 5914 2870 575938811 3056079 222.371 1.180 39.407141 -106.880042 +81623 15235 6417 1152525171 1551749 444.992 0.599 39.236653 -107.161909 +81624 1537 788 1445005128 4350285 557.920 1.680 39.194911 -107.698685 +81625 12921 5609 3982987432 7788202 1537.840 3.007 40.745223 -107.694794 +81630 979 461 3299943600 3299736 1274.115 1.274 39.433871 -108.576410 +81631 8215 3234 634314996 1516226 244.910 0.585 39.629387 -106.750037 +81632 10276 5057 316298015 1417666 122.123 0.547 39.629169 -106.607659 +81633 19 14 344051941 0 132.839 0.000 40.338315 -108.429206 +81635 5957 3068 753553999 3283637 290.949 1.268 39.495158 -108.047779 +81637 7721 2764 1966880822 11035024 759.417 4.261 39.777824 -107.105819 +81638 112 89 435017326 57588 167.961 0.022 40.315572 -107.549052 +81639 2463 1263 1554247555 1816441 600.098 0.701 40.506919 -107.239230 +81640 249 158 6160742584 11593273 2378.676 4.476 40.667730 -108.513364 +81641 3834 2088 4400376959 4960365 1698.995 1.915 40.082055 -107.747761 +81642 61 114 360399244 4045606 139.151 1.562 39.316471 -106.655769 +81643 793 560 559828758 1101761 216.151 0.425 39.066290 -108.151554 +81645 1121 603 438638269 3579255 169.359 1.382 39.455605 -106.458351 +81646 184 96 188846897 2540398 72.914 0.981 39.097235 -108.002603 +81647 7104 2733 947705989 1561866 365.911 0.603 39.610533 -107.566625 +81648 2808 1212 3186000688 34261 1230.122 0.013 39.970130 -108.684475 +81649 277 150 205019356 192427 79.158 0.074 39.530227 -106.278162 +81650 13006 4980 2407263205 3864941 929.450 1.492 39.751037 -108.113722 +81652 4904 1890 230513621 1585112 89.002 0.612 39.485172 -107.654716 +81653 31 54 155823404 87856 60.164 0.034 40.975779 -107.267453 +81654 1391 754 228540490 892553 88.240 0.345 39.197543 -107.052509 +81655 65 37 362236168 418112 139.860 0.161 39.781173 -106.459886 +81656 242 166 2717139 0 1.049 0.000 39.283850 -106.897256 +81657 5581 7611 288019410 582381 111.205 0.225 39.675999 -106.308296 +82001 35484 16584 152691897 253752 58.955 0.098 41.092356 -104.936269 +82005 417 25 7616781 0 2.941 0.000 41.140250 -104.874531 +82007 19096 8194 508188614 1425375 196.213 0.550 41.083070 -104.707126 +82009 31703 13368 3211504741 1832021 1239.969 0.707 41.374415 -104.853614 +82050 401 177 423956235 34521 163.690 0.013 41.457633 -104.150543 +82051 60 41 894918707 5834281 345.530 2.253 41.581934 -105.595429 +82052 23 13 35269485 0 13.618 0.000 41.118551 -105.308612 +82053 1524 665 586710248 125478 226.530 0.048 41.252071 -104.359433 +82054 920 376 466144489 61830 179.979 0.024 41.064273 -104.360520 +82055 285 395 302189133 1946395 116.676 0.752 41.332419 -106.175891 +82058 52 55 802228973 27300644 309.742 10.541 42.087082 -105.636173 +82059 135 105 217744206 390136 84.072 0.151 41.053423 -105.178649 +82060 372 138 75720965 0 29.236 0.000 41.277387 -104.496976 +82061 39 25 544597645 97486 210.270 0.038 41.445182 -105.161358 +82063 100 170 996722251 2205066 384.837 0.851 40.882289 -105.997396 +82070 19766 9169 2828114389 32484666 1091.941 12.542 41.195479 -105.841620 +82072 15533 7665 558676582 1169832 215.706 0.452 41.414802 -105.476100 +82073 72 0 5094 0 0.002 0.000 41.356764 -105.587542 +82081 60 43 232706118 0 89.848 0.000 41.533638 -104.492090 +82082 1606 776 573424572 60338 221.400 0.023 41.235319 -104.134235 +82083 373 291 1278572746 4951439 493.660 1.912 41.662571 -106.079964 +82084 16 56 190457629 0 73.536 0.000 41.025388 -105.619771 +82190 369 332 7698493836 416432899 2972.405 160.786 44.552613 -110.530132 +82201 6467 3465 4459170374 8455093 1721.695 3.265 42.018732 -105.149002 +82210 399 194 1006339295 177965 388.550 0.069 41.743934 -104.830324 +82212 474 295 872565018 2499185 336.899 0.965 42.278608 -104.539289 +82213 513 509 1245906941 48609907 481.047 18.768 42.494794 -105.004410 +82214 1302 683 271000403 3910652 104.634 1.510 42.259722 -104.780339 +82215 132 91 208475634 8056095 80.493 3.110 42.382000 -104.759567 +82217 107 74 233513380 174273 90.160 0.067 41.760360 -104.136425 +82219 48 36 291772081 0 112.654 0.000 42.498716 -104.513283 +82221 635 244 806427374 3657776 311.363 1.412 41.638038 -104.328472 +82222 107 77 1055009005 836512 407.341 0.323 43.196135 -104.650472 +82223 996 459 388731817 1059574 150.090 0.409 42.130328 -104.395784 +82224 23 14 348135112 17069 134.416 0.007 43.027155 -104.808472 +82225 2067 1088 3554463786 2985174 1372.386 1.153 42.985710 -104.323952 +82227 241 132 976305890 366266 376.954 0.141 42.756447 -104.724020 +82229 74 44 625186720 128947 241.386 0.050 42.878051 -104.967096 +82240 10235 4450 1715616771 4346829 662.403 1.678 42.265226 -104.158324 +82242 39 24 180646237 0 69.748 0.000 42.694543 -104.109376 +82243 187 83 140582309 24668 54.279 0.010 41.995412 -104.429236 +82244 478 273 858193917 5818848 331.351 2.247 41.882915 -104.430492 +82301 9584 4181 3182307330 6226878 1228.696 2.404 41.892016 -107.490595 +82321 717 358 681712076 296108 263.211 0.114 41.236570 -107.741403 +82322 106 68 3901879 0 1.507 0.000 42.237737 -107.561028 +82323 186 112 73251114 58782 28.282 0.023 41.052461 -107.500073 +82324 268 209 629811850 825958 243.172 0.319 41.674026 -106.412014 +82325 878 753 1730855934 2224353 668.287 0.859 41.246959 -106.713116 +82327 929 673 1223636429 41101757 472.449 15.869 42.151449 -106.694547 +82329 359 236 1891743819 2302347 730.406 0.889 42.077760 -106.080739 +82331 2286 1476 1487403915 7409943 574.290 2.861 41.370024 -106.796539 +82332 97 57 366611414 116641 141.549 0.045 41.036084 -107.280717 +82334 501 338 627684932 32754435 242.351 12.647 41.901041 -107.017768 +82335 21 14 294038009 8867422 113.529 3.424 41.753780 -106.760179 +82336 498 310 1690859753 14190572 652.845 5.479 41.698195 -108.208558 +82401 7866 3428 1531125665 6604085 591.171 2.550 43.988573 -108.152151 +82410 1760 794 452090994 2566105 174.553 0.991 44.354714 -108.119184 +82411 664 234 238143467 0 91.948 0.000 44.414494 -108.458033 +82412 626 257 52787195 2048841 20.381 0.791 44.796848 -108.553488 +82414 15011 7656 7300738993 42150715 2818.831 16.274 44.492387 -109.593597 +82420 783 307 143562731 46347 55.430 0.018 44.934330 -108.457721 +82421 448 210 120040817 306900 46.348 0.118 44.909692 -108.599103 +82422 105 43 31054124 0 11.990 0.000 44.497663 -108.382274 +82423 233 117 48322451 5339 18.657 0.002 44.966206 -108.581214 +82426 2644 1343 1451538591 2916462 560.442 1.126 44.512585 -107.761004 +82428 139 115 549871176 749009 212.306 0.289 44.326469 -107.511112 +82430 100 41 6297169 374521 2.431 0.145 43.815454 -108.184935 +82431 3552 1544 1436597170 37208102 554.673 14.366 44.840242 -108.164383 +82432 315 150 304538172 3575276 117.583 1.380 44.202999 -107.864542 +82433 789 473 2202542648 8175427 850.407 3.157 44.061115 -109.102295 +82434 156 61 90249947 638119 34.846 0.246 44.382893 -108.298132 +82435 11738 4985 2193722640 2914546 847.001 1.125 44.810631 -108.910331 +82440 145 67 881524 0 0.340 0.000 44.719748 -108.864172 +82441 250 151 305457627 27652 117.938 0.011 44.644857 -107.768788 +82442 732 431 1711829931 1366256 660.941 0.528 43.879297 -107.321733 +82443 4697 2524 3118425525 5548573 1204.031 2.142 43.726647 -108.472130 +82450 177 124 83628221 0 32.289 0.000 44.505179 -109.435558 +82501 19408 7991 2436700899 77439975 940.816 29.900 43.032570 -108.207430 +82510 423 134 57291617 0 22.120 0.000 42.994046 -108.597860 +82512 210 141 1069761586 4267983 413.037 1.648 43.301564 -109.282617 +82513 1879 1550 3982020904 27742569 1537.467 10.711 43.627183 -109.668165 +82514 1645 528 566073024 228864 218.562 0.088 43.036205 -108.931134 +82515 446 216 21496534 0 8.300 0.000 42.903732 -108.542611 +82516 496 209 617165381 8640622 238.289 3.336 43.188442 -108.831840 +82520 13535 5959 5708643474 44779158 2204.120 17.289 42.699170 -108.618598 +82523 868 407 1965795631 21252592 758.998 8.206 43.462830 -108.822660 +82601 27400 12593 1476622711 5555850 570.127 2.145 43.088983 -106.381848 +82604 25882 10874 4782161820 18298813 1846.403 7.065 42.857603 -106.770764 +82609 15730 7072 151594143 205299 58.531 0.079 42.805201 -106.180846 +82620 210 481 1902123293 40700796 734.414 15.715 42.463048 -107.107171 +82630 10 4 162809261 343821 62.861 0.133 43.165169 -107.317240 +82633 9592 4484 8164820625 20626624 3152.455 7.964 43.022270 -105.410250 +82635 207 118 41304462 0 15.948 0.000 43.398153 -106.222390 +82636 3981 1680 238731099 2017653 92.175 0.779 42.906120 -106.170640 +82637 4136 1875 2489651801 5796825 961.260 2.238 42.814344 -105.884580 +82638 17 10 30656021 203411 11.836 0.079 43.114517 -107.323054 +82639 805 449 4360012127 11356904 1683.410 4.385 43.712117 -106.612634 +82640 29 26 423221115 144958 163.407 0.056 43.563825 -106.199923 +82642 94 74 1312709219 830287 506.840 0.321 43.245827 -107.600450 +82643 469 228 77180649 218687 29.800 0.084 43.439187 -106.259854 +82644 1480 726 2180862 2890 0.842 0.001 42.840611 -106.366610 +82646 20 14 103928485 2087701 40.127 0.806 43.000925 -106.821962 +82648 56 52 1415407681 1701766 546.492 0.657 43.281053 -107.152676 +82649 1120 577 1565974625 17336687 604.626 6.694 43.301333 -108.053346 +82701 5455 2675 5114991837 3919574 1974.909 1.513 43.711636 -104.433861 +82710 243 149 711041860 246910 274.535 0.095 44.706522 -104.248772 +82711 110 58 302402711 0 116.758 0.000 44.709224 -104.458623 +82712 264 156 324382023 0 125.245 0.000 44.453260 -104.121622 +82714 95 67 138868095 0 53.617 0.000 44.571551 -104.699607 +82715 0 2 717618 0 0.277 0.000 44.119155 -104.133391 +82716 18747 8069 2811150898 2200709 1085.391 0.850 44.464635 -105.695059 +82718 23003 9018 4876811192 2512218 1882.947 0.970 43.878837 -105.621622 +82720 955 520 1695898312 1491647 654.790 0.576 44.795997 -104.670544 +82721 3078 1444 2034358065 24422640 785.470 9.430 44.481838 -104.916416 +82723 278 158 252287082 173764 97.409 0.067 44.001929 -104.422888 +82725 207 116 735888641 894199 284.128 0.345 44.876794 -105.702597 +82727 1838 719 1233282054 1551804 476.173 0.599 44.324072 -105.198216 +82729 2251 1156 1607513594 330386 620.664 0.128 44.343178 -104.365032 +82730 1566 775 1631505472 1706870 629.928 0.659 44.046568 -104.704001 +82731 135 78 1370911666 2105168 529.312 0.813 44.824769 -105.292104 +82732 2154 928 277510931 14997 107.148 0.006 43.705442 -105.619567 +82801 24558 11285 1693205016 1259835 653.750 0.486 44.843713 -106.835993 +82831 216 124 1632317909 9234594 630.241 3.565 44.600097 -106.049796 +82832 618 329 428169282 483799 165.317 0.187 44.594845 -106.797089 +82833 225 209 254056944 1671287 98.092 0.645 44.611284 -107.063438 +82834 7585 4014 5611921075 33274653 2166.775 12.847 44.239738 -106.658714 +82835 318 179 1311406984 1493712 506.337 0.577 44.757249 -106.352084 +82836 1073 590 1319200208 1733179 509.346 0.669 44.766328 -107.507688 +82837 29 18 121072110 94067 46.746 0.036 44.772036 -106.255973 +82838 268 166 466483958 446373 180.110 0.172 44.925684 -107.585109 +82839 1153 468 302621984 635910 116.843 0.246 44.925813 -107.161076 +82842 843 654 38039151 6807 14.687 0.003 44.573010 -106.932521 +82844 35 15 47159724 58766 18.208 0.023 44.782566 -107.221085 +82845 37 23 154158820 128806 59.521 0.050 44.763362 -106.673474 +82901 27971 11943 3596245359 221685 1388.518 0.086 41.379251 -108.978212 +82922 257 356 847696068 136627 327.297 0.053 43.126480 -110.411256 +82923 558 497 2835209188 40743362 1094.680 15.731 42.650450 -109.462622 +82925 304 336 1811183581 34315256 699.302 13.249 43.239387 -109.905707 +82929 70 53 29578224 16117 11.420 0.006 41.555746 -109.843634 +82930 14614 6888 2959974091 19437644 1142.852 7.505 41.015672 -110.644785 +82932 836 391 1336504791 5966408 516.027 2.304 42.254112 -109.356980 +82933 759 349 182411930 670035 70.430 0.259 41.295938 -110.438425 +82934 185 90 58501595 0 22.588 0.000 41.604085 -110.012916 +82935 13121 5258 422333324 6894110 163.064 2.662 41.688569 -109.664735 +82936 49 27 335956959 49449 129.714 0.019 41.062349 -110.183863 +82937 3654 1390 312446946 1696611 120.636 0.655 41.347104 -110.264655 +82938 227 159 456741905 77800378 176.349 30.039 41.099639 -109.888823 +82939 1861 727 204751851 156794 79.055 0.061 41.218919 -110.345571 +82941 5028 2603 1123566431 40061902 433.811 15.468 42.905092 -109.740146 +82942 123 109 107736736 309300 41.597 0.119 41.714292 -108.870798 +82943 301 158 188861584 0 72.920 0.000 41.754643 -109.208006 +82944 216 174 509034565 2557508 196.539 0.987 41.162096 -110.464639 +82945 351 193 332146986 202248 128.243 0.078 41.744069 -109.051037 +83001 15851 8410 2092228669 10432421 807.814 4.028 43.394550 -110.629763 +83011 240 184 743334407 4112225 287.003 1.588 43.524180 -110.455876 +83012 180 201 420341300 14868998 162.295 5.741 43.732465 -110.790642 +83013 395 457 2329441571 129280377 899.402 49.915 43.993776 -110.465484 +83014 3595 2544 554210577 2436310 213.982 0.941 43.456152 -110.974384 +83025 400 603 34758376 485671 13.420 0.188 43.593599 -110.848171 +83101 3104 1677 1948912324 8186266 752.479 3.161 41.964275 -110.555433 +83110 4307 1753 382238995 138894 147.583 0.054 42.725902 -110.849219 +83111 519 228 297477738 180135 114.857 0.070 42.771750 -111.174362 +83112 666 313 357517259 146026 138.038 0.056 42.920608 -110.832476 +83113 3278 1316 2688500283 9080189 1038.036 3.506 42.531855 -110.257868 +83114 828 344 992953290 527066 383.381 0.204 42.205382 -110.976570 +83115 830 651 1526090560 2205229 589.227 0.851 42.890755 -110.315631 +83116 728 357 4021055 8101 1.553 0.003 41.768998 -110.533340 +83118 1139 500 51166178 72901 19.755 0.028 43.047855 -110.997576 +83119 172 74 34419254 0 13.289 0.000 42.643918 -110.988197 +83120 471 226 389135695 122804 150.246 0.047 42.918126 -111.118724 +83121 14 8 1091604 0 0.421 0.000 41.819716 -110.533905 +83122 494 195 33469896 0 12.923 0.000 42.820258 -110.946526 +83123 711 358 229686422 1680073 88.682 0.649 42.221111 -110.250207 +83124 137 71 251540950 14137 97.121 0.005 41.773109 -110.234012 +83126 334 180 159982754 124281 61.770 0.048 42.593741 -110.830763 +83127 3041 1748 195056850 25549 75.312 0.010 42.960430 -110.963905 +83128 1601 985 1171601177 5493340 452.358 2.121 43.064401 -110.776831 +83201 37199 15174 91680813 33595 35.398 0.013 42.904933 -112.380079 +83202 21608 7824 365775336 316966 141.227 0.122 42.925509 -112.182744 +83203 309 111 35460854 0 13.692 0.000 43.042388 -112.495945 +83204 18026 7684 595731589 1278346 230.013 0.494 42.856338 -112.629866 +83209 1175 238 1717136 0 0.663 0.000 42.857791 -112.426322 +83210 3449 1195 697248354 52777572 269.209 20.378 43.018330 -112.866464 +83211 6374 2326 1510262293 56031769 583.116 21.634 42.701149 -113.028458 +83212 137 77 537467323 109159 207.517 0.042 42.538792 -112.543984 +83213 1644 803 1629475297 1263405 629.144 0.488 43.539144 -113.266673 +83214 671 234 290549949 280847 112.182 0.108 42.539852 -112.307658 +83215 26 47 202315 0 0.078 0.000 43.443158 -112.812491 +83217 843 383 762786699 1069941 294.514 0.413 42.777857 -111.942715 +83218 338 122 1039366 0 0.401 0.000 43.317687 -112.165272 +83220 137 56 65915289 619955 25.450 0.239 42.376948 -111.423937 +83221 27021 9627 2083066302 7028741 804.276 2.714 43.324081 -112.552045 +83223 139 78 4775290 7570 1.844 0.003 42.181781 -111.406959 +83226 2504 1434 5782990454 8682200 2232.825 3.352 44.631956 -114.349893 +83227 142 168 1015081563 4080919 391.925 1.576 44.248912 -114.506633 +83228 522 185 173003630 413396 66.797 0.160 42.233732 -112.060367 +83232 467 140 25452142 50130 9.827 0.019 42.138463 -111.971088 +83233 109 45 74249842 272618 28.668 0.105 42.132912 -111.237351 +83234 1213 533 712824601 274847 275.223 0.106 42.422579 -112.101094 +83235 99 53 671686928 427178 259.340 0.165 44.575992 -113.696705 +83236 2275 840 610005994 1733958 235.525 0.669 43.191056 -111.872460 +83237 1146 385 57935180 182792 22.369 0.071 42.027452 -111.778558 +83238 109 63 193135813 580139 74.570 0.224 42.321016 -111.116429 +83239 572 235 84793142 381591 32.739 0.147 42.514620 -111.307440 +83241 1980 802 542907350 1889570 209.618 0.730 42.514851 -111.765362 +83243 80 41 193185685 501994 74.589 0.194 42.297425 -112.651280 +83244 358 153 2173756958 2428694 839.292 0.938 44.116803 -113.123868 +83245 2257 825 272236653 448258 105.111 0.173 42.818119 -112.207732 +83246 1069 767 335762343 639349 129.639 0.247 42.611018 -112.024670 +83250 1637 670 198183852 597485 76.519 0.231 42.672528 -112.204751 +83251 1097 782 2488353852 7389909 960.759 2.853 43.942426 -113.884177 +83252 4154 1838 2397057245 3490384 925.509 1.348 42.174414 -112.406565 +83253 165 107 2175823627 1265422 840.090 0.489 44.315204 -113.690673 +83254 3617 1793 1243139525 7550004 479.979 2.915 42.328791 -111.271892 +83255 1213 590 1160590518 1285474 448.107 0.496 43.685697 -113.583637 +83261 536 331 54123496 548150 20.897 0.212 42.216058 -111.433149 +83262 1386 491 537501625 1998230 207.531 0.772 43.225761 -112.774496 +83263 9258 3363 1039289256 8538809 401.272 3.297 42.181249 -111.753213 +83271 531 219 671771620 69224 259.372 0.027 42.442204 -112.912780 +83272 313 440 343789277 94810092 132.738 36.606 42.166402 -111.509215 +83274 9246 3149 236000095 1584903 91.120 0.612 43.348121 -112.098021 +83276 4097 1987 1094084363 68449102 422.428 26.428 42.757689 -111.515908 +83277 111 56 26593959 285148 10.268 0.110 43.066895 -112.667158 +83278 186 534 3796310933 23661692 1465.764 9.136 44.336337 -114.813801 +83281 93 43 105991275 485762 40.923 0.188 42.329852 -111.965452 +83283 147 58 148628567 2078884 57.386 0.803 42.371097 -111.632456 +83285 131 98 821404669 46501709 317.146 17.954 43.072445 -111.326986 +83286 1241 393 188010425 887993 72.591 0.343 42.063423 -112.015748 +83287 299 801 74536783 87907085 28.779 33.941 42.042246 -111.399191 +83301 52010 21053 729567435 3938980 281.688 1.521 42.400555 -114.524876 +83302 196 162 1723490599 753813 665.443 0.291 42.226893 -115.009033 +83311 562 254 270800193 435891 104.557 0.168 42.391735 -113.564720 +83312 168 86 333792346 40450 128.878 0.016 41.975985 -113.650773 +83313 3625 1669 597497339 11597560 230.695 4.478 43.351684 -114.257191 +83314 898 406 289934435 2621290 111.944 1.012 42.985016 -114.951592 +83316 9626 4069 674044549 4036092 260.250 1.558 42.606181 -114.880351 +83318 17226 6203 664100952 7314180 256.411 2.824 42.437884 -113.816498 +83320 1006 447 1497186894 4897257 578.067 1.891 43.481455 -113.872708 +83321 550 245 225994182 457301 87.257 0.177 42.463501 -114.914924 +83322 42 25 51371060 54170 19.834 0.021 43.349499 -114.978595 +83323 1951 685 707853830 2503039 273.304 0.966 42.503590 -113.392146 +83324 788 236 227743693 508893 87.932 0.196 42.872740 -114.272110 +83325 918 389 97612318 754807 37.688 0.291 42.587877 -114.240846 +83327 970 709 2452577392 10553023 946.945 4.075 43.492599 -114.809455 +83328 5347 2106 173179018 1917926 66.865 0.741 42.570448 -114.613167 +83330 6599 2634 304214395 1991766 117.458 0.769 42.951933 -114.707998 +83332 2361 1186 210898348 6472100 81.428 2.499 42.803115 -114.924985 +83333 10472 5025 888406844 2061127 343.016 0.796 43.568303 -114.310894 +83334 2060 760 205098905 1224607 79.189 0.473 42.444460 -114.292089 +83335 1840 686 263371529 5464929 101.688 2.110 42.579582 -114.066822 +83336 4951 1877 96583532 4988097 37.291 1.926 42.564676 -113.824649 +83337 33 34 607599613 284505 234.596 0.110 43.224071 -115.152058 +83338 19782 7067 713261871 4859095 275.392 1.876 42.725104 -114.431903 +83340 4682 5187 1439497179 7755423 555.793 2.994 43.706431 -114.618421 +83341 6491 2327 260488194 1212285 100.575 0.468 42.419134 -114.370835 +83342 1371 543 3199208991 1345948 1235.222 0.520 42.177466 -113.255097 +83344 1128 412 297784043 1497785 114.975 0.578 42.446919 -114.138302 +83346 1442 546 806830844 2672142 311.519 1.032 42.278315 -113.819913 +83347 3258 1234 543948696 4675030 210.020 1.805 42.663622 -113.809020 +83348 132 74 171948032 199634 66.390 0.077 43.249472 -114.107680 +83349 1062 414 188453338 1379158 72.762 0.532 43.096594 -114.181472 +83350 12268 4697 774121819 22774626 298.890 8.793 42.694326 -113.579982 +83352 3330 1485 566408114 3446666 218.691 1.331 43.070085 -114.412326 +83353 1335 2469 23211253 31179 8.962 0.012 43.692284 -114.320818 +83354 18 21 49743 0 0.019 0.000 43.670188 -114.322264 +83355 5405 1867 297487877 2547690 114.861 0.984 42.757435 -114.722206 +83401 37966 13664 404765983 4186797 156.281 1.617 43.542409 -111.877936 +83402 26069 10427 392831364 4251649 151.673 1.642 43.534558 -112.173804 +83404 21606 8725 69186526 94195 26.713 0.036 43.422784 -112.012073 +83406 15902 5494 260207293 2093440 100.467 0.808 43.443948 -111.811633 +83414 544 303 887484784 4651449 342.660 1.796 43.905298 -110.943196 +83420 2539 1221 1177347790 11244057 454.577 4.341 44.077471 -111.346444 +83421 319 135 37270777 664646 14.390 0.257 44.020108 -111.529228 +83422 3392 1960 348274242 576255 134.469 0.222 43.728569 -111.231457 +83423 860 408 985359534 274842 380.449 0.106 44.300087 -112.280545 +83424 290 138 151413079 307814 58.461 0.119 43.909949 -111.168114 +83425 581 199 255159950 12333744 98.518 4.762 43.912196 -112.242431 +83427 1372 447 1935761 0 0.747 0.000 43.524613 -111.932544 +83428 416 449 556789027 18220387 214.977 7.035 43.473108 -111.168679 +83429 1048 3815 1455106558 62053258 561.820 23.959 44.477202 -111.398116 +83431 876 324 32670361 557685 12.614 0.215 43.688427 -112.032935 +83433 44 191 2732388 0 1.055 0.000 44.484482 -111.333103 +83434 1741 627 107949177 5966354 41.679 2.304 43.752647 -112.006385 +83435 653 230 358976388 105995 138.602 0.041 43.988863 -112.568602 +83436 491 180 242318571 657052 93.560 0.254 43.857158 -111.472046 +83440 34610 10622 441634579 8497630 170.516 3.281 43.814690 -111.822546 +83442 19250 6274 239443064 4725041 92.449 1.824 43.671181 -111.893735 +83443 1107 459 838784857 7386238 323.857 2.852 43.515951 -111.518092 +83444 1381 471 397457454 3199655 153.459 1.235 43.719411 -112.301586 +83445 7406 2544 489841870 5573295 189.129 2.152 43.979292 -111.767357 +83446 48 73 180400602 43835 69.653 0.017 44.472573 -112.187636 +83448 2451 707 76806287 344835 29.655 0.133 43.850004 -111.692649 +83449 249 215 958703215 10075672 370.157 3.890 43.259048 -111.417191 +83450 1104 357 247046358 3433886 95.385 1.326 43.830648 -112.405569 +83451 791 313 35769603 143346 13.811 0.055 43.866555 -111.633321 +83452 1484 818 343136186 1228697 132.486 0.474 43.835421 -111.218327 +83454 531 168 919923 0 0.355 0.000 43.595424 -111.952242 +83455 4970 2551 299738869 744908 115.730 0.288 43.614042 -111.183881 +83460 860 0 625021 0 0.241 0.000 43.817020 -111.782214 +83462 464 256 278539305 918233 107.545 0.355 45.301183 -113.809337 +83463 130 129 413763861 18254 159.755 0.007 45.582568 -114.053957 +83464 345 273 2742444933 533952 1058.864 0.206 44.525949 -113.249572 +83465 109 78 480504467 460515 185.524 0.178 44.784888 -113.674737 +83466 273 243 752640941 2347917 290.596 0.907 45.414846 -114.046629 +83467 6270 3398 1961914237 5558865 757.499 2.146 44.980597 -113.897498 +83468 170 110 420394725 17350 162.315 0.007 44.922259 -113.592332 +83469 32 88 1204915909 482281 465.221 0.186 45.388152 -114.420694 +83501 34230 15092 699576163 14218072 270.108 5.490 46.210115 -116.928725 +83520 194 105 29967550 4925051 11.571 1.902 46.546311 -116.325017 +83522 2215 850 1094578278 4647406 422.619 1.794 45.919600 -116.511540 +83523 759 388 490872216 165824 189.527 0.064 46.248904 -116.443536 +83524 989 468 328268922 8929 126.745 0.003 46.365734 -116.665542 +83525 376 591 2598069213 2806777 1003.120 1.084 45.803736 -115.510371 +83526 278 113 94796885 7137 36.601 0.003 46.147763 -116.412071 +83530 5404 2545 931830048 1752235 359.782 0.677 45.919928 -116.084204 +83533 178 72 65950338 25823 25.464 0.010 46.094501 -116.236915 +83535 1089 546 138413175 2616858 53.442 1.010 46.534195 -116.724005 +83536 4230 2059 568384076 3331412 219.454 1.286 46.224382 -116.001351 +83537 1044 584 428605525 278149 165.486 0.107 46.637598 -116.550863 +83539 2001 1090 7279351671 26388670 2810.574 10.189 46.177855 -114.980094 +83540 2190 824 237363177 965347 91.646 0.373 46.345211 -116.782679 +83541 1076 635 256416391 10615672 99.003 4.099 46.513376 -116.469465 +83542 129 104 198400781 1445974 76.603 0.558 45.569135 -116.357252 +83543 717 325 354068144 131829 136.706 0.051 46.273204 -116.233428 +83544 6092 2784 610021198 24786651 235.531 9.570 46.497315 -116.143058 +83545 484 234 116463130 355418 44.967 0.137 46.426420 -116.421800 +83546 587 367 109102494 50179 42.125 0.019 46.560005 -115.822238 +83547 219 169 250879236 1662734 96.865 0.642 45.173515 -116.218129 +83548 117 55 71165160 3823 27.477 0.001 46.360925 -116.505033 +83549 908 613 1616657686 8116758 624.195 3.134 45.344169 -116.190931 +83552 1225 622 223603883 705714 86.334 0.272 46.008057 -115.932942 +83553 1100 590 276619263 247760 106.803 0.096 46.383616 -115.890577 +83554 638 435 586215136 3972383 226.339 1.534 45.714301 -116.270666 +83555 564 398 532814216 1239548 205.721 0.479 46.127543 -116.689431 +83601 41 116 996851453 3654427 384.887 1.411 43.891170 -115.259938 +83602 24 43 47395190 260026 18.299 0.100 44.070601 -116.108680 +83604 762 342 2715709628 28243804 1048.541 10.905 42.515345 -115.747855 +83605 39649 14190 72161275 661343 27.862 0.255 43.661908 -116.656290 +83607 21732 7877 576082467 21968226 222.427 8.482 43.709411 -116.750541 +83610 946 549 1030083049 10913313 397.717 4.214 44.743436 -116.773317 +83611 2453 3308 5879385696 110803329 2270.044 42.781 44.727283 -115.367783 +83612 1925 1225 1781161518 9241873 687.710 3.568 44.919575 -116.588592 +83615 1571 2083 201893044 22606602 77.951 8.728 44.720244 -116.054852 +83616 22780 8644 275638926 1924101 106.425 0.743 43.775559 -116.394918 +83617 15422 6557 607238262 8824129 234.456 3.407 43.936885 -116.505201 +83619 7201 2768 84079258 2323526 32.463 0.897 43.966100 -116.910261 +83622 1737 1744 689173698 2238152 266.091 0.864 44.103371 -115.898062 +83623 1517 781 548089397 2514531 211.619 0.971 43.082032 -115.392631 +83624 1195 530 670628244 7613701 258.931 2.940 42.900895 -116.158361 +83626 1192 456 16662744 116738 6.434 0.045 43.667499 -116.832129 +83627 620 278 253039365 7167534 97.699 2.767 42.917840 -115.547313 +83628 4329 1624 207557656 1407124 80.138 0.543 43.595444 -116.985621 +83629 1721 749 479677350 2229454 185.204 0.861 43.911839 -116.130431 +83631 1333 974 419778023 38338 162.077 0.015 43.865442 -115.640485 +83632 214 144 322988797 1771978 124.707 0.684 44.540010 -116.412891 +83633 540 260 433190329 5402396 167.256 2.086 43.013653 -115.220812 +83634 24494 6623 387964176 1575894 149.794 0.608 43.455781 -116.328453 +83636 153 57 6681555 500494 2.580 0.193 43.908912 -116.663508 +83637 206 464 1139836089 5324374 440.093 2.056 44.109258 -115.249480 +83638 5903 6341 1045395510 33479750 403.629 12.927 45.066978 -115.965305 +83639 3300 1254 613227140 3200533 236.768 1.236 43.397377 -116.866526 +83641 3438 1294 420963281 7805601 162.535 3.014 43.354103 -116.584684 +83642 37008 13692 106348819 247315 41.062 0.095 43.568795 -116.403731 +83643 129 80 57907041 216735 22.358 0.084 44.632147 -116.440976 +83644 9976 3636 131164774 251249 50.643 0.097 43.750958 -116.579646 +83645 636 333 1159495855 15344607 447.684 5.925 44.368971 -116.583493 +83646 47098 16254 71369309 443282 27.556 0.171 43.649557 -116.431756 +83647 20789 9476 3760222742 36619247 1451.830 14.139 43.400294 -115.523354 +83648 3238 1125 25667492 313077 9.910 0.121 43.049579 -115.866402 +83650 552 391 4153363355 8289324 1603.623 3.201 42.853438 -116.673568 +83651 28611 11318 38522283 117355 14.874 0.045 43.587749 -116.620338 +83654 1672 1185 651157694 938987 251.413 0.363 45.109953 -116.359415 +83655 4397 1651 151026948 2329855 58.312 0.900 43.951269 -116.789646 +83656 582 213 1141948 21428 0.441 0.008 43.726469 -116.799128 +83657 174 113 405073006 435741 156.400 0.168 44.223025 -116.296435 +83660 5890 2244 310734588 4670353 119.975 1.803 43.797717 -116.929571 +83661 9881 4116 607251407 3842104 234.461 1.483 44.080716 -116.708522 +83666 52 77 25263226 0 9.754 0.000 43.963326 -115.975879 +83669 7365 2688 51260666 411258 19.792 0.159 43.719715 -116.495406 +83670 553 228 191475165 1069927 73.929 0.413 44.018634 -116.312919 +83671 33 150 2677984352 8572844 1033.976 3.310 45.282735 -115.271213 +83672 8583 3631 1573382473 26792644 607.486 10.345 44.374143 -116.957074 +83676 4347 1623 105343892 2890014 40.674 1.116 43.656041 -116.907523 +83677 44 143 922823041 2429437 356.304 0.938 45.080689 -115.481385 +83686 46224 16819 230069084 8820466 88.830 3.406 43.492217 -116.607705 +83687 29697 10611 128746556 461549 49.709 0.178 43.609971 -116.529134 +83702 22293 11774 105378123 392750 40.687 0.152 43.676435 -116.152104 +83703 16565 7912 22228710 317207 8.583 0.122 43.665568 -116.243033 +83704 39628 17064 22687581 101533 8.760 0.039 43.627161 -116.287653 +83705 26631 12983 37199107 139730 14.363 0.054 43.561591 -116.214892 +83706 29732 14929 19355429 335057 7.473 0.129 43.591127 -116.194360 +83709 50034 18539 90048096 114548 34.768 0.044 43.551112 -116.290079 +83712 8148 3853 59452922 225706 22.955 0.087 43.614926 -116.107716 +83713 28103 10685 17440160 45618 6.734 0.018 43.639768 -116.333613 +83714 20290 9112 126229425 1421390 48.737 0.549 43.732675 -116.288433 +83716 14523 6174 1336789042 14544675 516.137 5.616 43.546065 -115.944475 +83801 6150 2500 384718268 555791 148.541 0.215 47.936835 -116.666177 +83802 68 104 1423570314 2967030 549.644 1.146 47.049875 -115.571720 +83803 744 860 164347087 138334450 63.455 53.411 48.031501 -116.443566 +83804 1254 879 135576862 809244 52.347 0.312 48.045266 -116.971311 +83805 7437 3545 2075592267 20238698 801.391 7.814 48.867052 -116.540727 +83806 220 112 51538078 10124 19.899 0.004 46.894062 -116.361162 +83808 147 146 481748565 1139768 186.004 0.440 47.332912 -116.011684 +83809 401 176 36290535 0 14.012 0.000 48.063601 -116.573546 +83810 1189 604 362731048 5685582 140.051 2.195 47.542484 -116.450785 +83811 1411 862 470592043 10528644 181.697 4.065 48.107960 -116.138084 +83812 66 70 133908993 114269 51.703 0.044 47.023228 -116.233587 +83813 1158 629 117955464 3299048 45.543 1.274 48.085042 -116.672772 +83814 23371 12287 513716392 40829222 198.347 15.764 47.691736 -116.654109 +83815 31015 13021 41943201 77930 16.194 0.030 47.726282 -116.789948 +83821 210 1054 72141982 91397622 27.854 35.289 48.538977 -116.850647 +83822 2006 880 85644818 2248567 33.068 0.868 48.179546 -116.989568 +83823 1318 626 405514677 275977 156.570 0.107 46.821265 -116.544647 +83824 348 135 137191961 0 52.970 0.000 47.113599 -116.910037 +83825 190 147 1132355 1726300 0.437 0.667 48.245783 -116.594634 +83826 45 26 10908197 0 4.212 0.000 48.976124 -116.188948 +83827 143 178 24636817 346510 9.512 0.134 46.778612 -116.173759 +83830 733 377 149724204 69130 57.809 0.027 47.086727 -116.364991 +83832 1524 639 377023512 45678 145.570 0.018 46.552294 -116.909567 +83833 1164 1567 275492543 65597106 106.368 25.327 47.509953 -116.718369 +83834 254 119 257659511 75723 99.483 0.029 46.990696 -116.639608 +83835 19990 9031 276265997 16378122 106.667 6.324 47.797214 -116.660205 +83836 1033 916 243091134 53086649 93.858 20.497 48.250939 -116.269110 +83837 3063 1671 178813706 263951 69.040 0.102 47.505619 -116.111104 +83839 1417 686 280195894 2197764 108.184 0.849 47.609496 -116.163816 +83840 227 110 217917 0 0.084 0.000 48.310572 -116.515166 +83841 338 231 12873171 0 4.970 0.000 48.201518 -116.751107 +83842 148 89 50526817 4666373 19.509 1.802 47.444837 -116.546548 +83843 25866 11395 312548071 95050 120.675 0.037 46.722245 -116.940158 +83844 1353 8 91212 0 0.035 0.000 46.730066 -117.014806 +83845 1742 783 243564136 1813299 94.041 0.700 48.789034 -116.114617 +83846 770 466 122652276 244393 47.356 0.094 47.480713 -115.767256 +83847 1719 792 294788672 1233244 113.819 0.476 48.577859 -116.449093 +83848 137 500 81979160 9245726 31.652 3.570 48.672214 -116.891538 +83849 1925 938 50516644 108050 19.505 0.042 47.538107 -115.991945 +83850 2129 1057 181164095 44533 69.948 0.017 47.454339 -116.234095 +83851 1691 845 313194622 4582039 120.925 1.769 47.296877 -116.922804 +83852 884 510 3894580 24592 1.504 0.009 48.311080 -116.543458 +83854 37245 14988 194501504 4869064 75.097 1.880 47.719292 -116.967460 +83855 2111 969 287434058 318647 110.979 0.123 46.994808 -116.888117 +83856 6340 3850 915035696 15225568 353.297 5.879 48.298487 -116.907683 +83857 691 298 165870337 115648 64.043 0.045 46.896561 -116.796131 +83858 13656 5791 306300760 4514335 118.263 1.743 47.863127 -116.949074 +83860 6119 3618 308370165 112158012 119.062 43.304 48.180561 -116.536291 +83861 6360 3241 1318545641 14450710 509.093 5.579 47.264602 -116.540566 +83864 17076 9193 1187679402 53449795 458.566 20.637 48.455281 -116.512380 +83866 320 168 170614416 0 65.875 0.000 47.155053 -116.424772 +83867 616 283 11666396 15610 4.504 0.006 47.512968 -115.945426 +83868 769 436 24800417 325757 9.575 0.126 47.516289 -116.182611 +83869 4161 1966 156006670 5762386 60.235 2.225 47.982344 -116.892359 +83870 312 182 185036312 0 71.443 0.000 47.125874 -116.831523 +83871 1938 822 289031841 521281 111.596 0.201 46.741942 -116.742676 +83872 705 305 107094242 293140 41.349 0.113 46.867496 -116.976959 +83873 1591 1054 535483015 859107 206.751 0.332 47.582863 -115.843577 +83874 64 48 114214017 4018 44.098 0.002 47.643351 -115.804004 +83876 1442 1380 309468722 25528878 119.487 9.857 47.457470 -116.930561 +84001 725 272 58467850 114552 22.575 0.044 40.346686 -110.275956 +84002 302 106 139536870 35411 53.875 0.014 40.452048 -110.306744 +84003 42384 11467 149819678 177362 57.846 0.068 40.471560 -111.680586 +84004 9818 2606 75922497 26992 29.314 0.010 40.508238 -111.751659 +84005 21410 5544 79870577 0 30.838 0.000 40.325116 -111.996538 +84006 826 308 54185509 0 20.921 0.000 40.601478 -112.117237 +84007 740 267 118154043 1724500 45.620 0.666 40.323702 -110.207858 +84010 44821 16038 38981778 54636 15.051 0.021 40.867942 -111.867845 +84013 1011 304 103667621 32491 40.026 0.013 40.295924 -112.094468 +84014 15268 4997 14214416 39121 5.488 0.015 40.932087 -111.884033 +84015 62494 19887 54611153 158231 21.085 0.061 41.120367 -112.060760 +84017 3556 1889 1225542587 11003736 473.185 4.249 40.929601 -111.224304 +84018 179 55 388737653 0 150.092 0.000 41.215208 -111.445654 +84020 39765 12123 65228642 38827 25.185 0.015 40.500154 -111.869576 +84021 3323 2423 1722015808 13289967 664.874 5.131 40.108244 -110.533742 +84022 896 555 834485206 10559643 322.197 4.077 40.391646 -112.626718 +84023 266 265 399421669 3094300 154.218 1.195 40.939026 -109.189534 +84024 63 36 20321263 0 7.846 0.000 41.007664 -111.447336 +84025 18255 5343 31625996 437200 12.211 0.169 40.980801 -111.904831 +84026 1668 583 109436991 1807957 42.254 0.698 40.282780 -109.837771 +84027 452 1108 527936877 401718 203.838 0.155 40.153749 -110.820052 +84028 824 1967 125961654 81030368 48.634 31.286 41.928262 -111.417602 +84029 9473 3112 879930283 282443 339.743 0.109 40.645952 -112.737700 +84031 259 383 796724131 4940863 307.617 1.908 40.564876 -110.808566 +84032 17249 6787 812238742 12390681 313.607 4.784 40.539413 -111.321274 +84033 1032 351 136181228 0 52.580 0.000 40.985609 -111.501145 +84034 209 126 1537290270 36715 593.551 0.014 40.059081 -113.878081 +84035 748 314 1483945513 9727203 572.955 3.756 40.366293 -109.199537 +84036 6045 3049 823676271 4371573 318.023 1.688 40.675892 -111.015709 +84037 33369 9506 48332407 214870 18.661 0.083 41.027177 -111.950728 +84038 347 372 112839596 62345482 43.568 24.072 41.922699 -111.306214 +84039 1102 382 278923676 1233474 107.693 0.476 40.479556 -109.803813 +84040 23026 7252 27730671 340770 10.707 0.132 41.092343 -111.928061 +84041 44625 15228 38231214 116889 14.761 0.045 41.069915 -111.981254 +84042 10094 2608 20818744 0 8.038 0.000 40.340772 -111.724517 +84043 49030 13505 80603815 942686 31.121 0.364 40.409121 -111.872684 +84044 26524 8098 123277485 73391046 47.598 28.336 40.721150 -112.164945 +84045 16875 4457 52746599 108625 20.366 0.042 40.336496 -111.911198 +84046 793 844 333284406 4460750 128.682 1.722 40.920945 -109.830689 +84047 28936 12425 16157178 8861 6.238 0.003 40.617184 -111.895066 +84049 4372 2641 215906802 10472145 83.362 4.043 40.523647 -111.519703 +84050 9290 2946 972505092 2929087 375.486 1.131 41.022588 -111.676848 +84051 402 149 135601508 101145 52.356 0.039 40.386804 -110.423206 +84052 1403 585 378454914 414352 146.122 0.160 40.166547 -109.997558 +84053 1115 389 146686190 54866 56.636 0.021 40.454672 -110.010150 +84054 16196 5595 21493886 190651 8.299 0.074 40.838886 -111.917281 +84055 1406 1607 402620302 1385982 155.453 0.535 40.708041 -111.198457 +84056 3310 1000 24485806 57739 9.454 0.022 41.129127 -111.991930 +84057 36666 11347 16349627 0 6.313 0.000 40.314277 -111.710402 +84058 30540 9444 30761356 1153440 11.877 0.445 40.287743 -111.727923 +84060 7596 9520 72665509 630492 28.056 0.243 40.652531 -111.501916 +84061 391 186 77923403 28659 30.086 0.011 40.752160 -111.329532 +84062 43269 12319 105409058 70564 40.699 0.027 40.441154 -111.670450 +84063 334 138 839949768 14838577 324.306 5.729 39.849590 -109.680896 +84064 692 314 400995208 385703 154.825 0.149 41.679273 -111.137731 +84065 38168 9819 54003593 8580 20.851 0.003 40.495789 -111.943116 +84066 11283 3894 434263157 1424000 167.670 0.550 40.328339 -110.026744 +84067 37444 12791 21301336 4451 8.224 0.002 41.171050 -112.048138 +84069 505 209 165901309 670 64.055 0.000 40.393687 -112.522732 +84070 24861 9530 18635445 0 7.195 0.000 40.577106 -111.889047 +84071 1175 407 277461036 2163646 107.128 0.835 40.393861 -112.307126 +84072 372 332 309609060 0 119.541 0.000 40.355405 -110.660310 +84073 191 82 44075289 19851 17.018 0.008 40.354653 -110.434844 +84074 44310 14385 282848303 567216 109.208 0.219 40.557899 -112.265077 +84075 24506 6586 36655006 409293 14.153 0.158 41.080987 -112.080698 +84076 390 115 46486308 0 17.948 0.000 40.466458 -109.845533 +84078 25851 9548 2402068708 10568987 927.444 4.081 40.630436 -109.483101 +84080 304 108 90689417 189085 35.015 0.073 40.100245 -112.429974 +84081 40732 11425 37919622 0 14.641 0.000 40.602803 -112.037636 +84082 743 296 277475077 0 107.134 0.000 40.365805 -111.395246 +84083 1516 658 5420215136 1677939 2092.757 0.648 40.815615 -113.568588 +84084 37247 12110 19989848 0 7.718 0.000 40.622887 -111.964564 +84085 531 198 251739185 1039930 97.197 0.402 40.590702 -109.952164 +84086 401 173 258939206 110047 99.977 0.042 41.473679 -111.233054 +84087 13983 4252 33583418 1784707 12.967 0.689 40.884929 -111.932247 +84088 35603 10964 24395069 0 9.419 0.000 40.595163 -111.960909 +84092 29525 9771 141724364 200387 54.720 0.077 40.554125 -111.706362 +84093 23130 7602 14046164 0 5.423 0.000 40.594774 -111.828532 +84094 28069 9297 13223087 0 5.105 0.000 40.571872 -111.862135 +84095 50566 14987 58665239 196996 22.651 0.076 40.555303 -111.978584 +84096 33396 9358 181899214 128519 70.232 0.050 40.515825 -112.102079 +84097 21322 6249 15555370 0 6.006 0.000 40.304832 -111.673117 +84098 17282 9827 212606138 35652 82.088 0.014 40.733567 -111.533007 +84101 5277 2916 4712265 0 1.819 0.000 40.756380 -111.900065 +84102 17421 9789 4594063 0 1.774 0.000 40.760250 -111.864386 +84103 21084 11459 39082615 0 15.090 0.000 40.795080 -111.842571 +84104 24869 7579 54996101 19163 21.234 0.007 40.751489 -111.979512 +84105 22140 10005 7872934 0 3.040 0.000 40.738309 -111.859559 +84106 33384 14836 15641079 0 6.039 0.000 40.706763 -111.855656 +84107 30863 13866 19430237 0 7.502 0.000 40.658021 -111.884454 +84108 20738 8502 178228247 381006 68.814 0.147 40.808532 -111.729104 +84109 23858 9385 159504953 7263 61.585 0.003 40.705812 -111.704544 +84111 10744 6470 3713794 0 1.434 0.000 40.755959 -111.883983 +84112 1942 388 2229459 0 0.861 0.000 40.765074 -111.841491 +84113 245 14 611596 0 0.236 0.000 40.764656 -111.833633 +84115 24668 10892 15947145 0 6.157 0.000 40.714497 -111.892687 +84116 33297 10535 97250648 202629 37.549 0.078 40.801642 -111.957074 +84117 24305 10722 14815378 0 5.720 0.000 40.661033 -111.834700 +84118 68295 20084 44361298 0 17.128 0.000 40.653529 -112.013394 +84119 53077 17547 31234881 136726 12.060 0.053 40.700258 -111.946425 +84120 48956 13994 26348282 0 10.173 0.000 40.697474 -112.001241 +84121 41702 17183 166739729 418283 64.379 0.161 40.611653 -111.714916 +84123 37900 14770 21291280 0 8.221 0.000 40.658892 -111.921627 +84124 21295 8354 15042373 0 5.808 0.000 40.677200 -111.813266 +84128 27983 7503 26489343 0 10.228 0.000 40.700450 -112.046771 +84144 0 0 58280 0 0.023 0.000 40.768260 -111.892525 +84180 0 0 59013 0 0.023 0.000 40.770444 -111.901105 +84301 883 299 11365227 0 4.388 0.000 41.608192 -112.130121 +84302 23703 8203 149117537 1420401 57.575 0.548 41.553614 -112.050758 +84304 40 18 32185975 1416668 12.427 0.547 41.819409 -111.997770 +84305 751 257 107823197 0 41.631 0.000 41.944033 -112.075561 +84306 318 113 45748227 58176 17.663 0.022 41.795442 -112.042427 +84307 1375 501 1144071276 7278842 441.728 2.810 41.458565 -112.504802 +84308 325 101 63672752 128985 24.584 0.050 41.967782 -112.008643 +84309 535 205 22097978 0 8.532 0.000 41.714096 -112.098565 +84310 4111 2287 291954923 4017014 112.724 1.551 41.335665 -111.847402 +84311 714 248 18170696 0 7.016 0.000 41.823617 -112.115920 +84312 4028 1297 60705242 87465 23.438 0.034 41.773829 -112.152564 +84313 68 103 738970036 347983 285.318 0.134 41.660143 -113.962312 +84314 1031 330 20869994 0 8.058 0.000 41.648335 -112.092798 +84315 7581 2284 45958088 2412546 17.745 0.931 41.167508 -112.137773 +84316 254 109 419749138 513270 162.066 0.198 41.770965 -112.484431 +84317 2304 2355 558279236 6760925 215.553 2.610 41.307999 -111.620061 +84318 3918 1128 11796634 0 4.555 0.000 41.802537 -111.813690 +84319 7905 2365 252508719 1799587 97.494 0.695 41.606288 -111.663276 +84320 2237 749 115147423 315393 44.459 0.122 41.964118 -111.845155 +84321 44074 14718 498609538 2368327 192.514 0.914 41.717722 -111.836493 +84324 701 257 30824946 0 11.902 0.000 41.487820 -111.952659 +84325 2078 597 95614195 1838233 36.917 0.710 41.724760 -111.988952 +84326 1763 496 7762426 0 2.997 0.000 41.670663 -111.817847 +84327 951 286 44734449 1845612 17.272 0.713 41.869888 -111.992929 +84328 1666 536 150566732 0 58.134 0.000 41.545839 -111.834778 +84329 202 144 1245902081 46681 481.046 0.018 41.760498 -113.418857 +84330 502 161 74869951 0 28.907 0.000 41.926057 -112.163256 +84331 272 115 144601557 0 55.831 0.000 41.948447 -112.273634 +84332 7218 2331 10825455 0 4.180 0.000 41.699981 -111.812263 +84333 2722 874 62234258 469960 24.029 0.181 41.907231 -111.812116 +84334 230 95 2352653 0 0.908 0.000 41.782587 -112.147640 +84335 11372 3561 172135351 9519552 66.462 3.676 41.836112 -111.874843 +84336 281 136 728413553 496949 281.242 0.192 41.912978 -112.770604 +84337 11393 3783 451273985 2826101 174.238 1.091 41.765101 -112.317414 +84338 481 166 28297232 316033 10.926 0.122 41.912155 -111.940620 +84339 5046 1507 145863851 329654 56.318 0.127 41.626019 -111.946203 +84340 3369 1141 31489503 0 12.158 0.000 41.363536 -112.036066 +84341 20109 7082 31796719 21402 12.277 0.008 41.775527 -111.806434 +84401 35622 14096 76445717 821094 29.516 0.317 41.212322 -112.033495 +84403 36582 13885 93274452 32386 36.013 0.013 41.194538 -111.906345 +84404 56363 20140 241246525 3626159 93.146 1.400 41.269473 -112.117645 +84405 31348 11450 46522323 170247 17.962 0.066 41.156796 -111.965799 +84414 26507 8756 42184001 0 16.287 0.000 41.321951 -111.976065 +84501 13612 5313 373533104 56983 144.222 0.022 39.546389 -110.757509 +84511 4672 1617 1115506701 3361062 430.700 1.298 37.585290 -109.408255 +84512 1093 504 725745785 1511699 280.212 0.584 37.134403 -109.592317 +84513 1710 737 29035388 56618 11.211 0.022 39.237671 -111.014475 +84515 15 18 824494793 7549332 318.339 2.915 38.975092 -109.128567 +84516 227 87 60772929 0 23.465 0.000 39.142987 -111.068840 +84518 702 268 171530946 64837 66.228 0.025 39.388873 -110.876886 +84520 1302 722 14729264 15905 5.687 0.006 39.533055 -110.429496 +84521 840 314 148154695 1481523 57.203 0.572 39.417033 -110.762446 +84522 321 168 141964368 49878 54.813 0.019 38.923418 -111.210417 +84523 1797 675 295001586 1922834 113.901 0.742 39.093675 -111.197985 +84525 1183 497 2814449796 12496552 1086.665 4.825 39.081441 -110.054367 +84526 4134 2518 833763487 10988511 321.918 4.243 39.739534 -110.936495 +84528 2742 1068 454256700 1271539 175.389 0.491 39.410978 -111.085621 +84529 180 112 3287268 0 1.269 0.000 39.679446 -110.820751 +84530 460 263 720259462 403230 278.094 0.156 38.283551 -109.158651 +84531 642 261 1474694505 5764659 569.383 2.226 37.176854 -109.883606 +84532 9772 5016 3800718411 28476234 1467.466 10.995 38.526496 -109.548307 +84533 267 346 3578540349 177900342 1381.682 68.688 37.519792 -110.379196 +84534 2654 854 1128999701 5154129 435.909 1.990 37.253519 -109.231924 +84535 2601 1079 4871767686 4193878 1881.000 1.619 37.999676 -109.557230 +84536 1454 513 1546533859 209428 597.120 0.081 37.120416 -110.349581 +84537 1505 691 242569757 28569 93.657 0.011 39.323950 -111.216278 +84539 379 179 104450389 0 40.329 0.000 39.613451 -110.337801 +84540 46 62 2635960859 0 1017.750 0.000 39.243399 -109.435768 +84542 1806 722 17413395 0 6.723 0.000 39.542324 -110.734989 +84601 31486 10218 36205030 21424 13.979 0.008 40.226534 -111.697090 +84604 49145 13383 324466148 18975 125.277 0.007 40.318627 -111.576503 +84606 32291 10097 29316820 0 11.319 0.000 40.214442 -111.625544 +84620 1151 409 41778294 0 16.131 0.000 38.914823 -111.927668 +84621 240 84 19006734 161922 7.339 0.063 39.050965 -111.826247 +84622 1517 484 50196592 0 19.381 0.000 39.103831 -111.821679 +84623 405 131 53951357 150575 20.831 0.058 39.453838 -111.588450 +84624 5668 2150 1268242224 2461967 489.671 0.951 39.459894 -112.642706 +84626 410 114 228680482 45601 88.294 0.018 39.904448 -111.998980 +84627 6310 1817 86268798 117078 33.309 0.045 39.353135 -111.561178 +84628 721 357 53340975 0 20.595 0.000 39.941547 -112.131344 +84629 2531 1959 672156833 561188 259.521 0.217 39.795141 -111.471852 +84630 294 118 257286189 17963 99.339 0.007 39.302670 -111.841091 +84631 3067 1191 428628339 58885 165.494 0.023 38.957653 -112.388643 +84632 1148 407 68441719 0 26.425 0.000 39.620158 -111.658267 +84633 1048 356 109921593 189799 42.441 0.073 39.967495 -111.906770 +84634 3395 667 109020565 0 42.093 0.000 39.158405 -111.811071 +84635 863 326 98163854 3523 37.901 0.001 39.401963 -112.722943 +84636 474 210 169711355 0 65.526 0.000 39.140602 -112.338928 +84637 729 335 346874376 3364 133.929 0.001 38.677945 -112.517661 +84638 294 105 121202034 3614932 46.796 1.396 39.511247 -112.256195 +84639 963 395 547816627 2147200 211.513 0.829 39.507673 -111.900076 +84640 121 62 91371404 69506 35.279 0.027 39.497242 -112.380686 +84642 3548 1202 129800651 1464181 50.116 0.565 39.287997 -111.616009 +84643 605 251 66781147 0 25.784 0.000 39.115164 -111.712850 +84645 2620 674 218314375 6189971 84.292 2.390 39.835528 -111.843671 +84646 1657 571 100634175 26231 38.855 0.010 39.541055 -111.608795 +84647 4019 1744 284226611 0 109.741 0.000 39.541107 -111.415821 +84648 5776 1972 401392838 0 154.979 0.000 39.685806 -111.864493 +84649 760 277 588399376 4734146 227.182 1.828 39.344434 -112.329197 +84651 23457 6790 282095615 187634 108.918 0.072 39.958110 -111.715491 +84652 872 310 30501058 0 11.777 0.000 39.016903 -111.868223 +84653 7947 2248 57452531 60104 22.183 0.023 40.026902 -111.644209 +84654 2689 1317 636641104 515875 245.809 0.199 38.879534 -111.625880 +84655 10547 2861 117969708 112115 45.548 0.043 39.971313 -111.806820 +84656 345 165 49032396 3035003 18.932 1.172 39.135627 -112.068389 +84657 505 179 53946306 1100198 20.829 0.425 38.818586 -111.938937 +84660 37995 10475 361230376 645018 139.472 0.249 40.121268 -111.695542 +84662 1371 534 204659435 23989 79.019 0.009 39.429470 -111.471926 +84663 29975 9197 354297300 0 136.795 0.000 40.165629 -111.495076 +84664 8033 2136 44250438 0 17.085 0.000 40.115110 -111.565118 +84665 528 194 58458884 2733530 22.571 1.055 39.195679 -111.670247 +84667 405 137 42265115 1316721 16.319 0.508 39.500475 -111.665536 +84701 8692 3447 694513133 4518024 268.153 1.744 38.601242 -111.698408 +84710 131 140 79399742 114623 30.656 0.044 37.482301 -112.477748 +84711 735 244 94007927 367813 36.297 0.142 38.668541 -112.021466 +84712 201 172 527160818 10918536 203.538 4.216 37.988257 -111.935578 +84713 3792 1753 263738041 38902 101.830 0.015 38.322179 -112.650931 +84714 835 474 1029168930 181211 397.364 0.070 37.848004 -113.724295 +84715 459 211 73801333 0 28.495 0.000 38.290094 -111.548776 +84716 297 238 660313228 839478 254.948 0.324 37.944390 -111.442260 +84718 189 83 76099278 0 29.382 0.000 37.539582 -112.045105 +84719 90 1585 156503182 37804 60.426 0.015 37.672574 -112.810350 +84720 19705 7752 805657064 4730336 311.066 1.826 37.590013 -113.187631 +84721 20961 7459 656444208 3171218 253.455 1.224 37.770340 -113.078614 +84722 615 347 35995882 150948 13.898 0.058 37.457594 -113.605411 +84723 687 320 40608913 8493 15.679 0.003 38.180067 -112.252464 +84724 1214 475 10003936 0 3.863 0.000 38.675277 -112.148888 +84725 1964 686 435129850 1810778 168.005 0.699 37.540352 -113.780206 +84726 961 499 971685855 529362 375.170 0.204 37.739223 -111.588585 +84728 158 83 869031718 1202554 335.535 0.464 39.295173 -113.906591 +84729 396 208 257654397 8866 99.481 0.003 37.376776 -112.628990 +84730 268 102 28697685 53190 11.080 0.021 38.736308 -112.019380 +84731 194 85 200272973 46732 77.326 0.018 38.253489 -112.853201 +84732 77 54 24400071 0 9.421 0.000 38.445396 -111.902310 +84733 202 75 284516380 1036964 109.852 0.400 37.259209 -113.774912 +84734 261 127 2236192684 7630517 863.399 2.946 38.305338 -110.652037 +84735 258 298 330388691 0 127.564 0.000 37.640600 -112.430772 +84736 246 97 22771316 7892 8.792 0.003 37.549884 -111.997950 +84737 14838 5893 510656508 2512934 197.166 0.970 37.042385 -113.205549 +84738 6878 2928 57182070 155244 22.078 0.060 37.175509 -113.705884 +84739 507 198 71822155 0 27.731 0.000 38.629228 -112.206129 +84740 191 121 124550954 4260053 48.089 1.645 38.275966 -112.271437 +84741 5556 2875 3507746902 1467240 1354.349 0.567 37.187134 -112.249449 +84742 260 127 72006528 24008 27.802 0.009 37.540108 -113.208030 +84743 34 19 81513966 0 31.473 0.000 38.174184 -112.138466 +84744 411 229 99716943 28510 38.501 0.011 38.620207 -111.943044 +84745 4066 1429 44818260 0 17.304 0.000 37.231638 -113.244595 +84746 1149 466 23976045 0 9.257 0.000 37.242775 -113.356165 +84747 1097 497 174175578 0 67.250 0.000 38.406572 -111.643882 +84749 218 97 102409276 24857 39.540 0.010 38.431025 -111.529071 +84750 469 315 327172831 326187 126.322 0.126 38.438354 -112.193361 +84751 1680 726 774400164 211509 298.998 0.082 38.383423 -112.927663 +84752 994 336 85467737 4010746 32.999 1.549 38.186768 -112.872617 +84753 26 47 910089023 158344 351.387 0.061 37.967787 -113.857595 +84754 3652 1424 164035295 45250 63.334 0.017 38.624276 -112.108705 +84755 112 129 207949176 4127 80.290 0.002 37.229667 -112.770291 +84756 366 190 377027306 440813 145.571 0.170 37.574253 -113.569077 +84757 1167 555 132302113 221390 51.082 0.085 37.459631 -113.263495 +84758 533 305 200015269 0 77.226 0.000 37.318801 -112.722460 +84759 2112 1399 1286598210 4300166 496.758 1.660 37.906609 -112.399422 +84760 559 311 370478263 283268 143.042 0.109 37.954968 -112.669182 +84761 3131 1600 393673338 628676 151.998 0.243 37.875242 -112.848443 +84762 248 2282 579688920 1305560 223.819 0.504 37.497286 -112.755671 +84763 245 172 43425123 0 16.767 0.000 37.142288 -113.070534 +84764 331 294 134650693 751 51.989 0.000 37.590136 -112.167286 +84765 6143 2021 24697327 37453 9.536 0.014 37.122914 -113.702106 +84766 147 63 138800305 0 53.591 0.000 38.576349 -112.317073 +84767 679 481 676026237 0 261.015 0.000 37.236992 -112.986607 +84770 39131 18119 135824591 10474 52.442 0.004 37.185679 -113.609837 +84772 171 82 17614144 5852 6.801 0.002 37.774317 -112.937704 +84773 321 280 259792307 26898 100.306 0.010 38.225681 -111.340953 +84774 1399 522 107632342 0 41.557 0.000 37.290426 -113.281239 +84775 431 389 1302306094 538690 502.823 0.208 37.934018 -110.949438 +84776 538 224 25885795 56310 9.995 0.022 37.635599 -112.077341 +84779 641 554 534060364 1127172 206.202 0.435 37.334886 -113.122148 +84780 18756 7540 95088904 92903 36.714 0.036 37.125869 -113.494186 +84781 188 481 185933070 30847 71.789 0.012 37.411550 -113.462096 +84782 794 358 63622459 20377 24.565 0.008 37.348820 -113.664474 +84783 805 318 122143294 57483 47.160 0.022 37.241141 -113.701443 +84784 2745 290 36638823 0 14.146 0.000 37.025334 -112.963890 +84790 35770 14477 114517630 1343887 44.216 0.519 37.048309 -113.558054 +85003 9369 4910 4795027 0 1.851 0.000 33.450662 -112.078353 +85004 4965 2804 5283332 0 2.040 0.000 33.451567 -112.069886 +85006 25742 10183 10108876 2685 3.903 0.001 33.465234 -112.048771 +85007 14040 5916 11690704 182632 4.514 0.071 33.447614 -112.090883 +85008 56145 23282 27110870 142271 10.468 0.055 33.462954 -111.985178 +85009 52520 14369 40357622 171258 15.582 0.066 33.443097 -112.128136 +85012 6390 3804 5682461 9920 2.194 0.004 33.507577 -112.070981 +85013 19314 10943 9628904 27034 3.718 0.010 33.511087 -112.084749 +85014 24782 14326 10824910 26017 4.180 0.010 33.508316 -112.057351 +85015 37644 16495 12646585 29719 4.883 0.011 33.508664 -112.102018 +85016 33896 19287 23399384 202991 9.035 0.078 33.511517 -112.019166 +85017 38872 13883 13577669 20007 5.242 0.008 33.508782 -112.123068 +85018 36065 19231 28784216 113245 11.114 0.044 33.505956 -111.985386 +85019 25042 8241 9712436 16767 3.750 0.006 33.508879 -112.144514 +85020 32850 17709 23027513 65269 8.891 0.025 33.567351 -112.053591 +85021 37743 17619 17419863 74919 6.726 0.029 33.559421 -112.092875 +85022 46395 22923 24230486 4009 9.355 0.002 33.627240 -112.048414 +85023 31274 13690 18927804 18972 7.308 0.007 33.635109 -112.093768 +85024 22898 10131 72976206 190634 28.176 0.074 33.736104 -112.029599 +85027 37140 17010 36408565 61302 14.057 0.024 33.679761 -112.092529 +85028 19157 8705 25957279 1791 10.022 0.001 33.575740 -112.008409 +85029 43233 18508 24717205 84199 9.543 0.033 33.594738 -112.109861 +85031 30493 8716 10501712 32094 4.055 0.012 33.493971 -112.166926 +85032 65485 29594 32170337 16891 12.421 0.007 33.625920 -112.002503 +85033 53037 16046 15789701 24992 6.096 0.010 33.492969 -112.209757 +85034 5582 2062 29587865 149802 11.424 0.058 33.429462 -112.013854 +85035 47486 14961 14797711 0 5.713 0.000 33.471449 -112.194732 +85037 44771 14660 21200571 35822 8.186 0.014 33.490164 -112.268027 +85040 29352 10446 26352332 76834 10.175 0.030 33.406479 -112.025469 +85041 54947 17226 41109732 114445 15.873 0.044 33.385930 -112.110307 +85042 40962 14698 38929554 873 15.031 0.000 33.369197 -112.043510 +85043 30560 9443 49678326 9543 19.181 0.004 33.431905 -112.196998 +85044 37993 18246 37412960 47415 14.445 0.018 33.352957 -112.019082 +85045 7238 2693 9384025 22688 3.623 0.009 33.303866 -112.103388 +85048 33449 13632 51156859 115156 19.752 0.044 33.312552 -112.057185 +85050 25736 11333 37759457 110821 14.579 0.043 33.682738 -111.998063 +85051 40375 16525 16360814 129479 6.317 0.050 33.558659 -112.132418 +85053 28480 11898 13491929 741 5.209 0.000 33.629939 -112.131344 +85054 5384 3801 23311654 198420 9.001 0.077 33.678527 -111.941099 +85083 18104 6293 25504762 0 9.847 0.000 33.724574 -112.158544 +85085 17517 7618 66343140 12560 25.615 0.005 33.750396 -112.090231 +85086 40495 16014 151078149 107736 58.332 0.042 33.815971 -112.119836 +85087 7708 3248 194147370 22393 74.961 0.009 33.924909 -112.127494 +85118 12246 8236 412809693 30028 159.387 0.012 33.352129 -111.320989 +85119 21219 13530 114040443 0 44.031 0.000 33.409685 -111.501960 +85120 28168 17473 46272549 53412 17.866 0.021 33.402386 -111.567878 +85121 2178 615 190170925 206620 73.425 0.080 33.144406 -111.922207 +85122 50942 22918 129556205 0 50.022 0.000 32.917125 -111.744210 +85123 10677 5019 68784574 194479 26.558 0.075 32.715395 -111.697663 +85128 14823 5850 423108085 4476791 163.363 1.728 32.989934 -111.537957 +85131 18017 4237 698441996 743829 269.670 0.287 32.672511 -111.547278 +85132 33556 8704 1564297581 1177600 603.979 0.455 32.926782 -111.215101 +85135 630 288 1141779 4026 0.441 0.002 33.003771 -110.785507 +85137 2329 1157 535529065 3296248 206.769 1.273 33.136413 -111.022623 +85138 33633 13392 191824823 294210 74.064 0.114 33.007286 -111.989258 +85139 17979 7211 500871522 80003 193.388 0.031 32.979987 -112.144852 +85140 36711 12775 86861807 0 33.538 0.000 33.244531 -111.543814 +85141 515 221 108615327 106826 41.937 0.041 32.641547 -111.434452 +85142 48870 16505 183833102 125610 70.978 0.048 33.199990 -111.636294 +85143 35015 13526 93126327 0 35.956 0.000 33.158660 -111.519040 +85145 2106 758 57566201 8799 22.226 0.003 32.552311 -111.365677 +85147 4543 1193 184693008 90 71.310 0.000 33.129087 -111.733471 +85172 1368 451 170572599 577466 65.858 0.223 32.883417 -111.953347 +85173 2872 1473 96633700 0 37.310 0.000 33.270161 -111.123283 +85192 2120 997 941656318 694092 363.576 0.268 32.962942 -110.678531 +85193 4906 2080 671072181 63850 259.102 0.025 32.800249 -111.817404 +85194 6721 3673 196490243 88044 75.865 0.034 32.897651 -111.628756 +85201 46092 21487 24145872 1341373 9.323 0.518 33.433545 -111.850400 +85202 37275 17681 16247196 362652 6.273 0.140 33.381349 -111.874001 +85203 35541 13644 23725997 1237133 9.161 0.478 33.450359 -111.802894 +85204 60885 22611 25653620 12395 9.905 0.005 33.395720 -111.786608 +85205 39858 22676 25343510 8096 9.785 0.003 33.432420 -111.718512 +85206 33154 18849 24747609 70294 9.555 0.027 33.396337 -111.717093 +85207 44744 20434 77326920 262017 29.856 0.101 33.453507 -111.635650 +85208 34762 18657 23246803 152558 8.976 0.059 33.403307 -111.628063 +85209 37377 20027 28670342 20577 11.070 0.008 33.375450 -111.638670 +85210 36464 15095 17051574 17423 6.584 0.007 33.389733 -111.843505 +85212 24492 8095 91756100 109357 35.427 0.042 33.322324 -111.635342 +85213 31797 14592 24490995 528720 9.456 0.204 33.448733 -111.769015 +85215 15963 9141 214688077 5427547 82.892 2.096 33.511896 -111.579396 +85224 42796 18763 24249761 440 9.363 0.000 33.324113 -111.878217 +85225 69810 27397 33101476 3918 12.781 0.002 33.317448 -111.830487 +85226 37376 15439 207611133 730231 80.159 0.282 33.250545 -112.015898 +85233 37564 14487 25214199 340097 9.735 0.131 33.353505 -111.811432 +85234 50014 17366 30832715 77877 11.905 0.030 33.363458 -111.740547 +85248 29821 16773 78308216 258313 30.235 0.100 33.214790 -111.869917 +85249 36908 13667 35758173 88173 13.806 0.034 33.224956 -111.795717 +85250 15906 9669 24377959 248125 9.412 0.096 33.534451 -111.887354 +85251 34390 22441 19048355 126850 7.355 0.049 33.493513 -111.919239 +85253 17047 8211 46562854 200306 17.978 0.077 33.544833 -111.957563 +85254 45801 20252 35301158 91775 13.630 0.035 33.615485 -111.952235 +85255 37270 19159 226811440 152418 87.572 0.059 33.668727 -111.823682 +85256 4974 1854 85498969 2183332 33.011 0.843 33.500584 -111.843728 +85257 26755 13896 16990967 117534 6.560 0.045 33.461960 -111.916392 +85258 23342 15233 22203131 571659 8.573 0.221 33.564295 -111.895881 +85259 21422 10270 53070105 0 20.490 0.000 33.601112 -111.809488 +85260 36056 19498 37622439 28343 14.526 0.011 33.610739 -111.891472 +85262 11275 7273 327758703 168433 126.548 0.065 33.835028 -111.806018 +85263 2111 1801 874939286 10343222 337.816 3.994 33.839559 -111.523604 +85264 1249 425 552532720 7945350 213.334 3.068 33.635113 -111.532284 +85266 11406 6232 44367011 2653 17.130 0.001 33.766460 -111.918051 +85268 22684 13281 53433475 229819 20.631 0.089 33.606089 -111.743277 +85281 57348 26011 34574278 340085 13.349 0.131 33.427413 -111.933836 +85282 48671 23136 28943731 44727 11.175 0.017 33.393682 -111.931698 +85283 44813 19320 22738886 362795 8.780 0.140 33.364638 -111.931604 +85284 16479 6407 20095638 77342 7.759 0.030 33.338075 -111.934469 +85286 38930 14351 42046563 52282 16.234 0.020 33.271995 -111.831899 +85295 38332 13857 32737996 29636 12.640 0.011 33.303148 -111.740678 +85296 36799 12927 29325865 0 11.323 0.000 33.335384 -111.740629 +85297 26979 8740 27321769 18675 10.549 0.007 33.277771 -111.731454 +85298 21479 8215 37047908 9905 14.304 0.004 33.241186 -111.726727 +85301 60161 23846 24014066 0 9.272 0.000 33.531753 -112.177935 +85302 36909 15947 15805548 0 6.103 0.000 33.567972 -112.177961 +85303 30310 9718 16403323 1871 6.333 0.001 33.531968 -112.223430 +85304 25883 9772 14422620 75864 5.569 0.029 33.599739 -112.178276 +85305 10822 4328 16473658 955 6.361 0.000 33.531789 -112.256200 +85306 24191 9641 14509765 49766 5.602 0.019 33.624556 -112.176590 +85307 9230 3613 32148424 280372 12.413 0.108 33.539456 -112.312959 +85308 63876 26234 44926851 207701 17.346 0.080 33.660412 -112.183426 +85309 1485 1796 8850235 118 3.417 0.000 33.530879 -112.382786 +85310 19007 7026 23606984 14812 9.115 0.006 33.707649 -112.159214 +85320 1197 557 1409323056 154359 544.143 0.060 33.910187 -113.209957 +85321 4435 2731 3988615424 733076 1540.013 0.283 32.237753 -112.653302 +85322 752 349 886808132 53343 342.399 0.021 33.159109 -112.872034 +85323 39507 13246 48114495 10917 18.577 0.004 33.419747 -112.326890 +85324 2886 1598 759204665 0 293.131 0.000 34.119191 -112.044271 +85325 1212 1077 2150697301 1193532 830.389 0.461 33.992347 -113.911284 +85326 51705 17220 954883488 159964 368.683 0.062 33.291722 -112.589247 +85328 259 312 448403416 10567234 173.130 4.080 33.252625 -114.620356 +85331 26960 11677 291050163 46988 112.375 0.018 33.878937 -111.912668 +85332 2146 1357 1075169491 134194 415.125 0.052 34.181110 -112.904743 +85333 790 485 1876371985 210596 724.471 0.081 33.022104 -113.283539 +85334 1482 953 166752222 3939861 64.383 1.521 33.516581 -114.516445 +85335 31787 11324 25897345 152706 9.999 0.059 33.592283 -112.327691 +85336 700 233 9938572 40152 3.837 0.016 32.548757 -114.788734 +85337 2793 1176 1476529952 27593 570.091 0.011 32.964032 -112.704343 +85338 41115 15361 191069114 33419 73.772 0.013 33.373698 -112.410262 +85339 35586 12031 550349841 415929 212.491 0.161 33.237127 -112.161592 +85340 26262 9587 78345758 255351 30.249 0.099 33.515827 -112.414041 +85341 39 24 3650841 0 1.410 0.000 31.879191 -112.798973 +85342 1578 917 1211061914 5156059 467.594 1.991 33.944549 -112.451374 +85343 196 76 20743921 357 8.009 0.000 33.337738 -112.685675 +85344 9147 6501 1109370167 13069337 428.330 5.046 34.080654 -114.216239 +85345 56208 23118 33800026 18701 13.050 0.007 33.573244 -112.245852 +85346 4423 4102 1613038046 0 622.797 0.000 33.635948 -114.145935 +85347 716 319 542004276 0 209.269 0.000 32.797564 -113.789955 +85348 2786 2499 1146206695 37430 442.553 0.014 33.714236 -113.721274 +85349 25517 6528 46509110 140086 17.957 0.054 32.509136 -114.746669 +85350 21214 5425 255139866 445749 98.510 0.172 32.561218 -114.693547 +85351 27789 21284 28050211 397751 10.830 0.154 33.606131 -112.284114 +85352 461 237 161150055 0 62.220 0.000 32.719373 -113.839513 +85353 31011 9673 56158374 23381 21.683 0.009 33.417511 -112.276974 +85354 6645 2851 1547510876 4785 597.497 0.002 33.430339 -113.046090 +85355 8745 3060 91085688 96164 35.168 0.037 33.576119 -112.454619 +85356 4539 2967 428126284 0 165.300 0.000 32.689021 -114.162243 +85357 761 458 1512399971 6975792 583.941 2.693 34.020006 -113.448323 +85360 222 174 1904347442 1002886 735.273 0.387 34.739430 -113.464036 +85361 6700 2764 308273439 115746 119.025 0.045 33.764116 -112.614597 +85362 663 614 187035827 0 72.215 0.000 34.279917 -112.834716 +85363 6156 2831 4123269 16185 1.592 0.006 33.584969 -112.304916 +85364 74904 29918 102169362 2722330 39.448 1.051 32.701461 -114.657231 +85365 46558 24699 3544889689 9765932 1368.690 3.771 33.096439 -114.125339 +85367 20429 17074 117502698 0 45.368 0.000 32.671715 -114.395516 +85371 419 146 459120398 0 177.267 0.000 33.828542 -114.375841 +85373 17356 10342 29503642 115316 11.391 0.045 33.671423 -112.299656 +85374 47146 26224 42116615 58643 16.261 0.023 33.640996 -112.378330 +85375 27703 20021 47570427 39695 18.367 0.015 33.685809 -112.366168 +85377 3051 2017 21908227 15367 8.459 0.006 33.823073 -111.914146 +85379 39732 13935 27862583 49075 10.758 0.019 33.603311 -112.369625 +85381 24249 10231 17183330 35429 6.635 0.014 33.609311 -112.231694 +85382 40454 18632 25462879 181393 9.831 0.070 33.654291 -112.249474 +85383 37182 13700 246067364 5793963 95.007 2.237 33.802087 -112.247703 +85387 9573 5060 140516053 167230 54.254 0.065 33.709497 -112.450960 +85388 23490 8311 33966730 72157 13.115 0.028 33.601603 -112.431672 +85390 8621 4844 1529531332 140266 590.555 0.054 33.903622 -112.875667 +85392 35310 13302 25034766 128970 9.666 0.050 33.477580 -112.308889 +85395 25922 10275 37119104 60427 14.332 0.023 33.478693 -112.395249 +85396 12163 5615 213865564 10222 82.574 0.004 33.526254 -112.702244 +85501 13345 6209 1454587141 4148244 561.619 1.602 33.566039 -110.757756 +85530 2069 528 1081923256 26447962 417.733 10.212 33.065221 -110.199614 +85531 623 204 10813235 330947 4.175 0.128 32.884109 -109.790074 +85533 2943 1601 2999736948 3068041 1158.205 1.185 33.353953 -109.405765 +85534 2588 1380 1145308140 2933545 442.206 1.133 32.753782 -109.141655 +85535 21 8 11288544 165695 4.359 0.064 32.986305 -109.912670 +85536 408 239 374560671 951310 144.619 0.367 33.120651 -110.015939 +85539 4520 2341 145319472 2328353 56.108 0.899 33.339679 -110.894685 +85540 2874 1336 259251328 7231848 100.098 2.792 33.000218 -109.384572 +85541 21877 14774 2027864097 954917 782.963 0.369 34.194999 -111.305069 +85542 3196 826 567840964 21401528 219.245 8.263 33.317205 -110.318864 +85543 3822 1456 1545737372 2980950 596.813 1.151 32.978573 -109.989395 +85544 2949 3898 429463672 198698 165.817 0.077 34.303856 -111.561133 +85545 583 793 1011409921 47320553 390.508 18.271 33.564906 -111.140585 +85546 19677 7172 1747141380 9519825 674.575 3.676 32.813765 -109.355257 +85550 4790 1222 1467392535 1456045 566.563 0.562 33.539393 -110.472435 +85551 405 167 138832165 116738 53.603 0.045 32.724329 -109.588476 +85552 6218 2334 62024662 609393 23.948 0.235 32.819926 -109.770844 +85553 1501 1481 786536906 21425854 303.684 8.273 33.847269 -111.186564 +85554 778 851 1968466377 209370 760.029 0.081 33.976652 -110.960344 +85601 698 496 311894192 377305 120.423 0.146 31.588666 -111.314701 +85602 9464 5049 1937604654 753042 748.113 0.291 32.176377 -110.405093 +85603 7155 4117 583186389 2771736 225.170 1.070 31.432725 -109.919550 +85605 597 352 847157899 398197 327.090 0.154 32.302065 -109.481369 +85606 1184 747 331970794 39820717 128.175 15.375 32.042554 -109.898983 +85607 18925 7159 2162554145 3029256 834.967 1.170 31.521172 -109.379676 +85608 2305 1 4799984 129003 1.853 0.050 31.456911 -109.580936 +85609 392 217 337286884 133500 130.227 0.052 32.069477 -110.096991 +85610 1333 753 1153050386 385451 445.195 0.149 31.744197 -109.722324 +85611 965 594 797478543 673594 307.908 0.260 31.665168 -110.510286 +85613 5601 944 121484584 48271 46.905 0.019 31.567873 -110.376844 +85614 21895 16136 351337503 60281 135.652 0.023 31.814301 -110.919400 +85615 9413 4150 540015052 157087 208.501 0.061 31.402474 -110.212252 +85616 5566 2605 346613856 149414 133.828 0.058 31.701894 -110.321906 +85617 1277 745 571345554 955475 220.598 0.369 31.519639 -109.708595 +85618 1725 795 290959317 484409 112.340 0.187 32.719696 -110.538112 +85619 50 388 526048673 0 203.109 0.000 32.407525 -110.733150 +85620 897 274 2765050 0 1.068 0.000 31.337282 -109.941325 +85621 23054 8065 731039985 1351397 282.256 0.522 31.387978 -110.912001 +85622 6325 5029 126361631 0 48.789 0.000 31.826851 -111.075511 +85623 4073 2005 898168477 0 346.785 0.000 32.706246 -110.805211 +85624 1426 913 1013820063 488852 391.438 0.189 31.504971 -110.692999 +85625 1983 1402 655181877 409614 252.967 0.158 31.886952 -109.614066 +85626 1021 367 1907854 0 0.737 0.000 31.357810 -109.566679 +85627 968 427 44633767 39430 17.233 0.015 32.007786 -110.235541 +85629 23568 8832 596770744 0 230.414 0.000 31.917838 -111.019035 +85630 2819 1335 473769825 255453 182.924 0.099 31.886572 -110.181047 +85631 3630 1594 302045541 1102492 116.620 0.426 32.590912 -110.551263 +85632 835 665 2161227526 1328131 834.455 0.513 32.043861 -109.161043 +85633 54 50 779762941 290680 301.068 0.112 31.612902 -111.503060 +85634 6490 2323 7443351665 98312 2873.894 0.038 32.034496 -111.994430 +85635 34727 16298 184897662 517900 71.389 0.200 31.571011 -110.170235 +85637 1268 719 312513411 61380 120.662 0.024 31.719507 -110.691110 +85638 1973 1204 838889403 216354 323.897 0.084 31.716172 -110.051604 +85640 441 219 19112424 5455 7.379 0.002 31.557786 -111.047743 +85641 21753 8308 1200228274 0 463.411 0.000 32.049034 -110.622932 +85643 9810 4187 5303878231 85237580 2047.839 32.910 32.407245 -109.965490 +85645 2231 959 525685763 127618 202.968 0.049 31.686279 -111.160631 +85646 1311 1139 333208547 146986 128.653 0.057 31.647318 -110.940689 +85648 19080 6417 407098070 705392 157.181 0.272 31.490441 -111.038096 +85650 15279 6637 108059037 53639 41.722 0.021 31.500707 -110.201835 +85653 15083 5863 904646226 1709278 349.286 0.660 32.398790 -111.386333 +85654 97 49 159313 0 0.062 0.000 32.415256 -111.154410 +85658 7790 4197 579814266 10742 223.868 0.004 32.551052 -111.143446 +85701 4983 2988 3755047 0 1.450 0.000 32.216946 -110.971015 +85704 30929 15833 46292988 126003 17.874 0.049 32.339420 -110.984997 +85705 57521 28242 35208429 267672 13.594 0.103 32.271355 -110.992051 +85706 55209 18298 32447024 0 12.528 0.000 32.147619 -110.933341 +85707 658 0 11745387 0 4.535 0.000 32.179209 -110.886905 +85708 2980 974 3723393 0 1.438 0.000 32.181923 -110.866407 +85710 54439 27859 31278396 0 12.077 0.000 32.214133 -110.823718 +85711 41251 19649 22147923 0 8.551 0.000 32.215243 -110.883389 +85712 32666 18003 17601918 137422 6.796 0.053 32.252886 -110.886567 +85713 50151 19268 61366662 39286 23.694 0.015 32.194570 -111.014995 +85714 15009 5536 17045533 0 6.581 0.000 32.167395 -110.950864 +85715 17702 8953 17261267 85858 6.665 0.033 32.246750 -110.836125 +85716 32853 18008 18265337 0 7.052 0.000 32.241537 -110.923197 +85718 27367 15037 98680091 0 38.101 0.000 32.333306 -110.916605 +85719 43989 19849 21201347 0 8.186 0.000 32.246721 -110.948654 +85723 0 0 332731 0 0.128 0.000 32.180232 -110.965154 +85724 0 0 103874 0 0.040 0.000 32.240828 -110.945636 +85726 0 0 121584 0 0.047 0.000 32.204728 -110.945598 +85730 38323 16583 120128227 56667 46.382 0.022 32.181544 -110.746552 +85735 11250 4629 493691026 26497 190.615 0.010 32.094109 -111.349265 +85736 4975 2225 913204168 20482 352.590 0.008 31.909842 -111.364423 +85737 20727 9633 62482717 204782 24.125 0.079 32.414615 -110.946561 +85739 17848 9331 483040121 695 186.503 0.000 32.621072 -110.989667 +85741 32998 14008 26080228 218068 10.070 0.084 32.335182 -111.042191 +85742 25212 10275 74389170 204836 28.722 0.079 32.393721 -111.065397 +85743 29144 12095 249591051 316103 96.368 0.122 32.302273 -111.181848 +85745 37006 16396 174405704 283791 67.338 0.110 32.253908 -111.080140 +85746 43057 15592 197672993 0 76.322 0.000 32.091607 -111.044296 +85747 23058 8345 152311837 0 58.808 0.000 32.095243 -110.765370 +85748 18087 7826 30645411 0 11.832 0.000 32.218928 -110.752110 +85749 19032 8348 155619450 57376 60.085 0.022 32.289584 -110.733528 +85750 24161 13194 51558221 166990 19.907 0.064 32.300129 -110.835996 +85755 15107 7907 87209603 0 33.672 0.000 32.468265 -110.981461 +85756 35703 11378 175852722 0 67.897 0.000 32.079264 -110.898940 +85757 16988 5486 66556194 0 25.697 0.000 32.128511 -111.122067 +85901 17207 12337 674043417 1817519 260.250 0.702 34.313307 -110.020527 +85911 1800 485 1648685900 78346 636.561 0.030 34.173052 -110.367333 +85912 178 120 107976926 10915 41.690 0.004 34.434774 -109.898716 +85920 464 952 275658859 1213134 106.432 0.468 33.861920 -109.177010 +85922 41 62 1011639524 789364 390.596 0.305 33.467624 -109.150787 +85923 621 301 162571829 0 62.769 0.000 34.324960 -110.340559 +85924 2683 2062 2027667905 2720988 782.887 1.051 34.566622 -109.672357 +85925 4893 2052 76326521 67578 29.470 0.026 34.088110 -109.322992 +85926 265 82 17756115 37275 6.856 0.014 33.769250 -109.979282 +85927 176 639 330910000 7940752 127.765 3.066 34.006415 -109.464318 +85928 1102 1033 736436065 430074 284.340 0.166 34.535760 -110.557227 +85929 8322 5843 156377156 1329459 60.378 0.513 34.184683 -109.939822 +85930 1086 391 483293372 2286197 186.601 0.883 34.047324 -109.720674 +85931 207 1093 776994124 1674175 299.999 0.646 34.461789 -110.868598 +85932 364 500 339003081 660671 130.890 0.255 33.953341 -109.213499 +85933 3033 4775 238459925 3196 92.070 0.001 34.357093 -110.509263 +85934 574 471 151879639 0 58.641 0.000 34.300249 -110.245734 +85935 4735 6138 125028478 370789 48.274 0.143 34.119928 -109.896691 +85936 4293 1955 2574110894 7499827 993.870 2.896 34.652683 -109.268741 +85937 7638 3228 795763569 415828 307.246 0.161 34.573702 -110.064102 +85938 2366 1247 956071745 2550779 369.141 0.985 34.149295 -109.336502 +85939 4400 1578 144628731 112850 55.841 0.044 34.431429 -110.085261 +85940 1443 844 212662907 277328 82.110 0.107 34.251663 -109.682257 +85941 9941 2671 2153723794 10222429 831.557 3.947 33.821391 -109.969827 +85942 80 44 144808116 86595 55.911 0.033 34.735705 -109.954702 +86001 40776 19759 2289712185 10841089 884.063 4.186 35.287661 -111.639303 +86003 23 18 55328841 0 21.363 0.000 35.189708 -111.224015 +86004 37338 15861 1975385651 454296 762.701 0.175 35.380939 -111.373463 +86011 6362 10 1756314 0 0.678 0.000 35.180062 -111.655035 +86015 385 179 14077985 25938 5.436 0.010 35.231027 -111.838598 +86016 62 46 276597914 99640 106.795 0.038 35.752417 -111.641839 +86017 667 3153 358724636 668082 138.504 0.258 34.889310 -111.626136 +86018 759 709 259659228 63244 100.255 0.024 35.188694 -111.916128 +86020 1941 742 2992130052 2171164 1155.268 0.838 35.992790 -111.497809 +86021 6085 824 68950484 20502 26.622 0.008 36.972279 -113.024318 +86022 2210 970 1451909020 207556 560.585 0.080 36.856316 -112.836996 +86023 2627 1208 702611398 3047427 271.280 1.177 36.033131 -112.022616 +86024 703 1944 1367460866 2043915 527.980 0.789 34.651938 -111.343217 +86025 5676 2183 1858495333 8278956 717.569 3.197 34.930781 -110.104808 +86028 47 58 453947621 308660 175.270 0.119 35.073762 -109.764547 +86029 320 153 156319088 133174 60.355 0.051 35.021012 -109.992631 +86030 1374 597 610439178 52576 235.692 0.020 35.968491 -110.730472 +86031 1856 688 1159308085 754179 447.611 0.291 35.386597 -110.051698 +86032 1509 603 519603056 1845126 200.620 0.712 35.079610 -110.283924 +86033 7844 2875 3057282183 2603629 1180.423 1.005 36.675775 -110.228223 +86034 2271 981 1284239967 674057 495.848 0.260 35.794204 -110.125868 +86035 1802 617 1881973796 2131804 726.634 0.823 35.456718 -110.944184 +86036 388 281 2575789505 9085158 994.518 3.508 36.738246 -111.823136 +86038 77 311 125106218 13437740 48.304 5.188 34.983818 -111.430313 +86039 1467 644 761762456 219051 294.118 0.085 36.055803 -110.525216 +86040 10283 3858 1950486157 32065960 753.087 12.381 36.705495 -111.427506 +86042 1778 648 183343803 52008 70.789 0.020 35.861758 -110.384151 +86043 1798 570 270660559 93043 104.503 0.036 35.809743 -110.535077 +86044 4251 1423 2606408630 17669405 1006.340 6.822 36.693192 -110.810274 +86045 11354 3436 3561471110 114258 1375.092 0.044 36.096622 -111.116082 +86046 6090 3854 3783514421 1510101 1460.823 0.583 35.415891 -112.124541 +86047 14970 5405 4448462122 1771286 1717.561 0.684 35.113436 -110.671248 +86052 28 67 2613840768 3778592 1009.210 1.459 36.146572 -112.030486 +86053 2311 712 1885212406 9511806 727.885 3.673 36.735052 -111.055195 +86054 1935 720 1081195599 260133 417.452 0.100 36.724637 -110.612172 +86301 20626 10797 80097498 1742783 30.926 0.673 34.591349 -112.426312 +86303 17082 11632 346031287 321186 133.603 0.124 34.482438 -112.449736 +86305 17356 9625 3242490547 544612 1251.933 0.210 34.864252 -112.912153 +86313 257 1 293740 0 0.113 0.000 34.553561 -112.452400 +86314 34401 14906 187032556 0 72.214 0.000 34.625976 -112.306194 +86315 7234 3062 157580010 0 60.842 0.000 34.703415 -112.270208 +86320 1885 1452 2412929204 63617 931.637 0.025 35.346129 -112.645484 +86321 2219 1117 762185419 0 294.281 0.000 34.492831 -113.103111 +86322 11480 5051 1000910236 41828 386.454 0.016 34.500279 -111.801158 +86323 15822 7263 367000054 99969 141.700 0.039 34.777226 -112.405819 +86324 4168 2089 433005703 380983 167.184 0.147 34.857441 -112.120427 +86325 5152 2813 155583136 0 60.071 0.000 34.734673 -111.897955 +86326 23344 11059 140175039 0 54.122 0.000 34.700031 -112.023634 +86327 8858 5138 518275692 0 200.107 0.000 34.571319 -112.105026 +86329 1179 569 95805063 0 36.991 0.000 34.471629 -112.224999 +86331 477 314 112659701 0 43.498 0.000 34.726842 -112.143872 +86332 1637 1049 1265203148 0 488.498 0.000 34.320536 -112.632932 +86333 5734 3214 1277535860 24814 493.259 0.010 34.322744 -112.081924 +86334 4985 2153 588571852 57670 227.249 0.022 34.949042 -112.544560 +86335 4806 2374 480045665 36346 185.347 0.014 34.694711 -111.673400 +86336 11320 7607 584497700 129443 225.676 0.050 34.909886 -111.867252 +86337 1267 1419 3147143866 199507 1215.119 0.077 35.359804 -113.031283 +86338 743 364 719734880 0 277.891 0.000 34.581751 -112.753836 +86343 177 308 265620081 15578 102.556 0.006 34.176983 -112.299986 +86351 6349 4192 103534741 0 39.975 0.000 34.778447 -111.785069 +86401 24289 11365 2876917472 50301 1110.784 0.019 35.131719 -113.703932 +86403 15802 10794 25951067 17977568 10.020 6.941 34.480250 -114.348518 +86404 16243 10510 448365498 5560725 173.115 2.147 34.590011 -114.307852 +86406 23763 13499 636098899 15330633 245.599 5.919 34.423236 -114.109863 +86409 26471 12703 866119432 53904433 334.411 20.813 35.460834 -114.021257 +86411 224 180 1078691243 88888 416.485 0.034 35.580840 -113.783155 +86413 12103 5658 1825908353 33567112 704.987 12.960 35.210542 -114.346048 +86426 13863 6880 93848238 933405 36.235 0.360 35.007621 -114.569590 +86429 7162 4954 216884868 6552114 83.740 2.530 35.163628 -114.484927 +86431 403 348 149714959 0 57.805 0.000 35.415567 -114.219825 +86432 3933 2175 8345456715 24976850 3222.199 9.644 36.366634 -113.446572 +86433 111 93 439049953 0 169.518 0.000 34.917564 -114.348809 +86434 1490 573 2024336388 4477515 781.601 1.729 35.676651 -113.620551 +86435 487 127 3222894550 8438781 1244.367 3.258 36.044172 -112.903890 +86436 2104 1711 288703407 20709387 111.469 7.996 34.757087 -114.385008 +86437 76 39 178828003 0 69.046 0.000 35.378850 -113.614085 +86438 913 828 3435652734 9085458 1326.513 3.508 34.548925 -113.805421 +86440 6906 4622 295852814 1867690 114.229 0.721 34.896683 -114.525317 +86441 2224 1743 1322350417 9647857 510.562 3.725 35.571314 -114.372332 +86442 33382 19108 98609702 1404843 38.073 0.542 35.089613 -114.560868 +86443 76 172 1208872428 144069864 466.748 55.626 35.971296 -114.440288 +86444 1289 1445 1309804230 27360010 505.718 10.564 35.897037 -114.047212 +86445 311 275 757700674 7319057 292.550 2.826 35.773741 -114.502020 +86502 1464 628 1821508132 1145389 703.288 0.442 35.217949 -109.591862 +86503 10714 3998 2155630736 852852 832.294 0.329 36.153388 -109.685366 +86504 6589 2466 836300305 311108 322.897 0.120 35.932269 -109.135461 +86505 7682 3112 2676890470 3028588 1033.553 1.169 35.627097 -109.712349 +86506 1321 545 440942496 212370 170.249 0.082 35.358053 -109.220401 +86507 2340 1080 574727933 1050634 221.904 0.406 36.411213 -109.265689 +86508 752 304 180349746 98724 69.633 0.038 35.329904 -109.095689 +86510 5358 2163 1918793257 298171 740.850 0.115 36.257984 -110.220374 +86511 3694 1534 954655438 400668 368.595 0.155 35.550101 -109.153663 +86512 2439 953 1492175974 894294 576.132 0.345 35.095074 -109.243165 +86514 3317 1381 2114897850 4078083 816.567 1.575 36.880257 -109.332878 +86515 4479 1538 284967063 3081 110.026 0.001 35.679250 -108.954226 +86520 1793 783 645145270 152731 249.092 0.059 36.109913 -109.935612 +86535 1199 455 704008648 124431 271.819 0.048 36.794027 -109.855226 +86538 2338 932 522785730 6614077 201.849 2.554 36.407631 -109.595691 +86540 1088 460 627281564 139222 242.195 0.054 35.941437 -109.443978 +86544 1267 612 638558171 379886 246.549 0.147 36.625751 -109.150767 +86545 1650 582 846477596 117680 326.827 0.045 36.711413 -109.606619 +86547 1171 385 337529660 310401 130.321 0.120 36.512528 -109.494082 +86556 2090 902 624152459 2441353 240.987 0.943 36.288363 -109.255499 +87001 3684 893 311114793 1415463 120.122 0.547 35.376617 -106.337081 +87002 22517 9754 892137899 1497022 344.456 0.578 34.606524 -106.659036 +87004 10136 3944 146470760 2962315 56.553 1.144 35.368394 -106.597310 +87005 799 349 76599578 589611 29.575 0.228 35.267898 -107.977093 +87006 703 303 148840203 1297219 57.468 0.501 34.489728 -106.843685 +87007 1080 358 61998456 13117 23.938 0.005 35.024095 -107.509117 +87008 2552 1253 73290931 6339 28.298 0.002 35.119923 -106.407013 +87010 1139 848 423210620 9940 163.403 0.004 35.408286 -106.129827 +87011 84 78 1183577533 111780 456.982 0.043 34.063668 -105.946918 +87012 261 174 245682230 64990 94.858 0.025 36.107476 -106.664988 +87013 5200 2334 4816539325 788724 1859.676 0.305 35.912766 -107.380201 +87014 654 341 572886035 772489 221.193 0.298 35.230813 -107.390449 +87015 13105 5741 389373365 154044 150.338 0.059 35.076686 -106.182589 +87016 3730 1498 1973397202 1615188 761.933 0.624 34.775890 -105.924043 +87017 429 243 434862544 569435 167.901 0.220 36.317041 -106.765493 +87018 522 220 312485604 126427 120.651 0.049 36.165554 -107.563530 +87020 11347 4683 2671258955 520230 1031.379 0.201 34.865013 -107.948264 +87021 3472 915 20099036 3226 7.760 0.001 35.192842 -107.878884 +87022 907 444 5052949 450199 1.951 0.174 34.895491 -106.707189 +87023 665 269 8050000 520539 3.108 0.201 34.598436 -106.759585 +87024 2214 748 224653103 13020 86.739 0.005 35.672850 -106.723247 +87025 1237 1189 897172067 210684 346.400 0.081 35.841342 -106.628405 +87026 4063 1416 1309265177 1071128 505.510 0.414 34.965327 -107.233587 +87027 309 208 92319928 0 35.645 0.000 36.126272 -106.947981 +87028 145 90 177832849 741098 68.662 0.286 34.379610 -106.767080 +87029 237 200 832516460 669259 321.436 0.258 36.396636 -106.998492 +87031 44075 16238 1315802445 2241375 508.034 0.865 34.705471 -107.020536 +87032 291 145 41191246 0 15.904 0.000 34.851278 -106.011454 +87034 2207 893 2243446815 110204 866.200 0.043 34.776465 -107.564562 +87035 7268 3316 568376400 10559 219.451 0.004 34.930805 -105.965548 +87036 1868 1113 2565169896 576209 990.418 0.222 34.422883 -106.255477 +87037 677 282 720563509 122821 278.211 0.047 36.166818 -107.762433 +87038 616 205 66525328 45530 25.686 0.018 35.087627 -107.412347 +87040 496 216 46315693 37938 17.883 0.015 35.103875 -107.384409 +87041 881 334 359774201 5953887 138.910 2.299 35.686667 -106.335322 +87042 3644 1478 11740371 0 4.533 0.000 34.828007 -106.686572 +87043 5052 2582 221720318 1690 85.607 0.001 35.275451 -106.462126 +87044 387 194 36526574 0 14.103 0.000 35.665541 -106.644271 +87045 1751 739 411690993 1793426 158.955 0.692 35.351817 -108.088619 +87046 186 185 157361341 290717 60.758 0.112 36.253528 -106.909432 +87047 4894 2396 344055518 2951 132.841 0.001 35.250840 -106.288766 +87048 8682 3959 27857237 746051 10.756 0.288 35.239583 -106.627078 +87049 973 360 164301082 353158 63.437 0.136 35.113635 -107.596844 +87051 969 463 163173595 29347 63.002 0.011 35.035308 -107.852853 +87052 3182 638 101653743 208675 39.249 0.081 35.493604 -106.312548 +87053 998 363 745706908 200122 287.919 0.077 35.632313 -107.019619 +87056 954 513 1264493301 67052 488.224 0.026 35.183058 -105.875931 +87059 9604 4513 368642166 69245 142.334 0.027 34.996756 -106.300636 +87061 371 243 341083015 0 131.693 0.000 34.731143 -106.379632 +87062 1869 757 334683538 0 129.222 0.000 34.440031 -106.658818 +87063 323 174 844753355 20246 326.161 0.008 34.491637 -105.856713 +87064 161 130 394961508 8724411 152.495 3.369 36.179253 -106.580980 +87068 4755 1928 239122480 1041862 92.326 0.402 34.861925 -106.583062 +87070 42 40 68853943 0 26.585 0.000 35.021835 -105.777997 +87072 660 218 57066236 219821 22.033 0.085 35.607030 -106.396834 +87083 569 318 3436662 0 1.327 0.000 35.648474 -106.342760 +87102 21204 10253 16826106 156052 6.497 0.060 35.081357 -106.646575 +87104 12123 5849 11006016 913336 4.249 0.353 35.103183 -106.675548 +87105 57680 20949 243240517 5983292 93.916 2.310 34.977206 -106.608155 +87106 27013 13078 27362916 59325 10.565 0.023 35.057920 -106.621262 +87107 31183 14074 38240621 459863 14.765 0.178 35.137800 -106.642543 +87108 38647 18935 15224438 0 5.878 0.000 35.072478 -106.578362 +87109 40432 19546 26199125 183677 10.116 0.071 35.152882 -106.575536 +87110 38587 18862 22361758 9237 8.634 0.004 35.108194 -106.578147 +87111 56490 27552 56147469 228270 21.679 0.088 35.143913 -106.487460 +87112 43584 20177 20921526 155484 8.078 0.060 35.100609 -106.516275 +87113 14477 6129 23320774 164417 9.004 0.063 35.181016 -106.593624 +87114 61623 24618 55158454 1473384 21.297 0.569 35.193640 -106.685666 +87116 4117 1298 8417090 43051 3.250 0.017 35.063087 -106.542538 +87117 310 1 50544921 188978 19.516 0.073 35.008492 -106.563864 +87120 58023 23716 99509653 1567429 38.421 0.605 35.134802 -106.754940 +87121 76721 23826 662970493 2082982 255.974 0.804 35.089534 -106.897470 +87122 17977 7210 69071660 97015 26.669 0.037 35.191009 -106.501625 +87123 41468 18503 89634896 453305 34.608 0.175 35.067584 -106.470746 +87124 51404 20610 182350924 22785 70.406 0.009 35.268498 -106.783682 +87144 37719 13917 230510920 310989 89.001 0.120 35.325200 -106.705446 +87301 23674 8844 213685333 14465 82.504 0.006 35.534983 -108.737949 +87305 3350 1268 592365794 13643 228.714 0.005 35.382497 -108.804064 +87310 938 384 473965319 69832 182.999 0.027 35.805114 -108.539632 +87311 4208 1364 501610409 187058 193.673 0.072 35.606491 -108.515804 +87312 579 230 129374059 0 49.952 0.000 35.422601 -108.323010 +87313 5662 2272 2474477046 283810 955.401 0.110 35.812450 -108.076499 +87315 149 134 1537423393 108685 593.603 0.042 34.766798 -108.684918 +87316 1304 458 321318236 87264 124.062 0.034 35.364684 -108.379958 +87317 1956 634 60505999 0 23.361 0.000 35.587530 -108.761032 +87319 1832 722 437660208 22331 168.982 0.009 35.472249 -108.949089 +87320 765 239 213376435 0 82.385 0.000 35.807855 -108.876098 +87321 2226 1207 1582440086 868830 610.984 0.335 35.008797 -108.361158 +87322 247 69 4800642 0 1.854 0.000 35.526020 -108.653142 +87323 4558 1979 751509880 1542261 290.160 0.595 35.457714 -108.193532 +87325 3034 1265 1462973906 902096 564.857 0.348 35.993895 -108.614262 +87326 1688 680 444075739 250205 171.459 0.097 35.261868 -108.821265 +87327 7883 2184 1490850175 2387048 575.620 0.922 35.005278 -108.781728 +87328 2668 995 488258471 3818920 188.518 1.474 35.978740 -108.981282 +87347 309 132 90389703 0 34.900 0.000 35.427243 -108.446455 +87357 604 283 175198399 1169 67.644 0.000 34.909665 -108.314887 +87364 1111 488 399556345 25857 154.270 0.010 36.141420 -108.698339 +87375 3193 1017 247977475 55598 95.745 0.021 35.675550 -108.756811 +87401 46293 17411 337668408 2809974 130.375 1.085 36.740321 -108.178691 +87402 11034 4239 29706129 397104 11.470 0.153 36.781273 -108.144509 +87410 17603 7247 696189391 3221711 268.800 1.244 36.868277 -107.882308 +87412 966 480 1301807944 3788564 502.631 1.463 36.697866 -107.475530 +87413 16792 6348 1666368530 2714466 643.389 1.048 36.415501 -107.978520 +87415 1791 773 28426621 907291 10.976 0.350 36.817310 -108.094079 +87416 5454 1665 253226412 2557998 97.771 0.988 36.702191 -108.420803 +87417 6910 2300 30834459 563659 11.905 0.218 36.743778 -108.345287 +87418 1059 419 158269375 18404 61.108 0.007 36.950686 -108.150215 +87419 464 409 757970672 38269431 292.654 14.776 36.864723 -107.492391 +87420 11967 4050 1387460061 9106083 535.701 3.516 36.852599 -108.899622 +87421 1871 609 103673213 6295085 40.028 2.431 36.766274 -108.513048 +87455 1750 709 899083521 151405 347.138 0.058 36.330432 -108.654475 +87461 1315 657 787139244 1192868 303.916 0.461 36.329475 -108.941587 +87499 453 191 643089192 103325 248.298 0.040 36.344524 -108.215832 +87501 15147 10726 206671902 243728 79.796 0.094 35.744123 -105.856810 +87505 31013 17194 179321360 182291 69.236 0.070 35.616815 -105.874874 +87506 12580 6759 511786691 945812 197.602 0.365 35.813114 -105.984455 +87507 45890 18512 214387170 1363746 82.775 0.527 35.595053 -106.110998 +87508 18183 8020 382646491 0 147.741 0.000 35.527445 -105.968750 +87510 1096 627 1109696832 2361386 428.456 0.912 36.283201 -106.411504 +87511 2747 1116 143246030 187554 55.308 0.072 36.105695 -105.930245 +87512 199 176 535412278 1456795 206.724 0.562 36.923617 -105.343607 +87513 1007 550 86118883 0 33.251 0.000 36.579582 -105.687330 +87514 1345 856 45483808 0 17.561 0.000 36.541237 -105.525200 +87515 311 191 344404597 459160 132.975 0.177 36.497233 -106.393396 +87516 130 74 139335974 7883 53.798 0.003 36.153554 -106.463052 +87517 356 405 203625602 0 78.620 0.000 36.394846 -105.787582 +87518 91 62 232068512 480439 89.602 0.185 36.508220 -106.562067 +87519 460 253 59152426 0 22.839 0.000 36.769912 -105.627938 +87520 1419 1168 672244484 1295762 259.555 0.500 36.874364 -106.633097 +87521 1003 529 255205605 94367 98.535 0.036 36.017328 -105.612977 +87522 3384 1669 404536069 473373 156.192 0.183 35.930826 -105.789765 +87523 405 199 18705674 0 7.222 0.000 36.013644 -105.842738 +87524 260 169 309482386 0 119.492 0.000 36.932428 -105.672292 +87525 72 290 55102552 24043 21.275 0.009 36.569317 -105.456847 +87527 880 492 93499288 101231 36.100 0.039 36.151259 -105.838296 +87528 3417 1257 1986296511 6086669 766.913 2.350 36.671546 -106.983307 +87529 3600 2198 65729549 0 25.378 0.000 36.470056 -105.622840 +87530 974 507 365586910 200629 141.154 0.077 36.348839 -106.191469 +87531 368 264 92403704 588953 35.677 0.227 36.246711 -105.839533 +87532 18223 7929 294835025 894535 113.836 0.345 35.993867 -106.088977 +87533 185 69 53638 0 0.021 0.000 36.024269 -106.066584 +87535 1270 709 166499361 0 64.286 0.000 35.528725 -105.747703 +87537 2957 1247 154008130 465711 59.463 0.180 36.052227 -106.188827 +87538 493 312 201654869 0 77.859 0.000 35.494523 -105.571254 +87539 269 163 201407136 21603 77.764 0.008 36.376682 -106.043173 +87540 923 536 219811494 21806 84.870 0.008 35.449374 -105.907902 +87543 247 147 52008249 0 20.080 0.000 36.107035 -105.661206 +87544 17950 8354 144522884 116004 55.801 0.045 35.840721 -106.288109 +87548 928 402 86760733 472811 33.499 0.183 36.172398 -106.137809 +87549 1118 525 244119514 494940 94.255 0.191 36.237098 -106.009074 +87551 305 427 79041680 25616783 30.518 9.891 36.694598 -106.669448 +87552 3325 1823 382999717 0 147.877 0.000 35.646149 -105.601579 +87553 1209 626 52959716 7087 20.448 0.003 36.214889 -105.687472 +87554 61 44 120388761 21516 46.482 0.008 36.482898 -106.018670 +87556 2417 1471 531144937 1556514 205.076 0.601 36.783877 -105.492012 +87557 6359 3127 261955359 18582 101.142 0.007 36.291014 -105.681509 +87558 606 1254 328317654 116933 126.764 0.045 36.663936 -105.441614 +87560 1445 791 1221704024 16818 471.703 0.006 35.236758 -105.526197 +87562 576 264 150113902 0 57.959 0.000 35.416830 -105.684476 +87564 332 191 64168684 0 24.776 0.000 36.607972 -105.627890 +87565 478 254 125225656 0 48.350 0.000 35.413824 -105.489881 +87566 3000 1223 53907510 722095 20.814 0.279 36.072233 -106.068631 +87567 1634 731 8396936 0 3.242 0.000 35.993887 -106.020201 +87569 442 215 204810697 0 79.078 0.000 35.346377 -105.300633 +87571 11706 6656 393581916 40786 151.963 0.016 36.391450 -105.467624 +87573 36 296 329912510 172240 127.380 0.067 35.789390 -105.685641 +87574 187 71 7769631 0 3.000 0.000 35.821660 -105.899105 +87575 789 611 1521238559 12333494 587.354 4.762 36.740095 -106.370823 +87577 454 465 1004740177 323176 387.932 0.125 36.669246 -106.014158 +87578 611 376 113319950 49183 43.753 0.019 36.047441 -105.770114 +87579 890 637 320779337 24283 123.854 0.009 36.094483 -105.563410 +87580 449 298 61044173 0 23.569 0.000 36.570074 -105.565783 +87581 141 144 339256510 58882 130.988 0.023 36.513480 -106.139632 +87582 1350 671 48600642 465166 18.765 0.180 36.156352 -106.016092 +87583 234 138 75157035 0 29.018 0.000 35.231374 -105.336304 +87701 20081 9469 4172150045 7894789 1610.876 3.048 35.542113 -104.933487 +87710 1768 3063 398874421 3987721 154.006 1.540 36.382459 -105.236309 +87711 753 402 636604442 68788 245.794 0.027 35.229352 -105.103828 +87712 283 160 173597069 2005137 67.026 0.774 35.850482 -105.182856 +87713 283 230 182516218 0 70.470 0.000 36.167125 -105.364871 +87714 1151 604 1073878027 1593606 414.627 0.615 36.389480 -104.912988 +87715 532 318 111547347 66977 43.069 0.026 36.017058 -105.429042 +87718 467 809 245569342 2200559 94.815 0.850 36.599808 -105.291885 +87722 376 407 226897157 43168 87.605 0.017 36.191932 -105.261219 +87723 408 214 51473622 0 19.874 0.000 36.058752 -105.375577 +87724 88 38 14390073 0 5.556 0.000 35.173363 -105.077485 +87728 417 237 348682795 7143997 134.627 2.758 36.596537 -104.619084 +87729 126 77 249967458 879808 96.513 0.340 36.303476 -104.817967 +87730 27 18 582373180 268874 224.856 0.104 36.153001 -104.214447 +87731 223 200 225914742 104343 87.226 0.040 35.759858 -105.412730 +87732 1672 1033 395420554 109363 152.673 0.042 35.958002 -105.364286 +87733 158 132 1060959678 132523 409.639 0.051 35.815432 -103.839126 +87734 181 178 381748107 34924 147.394 0.013 36.166544 -105.085884 +87735 90 58 89408234 121982 34.521 0.047 36.069461 -105.153162 +87736 233 135 66795724 166099 25.790 0.064 35.980449 -105.197076 +87740 8068 4155 3125751785 2234286 1206.860 0.863 36.746631 -104.415322 +87742 609 477 340488267 36370 131.463 0.014 35.902351 -105.510938 +87743 361 276 1439202730 110077 555.679 0.043 35.973565 -104.090814 +87745 654 375 343383103 4252294 132.581 1.642 35.810926 -105.213646 +87746 120 126 1193734936 18999 460.904 0.007 35.776068 -104.046894 +87747 1624 811 1884126510 5024515 727.465 1.940 36.356194 -104.471772 +87749 75 204 129788662 33107 50.112 0.013 36.544433 -105.103365 +87750 11 10 26385656 0 10.188 0.000 35.825334 -104.927202 +87752 431 301 2260339082 2427752 872.722 0.937 36.021594 -104.649986 +87753 254 126 449046325 1067353 173.378 0.412 35.863313 -104.954298 +87801 10221 4615 369842168 25853 142.797 0.010 34.127211 -106.826187 +87820 161 157 407782428 1279488 157.446 0.494 33.937653 -108.586820 +87821 672 657 4654847288 1902993 1797.247 0.735 33.979952 -108.062500 +87823 884 436 155667100 123695 60.103 0.048 34.206693 -106.985948 +87824 194 185 359140750 255134 138.665 0.099 33.828511 -108.981932 +87825 2999 1305 6897450389 2328933 2663.121 0.899 33.877317 -107.656226 +87827 276 259 1538776991 767366 594.125 0.296 34.406825 -108.096748 +87828 429 187 5139414 0 1.984 0.000 34.205853 -106.916719 +87829 922 902 4539541095 6496629 1752.727 2.508 34.357703 -108.642767 +87830 999 667 2142249391 979125 827.127 0.378 33.728055 -108.743608 +87831 195 95 34335937 0 13.257 0.000 34.264803 -106.932923 +87832 600 331 3257901781 1658898 1257.883 0.641 33.766896 -106.821217 +87901 7139 4680 2089530794 125278506 806.772 48.370 33.216795 -107.100585 +87930 829 370 378522425 948334 146.148 0.366 32.850681 -107.443567 +87931 634 441 285570797 17038520 110.260 6.579 32.953468 -107.426840 +87933 106 33 3191605 0 1.232 0.000 32.790195 -107.277913 +87935 1770 1758 93901978 60134 36.256 0.023 33.254803 -107.229274 +87936 515 202 31089019 531156 12.004 0.205 32.752827 -107.263614 +87937 3303 1126 463185109 1843776 178.837 0.712 32.593181 -107.184320 +87939 125 80 335889461 0 129.688 0.000 33.412681 -107.488561 +87940 669 254 166576270 1503377 64.315 0.580 32.621516 -107.006541 +87941 1216 368 20450720 156469 7.896 0.060 32.720691 -107.219612 +87942 898 537 383002909 467729 147.878 0.181 33.060988 -107.348920 +87943 228 233 2859407243 122607 1104.023 0.047 33.383092 -107.736143 +88001 37484 16135 29428951 0 11.363 0.000 32.290052 -106.753893 +88002 1656 565 465327123 4351 179.664 0.002 32.462947 -106.486158 +88003 894 4 857053 0 0.331 0.000 32.280653 -106.745944 +88004 699 0 100654252 0 38.863 0.000 32.223096 -106.987431 +88005 27116 11467 127311050 499155 49.155 0.193 32.258348 -106.823126 +88007 24048 9538 962782093 1944934 371.732 0.751 32.441092 -106.921275 +88008 5747 2097 127318541 0 49.158 0.000 31.839378 -106.682084 +88009 88 35 644390851 2719304 248.801 1.050 31.996024 -108.574773 +88011 27698 13263 379184810 199310 146.404 0.077 32.322234 -106.655684 +88012 25961 9533 943435217 0 364.262 0.000 32.583384 -106.771378 +88020 882 490 3019596359 10126344 1165.873 3.910 31.772410 -108.839423 +88021 18421 5896 2066905837 744185 798.037 0.287 31.951887 -107.016272 +88022 1343 588 30348270 11164 11.718 0.004 32.808002 -108.176468 +88023 2406 1119 18182846 177670 7.020 0.069 32.732574 -108.144426 +88024 236 69 1921838 0 0.742 0.000 32.070555 -106.639411 +88025 256 148 552795552 100491 213.436 0.039 33.046807 -108.743434 +88026 1658 769 13185320 71096 5.091 0.027 32.752508 -108.162884 +88027 493 179 192094569 0 74.168 0.000 32.044128 -106.789582 +88028 492 265 338778788 0 130.803 0.000 32.932820 -108.635946 +88029 1873 865 464804276 14214 179.462 0.005 31.844879 -107.694722 +88030 23222 10134 6670998567 417767 2575.687 0.161 32.191634 -107.729431 +88032 195 67 443317 0 0.171 0.000 32.399562 -106.818760 +88033 11 9 214413151 0 82.785 0.000 32.319619 -107.028854 +88034 96 53 238865996 236272 92.227 0.091 32.613183 -107.938061 +88038 431 257 995922517 4697060 384.528 1.814 33.121970 -108.383037 +88039 465 411 2089401464 1299513 806.722 0.502 33.298451 -108.802691 +88040 116 110 2902091868 10305749 1120.504 3.979 31.597337 -108.354901 +88041 1243 809 1158898058 1689041 447.453 0.652 32.790119 -107.912538 +88042 250 240 1403956895 231519 542.071 0.089 32.812478 -107.578383 +88043 1621 809 165461698 1908160 63.885 0.737 32.610356 -108.100170 +88044 3896 1507 306154932 962475 118.207 0.372 32.147978 -106.805850 +88045 3662 1695 2897504838 904992 1118.733 0.349 32.385089 -108.756093 +88046 697 371 6184492 0 2.388 0.000 32.250018 -106.802262 +88047 1967 764 18886372 0 7.292 0.000 32.210041 -106.714690 +88048 3862 1206 50688632 168570 19.571 0.065 32.163447 -106.660086 +88049 408 256 483955381 267127 186.856 0.103 33.035582 -107.918696 +88051 94 77 836972546 12636 323.157 0.005 32.999155 -108.920335 +88052 270 169 2638788 0 1.019 0.000 32.425361 -106.599427 +88053 133 95 28004395 0 10.813 0.000 32.902516 -108.205929 +88055 37 41 795016312 71539 306.958 0.028 32.727817 -108.740990 +88056 233 158 336914196 0 130.083 0.000 31.844199 -108.982525 +88061 18585 9006 3701432136 5702994 1429.131 2.202 32.654439 -108.333546 +88063 12799 3567 30049707 753015 11.602 0.291 31.817964 -106.599107 +88065 624 306 3673259 0 1.418 0.000 32.677476 -108.328867 +88072 2501 735 63183026 120405 24.395 0.046 32.138064 -106.616106 +88081 15708 4654 1026335458 17594 396.270 0.007 32.231243 -106.230566 +88101 45006 18662 1378042728 4521794 532.065 1.746 34.499384 -103.275272 +88103 278 0 11184807 172825 4.318 0.067 34.383968 -103.318050 +88112 123 80 436320293 458329 168.464 0.177 34.845972 -103.176920 +88113 103 56 199352250 66922 76.970 0.026 33.772010 -103.085179 +88114 35 27 452324327 88524 174.643 0.034 33.523567 -103.199379 +88115 44 25 4175306 26000 1.612 0.010 33.930877 -103.345497 +88116 455 253 3657852209 4291281 1412.305 1.657 33.915700 -103.878832 +88118 180 96 464856616 597389 179.482 0.231 34.229541 -103.689486 +88119 1932 1284 4467531196 28456166 1724.924 10.987 34.321996 -104.406747 +88120 239 129 792629889 271791 306.036 0.105 34.799850 -103.346467 +88121 152 98 642330300 0 248.005 0.000 34.714623 -103.980636 +88124 1165 637 2192908036 1555416 846.687 0.601 34.543377 -103.651819 +88125 90 46 835998158 113351 322.781 0.044 33.705531 -103.225925 +88126 30 16 131771181 241623 50.877 0.093 33.811264 -103.372005 +88130 18651 7543 1619022150 13820519 625.108 5.336 34.129177 -103.299416 +88132 199 105 531456585 1055552 205.197 0.408 33.907299 -103.166766 +88134 46 25 682965835 204192 263.695 0.079 34.323093 -104.018715 +88135 1804 676 439154207 1447511 169.558 0.559 34.582808 -103.099614 +88136 44 35 865069525 499432 334.005 0.193 34.465332 -104.751178 +88201 25490 11195 5928333069 13443641 2288.942 5.191 33.637061 -104.377926 +88203 31561 12305 3826665362 2784273 1477.484 1.075 33.309569 -104.088238 +88210 17217 6934 3307222397 27199626 1276.926 10.502 32.771797 -104.219669 +88220 33725 14464 5305911284 9282490 2048.624 3.584 32.311477 -104.431913 +88230 5179 1934 637557089 2726944 246.162 1.053 33.219165 -104.397567 +88231 3238 1412 950803120 36421 367.107 0.014 32.451909 -103.262771 +88232 2525 847 484957171 2639518 187.243 1.019 33.077377 -104.465505 +88240 37149 14041 1618596696 1244762 624.944 0.481 32.703708 -103.485112 +88242 6141 2335 143281405 185777 55.321 0.072 32.813416 -103.162258 +88250 270 161 1781921777 2342451 688.004 0.904 32.701888 -104.960413 +88252 2160 1082 2290984006 71945 884.554 0.028 32.155119 -103.377932 +88253 935 389 490970591 1596193 189.565 0.616 32.934647 -104.626368 +88254 191 98 146714497 400751 56.647 0.155 32.612744 -104.450247 +88255 128 57 17250596 0 6.660 0.000 32.814201 -103.996448 +88256 1925 740 1264836762 15458555 488.356 5.969 32.198065 -103.908039 +88260 14343 5244 1957769322 3394532 755.899 1.311 32.991905 -103.381883 +88262 30 23 175222346 64288 67.654 0.025 33.117140 -103.421158 +88263 175 72 266836057 1516336 103.026 0.585 32.097881 -104.081618 +88264 39 28 304851020 266644 117.704 0.103 32.890912 -103.711709 +88265 243 115 199804852 0 77.145 0.000 32.620454 -103.302871 +88267 1349 612 2484611516 3081152 959.314 1.190 33.337444 -103.425219 +88268 7 7 418266 0 0.161 0.000 32.176318 -104.379667 +88301 1386 859 2277421013 54953 879.317 0.021 33.784013 -105.785720 +88310 35776 16669 1106376644 1273793 427.174 0.492 32.640069 -106.075211 +88311 854 482 6343484 1257 2.449 0.000 32.807979 -105.987545 +88312 2586 2834 250265899 33714 96.628 0.013 33.437646 -105.672598 +88314 210 131 121903957 28796 47.067 0.011 33.110124 -105.866968 +88316 2351 1358 2769526094 114095 1069.320 0.044 33.797656 -105.322893 +88317 1751 3217 611211914 169365 235.990 0.065 32.923773 -105.636987 +88318 381 274 3365227074 3803 1299.321 0.001 34.207102 -105.396938 +88321 187 140 2218975816 76957 856.751 0.030 34.761307 -105.458330 +88323 14 10 301788 0 0.117 0.000 33.494704 -105.527545 +88324 210 126 100430232 0 38.776 0.000 33.389812 -105.439057 +88325 899 649 263109003 48365 101.587 0.019 32.856605 -105.858376 +88330 3054 1006 3572590 0 1.379 0.000 32.836613 -106.077383 +88336 267 169 321979312 24356 124.317 0.009 33.328305 -105.280003 +88337 2295 1131 103755426 93659 40.060 0.036 32.996694 -105.884699 +88338 189 118 261246885 614 100.868 0.000 33.489525 -105.394520 +88339 618 635 1163897718 813692 449.383 0.314 32.941875 -105.260620 +88340 3616 1114 1860070442 1470265 718.177 0.568 33.176135 -105.583242 +88341 538 360 257515433 186225 99.427 0.072 33.426176 -105.856659 +88342 52 43 15112802 1227 5.835 0.000 32.388579 -106.111844 +88343 48 33 681285459 0 263.046 0.000 33.225921 -105.077180 +88344 159 92 1719807899 3625258 664.022 1.400 32.558694 -105.292323 +88345 8845 9457 85539571 15485 33.027 0.006 33.347226 -105.680284 +88346 3132 1600 155197966 0 59.922 0.000 33.353807 -105.540052 +88347 100 187 99450544 90186 38.398 0.035 32.756185 -105.657681 +88348 314 170 26458096 0 10.216 0.000 33.396166 -105.358391 +88349 70 41 78508261 7555 30.312 0.003 32.779277 -105.802258 +88350 368 708 367898146 132578 142.046 0.051 32.643391 -105.677014 +88351 256 180 1714594170 0 662.009 0.000 33.549422 -105.087715 +88352 5188 2560 1276361689 1611312 492.806 0.622 33.166311 -105.994033 +88353 473 344 1798770115 0 694.509 0.000 34.571355 -105.116141 +88354 108 109 316268886 159036 122.112 0.061 32.755149 -105.494342 +88355 29 28 45391 0 0.018 0.000 33.360416 -105.667375 +88401 6944 3864 2781595904 7728754 1073.980 2.984 35.119482 -103.822230 +88410 129 83 1411371301 1487968 544.934 0.575 35.877027 -103.290783 +88411 82 61 710288573 73275 274.244 0.028 35.140656 -103.150619 +88414 39 26 11669040 1360 4.505 0.001 36.776962 -103.995689 +88415 3569 1666 3116489743 9943034 1203.283 3.839 36.311760 -103.326817 +88416 189 618 183603503 9778715 70.890 3.776 35.285771 -104.194698 +88417 25 21 333455163 51063 128.748 0.020 35.059210 -104.376625 +88418 294 199 1315528547 1456754 507.928 0.562 36.725861 -103.684739 +88419 229 170 2381853799 3496544 919.639 1.350 36.910053 -103.531021 +88421 19 42 485498549 0 187.452 0.000 35.298352 -104.481343 +88422 68 58 624971629 690427 241.303 0.267 36.345307 -103.991533 +88424 128 94 2216082762 2320465 855.634 0.896 36.412538 -103.656438 +88426 1212 1153 1823962319 11257538 704.236 4.347 35.541549 -103.509461 +88427 119 72 532996610 0 205.791 0.000 34.770502 -103.774375 +88430 162 113 951554913 213 367.397 0.000 35.581506 -103.180367 +88431 49 45 543127393 8809 209.703 0.003 35.170055 -104.274806 +88434 369 199 969766623 166629 374.429 0.064 35.174700 -103.305980 +88435 3559 1633 4730109439 2759067 1826.306 1.065 34.914150 -104.695792 +88436 185 94 341841678 857736 131.986 0.331 36.137269 -103.123137 +89001 1224 559 5368092840 5001726 2072.632 1.931 37.276925 -115.394121 +89002 31880 11705 22608039 0 8.729 0.000 35.998374 -114.960945 +89003 1032 714 809259803 80617 312.457 0.031 36.971364 -116.744158 +89004 313 165 113506227 15412 43.825 0.006 36.102747 -115.487884 +89005 15065 7592 317102339 42393686 122.434 16.368 35.986732 -114.808625 +89007 1351 404 857519276 4509592 331.090 1.741 36.666657 -114.226747 +89008 1508 720 5629118448 933936 2173.415 0.361 37.286087 -114.513105 +89010 415 279 1046943189 2189119 404.227 0.845 37.782535 -118.074900 +89011 19550 9592 44036803 0 17.003 0.000 36.082721 -114.968477 +89012 29085 13511 28427646 0 10.976 0.000 36.011893 -115.043260 +89013 285 390 2244897069 155134 866.760 0.060 37.415175 -117.346901 +89014 36922 16432 19631725 0 7.580 0.000 36.061711 -115.058058 +89015 38993 15554 97106365 0 37.493 0.000 36.039297 -114.928019 +89017 176 80 1100423250 854118 424.876 0.330 37.744047 -115.250938 +89018 1007 563 145446645 0 56.157 0.000 36.511372 -115.645121 +89019 2673 1623 1235849127 0 477.164 0.000 35.766629 -115.734797 +89020 1456 711 894671578 141822 345.435 0.055 36.532267 -116.443610 +89021 3605 1214 105783967 61493 40.843 0.024 36.640293 -114.471037 +89022 69 138 447429758 0 172.754 0.000 38.540993 -117.020737 +89025 1400 510 1687120143 2421 651.401 0.001 36.562868 -114.885509 +89026 150 8 69212986 0 26.723 0.000 35.755242 -115.289723 +89027 15275 8910 76382004 994435 29.491 0.384 36.813688 -114.120202 +89029 7546 5170 243611646 4140626 94.059 1.599 35.129221 -114.656532 +89030 53928 15908 24235952 0 9.358 0.000 36.211456 -115.124148 +89031 60589 21485 24632957 0 9.511 0.000 36.258889 -115.171802 +89032 40297 14414 26560249 0 10.255 0.000 36.223177 -115.172685 +89039 316 215 213584516 0 82.465 0.000 35.287924 -114.879811 +89040 3721 1964 1350296772 252652509 521.353 97.550 36.356616 -114.578916 +89042 1010 448 368051133 19717 142.105 0.008 37.745490 -114.332372 +89043 1429 926 4501440819 1065103 1738.016 0.411 38.255898 -114.473413 +89044 14260 7556 81260253 0 31.375 0.000 35.902436 -115.178940 +89045 1505 776 3095916089 6775834 1195.340 2.616 38.880562 -116.968867 +89046 660 573 2236071565 55729294 863.352 21.517 35.501134 -114.888087 +89047 107 133 14116706 0 5.450 0.000 37.765950 -117.647869 +89048 21169 10388 198442603 352439 76.619 0.136 36.165343 -116.003323 +89049 2727 1769 4519429256 1357803 1744.961 0.524 38.356663 -116.262314 +89052 47214 21996 134472674 0 51.920 0.000 35.955099 -115.056694 +89054 105 59 12980268 0 5.012 0.000 35.927208 -115.208272 +89060 10227 4988 1198004405 83993 462.552 0.032 36.385724 -116.060445 +89061 5252 2567 188336183 10632 72.717 0.004 36.086419 -115.898330 +89074 47095 20274 23248043 0 8.976 0.000 36.036566 -115.080923 +89081 29774 10880 19336280 112001 7.466 0.043 36.257886 -115.103228 +89084 21837 9359 28312067 0 10.931 0.000 36.296907 -115.174209 +89085 3367 1222 1340545 0 0.518 0.000 36.309655 -115.198089 +89086 4726 1798 17587708 0 6.791 0.000 36.292251 -115.108589 +89101 46055 18340 13863521 0 5.353 0.000 36.172538 -115.122231 +89102 35759 16357 13875196 0 5.357 0.000 36.145412 -115.186819 +89103 50519 27455 17340746 0 6.695 0.000 36.111833 -115.211676 +89104 39909 16431 14706763 0 5.678 0.000 36.151355 -115.108690 +89106 25759 10222 13709882 0 5.293 0.000 36.181688 -115.163224 +89107 36282 13646 14140123 16686 5.460 0.006 36.171241 -115.209288 +89108 70123 28171 23273170 0 8.986 0.000 36.205266 -115.223617 +89109 7770 14574 11481186 0 4.433 0.000 36.131662 -115.168382 +89110 70994 22502 28782115 0 11.113 0.000 36.171425 -115.047748 +89113 23800 11593 28858530 0 11.142 0.000 36.061133 -115.263500 +89115 58794 21384 64782038 0 25.012 0.000 36.253638 -115.041025 +89117 55416 26704 23623828 108509 9.121 0.042 36.140961 -115.281091 +89118 19318 10020 27409080 0 10.583 0.000 36.077380 -115.213966 +89119 49445 26082 33487365 0 12.930 0.000 36.084718 -115.146127 +89120 23311 10062 18038716 0 6.965 0.000 36.081322 -115.095454 +89121 64096 28968 23822443 0 9.198 0.000 36.121523 -115.091324 +89122 45720 20088 23510250 0 9.077 0.000 36.106445 -115.040317 +89123 56300 27243 27602272 0 10.657 0.000 36.035207 -115.148777 +89124 941 958 3527976938 1139469 1362.160 0.440 36.114842 -115.613219 +89128 35669 16357 15535830 0 5.998 0.000 36.196822 -115.264370 +89129 51252 21020 25915606 0 10.006 0.000 36.233315 -115.290150 +89130 33015 13186 19801355 0 7.645 0.000 36.253967 -115.227091 +89131 43072 16101 41515959 8791 16.029 0.003 36.307145 -115.245989 +89134 24040 12884 17167455 0 6.628 0.000 36.202731 -115.307758 +89135 24144 11577 118079022 0 45.591 0.000 36.100975 -115.375912 +89138 12118 4923 10895598 0 4.207 0.000 36.166610 -115.361278 +89139 30477 12124 27418912 0 10.587 0.000 36.034680 -115.211674 +89141 25150 9955 27684272 0 10.689 0.000 35.988444 -115.207041 +89142 33731 11410 12338843 0 4.764 0.000 36.147921 -115.036334 +89143 12786 4463 8864942 0 3.423 0.000 36.322319 -115.293151 +89144 18714 8205 10166081 0 3.925 0.000 36.178887 -115.320765 +89145 23186 10495 11942971 0 4.611 0.000 36.167688 -115.277754 +89146 19071 8105 12411418 0 4.792 0.000 36.143242 -115.226889 +89147 49778 21829 19227223 0 7.424 0.000 36.112796 -115.280099 +89148 39712 16862 31901228 0 12.317 0.000 36.080170 -115.297071 +89149 31143 13917 31087031 0 12.003 0.000 36.272251 -115.292516 +89156 27794 10565 84041812 0 32.449 0.000 36.163408 -114.988132 +89161 184 89 49591319 0 19.147 0.000 36.000360 -115.363878 +89166 13209 4091 500294062 0 193.165 0.000 36.380644 -115.506876 +89169 23304 13158 8811101 0 3.402 0.000 36.124162 -115.141303 +89178 27588 11678 49497825 0 19.111 0.000 35.997669 -115.286067 +89179 2340 881 308602532 0 119.152 0.000 35.894539 -115.331936 +89183 36005 15062 18154277 0 7.009 0.000 35.995852 -115.157608 +89191 857 1 17427671 0 6.729 0.000 36.239491 -115.025738 +89301 7606 3230 5036363696 32721157 1944.551 12.634 39.540050 -114.770485 +89310 550 426 7686710750 58220195 2967.856 22.479 39.430542 -117.162771 +89311 235 154 550724109 257573 212.636 0.099 38.986044 -114.200069 +89314 158 78 429023611 57666 165.647 0.022 38.822807 -115.772027 +89316 1408 750 3994919074 3067722 1542.447 1.184 39.827988 -115.900602 +89317 477 237 242935786 3312531 93.798 1.279 38.797901 -115.025158 +89318 1219 616 72849529 928641 28.127 0.359 39.443721 -114.810189 +89319 450 251 27374403 0 10.569 0.000 39.296292 -114.976004 +89402 71 59 269192 140527 0.104 0.054 39.225070 -120.002192 +89403 14158 5947 522140563 199949 201.600 0.077 39.231543 -119.478309 +89404 52 51 593638701 6034047 229.205 2.330 41.903178 -118.668673 +89405 239 162 1146218210 0 442.557 0.000 40.480566 -119.424671 +89406 24772 10790 4035501292 53303949 1558.116 20.581 39.525701 -118.270419 +89408 19626 8074 384394576 17762480 148.416 6.858 39.563323 -119.173626 +89409 283 201 1139083170 1894661 439.802 0.732 38.801841 -118.110000 +89410 10557 4959 450579619 4440385 173.970 1.714 38.871803 -119.604152 +89411 929 695 58897332 0 22.740 0.000 39.019002 -119.850215 +89412 288 240 7586436922 16709518 2929.140 6.452 41.102934 -119.695361 +89413 655 799 40897131 1446983 15.790 0.559 39.073447 -119.922857 +89414 349 249 2280748904 8442411 880.602 3.260 41.044580 -117.181049 +89415 3793 2233 784996624 44910819 303.089 17.340 38.480395 -118.637507 +89418 388 255 703561542 0 271.647 0.000 40.548280 -118.034358 +89419 5150 1706 1194581827 180343 461.231 0.070 40.374813 -118.189048 +89420 48 58 79628564 0 30.745 0.000 38.544555 -118.226681 +89421 634 306 2164573227 11820 835.746 0.005 42.052099 -117.855797 +89422 165 166 1140425438 1537537 440.321 0.594 38.177609 -118.453799 +89423 10465 4597 179370927 669591 69.256 0.259 39.018863 -119.755643 +89424 341 134 613173696 36419594 236.748 14.062 39.888166 -119.284054 +89425 432 242 1842109530 1152 711.242 0.000 41.629858 -117.916223 +89426 208 158 827584497 840215 319.532 0.324 41.487947 -117.424872 +89427 746 360 632704410 3168173 244.289 1.223 38.891607 -118.633369 +89428 179 95 3179021 0 1.227 0.000 39.261033 -119.634643 +89429 7627 3499 436326503 15099591 168.467 5.830 39.324826 -119.297035 +89430 433 203 102154352 0 39.442 0.000 38.775090 -119.305082 +89431 36189 14980 25051624 9623 9.672 0.004 39.540398 -119.749111 +89433 20188 6934 40217746 0 15.528 0.000 39.608937 -119.776657 +89434 25416 10670 77496113 690001 29.921 0.266 39.541317 -119.650155 +89436 36867 14060 105577091 1269347 40.764 0.490 39.604161 -119.689298 +89438 48 40 121096231 3184332 46.756 1.229 40.798541 -117.093499 +89439 1417 718 37759515 304691 14.579 0.118 39.520351 -119.999800 +89440 947 560 37448148 0 14.459 0.000 39.296482 -119.658713 +89441 11542 4259 107495036 0 41.504 0.000 39.676372 -119.675827 +89442 1118 464 413737161 48685 159.745 0.019 39.709319 -119.414848 +89444 2734 1475 766282163 9140000 295.863 3.529 38.669814 -119.385630 +89445 16114 6665 10130491060 4392408 3911.405 1.696 41.169339 -118.263916 +89446 36 12 12053800 0 4.654 0.000 41.217004 -117.870321 +89447 7931 3783 1975464374 1996169 762.731 0.771 38.811278 -119.131304 +89448 1695 1695 31812838 914594 12.283 0.353 38.996486 -119.917476 +89449 2994 2330 25980901 272684 10.031 0.105 38.954993 -119.911221 +89450 86 113 76478 0 0.030 0.000 39.240488 -119.939145 +89451 8930 7782 65526936 2503479 25.300 0.967 39.241580 -119.934182 +89460 13236 5681 140390942 1196501 54.205 0.462 38.902253 -119.792493 +89501 4252 3592 1641357 0 0.634 0.000 39.525749 -119.813051 +89502 43566 19541 57651951 152388 22.260 0.059 39.491314 -119.743845 +89503 27891 13086 16798517 167433 6.486 0.065 39.541040 -119.840126 +89506 38379 13729 244810401 5338874 94.522 2.061 39.712124 -119.820815 +89508 11662 4562 413325843 4878621 159.586 1.884 39.780602 -119.913754 +89509 33395 17127 23175764 95199 8.948 0.037 39.495957 -119.827452 +89510 1685 744 2678695600 479114804 1034.250 184.987 40.081901 -119.612974 +89511 25011 10788 386019151 30440 149.043 0.012 39.385441 -119.876909 +89512 25574 11304 16321939 59345 6.302 0.023 39.555870 -119.800887 +89519 8392 3858 20176090 199839 7.790 0.077 39.480704 -119.857872 +89521 25716 11137 198606344 881427 76.682 0.340 39.385286 -119.691971 +89523 31373 14059 48799502 328336 18.842 0.127 39.524320 -119.917297 +89701 27625 10579 86266815 999025 33.308 0.386 39.130227 -119.725249 +89702 0 0 486977 0 0.188 0.000 39.159097 -119.735810 +89703 9714 4751 65751616 28590 25.387 0.011 39.163819 -119.834819 +89704 4290 1897 198283064 23146668 76.558 8.937 39.262661 -119.815844 +89705 4969 2082 111776425 1584587 43.157 0.612 39.111672 -119.860561 +89706 19510 8871 82078515 120568 31.691 0.047 39.222699 -119.701535 +89801 23298 9177 4513939571 11494776 1742.842 4.438 41.247991 -115.761405 +89815 13346 4843 1630404813 4481200 629.503 1.730 40.615333 -115.594252 +89820 5358 2203 5611198612 3231123 2166.496 1.248 40.411623 -116.977156 +89821 482 314 949853494 6549799 366.740 2.529 40.495361 -116.468358 +89822 2513 1100 1495390958 0 577.374 0.000 40.530669 -116.193978 +89823 273 109 983544995 1204105 379.749 0.465 41.007325 -115.280794 +89825 1228 651 108914547 117470 42.052 0.045 41.876177 -114.777400 +89826 42 102 228074740 20822 88.060 0.008 41.890603 -115.385386 +89828 268 176 337536655 93638 130.324 0.036 40.779688 -115.296463 +89830 270 224 2024493617 1950678 781.661 0.753 41.269963 -114.286701 +89831 78 81 542637347 991988 209.513 0.383 41.716264 -116.078505 +89832 1304 491 343419336 2734219 132.595 1.056 41.980015 -116.158060 +89833 201 182 1298129242 8257402 501.211 3.188 40.481519 -115.331629 +89834 126 73 2338193596 3391995 902.782 1.310 41.379983 -116.203471 +89835 1822 876 6601140462 4202251 2548.715 1.622 41.114501 -114.852524 +89883 4488 1549 775119298 979030 299.275 0.378 40.848683 -114.156963 +90001 57110 13788 9071361 0 3.502 0.000 33.974027 -118.249509 +90002 51223 12598 7930685 0 3.062 0.000 33.949099 -118.246737 +90003 66266 17127 9197642 403 3.551 0.000 33.964131 -118.272783 +90004 62180 24278 7894533 0 3.048 0.000 34.076198 -118.310722 +90005 37681 16345 2807559 0 1.084 0.000 34.059163 -118.306892 +90006 59185 20332 4972248 0 1.920 0.000 34.048041 -118.294177 +90007 40920 12762 6387018 0 2.466 0.000 34.028133 -118.284828 +90008 32327 15006 9513430 68544 3.673 0.026 34.009552 -118.346724 +90010 3800 2382 1184445 0 0.457 0.000 34.062148 -118.315889 +90011 103892 23547 11100424 529 4.286 0.000 34.007090 -118.258681 +90012 31103 11370 8375660 152963 3.234 0.059 34.065875 -118.238728 +90013 11772 7516 1737681 36081 0.671 0.014 34.045405 -118.240454 +90014 7005 4990 733437 0 0.283 0.000 34.043146 -118.251746 +90015 18986 8245 4430188 0 1.711 0.000 34.039378 -118.266299 +90016 47596 17204 9393921 8288 3.627 0.003 34.028331 -118.354338 +90017 23768 10610 1881077 0 0.726 0.000 34.052913 -118.264340 +90018 49310 16658 7500313 0 2.896 0.000 34.028887 -118.317183 +90019 64458 25116 10070053 10609 3.888 0.004 34.049841 -118.338460 +90020 38967 17900 2927480 0 1.130 0.000 34.066379 -118.309870 +90021 3951 1761 5362540 72704 2.070 0.028 34.029036 -118.237870 +90022 67179 17713 11346604 11013 4.381 0.004 34.023728 -118.156275 +90023 45903 11259 10941450 89434 4.225 0.035 34.022502 -118.199613 +90024 47452 19932 7608226 0 2.938 0.000 34.065729 -118.434999 +90025 42147 23058 6655173 3878 2.570 0.001 34.045360 -118.445818 +90026 67869 26686 10942889 220946 4.225 0.085 34.080017 -118.262643 +90027 45151 23390 21402832 269094 8.264 0.104 34.127194 -118.295647 +90028 28714 17126 3947880 0 1.524 0.000 34.099912 -118.326912 +90029 38617 14723 3526895 0 1.362 0.000 34.089848 -118.294661 +90031 39316 11903 8945994 202984 3.454 0.078 34.085807 -118.206617 +90032 45786 13521 12347050 28686 4.767 0.011 34.078195 -118.185497 +90033 48852 13690 8461294 74288 3.267 0.029 34.050380 -118.211991 +90034 57964 27210 8062311 22896 3.113 0.009 34.030578 -118.399613 +90035 28418 14030 5330221 0 2.058 0.000 34.051809 -118.383674 +90036 36865 19920 6398643 3300 2.471 0.001 34.070410 -118.350411 +90037 62276 17192 7351184 0 2.838 0.000 34.002723 -118.287487 +90038 28917 12812 4057211 3325 1.566 0.001 34.088475 -118.325527 +90039 28514 12127 9764431 514302 3.770 0.199 34.111525 -118.260552 +90040 12520 3397 14454795 2782 5.581 0.001 33.994524 -118.149953 +90041 27425 9998 9352825 30513 3.611 0.012 34.137412 -118.207607 +90042 62430 21018 12027396 84278 4.644 0.033 34.114708 -118.192098 +90043 44789 17172 10705820 2585 4.134 0.001 33.988505 -118.336358 +90044 89779 27479 13303825 0 5.137 0.000 33.952724 -118.291904 +90045 39480 16127 27779045 779 10.726 0.000 33.942108 -118.417488 +90046 48581 30688 14970999 3009 5.780 0.001 34.108455 -118.362081 +90047 48606 17150 12251863 472 4.730 0.000 33.953617 -118.308428 +90048 21397 12939 4882696 0 1.885 0.000 34.072924 -118.372710 +90049 35482 18097 38905061 1371 15.021 0.001 34.091829 -118.491244 +90056 7827 3518 4090954 0 1.580 0.000 33.988047 -118.370361 +90057 44998 17247 2293706 34211 0.886 0.013 34.061735 -118.276757 +90058 3223 921 15042486 590699 5.808 0.228 34.002844 -118.216400 +90059 40952 10617 8581870 42500 3.313 0.016 33.926262 -118.249883 +90061 26872 7385 6895207 1362 2.662 0.001 33.921280 -118.274186 +90062 32821 9795 5008337 0 1.934 0.000 34.003638 -118.308806 +90063 55758 14012 8476100 0 3.273 0.000 34.045105 -118.185914 +90064 25403 11540 10360459 3034 4.000 0.001 34.037251 -118.423573 +90065 45527 15288 13671567 2611 5.279 0.001 34.112272 -118.225496 +90066 55277 25319 12746971 143777 4.922 0.056 34.002028 -118.430656 +90067 2424 1808 849895 0 0.328 0.000 34.057597 -118.413998 +90068 22286 13901 19731266 470986 7.618 0.182 34.129772 -118.330989 +90069 20483 14781 5475785 0 2.114 0.000 34.093828 -118.381697 +90071 15 0 319155 0 0.123 0.000 34.052876 -118.254943 +90073 539 4 877374 0 0.339 0.000 34.054533 -118.457030 +90077 9377 3888 18985951 350034 7.331 0.135 34.108537 -118.457081 +90079 0 0 25585 0 0.010 0.000 34.040587 -118.255404 +90089 3217 31 742759 0 0.287 0.000 34.020221 -118.286035 +90090 0 0 599380 0 0.231 0.000 34.072862 -118.240989 +90094 5464 3168 1582611 0 0.611 0.000 33.975416 -118.416989 +90095 3 2 1023532 0 0.395 0.000 34.071312 -118.443545 +90201 101279 24940 15375409 294865 5.936 0.114 33.970343 -118.171368 +90210 21741 9563 26226245 157100 10.126 0.061 34.102630 -118.415972 +90211 8434 4052 1813980 0 0.700 0.000 34.064958 -118.382979 +90212 11555 6170 2474163 0 0.955 0.000 34.062210 -118.401966 +90220 49328 13498 17898040 94403 6.910 0.036 33.881510 -118.234451 +90221 53704 12368 13809565 265392 5.332 0.102 33.885624 -118.205918 +90222 31869 8026 6621871 70892 2.557 0.027 33.912246 -118.236773 +90230 31766 13344 11672688 113071 4.507 0.044 33.998213 -118.394059 +90232 15149 6944 5454835 35214 2.106 0.014 34.019323 -118.391902 +90240 25876 7991 7624869 183658 2.944 0.071 33.955729 -118.118346 +90241 42399 14316 12758123 171073 4.926 0.066 33.940884 -118.128628 +90242 43497 13294 11785986 59544 4.551 0.023 33.921793 -118.140588 +90245 16654 7410 14148053 994041 5.463 0.384 33.917140 -118.404267 +90247 47487 16620 9723269 10850 3.754 0.004 33.890853 -118.297967 +90248 9947 3573 12155495 242901 4.693 0.094 33.876482 -118.284077 +90249 26669 9214 7712765 79771 2.978 0.031 33.901390 -118.315697 +90250 93193 32600 17340185 35695 6.695 0.014 33.914775 -118.348083 +90254 19506 10162 3697139 1540929 1.427 0.595 33.864259 -118.399303 +90255 75066 19118 9629884 8372 3.718 0.003 33.978030 -118.217141 +90260 34924 10879 6941367 48968 2.680 0.019 33.888560 -118.351813 +90262 69745 15266 12517493 186079 4.833 0.072 33.923533 -118.200705 +90263 1612 0 585126 0 0.226 0.000 34.039034 -118.707992 +90265 18116 9033 279184812 18856260 107.794 7.280 34.066117 -118.846342 +90266 35135 14929 10194994 1901158 3.936 0.734 33.889151 -118.402127 +90270 27372 6761 3267832 78552 1.262 0.030 33.987729 -118.186597 +90272 22986 9815 59133992 1423894 22.832 0.550 34.087460 -118.544232 +90274 25209 9941 31002843 2631966 11.970 1.016 33.780065 -118.372454 +90275 41804 16236 35004660 8398187 13.515 3.243 33.753146 -118.367459 +90277 35293 18062 9279695 3503183 3.583 1.353 33.830006 -118.387124 +90278 40071 16655 9333177 0 3.604 0.000 33.873214 -118.370359 +90280 94396 24160 18920058 302730 7.305 0.117 33.944159 -118.192761 +90290 6368 2867 51935407 24096 20.052 0.009 34.107728 -118.615981 +90291 28341 16212 6462163 873010 2.495 0.337 33.993396 -118.465193 +90292 21576 14585 5280289 2851541 2.039 1.101 33.979007 -118.457852 +90293 12132 6968 7420242 3984738 2.865 1.539 33.947305 -118.439841 +90301 36568 12565 6416784 0 2.478 0.000 33.956526 -118.358653 +90302 29415 11431 4903281 2993 1.893 0.001 33.975332 -118.355252 +90303 26176 7646 5745894 46436 2.219 0.018 33.939766 -118.331085 +90304 28210 6946 4057527 0 1.567 0.000 33.937887 -118.358559 +90305 14853 6166 6006924 16215 2.319 0.006 33.958890 -118.330548 +90401 6722 4682 2199166 439378 0.849 0.170 34.013666 -118.493750 +90402 12250 5945 5189913 326900 2.004 0.126 34.034666 -118.504039 +90403 24525 15172 3697303 247223 1.428 0.095 34.030755 -118.492101 +90404 21360 10865 5159382 0 1.992 0.000 34.026608 -118.473643 +90405 27186 15370 6854633 456199 2.647 0.176 34.011167 -118.469630 +90501 43180 15364 14565670 102000 5.624 0.039 33.833744 -118.314022 +90502 18010 5939 5788343 33314 2.235 0.013 33.833181 -118.292062 +90503 44383 17948 13719607 24366 5.297 0.009 33.840399 -118.353714 +90504 32102 11986 11527566 44410 4.451 0.017 33.867257 -118.330794 +90505 36678 14846 15007286 30480 5.794 0.012 33.807882 -118.347957 +90506 0 0 407877 5736 0.157 0.002 33.884696 -118.329998 +90601 31974 11549 29388881 640939 11.347 0.247 34.007840 -118.030271 +90602 25777 8451 9610146 7160 3.710 0.003 33.972232 -118.022557 +90603 20063 7007 8469076 8049 3.270 0.003 33.945318 -117.992066 +90604 39407 12326 11036745 10788 4.261 0.004 33.929704 -118.012080 +90605 40331 10897 14638491 23105 5.652 0.009 33.950295 -118.024352 +90606 32396 8931 9797979 218730 3.783 0.084 33.977272 -118.066363 +90620 45113 13680 16553642 23123 6.391 0.009 33.846302 -118.012225 +90621 35153 10803 10728187 52196 4.142 0.020 33.874224 -117.993368 +90623 15554 5215 4694270 62515 1.812 0.024 33.850504 -118.039892 +90630 47993 16204 15864796 23874 6.125 0.009 33.818477 -118.038307 +90631 67619 22497 36010789 23068 13.904 0.009 33.942708 -117.952483 +90638 49012 15236 20417024 44920 7.883 0.017 33.902045 -118.008961 +90640 62549 19785 21990769 104151 8.491 0.040 34.015444 -118.111012 +90650 105549 28083 25403321 101814 9.808 0.039 33.906956 -118.082640 +90660 62928 17106 20071601 1269051 7.750 0.490 33.989524 -118.089299 +90670 14866 4616 21918115 103215 8.463 0.040 33.933565 -118.062611 +90680 29945 8848 6981102 0 2.695 0.000 33.801178 -117.994901 +90701 16591 4715 4221723 0 1.630 0.000 33.867600 -118.080612 +90703 49399 15946 22740186 339195 8.780 0.131 33.868049 -118.069208 +90704 4090 2481 193719023 567980272 74.795 219.298 33.397729 -118.441282 +90706 76615 24896 15819961 138179 6.108 0.053 33.887821 -118.127250 +90710 25457 9061 6106901 1884 2.358 0.001 33.799904 -118.298661 +90712 31499 11155 11101330 53623 4.286 0.021 33.849034 -118.147902 +90713 27925 9711 8790089 0 3.394 0.000 33.847989 -118.112601 +90715 20388 6406 4404198 111321 1.700 0.043 33.841027 -118.079141 +90716 14184 3652 2411559 27038 0.931 0.010 33.830457 -118.072639 +90717 21318 8887 5128003 0 1.980 0.000 33.793809 -118.317170 +90720 21751 8010 15868153 170236 6.127 0.066 33.795012 -118.062692 +90723 54099 14572 12133919 208699 4.685 0.081 33.898883 -118.166629 +90731 59662 23914 23803092 16677998 9.190 6.439 33.731442 -118.278869 +90732 21115 9250 8903149 957706 3.438 0.370 33.742120 -118.312878 +90740 23729 14303 22725811 1968775 8.774 0.760 33.758405 -118.075043 +90742 831 556 478557 914860 0.185 0.353 33.716666 -118.076906 +90743 456 256 214434 1128083 0.083 0.436 33.726516 -118.090327 +90744 53815 14684 21593280 2964288 8.337 1.145 33.779284 -118.261723 +90745 57251 15680 21498764 181023 8.301 0.070 33.821605 -118.264112 +90746 25990 8271 15106706 64767 5.833 0.025 33.859171 -118.252272 +90747 0 0 16629 0 0.006 0.000 33.862900 -118.251318 +90755 11074 4404 5644694 4445 2.179 0.002 33.803448 -118.168135 +90802 39347 23071 16791357 21909872 6.483 8.459 33.745762 -118.208042 +90803 32031 18682 10353507 10867846 3.998 4.196 33.756289 -118.130636 +90804 40311 15792 5477388 2503 2.115 0.001 33.781686 -118.148365 +90805 93524 27646 19085334 428897 7.369 0.166 33.864617 -118.180567 +90806 42399 13072 8908246 282644 3.439 0.109 33.805640 -118.188596 +90807 31481 13256 15124348 97995 5.840 0.038 33.827740 -118.174820 +90808 38232 14567 17783214 254806 6.866 0.098 33.823943 -118.111335 +90810 36735 9709 17342372 535649 6.696 0.207 33.819814 -118.222416 +90813 58911 17896 8310405 242358 3.209 0.094 33.782259 -118.196793 +90814 19131 9808 3508606 0 1.355 0.000 33.771616 -118.143631 +90815 39733 15409 18446263 468071 7.122 0.181 33.794348 -118.116391 +90822 117 4 420836 0 0.162 0.000 33.778436 -118.118648 +90831 0 0 107540 0 0.042 0.000 33.768338 -118.201639 +91001 36126 13285 21421337 42669 8.271 0.016 34.195275 -118.137227 +91006 31715 11142 16364902 341659 6.319 0.132 34.136258 -118.026704 +91007 34095 12750 14395473 13098 5.558 0.005 34.128284 -118.047732 +91008 1391 640 5242985 3236 2.024 0.001 34.153159 -117.968818 +91010 26074 8256 18234461 113263 7.040 0.044 34.141586 -117.957627 +91011 20280 7099 30703806 48850 11.855 0.019 34.222261 -118.205369 +91016 40598 15781 21978603 228869 8.486 0.088 34.152800 -118.000482 +91020 8415 3586 1948563 0 0.752 0.000 34.211341 -118.230652 +91024 10917 5113 7646972 11543 2.953 0.004 34.168771 -118.050216 +91030 25616 11116 8833647 31324 3.411 0.012 34.108957 -118.156615 +91040 20372 7732 21244063 13753 8.202 0.005 34.261962 -118.336078 +91042 27585 10534 129196196 154741 49.883 0.060 34.322220 -118.237917 +91046 156 118 25915 0 0.010 0.000 34.211452 -118.241036 +91101 20460 11873 3430898 0 1.325 0.000 34.146671 -118.139456 +91103 27480 9076 13896598 158268 5.366 0.061 34.169538 -118.164941 +91104 36751 13670 9849391 11657 3.803 0.005 34.165383 -118.123752 +91105 11254 5704 9566884 53222 3.694 0.021 34.139460 -118.166649 +91106 24229 11742 7643112 3083 2.951 0.001 34.139402 -118.128658 +91107 32940 13763 21287664 200339 8.219 0.077 34.156397 -118.085873 +91108 13361 4562 9872619 19635 3.812 0.008 34.122671 -118.112911 +91201 22781 8590 6116160 27486 2.361 0.011 34.170510 -118.289463 +91202 22830 9297 5308492 21409 2.050 0.008 34.167926 -118.267539 +91203 13220 5407 2119997 7369 0.819 0.003 34.153338 -118.262974 +91204 16032 5969 2911130 0 1.124 0.000 34.136194 -118.260934 +91205 37810 14899 4897491 853 1.891 0.000 34.136580 -118.245839 +91206 33065 14041 15235193 39982 5.882 0.015 34.160359 -118.213769 +91207 10506 4283 11767215 74138 4.543 0.029 34.182378 -118.262922 +91208 16245 6342 17876662 138152 6.902 0.053 34.185832 -118.239524 +91210 328 309 113997 0 0.044 0.000 34.144557 -118.256507 +91214 30356 10919 19546295 52538 7.547 0.020 34.236302 -118.249185 +91301 25488 9559 88294586 333962 34.091 0.129 34.123286 -118.758541 +91302 25709 9702 69143126 130230 26.696 0.050 34.123310 -118.671028 +91303 26855 9502 5603372 41606 2.163 0.016 34.198292 -118.600913 +91304 50231 17456 24360147 49267 9.406 0.019 34.224377 -118.632656 +91306 45061 14389 10718165 63090 4.138 0.024 34.209532 -118.577563 +91307 24474 8556 20836532 23860 8.045 0.009 34.200833 -118.664900 +91311 36557 14021 83081236 2412183 32.078 0.931 34.294142 -118.603883 +91316 26898 12692 12968532 692918 5.007 0.268 34.160236 -118.515472 +91320 44274 15438 47261336 0 18.248 0.000 34.175969 -118.945118 +91321 34882 11892 67031333 65198 25.881 0.025 34.368110 -118.489037 +91324 27669 10020 11373551 63779 4.391 0.025 34.238208 -118.550290 +91325 32417 12488 12486897 7441 4.821 0.003 34.236683 -118.517588 +91326 33708 12206 21131468 21287 8.159 0.008 34.281486 -118.556005 +91330 2702 2 882333 0 0.341 0.000 34.247532 -118.526076 +91331 103689 23780 22928415 120343 8.853 0.046 34.255442 -118.421314 +91335 74363 24158 17002131 80912 6.565 0.031 34.200175 -118.540958 +91340 34188 8623 8756157 0 3.381 0.000 34.286689 -118.435078 +91342 91725 24967 142711370 710812 55.101 0.274 34.326674 -118.382262 +91343 60254 17619 15310097 34628 5.911 0.013 34.237912 -118.482306 +91344 51747 17444 42511968 889947 16.414 0.344 34.294615 -118.507001 +91345 18496 5412 8396240 33281 3.242 0.013 34.265878 -118.457241 +91350 33348 11336 43886336 62601 16.945 0.024 34.440891 -118.501747 +91351 32362 10531 24789457 3646 9.571 0.001 34.441427 -118.448088 +91352 47807 12620 30221660 591630 11.669 0.228 34.230854 -118.365856 +91354 28722 9926 22595656 4538 8.724 0.002 34.465755 -118.553789 +91355 32605 13322 40079320 407900 15.475 0.157 34.439741 -118.634816 +91356 29458 12454 18996187 0 7.334 0.000 34.155097 -118.547553 +91360 42402 15515 37627046 0 14.528 0.000 34.212798 -118.882175 +91361 20438 8738 86771992 1702158 33.503 0.657 34.136057 -118.888909 +91362 36045 14033 50808113 0 19.617 0.000 34.193329 -118.818678 +91364 25851 10975 19665436 14784 7.593 0.006 34.153733 -118.593408 +91367 39499 18210 19272057 32319 7.441 0.012 34.178068 -118.615714 +91371 1 1 606883 0 0.234 0.000 34.184616 -118.576125 +91377 13811 5297 13712658 0 5.294 0.000 34.184975 -118.766918 +91381 20158 6848 97468870 91156 37.633 0.035 34.384545 -118.647017 +91384 29855 7197 281172396 9273529 108.561 3.581 34.506627 -118.699048 +91387 40328 13793 128267971 222180 49.525 0.086 34.402488 -118.372452 +91390 19786 6742 370679105 2471966 143.120 0.954 34.545587 -118.420095 +91401 39285 15289 8943621 24584 3.453 0.009 34.178483 -118.431791 +91402 69817 19179 9652884 77471 3.727 0.030 34.222506 -118.444689 +91403 23484 12051 9404990 38625 3.631 0.015 34.147149 -118.463365 +91405 51145 17442 8570051 17806 3.309 0.007 34.199824 -118.447609 +91406 51558 18034 21061927 40225 8.132 0.016 34.195685 -118.490752 +91411 24628 9788 5289571 0 2.042 0.000 34.178522 -118.459234 +91423 30991 15787 11299941 61355 4.363 0.024 34.148617 -118.433298 +91436 14372 5788 14751608 140172 5.696 0.054 34.151729 -118.490755 +91501 20849 8686 10275378 28609 3.967 0.011 34.200992 -118.292773 +91502 11371 5419 3456372 28720 1.335 0.011 34.177267 -118.310030 +91504 24939 9702 12783282 29685 4.936 0.011 34.204568 -118.326365 +91505 30778 13850 13054296 8433 5.040 0.003 34.173885 -118.346937 +91506 18904 7927 6337375 2257 2.447 0.001 34.169706 -118.323548 +91601 37180 17392 6864519 498 2.650 0.000 34.169200 -118.372498 +91602 17473 9946 5302419 68388 2.047 0.026 34.150818 -118.368159 +91604 29034 15373 13343410 190635 5.152 0.074 34.139082 -118.392750 +91605 56343 16199 14151285 38400 5.464 0.015 34.207295 -118.400022 +91606 44958 15676 8631179 25464 3.333 0.010 34.185767 -118.388323 +91607 27927 13841 6318261 58184 2.439 0.022 34.165783 -118.399795 +91608 0 0 1551696 37204 0.599 0.014 34.138761 -118.350933 +91701 38976 13351 18829141 0 7.270 0.000 34.137563 -117.599944 +91702 59705 16224 438640351 3940055 169.360 1.521 34.280333 -117.866141 +91706 76571 18067 34800666 2220267 13.437 0.857 34.097410 -117.968269 +91708 3369 381 24788125 33348 9.571 0.013 33.953755 -117.639209 +91709 74796 23615 88521406 175460 34.178 0.068 33.963746 -117.738491 +91710 80358 23009 55706484 0 21.508 0.000 34.004473 -117.684702 +91711 35705 12431 38876149 360061 15.010 0.139 34.127440 -117.715284 +91722 34409 10450 10698907 3901 4.131 0.002 34.097345 -117.906736 +91723 18275 6672 6008935 32193 2.320 0.012 34.084747 -117.886844 +91724 26184 8771 16146217 7364 6.234 0.003 34.080444 -117.854733 +91730 66925 24024 37487504 29720 14.474 0.011 34.100970 -117.578820 +91731 29591 8381 9878514 169548 3.814 0.065 34.078573 -118.043456 +91732 61386 15347 11953508 237965 4.615 0.092 34.073420 -118.015345 +91733 43896 10297 17303562 799282 6.681 0.309 34.046243 -118.053748 +91737 24740 8399 21696646 0 8.377 0.000 34.152583 -117.577707 +91739 34794 10890 76117741 21277 29.389 0.008 34.171699 -117.523020 +91740 25356 8724 12892633 43353 4.978 0.017 34.119363 -117.855059 +91741 25824 9433 38377632 383582 14.818 0.148 34.156529 -117.841605 +91744 85040 19211 22764793 3452 8.790 0.001 34.031415 -117.936470 +91745 54013 16645 33172472 60949 12.808 0.024 33.999005 -117.972146 +91746 30485 6937 14425626 487239 5.570 0.188 34.044416 -117.985366 +91748 45406 13889 37472106 205820 14.468 0.079 33.974883 -117.900676 +91750 33249 12396 65354791 511628 25.234 0.198 34.177070 -117.779803 +91752 30047 9025 39075775 541868 15.087 0.209 33.994305 -117.535347 +91754 32742 11718 11739576 28122 4.533 0.011 34.052922 -118.143465 +91755 27496 9122 8049940 130231 3.108 0.050 34.050965 -118.114394 +91759 476 366 213129211 2065 82.290 0.001 34.263636 -117.699470 +91761 56913 16038 75551607 32528 29.171 0.013 34.035602 -117.591528 +91762 55857 16769 35286725 0 13.624 0.000 34.059410 -117.674011 +91763 36375 9833 13393075 0 5.171 0.000 34.072329 -117.698315 +91764 54086 15411 20735380 137080 8.006 0.053 34.074087 -117.605618 +91765 46457 15547 49001327 13084 18.920 0.005 33.986775 -117.820908 +91766 71599 18629 26329907 13063 10.166 0.005 34.042286 -117.756106 +91767 48068 14520 14557522 16098 5.621 0.006 34.083086 -117.737997 +91768 34537 8381 22402279 13012 8.650 0.005 34.063516 -117.790379 +91770 62097 17258 16634980 138149 6.423 0.053 34.065493 -118.084529 +91773 33119 12414 37043410 1007454 14.303 0.389 34.110186 -117.810390 +91775 23988 8567 7934784 37002 3.064 0.014 34.114772 -118.089431 +91776 38475 12493 8818748 1122 3.405 0.000 34.090776 -118.095091 +91780 34332 11828 9917339 13560 3.829 0.005 34.101674 -118.055929 +91784 25938 9200 23605118 502750 9.114 0.194 34.141146 -117.655583 +91786 51165 19394 23187609 0 8.953 0.000 34.105281 -117.662035 +91789 43079 13246 40488919 123717 15.633 0.048 34.018354 -117.854920 +91790 44907 13151 14950670 69779 5.772 0.027 34.066964 -117.937007 +91791 32414 10612 17184581 54439 6.635 0.021 34.061634 -117.893169 +91792 30854 9504 9950710 1430 3.842 0.001 34.022581 -117.902359 +91801 52735 20521 11286727 0 4.358 0.000 34.090728 -118.127527 +91803 30322 10385 8458066 2947 3.266 0.001 34.074736 -118.145959 +91901 17403 6720 231185687 2022776 89.261 0.781 32.810624 -116.710667 +91902 17653 6183 22549756 768396 8.707 0.297 32.665762 -117.018657 +91905 1700 893 170458715 58001 65.814 0.022 32.682149 -116.314445 +91906 3627 1518 273324669 1851941 105.531 0.715 32.654863 -116.465373 +91910 75802 27557 31684276 86887 12.233 0.034 32.637898 -117.057991 +91911 82999 25616 30333860 481365 11.712 0.186 32.607008 -117.053949 +91913 40971 12865 26413863 91295 10.198 0.035 32.619459 -116.985820 +91914 15448 4572 16300235 227897 6.294 0.088 32.673652 -116.944653 +91915 24659 7487 19700021 1675758 7.606 0.647 32.623185 -116.949053 +91916 1622 793 103034401 0 39.782 0.000 32.887991 -116.621359 +91917 992 320 93800045 0 36.216 0.000 32.608865 -116.719660 +91931 592 288 37465786 0 14.466 0.000 32.846363 -116.557729 +91932 25718 9883 6509768 1464550 2.513 0.565 32.573755 -117.120872 +91934 737 436 121027388 18532 46.729 0.007 32.648995 -116.152562 +91935 8624 3101 250190793 1440020 96.599 0.556 32.722157 -116.792813 +91941 31779 12856 20879219 28065 8.062 0.011 32.759327 -116.997260 +91942 38069 18285 15114012 78180 5.836 0.030 32.777999 -117.021511 +91945 25460 8915 10169406 0 3.926 0.000 32.733177 -117.034164 +91948 78 215 51396049 143662 19.844 0.055 32.866646 -116.448325 +91950 60322 17167 19680919 1066814 7.599 0.412 32.670646 -117.094668 +91962 1646 804 133722486 0 51.631 0.000 32.735124 -116.415161 +91963 1118 413 87130680 0 33.641 0.000 32.626231 -116.610020 +91977 58368 19167 25033285 11556 9.665 0.004 32.726236 -116.994318 +91978 8896 3159 16572908 958180 6.399 0.370 32.724154 -116.940093 +91980 165 49 9275957 0 3.581 0.000 32.588866 -116.619172 +92003 4746 1995 44881644 801571 17.329 0.309 33.284926 -117.199489 +92004 3881 3288 1796320407 1535421 693.563 0.593 33.142077 -116.106046 +92007 10429 4765 6330084 1173358 2.444 0.453 33.023250 -117.274923 +92008 27649 12799 26696113 3877636 10.307 1.497 33.144219 -117.319439 +92009 40747 16059 32960924 687936 12.726 0.266 33.095320 -117.243796 +92010 14382 5711 20925397 356724 8.079 0.138 33.158500 -117.277163 +92011 22405 10036 17611529 572747 6.800 0.221 33.107582 -117.292182 +92014 13154 6755 15615216 1228040 6.029 0.474 32.965617 -117.248296 +92019 42598 15838 69540477 2318350 26.850 0.895 32.776012 -116.880634 +92020 57767 20894 28841078 0 11.136 0.000 32.795510 -116.969721 +92021 65068 23881 77254882 563268 29.828 0.217 32.841221 -116.872692 +92024 49121 20991 43710390 1949436 16.877 0.753 33.056022 -117.259900 +92025 49978 15781 57076472 1172365 22.037 0.453 33.102005 -117.080420 +92026 48922 18178 96377487 0 37.212 0.000 33.212452 -117.116100 +92027 53881 17051 163333206 1255068 63.063 0.485 33.131156 -116.976997 +92028 46239 17325 244405303 1117666 94.365 0.432 33.390477 -117.209427 +92029 19021 7364 61242380 1184843 23.646 0.457 33.084281 -117.129422 +92036 3440 2227 462868130 110030 178.714 0.042 33.022474 -116.493688 +92037 46781 20162 33871798 5226853 13.078 2.018 32.856347 -117.250058 +92040 41281 15610 166223863 6573210 64.179 2.538 32.908904 -116.892002 +92054 40375 17924 30931473 2139881 11.943 0.826 33.195534 -117.354538 +92055 15655 388 255039574 0 98.471 0.000 33.387723 -117.444758 +92056 51835 20128 32145434 96815 12.411 0.037 33.201242 -117.296984 +92057 54096 18860 39077390 945901 15.088 0.365 33.254610 -117.283379 +92058 42436 14431 73079229 4606115 28.216 1.778 33.326859 -117.304765 +92059 1618 569 72142986 0 27.855 0.000 33.376467 -117.066121 +92060 218 217 180321664 5360550 69.623 2.070 33.346494 -116.852856 +92061 2499 1097 102841863 0 39.707 0.000 33.298504 -116.924785 +92064 47904 16752 106078295 223435 40.957 0.086 32.983612 -117.019037 +92065 35414 12708 427786922 1175056 165.169 0.454 33.053006 -116.850651 +92066 378 211 51378283 0 19.837 0.000 33.219365 -116.535247 +92067 9535 3990 58320346 200873 22.518 0.078 33.020908 -117.190346 +92069 46369 14538 42612345 0 16.453 0.000 33.170778 -117.158674 +92070 1245 600 344918806 8568676 133.174 3.308 33.149301 -116.726767 +92071 53422 20052 45148259 861467 17.432 0.333 32.852358 -116.987842 +92075 12056 6163 9177835 1218537 3.544 0.470 32.997248 -117.260580 +92078 42906 17034 43252983 275348 16.700 0.106 33.115978 -117.180965 +92081 27404 10840 22933235 0 8.855 0.000 33.164374 -117.240270 +92082 19037 6711 318248357 195294 122.876 0.075 33.254381 -117.002555 +92083 36975 10982 14429010 0 5.571 0.000 33.197840 -117.248203 +92084 47654 15562 67781555 49687 26.171 0.019 33.219935 -117.202606 +92086 1573 846 570899193 1160392 220.425 0.448 33.327021 -116.659989 +92091 1048 620 1696988 791 0.655 0.000 33.016044 -117.243552 +92101 37095 25169 12212329 536108 4.715 0.207 32.724103 -117.170912 +92102 43267 14987 11988531 0 4.629 0.000 32.716221 -117.117058 +92103 31066 19080 9758123 0 3.768 0.000 32.747412 -117.166884 +92104 44414 22325 9814957 6598 3.790 0.003 32.741501 -117.127948 +92105 69813 21744 14426494 0 5.570 0.000 32.737826 -117.092669 +92106 19330 8322 14611356 1844354 5.641 0.712 32.710818 -117.237613 +92107 28651 14493 8148687 1191823 3.146 0.460 32.739055 -117.245404 +92108 18858 11601 11094650 307194 4.284 0.119 32.774046 -117.142454 +92109 45787 26216 19673788 11106128 7.596 4.288 32.786772 -117.234207 +92110 25341 11426 12568206 215678 4.853 0.083 32.765244 -117.200391 +92111 45096 17268 21910604 0 8.460 0.000 32.806479 -117.168864 +92113 56066 13196 13647793 28601 5.269 0.011 32.696526 -117.117827 +92114 65433 17930 21336471 0 8.238 0.000 32.707756 -117.055095 +92115 58560 22754 16846299 68328 6.504 0.026 32.765001 -117.073643 +92116 31680 17122 8980826 0 3.468 0.000 32.764968 -117.123151 +92117 51332 21466 22756330 0 8.786 0.000 32.824567 -117.199521 +92118 23575 9633 20073884 4053824 7.751 1.565 32.699234 -117.209642 +92119 23057 9853 17741735 648004 6.850 0.250 32.817888 -117.031956 +92120 26317 11411 17237652 391993 6.655 0.151 32.794714 -117.071764 +92121 4179 1752 31731008 74178 12.251 0.029 32.899592 -117.201203 +92122 43728 21058 41256867 20848 15.929 0.008 32.861727 -117.171224 +92123 26823 10760 21148247 0 8.165 0.000 32.806777 -117.134914 +92124 30443 11445 27147056 145785 10.482 0.056 32.823766 -117.092378 +92126 73343 23820 32816606 0 12.671 0.000 32.908406 -117.141293 +92127 39337 13748 57139789 1372583 22.062 0.530 33.011833 -117.132686 +92128 47490 21265 28920353 21497 11.166 0.008 32.999818 -117.071808 +92129 51536 17439 36446661 10997 14.072 0.004 32.966976 -117.126181 +92130 48940 18272 47751334 63468 18.437 0.025 32.945791 -117.214366 +92131 32787 11832 65044859 555605 25.114 0.215 32.886218 -117.083325 +92132 0 0 88677 0 0.034 0.000 32.713608 -117.172089 +92134 198 13 479583 0 0.185 0.000 32.724208 -117.146596 +92135 571 0 1238371 7823 0.478 0.003 32.697543 -117.192775 +92139 35125 10629 9392108 0 3.626 0.000 32.679875 -117.048900 +92140 3435 7 1654884 81282 0.639 0.031 32.739496 -117.197401 +92145 1449 407 8673008 0 3.349 0.000 32.930554 -117.008063 +92147 559 1 249799 0 0.096 0.000 32.724618 -117.219293 +92154 79708 21206 95724135 1979860 36.959 0.764 32.557011 -117.006117 +92155 550 0 576863 0 0.223 0.000 32.674984 -117.161726 +92173 29429 7870 13102503 532114 5.059 0.205 32.553631 -117.042502 +92201 61827 22207 58667257 0 22.652 0.000 33.710984 -116.204844 +92203 25605 11667 45348802 0 17.509 0.000 33.753960 -116.246488 +92210 4677 4830 33811381 482985 13.055 0.186 33.692193 -116.341230 +92211 24294 19948 38994202 356881 15.056 0.138 33.765401 -116.334205 +92220 31638 13061 321659435 0 124.193 0.000 33.948948 -116.832362 +92222 45 25 4094711 0 1.581 0.000 32.785826 -114.545506 +92223 43605 15916 112349093 0 43.378 0.000 33.948254 -116.987836 +92225 24310 8288 1551578846 9927397 599.068 3.833 33.736458 -114.687973 +92227 26234 8709 1400818602 36452229 540.859 14.074 32.990121 -115.358757 +92230 2550 938 39227350 391903 15.146 0.151 33.910412 -116.765723 +92231 39073 10826 147857937 0 57.088 0.000 32.687550 -115.541000 +92233 8099 1270 390193486 189996197 150.655 73.358 33.172881 -115.553769 +92234 51151 20958 40748005 665520 15.733 0.257 33.818256 -116.466743 +92236 41083 9968 56675825 0 21.883 0.000 33.686145 -116.172918 +92239 223 171 371315907 33472 143.366 0.013 33.762149 -115.466100 +92240 34722 14481 94744237 871171 36.581 0.336 33.951540 -116.520104 +92241 8803 6283 357735466 248358 138.122 0.096 33.835639 -116.292771 +92242 1539 1681 81078293 2981885 31.305 1.151 34.163216 -114.319121 +92243 48030 16217 285619001 163228 110.278 0.063 32.770275 -115.598602 +92249 7334 2006 55571652 0 21.456 0.000 32.725546 -115.472614 +92250 8285 2828 1074803683 11902 414.984 0.005 32.811001 -115.152865 +92251 21583 5572 516794503 59702 199.535 0.023 32.881449 -115.675459 +92252 9647 5343 232864515 0 89.909 0.000 34.168333 -116.288431 +92253 37262 23339 90562562 1144834 34.966 0.442 33.641767 -116.273943 +92254 12768 3093 120923509 6013858 46.689 2.322 33.543835 -115.993906 +92256 3588 2030 202140548 0 78.047 0.000 34.077059 -116.606626 +92257 2326 1832 1926668603 197567945 743.891 76.281 33.299478 -115.293842 +92258 861 483 27385636 0 10.574 0.000 33.915839 -116.559873 +92259 390 526 839509108 0 324.136 0.000 32.737701 -115.932182 +92260 31753 22799 73550542 390601 28.398 0.151 33.708076 -116.403644 +92262 26179 18306 94913381 108873 36.646 0.042 33.860925 -116.566176 +92264 19383 17140 135416980 585867 52.285 0.226 33.708590 -116.497620 +92266 234 293 844205809 1765023 325.950 0.681 33.344936 -114.930437 +92267 126 144 42219456 2963398 16.301 1.144 34.273755 -114.196525 +92268 574 482 209375318 0 80.840 0.000 34.222079 -116.564222 +92270 17220 14244 69080773 1008458 26.672 0.389 33.768611 -116.429973 +92273 1823 583 18008987 14423 6.953 0.006 32.817225 -115.700076 +92274 19801 5980 463283412 84806619 178.875 32.744 33.460511 -116.084589 +92275 1506 986 161556469 261593475 62.377 101.002 33.292095 -115.844166 +92276 7585 3552 75942945 0 29.322 0.000 33.822330 -116.364238 +92277 23911 11910 3612971124 53327 1394.976 0.021 34.141356 -115.621176 +92278 3846 141 2073334 0 0.801 0.000 34.229973 -116.055053 +92280 14 17 430175691 0 166.092 0.000 34.112956 -114.633391 +92281 2432 746 36940498 0 14.263 0.000 33.051757 -115.608751 +92282 1239 607 184159720 5497245 71.104 2.122 33.979630 -116.683221 +92283 3158 1649 1925975513 17992450 743.623 6.947 32.891548 -114.772944 +92284 25095 11943 285498917 0 110.232 0.000 34.185894 -116.432416 +92285 2632 2517 442938529 0 171.020 0.000 34.340222 -116.540435 +92301 32725 9470 441599761 0 170.503 0.000 34.585234 -117.453724 +92304 17 23 106622766 0 41.167 0.000 34.541483 -115.644609 +92305 535 629 258935678 35886 99.976 0.014 34.141671 -116.817981 +92307 37630 14125 439979786 454287 169.877 0.175 34.571446 -117.133076 +92308 39837 15613 241377618 1059268 93.196 0.409 34.425262 -117.161732 +92309 763 317 414966003 0 160.219 0.000 35.332155 -116.038586 +92310 8845 2487 7978142 0 3.080 0.000 35.261739 -116.690639 +92311 31894 13151 643300849 23114 248.380 0.009 34.980294 -116.964449 +92313 12025 4645 9031618 0 3.487 0.000 34.031011 -117.312929 +92314 10162 9153 79825161 44975 30.821 0.017 34.261092 -116.809496 +92315 5094 10066 32920520 552712 12.711 0.213 34.233757 -116.903843 +92316 30830 7527 28471052 14094 10.993 0.005 34.059722 -117.391040 +92320 7788 3654 27723531 0 10.704 0.000 33.990365 -117.052249 +92321 1522 1393 16848477 123656 6.505 0.048 34.253816 -117.150891 +92322 1257 886 7748282 0 2.992 0.000 34.254361 -117.326453 +92324 56505 17685 76425832 1855019 29.508 0.716 34.024368 -117.289351 +92325 9391 6309 26133660 362645 10.090 0.140 34.243482 -117.281304 +92327 632 369 73100942 623274 28.224 0.241 34.863585 -116.862059 +92328 445 331 1815795755 13085593 701.083 5.052 36.597877 -116.827387 +92332 65 93 2317385871 0 894.748 0.000 34.912426 -115.342092 +92333 472 992 10806936 0 4.173 0.000 34.270608 -116.949312 +92335 95397 24246 44875990 71381 17.327 0.028 34.085957 -117.465136 +92336 88419 23271 64412146 249599 24.870 0.096 34.147718 -117.464506 +92337 37849 9851 36072725 0 13.928 0.000 34.049810 -117.470612 +92338 12 5 625042067 0 241.330 0.000 34.782699 -116.190564 +92339 885 716 27378444 0 10.571 0.000 34.093661 -116.936222 +92341 410 1096 18302549 41419 7.067 0.016 34.236643 -117.062838 +92342 6379 3107 273172272 1917391 105.472 0.740 34.757047 -117.350142 +92344 20769 6421 99727163 0 38.505 0.000 34.391146 -117.405721 +92345 78715 25758 212434496 605256 82.021 0.234 34.374627 -117.300435 +92346 54923 17999 65812826 331345 25.410 0.128 34.127380 -117.183148 +92347 1692 790 379685444 947857 146.597 0.366 34.957406 -117.219606 +92352 8004 8544 24991240 3045996 9.649 1.176 34.259971 -117.199381 +92354 21559 8594 12642182 2372 4.881 0.001 34.051177 -117.248563 +92356 6455 3494 1019909691 0 393.789 0.000 34.510646 -116.896718 +92358 707 457 51241437 0 19.784 0.000 34.259272 -117.520971 +92359 8103 3058 43165372 1392355 16.666 0.538 34.083016 -117.073317 +92363 5321 3976 513292031 27995384 198.183 10.809 34.894366 -114.640335 +92364 90 100 1331683169 0 514.166 0.000 35.340420 -115.426224 +92365 2637 1393 447096417 2507999 172.625 0.968 34.900018 -116.655003 +92368 1113 474 72307932 1158123 27.918 0.447 34.649186 -117.320224 +92371 16763 6098 361914471 0 139.736 0.000 34.442625 -117.541815 +92372 6220 2571 72204588 7523 27.878 0.003 34.447894 -117.623946 +92373 33423 14940 105384364 663696 40.689 0.256 34.011935 -117.159696 +92374 40267 13867 48497162 7552 18.725 0.003 34.067213 -117.172000 +92376 81516 22370 35008397 323979 13.517 0.125 34.111605 -117.377406 +92377 19989 5524 26446720 640827 10.211 0.247 34.157868 -117.406066 +92378 183 80 2146364 0 0.829 0.000 34.226083 -117.225931 +92382 5268 4037 39045765 23184 15.076 0.009 34.205287 -117.117403 +92384 36 37 362659188 618 140.024 0.000 36.007706 -116.178478 +92385 313 328 21791945 0 8.414 0.000 34.214740 -117.192326 +92386 2270 3224 4965969 0 1.917 0.000 34.237229 -116.827695 +92389 156 162 356690499 177237 137.719 0.068 35.901353 -116.186370 +92391 2534 1674 6046158 0 2.334 0.000 34.237898 -117.234788 +92392 54858 17356 96672039 0 37.325 0.000 34.480247 -117.408186 +92394 33237 9051 70663589 577290 27.283 0.223 34.556111 -117.353632 +92395 42400 15854 44293390 1872305 17.102 0.723 34.501576 -117.291635 +92397 4894 2857 26705522 8669 10.311 0.003 34.374009 -117.628429 +92398 1379 679 72569713 433833 28.019 0.168 34.910795 -116.849376 +92399 52606 20048 137346775 27471 53.030 0.011 34.032284 -117.010508 +92401 1932 748 2239188 0 0.865 0.000 34.104794 -117.292150 +92404 58271 19384 73988231 37681 28.567 0.015 34.183506 -117.221583 +92405 28873 9604 12233017 0 4.723 0.000 34.144630 -117.301301 +92407 56689 16829 162888869 1852288 62.892 0.715 34.212216 -117.381097 +92408 15271 4324 27507391 430049 10.621 0.166 34.083458 -117.270016 +92410 49410 14224 21289559 64510 8.220 0.025 34.106922 -117.297553 +92411 26214 7127 10597441 316487 4.092 0.122 34.122501 -117.320138 +92501 20970 7287 14766127 702133 5.701 0.271 33.995040 -117.373184 +92503 84519 24754 77362953 10935461 29.870 4.222 33.882579 -117.442303 +92504 53778 17788 60620256 147987 23.406 0.057 33.903134 -117.398044 +92505 47672 14573 31661219 409596 12.224 0.158 33.936193 -117.493881 +92506 44001 16248 41957182 0 16.200 0.000 33.934335 -117.367319 +92507 58002 19834 52337394 23889 20.208 0.009 33.970847 -117.325120 +92508 35000 10351 27793443 0 10.731 0.000 33.891132 -117.326750 +92509 75196 20512 80529327 1307250 31.093 0.505 34.003028 -117.442161 +92518 1162 717 30849224 444 11.911 0.000 33.889103 -117.278368 +92530 50216 16205 139541514 14352438 53.877 5.542 33.650799 -117.372457 +92532 18644 6049 46832969 0 18.082 0.000 33.692675 -117.302951 +92536 3810 2296 323128701 1276658 124.761 0.493 33.492391 -116.837955 +92539 4734 2442 340147198 227440 131.332 0.088 33.527867 -116.647620 +92543 33555 14994 45758379 0 17.667 0.000 33.667301 -116.963506 +92544 44734 17221 351455494 592810 135.698 0.229 33.646625 -116.882748 +92545 39457 17984 83213374 0 32.129 0.000 33.729853 -117.034060 +92548 6643 2518 25456124 0 9.829 0.000 33.758663 -117.109484 +92549 3926 4157 71185899 26091 27.485 0.010 33.768565 -116.753505 +92551 30815 8114 15210033 264654 5.873 0.102 33.882740 -117.224878 +92553 73722 20376 26238877 0 10.131 0.000 33.923386 -117.244825 +92555 39076 11763 208971685 8083681 80.684 3.121 33.890645 -117.112789 +92557 50320 15510 48702642 140657 18.804 0.054 33.972160 -117.258448 +92561 1661 1275 409676848 1396907 158.177 0.539 33.637201 -116.627212 +92562 62079 22069 283317742 68789 109.390 0.027 33.548299 -117.344739 +92563 53892 17192 52676576 24987 20.339 0.010 33.581045 -117.147190 +92567 9459 2920 76382832 398252 29.492 0.154 33.810743 -117.105415 +92570 53697 14903 252025051 98670 97.307 0.038 33.787292 -117.320673 +92571 52516 13526 58425208 724304 22.558 0.280 33.829310 -117.205481 +92582 15649 4661 47921059 772699 18.502 0.298 33.806708 -117.020069 +92583 30236 11044 73685013 1542785 28.450 0.596 33.797360 -116.934097 +92584 43400 14553 77170383 365369 29.796 0.141 33.658592 -117.173618 +92585 17797 5944 52585311 0 20.303 0.000 33.746707 -117.172142 +92586 19815 10638 18290589 0 7.062 0.000 33.708976 -117.198846 +92587 16675 6499 20467790 1928500 7.903 0.745 33.692805 -117.250024 +92590 3660 1464 138431957 75677 53.449 0.029 33.480536 -117.227005 +92591 38272 13631 42661081 0 16.472 0.000 33.535276 -117.104785 +92592 72492 24146 251822673 3280723 97.229 1.267 33.511218 -117.042388 +92595 29851 10020 54537406 0 21.057 0.000 33.617845 -117.259304 +92596 23172 7131 158455663 77886 61.180 0.030 33.665531 -117.050379 +92602 22871 8764 27046598 142637 10.443 0.055 33.757245 -117.750414 +92603 20184 7937 34324480 52645 13.253 0.020 33.623874 -117.780978 +92604 26853 10094 8737517 141530 3.374 0.055 33.688584 -117.788058 +92606 21495 8021 12556550 24674 4.848 0.010 33.701704 -117.815900 +92610 11248 3882 25392689 0 9.804 0.000 33.696122 -117.675940 +92612 27522 13044 15748381 341372 6.080 0.132 33.658440 -117.826009 +92614 24748 9973 11448309 119813 4.420 0.046 33.680302 -117.833295 +92617 14044 3713 6226856 0 2.404 0.000 33.642512 -117.841688 +92618 16366 8077 54826663 101067 21.169 0.039 33.667145 -117.732135 +92620 38486 14293 18235128 95195 7.041 0.037 33.712629 -117.751372 +92624 7248 3243 3557287 3140852 1.373 1.213 33.451469 -117.659056 +92625 12478 6722 6612182 867550 2.553 0.335 33.601966 -117.864253 +92626 49341 19641 24922545 244935 9.623 0.095 33.678399 -117.911715 +92627 61510 22839 16443731 113493 6.349 0.044 33.647763 -117.919761 +92629 25756 12521 13192708 2877680 5.094 1.111 33.475120 -117.705675 +92630 59182 20785 24667892 223202 9.524 0.086 33.645736 -117.685503 +92637 16012 12851 9075455 31071 3.504 0.012 33.612925 -117.731443 +92646 55224 21947 20839398 2062796 8.046 0.796 33.662050 -117.968459 +92647 57245 20625 20070489 46609 7.749 0.018 33.723228 -118.008692 +92648 45317 20863 20791068 5188261 8.027 2.003 33.679010 -118.014603 +92649 32463 14697 19811591 2945368 7.649 1.137 33.725240 -118.051579 +92651 23881 13462 50409025 7205540 19.463 2.782 33.570925 -117.773037 +92653 29291 10362 17343655 63581 6.696 0.025 33.591304 -117.697512 +92655 8337 2477 1633379 0 0.631 0.000 33.745101 -117.984872 +92656 49046 19711 21310173 0 8.228 0.000 33.576205 -117.730364 +92657 9741 4159 19093774 1768940 7.372 0.683 33.595088 -117.829038 +92660 34797 16354 25272033 2813393 9.758 1.086 33.634626 -117.874882 +92661 3744 2609 1686746 3259958 0.651 1.259 33.601984 -117.913001 +92662 2756 2111 539407 519219 0.208 0.200 33.605086 -117.892319 +92663 21649 12233 8551219 3344976 3.302 1.292 33.623208 -117.933903 +92672 34464 15708 20615023 2341910 7.960 0.904 33.423620 -117.606843 +92673 29309 10246 30253137 21836 11.681 0.008 33.467372 -117.613509 +92675 34731 12005 89237050 977372 34.455 0.377 33.501773 -117.608674 +92676 1945 861 171828234 1885725 66.343 0.728 33.752512 -117.612607 +92677 63297 25554 43246467 133550 16.698 0.052 33.529047 -117.701175 +92678 494 244 39043264 5559 15.075 0.002 33.680226 -117.526144 +92679 32611 10751 58572933 63959 22.615 0.025 33.606695 -117.604360 +92683 89747 27713 25897934 0 9.999 0.000 33.752450 -117.993904 +92688 43792 16120 28225740 103580 10.898 0.040 33.619672 -117.612087 +92691 47582 16702 22802974 118810 8.804 0.046 33.611945 -117.665867 +92692 47222 18109 25517069 854744 9.852 0.330 33.606497 -117.643112 +92694 21944 6933 24593751 0 9.496 0.000 33.547236 -117.623760 +92701 53908 13175 8469146 0 3.270 0.000 33.748220 -117.858473 +92703 65445 13177 10569906 129315 4.081 0.050 33.747615 -117.906761 +92704 88123 20468 19149819 368087 7.394 0.142 33.721131 -117.905110 +92705 44706 15095 29931335 0 11.557 0.000 33.765639 -117.790075 +92706 36457 9687 8826364 309767 3.408 0.120 33.765301 -117.881976 +92707 59492 13564 13022655 17402 5.028 0.007 33.709935 -117.870431 +92708 56004 19391 23468328 231697 9.061 0.089 33.710582 -117.951129 +92780 57741 19516 18109171 0 6.992 0.000 33.734010 -117.819157 +92782 23032 8881 8710317 0 3.363 0.000 33.739689 -117.784710 +92801 62068 18604 16284681 43592 6.288 0.017 33.844983 -117.952151 +92802 42709 12321 11771914 0 4.545 0.000 33.808271 -117.923655 +92804 85914 25717 18142648 0 7.005 0.000 33.818251 -117.974997 +92805 70401 18804 16327878 45417 6.304 0.018 33.830209 -117.906109 +92806 37173 12844 20014403 876258 7.728 0.338 33.837960 -117.870494 +92807 36171 12893 27750531 1627252 10.715 0.628 33.848733 -117.788357 +92808 20039 7538 13163092 0 5.082 0.000 33.856495 -117.740210 +92821 35533 13551 27296225 46764 10.539 0.018 33.927561 -117.887086 +92823 3613 1182 28155266 25233 10.871 0.010 33.928202 -117.809353 +92831 34204 13409 15476120 0 5.975 0.000 33.879767 -117.896340 +92832 24752 8460 7288246 0 2.814 0.000 33.868649 -117.929055 +92833 51767 16562 18919733 0 7.305 0.000 33.879309 -117.961743 +92835 24010 9140 15606410 28063 6.026 0.011 33.901886 -117.916639 +92840 54083 15338 13473180 45890 5.202 0.018 33.787165 -117.931889 +92841 32845 9451 11606226 0 4.481 0.000 33.786846 -117.982020 +92843 45214 11265 10117601 0 3.906 0.000 33.763928 -117.931380 +92844 24307 6749 5506328 0 2.126 0.000 33.765480 -117.969509 +92845 16333 5751 5668299 0 2.189 0.000 33.783064 -118.026268 +92860 27198 7360 36207819 794847 13.980 0.307 33.925519 -117.551958 +92861 5781 2006 5506878 0 2.126 0.000 33.817660 -117.810013 +92865 19704 6659 9479343 380369 3.660 0.147 33.827031 -117.851196 +92866 14885 6048 5003355 0 1.932 0.000 33.784615 -117.844774 +92867 44515 13628 20560190 129211 7.938 0.050 33.800980 -117.843772 +92868 25404 8125 8374032 262642 3.233 0.101 33.788145 -117.876550 +92869 37184 11995 24068243 493491 9.293 0.191 33.808485 -117.791041 +92870 52033 17493 17590269 37381 6.792 0.014 33.881158 -117.854783 +92879 46745 14380 26018525 25335 10.046 0.010 33.882879 -117.526900 +92880 58763 16355 63940920 1745964 24.688 0.674 33.918043 -117.617809 +92881 30991 9311 71691421 588096 27.680 0.227 33.827409 -117.524091 +92882 67917 20452 66692923 34712 25.750 0.013 33.840451 -117.601961 +92883 29301 9738 144241811 157320 55.692 0.061 33.752748 -117.474266 +92886 46564 16255 38143710 71018 14.727 0.027 33.896339 -117.796416 +92887 20006 6926 23281753 1453058 8.989 0.561 33.885514 -117.730164 +93001 32990 14290 531955559 162152230 205.389 62.607 34.037342 -119.800790 +93003 50474 20116 53297200 256855 20.578 0.099 34.283668 -119.223196 +93004 29149 10866 17783920 1012658 6.866 0.391 34.278679 -119.165615 +93010 42901 16499 57342588 39631 22.140 0.015 34.227855 -119.079869 +93012 34617 13559 135616852 472866 52.362 0.183 34.198821 -118.988163 +93013 16091 6856 147483369 856578 56.944 0.331 34.441398 -119.513163 +93015 17334 5147 198297439 1184911 76.563 0.457 34.404104 -118.897776 +93021 36422 11393 122331194 1046520 47.232 0.404 34.297029 -118.898546 +93022 6106 2369 11965557 20450 4.620 0.008 34.407780 -119.306554 +93023 20589 9096 698122037 2711953 269.546 1.047 34.530200 -119.310134 +93030 59372 15395 35912814 0 13.866 0.000 34.205247 -119.174092 +93033 82728 17696 75962345 341114 29.329 0.132 34.150212 -119.127729 +93035 27732 11848 10643950 2063651 4.110 0.797 34.181971 -119.224985 +93036 41691 12185 41146263 2193143 15.887 0.847 34.236999 -119.184377 +93040 2031 575 182830429 5050754 70.591 1.950 34.473883 -118.797181 +93041 23641 8824 29109041 4427450 11.239 1.709 34.106896 -119.099535 +93042 56 1 58634149 8791833 22.639 3.395 33.255655 -119.503588 +93043 333 17 1247670 0 0.482 0.000 34.170854 -119.202409 +93060 32811 9848 308235662 2868922 119.010 1.108 34.402343 -119.094824 +93063 54366 19234 85340849 373941 32.950 0.144 34.308730 -118.687222 +93064 40 18 14687257 0 5.671 0.000 34.247556 -118.700940 +93065 72508 24282 81956189 2514202 31.643 0.971 34.258272 -118.774661 +93066 3102 1086 107679728 996 41.575 0.000 34.297628 -119.014627 +93067 895 507 1526376 0 0.589 0.000 34.421964 -119.593483 +93101 31683 13317 8883521 0 3.430 0.000 34.418979 -119.709166 +93103 20249 7669 13567127 350659 5.238 0.135 34.438786 -119.678826 +93105 24815 11610 251547025 6709815 97.123 2.591 34.534881 -119.797628 +93108 11112 5398 54910962 282398 21.201 0.109 34.448024 -119.616984 +93109 10858 4888 8760774 1009635 3.383 0.390 34.406256 -119.726936 +93110 16829 6679 27313594 317380 10.546 0.123 34.449656 -119.761971 +93111 17370 6570 21004190 329936 8.110 0.127 34.448902 -119.804023 +93117 53217 16470 440495381 4992702 170.076 1.928 34.479077 -120.083673 +93201 1348 363 200498836 28350 77.413 0.011 35.862574 -119.510940 +93202 4143 1184 2008663 0 0.776 0.000 36.313344 -119.708452 +93203 20938 5013 556194489 256274 214.748 0.099 35.112617 -118.832292 +93204 15529 2421 154419550 0 59.622 0.000 35.889811 -120.068590 +93205 2113 1280 149169002 54817 57.594 0.021 35.518295 -118.430032 +93206 2300 656 387297231 564556 149.536 0.218 35.437302 -119.477735 +93207 263 423 150386334 0 58.064 0.000 35.889831 -118.630592 +93208 104 527 152694931 0 58.956 0.000 36.056587 -118.568462 +93210 19504 4836 1998867967 768857 771.767 0.297 36.216313 -120.424244 +93212 26079 4355 274749153 0 106.081 0.000 36.042151 -119.527700 +93215 55659 11410 367487413 1779052 141.888 0.687 35.779507 -119.200825 +93218 994 281 166925891 0 64.450 0.000 35.860883 -119.036140 +93219 10194 2534 252029668 266703 97.309 0.103 35.873666 -119.281551 +93220 211 69 68285734 1428 26.365 0.001 35.403611 -118.756525 +93221 14945 5282 340975687 0 131.651 0.000 36.295014 -119.026031 +93222 2099 2033 74455074 16918 28.747 0.007 34.842272 -119.203680 +93223 10604 2733 6399814 0 2.471 0.000 36.304539 -119.204896 +93224 451 198 57916235 0 22.362 0.000 35.228199 -119.569304 +93225 5077 2658 458972389 120054 177.210 0.046 34.768537 -119.030293 +93226 282 182 242441859 228176 93.607 0.088 35.735694 -118.738483 +93230 65264 22331 678071973 2468994 261.805 0.953 36.292230 -119.622676 +93234 6987 1693 207601865 0 80.156 0.000 36.191269 -120.090096 +93235 4559 1237 7462347 0 2.881 0.000 36.389827 -119.219896 +93238 1490 1177 327836358 11052512 126.578 4.267 35.729097 -118.391705 +93239 1688 443 165572238 584831 63.928 0.226 36.047190 -119.990217 +93240 6056 3574 193725770 15958516 74.798 6.162 35.617518 -118.451991 +93241 17489 4202 10682633 11548 4.125 0.004 35.254701 -118.912678 +93242 3468 1058 106379654 0 41.073 0.000 36.442073 -119.727723 +93243 1699 713 389376655 7423098 150.339 2.866 34.772700 -118.791975 +93244 534 250 176196991 176387 68.030 0.068 36.462671 -118.997291 +93245 37412 12232 305247504 200587 117.857 0.077 36.292270 -119.829463 +93247 17423 4870 196035524 23777 75.690 0.009 36.206269 -119.071075 +93249 2739 560 577893652 1373341 223.126 0.530 35.619272 -119.888623 +93250 13522 2924 219045841 42672 84.574 0.016 35.665082 -119.197958 +93251 270 99 346577918 0 133.814 0.000 35.335636 -119.758248 +93252 4176 876 1759948921 16326839 679.520 6.304 34.709947 -119.243479 +93254 811 402 353715158 2475976 136.570 0.956 34.966833 -119.810428 +93255 614 409 560731083 118925 216.499 0.046 35.676978 -118.101378 +93256 5753 1573 206901726 56590 79.885 0.022 35.960636 -119.312992 +93257 75004 22985 1152544483 10828102 445.000 4.181 35.988087 -118.860221 +93258 2046 484 1120563 0 0.433 0.000 36.054380 -119.150397 +93260 200 490 85266177 0 32.921 0.000 35.817247 -118.669124 +93261 3099 666 21990002 0 8.490 0.000 35.808535 -119.128083 +93262 63 33 232048489 841583 89.594 0.325 36.615495 -118.697481 +93263 19582 5305 234665277 0 90.605 0.000 35.492805 -119.286861 +93265 3699 2068 968901189 443206 374.095 0.171 36.245926 -118.693138 +93266 1587 436 144335293 0 55.728 0.000 36.145394 -119.867288 +93267 6237 1756 194698069 33920 75.173 0.013 36.151180 -119.049222 +93268 16897 6040 108640459 0 41.946 0.000 35.162393 -119.425116 +93270 5837 1677 160064387 0 61.801 0.000 35.952426 -119.072843 +93271 2276 1464 983444922 8666683 379.710 3.346 36.469541 -118.800833 +93272 3583 979 216931322 13713 83.758 0.005 36.047414 -119.344304 +93274 69721 22004 554430884 1488928 214.067 0.575 36.178091 -119.370752 +93276 161 73 1774193 0 0.685 0.000 35.299176 -119.358368 +93277 50607 19634 103536763 292710 39.976 0.113 36.303793 -119.375646 +93280 27152 6012 834129119 98499 322.059 0.038 35.652242 -119.446400 +93283 2040 1303 529101795 1498808 204.287 0.579 35.592029 -118.297851 +93285 2536 2561 122156204 7088814 47.165 2.737 35.715239 -118.507202 +93286 9548 2896 221031624 1554234 85.341 0.600 36.464635 -119.094348 +93287 119 54 144693990 0 55.867 0.000 35.757886 -118.988161 +93291 52849 16362 219218023 368838 84.641 0.142 36.391777 -119.372842 +93292 39032 13622 281391266 118577 108.646 0.046 36.375590 -119.211689 +93301 12248 5707 10828653 344726 4.181 0.133 35.384336 -119.020562 +93304 48731 16480 19670450 0 7.595 0.000 35.339702 -119.023451 +93305 37601 11964 15369431 0 5.934 0.000 35.389749 -118.985186 +93306 64587 22210 228103462 1367139 88.071 0.528 35.468183 -118.779649 +93307 82658 23411 359744699 749094 138.898 0.289 35.245120 -118.941100 +93308 52447 20931 818459147 1790831 316.009 0.691 35.621087 -118.789677 +93309 58409 23542 27570004 803546 10.645 0.310 35.342891 -119.064803 +93311 40829 14414 438967246 1663418 169.486 0.642 35.192404 -119.175866 +93312 56741 19494 39408937 0 15.216 0.000 35.393478 -119.120460 +93313 43553 12990 258154248 0 99.674 0.000 35.163190 -119.046322 +93314 22393 7515 256237826 1050731 98.934 0.406 35.393866 -119.244846 +93401 28033 13378 181154941 47823 69.944 0.018 35.235750 -120.615973 +93402 14318 6506 75349656 10225552 29.093 3.948 35.295232 -120.835464 +93405 35440 9346 227263313 470947 87.747 0.182 35.296964 -120.733137 +93410 0 0 216393 0 0.084 0.000 35.301200 -120.660937 +93420 28413 12444 485264761 2957534 187.362 1.142 35.176005 -120.476742 +93422 31375 12744 154910478 2064860 59.811 0.797 35.463837 -120.693236 +93424 1261 919 6819126 1595539 2.633 0.616 35.185922 -120.731954 +93426 1401 1260 549711127 33902686 212.245 13.090 35.848621 -120.938911 +93427 5505 2141 144984684 47528 55.979 0.018 34.610436 -120.219523 +93428 6314 4196 199391527 5071263 76.986 1.958 35.584973 -121.041499 +93429 154 69 19273597 60573 7.442 0.023 34.866032 -120.536546 +93430 2972 2537 187111444 12013176 72.244 4.638 35.484971 -120.944413 +93432 1384 645 233270207 700656 90.066 0.271 35.481240 -120.477579 +93433 13162 5749 5603498 126994 2.164 0.049 35.120888 -120.619664 +93434 7110 1900 85505781 1454762 33.014 0.562 34.919206 -120.605130 +93436 54017 18989 567006773 2069344 218.923 0.799 34.601055 -120.382917 +93437 3338 1035 100488726 274324 38.799 0.106 34.737964 -120.543739 +93440 2058 743 104117618 42786 40.200 0.017 34.712216 -120.230146 +93441 1530 574 142144460 143135 54.882 0.055 34.788159 -119.989127 +93442 10789 6596 116165760 3881228 44.852 1.499 35.401939 -120.799356 +93444 19244 7201 178359533 2673616 68.865 1.032 35.037198 -120.504593 +93445 7173 3036 43522002 3468569 16.804 1.339 35.044405 -120.620201 +93446 43714 18374 1080179738 18245089 417.060 7.044 35.663575 -120.729679 +93449 7657 5587 25882303 1839767 9.993 0.710 35.165673 -120.655845 +93450 740 245 439657056 8938281 169.753 3.451 36.085435 -120.818725 +93451 3779 1462 1321354826 3992370 510.178 1.541 35.886767 -120.608661 +93452 524 345 295623512 17829298 114.141 6.884 35.746484 -121.223355 +93453 2899 1392 1613002286 4002708 622.784 1.545 35.303926 -120.256567 +93454 36448 12393 1105927257 9836410 427.001 3.798 34.943523 -120.256729 +93455 41684 15675 279983178 936138 108.102 0.361 34.831792 -120.433509 +93458 55431 13026 70894975 1391025 27.373 0.537 34.959340 -120.490081 +93460 5255 2394 319600065 2729254 123.398 1.054 34.653255 -120.007238 +93461 1623 569 917505721 2587711 354.251 0.999 35.652911 -120.266428 +93463 7646 3589 78199941 416145 30.193 0.161 34.624399 -120.137875 +93465 9153 3532 227097616 896792 87.683 0.346 35.538809 -120.739893 +93501 5467 2418 424305072 268020 163.825 0.103 35.067111 -118.184941 +93505 14038 5165 202551905 223199 78.206 0.086 35.163740 -117.886527 +93510 7993 2954 186232826 85903 71.905 0.033 34.461090 -118.220854 +93512 277 154 327426701 730154 126.420 0.282 37.892565 -118.555074 +93513 1763 874 1666604665 7404601 643.480 2.859 37.131989 -118.155880 +93514 13857 6663 2889792721 12107168 1115.755 4.675 37.491769 -118.389367 +93516 2299 1233 49946982 9589 19.285 0.004 35.002282 -117.629941 +93517 670 686 1536338281 16407187 593.184 6.335 38.278853 -119.380803 +93518 1146 844 772164845 215880 298.135 0.083 35.383054 -118.467651 +93519 101 86 203937660 1434758 78.741 0.554 35.294349 -117.925785 +93522 48 49 119667688 94748 46.204 0.037 36.316188 -117.591286 +93523 3074 1436 252296184 1496399 97.412 0.578 34.960825 -117.835384 +93524 229 0 5312089 0 2.051 0.000 34.931987 -117.907127 +93526 719 473 354621290 887252 136.920 0.343 36.823846 -118.281259 +93527 2387 1349 1412346246 475023 545.310 0.183 36.119934 -118.176768 +93528 172 139 9839019 0 3.799 0.000 35.371604 -117.643321 +93529 633 825 79303871 6825743 30.619 2.635 37.815507 -119.095647 +93530 47 46 2362111 0 0.912 0.000 36.475830 -117.860116 +93531 509 261 88879339 20149 34.317 0.008 35.221906 -118.582566 +93532 2932 1291 294415332 1045555 113.674 0.404 34.689848 -118.533689 +93534 39341 16066 45994950 1047049 17.759 0.404 34.713292 -118.152920 +93535 72046 22946 667949042 245336 257.897 0.095 34.713656 -117.864660 +93536 70918 22620 628570647 2278753 242.692 0.880 34.747390 -118.369249 +93541 449 378 693505539 162204473 267.764 62.627 37.988074 -119.114386 +93543 13033 3986 153742038 460606 59.360 0.178 34.481108 -117.982006 +93544 1259 762 283741899 548518 109.553 0.212 34.495537 -117.756645 +93545 2082 1055 276654075 777291 106.817 0.300 36.556387 -118.054221 +93546 9567 10470 446182420 5780935 172.272 2.232 37.548771 -118.839880 +93549 344 217 868880003 9773714 335.476 3.774 36.211640 -117.947995 +93550 74929 22961 508068932 2287698 196.167 0.883 34.408383 -118.123597 +93551 50798 17144 189434904 490845 73.141 0.190 34.604110 -118.239005 +93552 38158 10422 125624886 638939 48.504 0.247 34.570867 -118.023744 +93553 2138 933 224009768 266113 86.491 0.103 34.407313 -117.911825 +93554 72 103 191856647 135465 74.076 0.052 35.413944 -117.764333 +93555 32560 14147 211253737 1200878 81.566 0.464 35.606509 -117.683472 +93558 125 107 9503246 0 3.669 0.000 35.347928 -117.621393 +93560 18910 7367 413238776 665524 159.552 0.257 34.866894 -118.339832 +93561 34630 12824 684141522 743123 264.149 0.287 35.118772 -118.493811 +93562 1818 1008 102433332 647372 39.550 0.250 35.748370 -117.384948 +93563 388 146 104092212 91116 40.190 0.035 34.402521 -117.766066 +93591 7285 2235 213558349 281624 82.455 0.109 34.594397 -117.813682 +93592 64 44 388868679 20906730 150.143 8.072 35.852815 -117.224709 +93601 1909 884 115615217 44016 44.639 0.017 37.393471 -119.741037 +93602 3862 1878 371872184 1505381 143.581 0.581 37.028835 -119.316654 +93603 222 218 112705936 86809 43.516 0.034 36.622507 -118.957187 +93604 674 1279 364396911 2463907 140.694 0.951 37.349585 -119.425782 +93605 175 117 1078646 0 0.416 0.000 37.203158 -119.249243 +93606 1217 266 388723 0 0.150 0.000 36.803208 -120.018550 +93608 1114 302 282247651 874109 108.976 0.337 36.493861 -120.361622 +93609 5640 1584 159254587 0 61.489 0.000 36.526601 -119.864081 +93610 23833 5809 705028898 2372348 272.213 0.916 37.098303 -120.281214 +93611 45614 15825 28993835 0 11.195 0.000 36.825296 -119.680190 +93612 35351 14584 17132668 0 6.615 0.000 36.814863 -119.710595 +93614 11661 5329 297469148 699570 114.853 0.270 37.210039 -119.749852 +93615 6042 1471 43328922 0 16.729 0.000 36.503322 -119.286328 +93616 2627 709 35932441 0 13.874 0.000 36.655353 -119.593861 +93618 28262 7808 172635698 0 66.655 0.000 36.521012 -119.389446 +93619 28965 10079 462100385 3442039 178.418 1.329 36.917573 -119.593481 +93620 9591 3296 452385420 826779 174.667 0.319 37.018947 -120.626723 +93621 464 213 170897022 10205598 65.984 3.940 36.789242 -119.140384 +93622 9581 2782 918158449 5462906 354.503 2.109 36.814503 -120.575240 +93623 69 170 79826695 32596 30.821 0.013 37.494819 -119.644344 +93624 1134 295 290240690 366566 112.063 0.142 36.378434 -120.116591 +93625 7313 2416 64025289 0 24.720 0.000 36.624538 -119.671874 +93626 1359 613 257886516 15739361 99.571 6.077 37.046782 -119.687200 +93627 123 29 92352753 0 35.658 0.000 36.474404 -120.061497 +93628 327 403 92921560 348021 35.877 0.134 36.779832 -118.938691 +93630 19162 5642 403278744 2911702 155.707 1.124 36.727418 -120.123526 +93631 15941 5587 207801286 806275 80.233 0.311 36.478239 -119.521370 +93633 25 256 54295038 0 20.963 0.000 36.822163 -118.649328 +93634 33 622 3068390690 58863302 1184.712 22.727 37.223000 -119.001021 +93635 38776 12546 671300236 22089011 259.190 8.529 37.068051 -120.843606 +93636 11908 4186 506600467 2921247 195.600 1.128 36.984885 -119.873914 +93637 37743 12241 700616337 148171 270.509 0.057 36.918079 -120.185933 +93638 49068 12038 245587585 1575684 94.822 0.608 37.040928 -120.031309 +93640 11880 2797 292929642 3681621 113.101 1.421 36.672683 -120.446521 +93641 595 438 82690991 377389 31.927 0.146 36.696759 -119.024051 +93643 3171 1778 322495957 1279946 124.516 0.494 37.224696 -119.470738 +93644 8637 4431 240257914 19415 92.764 0.007 37.377787 -119.632385 +93645 318 149 138498803 93131 53.475 0.036 37.173950 -119.641030 +93646 10557 2671 110351230 0 42.607 0.000 36.644737 -119.289181 +93647 11874 2928 276774369 28115 106.863 0.011 36.600760 -119.175485 +93648 15719 3875 59395881 0 22.933 0.000 36.620634 -119.520731 +93650 4055 1458 1834447 0 0.708 0.000 36.840813 -119.799812 +93651 1674 673 74408723 69502 28.729 0.027 36.999336 -119.518794 +93652 415 111 5346999 0 2.064 0.000 36.595012 -119.904577 +93653 1229 570 614771703 9481617 237.365 3.661 37.248335 -119.944935 +93654 29776 8832 255245837 1475577 98.551 0.570 36.658709 -119.401274 +93656 6313 1840 284522417 30840 109.855 0.012 36.450225 -119.934478 +93657 34999 11444 551883337 12366122 213.083 4.775 36.817791 -119.457602 +93660 4675 1130 210354182 1334971 81.218 0.515 36.585446 -120.173897 +93662 30237 8979 204057392 550687 78.787 0.213 36.536573 -119.638651 +93664 585 2295 496537450 8850044 191.714 3.417 37.129321 -119.219540 +93665 472 144 2178983 0 0.841 0.000 36.960108 -120.648060 +93666 692 207 968551 0 0.374 0.000 36.547067 -119.335641 +93667 2604 1060 288369123 2295062 111.340 0.886 36.955940 -119.335294 +93668 1118 361 87172781 191707 33.658 0.074 36.650275 -120.284085 +93669 295 261 17625483 2005323 6.805 0.774 37.290563 -119.548406 +93673 713 184 2154155 0 0.832 0.000 36.452697 -119.482343 +93675 3721 1678 204126337 142811 78.814 0.055 36.724723 -119.192779 +93701 12529 3828 3921893 0 1.514 0.000 36.749660 -119.787684 +93702 48607 12806 13633816 0 5.264 0.000 36.739193 -119.753932 +93703 31868 10249 12244599 0 4.728 0.000 36.768860 -119.762393 +93704 27156 11678 14195500 0 5.481 0.000 36.799054 -119.801608 +93705 36703 13085 12628103 0 4.876 0.000 36.786671 -119.828335 +93706 41087 11392 423558745 0 163.537 0.000 36.652041 -119.906542 +93710 30202 12181 18158800 0 7.011 0.000 36.822348 -119.760241 +93711 36731 16376 29291416 369266 11.309 0.143 36.834289 -119.833350 +93720 45191 18236 25791046 119729 9.958 0.046 36.862209 -119.760793 +93721 6959 1923 5309617 0 2.050 0.000 36.732892 -119.783739 +93722 76448 25246 50733010 175015 19.588 0.068 36.799361 -119.874794 +93723 9547 3119 110550767 64577 42.684 0.025 36.793477 -119.956818 +93725 24979 6974 169473946 162857 65.434 0.063 36.627211 -119.731888 +93726 40705 15033 16619268 0 6.417 0.000 36.793661 -119.761461 +93727 71820 23644 84197155 0 32.509 0.000 36.751519 -119.680602 +93728 15743 6366 7924791 0 3.060 0.000 36.757293 -119.818483 +93730 9941 3869 19620322 1741210 7.575 0.672 36.900387 -119.754143 +93901 26863 10603 37833782 74674 14.608 0.029 36.641520 -121.622188 +93905 61087 13157 24104021 95622 9.307 0.037 36.682351 -121.605904 +93906 59461 17788 33858896 47049 13.073 0.018 36.722713 -121.633650 +93907 21726 7512 139772769 783165 53.967 0.302 36.769389 -121.667532 +93908 13043 4854 555777572 6598794 214.587 2.548 36.651745 -121.599444 +93920 1369 864 955395979 20976571 368.880 8.099 36.092975 -121.549826 +93921 3281 3139 2328597 420803 0.899 0.162 36.553175 -121.923960 +93923 12073 7476 334047495 9948641 128.976 3.841 36.448672 -121.849502 +93924 6279 3094 491762200 1100655 189.870 0.425 36.414080 -121.637712 +93925 1671 405 141038288 820221 54.455 0.317 36.588003 -121.398908 +93926 8726 2153 153337781 284737 59.204 0.110 36.525880 -121.396719 +93927 17547 4347 683438614 2825645 263.877 1.091 36.248708 -121.386617 +93928 506 82 49472760 48695 19.102 0.019 36.038868 -121.244009 +93930 15866 4260 932571919 11870573 360.068 4.583 36.205060 -121.010363 +93932 592 292 260851306 550285 100.715 0.212 35.989792 -121.055933 +93933 22406 8409 33300089 1724553 12.857 0.666 36.686845 -121.786887 +93940 31615 15281 53196768 1832680 20.539 0.708 36.574850 -121.840727 +93943 6 5 439354 0 0.170 0.000 36.597004 -121.874136 +93950 15046 8171 7421665 1628304 2.866 0.629 36.621181 -121.925179 +93953 4509 2809 20823997 3083824 8.040 1.191 36.585219 -121.945282 +93954 302 93 94936001 2858 36.655 0.001 36.133362 -120.928512 +93955 33359 11017 73140141 1586807 28.240 0.613 36.614410 -121.786901 +93960 27080 4359 528420486 13213293 204.024 5.102 36.389618 -121.343146 +93962 673 246 316378 0 0.122 0.000 36.624716 -121.646487 +94002 25992 11108 14668197 22417 5.663 0.009 37.514352 -122.298896 +94005 4282 1934 11384384 447655 4.396 0.173 37.688826 -122.408935 +94010 40737 17348 30654438 226706 11.836 0.088 37.570280 -122.365778 +94014 47014 14284 16334952 0 6.307 0.000 37.690868 -122.447437 +94015 60927 20678 14921282 0 5.761 0.000 37.681267 -122.480591 +94019 18424 7096 136231572 1458176 52.599 0.563 37.469453 -122.411841 +94020 1559 849 144436917 84078 55.767 0.032 37.274612 -122.232420 +94021 192 115 11740454 0 4.533 0.000 37.270838 -122.280738 +94022 18500 7479 45294442 0 17.488 0.000 37.357472 -122.144416 +94024 22385 8178 18910937 0 7.302 0.000 37.352252 -122.094337 +94025 40526 16271 30440620 3134 11.753 0.001 37.457524 -122.176542 +94027 7089 2616 13461324 82320 5.197 0.032 37.453514 -122.204756 +94028 6534 2744 39458835 289734 15.235 0.112 37.376855 -122.209784 +94030 21536 8374 8771378 30068 3.387 0.012 37.598970 -122.401991 +94037 2913 1169 14985393 0 5.786 0.000 37.554358 -122.496668 +94038 3040 1109 4081711 0 1.576 0.000 37.526902 -122.512164 +94040 32996 14492 9554256 0 3.689 0.000 37.380566 -122.085286 +94041 13292 6331 3962150 0 1.530 0.000 37.388528 -122.075734 +94043 28358 13213 27643575 1469 10.673 0.001 37.421865 -122.070895 +94044 37296 14550 37983639 4906 14.666 0.002 37.606593 -122.477228 +94060 1554 650 188949679 878723 72.954 0.339 37.247137 -122.271032 +94061 36245 14010 9995762 6037 3.859 0.002 37.461147 -122.236948 +94062 25876 10547 183596898 2434677 70.887 0.940 37.410563 -122.297142 +94063 30949 9175 17660779 2859053 6.819 1.104 37.493297 -122.195525 +94065 11359 4943 6313332 1695593 2.438 0.655 37.534106 -122.247372 +94066 41130 15360 15885106 0 6.133 0.000 37.625102 -122.433630 +94070 29166 12341 15905820 6509 6.141 0.003 37.496461 -122.272556 +94074 214 101 48020109 65380 18.541 0.025 37.331762 -122.341444 +94080 63975 21946 26623587 282831 10.279 0.109 37.655490 -122.422075 +94085 21247 8076 9039193 0 3.490 0.000 37.388556 -122.017740 +94086 45697 19359 11617938 0 4.486 0.000 37.371647 -122.023152 +94087 54293 20977 17048754 0 6.583 0.000 37.351528 -122.036962 +94089 19245 7530 15520469 31519 5.992 0.012 37.412402 -122.015605 +94102 31176 18758 1737493 0 0.671 0.000 37.779588 -122.419318 +94103 27170 14778 3512156 0 1.356 0.000 37.773134 -122.411167 +94104 406 368 200977 0 0.078 0.000 37.791409 -122.402130 +94105 5846 4601 956710 211026 0.369 0.081 37.789864 -122.393665 +94107 26599 15141 4640746 234303 1.792 0.090 37.760460 -122.399724 +94108 13768 8843 699434 0 0.270 0.000 37.792007 -122.408575 +94109 55984 37182 3076630 295388 1.188 0.114 37.795388 -122.422453 +94110 69333 28913 6022589 12207 2.325 0.005 37.750021 -122.415201 +94111 3713 2811 891185 494331 0.344 0.191 37.799367 -122.398407 +94112 79407 23081 8712507 0 3.364 0.000 37.720375 -122.442950 +94114 31124 17634 3691502 0 1.425 0.000 37.758057 -122.435410 +94115 33021 18884 2889747 0 1.116 0.000 37.785969 -122.437253 +94116 43698 16283 6696583 97204 2.586 0.038 37.745399 -122.486065 +94117 39169 19255 4370658 1625 1.688 0.001 37.769436 -122.447662 +94118 38319 18633 5047351 59174 1.949 0.023 37.780097 -122.462605 +94121 41203 18787 7981770 61194 3.082 0.024 37.776769 -122.494707 +94122 56023 23633 6122506 0 2.364 0.000 37.758797 -122.485128 +94123 23088 15083 2643367 222780 1.021 0.086 37.800934 -122.438366 +94124 33996 10812 12759593 2806558 4.927 1.084 37.728895 -122.382779 +94127 19289 7801 4585465 9359 1.770 0.004 37.736220 -122.459338 +94128 69 0 9108453 17894 3.517 0.007 37.626369 -122.385694 +94129 3183 1132 5968616 14697 2.304 0.006 37.797336 -122.464462 +94130 2880 786 2333737 0 0.901 0.000 37.820894 -122.369725 +94131 26881 13427 5386048 50550 2.080 0.020 37.745916 -122.441472 +94132 28129 10769 8055033 1299132 3.110 0.502 37.721969 -122.484166 +94133 26237 15197 1955574 646925 0.755 0.250 37.804531 -122.410852 +94134 40798 11867 6215356 90877 2.400 0.035 37.721052 -122.413573 +94158 4792 2482 1702946 1342605 0.658 0.518 37.768106 -122.386927 +94301 16995 8109 6146453 0 2.373 0.000 37.444122 -122.149915 +94303 45467 14551 20623192 1892246 7.963 0.731 37.458090 -122.115398 +94304 3627 2130 16830141 47216 6.498 0.018 37.374707 -122.181697 +94305 13862 4020 13280359 117653 5.128 0.045 37.417940 -122.171470 +94306 26469 11243 10843552 0 4.187 0.000 37.415727 -122.130765 +94401 34429 13518 8148342 2787265 3.146 1.076 37.576948 -122.316903 +94402 23981 9804 12589400 0 4.861 0.000 37.523688 -122.344932 +94403 39642 16371 14584661 433428 5.631 0.167 37.538449 -122.305447 +94404 33749 14246 11032640 1556894 4.260 0.601 37.555999 -122.267679 +94501 60212 27087 20539466 9005303 7.930 3.477 37.773797 -122.278123 +94502 13600 5264 6942292 3081441 2.680 1.190 37.737572 -122.245507 +94503 19681 6064 33556323 6954857 12.956 2.685 38.186535 -122.264565 +94505 13403 5452 42133370 13777379 16.268 5.319 37.871707 -121.596957 +94506 22452 7788 48664719 25221 18.790 0.010 37.809418 -121.912929 +94507 14889 5528 32888775 0 12.698 0.000 37.850399 -122.021113 +94508 3661 1213 45184656 413194 17.446 0.160 38.576618 -122.444388 +94509 62439 22500 42552559 3584276 16.430 1.384 37.996501 -121.812301 +94510 27088 11338 72389963 8709001 27.950 3.363 38.098071 -122.135940 +94511 2137 1327 14411147 0 5.564 0.000 38.029003 -121.640566 +94512 108 41 52217895 28205 20.161 0.011 38.134852 -121.834156 +94513 54605 18644 195948049 5062146 75.656 1.955 37.922228 -121.668359 +94514 1360 468 74350346 453950 28.707 0.175 37.826372 -121.622546 +94515 7050 3517 273632265 472676 105.650 0.183 38.634822 -122.615051 +94516 211 91 2264979 0 0.875 0.000 37.833901 -122.165034 +94517 12385 4662 148195672 0 57.219 0.000 37.890221 -121.878359 +94518 26778 10638 14081235 0 5.437 0.000 37.950359 -122.022034 +94519 18453 7246 11323357 0 4.372 0.000 37.988460 -122.013040 +94520 37208 13601 26130104 0 10.089 0.000 37.995283 -122.040624 +94521 41249 16269 33572538 0 12.962 0.000 37.956008 -121.956195 +94523 33569 14505 18738956 0 7.235 0.000 37.954141 -122.076124 +94525 3127 1664 6093356 1834897 2.353 0.708 38.052951 -122.232094 +94526 31102 12218 38668323 5258 14.930 0.002 37.814613 -121.990552 +94528 964 393 6072659 0 2.345 0.000 37.845601 -121.950612 +94530 23877 10914 12506021 0 4.829 0.000 37.921552 -122.298347 +94531 40290 12494 28373833 0 10.955 0.000 37.965782 -121.775830 +94533 69277 24359 55951716 342384 21.603 0.132 38.280863 -122.006681 +94534 36416 13331 205029594 1545568 79.162 0.597 38.244889 -122.135862 +94535 3793 1238 9871382 18644 3.811 0.007 38.282221 -121.924715 +94536 68790 25068 37767267 11692 14.582 0.005 37.570508 -121.981250 +94538 61148 21739 42636278 455258 16.462 0.176 37.505768 -121.962472 +94539 50031 16100 65831999 0 25.418 0.000 37.516910 -121.911763 +94541 61635 21989 19243298 61590 7.430 0.024 37.673946 -122.084820 +94542 12717 4595 14773416 0 5.704 0.000 37.659883 -122.037142 +94544 73026 23308 28378433 0 10.957 0.000 37.633820 -122.057200 +94545 29707 9477 55787089 7227925 21.540 2.791 37.605905 -122.126873 +94546 42209 16929 24404738 680975 9.423 0.263 37.714509 -122.079542 +94547 24092 8569 14095493 2142836 5.442 0.827 38.009937 -122.261851 +94548 412 172 7157010 122957 2.763 0.047 37.974295 -121.651441 +94549 26864 10896 49746404 431202 19.207 0.166 37.897009 -122.114292 +94550 46896 17858 602772633 4303237 232.732 1.661 37.526661 -121.583391 +94551 36867 13566 204389976 90631 78.915 0.035 37.750502 -121.749055 +94552 14454 5067 116286622 54238 44.899 0.021 37.722720 -122.021552 +94553 47065 19581 126758554 6689742 48.942 2.583 37.993892 -122.136441 +94555 34143 11096 30070498 3658430 11.610 1.413 37.548123 -122.098635 +94556 15229 5817 31722307 0 12.248 0.000 37.840669 -122.114936 +94558 66830 27133 921414306 78858464 355.760 30.447 38.442011 -122.238320 +94559 27184 11014 94910435 5773441 36.645 2.229 38.245729 -122.313395 +94560 42573 13414 35757865 60530 13.806 0.023 37.504141 -122.032359 +94561 36515 12080 43839147 2530150 16.926 0.977 37.993936 -121.691139 +94563 17672 6816 44713551 38563 17.264 0.015 37.879921 -122.184572 +94564 18287 7127 14477578 1185084 5.590 0.458 37.994038 -122.282589 +94565 84641 27897 78214477 9559550 30.199 3.691 38.014576 -121.906255 +94566 40884 15329 50788269 395189 19.609 0.153 37.648118 -121.849958 +94567 623 312 340358151 6256724 131.413 2.416 38.706906 -122.393997 +94568 46016 15773 39588086 11403 15.285 0.004 37.717399 -121.913048 +94569 198 115 6127472 0 2.366 0.000 38.044258 -122.198765 +94571 7911 4149 304636842 53663693 117.621 20.720 38.148862 -121.737696 +94572 8684 3130 11244845 2291474 4.342 0.885 38.032719 -122.252247 +94573 94 53 2577621 7881 0.995 0.003 38.458864 -122.428831 +94574 8742 4406 330994478 5413098 127.798 2.090 38.542448 -122.419923 +94575 974 1 433794 22901 0.167 0.009 37.840961 -122.109502 +94576 164 84 956949 0 0.369 0.000 38.549425 -122.476383 +94577 45560 17714 21107125 3540245 8.150 1.367 37.713275 -122.167350 +94578 38558 14808 11406269 0 4.404 0.000 37.706137 -122.125551 +94579 20571 7019 8113265 0 3.133 0.000 37.686491 -122.157201 +94580 27152 8958 8929836 17052 3.448 0.007 37.675731 -122.133017 +94582 38537 13345 33663078 41682 12.997 0.016 37.762174 -121.915788 +94583 34859 13282 38727298 1313 14.953 0.001 37.755504 -121.973009 +94585 28263 9511 291131232 12612449 112.406 4.870 38.192498 -121.927529 +94586 925 398 151891060 1994938 58.645 0.770 37.574590 -121.853708 +94587 69516 21258 51075108 0 19.720 0.000 37.603156 -122.018638 +94588 30842 11263 84547541 0 32.644 0.000 37.792682 -121.860590 +94589 29876 9973 29676409 344600 11.458 0.133 38.187350 -122.224074 +94590 35420 15729 15395883 2515027 5.944 0.971 38.103234 -122.249096 +94591 53042 19644 55883798 1881793 21.577 0.727 38.122869 -122.196863 +94592 742 319 10953975 15507 4.229 0.006 38.089730 -122.277394 +94595 16425 10261 13930717 0 5.379 0.000 37.871953 -122.069386 +94596 20037 10198 15448709 0 5.965 0.000 37.889079 -122.037560 +94597 20277 10181 10139311 0 3.915 0.000 37.918195 -122.071676 +94598 25818 10756 39493625 31275 15.249 0.012 37.899936 -121.999244 +94599 3021 1310 7593850 0 2.932 0.000 38.409878 -122.361511 +94601 50294 16362 8410939 310703 3.247 0.120 37.775545 -122.218705 +94602 28329 12498 8557026 77534 3.304 0.030 37.804320 -122.207545 +94603 31403 9950 8445735 0 3.261 0.000 37.736531 -122.179454 +94605 39016 16360 23196747 139197 8.956 0.054 37.761408 -122.150198 +94606 36672 16289 5922461 566568 2.287 0.219 37.791887 -122.245334 +94607 24978 12086 15275654 3062191 5.898 1.182 37.807211 -122.301491 +94608 28019 15101 7090119 1745997 2.738 0.674 37.836817 -122.289569 +94609 20596 10348 4424277 0 1.708 0.000 37.834391 -122.264374 +94610 29287 16450 5656311 602433 2.184 0.233 37.811406 -122.242458 +94611 36565 17999 27352180 5141 10.561 0.002 37.829483 -122.203393 +94612 14389 8921 2205251 0 0.851 0.000 37.808800 -122.269196 +94613 715 5 656685 0 0.254 0.000 37.780849 -122.182867 +94618 16046 7698 6281500 25272 2.425 0.010 37.843962 -122.238110 +94619 23299 9644 40532270 3719073 15.650 1.436 37.781467 -122.132380 +94621 29870 9689 20144786 4590477 7.778 1.772 37.748272 -122.216825 +94702 15979 7959 3299367 0 1.274 0.000 37.865784 -122.286326 +94703 19846 9468 3460814 0 1.336 0.000 37.863906 -122.275640 +94704 25592 9683 2769877 0 1.069 0.000 37.866536 -122.257995 +94705 12762 6133 8558635 0 3.305 0.000 37.865177 -122.238209 +94706 19615 8429 3823559 0 1.476 0.000 37.889704 -122.295526 +94707 11710 5198 4390733 0 1.695 0.000 37.898189 -122.279130 +94708 10985 5047 8784938 35275 3.392 0.014 37.902944 -122.261795 +94709 11806 5605 1522484 0 0.588 0.000 37.879234 -122.266839 +94710 6948 2937 5566008 5864359 2.149 2.264 37.863914 -122.306465 +94720 2964 105 1612536 0 0.623 0.000 37.873838 -122.254934 +94801 29395 10221 29210775 16481976 11.278 6.364 37.952844 -122.381974 +94803 24904 9675 30223793 0 11.669 0.000 37.959540 -122.283555 +94804 38559 15257 16002841 6857189 6.179 2.648 37.916555 -122.341233 +94805 13648 5446 5142991 0 1.986 0.000 37.942791 -122.322933 +94806 59861 20531 21583495 594264 8.333 0.229 37.980790 -122.337627 +94850 0 0 109969 32932 0.042 0.013 37.902226 -122.317378 +94901 41157 16408 34087837 9790442 13.161 3.780 37.978316 -122.496839 +94903 29040 12603 51941338 1639676 20.055 0.633 38.022366 -122.555605 +94904 11995 5759 18763550 414468 7.245 0.160 37.945512 -122.560120 +94920 12474 5817 16917954 13679428 6.532 5.282 37.885629 -122.468580 +94922 425 212 31919856 67958 12.324 0.026 38.344946 -122.948799 +94923 1411 1449 55431799 3763573 21.402 1.453 38.339953 -123.035056 +94924 1638 995 59879387 10910767 23.120 4.213 37.943087 -122.723790 +94925 9253 4026 8193476 2760445 3.164 1.066 37.932145 -122.507735 +94928 43170 16594 19951956 0 7.703 0.000 38.346420 -122.694127 +94929 264 426 2749903 0 1.062 0.000 38.252420 -122.962717 +94930 8500 4023 41237691 1049536 15.922 0.405 37.943963 -122.616418 +94931 8470 3677 16452622 29015 6.352 0.011 38.324132 -122.714633 +94933 865 421 2835008 0 1.095 0.000 38.012599 -122.687478 +94937 837 762 107741785 29288035 41.599 11.308 38.116188 -122.930234 +94938 812 417 27406981 0 10.582 0.000 38.029069 -122.726523 +94939 6859 3582 5536933 252346 2.138 0.097 37.937082 -122.532369 +94940 268 197 58977903 9714999 22.771 3.751 38.178590 -122.883126 +94941 30496 14108 57584368 1873457 22.233 0.723 37.897529 -122.562961 +94945 17167 7020 67357203 2224944 26.007 0.859 38.134068 -122.527190 +94946 699 351 113128397 3591545 43.679 1.387 38.082829 -122.671527 +94947 24283 9772 58778749 513113 22.695 0.198 38.112166 -122.634384 +94949 17202 7282 38918837 3178496 15.027 1.227 38.067204 -122.524004 +94950 89 54 22279973 0 8.602 0.000 38.024885 -122.759933 +94951 4124 1794 37958330 0 14.656 0.000 38.320861 -122.646138 +94952 32858 13904 466820751 2998247 180.241 1.158 38.234553 -122.760385 +94954 37365 13915 160575265 5883882 61.998 2.272 38.235021 -122.557332 +94956 1756 1064 151282609 29166366 58.411 11.261 38.045857 -122.861209 +94957 1332 475 2963524 0 1.144 0.000 37.963111 -122.563588 +94960 15740 6791 15368189 0 5.934 0.000 37.995864 -122.577814 +94963 569 259 6894481 0 2.662 0.000 38.013719 -122.670120 +94964 5094 115 1009696 0 0.390 0.000 37.943257 -122.492151 +94965 10847 6466 35020350 11109589 13.521 4.289 37.852904 -122.547207 +94970 683 818 18019764 0 6.957 0.000 37.914513 -122.646890 +94971 337 181 32062021 4962656 12.379 1.916 38.231532 -122.928250 +94972 52 28 29959646 2954330 11.567 1.141 38.292103 -122.971069 +94973 1429 677 10318686 0 3.984 0.000 38.012697 -122.639598 +95002 2077 614 31006231 5973821 11.972 2.307 37.438525 -122.011246 +95003 23974 11719 91033228 3537572 35.148 1.366 37.011154 -121.881646 +95004 3918 1412 47013437 47209 18.152 0.018 36.874753 -121.630730 +95005 6311 2705 30929047 667001 11.942 0.258 37.099415 -122.091668 +95006 8979 4518 138550364 12723 53.495 0.005 37.171267 -122.149524 +95007 676 300 1482252 0 0.572 0.000 37.104964 -122.106903 +95008 45260 19410 16543756 245738 6.388 0.095 37.278563 -121.955101 +95010 9137 5127 3554436 697774 1.372 0.269 36.976175 -121.953160 +95012 10320 2765 38655375 2050679 14.925 0.792 36.784482 -121.759054 +95013 80 32 3954839 0 1.527 0.000 37.215421 -121.741423 +95014 60717 22035 69748879 339868 26.930 0.131 37.306610 -122.080628 +95017 834 391 129510756 6947891 50.004 2.683 37.114335 -122.237162 +95018 7778 3642 48687752 0 18.798 0.000 37.074092 -122.059372 +95019 7727 2061 3144664 0 1.214 0.000 36.935538 -121.783134 +95020 57349 17629 403878926 2310058 155.939 0.892 37.018419 -121.554249 +95023 48841 15301 1067981566 1951192 412.350 0.753 36.902045 -121.350783 +95030 12791 5711 27046433 0 10.443 0.000 37.222788 -121.983274 +95032 25089 10568 41143975 357660 15.886 0.138 37.216822 -121.926548 +95033 9372 4135 237460748 1905736 91.684 0.736 37.161320 -121.984916 +95035 66943 19874 60201550 154186 23.244 0.060 37.443638 -121.874953 +95037 45579 15626 630183859 6306799 243.315 2.435 37.174063 -121.598747 +95039 1377 460 38187112 5027586 14.744 1.941 36.828150 -121.776583 +95041 160 88 104883 0 0.040 0.000 37.050419 -122.057815 +95043 639 366 2223642050 2788468 858.553 1.077 36.525703 -120.952122 +95045 4046 1542 122780227 88611 47.406 0.034 36.825745 -121.518587 +95046 6417 1954 50452242 108511 19.480 0.042 37.099308 -121.599240 +95050 35923 14855 13667199 0 5.277 0.000 37.351158 -121.952295 +95051 54327 21119 17244623 0 6.658 0.000 37.348651 -121.984376 +95053 2206 21 442035 0 0.171 0.000 37.348725 -121.937559 +95054 23364 8891 16222835 0 6.264 0.000 37.393490 -121.964672 +95060 46377 19875 175669268 8540148 67.826 3.297 37.036461 -122.121750 +95062 36079 16919 13072397 3293543 5.047 1.272 36.970525 -121.987488 +95064 7331 403 4857960 0 1.876 0.000 36.991107 -122.059022 +95065 8113 3361 28979514 0 11.189 0.000 37.031472 -121.983340 +95066 14749 5975 49084675 0 18.952 0.000 37.067923 -122.013990 +95070 30617 11379 66031411 63460 25.495 0.025 37.257287 -122.045164 +95073 10154 4334 54910802 0 21.201 0.000 37.042254 -121.930051 +95075 331 122 240884437 392928 93.006 0.152 36.779046 -121.142439 +95076 82474 24331 353788509 6747921 136.599 2.605 36.946256 -121.756479 +95110 18730 6339 12086351 0 4.667 0.000 37.346608 -121.909871 +95111 58466 15511 13969546 18008 5.394 0.007 37.283111 -121.826245 +95112 55927 20763 18370035 0 7.093 0.000 37.344507 -121.883537 +95113 893 992 883438 0 0.341 0.000 37.333707 -121.891049 +95116 51496 13663 9273431 0 3.580 0.000 37.350466 -121.852602 +95117 30067 11263 6659925 0 2.571 0.000 37.311181 -121.961870 +95118 31932 11544 10735870 0 4.145 0.000 37.255519 -121.889982 +95119 9970 3200 7327319 8026 2.829 0.003 37.230059 -121.785100 +95120 37457 12785 102966010 1854148 39.755 0.716 37.186141 -121.843554 +95121 37469 9625 11479041 0 4.432 0.000 37.304151 -121.809861 +95122 56545 12702 12351716 0 4.769 0.000 37.328700 -121.835328 +95123 62228 22035 21542559 9784 8.318 0.004 37.244238 -121.831604 +95124 47082 17345 17015453 0 6.570 0.000 37.256766 -121.922764 +95125 51939 21640 20732334 0 8.005 0.000 37.295097 -121.891430 +95126 31049 13815 8501814 0 3.283 0.000 37.326803 -121.916765 +95127 61325 16416 33699820 0 13.012 0.000 37.371079 -121.800706 +95128 34836 14295 10111701 0 3.904 0.000 37.315976 -121.936313 +95129 38720 14517 11686153 0 4.512 0.000 37.305740 -122.000913 +95130 13911 5175 4034677 0 1.558 0.000 37.277121 -121.986133 +95131 28565 9231 15058227 0 5.814 0.000 37.387105 -121.897415 +95132 40299 11899 132004424 5251020 50.967 2.027 37.424655 -121.748410 +95133 25401 7651 8241772 0 3.182 0.000 37.371645 -121.860764 +95134 15268 7068 24563311 749561 9.484 0.289 37.427650 -121.945416 +95135 20120 7373 79227374 6249 30.590 0.002 37.286454 -121.688360 +95136 42989 15448 12260084 12748 4.734 0.005 37.270058 -121.851333 +95138 18889 5891 67519790 0 26.070 0.000 37.246621 -121.733840 +95139 6748 2260 3188071 0 1.231 0.000 37.224914 -121.764075 +95140 191 130 320449305 204269 123.726 0.079 37.393503 -121.620009 +95148 45528 11747 24409620 246839 9.425 0.095 37.335987 -121.777603 +95202 6521 3984 2791931 16915 1.078 0.007 37.959736 -121.288287 +95203 15696 5959 15979378 1666761 6.170 0.644 37.952452 -121.329655 +95204 27786 12047 13209883 686926 5.100 0.265 37.973736 -121.319246 +95205 38069 11346 23543550 30211 9.090 0.012 37.964578 -121.259841 +95206 65004 17923 375339829 20213278 144.920 7.804 37.918854 -121.417427 +95207 47965 19457 18793035 471162 7.256 0.182 38.002125 -121.324979 +95209 39488 13337 21707643 487844 8.381 0.188 38.047664 -121.351122 +95210 39009 12154 17148410 187402 6.621 0.072 38.030177 -121.297912 +95211 1545 5 391981 68524 0.151 0.026 37.979250 -121.313409 +95212 25239 7327 55851885 355101 21.565 0.137 38.049939 -121.232970 +95215 23224 7298 245224640 543799 94.682 0.210 37.949421 -121.157283 +95219 27884 11281 147276476 20109846 56.864 7.764 38.051726 -121.483036 +95220 7273 2685 149078523 2032530 57.560 0.785 38.200231 -121.235034 +95222 5292 2710 391328301 9795634 151.093 3.782 38.071327 -120.632221 +95223 4612 7605 744404500 3974555 287.416 1.535 38.428475 -119.983134 +95224 429 274 29435671 93399 11.365 0.036 38.231324 -120.322688 +95225 672 274 18148136 199735 7.007 0.077 38.198402 -120.886271 +95226 84 43 14620683 394480 5.645 0.152 38.228993 -120.856700 +95227 941 423 96147855 7495584 37.123 2.894 38.207403 -121.052489 +95228 3976 2476 276696940 3301179 106.833 1.275 37.933295 -120.706670 +95230 718 300 294342191 17356210 113.646 6.701 38.000494 -120.898152 +95231 4374 923 27424810 2290 10.589 0.001 37.873283 -121.292034 +95232 304 171 20458114 0 7.899 0.000 38.355338 -120.594018 +95233 436 280 18136632 12598 7.003 0.005 38.161669 -120.368144 +95234 70 34 86988086 5485611 33.586 2.118 37.925763 -121.528026 +95236 4223 1543 279863422 1929020 108.056 0.745 38.029730 -121.023890 +95237 3167 1214 20680744 108162 7.985 0.042 38.161540 -121.150340 +95240 47172 17344 214205908 1165445 82.705 0.450 38.114388 -121.144658 +95242 25393 10355 248722742 6418335 96.032 2.478 38.137068 -121.384546 +95245 2277 1306 177269751 187534 68.444 0.072 38.299257 -120.626707 +95246 1615 962 135101285 145409 52.163 0.056 38.232845 -120.515637 +95247 4368 2526 107949319 81773 41.679 0.032 38.138539 -120.452903 +95248 301 223 82390657 403185 31.811 0.156 38.317709 -120.461112 +95249 4042 1895 217037743 2332912 83.799 0.901 38.189115 -120.638708 +95250 78 61 27560027 0 10.641 0.000 38.237833 -120.428658 +95251 767 360 28468035 11721 10.992 0.005 38.077689 -120.449079 +95252 13460 5605 317230744 19673449 122.483 7.596 38.149816 -120.846670 +95254 480 212 14269489 991925 5.509 0.383 38.192608 -120.957842 +95255 2042 1242 115518267 134844 44.602 0.052 38.419902 -120.474458 +95257 413 262 39368932 161215 15.200 0.062 38.379703 -120.448000 +95258 4018 1511 8347501 276561 3.223 0.107 38.169605 -121.310964 +95301 37073 12387 161350226 62420 62.298 0.024 37.321154 -120.636719 +95303 912 305 100938837 55050 38.973 0.021 37.470288 -120.671083 +95304 15706 4140 412956949 9030886 159.444 3.487 37.671103 -121.406559 +95305 245 133 36939206 1440941 14.262 0.556 37.794225 -120.269140 +95306 970 466 354278506 3421046 136.788 1.321 37.392622 -120.127607 +95307 42753 13177 86765441 0 33.500 0.000 37.554269 -120.951523 +95310 1882 1006 102404324 2669696 39.539 1.031 38.085839 -120.378550 +95311 2197 1455 620473166 7773447 239.566 3.001 37.705084 -120.082158 +95312 268 84 2538604 0 0.980 0.000 37.421071 -120.652983 +95313 1386 532 133809703 846576 51.664 0.327 37.431392 -121.051294 +95314 0 106 65080494 159062 25.128 0.061 38.321892 -119.789783 +95315 13018 3528 47264386 30295 18.249 0.012 37.421900 -120.769282 +95316 6573 2279 173038771 0 66.811 0.000 37.553376 -120.714055 +95317 817 277 137237401 386377 52.988 0.149 37.127380 -120.506433 +95318 541 304 102482297 347693 39.569 0.134 37.653372 -119.784117 +95319 1749 565 1606178 0 0.620 0.000 37.639290 -120.903049 +95320 12819 4657 229551963 1416547 88.631 0.547 37.825598 -121.005157 +95321 3736 3656 453642681 2487036 175.152 0.960 37.854734 -120.014557 +95322 8942 3398 451124009 18815993 174.180 7.265 37.166199 -121.024432 +95323 1260 411 79900201 489827 30.850 0.189 37.608303 -120.685156 +95324 7324 2604 106607228 1841030 41.161 0.711 37.394536 -120.890747 +95325 81 42 105428390 120624 40.706 0.047 37.479885 -120.230418 +95326 9581 3328 74925117 439428 28.929 0.170 37.588918 -120.855236 +95327 9806 2978 406875018 22334079 157.095 8.623 37.861625 -120.480322 +95328 3993 1105 2697387 0 1.041 0.000 37.558453 -120.909880 +95329 2460 1355 282985362 20372706 109.261 7.866 37.666587 -120.411517 +95330 17853 5181 55728730 1331603 21.517 0.514 37.809477 -121.315116 +95333 2942 956 302258898 0 116.703 0.000 37.242232 -120.240442 +95334 15457 4098 145038400 589107 56.000 0.227 37.347307 -120.742627 +95335 541 1225 109040377 265958 42.101 0.103 38.125078 -120.092801 +95336 42675 15067 99172501 93659 38.291 0.036 37.830267 -121.201018 +95337 31557 10622 117858732 1752981 45.506 0.677 37.743039 -121.238380 +95338 11062 5746 881437284 13485380 340.325 5.207 37.508765 -119.982496 +95340 33931 12642 102957321 1917558 39.752 0.740 37.345785 -120.424150 +95341 32967 9330 387424591 3505980 149.585 1.354 37.231045 -120.501072 +95345 708 365 82770991 230905 31.958 0.089 37.583767 -119.976728 +95346 1272 1375 15529278 14595 5.996 0.006 38.065529 -120.170699 +95348 30805 11276 123033842 265214 47.504 0.102 37.392287 -120.498299 +95350 51046 20928 22996426 0 8.879 0.000 37.671978 -121.007405 +95351 46458 13749 22972046 674007 8.870 0.260 37.623601 -120.996324 +95354 25394 9836 19012000 50971 7.341 0.020 37.639029 -120.964772 +95355 58311 22505 24577003 73039 9.489 0.028 37.672906 -120.946594 +95356 30918 11949 55384235 3036007 21.384 1.172 37.718023 -121.032714 +95357 11559 3861 99788867 348014 38.529 0.134 37.672536 -120.887136 +95358 31668 9228 311649004 5187883 120.328 2.003 37.612612 -121.108568 +95360 11712 3935 866928107 4346532 334.723 1.678 37.325955 -121.193383 +95361 31610 12050 600087588 8727183 231.695 3.370 37.786492 -120.757696 +95363 25237 8085 305729794 768399 118.043 0.297 37.452894 -121.229950 +95364 53 539 704408811 11425829 271.974 4.412 38.258381 -119.783030 +95365 4985 1272 39294026 0 15.172 0.000 37.331113 -120.294817 +95366 16575 5991 89066315 877370 34.389 0.339 37.762939 -121.125614 +95367 23173 7271 11873483 150942 4.584 0.058 37.729282 -120.942905 +95368 13614 4159 8517356 649884 3.289 0.251 37.715625 -121.089243 +95369 1099 502 412607079 8136969 159.308 3.142 37.531787 -120.435972 +95370 26803 13100 267162080 12588009 103.152 4.860 37.984549 -120.349264 +95372 1963 848 6937465 13780 2.679 0.005 37.991339 -120.262774 +95374 2030 700 120614886 1297497 46.570 0.501 37.316807 -120.855753 +95375 106 393 7889388 102350 3.046 0.040 38.186595 -120.026235 +95376 49859 16589 19775153 0 7.635 0.000 37.737191 -121.433384 +95377 30902 8819 279847793 68096 108.050 0.026 37.674036 -121.517281 +95379 3898 1760 139518165 334497 53.868 0.129 37.939768 -120.188002 +95380 41201 14525 194296011 26703 75.018 0.010 37.474396 -120.875917 +95382 36176 13132 27189623 0 10.498 0.000 37.528476 -120.853313 +95383 3937 3355 202933668 423176 78.353 0.163 38.107441 -120.230625 +95385 429 189 64333467 307195 24.839 0.119 37.610740 -121.247330 +95386 9877 3203 219848238 6650495 84.884 2.568 37.668877 -120.627047 +95387 636 189 300156937 68663 115.891 0.027 37.498700 -121.298493 +95388 13074 3912 100539257 202419 38.818 0.078 37.414670 -120.586787 +95389 1272 875 611344150 3524875 236.041 1.361 37.626489 -119.681280 +95391 9959 3331 61518426 1092141 23.752 0.422 37.768237 -121.609686 +95401 36981 14062 53417691 39627 20.625 0.015 38.449137 -122.793752 +95403 45164 17965 57009092 146195 22.011 0.056 38.503685 -122.754057 +95404 39761 17039 207132279 60660 79.974 0.023 38.526298 -122.690960 +95405 21399 9251 14183932 0 5.476 0.000 38.437114 -122.665993 +95407 39352 12442 58746449 10212 22.682 0.004 38.393300 -122.745048 +95409 27187 12983 99389538 674617 38.375 0.260 38.468893 -122.580539 +95410 950 582 103240724 10186158 39.861 3.933 39.204746 -123.690534 +95412 401 203 221922989 0 85.685 0.000 38.713421 -123.349777 +95415 1592 629 143172375 0 55.279 0.000 39.015251 -123.370756 +95417 297 139 195095313 0 75.327 0.000 39.689790 -123.610022 +95420 374 215 5194874 835145 2.006 0.322 39.366146 -123.804985 +95421 1592 1289 561075399 810417 216.632 0.313 38.628044 -123.159486 +95422 15585 8546 91236887 22274625 35.227 8.600 38.973642 -122.622751 +95423 3747 2680 266350758 4803863 102.839 1.855 39.064446 -122.626701 +95425 10841 4544 532783085 15280499 205.709 5.900 38.823075 -123.063567 +95426 2147 1315 52522679 35871 20.279 0.014 38.832458 -122.730395 +95427 459 243 180426079 0 69.663 0.000 39.244183 -123.563531 +95428 2516 1160 583227506 1726188 225.185 0.666 39.824434 -123.178799 +95429 70 60 103509130 410281 39.965 0.158 39.720542 -123.300585 +95430 44 32 615335 0 0.238 0.000 38.461425 -123.047185 +95431 631 0 196644 0 0.076 0.000 38.348343 -122.517056 +95432 426 312 188871558 1205609 72.924 0.465 39.108252 -123.645121 +95435 82 26 399528 0 0.154 0.000 39.007213 -122.869510 +95436 5418 2995 59514277 866324 22.979 0.334 38.486970 -122.905772 +95437 14799 7082 253224320 10278001 97.770 3.968 39.485860 -123.742891 +95439 675 263 7091874 0 2.738 0.000 38.493179 -122.777546 +95441 2014 847 263936405 4704468 101.906 1.816 38.731694 -122.906767 +95442 3178 1750 63226514 146136 24.412 0.056 38.371334 -122.487136 +95443 233 222 10840827 18896 4.186 0.007 39.054131 -122.751233 +95444 748 288 700896 0 0.271 0.000 38.433216 -122.869001 +95445 2093 1421 221559110 7363180 85.544 2.843 38.832535 -123.472567 +95446 4750 3565 85259067 440234 32.919 0.170 38.527164 -123.007892 +95448 16852 7753 488207763 1450148 188.498 0.560 38.627028 -122.891580 +95449 1507 606 338228682 954807 130.591 0.369 38.943196 -123.101055 +95450 387 366 71095022 703126 27.450 0.271 38.501363 -123.170879 +95451 11213 5911 249096169 13976159 96.177 5.396 38.922131 -122.789559 +95452 1393 760 37217734 0 14.370 0.000 38.425523 -122.535210 +95453 11256 5533 216831467 1027452 83.719 0.397 39.044761 -122.942355 +95454 2556 1331 691590624 961579 267.025 0.371 39.806149 -123.516010 +95456 795 605 26094867 2116526 10.075 0.817 39.258295 -123.760729 +95457 2893 1712 384368466 10931156 148.406 4.221 38.882973 -122.532720 +95458 3104 1904 126835961 61071 48.972 0.024 39.161278 -122.745312 +95459 504 421 173713747 7118789 67.071 2.749 38.989323 -123.626842 +95460 2285 1555 70740091 6214670 27.313 2.399 39.305245 -123.748616 +95461 3413 1886 324324519 1847960 125.222 0.714 38.752774 -122.557196 +95462 1417 1135 15213763 667953 5.874 0.258 38.462146 -123.018428 +95463 169 134 29224936 0 11.284 0.000 39.186791 -123.558382 +95464 2673 1582 8612745 0 3.325 0.000 39.128363 -122.849302 +95465 2083 1314 108040410 1443194 41.715 0.557 38.421306 -123.065708 +95466 946 461 243568666 105252 94.042 0.041 39.081822 -123.504872 +95467 5498 2565 25420363 397579 9.815 0.154 38.809463 -122.539517 +95468 1258 703 168829054 7644815 65.185 2.952 38.916214 -123.605813 +95469 1767 1014 452411498 8590127 174.677 3.317 39.390917 -123.052841 +95470 6032 2391 213718860 627838 82.517 0.242 39.314030 -123.249924 +95471 522 434 3734436 0 1.442 0.000 38.524077 -122.968774 +95472 28255 13187 179074707 105888 69.141 0.041 38.398815 -122.861923 +95476 35394 16559 290048360 2123151 111.988 0.820 38.254935 -122.470703 +95482 31808 12571 805163258 8310284 310.875 3.209 39.121234 -123.242350 +95485 2557 1265 271775618 2551935 104.933 0.985 39.225478 -122.922912 +95486 62 67 50163 0 0.019 0.000 38.474137 -123.024203 +95488 280 219 229779523 9382299 88.718 3.623 39.683731 -123.741578 +95490 13264 6012 1015732741 2249416 392.177 0.869 39.492842 -123.340973 +95492 28532 10192 49281501 44081 19.028 0.017 38.528079 -122.821349 +95493 198 104 11734792 60811 4.531 0.023 39.184728 -122.969574 +95494 139 77 266620306 0 102.943 0.000 38.889651 -123.337821 +95497 1305 1818 41841498 222129 16.155 0.086 38.742903 -123.476087 +95501 23976 10574 18248993 4431196 7.046 1.711 40.798802 -124.151920 +95503 24152 10555 223897953 8286731 86.447 3.200 40.737431 -124.108897 +95511 360 206 151231027 177027 58.391 0.068 40.141856 -123.681921 +95514 254 136 224546112 561607 86.698 0.217 40.294713 -123.653473 +95519 17432 7585 147123701 3719353 56.805 1.436 40.959368 -124.051236 +95521 20199 9068 138572176 45873057 53.503 17.712 40.855672 -124.066720 +95524 1787 813 26988359 26981 10.420 0.010 40.825486 -124.049485 +95525 1733 830 215993820 399001 83.396 0.154 40.921430 -123.815266 +95526 378 301 285104732 468511 110.080 0.181 40.459063 -123.673165 +95527 627 455 356397254 3143 137.606 0.001 41.012258 -123.387964 +95528 1139 546 265698291 408591 102.587 0.158 40.497283 -123.930370 +95531 24528 9176 505493073 77018894 195.172 29.737 41.819578 -124.065667 +95536 2849 1397 381215528 3223655 147.188 1.245 40.523168 -124.326632 +95537 276 143 461647 0 0.178 0.000 40.726752 -124.217378 +95540 13657 5722 71915618 1250208 27.767 0.483 40.578828 -124.136869 +95542 2533 1390 511758966 649856 197.591 0.251 40.080405 -123.783948 +95543 765 425 264109164 635589 101.973 0.245 41.870812 -123.862770 +95545 153 100 124177311 0 47.945 0.000 40.280389 -124.063670 +95546 3494 1417 353538808 3897361 136.502 1.505 41.092824 -123.675804 +95547 1222 506 19536376 0 7.543 0.000 40.557483 -124.081215 +95548 1373 647 226208775 18746720 87.340 7.238 41.593204 -124.045992 +95549 805 382 290949644 182616 112.336 0.071 40.666702 -123.908398 +95550 128 73 349472026 503589 134.932 0.194 40.781218 -123.826383 +95551 1739 732 110251523 26751062 42.568 10.329 40.674987 -124.231146 +95552 697 749 1397857063 4405482 539.716 1.701 40.203939 -123.219559 +95553 1062 612 153521378 161515 59.275 0.062 40.244215 -123.888871 +95554 533 336 130018977 479581 50.201 0.185 40.296346 -123.777112 +95555 410 238 222554404 1363927 85.929 0.527 41.241807 -123.913425 +95556 605 353 354804079 1813272 136.991 0.700 41.308073 -123.586216 +95558 425 360 520360392 762617 200.912 0.294 40.298264 -124.243071 +95559 182 110 46752702 93400 18.051 0.036 40.183684 -123.744917 +95560 1648 867 86279071 149914 33.313 0.058 40.168801 -123.826148 +95562 3450 1486 63696882 707205 24.594 0.273 40.472423 -124.121840 +95563 652 395 155965062 168586 60.218 0.065 40.877330 -123.499144 +95564 462 192 8591808 3861027 3.317 1.491 40.791020 -124.204640 +95565 1071 394 86153866 1695763 33.264 0.655 40.455189 -124.015148 +95567 1930 927 162006946 10304104 62.551 3.978 41.950683 -124.097094 +95568 136 102 210442116 2990823 81.252 1.155 41.452691 -123.464802 +95569 361 154 160183060 1795601 61.847 0.693 40.378860 -123.844997 +95570 2579 1571 61405919 34060111 23.709 13.151 41.080058 -124.156283 +95571 271 137 1957032 48591 0.756 0.019 40.322772 -123.920622 +95573 1744 1136 311511625 963671 120.275 0.372 40.914926 -123.668723 +95585 508 300 141191455 0 54.514 0.000 39.844682 -123.656929 +95587 201 119 33669032 0 13.000 0.000 39.963270 -123.775737 +95589 1612 1159 483494749 23381519 186.678 9.028 40.055796 -123.969269 +95595 262 175 634035127 72313 244.802 0.028 40.109807 -123.425497 +95601 198 111 4538018 26631 1.752 0.010 38.426699 -120.825717 +95602 17509 7496 127870645 1727737 49.371 0.667 38.990030 -121.114408 +95603 27844 12243 101082367 1324813 39.028 0.512 38.915869 -121.080284 +95604 75 117 1037384 0 0.401 0.000 39.243304 -120.071406 +95605 14179 5251 10099855 434286 3.900 0.168 38.593521 -121.539867 +95606 196 87 94066749 0 36.319 0.000 38.756186 -122.195441 +95607 431 219 347705376 655867 134.250 0.253 38.834470 -122.127165 +95608 59418 27325 33776671 685947 13.041 0.265 38.624150 -121.324911 +95610 44147 18539 20279505 0 7.830 0.000 38.694908 -121.271772 +95612 1239 502 143682929 7179467 55.476 2.772 38.384648 -121.578701 +95614 3833 1680 91938310 225458 35.498 0.087 38.886062 -120.982388 +95615 834 333 60185000 2146028 23.238 0.829 38.324029 -121.546207 +95616 47032 17982 71372239 61834 27.557 0.024 38.554130 -121.798469 +95618 27281 10257 90464817 262465 34.929 0.101 38.543211 -121.681500 +95619 4842 2139 15567920 95730 6.011 0.037 38.680605 -120.814261 +95620 20553 7048 623564441 7524409 240.760 2.905 38.412615 -121.756222 +95621 39819 16768 17589801 0 6.791 0.000 38.695704 -121.308303 +95623 3806 1633 135578059 24029 52.347 0.009 38.605289 -120.856630 +95624 61989 19978 113912658 114628 43.982 0.044 38.427651 -121.315627 +95625 155 69 2991432 0 1.155 0.000 38.358121 -121.911547 +95626 5975 2041 60247188 0 23.262 0.000 38.733145 -121.468174 +95627 3513 1224 133169251 804522 51.417 0.311 38.734513 -122.025346 +95628 40196 17294 33034540 1171184 12.755 0.452 38.652065 -121.254410 +95629 832 453 120422740 0 46.495 0.000 38.516474 -120.688517 +95630 72180 26093 71442063 6028731 27.584 2.328 38.666597 -121.141635 +95631 6076 2667 394127755 1407444 152.174 0.543 39.053461 -120.795632 +95632 29269 9633 287084116 1304652 110.844 0.504 38.274451 -121.259201 +95633 3349 1515 106773340 100735 41.225 0.039 38.844519 -120.826574 +95634 3232 1580 210131556 196486 81.132 0.076 38.938067 -120.768776 +95635 1262 543 52517081 59041 20.277 0.023 38.904300 -120.914049 +95636 1101 678 300279569 0 115.939 0.000 38.621278 -120.383217 +95637 370 191 54635119 0 21.095 0.000 38.834139 -122.236937 +95638 2255 766 203809770 1521362 78.691 0.587 38.313448 -121.123886 +95639 283 116 11775487 1113704 4.547 0.430 38.389030 -121.500428 +95640 11353 3189 298901716 16358353 115.407 6.316 38.325248 -120.955787 +95641 1986 1190 115564042 6420430 44.620 2.479 38.140308 -121.589599 +95642 7164 3529 171575200 4707107 66.246 1.817 38.343033 -120.760921 +95645 2037 738 331528885 5843180 128.004 2.256 38.884891 -121.778654 +95646 158 729 9934019 2452716 3.836 0.947 38.689283 -120.054929 +95648 47354 19219 366503117 3074811 141.508 1.187 38.922812 -121.312005 +95650 12447 4792 63888285 477179 24.667 0.184 38.809175 -121.171375 +95651 637 302 30057290 0 11.605 0.000 38.817820 -120.929272 +95652 739 223 9776107 0 3.775 0.000 38.662977 -121.401102 +95653 527 147 13333351 21917 5.148 0.008 38.697600 -121.978759 +95655 4314 1561 24531691 64570 9.472 0.025 38.549228 -121.278598 +95658 6285 2589 64231827 1011320 24.800 0.390 38.883224 -121.159180 +95659 702 328 129554142 1979455 50.021 0.764 38.842230 -121.572164 +95660 30714 10871 16152210 0 6.236 0.000 38.678545 -121.379969 +95661 29791 12455 23314549 3366 9.002 0.001 38.741074 -121.247693 +95662 31558 12623 28154331 339770 10.870 0.131 38.689174 -121.218435 +95663 2377 926 20680794 0 7.985 0.000 38.855811 -121.182313 +95664 1380 620 97732414 12209902 37.735 4.714 38.800662 -121.036736 +95665 4426 2152 52698565 135310 20.347 0.052 38.402083 -120.649677 +95666 5336 3779 144277374 2235108 55.706 0.863 38.523861 -120.376629 +95667 36726 16204 448627560 1078329 173.216 0.416 38.734925 -120.789952 +95668 815 330 156973092 362628 60.608 0.140 38.833554 -121.498102 +95669 2443 1182 228749899 203331 88.321 0.079 38.482619 -120.899472 +95670 52973 21636 32514204 974496 12.554 0.376 38.604268 -121.280327 +95672 4773 1856 58455805 499923 22.570 0.193 38.725093 -121.000439 +95673 15455 5239 42005044 173475 16.218 0.067 38.689241 -121.459014 +95674 935 356 83001111 0 32.047 0.000 38.954159 -121.481870 +95675 381 201 1785214 0 0.689 0.000 38.544700 -120.740500 +95677 23333 9568 22938022 18040 8.856 0.007 38.791075 -121.234854 +95678 41192 16978 28131203 0 10.862 0.000 38.764073 -121.287515 +95679 55 36 118879306 691077 45.900 0.267 38.896670 -122.348664 +95680 146 48 5206956 141380 2.010 0.055 38.240419 -121.587535 +95681 1226 438 44663142 44449 17.245 0.017 38.995557 -121.353545 +95682 29114 11841 210189667 280638 81.155 0.108 38.612129 -120.964522 +95683 6180 2671 235100708 1078315 90.773 0.416 38.511992 -121.096261 +95684 3422 1786 376578972 156250 145.398 0.060 38.593273 -120.585956 +95685 4680 2449 127699901 18641 49.305 0.007 38.431898 -120.770657 +95686 1405 466 70581553 3132051 27.252 1.209 38.157794 -121.520223 +95687 65096 22537 112718088 617686 43.521 0.238 38.333133 -121.920151 +95688 34379 12997 210272010 741176 81.186 0.286 38.408571 -122.022775 +95689 1244 793 71920341 0 27.769 0.000 38.478832 -120.611993 +95690 2533 1123 148353474 7599457 57.280 2.934 38.199576 -121.618273 +95691 34737 13497 107541255 5917830 41.522 2.285 38.627951 -121.593287 +95692 4769 1834 140536860 1994678 54.262 0.770 39.046931 -121.403091 +95693 6758 2612 162731619 123591 62.831 0.048 38.399550 -121.210347 +95694 9156 3274 386439555 961057 149.205 0.371 38.568491 -122.080210 +95695 37946 14689 368191217 0 142.159 0.000 38.687044 -121.857080 +95697 425 152 600030 0 0.232 0.000 38.732370 -121.810264 +95698 236 99 111340391 769515 42.989 0.297 38.816357 -121.910774 +95699 154 76 10517828 66394 4.061 0.026 38.436467 -120.857671 +95701 983 573 86311664 218666 33.325 0.084 39.224484 -120.768689 +95703 897 374 11528523 0 4.451 0.000 38.985882 -120.978665 +95709 4772 2144 57840036 78751 22.332 0.030 38.748316 -120.675512 +95713 9495 4246 184443496 992335 71.214 0.383 39.113684 -120.873765 +95714 382 277 8708468 34050 3.362 0.013 39.200502 -120.840726 +95715 115 143 67483834 2791225 26.056 1.078 39.269964 -120.677611 +95717 231 144 26466649 0 10.219 0.000 39.144524 -120.852571 +95720 157 420 313595788 1498187 121.080 0.578 38.766036 -120.209673 +95721 37 505 32453168 1786425 12.530 0.690 38.841190 -120.077273 +95722 4585 1942 28297792 634869 10.926 0.245 39.009741 -121.034108 +95724 27 47 3095249 0 1.195 0.000 39.311704 -120.328125 +95726 8842 4605 192441900 2199206 74.302 0.849 38.800349 -120.503871 +95728 386 1048 32165502 624655 12.419 0.241 39.319332 -120.399379 +95735 68 398 56102495 812246 21.661 0.314 38.840775 -120.149510 +95736 240 85 649432 0 0.251 0.000 39.038809 -120.977530 +95742 7749 2635 128909075 99144 49.772 0.038 38.577783 -121.201788 +95746 21460 7811 45732364 113107 17.657 0.044 38.750964 -121.184357 +95747 51870 19836 120747938 1273 46.621 0.000 38.782070 -121.373155 +95757 40222 11878 156578023 2493515 60.455 0.963 38.344888 -121.431231 +95758 60435 21347 33222381 677143 12.827 0.261 38.427813 -121.444696 +95762 38797 13827 106934855 5836415 41.288 2.253 38.685222 -121.064165 +95765 33974 12546 32091508 81147 12.391 0.031 38.815502 -121.279552 +95776 21902 6824 239384437 2901159 92.427 1.120 38.694081 -121.694431 +95811 7595 4465 7212901 439603 2.785 0.170 38.583230 -121.478101 +95814 9922 6473 3616899 94332 1.396 0.036 38.580568 -121.495590 +95815 24680 10004 20324446 1027252 7.847 0.397 38.605407 -121.447593 +95816 15579 10137 5301362 2502 2.047 0.001 38.571577 -121.466465 +95817 13534 6574 5933955 0 2.291 0.000 38.550547 -121.456373 +95818 19811 10143 9948048 376888 3.841 0.146 38.554487 -121.497058 +95819 17141 8036 8760910 433240 3.383 0.167 38.569828 -121.440067 +95820 34480 13190 13453303 0 5.194 0.000 38.534879 -121.444372 +95821 33550 16240 18522331 192933 7.152 0.074 38.625693 -121.384916 +95822 42347 16569 21875767 232905 8.446 0.090 38.512787 -121.493618 +95823 73985 24552 30571490 0 11.804 0.000 38.474099 -121.443454 +95824 30221 9689 10518257 0 4.061 0.000 38.517585 -121.440739 +95825 31084 16993 12243232 16890 4.727 0.007 38.591897 -121.408467 +95826 36628 16192 29842945 409498 11.522 0.158 38.543754 -121.377692 +95827 20269 7846 19712471 648929 7.611 0.251 38.556129 -121.324257 +95828 57862 18515 31896927 0 12.315 0.000 38.488809 -121.395843 +95829 24755 7763 53827168 11789 20.783 0.005 38.489544 -121.323454 +95830 934 311 33598959 172211 12.973 0.066 38.490508 -121.284171 +95831 41321 19186 18097102 1435342 6.987 0.554 38.494832 -121.529447 +95832 11924 3222 21414053 1511682 8.268 0.584 38.447050 -121.496114 +95833 37293 15007 20065426 991997 7.747 0.383 38.619049 -121.517552 +95834 25899 10085 25884200 699661 9.994 0.270 38.635653 -121.518416 +95835 35936 13606 23201611 137009 8.958 0.053 38.670649 -121.525983 +95837 315 144 46760394 1087684 18.054 0.420 38.693945 -121.599134 +95838 36764 11587 23480746 20745 9.066 0.008 38.646170 -121.445152 +95841 19448 8804 10556566 0 4.076 0.000 38.660370 -121.347394 +95842 31806 12111 10143467 0 3.916 0.000 38.686809 -121.349146 +95843 45048 14599 16701380 0 6.448 0.000 38.715463 -121.363422 +95864 22447 10031 16615455 235040 6.415 0.091 38.584047 -121.375846 +95901 31314 12250 509066137 4141361 196.552 1.599 39.223939 -121.494050 +95903 1732 843 37588823 25614 14.513 0.010 39.106099 -121.368180 +95910 86 81 88769698 4207 34.274 0.002 39.491126 -120.817232 +95912 4685 1566 467603992 744186 180.543 0.287 39.016702 -122.062143 +95914 578 285 37956907 0 14.655 0.000 39.449005 -121.330521 +95915 44 55 58437101 52060 22.563 0.020 40.006256 -121.158894 +95916 1441 1011 250762126 20002980 96.820 7.723 39.665539 -121.351955 +95917 3155 1156 178476123 1084307 68.910 0.419 39.413627 -121.761286 +95918 2339 1008 178954698 5182423 69.095 2.001 39.301229 -121.337929 +95919 1378 714 64005512 0 24.713 0.000 39.432882 -121.261143 +95920 274 134 178912999 616634 69.079 0.238 39.449794 -121.936372 +95922 687 412 162584164 10984882 62.774 4.241 39.489840 -121.070237 +95923 58 214 25726097 0 9.933 0.000 40.133728 -121.092693 +95925 295 163 86279365 5370577 33.313 2.074 39.484108 -121.192649 +95926 37725 16385 19815814 0 7.651 0.000 39.745628 -121.843834 +95928 36511 15496 356254048 6215467 137.550 2.400 39.685710 -121.844084 +95930 69 52 43400977 431288 16.757 0.167 39.548599 -121.192105 +95932 7718 3047 321650643 5093702 124.190 1.967 39.266469 -121.978604 +95934 274 161 53855943 42048 20.794 0.016 40.061086 -120.902875 +95935 631 332 61125450 187252 23.601 0.072 39.379344 -121.192259 +95936 352 297 271773214 171343 104.932 0.066 39.605958 -120.791339 +95937 1491 595 131729796 0 50.861 0.000 38.885247 -121.999043 +95938 3787 1525 186139046 94302 71.869 0.036 39.604713 -121.795288 +95939 604 308 792186963 8001763 305.865 3.089 39.571983 -122.580828 +95941 563 383 40926158 91441 15.802 0.035 39.517330 -121.242678 +95942 1301 965 144775404 40386 55.898 0.016 40.019450 -121.566635 +95943 879 380 163942688 5615758 63.299 2.168 39.584807 -122.032297 +95944 46 40 130825651 302289 50.512 0.117 39.494937 -120.944288 +95945 25199 12405 166352193 2308589 64.229 0.891 39.196387 -120.972289 +95946 9790 4728 108456907 2799366 41.875 1.081 39.215586 -121.203240 +95947 1899 1012 338095439 0 130.539 0.000 40.174567 -120.819766 +95948 10810 4015 202076977 668657 78.022 0.258 39.339264 -121.770785 +95949 19741 8938 361463789 483990 139.562 0.187 39.099249 -121.138845 +95950 569 202 132069187 546053 50.992 0.211 39.043447 -121.918099 +95951 2601 775 47587859 2493719 18.374 0.963 39.723808 -122.003909 +95953 10718 3407 294620010 701349 113.753 0.271 39.258746 -121.776970 +95954 12251 5863 183961862 3214494 71.028 1.241 39.889504 -121.583415 +95955 1517 608 318560903 79234 122.997 0.031 39.294516 -122.201715 +95956 401 534 175421696 22136 67.731 0.009 39.838288 -121.134235 +95957 761 336 180934757 1632993 69.859 0.631 39.060921 -121.827155 +95959 17838 8600 642106455 3739852 247.919 1.444 39.347811 -120.918728 +95960 796 437 125062066 139520 48.287 0.054 39.403217 -121.034486 +95961 26510 8799 118575036 1754200 45.782 0.677 39.040304 -121.560484 +95962 1567 765 76947527 420003 29.710 0.162 39.344855 -121.264443 +95963 15493 5853 791684843 14874705 305.671 5.743 39.735300 -122.258532 +95965 20384 8002 829307201 42465351 320.197 16.396 39.593945 -121.581363 +95966 30643 13148 476725215 22692306 184.065 8.762 39.473896 -121.415927 +95968 1412 514 4008182 0 1.548 0.000 39.435211 -121.551925 +95969 27549 13621 152881285 831041 59.028 0.321 39.716846 -121.646180 +95970 530 261 121264527 1311983 46.820 0.507 39.398424 -122.060946 +95971 5970 2920 262028573 698439 101.170 0.270 39.940174 -120.885878 +95973 31957 13510 861956753 4853362 332.803 1.874 39.891624 -121.841982 +95974 8 3 21744218 0 8.395 0.000 39.480221 -121.838454 +95975 1769 855 24218351 0 9.351 0.000 39.224412 -121.151620 +95977 1678 704 101350964 577191 39.132 0.223 39.176595 -121.291692 +95978 143 71 16390482 0 6.328 0.000 39.875599 -121.536315 +95979 597 428 736641676 7239187 284.419 2.795 39.302040 -122.511118 +95981 97 346 106424267 656151 41.091 0.253 39.687069 -121.000123 +95982 3221 1217 114902241 297681 44.364 0.115 39.172777 -121.805845 +95983 428 297 305392204 0 117.913 0.000 40.077912 -120.707315 +95984 120 91 85943976 0 33.183 0.000 40.040955 -121.122652 +95986 162 121 21257292 0 8.207 0.000 39.342544 -120.770868 +95987 5992 1854 866928944 195374 334.723 0.075 39.097947 -122.286034 +95988 8857 3543 804260340 2082661 310.527 0.804 39.491654 -122.262080 +95991 40593 15139 105482089 2815142 40.727 1.087 39.016059 -121.598994 +95993 36067 12388 221499871 151010 85.522 0.058 39.082497 -121.680114 +96001 33865 14846 227797024 4142185 87.953 1.599 40.600342 -122.455016 +96002 33298 13374 78346896 1803475 30.250 0.696 40.527834 -122.318749 +96003 44461 19402 615250597 58048173 237.550 22.413 40.751937 -122.230678 +96006 557 307 418524842 1049045 161.593 0.405 41.136140 -120.840356 +96007 22841 9487 335549415 5300046 129.556 2.046 40.457991 -122.277995 +96008 1231 485 94129012 267095 36.343 0.103 40.705001 -122.120397 +96009 569 285 570891928 5449088 220.423 2.104 41.056040 -121.020802 +96010 239 153 1041435918 8362 402.101 0.003 40.913802 -123.307474 +96011 218 191 826335814 5876875 319.050 2.269 41.051216 -121.984492 +96013 4212 2033 595068978 7211209 229.757 2.784 40.975253 -121.690281 +96014 211 124 343767195 1431294 132.729 0.553 41.326624 -122.773678 +96015 465 156 626722760 22209457 241.979 8.575 41.486953 -120.913975 +96016 366 238 109061797 1636300 42.109 0.632 40.894419 -121.505962 +96017 171 184 378404137 1701294 146.103 0.657 41.080356 -122.233836 +96019 10082 4148 28334829 24257 10.940 0.009 40.679219 -122.377904 +96020 2416 1752 103725698 1114919 40.049 0.430 40.397997 -121.298528 +96021 16097 6337 617955662 6911557 238.594 2.669 39.923446 -122.270806 +96022 15768 6443 626871170 1715179 242.036 0.662 40.336392 -122.448533 +96023 1240 603 646989271 66471910 249.804 25.665 41.928894 -121.906809 +96024 1145 670 462527066 32385 178.583 0.013 40.543165 -122.876964 +96025 2310 1502 237536436 815267 91.713 0.315 41.209942 -122.307935 +96027 2227 1108 1233590146 4432280 476.292 1.711 41.400028 -123.069287 +96028 1464 795 433264243 6092726 167.284 2.352 41.006417 -121.480741 +96029 124 68 90316097 165127 34.871 0.064 39.940260 -122.489200 +96031 158 154 917917096 2296386 354.410 0.887 41.186066 -123.181796 +96032 2407 1196 1179820395 3533351 455.531 1.364 41.609010 -122.963514 +96033 432 216 366782602 8851277 141.616 3.417 40.781633 -122.584149 +96034 294 177 286030393 1087199 110.437 0.420 41.428284 -122.609441 +96035 3324 1308 119034439 1894524 45.959 0.731 40.045637 -122.184859 +96037 308 157 10391119 353965 4.012 0.137 41.544675 -122.934665 +96038 589 291 46183849 60403 17.832 0.023 41.607100 -122.545715 +96039 1251 695 1613739881 4728899 623.068 1.826 41.687905 -123.483269 +96040 341 207 319038217 813443 123.181 0.314 40.793535 -121.438607 +96041 2747 1653 852284465 58222 329.069 0.022 40.525724 -123.193917 +96044 1022 681 364904363 5377769 140.890 2.076 41.930950 -122.510081 +96046 304 227 464561213 40931 179.368 0.016 40.586442 -123.432743 +96047 1004 556 533303697 780548 205.910 0.301 40.469818 -122.661233 +96048 736 406 397572844 665312 153.504 0.257 40.829014 -123.022859 +96049 95 63 41030624 186096 15.842 0.072 41.762515 -123.328564 +96050 414 318 740074878 1994161 285.745 0.770 41.898880 -122.888552 +96051 1139 873 801678065 50761123 309.530 19.599 40.932935 -122.383578 +96052 1460 907 199642870 4658844 77.083 1.799 40.738391 -122.821085 +96054 366 220 330848756 4591978 127.741 1.773 41.240175 -121.036859 +96055 3935 1775 163727579 1674658 63.216 0.647 40.103236 -122.074735 +96056 1642 884 873654746 12195018 337.320 4.709 41.028176 -121.308316 +96057 1355 1064 819170056 643301 316.283 0.248 41.268701 -121.931033 +96058 798 446 1126445144 7889666 434.923 3.046 41.728474 -121.906179 +96059 688 355 203136347 210180 78.431 0.081 40.421637 -121.833052 +96061 36 167 106913157 271584 41.279 0.105 40.338068 -121.479070 +96062 1105 439 188849980 681648 72.915 0.263 40.580181 -122.041447 +96063 125 345 31030922 117777 11.981 0.045 40.370532 -121.606340 +96064 4574 2265 1240888485 9023996 479.110 3.484 41.756114 -122.365378 +96065 357 221 219507209 1088352 84.752 0.420 40.892563 -121.876104 +96067 7165 3974 351861118 2307641 135.854 0.891 41.307705 -122.376724 +96068 183 54 103808797 650673 40.081 0.251 41.118402 -121.207564 +96069 982 502 229493517 396832 88.608 0.153 40.685336 -122.016069 +96071 125 212 207637746 329111 80.169 0.127 40.662919 -121.462699 +96073 4082 1619 115302061 881065 44.518 0.340 40.603908 -122.185739 +96074 260 75 259310706 582957 100.120 0.225 39.884401 -122.587615 +96075 369 207 178155066 185792 68.786 0.072 40.343242 -121.852205 +96076 166 157 536253682 61134 207.049 0.024 40.391935 -122.937679 +96080 28764 12256 1585623463 8028324 612.213 3.100 40.171603 -122.394899 +96084 625 323 272767503 3066737 105.316 1.184 40.845006 -121.969953 +96085 85 60 193310678 227821 74.638 0.088 41.737962 -123.075570 +96086 338 215 664958042 1492677 256.742 0.576 41.924174 -123.260788 +96087 600 271 202673338 12904373 78.253 4.982 40.619996 -122.643648 +96088 4506 2567 408067687 653442 157.556 0.252 40.511966 -121.884623 +96090 421 197 2660998 72055 1.027 0.028 40.021577 -122.127672 +96091 699 845 1171223887 3142235 452.212 1.213 41.034706 -122.791321 +96092 496 177 127912597 49044 49.387 0.019 39.963320 -122.017242 +96093 4133 1939 151923465 9647 58.658 0.004 40.765478 -122.941428 +96094 6630 3305 640774711 11234474 247.405 4.338 41.456579 -122.469367 +96096 695 343 294944136 357382 113.879 0.138 40.652845 -121.823333 +96097 10031 4815 493971895 1024880 190.724 0.396 41.755217 -122.656617 +96101 5490 2786 1513198323 27693753 584.249 10.693 41.452711 -120.538460 +96103 1725 1988 325567919 965104 125.702 0.373 39.805590 -120.665982 +96104 748 427 498525771 49238740 192.482 19.011 41.506276 -120.143106 +96105 527 423 655846407 294707 253.224 0.114 39.753663 -120.055178 +96106 479 495 60594374 0 23.396 0.000 39.736644 -120.543744 +96107 1269 659 230266600 29321 88.906 0.011 38.425280 -119.475741 +96108 122 96 512906657 3856553 198.034 1.489 41.770135 -120.431114 +96109 2197 566 512467549 5151367 197.865 1.989 40.019715 -120.099183 +96110 166 117 387611636 37983238 149.658 14.665 41.299897 -120.078493 +96111 160 91 86872470 115645 33.542 0.045 39.468311 -120.035318 +96112 214 151 328270939 19830918 126.746 7.657 41.858844 -120.104998 +96113 1000 484 17651025 73460 6.815 0.028 40.142933 -120.159007 +96114 3220 1372 176017772 5457339 67.961 2.107 40.296745 -120.499838 +96115 145 113 257927144 103008640 99.586 39.772 41.701830 -120.134337 +96116 233 166 650132830 7381199 251.018 2.850 41.255254 -120.372571 +96117 405 189 846107047 4042363 326.684 1.561 40.533534 -120.235306 +96118 1627 812 525385634 811852 202.853 0.313 39.639597 -120.247144 +96119 90 70 419944622 5275265 162.142 2.037 41.022672 -120.524014 +96120 957 618 545586369 1453320 210.652 0.561 38.743387 -119.867630 +96121 368 184 86706921 3505699 33.478 1.354 40.167924 -120.373766 +96122 3883 2321 158826906 29801 61.323 0.012 39.825506 -120.476967 +96123 48 40 529518177 6582767 204.448 2.542 40.728194 -120.396280 +96124 326 273 149405801 66889 57.686 0.026 39.641871 -120.445265 +96125 258 443 256197728 1565297 98.919 0.604 39.602124 -120.635732 +96126 215 156 229753503 2585003 88.708 0.998 39.529719 -120.454168 +96128 752 320 81364942 118545 31.415 0.046 40.358768 -120.408154 +96129 261 137 244527212 41749 94.412 0.016 39.789270 -120.357278 +96130 23150 7286 1242920631 123684378 479.894 47.755 40.551757 -120.675673 +96132 119 116 1005942315 5959955 388.397 2.301 40.914835 -120.402292 +96133 110 64 32925952 3359715 12.713 1.297 38.620964 -119.505184 +96134 2512 1189 859230351 45174627 331.751 17.442 41.767323 -121.440546 +96135 128 80 86139723 0 33.259 0.000 39.808651 -120.205672 +96136 104 65 383663420 1451002 148.133 0.560 40.345949 -120.081187 +96137 3297 3872 125380319 386544 48.410 0.149 40.270731 -121.039461 +96140 1170 1640 12168154 516530 4.698 0.199 39.232027 -120.096413 +96141 744 1649 31061010 1148846 11.993 0.444 39.077550 -120.177111 +96142 1037 2105 52338483 5411074 20.208 2.089 38.997146 -120.129630 +96143 4414 3110 14252104 388672 5.503 0.150 39.254474 -120.022169 +96145 3161 4764 96405205 2367560 37.222 0.914 39.140222 -120.183534 +96146 1366 1726 54220865 59677 20.935 0.023 39.198047 -120.237787 +96148 788 677 3521562 272314 1.360 0.105 39.248269 -120.064288 +96150 29792 21720 320034300 11633306 123.566 4.492 38.869943 -120.008943 +96155 8 88 95941522 76028 37.043 0.029 38.747069 -120.088361 +96161 18451 16285 470913694 3972774 181.821 1.534 39.313089 -120.207783 +96701 40281 14008 48976810 2013446 18.910 0.777 21.406053 -157.884952 +96703 2368 899 48363962 4319406 18.673 1.668 22.145578 -159.385681 +96704 6505 2938 738044815 57244575 284.961 22.102 19.337368 -155.837228 +96705 2319 784 7534555 1270446 2.909 0.491 21.899368 -159.568039 +96706 62730 18319 44376884 4695451 17.134 1.813 21.344756 -158.022282 +96707 38817 12461 112357835 7860953 43.382 3.035 21.363106 -158.082206 +96708 10220 4394 252370834 21125902 97.441 8.157 20.852389 -156.223562 +96710 613 275 99135322 1769025 38.276 0.683 19.842383 -155.247662 +96712 7352 3028 53651079 12294287 20.715 4.747 21.621367 -158.048011 +96713 1990 964 270727956 12880789 104.529 4.973 20.738821 -156.045046 +96714 1390 959 202854811 14765395 78.323 5.701 22.131244 -159.520961 +96716 2823 982 278330697 3987969 107.464 1.540 22.049275 -159.592419 +96717 5555 1826 64414694 5999455 24.871 2.316 21.557750 -157.905396 +96719 1692 655 52869737 147154 20.413 0.057 20.234364 -155.835941 +96720 46165 17770 775767929 17977677 299.526 6.941 19.659810 -155.232473 +96722 2484 2464 14329414 2812414 5.533 1.086 22.188092 -159.461105 +96725 3592 1469 203066001 17384 78.404 0.007 19.626487 -155.910346 +96726 661 271 77674110 0 29.990 0.000 19.428180 -155.820986 +96727 4878 1857 325796343 37663705 125.791 14.542 20.109943 -155.636271 +96728 610 253 9506021 862088 3.670 0.333 19.861176 -155.124957 +96729 1303 396 108269994 26166708 41.803 10.103 21.173558 -157.116812 +96730 1541 617 2739038 1859827 1.058 0.718 21.543144 -157.850479 +96731 3292 1297 50247074 15654006 19.401 6.044 21.658692 -157.978792 +96732 24816 7638 25194958 4135920 9.728 1.597 20.883783 -156.462641 +96734 50746 16548 56282056 8182798 21.731 3.159 21.395084 -157.758188 +96737 4552 2450 333249259 32409257 128.668 12.513 19.064517 -155.779672 +96738 6609 4421 232207177 1458313 89.656 0.563 19.873144 -155.796360 +96740 33321 16843 612314102 72949267 236.416 28.166 19.756820 -155.919968 +96741 5929 2370 71374541 562695 27.558 0.217 21.958288 -159.512023 +96742 90 113 31057797 14125746 11.991 5.454 21.170642 -156.958641 +96743 12160 5668 964807461 36624637 372.514 14.141 19.862157 -155.698847 +96744 54247 17803 89310738 51711143 34.483 19.966 21.451733 -157.824227 +96746 18319 8134 132939278 7669850 51.328 2.961 22.091962 -159.383000 +96747 749 219 6701950 53495 2.588 0.021 21.926296 -159.624415 +96748 4503 2159 318169468 55564434 122.846 21.454 21.131084 -156.836399 +96749 17047 6645 162781816 9936836 62.850 3.837 19.621282 -154.989735 +96750 3793 1466 483331961 6313950 186.616 2.438 19.534039 -155.713752 +96751 175 69 999966 0 0.386 0.000 22.104971 -159.302546 +96752 3680 1382 10472052 1884507 4.043 0.728 21.970965 -159.714507 +96753 26892 18059 84273594 20075899 32.538 7.751 20.711955 -156.438498 +96754 4084 1706 107406055 9914214 41.470 3.828 22.177432 -159.412230 +96755 3575 1384 150179562 37661811 57.985 14.541 20.196906 -155.789908 +96756 5190 3247 63910818 9381316 24.676 3.622 21.907071 -159.451665 +96757 758 290 39793923 33174 15.365 0.013 21.154207 -156.974145 +96759 457 119 15433685 0 5.959 0.000 21.467412 -158.072417 +96760 3001 1335 44922274 0 17.345 0.000 19.554764 -155.056113 +96761 22156 11928 200105867 36161690 77.261 13.962 20.897296 -156.613540 +96762 6419 1188 31223935 2163386 12.056 0.835 21.618479 -157.943953 +96763 3135 1545 365360876 59344086 141.067 22.913 20.836482 -156.927377 +96764 799 357 114749737 656179 44.305 0.253 19.912071 -155.276904 +96765 553 210 2759852 46226 1.066 0.018 21.922107 -159.492130 +96766 14683 5296 219894229 13355593 84.902 5.157 21.992908 -159.401649 +96768 17668 6729 110584449 232940 42.697 0.090 20.832264 -156.297856 +96769 464 185 193525234 44941011 74.721 17.352 21.894997 -160.151913 +96770 691 757 177285629 33377433 68.450 12.887 21.134086 -157.216486 +96771 8339 3660 238259953 7555 91.993 0.003 19.523869 -155.123211 +96772 2304 1089 835313554 22393952 322.516 8.646 19.155884 -155.624963 +96773 210 105 90153110 7160687 34.808 2.765 19.880162 -155.239161 +96774 342 124 100713102 3198 38.886 0.001 19.964199 -155.322559 +96776 1490 607 174680995 16003467 67.445 6.179 19.993371 -155.399899 +96777 1479 575 451246423 9584411 174.227 3.701 19.251949 -155.456769 +96778 14409 6685 696973791 27417321 269.103 10.586 19.438940 -155.028176 +96779 3088 1292 20991444 8091312 8.105 3.124 20.908224 -156.382963 +96780 557 202 7722728 9570849 2.982 3.695 19.969757 -155.216167 +96781 1670 654 104379799 3053946 40.301 1.179 19.786152 -155.217704 +96782 40496 12089 45534751 3005781 17.581 1.161 21.417374 -157.936867 +96783 2060 789 50575781 3795787 19.527 1.466 19.830827 -155.144159 +96785 2646 1776 671699968 0 259.345 0.000 19.453729 -155.407545 +96786 40859 12842 212390268 1035502 82.004 0.400 21.571390 -157.979384 +96789 54129 18650 70652605 402652 27.279 0.155 21.482531 -157.934221 +96790 8065 3664 588725397 7123999 227.308 2.751 20.685864 -156.304151 +96791 8014 2776 96742107 8416282 37.352 3.250 21.563640 -158.185151 +96792 48519 13376 157862934 35322154 60.951 13.638 21.468626 -158.166919 +96793 29549 10564 177902920 15599478 68.689 6.023 20.895344 -156.530319 +96795 10034 2494 28915581 5242481 11.164 2.024 21.335013 -157.710924 +96796 1881 887 119607241 11428476 46.181 4.413 22.094078 -159.719913 +96797 72289 19986 89107548 4591094 34.405 1.773 21.417469 -157.983838 +96813 22881 10542 8912089 644113 3.441 0.249 21.316548 -157.845053 +96814 18721 11187 3225550 1113494 1.245 0.430 21.293143 -157.848767 +96815 31470 22750 4963333 2299121 1.916 0.888 21.273462 -157.822444 +96816 49368 18914 25627960 1900247 9.895 0.734 21.290612 -157.788328 +96817 54628 20157 24046929 1214255 9.285 0.469 21.355480 -157.821663 +96818 50586 17313 29818831 9267901 11.513 3.578 21.344246 -157.939889 +96819 49492 12399 56684403 9484881 21.886 3.662 21.347927 -157.876274 +96821 19856 7295 29876667 1213739 11.535 0.469 21.311063 -157.750269 +96822 45007 19372 21239274 0 8.201 0.000 21.320210 -157.810758 +96825 30263 11592 29041291 5111407 11.213 1.974 21.294518 -157.688748 +96826 30842 15948 2761968 50029 1.066 0.019 21.291518 -157.826869 +96850 0 0 55919 0 0.022 0.000 21.303784 -157.862652 +96853 462 0 239916 0 0.093 0.000 21.333755 -157.938957 +96857 2522 0 1204623 0 0.465 0.000 21.486760 -158.051525 +96859 156 0 294633 0 0.114 0.000 21.360460 -157.890628 +96860 1124 3 866337 0 0.334 0.000 21.355655 -157.941232 +96863 52 0 73422 0 0.028 0.000 21.448453 -157.762325 +97001 229 76 770309402 669869 297.418 0.259 44.990287 -120.604029 +97002 5623 2230 110754683 1487175 42.763 0.574 45.240464 -122.793823 +97004 4388 1689 113398767 71994 43.784 0.028 45.254962 -122.449377 +97005 24906 10955 13753498 0 5.310 0.000 45.490964 -122.803590 +97006 63036 25287 30429045 0 11.749 0.000 45.517015 -122.859822 +97007 66954 25553 69343741 0 26.774 0.000 45.454273 -122.879617 +97008 28969 12508 12842365 0 4.958 0.000 45.460190 -122.804191 +97009 7762 3030 79232040 281430 30.592 0.109 45.422994 -122.332770 +97011 582 343 15032314 0 5.804 0.000 45.387126 -122.026423 +97013 22688 8516 147220363 1558598 56.842 0.602 45.220824 -122.668280 +97014 1288 573 93144802 358749 35.963 0.139 45.582887 -122.016805 +97015 19521 8124 22817427 96000 8.810 0.037 45.413524 -122.536758 +97016 6083 2873 596655267 25379920 230.370 9.799 46.060308 -123.266951 +97017 2922 1090 112431927 77786 43.410 0.030 45.176519 -122.389690 +97018 1952 837 2086801 1381903 0.806 0.534 45.897054 -122.810630 +97019 3161 1226 152043825 638488 58.704 0.247 45.515631 -122.242730 +97020 791 303 370438 0 0.143 0.000 45.222954 -122.833621 +97021 1089 505 636730745 1042660 245.843 0.403 45.385919 -121.142379 +97022 3722 1405 63943512 964353 24.689 0.372 45.346725 -122.319961 +97023 9832 3933 330220870 2345079 127.499 0.905 45.278476 -122.323188 +97024 10242 4377 9067433 1734194 3.501 0.670 45.546621 -122.442402 +97026 3815 1094 92514022 1773995 35.720 0.685 45.106152 -122.959936 +97027 12131 5020 6560842 183870 2.533 0.071 45.385650 -122.592827 +97028 217 713 98452861 264043 38.013 0.102 45.288450 -121.807391 +97029 285 163 628744600 1874977 242.760 0.724 45.287094 -120.802277 +97030 36693 15334 19544450 222891 7.546 0.086 45.509230 -122.433565 +97031 18375 7676 300824949 11019934 116.149 4.255 45.626700 -121.550474 +97032 5043 1698 47422138 56483 18.310 0.022 45.176630 -122.783877 +97033 60 40 464093465 3638938 179.187 1.405 45.280255 -120.595882 +97034 18905 8422 19030906 2080759 7.348 0.803 45.409354 -122.683468 +97035 23912 11320 15622261 266723 6.032 0.103 45.413498 -122.725171 +97037 849 574 1411048885 4593000 544.809 1.773 45.067048 -121.027621 +97038 15113 5680 323822191 773654 125.028 0.299 45.095438 -122.558954 +97039 472 238 370658047 881379 143.112 0.340 45.451556 -120.664859 +97040 1244 649 135781351 3995629 52.425 1.543 45.617111 -121.388115 +97041 2817 1089 299173626 87119 115.512 0.034 45.436254 -121.624789 +97042 2923 1149 58083275 85543 22.426 0.033 45.205153 -122.539832 +97045 51359 20525 223636091 3123865 86.346 1.206 45.320277 -122.536467 +97048 6691 2902 216238764 19564841 83.490 7.554 46.044795 -122.982023 +97049 1899 1853 398264901 2118112 153.771 0.818 45.346366 -121.862365 +97050 272 150 19739692 10315757 7.622 3.983 45.673584 -120.781653 +97051 15957 6352 124921285 2731200 48.232 1.055 45.879320 -122.950001 +97053 3247 1333 35787156 932409 13.817 0.360 45.827979 -122.883286 +97054 1579 657 124405195 6045950 48.033 2.334 45.942244 -122.949635 +97055 17350 7000 305202087 3097263 117.839 1.196 45.388788 -122.155174 +97056 11497 4845 253285282 4462593 97.794 1.723 45.772048 -122.969408 +97057 36 24 1740878 0 0.672 0.000 45.002733 -120.749973 +97058 19838 8508 894209195 20976920 345.256 8.099 45.536452 -121.155254 +97060 21226 7733 45615227 9658145 17.612 3.729 45.531327 -122.369090 +97062 27434 11033 35971436 58021 13.889 0.022 45.369302 -122.762307 +97063 1074 902 337640411 1372141 130.364 0.530 45.224901 -121.301127 +97064 3464 1553 253467506 130500 97.864 0.050 45.859087 -123.235515 +97065 676 327 650122172 2692313 251.014 1.040 45.607642 -120.644619 +97067 2138 1480 113145458 1514 43.686 0.001 45.297834 -122.054364 +97068 28305 11324 58185025 3371665 22.465 1.302 45.352349 -122.668560 +97070 20957 9078 49416053 1651834 19.080 0.638 45.306108 -122.773066 +97071 28803 9746 136001979 403728 52.511 0.156 45.134196 -122.826479 +97080 40888 15415 55840534 441549 21.560 0.170 45.478314 -122.390727 +97086 26010 9984 27332885 0 10.553 0.000 45.445175 -122.528077 +97089 11986 4362 56370807 530754 21.765 0.205 45.426602 -122.443132 +97101 3794 1416 143576931 195661 55.435 0.076 45.090196 -123.228702 +97102 205 429 16097941 6621921 6.215 2.557 45.795655 -123.959820 +97103 16859 8021 385518656 21407590 148.850 8.266 46.133918 -123.710609 +97106 4550 1626 120968208 67101 46.706 0.026 45.665732 -123.118978 +97107 1530 766 36293770 7372102 14.013 2.846 45.552522 -123.879381 +97108 490 256 197664162 0 76.319 0.000 45.268884 -123.708784 +97109 577 215 84617192 0 32.671 0.000 45.737827 -123.181210 +97110 1284 1250 8576262 0 3.311 0.000 45.901039 -123.955401 +97111 3156 1227 100468139 85750 38.791 0.033 45.284549 -123.195186 +97112 1901 1244 271464543 7970147 104.813 3.077 45.271232 -123.868472 +97113 14155 4404 92025411 292055 35.531 0.113 45.497238 -123.044336 +97114 4762 1733 148385879 2889586 57.292 1.116 45.187855 -123.076570 +97115 4139 1574 30768116 500682 11.880 0.193 45.275227 -123.039460 +97116 24104 9079 187049817 475019 72.220 0.183 45.580829 -123.165712 +97117 679 271 91061074 16681 35.159 0.006 45.631447 -123.288449 +97118 775 523 2642657 1000102 1.020 0.386 45.560774 -123.911344 +97119 4420 1697 224255572 3801802 86.586 1.468 45.468863 -123.200213 +97121 1383 630 10733640 2961151 4.144 1.143 46.171919 -123.951838 +97122 460 241 76538236 11079 29.552 0.004 45.161422 -123.825780 +97123 44537 15390 139056722 131436 53.690 0.051 45.440160 -122.980060 +97124 48349 19977 111580289 25217 43.081 0.010 45.569813 -122.949619 +97125 157 69 13530005 18299 5.224 0.007 45.671107 -123.196925 +97127 3740 1314 2288586 0 0.884 0.000 45.246126 -123.111352 +97128 36141 13987 276790005 59584 106.869 0.023 45.211928 -123.282159 +97130 710 1412 8110803 7959783 3.132 3.073 45.701857 -123.925733 +97131 2498 1886 279184537 3921286 107.794 1.514 45.736903 -123.817024 +97132 28278 10695 161655975 1237461 62.416 0.478 45.324219 -122.987330 +97133 4000 1658 181551172 46071 70.097 0.018 45.686112 -123.022718 +97134 175 399 1230981 3695335 0.475 1.427 45.457577 -123.977041 +97135 861 1219 11110484 11081001 4.290 4.278 45.221925 -123.962732 +97136 1761 2720 52966823 9591541 20.451 3.703 45.630592 -123.920769 +97137 1307 465 108164372 3126081 41.762 1.207 45.219549 -122.948352 +97138 10021 7236 330302808 3562158 127.531 1.375 45.849059 -123.572177 +97140 23474 8598 113286093 17881 43.740 0.007 45.353118 -122.865914 +97141 13140 6495 575779203 45410287 222.310 17.533 45.510742 -123.743360 +97144 195 83 36971896 0 14.275 0.000 45.741563 -123.300243 +97145 441 594 9220211 0 3.560 0.000 45.851149 -123.950728 +97146 5905 2803 55088190 53224308 21.270 20.550 46.129699 -123.945911 +97147 408 283 1881527 263061 0.726 0.102 45.688168 -123.881376 +97148 3406 1327 195370917 198305 75.433 0.077 45.358403 -123.248478 +97149 574 881 66613653 9631313 25.720 3.719 45.112940 -123.938853 +97201 15484 9393 5265254 367581 2.033 0.142 45.507856 -122.690794 +97202 38762 18424 16386465 2650690 6.327 1.023 45.482741 -122.644441 +97203 31042 12153 23113522 4092335 8.924 1.580 45.603549 -122.737905 +97204 1036 448 643571 217662 0.248 0.084 45.518371 -122.673946 +97205 7688 5464 2528640 7527 0.976 0.003 45.520562 -122.710231 +97206 47596 20385 16907018 23617 6.528 0.009 45.482433 -122.598605 +97208 0 0 62888 0 0.024 0.000 45.528666 -122.678981 +97209 14950 11517 2708461 483809 1.046 0.187 45.531127 -122.683941 +97210 10887 6948 19527370 1910805 7.540 0.738 45.544186 -122.726656 +97211 31254 13035 18802223 5189683 7.260 2.004 45.581132 -122.637305 +97212 24126 10724 7069219 0 2.729 0.000 45.544236 -122.643468 +97213 29219 13773 10475765 3774 4.045 0.001 45.538194 -122.600014 +97214 23813 12548 7269426 127680 2.807 0.049 45.514672 -122.643014 +97215 16375 7559 5884275 77424 2.272 0.030 45.515121 -122.600627 +97216 15594 6583 6569247 0 2.536 0.000 45.513887 -122.558403 +97217 31438 14682 33471270 13720815 12.923 5.298 45.601815 -122.700798 +97218 14561 5797 18096964 230889 6.987 0.089 45.576291 -122.600896 +97219 38709 17086 30448880 674017 11.756 0.260 45.454231 -122.698526 +97220 28495 11800 18611500 136503 7.186 0.053 45.550024 -122.559297 +97221 11630 5213 11096367 10295 4.284 0.004 45.498278 -122.728839 +97222 34979 15908 21915588 697473 8.462 0.269 45.440945 -122.618077 +97223 46699 19380 29903830 17348 11.546 0.007 45.440290 -122.776605 +97224 31122 14188 22988207 0 8.876 0.000 45.405501 -122.795057 +97225 24176 11989 17094006 18325 6.600 0.007 45.501578 -122.769994 +97227 3847 1815 3472202 671982 1.341 0.259 45.543386 -122.678100 +97229 58217 23226 53252948 13523 20.561 0.005 45.551031 -122.809275 +97230 39752 15826 35935627 13387196 13.875 5.169 45.557757 -122.505268 +97231 4280 1963 166617575 34089090 64.331 13.162 45.687629 -122.824209 +97232 11472 6569 4861503 73643 1.877 0.028 45.528929 -122.643927 +97233 39367 13877 11705514 45521 4.520 0.018 45.515118 -122.503259 +97236 36852 13145 20007686 49770 7.725 0.019 45.482892 -122.509785 +97239 14150 8046 9198334 521440 3.551 0.201 45.492443 -122.692457 +97266 33300 12545 15655677 54143 6.045 0.021 45.482957 -122.558208 +97267 30839 12918 18921221 585583 7.306 0.226 45.408427 -122.612867 +97301 53518 19686 29992208 374005 11.580 0.144 44.948780 -123.003655 +97302 37131 16749 61042906 1834305 23.569 0.708 44.902737 -123.062159 +97303 38663 15221 64592761 1692275 24.939 0.653 45.030348 -123.023687 +97304 28454 11777 144455524 2729471 55.775 1.054 45.006596 -123.111691 +97305 40176 14570 123507910 0 47.687 0.000 45.014335 -122.928733 +97306 27360 11448 86266502 1222663 33.308 0.472 44.842904 -123.094751 +97317 24355 8142 142362501 0 54.966 0.000 44.902603 -122.907378 +97321 24928 10382 175265684 4541732 67.670 1.754 44.653450 -123.139526 +97322 34039 14167 161437631 1956831 62.331 0.756 44.627553 -123.017613 +97324 1126 609 455844985 844974 176.003 0.326 44.365025 -123.623120 +97325 6614 2397 80396401 425811 31.041 0.164 44.833821 -122.852230 +97326 961 440 379589548 176787 146.560 0.068 44.619481 -123.602815 +97327 2871 1218 180880427 0 69.838 0.000 44.375035 -122.947584 +97329 90 77 91981050 0 35.514 0.000 44.411264 -122.384610 +97330 41472 18488 199697439 814864 77.104 0.315 44.642489 -123.256266 +97331 2408 3 835604 0 0.323 0.000 44.564604 -123.280419 +97333 21377 9530 301750446 3478971 116.507 1.343 44.468006 -123.293755 +97338 20045 8271 279899916 406883 108.070 0.157 44.926822 -123.347474 +97341 2325 2190 18945144 1382367 7.315 0.534 44.809281 -124.051203 +97342 267 501 145284654 1459163 56.095 0.563 44.739258 -121.878925 +97343 434 191 390605715 86578 150.814 0.033 44.575260 -123.751493 +97344 1076 449 28608232 0 11.046 0.000 44.869102 -123.464616 +97345 574 276 98631672 790312 38.082 0.305 44.411572 -122.578803 +97346 883 443 79527807 36522 30.706 0.014 44.768759 -122.363191 +97347 1878 800 111451116 0 43.032 0.000 45.077114 -123.656389 +97348 1625 598 171095461 974618 66.060 0.376 44.383294 -123.122261 +97350 182 140 221327491 390818 85.455 0.151 44.631507 -121.863770 +97351 10307 3811 135852071 2987968 52.453 1.154 44.816679 -123.137765 +97352 5604 2112 113077034 1924319 43.659 0.743 44.748649 -123.026554 +97355 28613 12100 540588254 3307851 208.722 1.277 44.532377 -122.820656 +97357 253 127 42409749 25149 16.374 0.010 44.752668 -123.825597 +97358 2576 1229 184428211 1128734 71.208 0.436 44.804038 -122.414007 +97360 2249 923 59173207 63807 22.847 0.025 44.766266 -122.499411 +97361 11258 4207 362105612 92446 139.810 0.036 44.767022 -123.341673 +97362 4338 1633 61855849 92063 23.883 0.036 45.063442 -122.771090 +97364 446 285 811482 0 0.313 0.000 44.998860 -123.986853 +97365 10744 5800 109817193 6827440 42.401 2.636 44.666397 -124.010783 +97366 1460 1027 26726259 2384123 10.319 0.921 44.577285 -124.053577 +97367 9416 7845 109351510 2944567 42.221 1.137 44.914753 -123.974220 +97368 3435 1858 142287663 3338240 54.938 1.289 45.024417 -123.903094 +97369 193 460 8031827 0 3.101 0.000 44.761539 -124.051767 +97370 8271 3357 375814368 647791 145.103 0.250 44.563823 -123.445448 +97371 730 300 110886540 240032 42.814 0.093 44.990697 -123.190756 +97373 178 0 308734 0 0.119 0.000 45.056983 -122.771763 +97374 5266 2069 330634779 456256 127.659 0.176 44.675902 -122.778136 +97375 1252 498 121510278 0 46.915 0.000 44.977319 -122.596337 +97376 1301 872 165556435 661017 63.922 0.255 44.487394 -123.983775 +97377 917 355 123965540 292588 47.863 0.113 44.463294 -123.105998 +97378 8882 2749 300020184 186294 115.838 0.072 45.070687 -123.421129 +97380 2449 992 186975792 40671 72.192 0.016 44.786018 -123.929969 +97381 14711 5741 281842047 361156 108.820 0.139 44.939460 -122.720715 +97383 9587 3809 113986516 1945550 44.010 0.751 44.794464 -122.721862 +97384 23 9 18834 0 0.007 0.000 44.790993 -122.618879 +97385 3257 1359 105676112 71595 40.802 0.028 44.865854 -122.723550 +97386 13567 5672 328364501 5104878 126.782 1.971 44.359706 -122.726936 +97388 888 1116 7069866 4711158 2.730 1.819 44.903514 -124.017859 +97389 1676 643 92344749 0 35.655 0.000 44.533482 -123.089784 +97390 555 491 285502244 344284 110.233 0.133 44.308957 -123.828419 +97391 5344 2311 243986694 6089327 94.204 2.351 44.624538 -123.898368 +97392 5191 2039 112660054 1003949 43.498 0.388 44.794776 -122.928850 +97394 4643 3329 158153985 5879079 61.064 2.270 44.436746 -123.920366 +97396 3154 1262 134297063 189256 51.852 0.073 45.103994 -123.548956 +97401 40521 20211 23751176 58974 9.170 0.023 44.067988 -123.080181 +97402 50342 22044 178923199 16695472 69.083 6.446 44.047735 -123.230911 +97403 11622 3979 11094495 0 4.284 0.000 44.035821 -123.052974 +97404 32255 13210 25097986 225218 9.690 0.087 44.105501 -123.133112 +97405 44645 20082 393448507 970036 151.911 0.375 43.939557 -123.192759 +97406 105 110 305694026 3411194 118.029 1.317 42.615862 -124.021255 +97408 11711 5164 129253149 3436787 49.905 1.327 44.143552 -123.058908 +97410 759 389 322218296 0 124.409 0.000 42.798940 -123.147871 +97411 6953 3915 347599360 30904017 134.209 11.932 43.075636 -124.359381 +97412 521 344 219113640 1309029 84.600 0.505 44.204934 -123.548077 +97413 915 784 1396601454 10449415 539.231 4.035 44.124779 -122.072275 +97414 273 138 70683373 381468 27.291 0.147 42.961554 -124.203021 +97415 14051 7434 385423091 3850378 148.813 1.487 42.084386 -124.174762 +97416 937 402 138557870 47911 53.497 0.018 43.034121 -123.686734 +97417 2439 1085 51924124 29582 20.048 0.011 42.947656 -123.230688 +97419 1066 489 75807504 3917 29.269 0.002 44.180946 -123.410669 +97420 27473 12905 616004719 49062254 237.841 18.943 43.350962 -124.136602 +97423 6809 3121 328794544 3602462 126.948 1.391 43.193744 -124.173445 +97424 17594 7505 596218745 10015547 230.201 3.867 43.729601 -123.014625 +97426 9716 3955 208161678 241589 80.372 0.093 43.898956 -123.029956 +97429 684 342 235845707 0 91.061 0.000 42.968299 -123.063500 +97430 385 218 271750147 0 104.923 0.000 44.174840 -123.705193 +97431 2335 987 108052892 535198 41.719 0.207 43.869513 -122.841760 +97434 928 394 277130526 2053862 107.001 0.793 43.622619 -122.716760 +97435 2349 1053 250742273 56517 96.812 0.022 43.690179 -123.328493 +97436 841 445 254138997 3662365 98.124 1.414 43.640015 -123.584772 +97437 2572 1035 57372938 4814003 22.152 1.859 44.097414 -123.392416 +97438 1191 491 269055680 7796708 103.883 3.010 43.944242 -122.682456 +97439 14343 8851 457221284 35560963 176.534 13.730 44.090672 -124.048263 +97441 260 166 40992542 25399805 15.827 9.807 43.774749 -124.157182 +97442 2232 1008 216581243 93411 83.622 0.036 42.771523 -123.423403 +97443 2232 920 196489425 366584 75.865 0.142 43.248329 -123.015591 +97444 5181 3168 423009562 6396192 163.325 2.470 42.506105 -124.337295 +97446 4812 1850 315506843 1878963 121.818 0.725 44.260727 -123.054648 +97447 794 558 307238188 14632438 118.625 5.650 43.155248 -122.210461 +97448 12244 5190 369681256 2847296 142.735 1.099 44.211162 -123.279453 +97449 1959 1417 116076095 8506607 44.817 3.284 43.563367 -124.040504 +97450 671 407 216397227 2206576 83.551 0.852 42.905939 -124.397057 +97451 387 183 106056913 0 40.949 0.000 43.815227 -123.268019 +97452 1420 614 55827482 19431869 21.555 7.503 43.874149 -122.750081 +97453 897 521 282544104 2041256 109.091 0.788 44.002797 -123.863373 +97454 1337 573 145255337 0 56.083 0.000 44.221508 -122.821646 +97455 2538 1024 62194243 441923 24.013 0.171 43.968577 -122.919725 +97456 2985 1266 235544157 943727 90.944 0.364 44.339248 -123.366418 +97457 10208 4440 420606568 34598 162.397 0.013 43.064509 -123.229492 +97458 4733 2190 984420944 3875372 380.087 1.496 43.048859 -124.008537 +97459 14096 6492 264228134 41972738 102.019 16.206 43.484217 -124.182735 +97461 683 289 109574556 32211 42.307 0.012 44.108529 -123.479762 +97462 3938 1786 534683685 5997189 206.443 2.316 43.489969 -123.379196 +97463 3877 1931 110245579 599054 42.566 0.231 43.740681 -122.387167 +97465 2145 1377 237741473 2043240 91.792 0.789 42.762771 -124.341700 +97466 816 446 108626649 447790 41.941 0.173 42.848906 -124.085231 +97467 5339 2897 657959902 15796033 254.040 6.099 43.815954 -123.823798 +97469 2596 1137 128506072 240125 49.616 0.093 42.915025 -123.436869 +97470 19985 9135 447958508 3946218 172.958 1.524 43.250807 -123.242303 +97471 29100 12666 450366700 5037277 173.888 1.945 43.218335 -123.487741 +97473 328 249 132795748 9792810 51.273 3.781 43.675910 -123.852596 +97476 217 123 117464190 656561 45.353 0.253 42.842229 -124.402796 +97477 36874 16047 32304566 566140 12.473 0.219 44.058465 -123.011597 +97478 37011 14675 421440461 3663122 162.719 1.414 44.089212 -122.842245 +97479 9505 4302 164750102 1390049 63.610 0.537 43.390350 -123.208305 +97480 379 203 180023003 2507 69.507 0.001 44.122276 -123.825169 +97481 679 292 19175375 4096 7.404 0.002 43.115279 -123.565980 +97484 235 152 328200528 0 126.719 0.000 42.940021 -122.850300 +97486 714 354 169276790 3687269 65.358 1.424 43.383323 -123.531642 +97487 8449 3382 196144040 13894753 75.732 5.365 43.988492 -123.387762 +97488 1011 606 266746123 1557238 102.991 0.601 44.128635 -122.417475 +97489 868 434 41020039 598568 15.838 0.231 44.164724 -122.620682 +97490 326 155 267909534 0 103.440 0.000 44.004139 -123.612016 +97492 597 296 58917399 223372 22.748 0.086 43.718330 -122.484787 +97493 323 233 141383958 11932206 54.589 4.607 43.889588 -124.024907 +97494 49 18 2427984 0 0.937 0.000 43.330404 -123.328081 +97495 1450 718 19133281 879889 7.387 0.340 43.281871 -123.313383 +97496 7634 3281 226149223 17603 87.317 0.007 43.066481 -123.472705 +97497 1523 737 381088403 16205 147.139 0.006 42.665706 -123.425495 +97498 1814 1659 256305088 8014820 98.960 3.095 44.284611 -124.022676 +97499 1957 908 344618366 244130 133.058 0.094 43.594965 -123.247735 +97501 42117 17816 137565826 136184 53.114 0.053 42.265974 -122.900832 +97502 27694 11316 245349937 3061666 94.730 1.182 42.414858 -122.953986 +97503 10528 4058 215917460 855569 83.366 0.330 42.604691 -122.923719 +97504 44444 19864 121018006 59737 46.725 0.023 42.327975 -122.799964 +97520 24469 12614 798728371 9863303 308.391 3.808 42.181232 -122.579211 +97522 658 297 234586003 407037 90.574 0.157 42.573005 -122.532148 +97523 6264 3119 439250959 435337 169.596 0.168 42.123094 -123.566871 +97524 14459 6115 802071928 4193542 309.682 1.619 42.467463 -122.647726 +97525 4601 2179 257185436 1480556 99.300 0.572 42.450715 -123.060902 +97526 34205 15422 364950829 1761907 140.908 0.680 42.535654 -123.338332 +97527 33713 15365 614062630 2457644 237.091 0.949 42.371142 -123.413626 +97530 6916 3516 937826393 4250646 362.097 1.641 42.152148 -123.057499 +97531 522 238 6602358 39979 2.549 0.015 42.200265 -123.645450 +97532 2378 1114 154337080 834670 59.590 0.322 42.573758 -123.521009 +97534 756 437 261066334 35782 100.798 0.014 42.118976 -123.786285 +97535 5047 2291 8183868 0 3.160 0.000 42.267738 -122.811447 +97536 965 564 176541998 309713 68.163 0.120 42.781908 -122.494698 +97537 6918 3339 307982972 35591 118.913 0.014 42.546408 -123.137820 +97538 2063 1017 367901674 558096 142.048 0.215 42.271112 -123.579993 +97539 3329 1671 56748241 533530 21.911 0.206 42.575840 -122.785786 +97540 7930 3653 108175713 17888 41.767 0.007 42.193618 -122.817754 +97541 1478 760 523571047 650431 202.152 0.251 42.726621 -122.738253 +97543 736 355 116385577 0 44.937 0.000 42.375063 -123.562116 +97544 2206 1080 422121229 89273 162.982 0.034 42.129584 -123.288770 +97601 22459 11139 1438189233 98325727 555.288 37.964 42.442787 -122.076826 +97603 29525 12962 805082421 13317532 310.844 5.142 42.140888 -121.680308 +97604 28 40 192285554 53434185 74.242 20.631 42.953892 -122.213190 +97620 111 92 1612805075 44016288 622.708 16.995 42.204181 -119.787880 +97621 320 270 335325586 578652 129.470 0.223 42.469228 -121.293655 +97622 558 359 425520315 937417 164.294 0.362 42.419733 -121.027513 +97623 2310 1073 958760323 10320131 370.179 3.985 42.201841 -121.270439 +97624 3500 2109 1178113161 45056104 454.872 17.396 43.004051 -121.634730 +97625 199 87 140827258 0 54.374 0.000 42.314770 -121.580890 +97626 88 106 168775705 267417 65.165 0.103 42.667350 -122.027910 +97627 780 383 72189847 1238098 27.873 0.478 42.140336 -122.049929 +97630 5096 2495 2110618259 146321035 814.914 56.495 42.314478 -120.366290 +97632 1466 563 110961048 80070 42.842 0.031 42.036715 -121.434832 +97633 1361 572 76853653 773587 29.673 0.299 42.034140 -121.562829 +97634 212 90 1489723 0 0.575 0.000 42.128304 -121.814925 +97635 289 181 116131643 118605 44.839 0.046 41.929992 -120.294195 +97636 387 230 489014308 225770 188.809 0.087 42.616637 -120.514464 +97637 76 71 489940782 36910817 189.167 14.251 42.703382 -119.890065 +97638 507 313 1228081903 390328 474.165 0.151 43.138881 -121.000604 +97639 570 349 212412273 1134716 82.013 0.438 42.447776 -121.429035 +97640 99 120 1290819584 131689675 498.388 50.846 42.847889 -120.663340 +97641 1313 897 1640918316 338740 633.562 0.131 43.260266 -120.513837 +97701 58993 27682 1758347878 13591186 678.902 5.248 44.112338 -121.206340 +97702 40583 18484 212268868 571723 81.957 0.221 44.000626 -121.233816 +97707 5814 7495 151292186 582918 58.414 0.225 43.826832 -121.491435 +97710 120 81 2134723704 331349 824.221 0.128 42.174184 -118.470538 +97711 61 49 667118496 87235 257.576 0.034 44.707019 -120.671364 +97712 38 19 448316523 58122 173.096 0.022 43.789447 -120.456155 +97720 4530 2316 2678299799 198393380 1034.097 76.600 43.585167 -118.887819 +97721 271 183 4381144157 13494558 1691.569 5.210 42.526763 -118.445323 +97722 91 46 1293796711 3564540 499.538 1.376 42.948090 -118.716044 +97730 252 380 34284012 0 13.237 0.000 44.502297 -121.647176 +97731 278 177 125736130 0 48.547 0.000 43.145997 -121.797480 +97732 139 77 222409963 139476 85.873 0.054 43.397290 -118.443106 +97733 770 1297 907767117 35533929 350.491 13.720 43.371249 -121.999522 +97734 2786 1705 397513868 8502489 153.481 3.283 44.542438 -121.336146 +97735 165 115 874591881 0 337.682 0.000 43.410690 -120.926174 +97736 73 56 1427347052 1380648 551.102 0.533 42.741885 -119.006803 +97737 496 340 67155721 165564 25.929 0.064 43.496880 -121.743673 +97738 1941 906 189589231 1921849 73.201 0.742 43.477671 -119.157429 +97739 11018 6319 538480345 48859057 207.908 18.865 43.694658 -121.460906 +97741 11912 4862 908147013 5702502 350.638 2.202 44.656448 -121.054484 +97750 386 229 993336065 292357 383.529 0.113 44.658141 -120.196698 +97751 129 116 905971420 305907 349.798 0.118 44.145500 -119.869134 +97752 44 44 394567091 451263 152.343 0.174 44.142918 -120.254399 +97753 2016 1026 306457910 612416 118.324 0.236 44.240512 -121.018129 +97754 18574 8919 3133345354 16243824 1209.791 6.272 44.150510 -120.570080 +97756 33554 15222 292781311 141308 113.044 0.055 44.283326 -121.216724 +97758 101 87 1503273648 365404 580.417 0.141 43.339021 -119.872338 +97759 6294 4494 994674066 7141673 384.046 2.757 44.498775 -121.900120 +97760 6757 3442 250649105 549727 96.776 0.212 44.384470 -121.230283 +97761 3987 1051 970867784 2944371 374.854 1.137 44.838526 -121.261509 +97801 21521 8739 1271940128 4518810 491.099 1.745 45.671054 -118.823944 +97810 815 359 521781827 0 201.461 0.000 45.713984 -118.457994 +97812 851 472 1225203673 27931248 473.054 10.784 45.575110 -120.249407 +97813 1302 554 141379835 0 54.587 0.000 45.850430 -118.528095 +97814 12382 6109 1980997077 12718877 764.867 4.911 44.832496 -117.759035 +97817 38 55 345755014 825969 133.497 0.319 44.743414 -118.612462 +97818 4159 1354 204868670 11125 79.100 0.004 45.785367 -119.890171 +97819 29 30 116733349 0 45.071 0.000 44.485347 -117.760392 +97820 1095 598 876727912 296533 338.507 0.114 44.072484 -119.472910 +97823 948 641 1621400060 3858461 626.026 1.490 45.239934 -120.216766 +97824 1661 732 566179875 20851 218.603 0.008 45.354252 -117.756383 +97825 244 171 642631156 32071 248.121 0.012 44.385128 -119.496251 +97826 1085 429 822820004 57988 317.693 0.022 45.664296 -119.232316 +97827 2628 1299 533407307 18202 205.950 0.007 45.575424 -117.838050 +97828 3124 1653 1906775056 91086 736.210 0.035 45.716764 -117.221884 +97830 748 473 1552752602 590010 599.521 0.228 44.966553 -120.183153 +97833 895 440 228152974 0 88.090 0.000 44.928889 -118.014879 +97834 986 697 540675196 624306 208.756 0.241 44.972346 -117.161236 +97835 361 145 487028659 0 188.043 0.000 45.910007 -118.786545 +97836 1983 1163 2400780481 1225618 926.947 0.473 45.320593 -119.486492 +97837 95 66 311217135 9485 120.162 0.004 44.556540 -118.067264 +97838 25346 9497 426229342 27992156 164.568 10.808 45.852978 -119.287228 +97839 475 188 518015024 0 200.007 0.000 45.591170 -119.593042 +97840 98 73 295777905 10777783 114.200 4.161 44.884711 -116.918439 +97841 476 185 49834325 0 19.241 0.000 45.465116 -117.944925 +97842 153 139 1797077397 5517351 693.855 2.130 45.397799 -116.736075 +97843 647 307 914870126 14910905 353.233 5.757 45.502322 -119.902866 +97844 3806 1393 107475730 19684143 41.497 7.600 45.884150 -119.548836 +97845 2652 1341 168393411 0 65.017 0.000 44.401824 -118.903060 +97846 1891 1358 1947017249 7512977 751.748 2.901 45.462699 -117.039586 +97848 195 117 490312441 53512 189.311 0.021 44.722170 -119.580294 +97850 16955 7434 749321189 1113610 289.315 0.430 45.303538 -118.113278 +97856 366 290 1117453064 18184 431.451 0.007 44.815212 -119.125255 +97857 457 250 697924474 1077059 269.470 0.416 45.384444 -117.480281 +97859 123 158 207466418 64805 80.103 0.025 45.531545 -118.403204 +97862 11666 4689 711811977 47032 274.832 0.018 45.922063 -118.316063 +97864 262 179 844501408 0 326.064 0.000 44.805466 -119.435932 +97865 1160 612 989204306 29442 381.934 0.011 44.461466 -119.180040 +97867 763 365 352614569 922641 136.145 0.356 45.076974 -117.987902 +97868 1991 880 1144922590 103091 442.057 0.040 45.409901 -118.854801 +97869 1135 623 889807068 271459 343.556 0.105 44.397563 -118.633979 +97870 573 387 338747084 11594330 130.791 4.477 44.787989 -117.186563 +97873 228 152 198021458 0 76.457 0.000 44.132009 -119.002878 +97874 349 219 593675380 0 229.219 0.000 44.777572 -119.867599 +97875 2610 973 162386295 143302 62.698 0.055 45.818549 -119.132853 +97876 837 378 163963821 0 63.307 0.000 45.516439 -118.035678 +97877 283 521 526144338 132900 203.145 0.051 44.713568 -118.412927 +97880 272 272 811066970 19696 313.155 0.008 45.082438 -118.892255 +97882 7760 2134 61072719 8058959 23.580 3.112 45.897482 -119.366491 +97883 2473 1098 691041137 460799 266.812 0.178 45.192443 -117.634164 +97884 157 160 206023260 4010388 79.546 1.548 44.455141 -118.224967 +97885 1383 700 780503322 0 301.354 0.000 45.655669 -117.511704 +97886 1140 880 368521751 167931 142.287 0.065 45.792905 -118.257458 +97901 692 309 257708781 4119657 99.502 1.591 43.621445 -117.107275 +97903 109 76 309279887 284336 119.414 0.110 44.246623 -117.648559 +97904 176 102 1594768434 2153250 615.744 0.831 43.886287 -118.522302 +97905 133 102 536120897 0 206.997 0.000 44.573820 -117.459512 +97906 249 130 3199687727 792621 1235.406 0.306 43.537039 -117.774678 +97907 560 393 821511138 15886665 317.187 6.134 44.419502 -117.345516 +97908 56 48 913849484 2154761 352.839 0.832 44.312247 -117.928264 +97909 51 22 129029722 0 49.819 0.000 44.246692 -117.418958 +97910 641 419 13426781897 35769653 5184.110 13.811 42.749076 -117.511459 +97911 109 78 1809091573 14897956 698.494 5.752 43.736482 -118.041388 +97913 5531 2103 1781173656 38381964 687.715 14.819 43.613589 -117.323286 +97914 19205 6620 662536813 7113559 255.807 2.747 44.113619 -117.084162 +97918 4537 1829 1111697888 2893868 429.229 1.117 44.040036 -117.354387 +97920 60 28 1201094109 193816 463.745 0.075 44.072175 -117.854271 +98001 31911 11249 48144696 824774 18.589 0.318 47.309496 -122.264469 +98002 31647 13480 18530037 338922 7.154 0.131 47.308286 -122.216812 +98003 44151 18436 30089472 288168 11.618 0.111 47.307713 -122.315773 +98004 27946 16568 18200338 4178457 7.027 1.613 47.618337 -122.205341 +98005 17714 8070 19429635 18305 7.502 0.007 47.614533 -122.168798 +98006 36364 13891 27685306 1941389 10.689 0.750 47.557627 -122.151005 +98007 24889 10996 11341201 25498 4.379 0.010 47.613825 -122.144365 +98008 24411 9552 14250591 7369624 5.502 2.845 47.605797 -122.099118 +98010 5025 2017 38991722 2630485 15.055 1.016 47.312036 -122.000418 +98011 29212 12646 21201057 0 8.186 0.000 47.753335 -122.201968 +98012 51136 20580 39681392 41432 15.321 0.016 47.841169 -122.199069 +98014 6765 2631 117346593 4626219 45.308 1.786 47.660445 -121.891613 +98019 10725 3907 197687698 2115521 76.328 0.817 47.734333 -121.855307 +98020 18304 8794 13396283 2513786 5.172 0.971 47.802344 -122.374193 +98021 26722 10496 26276137 0 10.145 0.000 47.792523 -122.208216 +98022 20987 9179 1051343227 6351560 405.926 2.452 47.216372 -121.912906 +98023 47510 18026 26727719 3607159 10.320 1.393 47.311414 -122.362910 +98024 5650 2246 61945438 1348984 23.917 0.521 47.573424 -121.899182 +98026 35921 15039 24153199 2967939 9.326 1.146 47.840794 -122.332985 +98027 26141 11248 144495296 2939416 55.790 1.135 47.493732 -121.998724 +98028 20419 8566 14667571 1856135 5.663 0.717 47.755680 -122.248076 +98029 24348 10222 23189927 42596 8.954 0.016 47.557085 -122.007748 +98030 33769 12739 18448814 220436 7.123 0.085 47.368522 -122.197976 +98031 36581 12846 19424908 256402 7.500 0.099 47.405479 -122.195772 +98032 33853 14451 43315933 761178 16.724 0.294 47.391942 -122.257192 +98033 34338 16615 24062601 4422742 9.291 1.708 47.675982 -122.193578 +98034 40407 17880 23633758 4377929 9.125 1.690 47.715769 -122.213748 +98036 36000 14359 25075706 34278 9.682 0.013 47.809708 -122.280394 +98037 26889 10647 14931093 0 5.765 0.000 47.839227 -122.285468 +98038 31171 11387 172206702 1011079 66.489 0.390 47.419378 -121.958008 +98039 2971 1163 3737877 11129640 1.443 4.297 47.631695 -122.240405 +98040 22699 9930 16370442 17583045 6.321 6.789 47.567716 -122.232776 +98042 43673 15820 73577362 3128023 28.408 1.208 47.367737 -122.117029 +98043 19943 8615 10570552 275673 4.081 0.106 47.791198 -122.307751 +98045 13888 5536 872796478 15652767 336.989 6.044 47.390316 -121.606826 +98047 6339 2322 6277098 74330 2.424 0.029 47.261769 -122.248889 +98050 322 133 8567888 797 3.308 0.000 47.545269 -121.939288 +98051 3270 1304 132339462 1663208 51.097 0.642 47.346210 -121.881291 +98052 58442 25674 52053966 2151988 20.098 0.831 47.680990 -122.120531 +98053 18784 7652 73465062 461728 28.365 0.178 47.669312 -122.010131 +98055 21904 9498 12373996 249945 4.778 0.097 47.446982 -122.201521 +98056 32489 13746 19466244 4020104 7.516 1.552 47.512527 -122.190248 +98057 10613 6049 15780776 171884 6.093 0.066 47.472020 -122.221900 +98058 41938 16120 49037425 2139998 18.933 0.826 47.442737 -122.123973 +98059 34463 13004 51737366 147702 19.976 0.057 47.499676 -122.113291 +98065 12699 4556 191904766 2249153 74.095 0.868 47.584223 -121.791951 +98068 403 894 687680542 30965563 265.515 11.956 47.431918 -121.374061 +98070 10624 5552 95633751 33221105 36.924 12.827 47.407196 -122.473322 +98072 22312 9091 46958893 70284 18.131 0.027 47.760785 -122.130531 +98074 25748 8942 27654818 4010174 10.678 1.548 47.622542 -122.044210 +98075 20715 7005 24552292 4217658 9.480 1.628 47.586092 -122.037436 +98077 13585 4775 44819919 575692 17.305 0.222 47.752379 -122.060283 +98087 29976 12255 14418856 488086 5.567 0.188 47.863071 -122.266976 +98092 39816 14935 115596899 1840608 44.632 0.711 47.290287 -122.126874 +98101 10238 9226 1344752 271084 0.519 0.105 47.610902 -122.336422 +98102 20756 14289 3396112 644264 1.311 0.249 47.637140 -122.321891 +98103 45911 24128 12005476 1705646 4.635 0.659 47.678255 -122.338152 +98104 13095 7711 2007034 252657 0.775 0.098 47.601884 -122.329459 +98105 43924 17161 10689306 6434743 4.127 2.484 47.659861 -122.284977 +98106 22873 9990 14236532 841740 5.497 0.325 47.544034 -122.349874 +98107 21147 12360 5704026 704217 2.202 0.272 47.667527 -122.377551 +98108 22374 8194 19384665 964749 7.484 0.372 47.534862 -122.305794 +98109 20715 13906 5178191 1079071 1.999 0.417 47.631863 -122.344267 +98110 23025 10584 71512405 29499450 27.611 11.390 47.646967 -122.534561 +98112 21077 10897 8187984 3833109 3.161 1.480 47.632810 -122.288511 +98115 46206 21623 17051603 5468537 6.584 2.111 47.685746 -122.281589 +98116 22241 11961 7657204 1880414 2.956 0.726 47.573933 -122.400175 +98117 31365 14213 10214490 1569166 3.944 0.606 47.687761 -122.384870 +98118 42731 16162 16178230 6840313 6.246 2.641 47.540246 -122.268545 +98119 21039 11592 6308526 1626237 2.436 0.628 47.638679 -122.370946 +98121 12628 10149 1141212 546001 0.441 0.211 47.615192 -122.350581 +98122 31454 17123 5992910 3155568 2.314 1.218 47.611046 -122.293207 +98125 37081 18677 13960901 3976391 5.390 1.535 47.716513 -122.295829 +98126 20698 9805 7963648 1777439 3.075 0.686 47.555647 -122.379590 +98133 44555 21903 18378984 178301 7.096 0.069 47.740475 -122.342869 +98134 644 236 8738521 1888144 3.374 0.729 47.577599 -122.338045 +98136 14770 7533 5954028 2163641 2.299 0.835 47.536464 -122.394409 +98144 26881 12660 8818482 4545367 3.405 1.755 47.585621 -122.292492 +98146 25922 10222 12045888 1761080 4.651 0.680 47.500058 -122.357848 +98148 10010 4588 8117264 0 3.134 0.000 47.444098 -122.324859 +98154 0 0 9147 0 0.004 0.000 47.606211 -122.333792 +98155 32778 13905 19604378 1713431 7.569 0.662 47.754413 -122.300477 +98158 0 0 5726911 0 2.211 0.000 47.449670 -122.307643 +98164 141 126 9165 0 0.004 0.000 47.605962 -122.332029 +98166 20301 8953 14685852 4037490 5.670 1.559 47.451576 -122.352986 +98168 33734 12541 23030102 426890 8.892 0.165 47.489569 -122.299960 +98174 0 0 9145 0 0.004 0.000 47.604569 -122.335359 +98177 19030 8078 14752872 3576381 5.696 1.381 47.742239 -122.376608 +98178 24092 9290 12564278 2636151 4.851 1.018 47.499387 -122.243851 +98188 23111 9959 19551348 755259 7.549 0.292 47.447335 -122.273092 +98195 0 0 183452 50845 0.071 0.020 47.648763 -122.308282 +98198 34584 14328 20167178 2323850 7.787 0.897 47.391324 -122.314976 +98199 19686 9810 10815353 3889313 4.176 1.502 47.651371 -122.407349 +98201 29582 13899 19365402 6934494 7.477 2.677 48.006311 -122.210044 +98203 34354 14245 27723263 2260897 10.704 0.873 47.945519 -122.231096 +98204 39380 17330 20779331 0 8.023 0.000 47.901362 -122.260891 +98205 12283 4599 49040504 6324341 18.935 2.442 47.988498 -122.150188 +98207 758 1 575949 210069 0.222 0.081 47.987720 -122.223307 +98208 51802 19792 41918895 587506 16.185 0.227 47.901779 -122.187144 +98220 634 276 52834909 245140 20.400 0.095 48.684945 -122.195194 +98221 20429 11005 137490614 34329970 53.085 13.255 48.505025 -122.659285 +98222 33 166 17123093 16710879 6.611 6.452 48.566815 -122.818103 +98223 40815 16079 827807585 4386628 319.618 1.694 48.216688 -121.952185 +98224 294 309 510454144 9775389 197.087 3.774 47.595814 -121.470910 +98225 46172 20986 32513414 6412818 12.553 2.476 48.754092 -122.508129 +98226 41235 17623 277732046 32559380 107.233 12.571 48.798598 -122.445452 +98229 30321 13600 127275005 13232957 49.141 5.109 48.696127 -122.413538 +98230 15710 8802 113340436 12450970 43.761 4.807 48.953983 -122.712014 +98232 3920 1792 138642205 4959379 53.530 1.915 48.570552 -122.411065 +98233 14871 5897 87664372 682829 33.847 0.264 48.500949 -122.345587 +98235 103 45 79407 0 0.031 0.000 48.462505 -122.233980 +98236 5635 3430 59279796 25581824 22.888 9.877 47.948393 -122.412822 +98237 4025 2329 827707761 36482282 319.580 14.086 48.566272 -121.689225 +98238 85 29 563363 0 0.218 0.000 48.335389 -122.344620 +98239 6646 3714 75803716 34548673 29.268 13.339 48.196498 -122.657954 +98240 3061 1157 53583344 57318 20.689 0.022 48.948225 -122.620684 +98241 2129 1024 1060181498 6553150 409.338 2.530 48.191666 -121.208822 +98243 507 607 13302672 26163547 5.136 10.102 48.608978 -123.003654 +98244 3001 2145 1264000692 12842172 488.033 4.958 48.831811 -121.933829 +98245 3651 2565 82864214 30830854 31.994 11.904 48.619663 -122.871770 +98247 9072 3282 164987407 3040843 63.702 1.174 48.911877 -122.330145 +98248 22361 8739 183462686 5975845 70.835 2.307 48.864419 -122.619419 +98249 4561 3097 41291160 22831539 15.943 8.815 48.014236 -122.542794 +98250 7664 5556 160966488 118022465 62.150 45.569 48.573276 -123.115077 +98251 4567 2174 394887169 6501491 152.467 2.510 47.912317 -121.606822 +98252 8777 3736 692257955 5334212 267.282 2.060 48.072560 -121.689606 +98253 1837 1470 32118442 15897676 12.401 6.138 48.092397 -122.576537 +98255 245 119 1349289 0 0.521 0.000 48.522120 -121.989398 +98256 420 454 218855030 860036 84.500 0.332 47.821438 -121.406433 +98257 4134 2227 47486891 5659405 18.335 2.185 48.406025 -122.512147 +98258 30524 11341 74699782 4681283 28.842 1.807 48.044199 -122.076876 +98260 5278 3285 68456492 16909788 26.431 6.529 48.033231 -122.453899 +98261 2383 2410 77211492 63717718 29.812 24.602 48.482492 -122.883959 +98262 964 964 23949593 833670 9.247 0.322 48.674357 -122.646705 +98263 76 35 421041 238126 0.163 0.092 48.523723 -122.065301 +98264 18893 7254 147753338 2562344 57.048 0.989 48.950253 -122.459792 +98266 3642 1655 62038225 735181 23.953 0.284 48.963970 -122.122666 +98267 534 477 900046747 6103746 347.510 2.357 48.437623 -121.299048 +98270 45899 17093 37060532 442210 14.309 0.171 48.056723 -122.146904 +98271 27184 10496 120688056 12881761 46.598 4.974 48.089968 -122.237681 +98272 27942 9398 283032842 1992027 109.280 0.769 47.848591 -121.894951 +98273 28717 10954 217802411 12472693 84.094 4.816 48.402754 -122.376148 +98274 16613 7377 365437844 6752081 141.096 2.607 48.348771 -122.145467 +98275 20256 8548 19768770 2592435 7.633 1.001 47.916514 -122.303436 +98276 450 151 542593 0 0.209 0.000 48.926701 -122.326183 +98277 37823 16752 146129625 38187570 56.421 14.744 48.315856 -122.628582 +98278 1065 1 13633654 3705621 5.264 1.431 48.339706 -122.671656 +98279 608 680 36329362 23798364 14.027 9.189 48.638895 -122.807614 +98280 480 444 18480114 3873387 7.135 1.496 48.608001 -122.910285 +98281 1314 2068 12652231 4389799 4.885 1.695 48.991930 -123.051184 +98282 15661 8485 102982587 43985950 39.762 16.983 48.214112 -122.500231 +98283 434 297 1419061566 69604505 547.903 26.874 48.802055 -121.260324 +98284 24331 10142 731873913 17970539 282.578 6.938 48.546532 -122.123032 +98286 240 245 19964274 24225048 7.708 9.353 48.568814 -122.957539 +98288 333 515 547876467 10860402 211.536 4.193 47.661553 -121.278786 +98290 32714 13141 306698662 7381221 118.417 2.850 47.955602 -121.986472 +98292 20987 8779 192963470 14631046 74.504 5.649 48.216792 -122.314390 +98294 6595 2568 155411158 748480 60.005 0.289 47.874679 -121.753864 +98295 2409 989 74785340 385188 28.875 0.149 48.981355 -122.200106 +98296 27956 9814 88264899 1683406 34.079 0.650 47.839066 -122.101113 +98297 106 211 11703383 9005685 4.519 3.477 48.702062 -123.026507 +98303 1037 1025 20071339 35046095 7.750 13.531 47.157405 -122.693536 +98304 759 766 891110795 10382845 344.060 4.009 46.883744 -121.736809 +98305 358 228 310421661 2764631 119.854 1.067 48.062891 -124.439072 +98310 18703 9061 15439818 6921558 5.961 2.672 47.591960 -122.626274 +98311 25880 10305 28116579 9526971 10.856 3.678 47.631197 -122.631017 +98312 30203 14105 159168131 15104140 61.455 5.832 47.580848 -122.784369 +98314 3329 28 1495426 2209121 0.577 0.853 47.556287 -122.637118 +98315 6054 1281 28766162 2962518 11.107 1.144 47.724550 -122.716011 +98320 1250 1384 252865213 4379982 97.632 1.691 47.718543 -122.966923 +98321 15152 5534 93325269 1168628 36.033 0.451 47.152606 -122.071738 +98323 702 257 638112512 3056856 246.377 1.180 47.043083 -121.827511 +98325 1848 871 77907774 603700 30.080 0.233 47.966648 -122.759697 +98326 1412 371 754265256 32608375 291.223 12.590 48.179735 -124.411660 +98327 8267 3271 17788609 5712976 6.868 2.206 47.102369 -122.664690 +98328 10433 4329 548825745 12793024 211.903 4.939 46.865890 -122.157916 +98329 10545 4240 66967775 14540323 25.856 5.614 47.368089 -122.726052 +98330 149 81 16907606 134033 6.528 0.052 46.776116 -122.168652 +98331 6261 2533 2022178740 125407709 780.768 48.420 47.777349 -124.191674 +98332 15855 6494 54162176 8478824 20.912 3.274 47.372495 -122.595828 +98333 3633 1565 13514702 24930837 5.218 9.626 47.252432 -122.639996 +98335 24925 10477 57778439 26846825 22.308 10.366 47.296947 -122.623661 +98336 970 475 179111986 80154 69.156 0.031 46.582238 -122.074030 +98337 6697 3436 2704468 1780445 1.044 0.687 47.568714 -122.631558 +98338 24098 9019 139310526 876436 53.788 0.338 47.034316 -122.276854 +98339 3326 1645 14902871 2640384 5.754 1.019 48.024005 -122.749033 +98340 2537 1531 22516951 7536069 8.694 2.910 47.907713 -122.570676 +98342 1370 758 6208869 2121961 2.397 0.819 47.755326 -122.511506 +98345 554 264 1272139 458761 0.491 0.177 47.698622 -122.623850 +98346 9297 4089 71464150 13013821 27.592 5.025 47.821069 -122.525526 +98349 4614 2573 55159877 54104847 21.297 20.890 47.272817 -122.763956 +98350 460 159 8214634 243998 3.172 0.094 47.906330 -124.621522 +98351 1115 725 22137151 28461399 8.547 10.989 47.199642 -122.774272 +98353 4 4 2078858 3000894 0.803 1.159 47.538640 -122.492613 +98354 6976 3084 6237568 103929 2.408 0.040 47.251994 -122.317289 +98355 628 385 491306508 2742115 189.695 1.059 46.703778 -122.040018 +98356 2149 1060 259126114 17287327 100.049 6.675 46.561126 -122.290287 +98357 1414 563 110004759 462073 42.473 0.178 48.333855 -124.635404 +98358 897 611 27655236 8913203 10.678 3.441 48.063796 -122.713163 +98359 4887 1982 36315365 3228804 14.021 1.247 47.431079 -122.574916 +98360 12221 4497 179987033 3890012 69.493 1.502 47.040716 -122.144709 +98361 1158 1525 1187660089 7612728 458.558 2.939 46.538662 -121.504714 +98362 22230 10915 567302775 175832 219.037 0.068 47.930938 -123.368031 +98363 13343 6564 1639355751 27831088 632.959 10.746 48.002744 -123.820847 +98364 45 23 779380 0 0.301 0.000 47.847110 -122.588364 +98365 4528 2961 96360969 13062460 37.205 5.043 47.884830 -122.701370 +98366 34258 14423 60023697 14335127 23.175 5.535 47.536047 -122.578944 +98367 27693 10814 208413122 4010517 80.469 1.548 47.461264 -122.699443 +98368 14724 8417 137583639 26654199 53.121 10.291 48.034402 -122.838953 +98370 29528 12638 146489098 25589757 56.560 9.880 47.754028 -122.626331 +98371 20468 8867 29867982 198584 11.532 0.077 47.199448 -122.323541 +98372 22475 9756 35314275 344504 13.635 0.133 47.205648 -122.266339 +98373 22246 9178 24401165 63519 9.421 0.025 47.145083 -122.324153 +98374 37360 14074 41032501 383201 15.843 0.148 47.129080 -122.263923 +98375 26863 9270 25169192 4691 9.718 0.002 47.103783 -122.322978 +98376 1998 1329 302919715 38761336 116.958 14.966 47.846837 -122.852262 +98377 1922 1157 551042622 7884575 212.759 3.044 46.524840 -121.894812 +98380 4173 1915 108540302 15043550 41.908 5.808 47.578608 -122.902886 +98381 371 297 174200975 0 67.259 0.000 48.273676 -124.474858 +98382 26856 14501 444691010 73303 171.696 0.028 48.014382 -123.077988 +98383 19727 8708 46551571 4025318 17.974 1.554 47.662470 -122.716166 +98385 459 185 1225463 33627 0.473 0.013 47.136162 -122.089493 +98387 43173 15384 73507041 983285 28.381 0.380 47.060959 -122.394221 +98388 7508 2867 23145675 30645173 8.937 11.832 47.209740 -122.684422 +98390 10461 4688 25032472 444332 9.665 0.172 47.209445 -122.227319 +98391 44309 16281 99908435 2613401 38.575 1.009 47.177094 -122.166317 +98392 2994 1367 4256226 856840 1.643 0.331 47.732280 -122.562318 +98394 1107 588 14363481 2529520 5.546 0.977 47.310560 -122.778480 +98396 662 239 35538591 61771 13.722 0.024 47.094772 -122.001717 +98402 6356 3933 2439379 560802 0.942 0.217 47.250158 -122.439030 +98403 7713 4569 2842069 0 1.097 0.000 47.265966 -122.458532 +98404 32086 11390 19720772 58547 7.614 0.023 47.208981 -122.411638 +98405 22851 10412 10676833 47321 4.122 0.018 47.245647 -122.472399 +98406 21610 10220 11053311 1054058 4.268 0.407 47.264107 -122.512591 +98407 19885 9427 14567007 4196701 5.624 1.620 47.290365 -122.517747 +98408 18830 7656 8757847 113481 3.381 0.044 47.197399 -122.446518 +98409 22989 9992 18412393 19161 7.109 0.007 47.210957 -122.481577 +98416 1014 50 269804 0 0.104 0.000 47.262521 -122.481199 +98418 10069 4279 4359597 0 1.683 0.000 47.223229 -122.446523 +98421 1308 27 17280014 4160149 6.672 1.606 47.260637 -122.400209 +98422 20151 7866 17298972 303026 6.679 0.117 47.290403 -122.392541 +98424 10140 4229 16337139 368362 6.308 0.142 47.235341 -122.354192 +98430 13 24 992075 255658 0.383 0.099 47.117835 -122.567171 +98433 14584 3654 51009435 3655033 19.695 1.411 47.112811 -122.589062 +98438 366 10 2204010 0 0.851 0.000 47.131631 -122.496967 +98439 4839 2024 22582097 18871 8.719 0.007 47.132572 -122.512691 +98443 5371 2216 13154267 105066 5.079 0.041 47.207776 -122.372506 +98444 33956 13520 17425684 134972 6.728 0.052 47.153041 -122.448831 +98445 29661 11403 26979260 0 10.417 0.000 47.139967 -122.409902 +98446 10173 4045 28470498 55859 10.993 0.022 47.131879 -122.375825 +98447 842 0 122035 0 0.047 0.000 47.144096 -122.443441 +98465 6340 3244 4304096 1722544 1.662 0.665 47.251761 -122.536065 +98466 26944 12169 15460766 2149972 5.969 0.830 47.226050 -122.539435 +98467 14728 6297 11896797 9213814 4.593 3.557 47.203279 -122.567719 +98498 27546 12330 22002787 2908964 8.495 1.123 47.159194 -122.553122 +98499 29750 13719 23852571 1671777 9.210 0.645 47.168693 -122.503347 +98501 38133 17048 89203449 3336872 34.442 1.288 46.974504 -122.875987 +98502 30491 13997 140811824 43376343 54.368 16.748 47.087554 -123.021968 +98503 36611 15998 29227044 2501089 11.285 0.966 47.022032 -122.797103 +98506 18199 8432 57955564 19988717 22.377 7.718 47.108292 -122.870623 +98512 28130 12039 389166807 4845429 150.258 1.871 46.974998 -123.063465 +98513 31975 12755 152955099 3393287 59.056 1.310 46.977030 -122.733942 +98516 20166 8481 74190979 35979290 28.645 13.892 47.109684 -122.794261 +98520 23814 9519 618430741 74611918 238.777 28.808 47.205638 -123.754329 +98524 3232 1787 36969791 6102743 14.274 2.356 47.354792 -122.862327 +98526 398 236 225366174 18145747 87.014 7.006 47.454196 -123.990748 +98527 324 230 25988400 33421089 10.034 12.904 46.585142 -123.924726 +98528 9983 5013 189011920 33451257 72.978 12.916 47.443080 -122.901331 +98530 565 245 12908941 158630 4.984 0.061 46.790510 -122.823854 +98531 24121 10301 353875685 3604903 136.632 1.392 46.730437 -122.902774 +98532 23596 9580 835383096 2778310 322.543 1.073 46.626290 -123.052671 +98533 609 287 311104187 571473 120.118 0.221 46.670730 -122.419588 +98535 445 392 26498905 3659648 10.231 1.413 47.106431 -124.137951 +98536 211 153 158991185 1545847 61.387 0.597 47.194976 -124.104372 +98537 2129 938 501254041 249399 193.535 0.096 46.832400 -123.597466 +98538 304 135 273773355 387659 105.704 0.150 46.482768 -123.146135 +98541 10101 4434 547573891 4547801 211.419 1.756 47.060749 -123.389634 +98542 656 284 35204952 0 13.593 0.000 46.525203 -122.790632 +98544 73 30 260229 0 0.100 0.000 46.738971 -123.026988 +98546 2909 2168 68581895 12998931 26.480 5.019 47.319865 -122.924625 +98547 1436 1560 157790677 27274883 60.923 10.531 46.783949 -124.035956 +98548 2193 2224 355695104 6545662 137.335 2.527 47.382952 -123.411582 +98550 11382 5184 554530299 112113396 214.105 43.287 47.093788 -123.925662 +98552 508 219 237437008 2146752 91.675 0.829 47.315176 -123.924198 +98555 599 850 52820573 194950 20.394 0.075 47.534733 -123.060865 +98557 3225 1415 93393706 363313 36.060 0.140 47.044210 -123.268321 +98558 192 54 327359 29963 0.126 0.012 46.933941 -122.557218 +98559 93 34 40625 0 0.016 0.000 46.958822 -123.327364 +98560 142 60 149261191 96337 57.630 0.037 47.302350 -123.425805 +98562 195 222 2542358 68180 0.982 0.026 47.238392 -124.200325 +98563 8001 3407 946982315 15852662 365.632 6.121 47.193599 -123.615371 +98564 2459 1244 363144019 24246406 140.211 9.362 46.449477 -122.419650 +98565 618 243 1603995 0 0.619 0.000 46.578315 -122.901965 +98568 2519 1058 389838892 2250535 150.518 0.869 46.854805 -123.313712 +98569 5784 4998 37939902 61449322 14.649 23.726 46.993744 -124.136704 +98570 3889 1660 307602563 91832 118.766 0.035 46.630713 -122.650947 +98571 483 447 22678197 2808096 8.756 1.084 47.194626 -124.170859 +98572 797 362 89608676 363560 34.598 0.140 46.546338 -123.314084 +98575 228 166 262809374 1032502 101.471 0.399 47.415917 -123.802838 +98576 4667 1955 182880852 2457367 70.611 0.949 46.837152 -122.638356 +98577 6338 2923 991184568 25952383 382.699 10.020 46.641849 -123.610389 +98579 12870 5009 234361852 1655819 90.488 0.639 46.788201 -123.125473 +98580 11099 4331 364775307 5145674 140.841 1.987 46.998953 -122.521882 +98581 424 285 76099428 0 29.382 0.000 46.357874 -123.067314 +98582 611 301 18385643 469138 7.099 0.181 46.523682 -122.625740 +98583 124 47 283657 7477 0.110 0.003 47.000875 -123.486596 +98584 36630 16557 883190500 93758883 341.002 36.201 47.237448 -123.145812 +98585 655 388 57419162 5326991 22.170 2.057 46.550722 -122.477076 +98586 1944 978 350850902 101786697 135.464 39.300 46.551443 -123.830811 +98587 942 313 74150653 8075884 28.630 3.118 47.308681 -124.201924 +98588 1829 1681 126445138 2522027 48.821 0.974 47.452373 -123.020025 +98589 7320 3063 238300083 4821862 92.008 1.862 46.834018 -122.816364 +98590 356 345 7980778 12070388 3.081 4.660 46.707873 -123.998528 +98591 3952 1710 299345903 4010427 115.578 1.548 46.441023 -122.743598 +98592 1764 1249 45670104 4845676 17.633 1.871 47.326304 -123.082076 +98593 1113 477 34719238 110619 13.405 0.043 46.402683 -123.010061 +98595 2917 2083 14137875 8999831 5.459 3.475 46.888036 -124.113375 +98596 6524 2692 231197016 468670 89.266 0.181 46.492258 -122.952677 +98597 21557 8649 289029254 9599115 111.595 3.706 46.844426 -122.492804 +98601 2982 1109 176749082 16569909 68.243 6.398 45.943439 -122.362516 +98602 200 122 145030761 0 55.997 0.000 45.867106 -121.265491 +98603 1017 552 302522143 13528046 116.804 5.223 46.055519 -122.414757 +98604 34232 11726 187325219 137290 72.327 0.053 45.805747 -122.510777 +98605 1225 538 111955065 6589628 43.226 2.544 45.776892 -121.665459 +98606 9027 3076 96898263 0 37.413 0.000 45.729741 -122.456373 +98607 27899 10177 121658124 6963788 46.972 2.689 45.642226 -122.379980 +98610 2871 1383 952000245 7669772 367.569 2.961 45.865890 -122.065218 +98611 9133 3760 322678040 4431420 124.587 1.711 46.305138 -122.900688 +98612 2704 1391 195711118 25677147 75.564 9.914 46.215680 -123.325266 +98613 400 176 239457793 0 92.455 0.000 45.736724 -120.965657 +98614 353 202 73305884 8813383 28.304 3.403 46.296990 -123.909315 +98616 150 472 537262707 25946762 207.438 10.018 46.193280 -122.132873 +98617 1042 458 28777996 1713782 11.111 0.662 45.643032 -121.167493 +98619 457 255 386699373 136260 149.305 0.053 45.975881 -121.274747 +98620 7123 3515 1260155351 14992868 486.549 5.789 45.874447 -120.775830 +98621 276 133 108841488 170887 42.024 0.066 46.379142 -123.540555 +98624 1532 924 87794909 58059369 33.898 22.417 46.351431 -123.992209 +98625 6133 2652 208548406 4763003 80.521 1.839 46.037251 -122.733384 +98626 24523 10088 353415991 2381711 136.455 0.920 46.172087 -122.774006 +98628 385 194 22971960 0 8.870 0.000 45.887853 -121.081948 +98629 8364 3038 100148090 450193 38.667 0.174 45.876604 -122.619180 +98631 3243 3201 40236924 27904939 15.536 10.774 46.404766 -124.031543 +98632 49205 21383 334435769 21162011 129.126 8.171 46.210694 -123.057242 +98635 1735 927 332246961 5605875 128.281 2.164 45.748958 -121.184345 +98638 1525 705 437297731 47861244 168.842 18.479 46.394046 -123.761307 +98639 847 418 33159189 408025 12.803 0.158 45.669909 -121.989665 +98640 4380 4939 52515964 114019472 20.277 44.023 46.582723 -124.027257 +98641 5 13 106518 0 0.041 0.000 46.546416 -124.029936 +98642 15696 5991 147852512 7740811 57.086 2.989 45.807695 -122.693908 +98643 362 219 94347859 11671039 36.428 4.506 46.295441 -123.619706 +98644 473 495 1823365 325123 0.704 0.126 46.329607 -124.056969 +98645 1429 657 38597644 6444103 14.903 2.488 46.331866 -122.760081 +98647 404 200 158512418 7361115 61.202 2.842 46.315247 -123.401288 +98648 3100 1541 319037546 23891280 123.181 9.224 45.706254 -121.956311 +98649 895 377 516317446 105807 199.351 0.041 46.314143 -122.534600 +98650 959 528 212884557 109640 82.195 0.042 45.947869 -121.540782 +98651 939 432 46239026 4718695 17.853 1.822 45.739924 -121.583462 +98660 11858 5552 38698053 22297016 14.941 8.609 45.678996 -122.720499 +98661 41740 18556 27512147 1847074 10.622 0.713 45.640067 -122.625018 +98662 31644 12331 33338974 0 12.872 0.000 45.688498 -122.577847 +98663 14115 6197 11134084 70154 4.299 0.027 45.657396 -122.663161 +98664 21771 9487 13615216 771148 5.257 0.298 45.619510 -122.577179 +98665 24057 10045 20802164 240822 8.032 0.093 45.679501 -122.660560 +98670 113 71 66449222 0 25.656 0.000 45.858976 -121.140927 +98671 21220 8593 223526619 16163054 86.304 6.241 45.614420 -122.238447 +98672 6146 2771 376400105 3519062 145.329 1.359 45.839047 -121.451833 +98673 404 208 33643510 13213494 12.990 5.102 45.656199 -121.028435 +98674 12029 4606 214836558 11775068 82.949 4.546 45.951267 -122.665541 +98675 6713 2052 305779639 131064 118.062 0.051 45.828452 -122.342925 +98682 52893 18926 78100407 0 30.155 0.000 45.673213 -122.481749 +98683 30832 13684 18805420 1308285 7.261 0.505 45.603287 -122.510170 +98684 26968 10316 18064308 7161 6.975 0.003 45.630556 -122.514839 +98685 26217 9903 25188829 387897 9.725 0.150 45.715191 -122.693108 +98686 17385 6849 29788044 10880 11.501 0.004 45.723392 -122.624397 +98801 40977 16686 420417984 9889594 162.324 3.818 47.423594 -120.336633 +98802 28719 11297 464787144 8115822 179.455 3.134 47.487425 -120.178727 +98811 71 34 13423862 0 5.183 0.000 47.713843 -120.376298 +98812 4899 1775 686964768 23112974 265.239 8.924 48.153148 -119.742877 +98813 3176 1084 305926126 19059168 118.119 7.359 48.040679 -119.560504 +98814 466 351 388376215 340655 149.953 0.132 48.206872 -120.159044 +98815 7233 2864 307735121 896528 118.817 0.346 47.460575 -120.478283 +98816 6394 4676 1027248248 106438670 396.623 41.096 48.002922 -120.339990 +98817 366 144 2544385 912460 0.982 0.352 47.791063 -119.994343 +98819 258 287 320507529 2495709 123.749 0.964 48.616335 -119.821449 +98821 519 213 4754899 198324 1.836 0.077 47.549717 -120.558613 +98822 1953 999 1131837710 5582389 437.005 2.155 47.901926 -120.550451 +98823 11055 4576 772478178 1247699 298.256 0.482 47.312005 -119.620518 +98824 181 82 990406 0 0.382 0.000 47.077793 -119.858684 +98826 6504 5598 2631314141 20723176 1015.956 8.001 47.783145 -120.843168 +98827 312 254 825195816 11495832 318.610 4.439 48.868662 -119.770722 +98828 2146 817 146763469 4200849 56.666 1.622 47.310078 -120.178258 +98829 564 274 178304282 767839 68.844 0.296 48.297259 -119.805560 +98830 494 276 1166999173 7045708 450.581 2.720 47.895366 -119.523246 +98831 3708 2147 121577832 19050001 46.941 7.355 47.959472 -120.102873 +98832 320 103 517811402 522220 199.928 0.202 47.371630 -119.024249 +98833 150 360 522121524 180217 201.592 0.070 48.772938 -120.640178 +98834 239 194 191382871 62892 73.893 0.024 48.120299 -120.066506 +98836 584 225 19786083 157461 7.639 0.061 47.475666 -120.441010 +98837 39722 15479 1250595193 83125107 482.858 32.095 47.149902 -119.305972 +98840 4851 2145 1081267659 16015033 417.480 6.183 48.315129 -119.579942 +98841 9197 3866 993865626 15598530 383.734 6.023 48.359648 -119.268574 +98843 1817 1224 169761186 12802170 65.545 4.943 47.756786 -120.057948 +98844 4740 3038 856254904 16498656 330.602 6.370 48.927280 -119.227952 +98845 128 71 180122104 13938 69.546 0.005 47.431579 -119.938731 +98846 1173 603 230695250 6566818 89.072 2.535 48.014877 -119.971168 +98847 1920 905 418773216 454327 161.689 0.175 47.419818 -120.643727 +98848 11518 4958 1165967409 22124442 450.183 8.542 47.168643 -119.842939 +98849 1078 733 397586050 2500306 153.509 0.965 48.540990 -119.409523 +98850 1543 596 58790268 7071904 22.699 2.730 47.309924 -120.075983 +98851 4014 2084 411451359 11233329 158.862 4.337 47.412103 -119.439646 +98852 104 199 582849631 21062060 225.040 8.132 48.234024 -120.555847 +98853 23 28 20248632 5466158 7.818 2.110 47.460007 -119.263890 +98855 5863 3400 1662923140 7023667 642.058 2.712 48.674509 -119.253009 +98856 2464 1587 1174332087 864578 453.412 0.334 48.343028 -120.263948 +98857 4082 1340 421950818 5410856 162.916 2.089 46.985135 -119.052563 +98858 1521 708 1002061010 3723474 386.898 1.438 47.649424 -119.902780 +98859 238 249 348134731 245917 134.416 0.095 48.797928 -118.956388 +98860 259 142 199037454 59513 76.849 0.023 47.461956 -119.200475 +98862 2218 2072 1160184395 2481634 447.950 0.958 48.602734 -120.320530 +98901 30169 10287 302110890 4369335 116.646 1.687 46.722625 -120.406039 +98902 46322 17714 23373808 273352 9.025 0.106 46.596673 -120.533851 +98903 14517 5648 749040854 535943 289.206 0.207 46.544080 -121.022416 +98908 35240 14656 255917365 669380 98.810 0.258 46.615206 -120.724113 +98921 516 118 326160 0 0.126 0.000 46.431102 -120.318817 +98922 5468 4639 1158190455 207111 447.180 0.080 47.267033 -120.878981 +98923 1434 464 15623478 0 6.032 0.000 46.666324 -120.717630 +98925 689 827 325189820 9152908 125.556 3.534 47.257288 -121.270878 +98926 30239 12883 1494509227 5979438 577.033 2.309 47.014195 -120.458691 +98929 0 27 2996126 0 1.157 0.000 46.881702 -121.285147 +98930 15252 4503 123083474 662912 47.523 0.256 46.269100 -119.891977 +98932 5032 1361 87507442 481103 33.787 0.186 46.332713 -120.156231 +98933 1267 365 62558521 0 24.154 0.000 46.402225 -120.631233 +98934 1117 489 2210185 0 0.853 0.000 46.981871 -120.415053 +98935 4190 1133 693407684 3154409 267.726 1.218 46.132575 -120.086267 +98936 5872 1964 366600477 961913 141.545 0.371 46.538212 -120.143700 +98937 4112 2478 2032983911 19182289 784.940 7.406 46.811116 -121.190309 +98938 2177 611 95672912 0 36.940 0.000 46.388203 -120.094179 +98939 167 52 738747 0 0.285 0.000 46.496847 -120.465789 +98940 760 1076 277789488 19657910 107.255 7.590 47.476791 -121.080463 +98941 919 647 12531574 0 4.838 0.000 47.223214 -120.982011 +98942 16973 6471 487909447 1343761 188.383 0.519 46.801335 -120.664810 +98943 660 342 2223598 19748 0.859 0.008 47.184578 -120.964863 +98944 22014 6415 1497260973 27334959 578.096 10.554 46.497628 -119.630269 +98946 495 229 47267202 231638 18.250 0.089 47.080290 -120.724620 +98947 2902 976 106837711 0 41.250 0.000 46.687471 -120.801581 +98948 13225 3701 565156330 296374 218.208 0.114 46.297966 -120.312620 +98950 177 73 60332577 21297341 23.295 8.223 46.896466 -119.988074 +98951 13739 3824 389536396 454920 150.401 0.176 46.456028 -120.513604 +98952 2330 662 533301571 180286 205.909 0.070 46.356211 -120.763066 +98953 6681 2359 163160443 0 62.997 0.000 46.442291 -120.226814 +99001 6151 1742 18401954 0 7.105 0.000 47.636490 -117.586305 +99003 4848 2006 181679393 181043 70.147 0.070 47.920209 -117.292679 +99004 18376 7522 870251144 12520258 336.006 4.834 47.420062 -117.631165 +99005 8574 2974 102757583 0 39.675 0.000 47.844261 -117.366196 +99006 11946 4765 475627744 1213519 183.641 0.469 47.984122 -117.502192 +99008 641 287 336029875 158055 129.742 0.061 47.503335 -117.933438 +99009 3947 1666 207737563 3091509 80.208 1.194 48.026086 -117.252446 +99011 2776 858 16913880 0 6.530 0.000 47.618832 -117.648158 +99012 1064 416 246191714 0 95.055 0.000 47.382041 -117.192777 +99013 1785 691 264478407 9319637 102.116 3.598 47.893717 -117.830817 +99016 12480 4967 65287891 183196 25.208 0.071 47.597292 -117.121029 +99017 161 87 219408556 1231814 84.714 0.476 47.184129 -117.886758 +99018 282 131 90604171 0 34.982 0.000 47.289792 -117.154853 +99019 9502 4153 56625159 3130452 21.863 1.209 47.643175 -117.075620 +99020 82 32 232804 0 0.090 0.000 47.562601 -117.496601 +99021 9174 3703 217948824 0 84.151 0.000 47.848267 -117.189612 +99022 8820 3344 178670710 4653443 68.985 1.797 47.599780 -117.708985 +99023 529 197 35338077 0 13.644 0.000 47.561083 -117.171784 +99025 5232 2127 115272867 4931402 44.507 1.904 47.793859 -117.075344 +99026 9042 3564 183608637 12617332 70.892 4.872 47.811345 -117.626540 +99027 6101 2524 39071861 345322 15.086 0.133 47.710128 -117.127560 +99029 1289 537 306871354 761442 118.484 0.294 47.693841 -117.831006 +99030 1032 446 203036631 0 78.393 0.000 47.484075 -117.110203 +99031 1137 473 183815950 0 70.972 0.000 47.423494 -117.362419 +99032 691 351 562986022 9274791 217.370 3.581 47.330252 -118.040021 +99033 895 421 97428649 0 37.617 0.000 47.232328 -117.099273 +99034 209 112 44505527 353780 17.184 0.137 47.873668 -117.750520 +99036 1448 568 105892139 0 40.885 0.000 47.525292 -117.275915 +99037 12973 5028 16750927 79268 6.468 0.031 47.635784 -117.197605 +99039 87 47 11614539 0 4.484 0.000 47.344652 -117.265585 +99040 734 285 271211141 3920546 104.715 1.514 47.898357 -118.003697 +99101 1453 628 283615030 224984 109.504 0.087 48.320308 -117.920660 +99102 500 259 597769 0 0.231 0.000 46.792025 -117.250253 +99103 497 252 590375063 96517 227.945 0.037 47.756005 -118.927608 +99105 61 37 313041682 1329594 120.866 0.513 46.872987 -118.071965 +99109 5109 2454 725587412 348807 280.151 0.135 48.292947 -117.698545 +99110 1667 622 97353510 0 37.588 0.000 48.012086 -117.576352 +99111 4047 1954 747252282 6997113 288.516 2.702 46.837729 -117.420749 +99113 761 312 248083935 7186622 95.786 2.775 46.593490 -117.189782 +99114 12018 5988 1886882696 6532253 728.530 2.522 48.655198 -117.735834 +99115 1143 882 1084259015 9772905 418.635 3.773 47.646834 -119.416689 +99116 1439 715 121663008 10021458 46.974 3.869 48.030640 -118.927373 +99117 485 305 477692479 729700 184.438 0.282 47.722069 -118.532002 +99118 931 497 510135455 0 196.964 0.000 48.896541 -118.638565 +99119 1204 952 1049239552 18950833 405.114 7.317 48.508882 -117.315513 +99121 145 106 146779001 27136 56.672 0.010 48.936993 -118.469793 +99122 3773 2187 1474634676 20443341 569.360 7.893 47.687849 -118.208232 +99123 1058 584 112733811 106333426 43.527 41.056 47.845781 -119.144468 +99124 240 114 559382 0 0.216 0.000 47.999935 -118.952851 +99125 527 307 603506308 659509 233.015 0.255 46.931040 -117.765154 +99126 877 389 134526214 470353 51.941 0.182 48.731364 -117.972146 +99128 321 167 221476072 11495 85.512 0.004 47.097950 -117.081344 +99129 793 404 401280270 31940806 154.935 12.332 48.015253 -118.192667 +99130 828 424 203048420 0 78.397 0.000 46.997309 -117.184125 +99131 170 132 68735929 24014225 26.539 9.272 48.277409 -118.131392 +99133 1493 886 383155350 25920632 147.937 10.008 48.021894 -119.085091 +99134 643 326 555495051 1186480 214.478 0.458 47.398104 -118.277666 +99135 255 134 456733366 24078 176.346 0.009 47.664805 -119.099296 +99136 29 22 51163094 0 19.754 0.000 46.674643 -117.955526 +99137 343 217 208452272 99613 80.484 0.038 48.147947 -118.114956 +99138 1209 735 1367436580 80750388 527.970 31.178 48.205843 -118.395823 +99139 1301 822 530363412 7158998 204.774 2.764 48.752947 -117.407626 +99140 475 228 1007708003 39471058 389.078 15.240 48.111414 -118.646170 +99141 5240 2722 1372216440 70463364 529.816 27.206 48.736990 -118.138691 +99143 650 364 803350060 8633307 310.175 3.333 46.765536 -117.848245 +99144 43 18 87820793 0 33.908 0.000 47.377749 -118.504290 +99146 56 41 120444658 0 46.504 0.000 48.957548 -118.297520 +99147 190 141 21199009 8193884 8.185 3.164 47.873716 -118.509373 +99148 2106 1771 149958527 9189299 57.899 3.548 48.100470 -117.597004 +99149 208 121 6744865 0 2.604 0.000 47.217126 -117.463958 +99150 380 218 144440311 18770 55.769 0.007 48.804478 -118.556279 +99151 164 72 314770 0 0.122 0.000 48.664470 -118.063636 +99152 197 115 12086183 989421 4.667 0.382 48.844574 -117.396799 +99153 467 347 888786500 10039124 343.162 3.876 48.911092 -117.166021 +99154 20 9 47728271 0 18.428 0.000 47.389734 -118.365925 +99155 1350 443 788658196 8424119 304.503 3.253 48.249063 -118.965682 +99156 8114 4608 847496285 20255752 327.220 7.821 48.185849 -117.196815 +99157 697 435 189933972 10620340 73.334 4.101 48.820843 -117.933374 +99158 603 286 235435592 0 90.902 0.000 47.130271 -117.247424 +99159 1375 696 1300034123 6404368 501.946 2.473 47.326840 -118.765870 +99160 149 82 233031766 0 89.974 0.000 48.838710 -118.306323 +99161 1400 653 192340413 2631 74.263 0.001 46.903033 -117.139126 +99163 31404 12672 536124445 1052518 206.999 0.406 46.730331 -117.218027 +99164 0 0 187184 0 0.072 0.000 46.730917 -117.152568 +99166 3222 1934 1520163637 4169556 586.938 1.610 48.575632 -118.664492 +99167 625 355 161526113 7259721 62.366 2.803 48.419231 -118.120985 +99169 2459 1263 1838577813 3764800 709.879 1.454 47.105898 -118.340218 +99170 1072 521 471271756 832260 181.959 0.321 47.235823 -117.393720 +99171 959 523 688310887 9704417 265.758 3.747 47.098248 -117.653890 +99173 1532 722 338482153 0 130.689 0.000 48.036972 -117.863003 +99174 44 26 348107 0 0.134 0.000 47.010562 -117.358687 +99176 145 82 98828996 0 38.158 0.000 47.080905 -117.423890 +99179 437 226 183608096 4030337 70.891 1.556 46.494979 -117.125923 +99180 939 741 264047905 6874693 101.949 2.654 48.292667 -117.342169 +99181 1901 1022 255431261 2755890 98.623 1.064 48.147363 -117.786828 +99185 1295 739 698459842 15233367 269.677 5.882 47.749432 -118.717317 +99201 13342 7858 7773515 480711 3.001 0.186 47.663466 -117.436062 +99202 21580 8159 15905932 253367 6.141 0.098 47.657497 -117.378970 +99203 20192 9335 12113205 29141 4.677 0.011 47.628641 -117.402997 +99204 6681 4301 2919952 0 1.127 0.000 47.645706 -117.427263 +99205 42137 18661 23202063 257469 8.958 0.099 47.696825 -117.444879 +99206 34802 14561 60620755 254064 23.406 0.098 47.629296 -117.254657 +99207 30854 13130 14110126 157219 5.448 0.061 47.688750 -117.387464 +99208 49193 20688 127316372 274480 49.157 0.106 47.782109 -117.455721 +99212 19197 8700 31445036 353083 12.141 0.136 47.664705 -117.310362 +99216 24362 10906 34584382 282148 13.353 0.109 47.685677 -117.218458 +99217 17423 7306 132146010 207690 51.022 0.080 47.740696 -117.261506 +99218 15531 6030 18938894 2941 7.312 0.001 47.758924 -117.409388 +99223 29273 12989 74148973 33887 28.629 0.013 47.589407 -117.344623 +99224 18289 8342 303209293 943307 117.070 0.364 47.652410 -117.526046 +99301 68191 21697 1204285093 35605228 464.977 13.747 46.379049 -118.954190 +99320 9201 3505 359642127 2841259 138.859 1.097 46.265888 -119.487243 +99321 531 150 95746219 6683052 36.968 2.580 46.878455 -119.908803 +99322 217 118 639331821 0 246.847 0.000 45.943983 -120.180774 +99323 3684 1310 326083969 20253630 125.902 7.820 46.190789 -118.872864 +99324 9202 3948 7898067 0 3.049 0.000 46.042578 -118.386845 +99326 4956 1184 706863737 4011557 272.922 1.549 46.650082 -118.853349 +99328 3733 1924 1659495094 7107953 640.735 2.744 46.263368 -117.865424 +99329 160 73 4738265 0 1.829 0.000 46.156331 -118.145298 +99330 907 319 199564362 0 77.052 0.000 46.489767 -119.043221 +99333 50 33 236821657 5970966 91.437 2.305 46.685782 -118.172717 +99335 340 181 438424455 8869750 169.277 3.425 46.651795 -118.488378 +99336 48753 19401 34570311 3599832 13.348 1.390 46.214050 -119.175728 +99337 29845 10808 407217264 37731699 157.227 14.568 46.073223 -119.090740 +99338 11555 4095 171927259 0 66.381 0.000 46.147861 -119.273475 +99341 884 413 1036903859 0 400.351 0.000 46.912897 -118.653019 +99343 3040 840 428395394 7671981 165.404 2.962 46.593609 -119.180088 +99344 16817 5105 1174591075 11541744 453.512 4.456 46.820069 -119.178054 +99345 213 76 473108439 57361225 182.668 22.147 45.952216 -119.707670 +99346 352 172 325438409 12782510 125.652 4.935 45.997621 -119.299293 +99347 2293 1265 1960341750 22239588 756.892 8.587 46.427734 -117.565388 +99348 1364 512 1345764368 20237425 519.603 7.814 46.377121 -118.472036 +99349 8483 2430 695197271 29598079 268.417 11.428 46.731191 -119.700579 +99350 12979 4475 1480080357 2205606 571.462 0.852 46.183292 -119.695943 +99352 26975 11586 54262092 8689165 20.951 3.355 46.252589 -119.288217 +99353 13306 4902 67479354 2292769 26.054 0.885 46.313808 -119.387768 +99354 21343 9384 52600932 214528 20.309 0.083 46.331608 -119.302716 +99356 294 136 649184081 41655807 250.651 16.083 45.824750 -120.321453 +99357 4323 1227 601540664 2568318 232.256 0.992 46.891310 -119.661625 +99359 158 114 215544424 6902358 83.222 2.665 46.543252 -118.097372 +99360 1350 525 407715464 0 157.420 0.000 46.090217 -118.663030 +99361 1902 862 579326402 0 223.679 0.000 46.236553 -118.143838 +99362 41056 16264 830410706 312763 320.623 0.121 46.101083 -118.313609 +99363 216 78 115344124 34023825 44.535 13.137 46.060441 -118.883536 +99371 311 191 527777855 563793 203.776 0.218 46.800118 -118.312036 +99401 273 209 569160578 3393664 219.754 1.310 46.087216 -117.249975 +99402 1875 849 741920735 4673794 286.457 1.805 46.190773 -117.127417 +99403 19548 8840 395974855 3532732 152.887 1.364 46.362367 -117.282597 +99501 17603 8588 17980486 457589 6.942 0.177 61.220018 -149.855702 +99502 24168 9206 45702919 1555438 17.646 0.601 61.163643 -149.996609 +99503 14563 6667 53574058 15199 20.685 0.006 62.043951 -158.175667 +99504 40914 15642 16479886 102891 6.363 0.040 61.204600 -149.746095 +99505 6174 1239 59277940 23563 22.887 0.009 61.256851 -149.602697 +99506 7749 2043 45853625 676939 17.704 0.261 61.253463 -149.810757 +99507 37850 14475 56762865 33392 21.916 0.013 61.147656 -149.753642 +99508 35857 13489 17974797 211181 6.940 0.082 61.201406 -149.817528 +99510 353 1 3928215479 645913466 1516.693 249.389 70.101886 -149.867360 +99513 0 0 36058 0 0.014 0.000 61.214772 -149.885658 +99515 22441 8282 27456152 219674 10.601 0.085 61.116381 -149.890375 +99516 20095 7114 111279997 27199 42.965 0.011 61.079486 -149.710038 +99517 16645 7358 8508871 320033 3.285 0.124 61.190346 -149.939108 +99518 10225 4431 9781975 0 3.777 0.000 61.159577 -149.884627 +99519 1316 4 33144891315 242204548 12797.315 93.516 69.216237 -146.787467 +99540 320 201 131548955 153250 50.791 0.059 60.990566 -149.417716 +99546 326 500 36786059 264021 14.203 0.102 51.829438 -176.629994 +99547 61 43 22213781 978041 8.577 0.378 52.213091 -174.215643 +99548 73 48 22279164 8853379 8.602 3.418 56.237395 -158.751683 +99549 102 56 131838359 4503436 50.903 1.739 56.964177 -158.580635 +99550 197 132 233488402 7376312 90.150 2.848 57.904339 -153.042807 +99551 627 183 5859165 21925 2.262 0.008 60.902886 -161.421759 +99552 346 98 2615875 63649 1.010 0.025 60.903841 -161.228698 +99553 1027 44 35823298 251974 13.831 0.097 54.117357 -165.830835 +99554 677 185 55708758 25943182 21.509 10.017 62.711160 -164.644712 +99555 221 120 47404058 18166157 18.303 7.014 59.268124 -158.636148 +99556 2510 1638 917025497 537771 354.066 0.208 59.893272 -151.511808 +99557 726 411 34786101507 322319469 13430.989 124.448 61.420118 -156.044199 +99558 85 46 18324749 430538 7.075 0.166 62.631016 -160.213686 +99559 7632 2772 149595377 15179457 57.759 5.861 60.814155 -161.850810 +99561 418 99 13886267 68273 5.362 0.026 60.151220 -164.251364 +99563 938 219 2562638 54922 0.989 0.021 61.530883 -165.597175 +99564 91 105 29494078 11617239 11.388 4.485 56.304665 -158.396180 +99565 78 66 35672336 35521754 13.773 13.715 56.303506 -158.501266 +99566 192 212 24371671954 569835108 9409.956 220.015 61.270907 -142.605516 +99567 9211 3495 1594947779 50529129 615.813 19.509 61.279584 -148.875379 +99568 279 234 49997408 448612 19.304 0.173 60.205405 -151.407528 +99569 64 99 18644084 14242 7.199 0.005 58.805180 -158.530092 +99571 160 111 76206560 9150238 29.424 3.533 55.215583 -162.776107 +99572 296 397 358777592 14586284 138.525 5.632 60.529882 -149.952595 +99573 1115 796 9110333221 296880687 3517.519 114.626 61.712313 -145.951769 +99574 2348 1257 6405931698 768534387 2473.344 296.733 60.893995 -145.109037 +99575 105 47 258517645 19617643 99.814 7.574 61.824119 -158.063707 +99576 2603 1360 21447191579 821650497 8280.807 317.241 60.261108 -159.092876 +99577 25771 9130 556131742 3633042 214.724 1.403 61.201578 -149.248419 +99578 296 101 2360326 271347 0.911 0.105 60.214050 -162.030483 +99579 109 196 67039712 67346405 25.884 26.003 58.202719 -157.408565 +99580 115 51 24135989 0 9.319 0.000 59.365538 -157.491032 +99581 762 213 16434206 3841427 6.345 1.483 62.785415 -164.552449 +99583 35 38 33061429 0 12.765 0.000 54.890097 -163.410644 +99585 417 109 127810981 31106088 49.348 12.010 61.918711 -162.288486 +99586 605 585 5016203902 9534244 1936.767 3.681 62.827361 -143.433106 +99587 2250 1658 627577730 20674188 242.309 7.982 60.968258 -148.956469 +99588 980 1201 5299709553 177465660 2046.229 68.520 62.434895 -146.766777 +99589 243 82 7701527 0 2.974 0.000 59.127491 -161.568774 +99590 194 63 28332248 25835 10.939 0.010 62.895443 -160.111792 +99591 102 61 90002657 702991 34.750 0.271 56.570519 -169.598681 +99602 178 86 66896446 3373303 25.829 1.302 62.187014 -159.856076 +99603 9840 5662 2774347634 404135265 1071.182 156.038 59.538682 -151.184937 +99604 1093 283 20425088 145330 7.886 0.056 61.535469 -166.121735 +99605 211 225 789110349 80380827 304.677 31.035 60.810940 -149.533736 +99606 469 177 539658451 13476709 208.363 5.203 59.851196 -154.556392 +99607 216 87 2034561693 2018024 785.549 0.779 61.740823 -159.967961 +99609 569 121 31290182 2702296 12.081 1.043 60.864056 -162.537863 +99610 2167 1343 2400867030 26215774 926.980 10.122 60.299886 -150.499237 +99611 15122 6880 845421668 46106989 326.419 17.802 60.600520 -151.106328 +99612 938 229 30280355 4895281 11.691 1.890 55.066682 -162.288933 +99613 434 495 9571772181 785311195 3695.682 303.210 58.964708 -155.813864 +99614 639 176 51773656 821796 19.990 0.317 59.940130 -164.067409 +99615 12899 4870 11053082905 1677668331 4267.619 647.751 57.613209 -153.403556 +99620 577 148 5959864 1809331 2.301 0.699 63.028875 -163.535732 +99621 723 221 24626594 2614458 9.508 1.009 60.791070 -161.426777 +99622 321 106 39878079 226611 15.397 0.087 59.863441 -163.193487 +99624 90 69 39561920 110110260 15.275 42.514 57.587682 -153.913088 +99625 72 51 2064582918 0 797.140 0.000 59.290256 -156.652476 +99626 282 80 2389969 0 0.923 0.000 61.516968 -160.364657 +99627 406 293 10433971588 17207601 4028.579 6.644 63.606003 -154.784768 +99628 443 236 3800720377 203258313 1467.466 78.478 58.957858 -159.212133 +99630 191 86 16491475 1598923 6.367 0.617 60.370730 -166.266987 +99631 228 165 1102532920 38032321 425.690 14.684 60.608742 -149.458640 +99632 813 211 65089576 0 25.131 0.000 62.112344 -163.664390 +99633 544 460 211212803 9362065 81.550 3.615 58.798573 -156.904680 +99634 354 112 10100980 1974433 3.900 0.762 60.682896 -161.998964 +99636 510 130 54239711 0 20.942 0.000 59.488161 -157.290500 +99637 590 135 78156517 76341 30.176 0.029 60.552199 -165.108087 +99638 18 23 49689462 1896270 19.185 0.732 52.897502 -168.943928 +99639 1131 1213 571399387 81222 220.619 0.031 60.062246 -151.404177 +99640 174 155 7875097626 173894785 3040.592 67.141 60.002567 -155.390747 +99641 496 132 11551935 862465 4.460 0.333 60.880266 -162.460278 +99643 218 105 53174969 5491745 20.531 2.120 57.220040 -153.330498 +99644 175 113 42214839 6963391 16.299 2.689 57.910272 -152.382792 +99645 25176 9503 1143037549 60882045 441.329 23.507 61.624503 -148.979893 +99647 44 40 566191138 27665616 218.608 10.682 59.879267 -154.071529 +99648 113 50 28892565 22288826 11.155 8.606 55.930191 -159.146431 +99649 80 87 261986346 56123625 101.153 21.669 57.500442 -157.281038 +99650 568 137 4382289 6240 1.692 0.002 61.946654 -162.878297 +99651 61 22 51419042 109433 19.853 0.042 59.000685 -161.688071 +99652 3703 2928 300921770 32750374 116.187 12.645 61.533837 -149.974210 +99653 159 74 58650530 55898280 22.645 21.582 60.198400 -154.275431 +99654 52168 20169 1289464507 50700291 497.865 19.575 61.449107 -149.900777 +99655 669 186 6926510 65000 2.674 0.025 59.741444 -161.887384 +99656 25 28 178526554 19940402 68.929 7.699 61.936658 -157.615034 +99657 329 116 2105934975 235088922 813.106 90.768 61.728212 -161.669697 +99658 616 243 107253326 913652 41.411 0.353 62.091150 -163.242495 +99659 401 116 46064543 1019739 17.786 0.394 63.464848 -162.129262 +99660 479 190 103539843 6911205 39.977 2.668 57.179041 -170.325068 +99661 978 292 460666008 830771 177.864 0.321 55.247308 -160.684956 +99662 480 105 18512059 0 7.148 0.000 61.791821 -165.961546 +99663 414 394 296687955 11812738 114.552 4.561 59.401190 -151.624586 +99664 4932 2357 6647664043 1483137814 2566.678 572.643 60.076367 -149.492517 +99665 83 53 5011107 75060 1.935 0.029 62.646227 -159.529529 +99666 189 47 220701153 11319526 85.213 4.370 62.440625 -165.145536 +99667 65 752 12073687066 70952615 4661.677 27.395 61.806352 -151.742978 +99668 86 49 37270570 6201407 14.390 2.394 61.682454 -157.157593 +99669 14191 7195 627774631 16475881 242.385 6.361 60.360218 -151.017768 +99670 79 132 268025960 15451849 103.485 5.966 58.658126 -157.011738 +99671 556 153 68930232 6068237 26.614 2.343 63.472348 -162.262010 +99672 3704 2468 738922559 23486454 285.300 9.068 60.752728 -150.629991 +99674 1444 993 2888622638 27131982 1115.303 10.476 61.739171 -148.219709 +99676 1546 1706 2614433406 41331656 1009.438 15.958 62.448963 -149.790598 +99677 88 75 18808312 2661015 7.262 1.027 60.897951 -146.679568 +99678 891 344 5767484721 136683268 2226.838 52.774 59.620102 -159.891633 +99679 373 99 3971621 298885 1.533 0.115 61.104273 -160.937572 +99680 408 106 300296882 694433 115.945 0.268 60.412291 -162.668760 +99681 325 89 85705001 275769 33.091 0.106 60.607991 -165.120790 +99682 373 307 16315954728 425706197 6299.626 164.366 60.607936 -152.887215 +99683 524 774 6938451595 65273176 2678.951 25.202 62.515061 -151.029486 +99684 688 344 1774746742 14656348 685.234 5.659 63.989306 -160.395364 +99685 4224 1001 153664671 21194201 59.330 8.183 53.871799 -166.482804 +99686 4005 1839 8181621632 1318576208 3158.942 509.105 61.150080 -146.810141 +99688 2759 2883 4149711489 37358145 1602.213 14.424 61.933176 -149.959566 +99689 662 387 532422976 67195237 205.570 25.944 59.485414 -139.419639 +99690 280 61 250945233 11658 96.891 0.005 60.523716 -164.832582 +99691 95 60 3987020418 19189567 1539.397 7.409 62.817681 -153.374674 +99692 152 105 698071 0 0.270 0.000 53.885808 -166.538324 +99693 248 308 312431287 214681795 120.630 82.889 60.850556 -148.033870 +99694 1512 799 52372190 2968964 20.221 1.146 61.624101 -149.785264 +99695 7 12 10860665 0 4.193 0.000 55.918199 -159.493298 +99701 19019 9032 11061204262 37168918 4270.755 14.351 67.094545 -149.336012 +99702 2647 848 41797370 1157357 16.138 0.447 64.650615 -147.052322 +99703 7065 1676 22690714 872224 8.761 0.337 64.832624 -147.622719 +99704 24 0 2494462 38393 0.963 0.015 64.296151 -149.149549 +99705 22544 8866 277514381 12573297 107.149 4.855 64.761825 -147.313674 +99706 13 19 172910679 22218818 66.761 8.579 64.010457 -144.678658 +99709 29830 13631 1313751232 20571422 507.242 7.943 64.877203 -148.148517 +99712 13866 6293 9140177870 3820571 3529.043 1.475 64.997864 -146.147347 +99714 1385 1260 902237766 70753549 348.356 27.318 64.384498 -146.553512 +99720 208 97 113030737 4925195 43.641 1.902 66.563980 -152.767612 +99721 324 118 12521157 139516 4.834 0.054 68.151791 -151.700070 +99722 152 85 30974104 5783506 11.959 2.233 68.091944 -145.604061 +99723 4213 1554 53780612 10050638 20.765 3.881 71.254084 -156.798949 +99724 84 56 52461849 2092519 20.256 0.808 66.390584 -147.337916 +99726 30 55 5947543601 80918146 2296.360 31.243 67.342559 -152.391080 +99727 416 101 1424507 0 0.550 0.000 65.975912 -161.138661 +99729 231 240 1541448132 10149141 595.156 3.919 63.006169 -149.400685 +99730 144 250 19409689300 37300353 7494.123 14.402 65.628172 -145.415175 +99732 10 26 847514734 0 327.227 0.000 64.071746 -142.007579 +99733 104 52 276963447 1398598 106.936 0.540 65.838956 -144.179638 +99734 845 0 521315060 313824722 201.281 121.168 70.428206 -149.287534 +99736 122 61 4311279 29189 1.665 0.011 66.085034 -162.761728 +99737 5011 2678 11117780078 228679077 4292.599 88.293 63.789870 -145.311601 +99738 187 280 18585495890 152349981 7175.900 58.823 65.636323 -141.882011 +99739 330 132 3509211007 26903731 1354.914 10.388 65.058902 -162.562970 +99740 585 345 23599013222 546591330 9111.630 211.040 67.874641 -144.596720 +99741 470 264 45896456 16770294 17.721 6.475 64.736146 -156.873009 +99742 681 200 28230083 50385909 10.900 19.454 63.777201 -171.725710 +99743 1069 864 13926739186 9448444 5377.144 3.648 63.682732 -150.026719 +99744 226 147 85862692 7244561 33.152 2.797 64.309634 -149.162919 +99745 78 41 10212134 2934837 3.943 1.133 66.049285 -154.232734 +99746 277 124 19893806149 161696438 7681.042 62.431 65.600328 -158.190476 +99747 239 87 15524482 651337 5.994 0.251 70.118387 -143.687203 +99748 190 87 47283266 27882 18.256 0.011 64.346290 -158.771212 +99749 363 150 2865627 0 1.106 0.000 66.978430 -160.431808 +99750 374 99 482226 982322 0.186 0.379 67.728641 -164.543454 +99751 151 41 14961761 128694 5.777 0.050 66.922686 -156.874646 +99752 3553 1342 10266809115 2476573547 3964.037 956.210 67.263117 -161.919349 +99753 332 99 12350345 0 4.768 0.000 64.939607 -161.151272 +99754 96 54 14511944 290257 5.603 0.112 64.902278 -157.694303 +99755 217 447 1011165243 624910 390.413 0.241 63.784930 -148.521460 +99756 119 260 23255592418 225313098 8979.035 86.994 64.565203 -151.751657 +99757 17 48 2217408159 69766054 856.146 26.937 63.806222 -152.692241 +99758 210 94 7833799 0 3.025 0.000 65.151781 -149.372384 +99759 189 70 66660123 31035893 25.738 11.983 69.731918 -162.915965 +99760 785 520 6839922498 76530407 2640.909 29.549 64.250543 -148.128409 +99761 514 114 41348262 319224 15.965 0.123 67.620987 -163.057973 +99762 4038 1967 5471312328 191100180 2112.486 73.784 64.862800 -164.560425 +99763 668 171 2273742 121297 0.878 0.047 66.827182 -161.029203 +99764 290 153 6733355968 15792674 2599.763 6.098 63.291758 -141.453808 +99765 264 134 17723078 0 6.843 0.000 64.729316 -158.132388 +99766 678 222 6195468813 117469937 2392.084 45.355 68.702603 -164.807044 +99767 24 37 5263013 0 2.032 0.000 65.502172 -150.151331 +99768 175 150 12538452659 287408960 4841.124 110.969 65.033029 -154.913209 +99769 671 185 15787377 68850 6.096 0.027 63.680702 -170.487137 +99770 841 217 2275819118 112650353 878.699 43.495 66.746266 -159.511018 +99771 251 70 2697572 120064 1.042 0.046 64.364915 -161.208357 +99772 567 215 9262642646 983628333 3576.326 379.781 66.003474 -165.911401 +99773 262 73 15509532 144162 5.988 0.056 66.887644 -157.164700 +99774 78 52 31025481 8815523 11.979 3.404 66.023590 -149.081592 +99775 1251 166 300291 0 0.116 0.000 64.858130 -147.824760 +99776 124 68 56967121 3082814 21.995 1.190 63.395181 -143.402070 +99777 246 136 62781242 87101 24.240 0.034 65.203110 -152.095711 +99778 254 91 848436667 86958926 327.583 33.575 65.058991 -166.430235 +99780 1535 874 3163091540 68240820 1221.277 26.348 63.181525 -143.102189 +99781 167 90 4768487124 67930612 1841.123 26.228 67.288305 -146.239696 +99782 556 179 46461393 9326706 17.939 3.601 70.645917 -159.893591 +99783 145 51 62316719 751 24.061 0.000 65.676582 -168.079970 +99784 190 79 1773108 515714 0.685 0.199 64.681721 -163.406036 +99785 388 103 6415592 10555 2.477 0.004 65.343920 -166.508493 +99786 259 130 17809910732 155264972 6876.445 59.948 67.089483 -156.153891 +99788 69 67 21965885 1357328 8.481 0.524 66.646693 -143.798881 +99789 402 138 2410363442 6389348 930.647 2.467 70.001585 -151.935444 +99790 20 35 997733049 1247839 385.227 0.482 65.390183 -148.326543 +99791 237 72 2179121087 29388967 841.363 11.347 70.467956 -156.792476 +99801 29164 11998 5680932497 786780968 2193.420 303.778 58.372700 -134.178781 +99820 479 351 2432957574 151550038 939.370 58.514 57.409310 -134.178295 +99824 2111 1049 4472894 1034898 1.727 0.400 58.264764 -134.400852 +99825 120 107 944703076 101244433 364.752 39.091 58.159987 -135.736378 +99826 442 488 8418808599 448822440 3250.520 173.291 58.702742 -136.749108 +99827 2602 1677 4452051324 199665164 1718.947 77.091 59.099905 -135.578102 +99829 777 416 19248519 3075409 7.432 1.187 58.106174 -135.403502 +99830 561 293 703636836 421009024 271.676 162.552 56.801841 -134.122590 +99832 104 117 481019855 134384870 185.723 51.886 57.974105 -136.102505 +99833 3202 1637 6948943148 1727433659 2683.002 666.966 56.925681 -133.117006 +99835 8880 4085 4182810807 956538934 1614.992 369.322 57.000413 -135.078528 +99836 52 64 8976005 849893 3.466 0.328 56.235218 -134.653498 +99840 968 636 1171515798 30331334 452.325 11.711 59.575097 -135.335418 +99841 133 181 36970597 0 14.274 0.000 57.794300 -135.184384 +99901 13508 6161 12428129405 1544795383 4798.528 596.449 55.540405 -131.105347 +99903 31 69 401532954 55179888 155.033 21.305 55.818431 -132.065800 +99918 231 223 95158906 12558100 36.741 4.849 55.916873 -132.695503 +99919 531 409 125279693 18391294 48.371 7.101 55.645004 -132.495647 +99921 1920 1077 5284962602 1132239817 2040.536 437.160 55.407033 -132.766235 +99922 384 140 297631982 20900555 114.916 8.070 55.307528 -133.046815 +99923 87 90 35937519 2117 13.876 0.001 56.002315 -130.041026 +99925 819 400 144503281 36906383 55.793 14.250 55.550204 -132.945933 +99926 1460 544 343947256 213335869 132.799 82.369 55.138069 -131.470741 +99927 94 101 589688205 18001151 227.680 6.950 56.239062 -133.457924 +99929 2338 1339 5598556684 637412657 2161.615 246.106 56.413828 -131.606832 diff --git a/data/US.txt b/data/US.txt new file mode 100755 index 00000000..7c01405d --- /dev/null +++ b/data/US.txt @@ -0,0 +1,43633 @@ +US 34050 FPO AA Erie 029 41.0375 -111.6789 +US 34034 APO AA Dillon 033 33.0364 -82.2493 +US 99553 Akutan Alaska AK Aleutians East 013 54.143 -165.7854 +US 99571 Cold Bay Alaska AK Aleutians East 013 55.3976 -162.4206 +US 99583 False Pass Alaska AK Aleutians East 013 54.841 -163.4368 +US 99612 King Cove Alaska AK Aleutians East 013 55.0628 -162.3056 +US 99661 Sand Point Alaska AK Aleutians East 013 55.3192 -160.4914 +US 99546 Adak Alaska AK Aleutians West (CA) 016 51.88 -176.6581 +US 99547 Atka Alaska AK Aleutians West (CA) 016 52.1224 -174.4301 +US 99591 Saint George Island Alaska AK Aleutians West (CA) 016 56.5944 -169.6186 +US 99638 Nikolski Alaska AK Aleutians West (CA) 016 52.9883 -168.7884 +US 99660 Saint Paul Island Alaska AK Aleutians West (CA) 016 57.1842 -170.2764 +US 99685 Unalaska Alaska AK Aleutians West (CA) 016 53.8871 -166.5199 +US 99692 Dutch Harbor Alaska AK Aleutians West (CA) 016 53.3628 -167.5107 +US 99501 Anchorage Alaska AK Anchorage Municipality 020 61.2116 -149.8761 +US 99502 Anchorage Alaska AK Anchorage Municipality 020 61.1661 -149.96 +US 99503 Anchorage Alaska AK Anchorage Municipality 020 61.19 -149.8938 +US 99504 Anchorage Alaska AK Anchorage Municipality 020 61.2037 -149.7447 +US 99505 Fort Richardson Alaska AK Anchorage Municipality 020 61.2753 -149.6755 +US 99506 Elmendorf Afb Alaska AK Anchorage Municipality 020 61.2515 -149.8127 +US 99507 Anchorage Alaska AK Anchorage Municipality 020 61.1535 -149.8289 +US 99508 Anchorage Alaska AK Anchorage Municipality 020 61.206 -149.8101 +US 99509 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99510 Anchorage Alaska AK Anchorage Municipality 020 61.1446 -149.8784 +US 99511 Anchorage Alaska AK Anchorage Municipality 020 61.0683 -149.8005 +US 99512 Anchorage Alaska AK Anchorage Municipality 020 61.204 -149.8084 +US 99513 Anchorage Alaska AK Anchorage Municipality 020 61.2149 -149.8862 +US 99514 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99515 Anchorage Alaska AK Anchorage Municipality 020 61.1194 -149.8974 +US 99516 Anchorage Alaska AK Anchorage Municipality 020 61.1054 -149.78 +US 99517 Anchorage Alaska AK Anchorage Municipality 020 61.1901 -149.9361 +US 99518 Anchorage Alaska AK Anchorage Municipality 020 61.1549 -149.8866 +US 99519 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99520 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99521 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99522 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99523 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99524 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99529 Anchorage Alaska AK Anchorage Municipality 020 61.1515 -149.9443 +US 99530 Anchorage Alaska AK Anchorage Municipality 020 61.1515 -149.9443 +US 99540 Indian Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99567 Chugiak Alaska AK Anchorage Municipality 020 61.4098 -149.4537 +US 99577 Eagle River Alaska AK Anchorage Municipality 020 61.3114 -149.5085 +US 99587 Girdwood Alaska AK Anchorage Municipality 020 60.9577 -149.1406 +US 99599 Anchorage Alaska AK Anchorage Municipality 020 61.1872 -149.8804 +US 99695 Anchorage Alaska AK Anchorage Municipality 020 61.1089 -149.4403 +US 99545 Kongiganak Alaska AK Bethel Census Area 050 59.9599 -162.8919 +US 99551 Akiachak Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99552 Akiak Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99557 Aniak Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99559 Bethel Alaska AK Bethel (CA) 050 60.13 -162.1739 +US 99561 Chefornak Alaska AK Bethel (CA) 050 60.1537 -164.2103 +US 99575 Crooked Creek Alaska AK Bethel (CA) 050 61.8181 -158.0025 +US 99578 Eek Alaska AK Bethel (CA) 050 60.2151 -162.0323 +US 99589 Goodnews Bay Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99607 Kalskag Alaska AK Bethel (CA) 050 61.541 -160.3261 +US 99609 Kasigluk Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99614 Kipnuk Alaska AK Bethel (CA) 050 59.9232 -164.101 +US 99621 Kwethluk Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99622 Kwigillingok Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99626 Lower Kalskag Alaska AK Bethel (CA) 050 61.5138 -160.36 +US 99630 Mekoryuk Alaska AK Bethel (CA) 050 60.3657 -166.2836 +US 99634 Napakiak Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99637 Toksook Bay Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99641 Nunapitchuk Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99651 Platinum Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99655 Quinhagak Alaska AK Bethel (CA) 050 59.7381 -161.8749 +US 99656 Red Devil Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99668 Sleetmute Alaska AK Bethel (CA) 050 61.6346 -157.1183 +US 99679 Tuluksak Alaska AK Bethel (CA) 050 61.1088 -160.9389 +US 99680 Tuntutuliak Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99681 Tununak Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99690 Nightmute Alaska AK Bethel (CA) 050 60.3147 -163.1189 +US 99613 King Salmon Alaska AK Bristol Bay 060 58.7456 -157.1595 +US 99633 Naknek Alaska AK Bristol Bay 060 58.783 -156.8992 +US 99670 South Naknek Alaska AK Bristol Bay 060 58.6639 -156.9756 +US 99704 Clear Alaska AK Denali 068 64.2966 -149.1608 +US 99729 Cantwell Alaska AK Denali 068 63.3955 -148.8973 +US 99743 Healy Alaska AK Denali 068 63.9171 -149.0111 +US 99744 Anderson Alaska AK Denali 068 63.5436 -149.9867 +US 99755 Denali National Park Alaska AK Denali 068 63.5436 -149.9867 +US 99555 Aleknagik Alaska AK Dillingham (CA) 070 59.2697 -158.6199 +US 99569 Clarks Point Alaska AK Dillingham (CA) 070 58.8173 -158.5299 +US 99576 Dillingham Alaska AK Dillingham (CA) 070 59.0402 -158.5231 +US 99580 Ekwok Alaska AK Dillingham (CA) 070 59.3628 -157.4782 +US 99628 Manokotak Alaska AK Dillingham (CA) 070 59.0096 -158.9897 +US 99636 New Stuyahok Alaska AK Dillingham (CA) 070 59.4882 -157.2905 +US 99678 Togiak Alaska AK Dillingham (CA) 070 59.3292 -160.1123 +US 99701 Fairbanks Alaska AK Fairbanks North Star 090 64.644 -147.5221 +US 99702 Eielson Afb Alaska AK Fairbanks North Star 090 64.6735 -147.0805 +US 99703 Fort Wainwright Alaska AK Fairbanks North Star 090 64.8283 -147.6557 +US 99705 North Pole Alaska AK Fairbanks North Star 090 64.7805 -147.3694 +US 99706 Fairbanks Alaska AK Fairbanks North Star 090 64.8521 -147.9377 +US 99707 Fairbanks Alaska AK Fairbanks North Star 090 64.6998 -147.4051 +US 99708 Fairbanks Alaska AK Fairbanks North Star 090 64.9475 -147.8564 +US 99709 Fairbanks Alaska AK Fairbanks North Star 090 64.8544 -147.8469 +US 99710 Fairbanks Alaska AK Fairbanks North Star 090 64.9486 -147.5355 +US 99711 Fairbanks Alaska AK Fairbanks North Star 090 64.8264 -147.3888 +US 99712 Fairbanks Alaska AK Fairbanks North Star 090 64.9109 -147.5105 +US 99714 Salcha Alaska AK Fairbanks North Star 090 64.5091 -146.953 +US 99716 Two Rivers Alaska AK Fairbanks North Star 090 64.8746 -146.8982 +US 99725 Ester Alaska AK Fairbanks North Star 090 64.871 -148.0949 +US 99775 Fairbanks Alaska AK Fairbanks North Star 090 64.8591 -147.8267 +US 99790 Fairbanks Alaska AK Fairbanks North Star 090 64.8561 -146.276 +US 99827 Haines Alaska AK Haines 100 59.2519 -135.542 +US 99801 Juneau Alaska AK Juneau City and Boroug 110 58.3628 -134.5294 +US 99802 Juneau Alaska AK Juneau City and Boroug 110 58.4057 -134.5897 +US 99803 Juneau Alaska AK Juneau City and Boroug 110 58.3771 -134.6174 +US 99811 Juneau Alaska AK Juneau City and Boroug 110 58.3835 -134.1978 +US 99812 Juneau Alaska AK Juneau City and Borough 110 58.3271 -134.4742 +US 99821 Auke Bay Alaska AK Juneau City and Boroug 110 58.4494 -134.7003 +US 99824 Douglas Alaska AK Juneau City and Boroug 110 58.2756 -134.395 +US 99850 Juneau Alaska AK Juneau City and Boroug 110 58.3835 -134.1978 +US 99556 Anchor Point Alaska AK Kenai Peninsula 122 59.8371 -151.7078 +US 99568 Clam Gulch Alaska AK Kenai Peninsula 122 60.2016 -151.4226 +US 99572 Cooper Landing Alaska AK Kenai Peninsula 122 60.4767 -149.8235 +US 99603 Homer Alaska AK Kenai Peninsula 122 59.5374 -151.2356 +US 99605 Hope Alaska AK Kenai Peninsula 122 60.8726 -149.4683 +US 99610 Kasilof Alaska AK Kenai Peninsula 122 60.3164 -151.2896 +US 99611 Kenai Alaska AK Kenai Peninsula 122 60.6145 -151.2546 +US 99631 Moose Pass Alaska AK Kenai Peninsula 122 60.6148 -149.4056 +US 99635 Nikiski Alaska AK Kenai Peninsula 122 60.7007 -151.2766 +US 99639 Ninilchik Alaska AK Kenai Peninsula 122 60.0108 -151.6396 +US 99663 Seldovia Alaska AK Kenai Peninsula 122 59.4495 -151.7009 +US 99664 Seward Alaska AK Kenai Peninsula 122 60.1329 -149.3985 +US 99669 Soldotna Alaska AK Kenai Peninsula 122 60.4818 -151.1358 +US 99672 Sterling Alaska AK Kenai Peninsula 122 60.5136 -150.8532 +US 99682 Tyonek Alaska AK Kenai Peninsula 122 60.0366 -151.6556 +US 99901 Ketchikan Alaska AK Ketchikan Gateway 130 55.372 -131.6832 +US 99928 Ward Cove Alaska AK Ketchikan Gateway 130 55.3954 -131.6754 +US 99950 Ketchikan Alaska AK Ketchikan Gateway 130 55.542 -131.4327 +US 99550 Port Lions Alaska AK Kodiak Island 150 57.7012 -153.5056 +US 99608 Karluk Alaska AK Kodiak Island 150 58.2687 -155.7971 +US 99615 Kodiak Alaska AK Kodiak Island 150 57.6036 -153.3751 +US 99619 Kodiak Alaska AK Kodiak Island 150 58.2687 -155.7971 +US 99624 Larsen Bay Alaska AK Kodiak Island 150 58.2687 -155.7971 +US 99643 Old Harbor Alaska AK Kodiak Island 150 58.2687 -155.7971 +US 99644 Ouzinkie Alaska AK Kodiak Island 150 58.2687 -155.7971 +US 99697 Kodiak Alaska AK Kodiak Island 150 58.2687 -155.7971 +US 99548 Chignik Lake Alaska AK Lake and Peninsula 164 56.2448 -158.7578 +US 99549 Port Heiden Alaska AK Lake and Peninsula 164 56.9643 -158.5664 +US 99564 Chignik Alaska AK Lake and Peninsula 164 56.3016 -158.4157 +US 99565 Chignik Lagoon Alaska AK Lake and Peninsula 164 58.2687 -156.6484 +US 99579 Egegik Alaska AK Lake and Peninsula 164 58.2062 -157.3422 +US 99606 Iliamna Alaska AK Lake and Peninsula 164 59.7525 -154.8236 +US 99625 Levelock Alaska AK Lake and Peninsula 164 59.2905 -156.6503 +US 99640 Nondalton Alaska AK Lake and Peninsula 164 58.2687 -156.6484 +US 99647 Pedro Bay Alaska AK Lake and Peninsula 164 59.8681 -154.0757 +US 99648 Perryville Alaska AK Lake and Peninsula 164 55.9453 -159.2593 +US 99649 Pilot Point Alaska AK Lake and Peninsula 164 57.5952 -157.4493 +US 99653 Port Alsworth Alaska AK Lake and Peninsula 164 58.2687 -156.6484 +US 99623 Wasilla Alaska AK Matanuska-Susitna Borough 170 61.5463 -149.5901 +US 99629 Wasilla Alaska AK Matanuska-Susitna Borough 170 61.5841 -149.4436 +US 99645 Palmer Alaska AK Matanuska-Susitna 170 61.6303 -148.9872 +US 99652 Big Lake Alaska AK Matanuska-Susitna 170 61.523 -149.7288 +US 99654 Wasilla Alaska AK Matanuska-Susitna 170 61.5923 -149.3959 +US 99667 Skwentna Alaska AK Matanuska-Susitna 170 62.2804 -149.7152 +US 99674 Sutton Alaska AK Matanuska-Susitna 170 61.7327 -148.7837 +US 99676 Talkeetna Alaska AK Matanuska-Susitna 170 62.2605 -150.1101 +US 99683 Trapper Creek Alaska AK Matanuska-Susitna 170 62.5019 -151.0043 +US 99687 Wasilla Alaska AK Matanuska-Susitna 170 61.5313 -149.4784 +US 99688 Willow Alaska AK Matanuska-Susitna 170 61.8966 -150.0038 +US 99694 Houston Alaska AK Matanuska-Susitna 170 62.2804 -149.7152 +US 99659 Saint Michael Alaska AK Nome (CA) 180 63.4776 -162.1091 +US 99671 Stebbins Alaska AK Nome (CA) 180 64.7556 -165.6723 +US 99684 Unalakleet Alaska AK Nome (CA) 180 63.8835 -160.7884 +US 99739 Elim Alaska AK Nome (CA) 180 64.6217 -162.2604 +US 99742 Gambell Alaska AK Nome (CA) 180 63.7766 -171.7017 +US 99753 Koyuk Alaska AK Nome (CA) 180 64.7556 -165.6723 +US 99762 Nome Alaska AK Nome (CA) 180 64.8393 -164.4361 +US 99769 Savoonga Alaska AK Nome (CA) 180 63.6797 -170.4709 +US 99771 Shaktoolik Alaska AK Nome (CA) 180 64.3755 -161.1746 +US 99772 Shishmaref Alaska AK Nome (CA) 180 66.2306 -166.1373 +US 99778 Teller Alaska AK Nome (CA) 180 65.2402 -166.3833 +US 99783 Wales Alaska AK Nome (CA) 180 64.7556 -165.6723 +US 99784 White Mountain Alaska AK Nome (CA) 180 64.7028 -163.4219 +US 99785 Brevig Mission Alaska AK Nome (CA) 180 65.3342 -166.4786 +US 99721 Anaktuvuk Pass Alaska AK North Slope 185 66.6933 -153.994 +US 99723 Barrow Alaska AK North Slope 185 71.2346 -156.8174 +US 99734 Prudhoe Bay Alaska AK North Slope 185 66.6933 -153.994 +US 99747 Kaktovik Alaska AK North Slope 185 66.6933 -153.994 +US 99759 Point Lay Alaska AK North Slope 185 68.887 -164.2497 +US 99766 Point Hope Alaska AK North Slope 185 66.6933 -153.994 +US 99782 Wainwright Alaska AK North Slope 185 66.6933 -153.994 +US 99789 Nuiqsut Alaska AK North Slope 185 70.1927 -150.9971 +US 99791 Atqasuk Alaska AK North Slope 185 70.4947 -157.4411 +US 99727 Buckland Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99736 Deering Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99749 Kiana Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99750 Kivalina Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99751 Kobuk Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99752 Kotzebue Alaska AK Northwest Arctic 188 66.8653 -161.7808 +US 99761 Noatak Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99763 Noorvik Alaska AK Northwest Arctic 188 66.8364 -161.0441 +US 99770 Selawik Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99773 Shungnak Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99786 Ambler Alaska AK Northwest Arctic 188 66.8684 -159.8439 +US 99903 Meyers Chuck Alaska AK Prince of Wales-Outer 201 55.5179 -132.0032 +US 99918 Coffman Cove Alaska AK Prince of Wales-Outer 201 55.9524 -132.7503 +US 99919 Thorne Bay Alaska AK Prince of Wales-Outer 201 55.6609 -132.5138 +US 99921 Craig Alaska AK Prince of Wales-Outer 201 55.4732 -133.1171 +US 99922 Hydaburg Alaska AK Prince of Wales-Outer 201 55.2087 -132.8259 +US 99923 Hyder Alaska AK Prince of Wales-Outer 201 55.5179 -132.0032 +US 99925 Klawock Alaska AK Prince of Wales-Outer 201 55.5526 -133.0555 +US 99926 Metlakatla Alaska AK Prince of Wales-Outer 201 55.1215 -131.579 +US 99927 Point Baker Alaska AK Prince of Wales-Outer 201 55.5179 -132.0032 +US 99835 Sitka Alaska AK Sitka City and Borough 220 57.0514 -135.3166 +US 99689 Yakutat Alaska AK Skagway-Hoonah-Angoon 232 59.812 -139.5505 +US 99820 Angoon Alaska AK Skagway-Hoonah-Angoon 232 57.5005 -134.586 +US 99825 Elfin Cove Alaska AK Skagway-Hoonah-Angoon 232 58.3318 -135.1813 +US 99826 Gustavus Alaska AK Skagway-Hoonah-Angoon 232 58.4284 -135.7615 +US 99829 Hoonah Alaska AK Skagway-Hoonah-Angoon 232 58.0977 -135.4316 +US 99832 Pelican Alaska AK Skagway-Hoonah-Angoon 232 58.3318 -135.1813 +US 99840 Skagway Alaska AK Skagway-Hoonah-Angoon 232 59.4685 -135.3018 +US 99841 Tenakee Springs Alaska AK Skagway-Hoonah-Angoon 232 57.7943 -135.1844 +US 99731 Fort Greely Alaska AK Southeast Fairbanks Census Area 240 63.952 -146.451 +US 99732 Chicken Alaska AK Southeast Fairbanks (C 240 63.8706 -144.0026 +US 99737 Delta Junction Alaska AK Southeast Fairbanks (C 240 63.7964 -145.0726 +US 99738 Eagle Alaska AK Southeast Fairbanks (C 240 63.8706 -144.0026 +US 99764 Northway Alaska AK Southeast Fairbanks (C 240 63.8706 -144.0026 +US 99776 Tanacross Alaska AK Southeast Fairbanks (C 240 63.8706 -144.0026 +US 99779 Tetlin Alaska AK Southeast Fairbanks (C 240 63.8706 -144.0026 +US 99780 Tok Alaska AK Southeast Fairbanks (C 240 63.8706 -144.0026 +US 99566 Chitina Alaska AK Valdez-Cordova (CA) 261 61.471 -144.991 +US 99573 Copper Center Alaska AK Valdez-Cordova (CA) 261 61.471 -144.991 +US 99574 Cordova Alaska AK Valdez-Cordova (CA) 261 60.5362 -145.7534 +US 99586 Gakona Alaska AK Valdez-Cordova (CA) 261 62.6682 -144.1105 +US 99588 Glennallen Alaska AK Valdez-Cordova (CA) 261 62.1039 -145.6617 +US 99677 Tatitlek Alaska AK Valdez-Cordova (CA) 261 60.8906 -146.6703 +US 99686 Valdez Alaska AK Valdez-Cordova (CA) 261 61.101 -146.9 +US 99693 Whittier Alaska AK Valdez-Cordova (CA) 261 60.7734 -148.6839 +US 99554 Alakanuk Alaska AK Wade Hampton (CA) 270 62.6944 -164.6475 +US 99563 Chevak Alaska AK Wade Hampton (CA) 270 61.529 -165.5905 +US 99581 Emmonak Alaska AK Wade Hampton (CA) 270 62.7818 -164.5335 +US 99585 Marshall Alaska AK Wade Hampton (CA) 270 61.9287 -162.268 +US 99604 Hooper Bay Alaska AK Wade Hampton (CA) 270 61.527 -166.1151 +US 99620 Kotlik Alaska AK Wade Hampton (CA) 270 63.0295 -163.5542 +US 99632 Mountain Village Alaska AK Wade Hampton (CA) 270 62.1123 -163.6644 +US 99650 Pilot Station Alaska AK Wade Hampton (CA) 270 61.9462 -162.8747 +US 99657 Russian Mission Alaska AK Wade Hampton (CA) 270 61.7744 -161.3939 +US 99658 Saint Marys Alaska AK Wade Hampton (CA) 270 62.1172 -163.2376 +US 99662 Scammon Bay Alaska AK Wade Hampton (CA) 270 61.845 -165.5819 +US 99666 Sheldon Point Alaska AK Wade Hampton (CA) 270 62.1172 -163.2376 +US 99830 Kake Alaska AK Wrangell-Petersburg (C 280 56.9736 -133.936 +US 99833 Petersburg Alaska AK Wrangell-Petersburg (C 280 56.8271 -133.1607 +US 99836 Port Alexander Alaska AK Wrangell-Petersburg (C 280 56.5359 -132.8279 +US 99929 Wrangell Alaska AK Wrangell-Petersburg (C 280 56.4335 -132.3529 +US 99558 Anvik Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99584 Flat Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99590 Grayling Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99602 Holy Cross Alaska AK Yukon-Koyukuk (CA) 290 62.1926 -159.8251 +US 99627 Mc Grath Alaska AK Yukon-Koyukuk (CA) 290 62.9457 -155.5712 +US 99665 Shageluk Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99675 Takotna Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99691 Nikolai Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99720 Allakaket Alaska AK Yukon-Koyukuk (CA) 290 66.5432 -152.7122 +US 99722 Arctic Village Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99724 Beaver Alaska AK Yukon-Koyukuk (CA) 290 66.9297 -149.193 +US 99726 Bettles Field Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99730 Central Alaska AK Yukon-Koyukuk (CA) 290 65.4681 -144.7489 +US 99733 Circle Alaska AK Yukon-Koyukuk (CA) 290 65.8245 -144.0826 +US 99740 Fort Yukon Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99741 Galena Alaska AK Yukon-Koyukuk (CA) 290 65.8263 -154.4373 +US 99745 Hughes Alaska AK Yukon-Koyukuk (CA) 290 66.0382 -154.2644 +US 99746 Huslia Alaska AK Yukon-Koyukuk (CA) 290 65.6899 -156.292 +US 99748 Kaltag Alaska AK Yukon-Koyukuk (CA) 290 64.3305 -158.7243 +US 99754 Koyukuk Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99756 Manley Hot Springs Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99757 Lake Minchumina Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99758 Minto Alaska AK Yukon-Koyukuk (CA) 290 65.0584 -149.6912 +US 99760 Nenana Alaska AK Yukon-Koyukuk (CA) 290 64.5577 -149.0867 +US 99765 Nulato Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99767 Rampart Alaska AK Yukon-Koyukuk (CA) 290 65.509 -150.1619 +US 99768 Ruby Alaska AK Yukon-Koyukuk (CA) 290 64.7201 -155.5039 +US 99774 Stevens Village Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99777 Tanana Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 99781 Venetie Alaska AK Yukon-Koyukuk (CA) 290 67.0104 -146.4137 +US 99788 Chalkyitsik Alaska AK Yukon-Koyukuk (CA) 290 65.2264 -151.0251 +US 36003 Autaugaville Alabama AL Autauga 001 32.4625 -86.7149 +US 36006 Billingsley Alabama AL Autauga 001 32.6106 -86.7163 +US 36008 Booth Alabama AL Autauga 001 32.5016 -86.5727 +US 36051 Marbury Alabama AL Autauga 001 32.6841 -86.4946 +US 36066 Prattville Alabama AL Autauga 001 32.4787 -86.43 +US 36067 Prattville Alabama AL Autauga 001 32.4715 -86.4831 +US 36068 Prattville Alabama AL Autauga 001 32.5079 -86.6663 +US 36749 Jones Alabama AL Autauga 001 32.5104 -86.8138 +US 36507 Bay Minette Alabama AL Baldwin 003 30.8635 -87.7644 +US 36511 Bon Secour Alabama AL Baldwin 003 30.3128 -87.7431 +US 36526 Daphne Alabama AL Baldwin 003 30.6197 -87.8895 +US 36527 Spanish Fort Alabama AL Baldwin 003 30.6959 -87.8867 +US 36530 Elberta Alabama AL Baldwin 003 30.3942 -87.589 +US 36532 Fairhope Alabama AL Baldwin 003 30.5012 -87.8835 +US 36533 Fairhope Alabama AL Baldwin 003 30.4841 -87.8606 +US 36535 Foley Alabama AL Baldwin 003 30.4007 -87.6857 +US 36536 Foley Alabama AL Baldwin 003 30.4222 -87.7064 +US 36542 Gulf Shores Alabama AL Baldwin 003 30.2717 -87.7589 +US 36547 Gulf Shores Alabama AL Baldwin 003 30.2653 -87.6299 +US 36549 Lillian Alabama AL Baldwin 003 30.3972 -87.4745 +US 36550 Little River Alabama AL Baldwin 003 31.2246 -87.7548 +US 36551 Loxley Alabama AL Baldwin 003 30.618 -87.7562 +US 36555 Magnolia Springs Alabama AL Baldwin 003 30.3998 -87.7726 +US 36559 Montrose Alabama AL Baldwin 003 30.5623 -87.9005 +US 36561 Orange Beach Alabama AL Baldwin 003 30.281 -87.5815 +US 36562 Perdido Alabama AL Baldwin 003 31.0403 -87.6667 +US 36564 Point Clear Alabama AL Baldwin 003 30.476 -87.9179 +US 36567 Robertsdale Alabama AL Baldwin 003 30.5616 -87.6373 +US 36574 Seminole Alabama AL Baldwin 003 30.5048 -87.4659 +US 36576 Silverhill Alabama AL Baldwin 003 30.5222 -87.7457 +US 36577 Spanish Fort Alabama AL Baldwin 003 30.7328 -87.7019 +US 36578 Stapleton Alabama AL Baldwin 003 30.7476 -87.7787 +US 36579 Stockton Alabama AL Baldwin 003 31.0129 -87.8633 +US 36580 Summerdale Alabama AL Baldwin 003 30.4752 -87.6992 +US 36004 Baker Hill Alabama AL Barbour County 005 31.7867 -85.2397 +US 36016 Clayton Alabama AL Barbour 005 31.8874 -85.4509 +US 36017 Clio Alabama AL Barbour 005 31.6852 -85.5904 +US 36027 Eufaula Alabama AL Barbour 005 31.9051 -85.1656 +US 36048 Louisville Alabama AL Barbour 005 31.7943 -85.5581 +US 36072 Eufaula Alabama AL Barbour 005 31.8261 -85.166 +US 35034 Brent Alabama AL Bibb 007 32.9357 -87.2114 +US 35035 Brierfield Alabama AL Bibb 007 33.0427 -86.9517 +US 35042 Centreville Alabama AL Bibb 007 32.9503 -87.1192 +US 35074 Green Pond Alabama AL Bibb 007 33.2027 -87.118 +US 35184 West Blocton Alabama AL Bibb 007 33.1424 -87.1369 +US 35188 Woodstock Alabama AL Bibb 007 33.1698 -87.1635 +US 36792 Randolph Alabama AL Bibb 007 32.8888 -86.907 +US 36793 Lawley Alabama AL Bibb 007 32.8646 -86.9567 +US 35013 Allgood Alabama AL Blount 009 33.9222 -86.4493 +US 35031 Blountsville Alabama AL Blount 009 34.0929 -86.5686 +US 35049 Cleveland Alabama AL Blount 009 33.9778 -86.5598 +US 35079 Hayden Alabama AL Blount 009 33.9534 -86.7455 +US 35097 Locust Fork Alabama AL Blount 009 33.905 -86.6261 +US 35121 Oneonta Alabama AL Blount 009 33.9259 -86.4741 +US 35133 Remlap Alabama AL Blount 009 33.8462 -86.6417 +US 36029 Fitzpatrick Alabama AL Bullock 011 32.1516 -85.8883 +US 36053 Midway Alabama AL Bullock 011 32.0955 -85.5315 +US 36061 Perote Alabama AL Bullock 011 32.0928 -85.7046 +US 36089 Union Springs Alabama AL Bullock 011 32.1663 -85.6787 +US 36015 Chapman Alabama AL Butler 013 31.6427 -86.7343 +US 36030 Forest Home Alabama AL Butler 013 31.8501 -86.8372 +US 36033 Georgiana Alabama AL Butler 013 31.6287 -86.734 +US 36037 Greenville Alabama AL Butler 013 31.81 -86.6229 +US 36456 Mc Kenzie Alabama AL Butler 013 31.545 -86.7356 +US 36201 Anniston Alabama AL Calhoun 015 33.6539 -85.8382 +US 36202 Anniston Alabama AL Calhoun 015 33.7622 -85.8378 +US 36203 Oxford Alabama AL Calhoun 015 33.5815 -85.8328 +US 36203 Anniston Alabama AL Calhoun 015 33.5815 -85.8328 +US 36204 Anniston Alabama AL Calhoun 015 33.7622 -85.8378 +US 36205 Anniston Alabama AL Calhoun 015 33.7358 -85.7933 +US 36206 Anniston Alabama AL Calhoun 015 33.7191 -85.8389 +US 36207 Anniston Alabama AL Calhoun 015 33.6803 -85.7137 +US 36210 Anniston Alabama AL Calhoun County 015 33.6578 -85.7717 +US 36250 Alexandria Alabama AL Calhoun 015 33.7808 -85.8924 +US 36253 Bynum Alabama AL Calhoun 015 33.7622 -85.8378 +US 36254 Choccolocco Alabama AL Calhoun 015 33.6573 -85.6991 +US 36257 De Armanville Alabama AL Calhoun 015 33.7622 -85.8378 +US 36260 Eastaboga Alabama AL Calhoun 015 33.6031 -85.9608 +US 36265 Jacksonville Alabama AL Calhoun 015 33.831 -85.7752 +US 36271 Ohatchee Alabama AL Calhoun 015 33.7788 -86.0254 +US 36272 Piedmont Alabama AL Calhoun 015 33.8389 -85.646 +US 36277 Weaver Alabama AL Calhoun 015 33.7563 -85.8107 +US 36279 Wellington Alabama AL Calhoun 015 33.8638 -85.9153 +US 36852 Cusseta Alabama AL Chambers 017 32.7831 -85.2756 +US 36854 Valley Alabama AL Chambers 017 32.8113 -85.1749 +US 36855 Five Points Alabama AL Chambers 017 33.0424 -85.3243 +US 36862 Lafayette Alabama AL Chambers 017 32.9252 -85.4426 +US 36863 Lanett Alabama AL Chambers 017 32.8616 -85.2161 +US 35959 Cedar Bluff Alabama AL Cherokee 019 34.2417 -85.6026 +US 35960 Centre Alabama AL Cherokee 019 34.1116 -85.6092 +US 35973 Gaylesville Alabama AL Cherokee 019 34.3573 -85.5589 +US 35983 Leesburg Alabama AL Cherokee 019 34.1911 -85.7705 +US 36275 Spring Garden Alabama AL Cherokee 019 33.9778 -85.5521 +US 35045 Clanton Alabama AL Chilton 021 32.8355 -86.6425 +US 35046 Clanton Alabama AL Chilton 021 32.9229 -86.545 +US 35085 Jemison Alabama AL Chilton 021 32.9805 -86.7181 +US 35171 Thorsby Alabama AL Chilton 021 32.8932 -86.7564 +US 36091 Verbena Alabama AL Chilton 021 32.7596 -86.5438 +US 36750 Maplesville Alabama AL Chilton 021 32.8045 -86.8717 +US 36790 Stanton Alabama AL Chilton 021 32.7332 -86.8963 +US 36903 Butler Alabama AL Choctaw County 023 32.1413 -88.131 +US 36904 Butler Alabama AL Choctaw 023 32.0829 -88.2064 +US 36906 Cromwell Alabama AL Choctaw 023 32.0042 -88.2007 +US 36908 Gilbertown Alabama AL Choctaw 023 31.8666 -88.3265 +US 36910 Jachin Alabama AL Choctaw 023 32.0042 -88.2007 +US 36911 Lavaca Alabama AL Choctaw County 023 32.1401 -88.0799 +US 36912 Lisman Alabama AL Choctaw 023 32.2177 -88.3234 +US 36913 Melvin Alabama AL Choctaw 023 32.0042 -88.2007 +US 36915 Needham Alabama AL Choctaw 023 32.0042 -88.2007 +US 36916 Pennington Alabama AL Choctaw 023 32.2094 -88.049 +US 36919 Silas Alabama AL Choctaw 023 31.7668 -88.3091 +US 36921 Toxey Alabama AL Choctaw 023 31.9155 -88.151 +US 36922 Ward Alabama AL Choctaw 023 32.3038 -88.1476 +US 36436 Dickinson Alabama AL Clarke 025 31.7172 -87.6569 +US 36446 Fulton Alabama AL Clarke 025 31.7925 -87.72 +US 36451 Grove Hill Alabama AL Clarke 025 31.6755 -87.7636 +US 36482 Whatley Alabama AL Clarke 025 31.6395 -87.6565 +US 36501 Alma Alabama AL Clarke 025 31.4825 -87.8801 +US 36515 Carlton Alabama AL Clarke 025 31.3224 -87.8378 +US 36524 Coffeeville Alabama AL Clarke 025 31.7843 -88.0715 +US 36540 Gainestown Alabama AL Clarke 025 31.4258 -87.6822 +US 36545 Jackson Alabama AL Clarke 025 31.5131 -87.8672 +US 36570 Salitpa Alabama AL Clarke 025 31.5884 -87.8409 +US 36586 Walker Springs Alabama AL Clarke 025 31.5884 -87.8409 +US 36727 Campbell Alabama AL Clarke 025 31.9213 -88.008 +US 36762 Morvin Alabama AL Clarke 025 31.9402 -88.0034 +US 36784 Thomasville Alabama AL Clarke 025 31.9067 -87.7598 +US 35082 Hollins Alabama AL Clay 027 33.1162 -86.1386 +US 36251 Ashland Alabama AL Clay 027 33.2474 -85.829 +US 36255 Cragford Alabama AL Clay 027 33.2171 -85.7108 +US 36258 Delta Alabama AL Clay 027 33.4573 -85.6793 +US 36266 Lineville Alabama AL Clay 027 33.3286 -85.7346 +US 36267 Millerville Alabama AL Clay 027 33.1808 -85.9418 +US 36261 Edwardsville Alabama AL Cleburne 029 33.7066 -85.5099 +US 36262 Fruithurst Alabama AL Cleburne 029 33.7717 -85.4381 +US 36264 Heflin Alabama AL Cleburne 029 33.6115 -85.5885 +US 36269 Muscadine Alabama AL Cleburne 029 33.7529 -85.3789 +US 36273 Ranburne Alabama AL Cleburne 029 33.5616 -85.3786 +US 36323 Elba Alabama AL Coffee 031 31.4137 -86.0777 +US 36330 Enterprise Alabama AL Coffee 031 31.3408 -85.8421 +US 36331 Enterprise Alabama AL Coffee 031 31.2978 -85.9036 +US 36346 Jack Alabama AL Coffee 031 31.5652 -85.971 +US 36351 New Brockton Alabama AL Coffee 031 31.369 -85.9404 +US 36453 Kinston Alabama AL Coffee 031 31.1926 -86.1514 +US 35616 Cherokee Alabama AL Colbert 033 34.7442 -87.9724 +US 35646 Leighton Alabama AL Colbert 033 34.711 -87.5221 +US 35660 Sheffield Alabama AL Colbert 033 34.7578 -87.6971 +US 35661 Muscle Shoals Alabama AL Colbert 033 34.7561 -87.6304 +US 35662 Muscle Shoals Alabama AL Colbert 033 34.7572 -87.9666 +US 35674 Tuscumbia Alabama AL Colbert 033 34.6874 -87.6833 +US 36401 Evergreen Alabama AL Conecuh 035 31.458 -86.9258 +US 36429 Brooklyn Alabama AL Conecuh 035 31.4669 -87.0447 +US 36432 Castleberry Alabama AL Conecuh 035 31.3709 -86.9981 +US 36454 Lenox Alabama AL Conecuh 035 31.4669 -87.0447 +US 36473 Range Alabama AL Conecuh 035 31.3058 -87.2137 +US 36475 Repton Alabama AL Conecuh 035 31.4256 -87.172 +US 35072 Goodwater Alabama AL Coosa 037 33.0746 -86.0781 +US 35089 Kellyton Alabama AL Coosa 037 32.9791 -86.0484 +US 35136 Rockford Alabama AL Coosa 037 32.878 -86.24 +US 35183 Weogufka Alabama AL Coosa 037 33.0238 -86.3042 +US 36026 Equality Alabama AL Coosa 037 32.8139 -86.1051 +US 36038 Gantt Alabama AL Covington 039 31.2609 -86.4448 +US 36420 Andalusia Alabama AL Covington 039 31.2971 -86.4905 +US 36442 Florala Alabama AL Covington 039 31.0172 -86.3385 +US 36455 Lockhart Alabama AL Covington 039 31.2609 -86.4448 +US 36467 Opp Alabama AL Covington 039 31.2799 -86.2571 +US 36474 Red Level Alabama AL Covington 039 31.4399 -86.6121 +US 36476 River Falls Alabama AL Covington 039 31.2609 -86.4448 +US 36483 Wing Alabama AL Covington 039 31.0223 -86.6293 +US 36009 Brantley Alabama AL Crenshaw 041 31.571 -86.2743 +US 36028 Dozier Alabama AL Crenshaw 041 31.5066 -86.3663 +US 36034 Glenwood Alabama AL Crenshaw 041 31.6641 -86.171 +US 36041 Highland Home Alabama AL Crenshaw 041 31.9283 -86.2971 +US 36042 Honoraville Alabama AL Crenshaw 041 31.8784 -86.3981 +US 36049 Luverne Alabama AL Crenshaw 041 31.7074 -86.2566 +US 36062 Petrey Alabama AL Crenshaw 041 31.7459 -86.3239 +US 36071 Rutledge Alabama AL Crenshaw 041 31.7062 -86.3715 +US 35019 Baileyton Alabama AL Cullman 043 34.2683 -86.6213 +US 35033 Bremen Alabama AL Cullman 043 33.9737 -87.0043 +US 35053 Crane Hill Alabama AL Cullman 043 34.0821 -87.0484 +US 35055 Cullman Alabama AL Cullman 043 34.1761 -86.8298 +US 35056 Cullman Alabama AL Cullman 043 34.1964 -86.8952 +US 35057 Cullman Alabama AL Cullman 043 34.0878 -86.9447 +US 35058 Cullman Alabama AL Cullman 043 34.2098 -86.752 +US 35070 Garden City Alabama AL Cullman 043 34.0058 -86.7499 +US 35077 Hanceville Alabama AL Cullman 043 34.0516 -86.7848 +US 35083 Holly Pond Alabama AL Cullman 043 34.1901 -86.6174 +US 35087 Joppa Alabama AL Cullman 043 34.2837 -86.5519 +US 35098 Logan Alabama AL Cullman 043 34.1377 -87.0266 +US 35179 Vinemont Alabama AL Cullman 043 34.2621 -86.9125 +US 36311 Ariton Alabama AL Dale 045 31.583 -85.7077 +US 36317 Clopton Alabama AL Dale 045 31.6446 -85.3911 +US 36322 Daleville Alabama AL Dale 045 31.2811 -85.7305 +US 36350 Midland City Alabama AL Dale 045 31.3672 -85.513 +US 36352 Newton Alabama AL Dale 045 31.3311 -85.5992 +US 36360 Ozark Alabama AL Dale 045 31.4391 -85.6436 +US 36361 Ozark Alabama AL Dale 045 31.4079 -85.6035 +US 36362 Fort Rucker Alabama AL Dale 045 31.348 -85.7214 +US 36371 Pinckard Alabama AL Dale 045 31.3074 -85.5263 +US 36374 Skipperville Alabama AL Dale 045 31.5748 -85.537 +US 36701 Selma Alabama AL Dallas 047 32.4197 -87.0245 +US 36702 Selma Alabama AL Dallas 047 32.4193 -87.1247 +US 36703 Selma Alabama AL Dallas 047 32.4156 -87.0135 +US 36758 Plantersville Alabama AL Dallas 047 32.6176 -86.9475 +US 36759 Marion Junction Alabama AL Dallas 047 32.4266 -87.2702 +US 36761 Minter Alabama AL Dallas 047 32.1899 -87.0633 +US 36767 Orrville Alabama AL Dallas 047 32.2949 -87.2214 +US 36771 Prairie Alabama AL Dallas County 047 32.0848 -87.4487 +US 36773 Safford Alabama AL Dallas 047 32.3002 -87.3693 +US 36775 Sardis Alabama AL Dallas 047 32.2844 -86.992 +US 36785 Tyler Alabama AL Dallas 047 32.3239 -86.8646 +US 35961 Collinsville Alabama AL DeKalb 049 34.268 -85.862 +US 35962 Crossville Alabama AL DeKalb 049 34.2588 -86.0306 +US 35963 Dawson Alabama AL DeKalb 049 34.3568 -85.9292 +US 35967 Fort Payne Alabama AL DeKalb 049 34.4368 -85.7124 +US 35968 Fort Payne Alabama AL DeKalb 049 34.4898 -85.7657 +US 35971 Fyffe Alabama AL DeKalb 049 34.4373 -85.9288 +US 35974 Geraldine Alabama AL DeKalb 049 34.3592 -86.024 +US 35975 Groveoak Alabama AL DeKalb 049 34.4359 -86.04 +US 35978 Henagar Alabama AL DeKalb 049 34.6186 -85.7274 +US 35981 Ider Alabama AL DeKalb 049 34.7351 -85.6416 +US 35984 Mentone Alabama AL DeKalb 049 34.5872 -85.5777 +US 35986 Rainsville Alabama AL DeKalb 049 34.4989 -85.8446 +US 35988 Sylvania Alabama AL DeKalb 049 34.559 -85.7921 +US 35989 Valley Head Alabama AL DeKalb 049 34.5697 -85.6272 +US 36020 Coosada Alabama AL Elmore 051 32.5056 -86.3322 +US 36022 Deatsville Alabama AL Elmore 051 32.6134 -86.3382 +US 36024 Eclectic Alabama AL Elmore 051 32.6542 -86.0316 +US 36025 Elmore Alabama AL Elmore 051 32.5454 -86.3161 +US 36045 Kent Alabama AL Elmore 051 32.5876 -86.133 +US 36054 Millbrook Alabama AL Elmore 051 32.4995 -86.3641 +US 36078 Tallassee Alabama AL Elmore 051 32.551 -85.8978 +US 36080 Titus Alabama AL Elmore 051 32.69 -86.2393 +US 36092 Wetumpka Alabama AL Elmore 051 32.5927 -86.2153 +US 36093 Wetumpka Alabama AL Elmore 051 32.5622 -86.0994 +US 36426 Brewton Alabama AL Escambia 053 31.1294 -87.0961 +US 36427 Brewton Alabama AL Escambia 053 31.0918 -87.264 +US 36441 Flomaton Alabama AL Escambia 053 31.0402 -87.2664 +US 36502 Atmore Alabama AL Escambia 053 31.0572 -87.4873 +US 36503 Atmore Alabama AL Escambia 053 31.1282 -87.1521 +US 36504 Atmore Alabama AL Escambia 053 31.0158 -87.4972 +US 36543 Huxford Alabama AL Escambia 053 31.2161 -87.4615 +US 35901 Gadsden Alabama AL Etowah 055 34.048 -85.9246 +US 35902 Gadsden Alabama AL Etowah 055 33.9841 -85.8034 +US 35903 Gadsden Alabama AL Etowah 055 33.9845 -85.9077 +US 35904 Gadsden Alabama AL Etowah 055 34.0217 -86.0495 +US 35905 Gadsden Alabama AL Etowah 055 33.9352 -85.9576 +US 35906 Rainbow City Alabama AL Etowah 055 33.9318 -86.0898 +US 35907 Gadsden Alabama AL Etowah 055 33.8979 -86.0245 +US 35952 Altoona Alabama AL Etowah 055 34.071 -86.2096 +US 35954 Attalla Alabama AL Etowah 055 34.0296 -86.0967 +US 35972 Gallant Alabama AL Etowah 055 33.9976 -86.2346 +US 35990 Walnut Grove Alabama AL Etowah 055 34.0566 -86.2754 +US 35999 Gadsden Alabama AL Etowah County 055 34.0138 -86.0084 +US 35542 Bankston Alabama AL Fayette 057 33.7008 -87.6897 +US 35545 Belk Alabama AL Fayette 057 33.6452 -87.9239 +US 35546 Berry Alabama AL Fayette 057 33.6945 -87.6226 +US 35555 Fayette Alabama AL Fayette 057 33.6974 -87.8346 +US 35559 Glen Allen Alabama AL Fayette 057 33.8896 -87.6964 +US 35571 Hodges Alabama AL Franklin 059 34.3417 -87.959 +US 35581 Phil Campbell Alabama AL Franklin 059 34.347 -87.7154 +US 35582 Red Bay Alabama AL Franklin 059 34.4513 -88.1129 +US 35585 Spruce Pine Alabama AL Franklin 059 34.4246 -87.8145 +US 35593 Vina Alabama AL Franklin 059 34.3712 -88.0774 +US 35653 Russellville Alabama AL Franklin 059 34.5066 -87.7257 +US 35654 Russellville Alabama AL Franklin 059 34.4675 -87.6478 +US 36136 Montgomery Alabama AL Geneva County 061 32.3544 -86.2843 +US 36313 Bellwood Alabama AL Geneva 061 31.1501 -85.8137 +US 36314 Black Alabama AL Geneva 061 31.0132 -85.7456 +US 36316 Chancellor Alabama AL Geneva 061 31.1767 -85.8135 +US 36318 Coffee Springs Alabama AL Geneva 061 31.1388 -85.9182 +US 36340 Geneva Alabama AL Geneva 061 31.0414 -85.8847 +US 36344 Hartford Alabama AL Geneva 061 31.086 -85.7192 +US 36349 Malvern Alabama AL Geneva 061 31.1212 -85.5592 +US 36375 Slocomb Alabama AL Geneva 061 31.0956 -85.583 +US 36477 Samson Alabama AL Geneva 061 31.1049 -86.0674 +US 35443 Boligee Alabama AL Greene 063 32.7746 -88.0267 +US 35448 Clinton Alabama AL Greene 063 32.8357 -87.9569 +US 35462 Eutaw Alabama AL Greene 063 32.8889 -87.9303 +US 35469 Knoxville Alabama AL Greene 063 32.9824 -87.7919 +US 35491 West Greene Alabama AL Greene 063 32.8357 -87.9569 +US 36740 Forkland Alabama AL Greene 063 32.6108 -87.8441 +US 35441 Akron Alabama AL Hale 065 32.8553 -87.7219 +US 35474 Moundville Alabama AL Hale 065 32.9108 -87.5935 +US 36742 Gallion Alabama AL Hale 065 32.5298 -87.6985 +US 36744 Greensboro Alabama AL Hale 065 32.7167 -87.5905 +US 36765 Newbern Alabama AL Hale 065 32.5515 -87.5615 +US 36776 Sawyerville Alabama AL Hale 065 32.7578 -87.7402 +US 36310 Abbeville Alabama AL Henry 067 31.5755 -85.279 +US 36345 Headland Alabama AL Henry 067 31.3534 -85.3323 +US 36353 Newville Alabama AL Henry 067 31.4403 -85.3287 +US 36373 Shorterville Alabama AL Henry 067 31.501 -85.1135 +US 36301 Dothan Alabama AL Houston 069 31.1481 -85.3718 +US 36302 Dothan Alabama AL Houston 069 31.156 -85.3559 +US 36303 Dothan Alabama AL Houston 069 31.2668 -85.3971 +US 36304 Dothan Alabama AL Houston 069 31.156 -85.3559 +US 36305 Dothan Alabama AL Houston 069 31.2197 -85.4828 +US 36312 Ashford Alabama AL Houston 069 31.1888 -85.2535 +US 36319 Columbia Alabama AL Houston 069 31.3352 -85.1455 +US 36320 Cottonwood Alabama AL Houston 069 31.0507 -85.3154 +US 36321 Cowarts Alabama AL Houston 069 31.2025 -85.3014 +US 36343 Gordon Alabama AL Houston 069 31.1002 -85.1234 +US 36370 Pansey Alabama AL Houston 069 31.1403 -85.1573 +US 36376 Webb Alabama AL Houston 069 31.2656 -85.2544 +US 35740 Bridgeport Alabama AL Jackson 071 34.9446 -85.7277 +US 35744 Dutton Alabama AL Jackson 071 34.6046 -85.9067 +US 35745 Estillfork Alabama AL Jackson 071 34.913 -86.1716 +US 35746 Fackler Alabama AL Jackson 071 34.8259 -85.9846 +US 35751 Hollytree Alabama AL Jackson 071 34.7955 -86.2743 +US 35752 Hollywood Alabama AL Jackson 071 34.7304 -85.9532 +US 35755 Langston Alabama AL Jackson 071 34.5001 -86.1353 +US 35764 Paint Rock Alabama AL Jackson 071 34.7031 -86.3068 +US 35765 Pisgah Alabama AL Jackson 071 34.6886 -85.803 +US 35766 Princeton Alabama AL Jackson 071 34.8713 -86.2513 +US 35768 Scottsboro Alabama AL Jackson 071 34.7507 -86.1422 +US 35769 Scottsboro Alabama AL Jackson 071 34.618 -86.0562 +US 35771 Section Alabama AL Jackson 071 34.5433 -85.994 +US 35772 Stevenson Alabama AL Jackson 071 34.8769 -85.8508 +US 35774 Trenton Alabama AL Jackson 071 34.7632 -86.2295 +US 35776 Woodville Alabama AL Jackson 071 34.6689 -86.2296 +US 35958 Bryant Alabama AL Jackson 071 34.945 -85.6324 +US 35966 Flat Rock Alabama AL Jackson 071 34.8076 -85.7084 +US 35979 Higdon Alabama AL Jackson 071 34.8391 -85.6196 +US 35005 Adamsville Alabama AL Jefferson 073 33.5884 -86.9597 +US 35006 Adger Alabama AL Jefferson 073 33.4343 -87.1675 +US 35015 Alton Alabama AL Jefferson 073 33.5446 -86.9292 +US 35020 Bessemer Alabama AL Jefferson 073 33.409 -86.9475 +US 35021 Bessemer Alabama AL Jefferson 073 33.5446 -86.9292 +US 35022 Bessemer Alabama AL Jefferson 073 33.3224 -86.9657 +US 35023 Bessemer Alabama AL Jefferson 073 33.468 -87.0924 +US 35036 Brookside Alabama AL Jefferson 073 33.6363 -86.9162 +US 35041 Cardiff Alabama AL Jefferson 073 33.6467 -86.9318 +US 35048 Clay Alabama AL Jefferson 073 33.5446 -86.9292 +US 35060 Docena Alabama AL Jefferson 073 33.5589 -86.9294 +US 35061 Dolomite Alabama AL Jefferson 073 33.4654 -86.9564 +US 35064 Fairfield Alabama AL Jefferson 073 33.4735 -86.9183 +US 35068 Fultondale Alabama AL Jefferson 073 33.6017 -86.8265 +US 35071 Gardendale Alabama AL Jefferson 073 33.7189 -86.8225 +US 35073 Graysville Alabama AL Jefferson 073 33.6539 -86.9803 +US 35091 Kimberly Alabama AL Jefferson 073 33.7684 -86.8084 +US 35094 Leeds Alabama AL Jefferson 073 33.5283 -86.5748 +US 35111 Mc Calla Alabama AL Jefferson 073 33.2845 -87.1024 +US 35116 Morris Alabama AL Jefferson 073 33.7392 -86.7726 +US 35117 Mount Olive Alabama AL Jefferson 073 33.6768 -86.8717 +US 35118 Mulga Alabama AL Jefferson 073 33.5363 -87.051 +US 35119 New Castle Alabama AL Jefferson 073 33.6508 -86.7697 +US 35123 Palmerdale Alabama AL Jefferson 073 33.5446 -86.9292 +US 35126 Pinson Alabama AL Jefferson 073 33.7299 -86.6451 +US 35127 Pleasant Grove Alabama AL Jefferson 073 33.4883 -86.9766 +US 35139 Sayre Alabama AL Jefferson 073 33.7111 -86.9759 +US 35142 Shannon Alabama AL Jefferson 073 33.4069 -86.8735 +US 35172 Trafford Alabama AL Jefferson 073 33.819 -86.7434 +US 35173 Trussville Alabama AL Jefferson 073 33.6339 -86.5981 +US 35180 Warrior Alabama AL Jefferson 073 33.8529 -86.8198 +US 35181 Watson Alabama AL Jefferson 073 33.5446 -86.9292 +US 35201 Birmingham Alabama AL Jefferson 073 33.4564 -86.8019 +US 35202 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35203 Birmingham Alabama AL Jefferson 073 33.521 -86.8066 +US 35204 Birmingham Alabama AL Jefferson 073 33.5179 -86.8372 +US 35205 Birmingham Alabama AL Jefferson 073 33.4951 -86.8059 +US 35206 Birmingham Alabama AL Jefferson 073 33.5678 -86.7199 +US 35207 Birmingham Alabama AL Jefferson 073 33.5594 -86.8153 +US 35208 Birmingham Alabama AL Jefferson 073 33.4977 -86.8799 +US 35209 Birmingham Alabama AL Jefferson 073 33.4653 -86.8082 +US 35210 Birmingham Alabama AL Jefferson 073 33.5452 -86.6655 +US 35211 Birmingham Alabama AL Jefferson 073 33.4816 -86.859 +US 35212 Birmingham Alabama AL Jefferson 073 33.5409 -86.7495 +US 35213 Birmingham Alabama AL Jefferson 073 33.5066 -86.7428 +US 35214 Birmingham Alabama AL Jefferson 073 33.5554 -86.887 +US 35215 Birmingham Alabama AL Jefferson 073 33.6493 -86.7057 +US 35216 Birmingham Alabama AL Jefferson 073 33.4188 -86.7867 +US 35217 Birmingham Alabama AL Jefferson 073 33.5887 -86.765 +US 35218 Birmingham Alabama AL Jefferson 073 33.506 -86.893 +US 35219 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35220 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35221 Birmingham Alabama AL Jefferson 073 33.4523 -86.8935 +US 35222 Birmingham Alabama AL Jefferson 073 33.5219 -86.7666 +US 35223 Birmingham Alabama AL Jefferson 073 33.4995 -86.7268 +US 35224 Birmingham Alabama AL Jefferson 073 33.5191 -86.9342 +US 35225 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35226 Birmingham Alabama AL Jefferson 073 33.3967 -86.8346 +US 35228 Birmingham Alabama AL Jefferson 073 33.4558 -86.9118 +US 35229 Birmingham Alabama AL Jefferson 073 33.4629 -86.7904 +US 35230 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35231 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35232 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35233 Birmingham Alabama AL Jefferson 073 33.5062 -86.8003 +US 35234 Birmingham Alabama AL Jefferson 073 33.5378 -86.8068 +US 35235 Birmingham Alabama AL Jefferson 073 33.6328 -86.6493 +US 35236 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35237 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35238 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35240 Birmingham Alabama AL Jefferson 073 33.4259 -86.7769 +US 35243 Birmingham Alabama AL Jefferson 073 33.4459 -86.7502 +US 35244 Birmingham Alabama AL Jefferson 073 33.3538 -86.8254 +US 35245 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35246 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35249 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35253 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35254 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35255 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35259 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35260 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35261 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35263 Birmingham Alabama AL Jefferson 073 33.5225 -86.8094 +US 35266 Birmingham Alabama AL Jefferson 073 33.3729 -86.8531 +US 35275 Birmingham Alabama AL Jefferson County 073 33.5277 -86.7992 +US 35277 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35278 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35279 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35280 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35281 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35282 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35283 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35285 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35286 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35287 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35288 Birmingham Alabama AL Jefferson 073 33.4458 -86.9285 +US 35289 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35290 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35291 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35292 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35293 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35294 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35295 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35296 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35297 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35298 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35299 Birmingham Alabama AL Jefferson 073 33.5446 -86.9292 +US 35544 Beaverton Alabama AL Lamar 075 33.9429 -88.0157 +US 35552 Detroit Alabama AL Lamar 075 34.0109 -88.1606 +US 35574 Kennedy Alabama AL Lamar 075 33.6153 -87.9948 +US 35576 Millport Alabama AL Lamar 075 33.5401 -88.2 +US 35586 Sulligent Alabama AL Lamar 075 33.8549 -88.1508 +US 35592 Vernon Alabama AL Lamar 075 33.7613 -88.0979 +US 35610 Anderson Alabama AL Lauderdale 077 34.9424 -87.2734 +US 35617 Cloverdale Alabama AL Lauderdale 077 34.87 -87.7069 +US 35630 Florence Alabama AL Lauderdale 077 34.8305 -87.656 +US 35631 Florence Alabama AL Lauderdale 077 34.87 -87.7069 +US 35632 Florence Alabama AL Lauderdale 077 34.87 -87.7069 +US 35633 Florence Alabama AL Lauderdale 077 34.8825 -87.7398 +US 35634 Florence Alabama AL Lauderdale 077 34.9186 -87.6136 +US 35645 Killen Alabama AL Lauderdale 077 34.9016 -87.5082 +US 35648 Lexington Alabama AL Lauderdale 077 34.9559 -87.3935 +US 35652 Rogersville Alabama AL Lauderdale 077 34.8495 -87.3237 +US 35677 Waterloo Alabama AL Lauderdale 077 34.9357 -87.9624 +US 35618 Courtland Alabama AL Lawrence 079 34.6719 -87.3143 +US 35643 Hillsboro Alabama AL Lawrence 079 34.6476 -87.1804 +US 35650 Moulton Alabama AL Lawrence 079 34.5058 -87.2224 +US 35651 Mount Hope Alabama AL Lawrence 079 34.4793 -87.4769 +US 35672 Town Creek Alabama AL Lawrence 079 34.6491 -87.4262 +US 36801 Opelika Alabama AL Lee 081 32.6211 -85.3929 +US 36802 Opelika Alabama AL Lee 081 32.5782 -85.349 +US 36803 Opelika Alabama AL Lee 081 32.5226 -85.4315 +US 36804 Opelika Alabama AL Lee 081 32.5768 -85.312 +US 36830 Auburn Alabama AL Lee 081 32.5475 -85.4682 +US 36831 Auburn Alabama AL Lee 081 32.5782 -85.349 +US 36832 Auburn Alabama AL Lee 081 32.592 -85.5189 +US 36849 Auburn University Alabama AL Lee 081 32.6024 -85.4873 +US 36865 Loachapoka Alabama AL Lee 081 32.5782 -85.349 +US 36872 Valley Alabama AL Lee 081 32.5782 -85.349 +US 36874 Salem Alabama AL Lee 081 32.6212 -85.184 +US 36877 Smiths Alabama AL Lee 081 32.5201 -85.1 +US 36879 Waverly Alabama AL Lee 081 32.7632 -85.5144 +US 35611 Athens Alabama AL Limestone 083 34.8036 -86.9707 +US 35612 Athens Alabama AL Limestone 083 34.7749 -87.0305 +US 35613 Athens Alabama AL Limestone 083 34.8317 -86.8867 +US 35614 Athens Alabama AL Limestone 083 34.8474 -87.0607 +US 35615 Belle Mina Alabama AL Limestone 083 34.7749 -87.0305 +US 35620 Elkmont Alabama AL Limestone 083 34.9152 -86.9105 +US 35647 Lester Alabama AL Limestone 083 34.9596 -87.1006 +US 35649 Mooresville Alabama AL Limestone 083 34.6259 -86.8746 +US 35671 Tanner Alabama AL Limestone 083 34.6796 -86.9625 +US 35739 Ardmore Alabama AL Limestone 083 34.9804 -86.8346 +US 35742 Capshaw Alabama AL Limestone 083 34.7749 -87.0305 +US 36032 Fort Deposit Alabama AL Lowndes 085 31.996 -86.5761 +US 36040 Hayneville Alabama AL Lowndes 085 32.1957 -86.655 +US 36047 Letohatchee Alabama AL Lowndes 085 32.0862 -86.488 +US 36419 Allen Alabama AL Lowndes County 085 31.6206 -87.6664 +US 36752 Lowndesboro Alabama AL Lowndes 085 32.2943 -86.6471 +US 36031 Fort Davis Alabama AL Macon 087 32.2507 -85.7524 +US 36039 Hardaway Alabama AL Macon 087 32.3129 -85.8838 +US 36075 Shorter Alabama AL Macon 087 32.3836 -85.9162 +US 36083 Tuskegee Alabama AL Macon 087 32.4316 -85.6861 +US 36087 Tuskegee Institute Alabama AL Macon 087 32.4093 -85.738 +US 36088 Tuskegee Institute Alabama AL Macon 087 32.4145 -85.7253 +US 36866 Notasulga Alabama AL Macon 087 32.5437 -85.6871 +US 35741 Brownsboro Alabama AL Madison 089 34.7167 -86.4687 +US 35748 Gurley Alabama AL Madison 089 34.714 -86.394 +US 35749 Harvest Alabama AL Madison 089 34.8273 -86.7499 +US 35750 Hazel Green Alabama AL Madison 089 34.9496 -86.5935 +US 35756 Madison Alabama AL Madison 089 34.643 -86.8168 +US 35757 Madison Alabama AL Madison 089 34.7782 -86.7442 +US 35758 Madison Alabama AL Madison 089 34.7108 -86.7425 +US 35759 Meridianville Alabama AL Madison 089 34.8618 -86.5789 +US 35760 New Hope Alabama AL Madison 089 34.5494 -86.3961 +US 35761 New Market Alabama AL Madison 089 34.9 -86.4487 +US 35762 Normal Alabama AL Madison 089 34.734 -86.5229 +US 35763 Owens Cross Roads Alabama AL Madison 089 34.6215 -86.4644 +US 35767 Ryland Alabama AL Madison 089 34.734 -86.5229 +US 35773 Toney Alabama AL Madison 089 34.9116 -86.7 +US 35801 Huntsville Alabama AL Madison 089 34.7269 -86.5673 +US 35802 Huntsville Alabama AL Madison 089 34.6679 -86.5603 +US 35803 Huntsville Alabama AL Madison 089 34.6205 -86.551 +US 35804 Huntsville Alabama AL Madison 089 34.7284 -86.5853 +US 35805 Huntsville Alabama AL Madison 089 34.7059 -86.6165 +US 35806 Huntsville Alabama AL Madison 089 34.7448 -86.6704 +US 35807 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35808 Huntsville Alabama AL Madison 089 34.6845 -86.6538 +US 35809 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35810 Huntsville Alabama AL Madison 089 34.7784 -86.6091 +US 35811 Huntsville Alabama AL Madison 089 34.7789 -86.5438 +US 35812 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35813 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35814 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35815 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35816 Huntsville Alabama AL Madison 089 34.7389 -86.6249 +US 35824 Huntsville Alabama AL Madison 089 34.6583 -86.7295 +US 35893 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35894 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35895 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35896 Huntsville Alabama AL Madison 089 34.7543 -86.6546 +US 35897 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35898 Huntsville Alabama AL Madison 089 34.734 -86.5229 +US 35899 Huntsville Alabama AL Madison 089 34.7339 -86.6456 +US 36731 Dayton Alabama AL Marengo County 091 32.3507 -87.6418 +US 36732 Demopolis Alabama AL Marengo 091 32.4908 -87.8397 +US 36736 Dixons Mills Alabama AL Marengo 091 32.0672 -87.7454 +US 36738 Faunsdale Alabama AL Marengo 091 32.4233 -87.6181 +US 36745 Jefferson Alabama AL Marengo 091 32.414 -87.8986 +US 36748 Linden Alabama AL Marengo 091 32.3053 -87.7954 +US 36754 Magnolia Alabama AL Marengo 091 32.1419 -87.6998 +US 36763 Myrtlewood Alabama AL Marengo 091 32.2516 -87.9494 +US 36764 Nanafalia Alabama AL Marengo 091 32.2683 -87.7953 +US 36782 Sweet Water Alabama AL Marengo 091 32.0773 -87.9228 +US 36783 Thomaston Alabama AL Marengo 091 32.2538 -87.5974 +US 35543 Bear Creek Alabama AL Marion 093 34.1649 -87.7396 +US 35548 Brilliant Alabama AL Marion 093 34.0377 -87.7563 +US 35563 Guin Alabama AL Marion 093 33.9676 -87.9024 +US 35564 Hackleburg Alabama AL Marion 093 34.2678 -87.8608 +US 35570 Hamilton Alabama AL Marion 093 34.1534 -88.0085 +US 35594 Winfield Alabama AL Marion 093 33.9303 -87.7972 +US 35016 Arab Alabama AL Marshall 095 34.3283 -86.4896 +US 35175 Union Grove Alabama AL Marshall 095 34.4093 -86.4628 +US 35747 Grant Alabama AL Marshall 095 34.4959 -86.259 +US 35950 Albertville Alabama AL Marshall 095 34.2739 -86.2064 +US 35951 Albertville Alabama AL Marshall 095 34.3223 -86.1935 +US 35956 Boaz Alabama AL Marshall 095 34.1437 -86.148 +US 35957 Boaz Alabama AL Marshall 095 34.1921 -86.1941 +US 35964 Douglas Alabama AL Marshall 095 34.3496 -86.3198 +US 35976 Guntersville Alabama AL Marshall 095 34.3449 -86.2752 +US 35980 Horton Alabama AL Marshall 095 34.19 -86.3173 +US 36421 Andalusia Alabama AL Mobile County 097 31.3247 -86.5067 +US 36505 Axis Alabama AL Mobile 097 30.9394 -88.0159 +US 36509 Bayou La Batre Alabama AL Mobile 097 30.408 -88.2507 +US 36512 Bucks Alabama AL Mobile 097 30.6589 -88.178 +US 36521 Chunchula Alabama AL Mobile 097 30.9912 -88.1311 +US 36522 Citronelle Alabama AL Mobile 097 31.0425 -88.2549 +US 36523 Coden Alabama AL Mobile 097 30.3903 -88.2076 +US 36525 Creola Alabama AL Mobile 097 30.9013 -88.0174 +US 36528 Dauphin Island Alabama AL Mobile 097 30.2521 -88.1096 +US 36541 Grand Bay Alabama AL Mobile 097 30.4983 -88.3282 +US 36544 Irvington Alabama AL Mobile 097 30.4802 -88.2396 +US 36560 Mount Vernon Alabama AL Mobile 097 31.0974 -88.035 +US 36568 Saint Elmo Alabama AL Mobile 097 30.4943 -88.2699 +US 36571 Saraland Alabama AL Mobile 097 30.8332 -88.0934 +US 36572 Satsuma Alabama AL Mobile 097 30.8516 -88.0533 +US 36575 Semmes Alabama AL Mobile 097 30.7544 -88.2667 +US 36582 Theodore Alabama AL Mobile 097 30.5444 -88.1807 +US 36587 Wilmer Alabama AL Mobile 097 30.8137 -88.3332 +US 36590 Theodore Alabama AL Mobile 097 30.488 -88.2533 +US 36601 Mobile Alabama AL Mobile 097 30.7011 -88.1032 +US 36602 Mobile Alabama AL Mobile 097 30.6888 -88.0453 +US 36603 Mobile Alabama AL Mobile 097 30.6921 -88.0562 +US 36604 Mobile Alabama AL Mobile 097 30.682 -88.0678 +US 36605 Mobile Alabama AL Mobile 097 30.6341 -88.0846 +US 36606 Mobile Alabama AL Mobile 097 30.6729 -88.1009 +US 36607 Mobile Alabama AL Mobile 097 30.6975 -88.1029 +US 36608 Mobile Alabama AL Mobile 097 30.6817 -88.2945 +US 36609 Mobile Alabama AL Mobile 097 30.6605 -88.1618 +US 36610 Mobile Alabama AL Mobile 097 30.7309 -88.0789 +US 36611 Mobile Alabama AL Mobile 097 30.7705 -88.0781 +US 36612 Mobile Alabama AL Mobile 097 30.7518 -88.1131 +US 36613 Eight Mile Alabama AL Mobile 097 30.7951 -88.1823 +US 36614 Mobile Alabama AL Mobile 097 30.6019 -88.2111 +US 36615 Mobile Alabama AL Mobile 097 30.6411 -88.0622 +US 36616 Mobile Alabama AL Mobile 097 30.671 -88.1267 +US 36617 Mobile Alabama AL Mobile 097 30.7145 -88.0918 +US 36618 Mobile Alabama AL Mobile 097 30.7322 -88.1758 +US 36619 Mobile Alabama AL Mobile 097 30.5928 -88.1946 +US 36621 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36622 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36623 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36624 Mobile Alabama AL Mobile County 097 30.6958 -88.0433 +US 36625 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36626 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36628 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36630 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36631 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36633 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36640 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36641 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36644 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36652 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36660 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36663 Mobile Alabama AL Mobile 097 30.819 -88.2317 +US 36670 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36671 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36675 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36685 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36688 Mobile Alabama AL Mobile 097 30.6962 -88.1821 +US 36689 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36690 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36691 Mobile Alabama AL Mobile 097 30.6589 -88.178 +US 36693 Mobile Alabama AL Mobile 097 30.6311 -88.1588 +US 36695 Mobile Alabama AL Mobile 097 30.6474 -88.2292 +US 36425 Beatrice Alabama AL Monroe 099 31.7273 -87.1719 +US 36431 Burnt Corn Alabama AL Monroe 099 31.5295 -87.3453 +US 36439 Excel Alabama AL Monroe 099 31.4295 -87.3393 +US 36444 Franklin Alabama AL Monroe 099 31.7238 -87.4412 +US 36445 Frisco City Alabama AL Monroe 099 31.4235 -87.3817 +US 36449 Goodway Alabama AL Monroe 099 31.5295 -87.3453 +US 36457 Megargel Alabama AL Monroe 099 31.3612 -87.4353 +US 36458 Mexia Alabama AL Monroe 099 31.5147 -87.4084 +US 36460 Monroeville Alabama AL Monroe 099 31.5153 -87.341 +US 36461 Monroeville Alabama AL Monroe 099 31.5221 -87.3411 +US 36462 Monroeville Alabama AL Monroe 099 31.5295 -87.3453 +US 36469 Paul Alabama AL Monroe County 099 31.32 -86.7439 +US 36470 Perdue Hill Alabama AL Monroe 099 31.5081 -87.4284 +US 36471 Peterman Alabama AL Monroe 099 31.59 -87.26 +US 36480 Uriah Alabama AL Monroe 099 31.3135 -87.5705 +US 36481 Vredenburgh Alabama AL Monroe 099 31.8085 -87.3164 +US 36013 Cecil Alabama AL Montgomery 101 32.2937 -85.9827 +US 36036 Grady Alabama AL Montgomery 101 32.0194 -86.1292 +US 36043 Hope Hull Alabama AL Montgomery 101 32.2243 -86.3932 +US 36046 Lapine Alabama AL Montgomery 101 31.9854 -86.2785 +US 36052 Mathews Alabama AL Montgomery 101 32.1283 -86.0413 +US 36057 Mount Meigs Alabama AL Montgomery 101 32.2334 -86.2085 +US 36064 Pike Road Alabama AL Montgomery 101 32.3357 -86.0959 +US 36065 Pine Level Alabama AL Montgomery 101 32.0726 -86.0606 +US 36069 Ramer Alabama AL Montgomery 101 32.0677 -86.2463 +US 36101 Montgomery Alabama AL Montgomery 101 32.357 -86.2578 +US 36102 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36103 Montgomery Alabama AL Montgomery 101 32.3462 -86.2873 +US 36104 Montgomery Alabama AL Montgomery 101 32.373 -86.3081 +US 36105 Montgomery Alabama AL Montgomery 101 32.3257 -86.3104 +US 36106 Montgomery Alabama AL Montgomery 101 32.3543 -86.2673 +US 36107 Montgomery Alabama AL Montgomery 101 32.3804 -86.2799 +US 36108 Montgomery Alabama AL Montgomery 101 32.3417 -86.3529 +US 36109 Montgomery Alabama AL Montgomery 101 32.3834 -86.2434 +US 36110 Montgomery Alabama AL Montgomery 101 32.4217 -86.275 +US 36111 Montgomery Alabama AL Montgomery 101 32.3374 -86.2715 +US 36112 Montgomery Alabama AL Montgomery 101 32.3808 -86.3491 +US 36113 Montgomery Alabama AL Montgomery 101 32.3846 -86.3039 +US 36114 Montgomery Alabama AL Montgomery 101 32.404 -86.2539 +US 36115 Montgomery Alabama AL Montgomery 101 32.4076 -86.2474 +US 36116 Montgomery Alabama AL Montgomery 101 32.3129 -86.2421 +US 36117 Montgomery Alabama AL Montgomery 101 32.3736 -86.1833 +US 36118 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36119 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36120 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36121 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36123 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36124 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36125 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36130 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36131 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36132 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36133 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36134 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36135 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36140 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36141 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36142 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36177 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36191 Montgomery Alabama AL Montgomery 101 32.2334 -86.2085 +US 36192 Montgomery Alabama AL Montgomery County 101 32.3544 -86.2843 +US 36193 Montgomery Alabama AL Montgomery County 101 32.3808 -86.2469 +US 36194 Montgomery Alabama AL Montgomery County 101 32.3544 -86.2843 +US 36195 Montgomery Alabama AL Montgomery County 101 32.3544 -86.2843 +US 36196 Montgomery Alabama AL Montgomery County 101 32.3544 -86.2843 +US 36197 Montgomery Alabama AL Montgomery County 101 32.3656 -86.2827 +US 36198 Montgomery Alabama AL Montgomery County 101 32.3544 -86.2843 +US 36199 Montgomery Alabama AL Montgomery County 101 32.3858 -86.2822 +US 35601 Decatur Alabama AL Morgan 103 34.5896 -86.9887 +US 35602 Decatur Alabama AL Morgan 103 34.6062 -87.0881 +US 35603 Decatur Alabama AL Morgan 103 34.5484 -87.0004 +US 35609 Decatur Alabama AL Morgan 103 34.4954 -86.8299 +US 35619 Danville Alabama AL Morgan 103 34.3873 -87.1454 +US 35621 Eva Alabama AL Morgan 103 34.3478 -86.7044 +US 35622 Falkville Alabama AL Morgan 103 34.3477 -86.9131 +US 35640 Hartselle Alabama AL Morgan 103 34.4482 -86.9242 +US 35670 Somerville Alabama AL Morgan 103 34.4995 -86.8009 +US 35673 Trinity Alabama AL Morgan 103 34.5918 -87.0913 +US 35699 Decatur Alabama AL Morgan 103 34.4954 -86.8299 +US 35754 Laceys Spring Alabama AL Morgan 103 34.4996 -86.6129 +US 35775 Valhermoso Springs Alabama AL Morgan 103 34.542 -86.6871 +US 36756 Marion Alabama AL Perry 105 32.6463 -87.3314 +US 36779 Sprott Alabama AL Perry 105 32.6544 -87.1416 +US 36786 Uniontown Alabama AL Perry 105 32.447 -87.4934 +US 35442 Aliceville Alabama AL Pickens 107 33.1228 -88.1667 +US 35447 Carrollton Alabama AL Pickens 107 33.2485 -88.1321 +US 35461 Ethelsville Alabama AL Pickens 107 33.3868 -88.222 +US 35466 Gordo Alabama AL Pickens 107 33.3469 -87.9005 +US 35471 Mc Shan Alabama AL Pickens 107 33.2626 -88.0885 +US 35481 Reform Alabama AL Pickens 107 33.3959 -88.0203 +US 36005 Banks Alabama AL Pike 109 31.8368 -85.7998 +US 36010 Brundidge Alabama AL Pike 109 31.7013 -85.8177 +US 36035 Goshen Alabama AL Pike 109 31.7946 -86.1277 +US 36079 Troy Alabama AL Pike 109 31.7595 -86.0107 +US 36081 Troy Alabama AL Pike 109 31.7945 -85.9655 +US 36082 Troy Alabama AL Pike 109 31.8028 -85.9546 +US 36263 Graham Alabama AL Randolph 111 33.463 -85.334 +US 36270 Newell Alabama AL Randolph 111 33.4402 -85.5059 +US 36274 Roanoke Alabama AL Randolph 111 33.2169 -85.4057 +US 36276 Wadley Alabama AL Randolph 111 33.1492 -85.5513 +US 36278 Wedowee Alabama AL Randolph 111 33.3019 -85.4737 +US 36280 Woodland Alabama AL Randolph 111 33.3555 -85.3538 +US 36851 Cottonton Alabama AL Russell 113 32.2861 -85.1615 +US 36856 Fort Mitchell Alabama AL Russell 113 32.2965 -84.9972 +US 36858 Hatchechubbee Alabama AL Russell 113 32.2845 -85.3029 +US 36859 Holy Trinity Alabama AL Russell 113 32.2298 -85.0082 +US 36860 Hurtsboro Alabama AL Russell 113 32.2454 -85.3959 +US 36867 Phenix City Alabama AL Russell 113 32.4978 -85.0234 +US 36868 Phenix City Alabama AL Russell 113 32.4646 -85.0206 +US 36869 Phenix City Alabama AL Russell 113 32.4204 -85.0796 +US 36870 Phenix City Alabama AL Russell 113 32.4781 -85.124 +US 36871 Pittsview Alabama AL Russell 113 32.1733 -85.1312 +US 36875 Seale Alabama AL Russell 113 32.3053 -85.1677 +US 35004 Moody Alabama AL St. Clair 115 33.6035 -86.4668 +US 35052 Cook Springs Alabama AL St. Clair 115 33.5895 -86.3923 +US 35054 Cropwell Alabama AL St. Clair 115 33.5296 -86.3007 +US 35112 Margaret Alabama AL St. Clair 115 33.6958 -86.4656 +US 35120 Odenville Alabama AL St. Clair 115 33.6756 -86.409 +US 35125 Pell City Alabama AL St. Clair 115 33.5979 -86.3432 +US 35128 Pell City Alabama AL St. Clair 115 33.5873 -86.3366 +US 35131 Ragland Alabama AL St. Clair 115 33.7367 -86.1619 +US 35135 Riverside Alabama AL St. Clair 115 33.6166 -86.1996 +US 35146 Springville Alabama AL St. Clair 115 33.7386 -86.4394 +US 35182 Wattsville Alabama AL St. Clair 115 33.7068 -86.2567 +US 35953 Ashville Alabama AL St. Clair 115 33.8374 -86.2552 +US 35987 Steele Alabama AL St. Clair 115 33.9417 -86.2289 +US 35007 Alabaster Alabama AL Shelby 117 33.1934 -86.7944 +US 35040 Calera Alabama AL Shelby 117 33.1098 -86.756 +US 35043 Chelsea Alabama AL Shelby 117 33.2982 -86.6563 +US 35051 Columbiana Alabama AL Shelby 117 33.177 -86.6161 +US 35078 Harpersville Alabama AL Shelby 117 33.3234 -86.4424 +US 35080 Helena Alabama AL Shelby 117 33.2663 -86.902 +US 35114 Maylene Alabama AL Shelby 117 33.2317 -86.8727 +US 35115 Montevallo Alabama AL Shelby 117 33.1248 -86.8622 +US 35124 Pelham Alabama AL Shelby 117 33.2932 -86.768 +US 35137 Saginaw Alabama AL Shelby 117 33.2063 -86.7812 +US 35143 Shelby Alabama AL Shelby 117 33.0785 -86.5536 +US 35144 Siluria Alabama AL Shelby 117 33.2824 -86.6839 +US 35147 Sterrett Alabama AL Shelby 117 33.4461 -86.4917 +US 35176 Vandiver Alabama AL Shelby 117 33.4807 -86.5013 +US 35178 Vincent Alabama AL Shelby 117 33.401 -86.3994 +US 35185 Westover Alabama AL Shelby 117 33.3356 -86.5437 +US 35186 Wilsonville Alabama AL Shelby 117 33.2293 -86.5299 +US 35187 Wilton Alabama AL Shelby 117 33.081 -86.8793 +US 35242 Birmingham Alabama AL Shelby 117 33.3813 -86.7046 +US 35459 Emelle Alabama AL Sumter 119 32.755 -88.3057 +US 35460 Epes Alabama AL Sumter 119 32.672 -88.1206 +US 35464 Gainesville Alabama AL Sumter 119 32.7783 -88.1457 +US 35470 Livingston Alabama AL Sumter 119 32.5714 -88.1333 +US 35477 Panola Alabama AL Sumter 119 32.8726 -88.2374 +US 36901 Bellamy Alabama AL Sumter 119 32.4671 -88.1406 +US 36907 Cuba Alabama AL Sumter 119 32.411 -88.3611 +US 36925 York Alabama AL Sumter 119 32.4728 -88.2683 +US 35014 Alpine Alabama AL Talladega 121 33.404 -86.2339 +US 35032 Bon Air Alabama AL Talladega 121 33.2649 -86.3364 +US 35044 Childersburg Alabama AL Talladega 121 33.2459 -86.3641 +US 35096 Lincoln Alabama AL Talladega 121 33.6059 -86.1112 +US 35149 Sycamore Alabama AL Talladega 121 33.2728 -86.2049 +US 35150 Sylacauga Alabama AL Talladega 121 33.1717 -86.2713 +US 35151 Sylacauga Alabama AL Talladega 121 33.1756 -86.3574 +US 35160 Talladega Alabama AL Talladega 121 33.4354 -86.1134 +US 35161 Talladega Alabama AL Talladega 121 33.4202 -86.1028 +US 36268 Munford Alabama AL Talladega 121 33.541 -85.9363 +US 35010 Alexander City Alabama AL Tallapoosa 123 32.9164 -85.9368 +US 35011 Alexander City Alabama AL Tallapoosa 123 32.9902 -85.958 +US 36023 East Tallassee Alabama AL Tallapoosa 123 32.8002 -85.8034 +US 36256 Daviston Alabama AL Tallapoosa 123 33.0335 -85.7538 +US 36850 Camp Hill Alabama AL Tallapoosa 123 32.7827 -85.6474 +US 36853 Dadeville Alabama AL Tallapoosa 123 32.8224 -85.7704 +US 36861 Jacksons Gap Alabama AL Tallapoosa 123 32.8797 -85.8487 +US 35401 Tuscaloosa Alabama AL Tuscaloosa 125 33.1969 -87.5627 +US 35402 Tuscaloosa Alabama AL Tuscaloosa 125 33.3066 -87.4532 +US 35403 Tuscaloosa Alabama AL Tuscaloosa 125 33.2045 -87.527 +US 35404 Tuscaloosa Alabama AL Tuscaloosa 125 33.1826 -87.4827 +US 35405 Tuscaloosa Alabama AL Tuscaloosa 125 33.1617 -87.5144 +US 35406 Tuscaloosa Alabama AL Tuscaloosa 125 33.2722 -87.536 +US 35407 Tuscaloosa Alabama AL Tuscaloosa 125 33.3066 -87.4532 +US 35440 Abernant Alabama AL Tuscaloosa 125 33.311 -87.1898 +US 35444 Brookwood Alabama AL Tuscaloosa 125 33.2775 -87.309 +US 35446 Buhl Alabama AL Tuscaloosa 125 33.2306 -87.7547 +US 35449 Coaling Alabama AL Tuscaloosa 125 33.1359 -87.3384 +US 35452 Coker Alabama AL Tuscaloosa 125 33.2934 -87.6888 +US 35453 Cottondale Alabama AL Tuscaloosa 125 33.1767 -87.3871 +US 35456 Duncanville Alabama AL Tuscaloosa 125 33.0828 -87.495 +US 35457 Echola Alabama AL Tuscaloosa 125 33.294 -87.7766 +US 35458 Elrod Alabama AL Tuscaloosa 125 33.3678 -87.8017 +US 35463 Fosters Alabama AL Tuscaloosa 125 33.0843 -87.6975 +US 35468 Kellerman Alabama AL Tuscaloosa 125 33.3066 -87.4532 +US 35473 Northport Alabama AL Tuscaloosa 125 33.2723 -87.5825 +US 35475 Northport Alabama AL Tuscaloosa 125 33.3992 -87.5599 +US 35476 Northport Alabama AL Tuscaloosa 125 33.2273 -87.5943 +US 35478 Peterson Alabama AL Tuscaloosa 125 33.3066 -87.4532 +US 35480 Ralph Alabama AL Tuscaloosa 125 33.1274 -87.7624 +US 35482 Samantha Alabama AL Tuscaloosa 125 33.3066 -87.4532 +US 35485 Tuscaloosa Alabama AL Tuscaloosa 125 33.3066 -87.4532 +US 35486 Tuscaloosa Alabama AL Tuscaloosa 125 33.2727 -87.7938 +US 35487 Tuscaloosa Alabama AL Tuscaloosa 125 33.3072 -87.5859 +US 35490 Vance Alabama AL Tuscaloosa 125 33.175 -87.2574 +US 35038 Burnwell Alabama AL Walker 127 33.8044 -87.2021 +US 35062 Dora Alabama AL Walker 127 33.7357 -87.0546 +US 35063 Empire Alabama AL Walker 127 33.8256 -87.0161 +US 35130 Quinton Alabama AL Walker 127 33.6561 -87.1007 +US 35148 Sumiton Alabama AL Walker 127 33.768 -87.0445 +US 35501 Jasper Alabama AL Walker 127 33.7962 -87.3169 +US 35502 Jasper Alabama AL Walker 127 33.902 -87.2939 +US 35503 Jasper Alabama AL Walker 127 33.9152 -87.3074 +US 35504 Jasper Alabama AL Walker 127 33.8927 -87.1667 +US 35549 Carbon Hill Alabama AL Walker 127 33.9093 -87.5403 +US 35550 Cordova Alabama AL Walker 127 33.768 -87.1841 +US 35554 Eldridge Alabama AL Walker 127 33.9315 -87.6194 +US 35560 Goodsprings Alabama AL Walker 127 33.6795 -87.2374 +US 35573 Kansas Alabama AL Walker 127 33.9217 -87.5243 +US 35578 Nauvoo Alabama AL Walker 127 33.9299 -87.4324 +US 35579 Oakman Alabama AL Walker 127 33.7002 -87.3686 +US 35580 Parrish Alabama AL Walker 127 33.7213 -87.2658 +US 35584 Sipsey Alabama AL Walker 127 33.8201 -87.0779 +US 35587 Townley Alabama AL Walker 127 33.847 -87.4372 +US 36510 Bigbee Alabama AL Washington County 129 31.5974 -88.1514 +US 36513 Calvert Alabama AL Washington 129 31.4067 -88.1758 +US 36518 Chatom Alabama AL Washington 129 31.4876 -88.2699 +US 36529 Deer Park Alabama AL Washington 129 31.1849 -88.3273 +US 36538 Frankville Alabama AL Washington 129 31.6468 -88.1332 +US 36539 Fruitdale Alabama AL Washington 129 31.3488 -88.3766 +US 36548 Leroy Alabama AL Washington 129 31.491 -87.9687 +US 36553 Mc Intosh Alabama AL Washington 129 31.2361 -88.0511 +US 36556 Malcolm Alabama AL Washington 129 31.4067 -88.1758 +US 36558 Millry Alabama AL Washington 129 31.6269 -88.3559 +US 36569 Saint Stephens Alabama AL Washington 129 31.533 -88.0521 +US 36581 Sunflower Alabama AL Washington 129 31.3696 -88.0122 +US 36583 Tibbie Alabama AL Washington 129 31.4067 -88.1758 +US 36584 Vinegar Bend Alabama AL Washington 129 31.2584 -88.3865 +US 36585 Wagarville Alabama AL Washington 129 31.4102 -88.0705 +US 36435 Coy Alabama AL Wilcox 131 31.8889 -87.3926 +US 36720 Alberta Alabama AL Wilcox 131 32.1585 -87.3468 +US 36721 Annemanie Alabama AL Wilcox 131 32.0481 -87.2623 +US 36722 Arlington Alabama AL Wilcox 131 32.0668 -87.5597 +US 36723 Boykin Alabama AL Wilcox 131 32.0824 -87.2949 +US 36726 Camden Alabama AL Wilcox 131 32.0047 -87.295 +US 36728 Catherine Alabama AL Wilcox 131 32.182 -87.4836 +US 36741 Furman Alabama AL Wilcox 131 32.0061 -86.9817 +US 36747 Lamison Alabama AL Wilcox County 131 32.1211 -87.5667 +US 36751 Lower Peach Tree Alabama AL Wilcox 131 31.8504 -87.5682 +US 36753 Mc Williams Alabama AL Wilcox 131 32.0481 -87.2623 +US 36760 Millers Ferry Alabama AL Wilcox County 131 32.0994 -87.3675 +US 36766 Oak Hill Alabama AL Wilcox 131 31.947 -87.0745 +US 36768 Pine Apple Alabama AL Wilcox 131 31.9265 -87.0047 +US 36769 Pine Hill Alabama AL Wilcox 131 31.9735 -87.5771 +US 36778 Snow Hill Alabama AL Wilcox 131 32.02 -87.0543 +US 35256 Birmingham Alabama AL Winston County 133 33.531 -86.7833 +US 35540 Addison Alabama AL Winston 133 34.2056 -87.1948 +US 35541 Arley Alabama AL Winston 133 34.0632 -87.1828 +US 35551 Delmar Alabama AL Winston 133 34.1459 -87.3732 +US 35553 Double Springs Alabama AL Winston 133 34.1387 -87.3974 +US 35565 Haleyville Alabama AL Winston 133 34.2314 -87.5938 +US 35572 Houston Alabama AL Winston 133 34.118 -87.2618 +US 35575 Lynn Alabama AL Winston 133 34.053 -87.5398 +US 35577 Natural Bridge Alabama AL Winston 133 34.0934 -87.6008 +US 96373 FPO AP Adams 001 19.111 -155.7982 +US 96536 FPO AP New Castle 003 30.3559 -87.6087 +US 96337 APO AP Harford 025 35.3541 -113.038 +US 96507 FPO AP Brazoria 039 41.7206 -85.82 +US 96644 FPO AP Brazoria 039 37.2193 -119.5087 +US 96208 APO AP Fulton 121 33.2116 -97.0876 +US 72003 Almyra Arkansas AR Arkansas 001 34.4146 -91.431 +US 72026 Casscoe Arkansas AR Arkansas 001 34.5095 -91.299 +US 72038 Crocketts Bluff Arkansas AR Arkansas 001 34.4528 -91.2692 +US 72042 De Witt Arkansas AR Arkansas 001 34.2853 -91.3336 +US 72048 Ethel Arkansas AR Arkansas 001 34.2435 -91.1398 +US 72055 Gillett Arkansas AR Arkansas 001 34.1218 -91.38 +US 72073 Humphrey Arkansas AR Arkansas 001 34.4034 -91.679 +US 72140 Saint Charles Arkansas AR Arkansas 001 34.3878 -91.1463 +US 72160 Stuttgart Arkansas AR Arkansas 001 34.4854 -91.5487 +US 72166 Tichnor Arkansas AR Arkansas 001 34.0893 -91.2437 +US 71635 Crossett Arkansas AR Ashley 003 33.156 -91.9975 +US 71642 Fountain Hill Arkansas AR Ashley 003 33.3631 -91.9088 +US 71646 Hamburg Arkansas AR Ashley 003 33.2058 -91.8023 +US 71658 Montrose Arkansas AR Ashley 003 33.3075 -91.5228 +US 71661 Parkdale Arkansas AR Ashley 003 33.1213 -91.5428 +US 71663 Portland Arkansas AR Ashley 003 33.2318 -91.5139 +US 71676 Wilmot Arkansas AR Ashley 003 33.0576 -91.5723 +US 72537 Gamaliel Arkansas AR Baxter 005 36.4618 -92.2284 +US 72544 Henderson Arkansas AR Baxter 005 36.4105 -92.1951 +US 72617 Big Flat Arkansas AR Baxter 005 36.0068 -92.3917 +US 72623 Clarkridge Arkansas AR Baxter 005 36.4724 -92.3296 +US 72626 Cotter Arkansas AR Baxter 005 36.3106 -92.5392 +US 72635 Gassville Arkansas AR Baxter 005 36.3175 -92.4736 +US 72642 Lakeview Arkansas AR Baxter 005 36.373 -92.5422 +US 72651 Midway Arkansas AR Baxter 005 36.3933 -92.4881 +US 72653 Mountain Home Arkansas AR Baxter 005 36.3312 -92.3753 +US 72654 Mountain Home Arkansas AR Baxter 005 36.2364 -92.3726 +US 72658 Norfork Arkansas AR Baxter 005 36.2066 -92.273 +US 72659 Norfork Arkansas AR Baxter 005 36.2364 -92.3726 +US 72711 Avoca Arkansas AR Benton 007 36.4047 -94.0713 +US 72712 Bentonville Arkansas AR Benton 007 36.3577 -94.2224 +US 72714 Bella Vista Arkansas AR Benton 007 36.4676 -94.2166 +US 72715 Bella Vista Arkansas AR Benton 007 36.4677 -94.3209 +US 72716 Bentonville Arkansas AR Benton 007 36.2995 -93.9568 +US 72718 Cave Springs Arkansas AR Benton 007 36.2738 -94.2183 +US 72719 Centerton Arkansas AR Benton 007 36.367 -94.3089 +US 72722 Decatur Arkansas AR Benton 007 36.3347 -94.4534 +US 72732 Garfield Arkansas AR Benton 007 36.4288 -93.9512 +US 72733 Gateway Arkansas AR Benton 007 36.4864 -93.9277 +US 72734 Gentry Arkansas AR Benton 007 36.2652 -94.4751 +US 72736 Gravette Arkansas AR Benton 007 36.4155 -94.4779 +US 72739 Hiwasse Arkansas AR Benton 007 36.4416 -94.339 +US 72745 Lowell Arkansas AR Benton 007 36.2433 -94.0827 +US 72747 Maysville Arkansas AR Benton 007 36.3811 -94.5783 +US 72751 Pea Ridge Arkansas AR Benton 007 36.4539 -94.118 +US 72756 Rogers Arkansas AR Benton 007 36.3363 -94.1148 +US 72757 Rogers Arkansas AR Benton 007 36.372 -94.1156 +US 72758 Rogers Arkansas AR Benton 007 36.3169 -94.1545 +US 72761 Siloam Springs Arkansas AR Benton 007 36.18 -94.528 +US 72767 Springtown Arkansas AR Benton County 007 36.2608 -94.4231 +US 72768 Sulphur Springs Arkansas AR Benton 007 36.4794 -94.4521 +US 72260 Little Rock Arkansas AR Boone County 009 34.7399 -92.34 +US 72601 Harrison Arkansas AR Boone 009 36.2417 -93.1062 +US 72602 Harrison Arkansas AR Boone 009 36.3552 -93.1226 +US 72611 Alpena Arkansas AR Boone 009 36.2998 -93.2792 +US 72615 Bergman Arkansas AR Boone 009 36.3083 -93.0321 +US 72630 Diamond City Arkansas AR Boone 009 36.4584 -92.9133 +US 72633 Everton Arkansas AR Boone 009 36.1534 -92.915 +US 72644 Lead Hill Arkansas AR Boone 009 36.3848 -93.0039 +US 72662 Omaha Arkansas AR Boone 009 36.4612 -93.1888 +US 72682 Valley Springs Arkansas AR Boone 009 36.1351 -92.7541 +US 71631 Banks Arkansas AR Bradley 011 33.5497 -92.2604 +US 71647 Hermitage Arkansas AR Bradley 011 33.39 -92.156 +US 71651 Jersey Arkansas AR Bradley 011 33.3889 -92.2966 +US 71671 Warren Arkansas AR Bradley 011 33.614 -92.0778 +US 71744 Hampton Arkansas AR Calhoun 013 33.5376 -92.5295 +US 71745 Harrell Arkansas AR Calhoun 013 33.5109 -92.3912 +US 71766 Thornton Arkansas AR Calhoun 013 33.7768 -92.4862 +US 71767 Hampton Arkansas AR Calhoun 013 33.536 -92.5439 +US 72613 Beaver Arkansas AR Carroll 015 36.4311 -93.6994 +US 72616 Berryville Arkansas AR Carroll 015 36.3519 -93.5587 +US 72631 Eureka Springs Arkansas AR Carroll 015 36.435 -93.7673 +US 72632 Eureka Springs Arkansas AR Carroll 015 36.4175 -93.7379 +US 72638 Green Forest Arkansas AR Carroll 015 36.3224 -93.4059 +US 72660 Oak Grove Arkansas AR Carroll 015 36.4613 -93.4321 +US 71638 Dermott Arkansas AR Chicot 017 33.5241 -91.4394 +US 71640 Eudora Arkansas AR Chicot 017 33.1213 -91.2716 +US 71649 Jennie Arkansas AR Chicot 017 33.2839 -91.2521 +US 71653 Lake Village Arkansas AR Chicot 017 33.3274 -91.2825 +US 71721 Beirne Arkansas AR Clark 019 34.0555 -93.1894 +US 71728 Curtis Arkansas AR Clark 019 34.0103 -93.0976 +US 71743 Gurdon Arkansas AR Clark 019 33.9125 -93.1417 +US 71772 Whelen Springs Arkansas AR Clark 019 33.8325 -93.1238 +US 71920 Alpine Arkansas AR Clark 019 34.0555 -93.1894 +US 71921 Amity Arkansas AR Clark 019 34.2594 -93.4206 +US 71923 Arkadelphia Arkansas AR Clark 019 34.1153 -93.069 +US 71962 Okolona Arkansas AR Clark 019 34.0551 -93.2897 +US 71998 Arkadelphia Arkansas AR Clark 019 34.0555 -93.1894 +US 71999 Arkadelphia Arkansas AR Clark 019 34.0555 -93.1894 +US 72422 Corning Arkansas AR Clay 021 36.4155 -90.587 +US 72424 Datto Arkansas AR Clay 021 36.3897 -90.7231 +US 72430 Greenway Arkansas AR Clay 021 36.3348 -90.2253 +US 72435 Knobel Arkansas AR Clay 021 36.3176 -90.599 +US 72441 Mc Dougal Arkansas AR Clay 021 36.437 -90.3837 +US 72453 Peach Orchard Arkansas AR Clay 021 36.283 -90.6702 +US 72454 Piggott Arkansas AR Clay 021 36.387 -90.1926 +US 72456 Pollard Arkansas AR Clay 021 36.4317 -90.2751 +US 72461 Rector Arkansas AR Clay 021 36.2672 -90.2702 +US 72464 Saint Francis Arkansas AR Clay 021 36.4548 -90.145 +US 72470 Success Arkansas AR Clay 021 36.4536 -90.7281 +US 72044 Edgemont Arkansas AR Cleburne 023 35.6321 -92.157 +US 72067 Higden Arkansas AR Cleburne 023 35.5685 -92.1341 +US 72130 Prim Arkansas AR Cleburne 023 35.6674 -92.0933 +US 72131 Quitman Arkansas AR Cleburne 023 35.405 -92.1333 +US 72179 Wilburn Arkansas AR Cleburne 023 35.5106 -91.8648 +US 72523 Concord Arkansas AR Cleburne 023 35.6414 -91.8333 +US 72530 Drasco Arkansas AR Cleburne 023 35.6616 -91.9398 +US 72543 Heber Springs Arkansas AR Cleburne 023 35.5103 -92.0392 +US 72545 Heber Springs Arkansas AR Cleburne 023 35.5352 -92.0213 +US 72546 Ida Arkansas AR Cleburne 023 35.5816 -91.9305 +US 72581 Tumbling Shoals Arkansas AR Cleburne 023 35.547 -91.9704 +US 71652 Kingsland Arkansas AR Cleveland 025 33.86 -92.3014 +US 71660 New Edinburg Arkansas AR Cleveland 025 33.7588 -92.1939 +US 71665 Rison Arkansas AR Cleveland 025 33.9453 -92.1188 +US 71740 Emerson Arkansas AR Columbia 027 33.0891 -93.1987 +US 71752 Mc Neil Arkansas AR Columbia 027 33.3622 -93.193 +US 71753 Magnolia Arkansas AR Columbia 027 33.2647 -93.2392 +US 71754 Magnolia Arkansas AR Columbia 027 33.2426 -93.23 +US 71769 Village Arkansas AR Columbia 027 33.2362 -93.2345 +US 71770 Waldo Arkansas AR Columbia 027 33.36 -93.2949 +US 71861 Taylor Arkansas AR Columbia 027 33.108 -93.446 +US 72027 Center Ridge Arkansas AR Conway 029 35.3981 -92.5582 +US 72030 Cleveland Arkansas AR Conway 029 35.3955 -92.702 +US 72063 Hattieville Arkansas AR Conway 029 35.2907 -92.7783 +US 72080 Jerusalem Arkansas AR Conway 029 35.5699 -92.8251 +US 72107 Menifee Arkansas AR Conway 029 35.1356 -92.5498 +US 72110 Morrilton Arkansas AR Conway 029 35.1692 -92.7354 +US 72127 Plumerville Arkansas AR Conway 029 35.1575 -92.6204 +US 72156 Solgohachia Arkansas AR Conway 029 35.2701 -92.6754 +US 72157 Springfield Arkansas AR Conway 029 35.2749 -92.5457 +US 72401 Jonesboro Arkansas AR Craighead 031 35.833 -90.6965 +US 72402 Jonesboro Arkansas AR Craighead 031 35.8088 -90.6529 +US 72403 Jonesboro Arkansas AR Craighead 031 35.8305 -90.7039 +US 72404 Jonesboro Arkansas AR Craighead 031 35.7792 -90.766 +US 72411 Bay Arkansas AR Craighead 031 35.7456 -90.5507 +US 72414 Black Oak Arkansas AR Craighead 031 35.8368 -90.4005 +US 72416 Bono Arkansas AR Craighead 031 35.9086 -90.7848 +US 72417 Brookland Arkansas AR Craighead 031 35.9165 -90.5762 +US 72419 Caraway Arkansas AR Craighead 031 35.759 -90.3358 +US 72421 Cash Arkansas AR Craighead 031 35.8301 -90.941 +US 72427 Egypt Arkansas AR Craighead 031 35.864 -90.9428 +US 72437 Lake City Arkansas AR Craighead 031 35.8171 -90.4423 +US 72447 Monette Arkansas AR Craighead 031 35.9002 -90.3437 +US 72467 State University Arkansas AR Craighead 031 35.8422 -90.6735 +US 72921 Alma Arkansas AR Crawford 033 35.5 -94.2073 +US 72932 Cedarville Arkansas AR Crawford 033 35.603 -94.3749 +US 72934 Chester Arkansas AR Crawford 033 35.6898 -94.202 +US 72935 Dyer Arkansas AR Crawford 033 35.4721 -94.1168 +US 72946 Mountainburg Arkansas AR Crawford 033 35.6464 -94.1497 +US 72947 Mulberry Arkansas AR Crawford 033 35.5172 -93.9885 +US 72948 Natural Dam Arkansas AR Crawford 033 35.6743 -94.4124 +US 72952 Rudy Arkansas AR Crawford 033 35.5468 -94.2913 +US 72955 Uniontown Arkansas AR Crawford 033 35.5748 -94.4349 +US 72956 Van Buren Arkansas AR Crawford 033 35.454 -94.3278 +US 72957 Van Buren Arkansas AR Crawford 033 35.4944 -94.3186 +US 72301 West Memphis Arkansas AR Crittenden 035 35.1484 -90.1779 +US 72303 West Memphis Arkansas AR Crittenden 035 35.1374 -90.2855 +US 72323 Chatfield Arkansas AR Crittenden County 035 35.0058 -90.3972 +US 72325 Clarkedale Arkansas AR Crittenden 035 35.2864 -90.2538 +US 72327 Crawfordsville Arkansas AR Crittenden 035 35.2119 -90.3351 +US 72331 Earle Arkansas AR Crittenden 035 35.2799 -90.4503 +US 72332 Edmondson Arkansas AR Crittenden 035 35.1042 -90.3133 +US 72339 Gilmore Arkansas AR Crittenden 035 35.4057 -90.2714 +US 72364 Marion Arkansas AR Crittenden 035 35.2077 -90.1989 +US 72376 Proctor Arkansas AR Crittenden 035 35.0834 -90.255 +US 72384 Turrell Arkansas AR Crittenden 035 35.3439 -90.2978 +US 72314 Birdeye Arkansas AR Cross 037 35.3572 -90.6773 +US 72324 Cherry Valley Arkansas AR Cross 037 35.3991 -90.7613 +US 72347 Hickory Ridge Arkansas AR Cross 037 35.3995 -90.9823 +US 72373 Parkin Arkansas AR Cross 037 35.2586 -90.5564 +US 72385 Twist Arkansas AR Cross 037 35.2965 -90.7724 +US 72387 Vanndale Arkansas AR Cross 037 35.3245 -90.7712 +US 72396 Wynne Arkansas AR Cross 037 35.233 -90.793 +US 72397 Mc Crory Arkansas AR Cross 037 35.2965 -90.7724 +US 71725 Carthage Arkansas AR Dallas 039 34.0636 -92.6262 +US 71742 Fordyce Arkansas AR Dallas 039 33.8176 -92.4225 +US 71748 Ivan Arkansas AR Dallas 039 33.9755 -92.6478 +US 71763 Sparkman Arkansas AR Dallas 039 33.9143 -92.8532 +US 71630 Arkansas City Arkansas AR Desha 041 33.6143 -91.2325 +US 71634 Collins Arkansas AR Desha County 041 33.5314 -91.5653 +US 71639 Dumas Arkansas AR Desha 041 33.8921 -91.4861 +US 71654 Mc Gehee Arkansas AR Desha 041 33.6297 -91.3928 +US 71662 Pickens Arkansas AR Desha 041 33.842 -91.5022 +US 71666 Mc Gehee Arkansas AR Desha 041 33.7632 -91.2492 +US 71670 Tillar Arkansas AR Desha 041 33.6981 -91.4433 +US 71674 Watson Arkansas AR Desha 041 33.8907 -91.2815 +US 72379 Snow Lake Arkansas AR Desha 041 34.0665 -91.0071 +US 71650 Jerome Arkansas AR Drew 043 33.5906 -91.7328 +US 71655 Monticello Arkansas AR Drew 043 33.625 -91.7948 +US 71656 Monticello Arkansas AR Drew 043 33.5913 -91.8124 +US 71657 Monticello Arkansas AR Drew 043 33.5906 -91.7328 +US 71675 Wilmar Arkansas AR Drew 043 33.6213 -91.9257 +US 71677 Winchester Arkansas AR Drew 043 33.7471 -91.4649 +US 72032 Conway Arkansas AR Faulkner 045 35.0842 -92.4236 +US 72033 Conway Arkansas AR Faulkner 045 35.1053 -92.3549 +US 72034 Conway Arkansas AR Faulkner 045 35.0823 -92.4683 +US 72035 Conway Arkansas AR Faulkner 045 35.1053 -92.3549 +US 72039 Damascus Arkansas AR Faulkner 045 35.3024 -92.4014 +US 72047 Enola Arkansas AR Faulkner 045 35.2087 -92.2123 +US 72058 Greenbrier Arkansas AR Faulkner 045 35.2295 -92.3578 +US 72061 Guy Arkansas AR Faulkner 045 35.3239 -92.2878 +US 72106 Mayflower Arkansas AR Faulkner 045 34.9669 -92.4001 +US 72111 Mount Vernon Arkansas AR Faulkner 045 35.2606 -92.1373 +US 72173 Vilonia Arkansas AR Faulkner 045 35.0719 -92.1832 +US 72181 Wooster Arkansas AR Faulkner 045 35.1645 -92.453 +US 72820 Alix Arkansas AR Franklin 047 35.41 -93.7286 +US 72821 Altus Arkansas AR Franklin 047 35.4346 -93.7598 +US 72928 Branch Arkansas AR Franklin 047 35.2971 -93.9454 +US 72930 Cecil Arkansas AR Franklin 047 35.4252 -94.0409 +US 72933 Charleston Arkansas AR Franklin 047 35.3115 -94.0337 +US 72949 Ozark Arkansas AR Franklin 047 35.5246 -93.8374 +US 72515 Bexar Arkansas AR Fulton 049 36.2901 -92.055 +US 72520 Camp Arkansas AR Fulton 049 36.4025 -91.7262 +US 72531 Elizabeth Arkansas AR Fulton 049 36.3238 -92.0934 +US 72538 Gepp Arkansas AR Fulton 049 36.4364 -92.0995 +US 72539 Glencoe Arkansas AR Fulton 049 36.3261 -91.7287 +US 72554 Mammoth Spring Arkansas AR Fulton 049 36.4076 -91.5757 +US 72557 Moko Arkansas AR Fulton 049 36.3747 -91.8046 +US 72576 Salem Arkansas AR Fulton 049 36.3766 -91.8759 +US 72578 Sturkie Arkansas AR Fulton 049 36.4747 -91.8891 +US 72583 Viola Arkansas AR Fulton 049 36.3924 -91.9932 +US 71901 Hot Springs National Park Arkansas AR Garland 051 34.5268 -92.9587 +US 71902 Hot Springs National Park Arkansas AR Garland 051 34.5814 -93.0994 +US 71903 Hot Springs National Park Arkansas AR Garland 051 34.5814 -93.0994 +US 71909 Hot Springs Village Arkansas AR Garland 051 34.6484 -92.983 +US 71910 Hot Springs Village Arkansas AR Garland 051 34.5814 -93.0994 +US 71913 Hot Springs National Park Arkansas AR Garland 051 34.4689 -93.043 +US 71914 Hot Springs National Park Arkansas AR Garland 051 34.5137 -92.9685 +US 71931 Blakely Arkansas AR Garland County 051 34.7078 -93.0493 +US 71949 Jessieville Arkansas AR Garland 051 34.7094 -93.0382 +US 71951 Hot Springs National Park Arkansas AR Garland 051 34.5814 -93.0994 +US 71956 Mountain Pine Arkansas AR Garland 051 34.5976 -93.1539 +US 71964 Pearcy Arkansas AR Garland 051 34.4351 -93.242 +US 71968 Royal Arkansas AR Garland 051 34.515 -93.2897 +US 72087 Lonsdale Arkansas AR Garland 051 34.5562 -92.834 +US 72057 Grapevine Arkansas AR Grant 053 34.1309 -92.3109 +US 72084 Leola Arkansas AR Grant 053 34.1856 -92.5979 +US 72128 Poyen Arkansas AR Grant 053 34.3023 -92.6095 +US 72129 Prattsville Arkansas AR Grant 053 34.3079 -92.5131 +US 72150 Sheridan Arkansas AR Grant 053 34.3165 -92.3657 +US 72412 Beech Grove Arkansas AR Greene 055 36.1281 -90.6914 +US 72425 Delaplaine Arkansas AR Greene 055 36.1995 -90.7345 +US 72436 Lafe Arkansas AR Greene 055 36.2359 -90.4811 +US 72439 Light Arkansas AR Greene 055 36.068 -90.7489 +US 72443 Marmaduke Arkansas AR Greene 055 36.1951 -90.3837 +US 72450 Paragould Arkansas AR Greene 055 36.06 -90.5251 +US 72451 Paragould Arkansas AR Greene 055 36.1163 -90.5251 +US 72474 Walcott Arkansas AR Greene 055 36.0413 -90.6718 +US 71801 Hope Arkansas AR Hempstead 057 33.6736 -93.6068 +US 71802 Hope Arkansas AR Hempstead 057 33.7656 -93.5592 +US 71825 Blevins Arkansas AR Hempstead 057 33.8755 -93.536 +US 71831 Columbus Arkansas AR Hempstead 057 33.7935 -93.807 +US 71838 Fulton Arkansas AR Hempstead 057 33.6299 -93.8086 +US 71847 Mc Caskill Arkansas AR Hempstead 057 33.923 -93.6266 +US 71855 Ozan Arkansas AR Hempstead 057 33.9028 -93.7714 +US 71862 Washington Arkansas AR Hempstead 057 33.7546 -93.6735 +US 71929 Bismarck Arkansas AR Hot Spring 059 34.311 -93.1872 +US 71933 Bonnerdale Arkansas AR Hot Spring 059 34.3498 -93.3194 +US 71941 Donaldson Arkansas AR Hot Spring 059 34.2212 -92.9094 +US 71942 Friendship Arkansas AR Hot Spring 059 34.2235 -93.0024 +US 72019 Benton Arkansas AR Hot Spring County 059 34.604 -92.6259 +US 72104 Malvern Arkansas AR Hot Spring 059 34.3557 -92.8292 +US 72105 Jones Mill Arkansas AR Hot Spring 059 34.4374 -92.8943 +US 71833 Dierks Arkansas AR Howard 061 34.1323 -94.0152 +US 71851 Mineral Springs Arkansas AR Howard 061 33.8639 -93.9188 +US 71852 Nashville Arkansas AR Howard 061 33.9576 -93.8707 +US 71859 Saratoga Arkansas AR Howard 061 33.7599 -93.8767 +US 71971 Umpire Arkansas AR Howard 061 34.2921 -94.0314 +US 72165 Thida Arkansas AR Independence 063 35.5762 -91.4539 +US 72501 Batesville Arkansas AR Independence 063 35.7826 -91.6352 +US 72503 Batesville Arkansas AR Independence 063 35.7346 -91.5343 +US 72522 Charlotte Arkansas AR Independence 063 35.8078 -91.4552 +US 72524 Cord Arkansas AR Independence 063 35.8184 -91.3375 +US 72526 Cushman Arkansas AR Independence 063 35.8732 -91.7549 +US 72527 Desha Arkansas AR Independence 063 35.7411 -91.6985 +US 72534 Floral Arkansas AR Independence 063 35.6023 -91.7341 +US 72550 Locust Grove Arkansas AR Independence 063 35.7177 -91.7414 +US 72553 Magness Arkansas AR Independence 063 35.6941 -91.4753 +US 72562 Newark Arkansas AR Independence 063 35.7118 -91.4394 +US 72564 Oil Trough Arkansas AR Independence 063 35.6131 -91.4703 +US 72568 Pleasant Plains Arkansas AR Independence 063 35.5893 -91.632 +US 72571 Rosie Arkansas AR Independence 063 35.6638 -91.534 +US 72575 Salado Arkansas AR Independence 063 35.6919 -91.5989 +US 72579 Sulphur Rock Arkansas AR Independence 063 35.7545 -91.5073 +US 72512 Horseshoe Bend Arkansas AR Izard 065 36.2025 -91.7553 +US 72516 Boswell Arkansas AR Izard 065 36.0643 -91.9447 +US 72517 Brockwell Arkansas AR Izard 065 36.1358 -91.9513 +US 72519 Calico Rock Arkansas AR Izard 065 36.1202 -92.1867 +US 72528 Dolph Arkansas AR Izard 065 36.2229 -92.1177 +US 72536 Franklin Arkansas AR Izard 065 36.1291 -91.8096 +US 72540 Guion Arkansas AR Izard 065 35.9266 -91.9103 +US 72556 Melbourne Arkansas AR Izard 065 36.0635 -91.9079 +US 72561 Mount Pleasant Arkansas AR Izard 065 35.9759 -91.785 +US 72565 Oxford Arkansas AR Izard 065 36.2114 -91.9258 +US 72566 Pineville Arkansas AR Izard 065 36.1677 -92.1073 +US 72573 Sage Arkansas AR Izard 065 36.0688 -91.791 +US 72584 Violet Hill Arkansas AR Izard 065 36.163 -91.8471 +US 72585 Wideman Arkansas AR Izard 065 36.181 -92.034 +US 72587 Wiseman Arkansas AR Izard 065 36.228 -91.8495 +US 72005 Amagon Arkansas AR Jackson 067 35.5616 -91.0796 +US 72009 Balch Arkansas AR Jackson County 067 35.5317 -91.0656 +US 72014 Beedeville Arkansas AR Jackson 067 35.4291 -91.1057 +US 72043 Diaz Arkansas AR Jackson 067 35.6336 -91.2592 +US 72075 Jacksonport Arkansas AR Jackson 067 35.6414 -91.3072 +US 72112 Newport Arkansas AR Jackson 067 35.5988 -91.2571 +US 72169 Tupelo Arkansas AR Jackson 067 35.3844 -91.2232 +US 72431 Grubbs Arkansas AR Jackson 067 35.6549 -91.0792 +US 72471 Swifton Arkansas AR Jackson 067 35.8274 -91.1264 +US 72473 Tuckerman Arkansas AR Jackson 067 35.7307 -91.2003 +US 71601 Pine Bluff Arkansas AR Jefferson 069 34.209 -91.9859 +US 71602 White Hall Arkansas AR Jefferson 069 34.2577 -92.0121 +US 71603 Pine Bluff Arkansas AR Jefferson 069 34.1897 -92.0448 +US 71611 Pine Bluff Arkansas AR Jefferson 069 34.2615 -91.9551 +US 71612 White Hall Arkansas AR Jefferson 069 34.2775 -91.8325 +US 71613 Pine Bluff Arkansas AR Jefferson 069 34.1579 -92.0713 +US 71659 Moscow Arkansas AR Jefferson 069 34.1537 -91.8112 +US 72004 Altheimer Arkansas AR Jefferson 069 34.3062 -91.8289 +US 72079 Jefferson Arkansas AR Jefferson 069 34.3934 -92.2029 +US 72132 Redfield Arkansas AR Jefferson 069 34.4526 -92.1758 +US 72133 Reydell Arkansas AR Jefferson 069 34.1715 -91.5656 +US 72152 Sherrill Arkansas AR Jefferson 069 34.3581 -91.9933 +US 72168 Tucker Arkansas AR Jefferson 069 34.4414 -91.9163 +US 72175 Wabbaseka Arkansas AR Jefferson 069 34.3936 -91.7549 +US 72182 Wright Arkansas AR Jefferson 069 34.4291 -92.0599 +US 72830 Clarksville Arkansas AR Johnson 071 35.4908 -93.4911 +US 72832 Coal Hill Arkansas AR Johnson 071 35.4371 -93.672 +US 72839 Hagarville Arkansas AR Johnson 071 35.6155 -93.2726 +US 72840 Hartman Arkansas AR Johnson 071 35.4436 -93.6142 +US 72844 Hunt Arkansas AR Johnson County 071 35.5289 -93.6586 +US 72845 Knoxville Arkansas AR Johnson 071 35.3749 -93.3618 +US 72846 Lamar Arkansas AR Johnson 071 35.4349 -93.3552 +US 72852 Oark Arkansas AR Johnson 071 35.7095 -93.5585 +US 72854 Ozone Arkansas AR Johnson 071 35.6575 -93.4311 +US 71826 Bradley Arkansas AR Lafayette 073 33.107 -93.6275 +US 71827 Buckner Arkansas AR Lafayette 073 33.3753 -93.447 +US 71839 Garland City Arkansas AR Lafayette 073 33.3352 -93.7316 +US 71845 Lewisville Arkansas AR Lafayette 073 33.3736 -93.5953 +US 71860 Stamps Arkansas AR Lafayette 073 33.3569 -93.5013 +US 72410 Alicia Arkansas AR Lawrence 075 35.9423 -91.081 +US 72415 Black Rock Arkansas AR Lawrence 075 36.1149 -91.1176 +US 72433 Hoxie Arkansas AR Lawrence 075 36.0326 -90.9715 +US 72434 Imboden Arkansas AR Lawrence 075 36.1976 -91.1854 +US 72440 Lynn Arkansas AR Lawrence 075 35.9813 -91.2676 +US 72445 Minturn Arkansas AR Lawrence 075 35.9728 -91.0235 +US 72457 Portia Arkansas AR Lawrence 075 36.1089 -91.0604 +US 72458 Powhatan Arkansas AR Lawrence 075 36.08 -91.1482 +US 72459 Ravenden Arkansas AR Lawrence 075 36.2029 -91.2593 +US 72465 Sedgwick Arkansas AR Lawrence 075 35.9643 -90.8954 +US 72466 Smithville Arkansas AR Lawrence 075 36.0908 -91.2745 +US 72469 Strawberry Arkansas AR Lawrence 075 35.9673 -91.2935 +US 72476 Walnut Ridge Arkansas AR Lawrence 075 36.0244 -90.9288 +US 72572 Saffell Arkansas AR Lawrence 075 35.8781 -91.3004 +US 72311 Aubrey Arkansas AR Lee 077 34.7195 -90.8969 +US 72320 Brickeys Arkansas AR Lee 077 34.8548 -90.5377 +US 72341 Haynes Arkansas AR Lee 077 34.8838 -90.7666 +US 72352 La Grange Arkansas AR Lee 077 34.7697 -90.7552 +US 72360 Marianna Arkansas AR Lee 077 34.7759 -90.7785 +US 72368 Moro Arkansas AR Lee 077 34.803 -91.006 +US 71643 Gould Arkansas AR Lincoln 079 34.0345 -91.5768 +US 71644 Grady Arkansas AR Lincoln 079 34.1032 -91.7057 +US 71667 Star City Arkansas AR Lincoln 079 33.9405 -91.8653 +US 71678 Yorktown Arkansas AR Lincoln 079 33.9787 -91.6991 +US 71820 Alleene Arkansas AR Little River 081 33.7944 -94.2681 +US 71822 Ashdown Arkansas AR Little River 081 33.6787 -94.1351 +US 71836 Foreman Arkansas AR Little River 081 33.7176 -94.3881 +US 71853 Ogden Arkansas AR Little River 081 33.5857 -94.0278 +US 71865 Wilton Arkansas AR Little River 081 33.7475 -94.1518 +US 71866 Winthrop Arkansas AR Little River 081 33.8583 -94.3952 +US 72826 Blue Mountain Arkansas AR Logan 083 35.1602 -93.6183 +US 72835 Delaware Arkansas AR Logan 083 35.278 -93.3462 +US 72851 New Blaine Arkansas AR Logan 083 35.3189 -93.4446 +US 72855 Paris Arkansas AR Logan 083 35.2941 -93.7265 +US 72863 Scranton Arkansas AR Logan 083 35.3585 -93.5454 +US 72865 Subiaco Arkansas AR Logan 083 35.3153 -93.5991 +US 72927 Booneville Arkansas AR Logan 083 35.1364 -93.9274 +US 72943 Magazine Arkansas AR Logan 083 35.1587 -93.8003 +US 72951 Ratcliff Arkansas AR Logan 083 35.2917 -93.8899 +US 72007 Austin Arkansas AR Lonoke 085 34.9921 -91.9798 +US 72023 Cabot Arkansas AR Lonoke 085 34.9457 -92.0318 +US 72024 Carlisle Arkansas AR Lonoke 085 34.7933 -91.7459 +US 72037 Coy Arkansas AR Lonoke 085 34.5412 -91.8758 +US 72046 England Arkansas AR Lonoke 085 34.5575 -91.9484 +US 72072 Humnoke Arkansas AR Lonoke 085 34.4857 -91.7624 +US 72083 Keo Arkansas AR Lonoke 085 34.6041 -92.0078 +US 72086 Lonoke Arkansas AR Lonoke 085 34.7832 -91.9214 +US 72176 Ward Arkansas AR Lonoke 085 34.9532 -91.9004 +US 72721 Combs Arkansas AR Madison 087 35.8607 -93.8112 +US 72738 Hindsville Arkansas AR Madison 087 36.1422 -93.8633 +US 72740 Huntsville Arkansas AR Madison 087 36.1043 -93.7279 +US 72742 Kingston Arkansas AR Madison 087 36.0485 -93.5044 +US 72752 Pettigrew Arkansas AR Madison 087 35.8346 -93.6181 +US 72760 Saint Paul Arkansas AR Madison 087 35.8496 -93.7347 +US 72773 Wesley Arkansas AR Madison 087 36.0114 -93.8526 +US 72776 Witter Arkansas AR Madison 087 35.9356 -93.621 +US 72618 Bruno Arkansas AR Marion County 089 36.1181 -92.757 +US 72619 Bull Shoals Arkansas AR Marion 089 36.371 -92.5938 +US 72634 Flippin Arkansas AR Marion 089 36.2682 -92.578 +US 72661 Oakland Arkansas AR Marion 089 36.4442 -92.5832 +US 72668 Peel Arkansas AR Marion 089 36.435 -92.7615 +US 72672 Pyatt Arkansas AR Marion 089 36.2486 -92.8416 +US 72677 Summit Arkansas AR Marion 089 36.2672 -92.6859 +US 72687 Yellville Arkansas AR Marion 089 36.2253 -92.7245 +US 71834 Doddridge Arkansas AR Miller 091 33.1054 -93.9543 +US 71837 Fouke Arkansas AR Miller 091 33.3025 -93.901 +US 71840 Genoa Arkansas AR Miller 091 33.3166 -93.8545 +US 71854 Texarkana Arkansas AR Miller 091 33.431 -93.8765 +US 72310 Armorel Arkansas AR Mississippi 093 35.852 -89.9728 +US 72313 Bassett Arkansas AR Mississippi 093 35.7122 -90.0284 +US 72315 Blytheville Arkansas AR Mississippi 093 35.8786 -89.8968 +US 72316 Blytheville Arkansas AR Mississippi 093 35.6949 -89.9668 +US 72317 Blytheville Arkansas AR Mississippi County 093 35.9271 -89.9187 +US 72319 Gosnell Arkansas AR Mississippi 093 35.6949 -89.9668 +US 72321 Burdette Arkansas AR Mississippi 093 35.8211 -89.9406 +US 72329 Driver Arkansas AR Mississippi 093 35.6253 -90.0138 +US 72330 Dyess Arkansas AR Mississippi 093 35.5954 -90.2157 +US 72338 Frenchmans Bayou Arkansas AR Mississippi 093 35.4591 -90.1884 +US 72350 Joiner Arkansas AR Mississippi 093 35.5052 -90.1478 +US 72351 Keiser Arkansas AR Mississippi 093 35.6737 -90.0963 +US 72358 Luxora Arkansas AR Mississippi 093 35.7608 -89.922 +US 72370 Osceola Arkansas AR Mississippi 093 35.7019 -89.9798 +US 72381 Tomato Arkansas AR Mississippi 093 35.6949 -89.9668 +US 72391 West Ridge Arkansas AR Mississippi 093 35.6949 -89.9668 +US 72395 Wilson Arkansas AR Mississippi 093 35.566 -90.0427 +US 72426 Dell Arkansas AR Mississippi 093 35.854 -90.0556 +US 72428 Etowah Arkansas AR Mississippi 093 35.7337 -90.1838 +US 72438 Leachville Arkansas AR Mississippi 093 35.9332 -90.1955 +US 72442 Manila Arkansas AR Mississippi 093 35.8439 -90.1806 +US 72021 Brinkley Arkansas AR Monroe 095 34.8781 -91.1886 +US 72029 Clarendon Arkansas AR Monroe 095 34.6601 -91.2564 +US 72069 Holly Grove Arkansas AR Monroe 095 34.5993 -91.1844 +US 72108 Monroe Arkansas AR Monroe 095 34.7311 -91.099 +US 72134 Roe Arkansas AR Monroe 095 34.6286 -91.3771 +US 71935 Caddo Gap Arkansas AR Montgomery 097 34.3913 -93.7637 +US 71957 Mount Ida Arkansas AR Montgomery 097 34.5612 -93.5749 +US 71960 Norman Arkansas AR Montgomery 097 34.4596 -93.6743 +US 71961 Oden Arkansas AR Montgomery 097 34.6113 -93.8211 +US 71965 Pencil Bluff Arkansas AR Montgomery 097 34.6399 -93.7429 +US 71966 Oden Arkansas AR Montgomery 097 34.543 -93.6646 +US 71969 Sims Arkansas AR Montgomery 097 34.6462 -93.6741 +US 71970 Story Arkansas AR Montgomery 097 34.6687 -93.5376 +US 71722 Bluff City Arkansas AR Nevada 099 33.7038 -93.1588 +US 71828 Cale Arkansas AR Nevada 099 33.7008 -93.2941 +US 71835 Emmet Arkansas AR Nevada 099 33.6929 -93.4232 +US 71844 Laneburg Arkansas AR Nevada 099 33.7008 -93.2941 +US 71857 Prescott Arkansas AR Nevada 099 33.804 -93.3725 +US 71858 Rosston Arkansas AR Nevada 099 33.5617 -93.3039 +US 71864 Willisville Arkansas AR Nevada 099 33.7008 -93.2941 +US 72612 Bass Arkansas AR Newton County 101 35.8922 -92.9998 +US 72624 Compton Arkansas AR Newton 101 36.0979 -93.3099 +US 72628 Deer Arkansas AR Newton 101 35.853 -93.3174 +US 72640 Hasty Arkansas AR Newton 101 36.0152 -93.046 +US 72641 Jasper Arkansas AR Newton 101 36.0038 -93.2048 +US 72648 Marble Falls Arkansas AR Newton 101 36.0695 -93.1566 +US 72655 Mount Judea Arkansas AR Newton 101 35.9407 -93.0654 +US 72666 Parthenon Arkansas AR Newton 101 35.9451 -93.2677 +US 72670 Ponca Arkansas AR Newton 101 35.9249 -93.2323 +US 72683 Vendor Arkansas AR Newton 101 35.8904 -93.113 +US 72685 Western Grove Arkansas AR Newton 101 36.083 -92.9716 +US 71701 Camden Arkansas AR Ouachita 103 33.5948 -92.8513 +US 71711 Camden Arkansas AR Ouachita 103 33.589 -92.8426 +US 71720 Bearden Arkansas AR Ouachita 103 33.7298 -92.618 +US 71726 Chidester Arkansas AR Ouachita 103 33.6652 -92.9969 +US 71751 Louann Arkansas AR Ouachita 103 33.4169 -92.777 +US 71764 Stephens Arkansas AR Ouachita 103 33.455 -93.0214 +US 72001 Adona Arkansas AR Perry 105 35.047 -92.9033 +US 72016 Bigelow Arkansas AR Perry 105 34.9847 -92.6308 +US 72025 Casa Arkansas AR Perry 105 35.0322 -93.047 +US 72070 Houston Arkansas AR Perry 105 35.0362 -92.6913 +US 72125 Perry Arkansas AR Perry 105 35.0443 -92.7958 +US 72126 Perryville Arkansas AR Perry 105 34.9701 -92.8472 +US 72312 Barton Arkansas AR Phillips 107 34.5467 -90.7679 +US 72328 Crumrod Arkansas AR Phillips 107 34.1335 -90.9751 +US 72333 Elaine Arkansas AR Phillips 107 34.3118 -90.8939 +US 72342 Helena Arkansas AR Phillips 107 34.5325 -90.6298 +US 72353 Lambrook Arkansas AR Phillips 107 34.3286 -90.9652 +US 72355 Lexa Arkansas AR Phillips 107 34.6727 -90.7853 +US 72366 Marvell Arkansas AR Phillips 107 34.5485 -90.9413 +US 72367 Mellwood Arkansas AR Phillips 107 34.22 -91.0086 +US 72369 Oneida Arkansas AR Phillips 107 34.4542 -90.7684 +US 72374 Poplar Grove Arkansas AR Phillips 107 34.5394 -90.8813 +US 72383 Turner Arkansas AR Phillips 107 34.5062 -91.0314 +US 72389 Wabash Arkansas AR Phillips 107 34.3466 -90.8869 +US 72390 West Helena Arkansas AR Phillips 107 34.5496 -90.6545 +US 71922 Antoine Arkansas AR Pike 109 34.0283 -93.4372 +US 71940 Delight Arkansas AR Pike 109 34.0238 -93.5247 +US 71943 Glenwood Arkansas AR Pike 109 34.3192 -93.5559 +US 71950 Kirby Arkansas AR Pike 109 34.2513 -93.741 +US 71952 Langley Arkansas AR Pike 109 34.314 -93.8509 +US 71958 Murfreesboro Arkansas AR Pike 109 34.1017 -93.7109 +US 71959 Newhope Arkansas AR Pike 109 34.2273 -93.8905 +US 72354 Lepanto Arkansas AR Poinsett 111 35.6069 -90.3359 +US 72365 Marked Tree Arkansas AR Poinsett 111 35.5349 -90.4194 +US 72377 Rivervale Arkansas AR Poinsett 111 35.675 -90.3469 +US 72386 Tyronza Arkansas AR Poinsett 111 35.4865 -90.3519 +US 72429 Fisher Arkansas AR Poinsett 111 35.514 -90.955 +US 72432 Harrisburg Arkansas AR Poinsett 111 35.5722 -90.7038 +US 72472 Trumann Arkansas AR Poinsett 111 35.5882 -90.562 +US 72475 Waldenburg Arkansas AR Poinsett 111 35.5631 -90.9207 +US 72479 Weiner Arkansas AR Poinsett 111 35.6291 -90.9289 +US 71932 Board Camp Arkansas AR Polk 113 34.5372 -94.0972 +US 71937 Cove Arkansas AR Polk 113 34.4192 -94.3923 +US 71944 Grannis Arkansas AR Polk 113 34.237 -94.3255 +US 71945 Hatfield Arkansas AR Polk 113 34.4877 -94.3714 +US 71946 Hatton Arkansas AR Polk 113 34.4594 -94.2002 +US 71953 Mena Arkansas AR Polk 113 34.5814 -94.221 +US 71972 Vandervoort Arkansas AR Polk 113 34.3941 -94.2535 +US 71973 Wickes Arkansas AR Polk 113 34.3088 -94.3403 +US 72679 Tilly Arkansas AR Pope 115 35.7341 -92.8391 +US 72801 Russellville Arkansas AR Pope 115 35.2842 -93.1315 +US 72802 Russellville Arkansas AR Pope 115 35.3067 -93.0712 +US 72811 Russellville Arkansas AR Pope 115 35.3147 -93.1133 +US 72812 Russellville Arkansas AR Pope 115 35.4231 -93.0544 +US 72822 Atkins Arkansas AR Pope County 115 35.2462 -92.9362 +US 72823 Atkins Arkansas AR Pope 115 35.2449 -92.9507 +US 72837 Dover Arkansas AR Pope 115 35.4074 -93.1355 +US 72843 Hector Arkansas AR Pope 115 35.5499 -92.9616 +US 72847 London Arkansas AR Pope 115 35.3744 -93.2736 +US 72856 Pelsor Arkansas AR Pope 115 35.7854 -93.0812 +US 72858 Pottsville Arkansas AR Pope 115 35.2398 -93.0564 +US 72017 Biscoe Arkansas AR Prairie 117 34.8733 -91.3945 +US 72040 Des Arc Arkansas AR Prairie 117 34.9751 -91.5113 +US 72041 De Valls Bluff Arkansas AR Prairie 117 34.7447 -91.4982 +US 72064 Hazen Arkansas AR Prairie 117 34.7838 -91.5767 +US 72066 Hickory Plains Arkansas AR Prairie 117 34.7855 -91.5738 +US 72170 Ulm Arkansas AR Prairie 117 34.5772 -91.4633 +US 72002 Alexander Arkansas AR Pulaski 119 34.6313 -92.4727 +US 72053 College Station Arkansas AR Pulaski 119 34.7093 -92.2283 +US 72065 Hensley Arkansas AR Pulaski 119 34.5208 -92.2758 +US 72076 Jacksonville Arkansas AR Pulaski 119 34.919 -92.1419 +US 72078 Jacksonville Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72099 Little Rock Air Force Base Arkansas AR Pulaski 119 34.9074 -92.1397 +US 72103 Mabelvale Arkansas AR Pulaski 119 34.6478 -92.3849 +US 72113 Maumelle Arkansas AR Pulaski 119 34.8491 -92.4059 +US 72114 North Little Rock Arkansas AR Pulaski 119 34.7666 -92.2629 +US 72115 North Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72116 North Little Rock Arkansas AR Pulaski 119 34.8059 -92.2305 +US 72117 North Little Rock Arkansas AR Pulaski 119 34.7658 -92.1524 +US 72118 North Little Rock Arkansas AR Pulaski 119 34.8337 -92.3289 +US 72119 North Little Rock Arkansas AR Pulaski 119 34.8017 -92.2598 +US 72120 Sherwood Arkansas AR Pulaski 119 34.8807 -92.2303 +US 72124 North Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72135 Roland Arkansas AR Pulaski 119 34.8829 -92.5192 +US 72142 Scott Arkansas AR Pulaski 119 34.6942 -92.1157 +US 72164 Sweet Home Arkansas AR Pulaski 119 34.6873 -92.2399 +US 72180 Woodson Arkansas AR Pulaski 119 34.5338 -92.2089 +US 72183 Wrightsville Arkansas AR Pulaski 119 34.6012 -92.1938 +US 72190 North Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72198 North Little Rock Arkansas AR Pulaski County 119 34.7678 -92.2828 +US 72199 North Little Rock Arkansas AR Pulaski 119 34.8272 -92.2847 +US 72201 Little Rock Arkansas AR Pulaski 119 34.7483 -92.2819 +US 72202 Little Rock Arkansas AR Pulaski 119 34.7363 -92.2741 +US 72203 Little Rock Arkansas AR Pulaski 119 34.8835 -92.3908 +US 72204 Little Rock Arkansas AR Pulaski 119 34.7269 -92.344 +US 72205 Little Rock Arkansas AR Pulaski 119 34.751 -92.3455 +US 72206 Little Rock Arkansas AR Pulaski 119 34.6836 -92.2776 +US 72207 Little Rock Arkansas AR Pulaski 119 34.7721 -92.3565 +US 72208 Little Rock Arkansas AR Pulaski County 119 34.783 -92.5819 +US 72209 Little Rock Arkansas AR Pulaski 119 34.6725 -92.3529 +US 72210 Little Rock Arkansas AR Pulaski 119 34.7076 -92.466 +US 72211 Little Rock Arkansas AR Pulaski 119 34.7413 -92.4222 +US 72212 Little Rock Arkansas AR Pulaski 119 34.7871 -92.4222 +US 72214 Little Rock Arkansas AR Pulaski 119 34.7621 -92.2282 +US 72215 Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72216 Little Rock Arkansas AR Pulaski 119 34.8178 -92.2357 +US 72217 Little Rock Arkansas AR Pulaski 119 34.8302 -92.1702 +US 72219 Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72221 Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72222 Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72223 Little Rock Arkansas AR Pulaski 119 34.7902 -92.5044 +US 72224 Little Rock Arkansas AR Pulaski County 119 34.7224 -92.3541 +US 72225 Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72227 Little Rock Arkansas AR Pulaski 119 34.7757 -92.3724 +US 72231 Little Rock Arkansas AR Pulaski 119 34.8019 -92.1894 +US 72295 Little Rock Arkansas AR Pulaski 119 34.7519 -92.3925 +US 72297 Little Rock Arkansas AR Pulaski County 119 34.7224 -92.3541 +US 72413 Biggers Arkansas AR Randolph 121 36.2844 -90.8538 +US 72444 Maynard Arkansas AR Randolph 121 36.4386 -90.8749 +US 72449 O Kean Arkansas AR Randolph 121 36.1797 -90.8241 +US 72455 Pocahontas Arkansas AR Randolph 121 36.2829 -90.9968 +US 72460 Ravenden Springs Arkansas AR Randolph 121 36.3104 -91.2094 +US 72462 Reyno Arkansas AR Randolph 121 36.3744 -90.7676 +US 72478 Warm Springs Arkansas AR Randolph 121 36.4633 -91.0558 +US 72322 Caldwell Arkansas AR St. Francis 123 35.0562 -90.8288 +US 72326 Colt Arkansas AR St. Francis 123 35.0881 -90.8895 +US 72335 Forrest City Arkansas AR St. Francis 123 35.0091 -90.7886 +US 72336 Forrest City Arkansas AR St. Francis 123 35.1009 -90.7261 +US 72340 Goodwin Arkansas AR St. Francis 123 34.9358 -91.0292 +US 72346 Heth Arkansas AR St. Francis 123 35.0973 -90.4586 +US 72348 Hughes Arkansas AR St. Francis 123 34.9454 -90.4741 +US 72359 Madison Arkansas AR St. Francis 123 35.0252 -90.7086 +US 72372 Palestine Arkansas AR St. Francis 123 34.9663 -90.9049 +US 72378 Round Pond Arkansas AR Saint Francis County 123 35.0657 -90.609 +US 72392 Wheatley Arkansas AR St. Francis 123 34.9207 -91.1086 +US 72394 Widener Arkansas AR St. Francis 123 35.0592 -90.6293 +US 72011 Bauxite Arkansas AR Saline 125 34.5091 -92.4828 +US 72015 Benton Arkansas AR Saline 125 34.4933 -92.5896 +US 72018 Benton Arkansas AR Saline 125 34.5973 -92.6229 +US 72022 Bryant Arkansas AR Saline 125 34.6068 -92.492 +US 72089 Bryant Arkansas AR Saline 125 34.635 -92.6597 +US 72122 Paron Arkansas AR Saline 125 34.7853 -92.7482 +US 72158 Benton Arkansas AR Saline 125 34.635 -92.6597 +US 72167 Traskwood Arkansas AR Saline 125 34.4508 -92.6547 +US 72841 Harvey Arkansas AR Scott 127 34.8762 -93.764 +US 72924 Bates Arkansas AR Scott 127 34.8826 -94.0797 +US 72926 Boles Arkansas AR Scott 127 34.7654 -94.0629 +US 72944 Mansfield Arkansas AR Scott 127 35.0432 -94.2204 +US 72950 Parks Arkansas AR Scott 127 34.8003 -93.9509 +US 72958 Waldron Arkansas AR Scott 127 34.9026 -94.0772 +US 72636 Gilbert Arkansas AR Searcy 129 35.9167 -92.6814 +US 72639 Harriet Arkansas AR Searcy 129 35.9991 -92.5042 +US 72645 Leslie Arkansas AR Searcy 129 35.8272 -92.5663 +US 72650 Marshall Arkansas AR Searcy 129 35.9267 -92.6402 +US 72669 Pindall Arkansas AR Searcy 129 36.0675 -92.8864 +US 72675 Saint Joe Arkansas AR Searcy 129 35.9877 -92.7928 +US 72686 Witts Springs Arkansas AR Searcy 129 35.7478 -92.9 +US 72901 Fort Smith Arkansas AR Sebastian 131 35.3653 -94.411 +US 72902 Fort Smith Arkansas AR Sebastian 131 35.3862 -94.4091 +US 72903 Fort Smith Arkansas AR Sebastian 131 35.3427 -94.3784 +US 72904 Fort Smith Arkansas AR Sebastian 131 35.4051 -94.3872 +US 72905 Fort Smith Arkansas AR Sebastian 131 35.191 -94.2382 +US 72906 Fort Smith Arkansas AR Sebastian 131 35.191 -94.2382 +US 72908 Fort Smith Arkansas AR Sebastian 131 35.3219 -94.4028 +US 72913 Fort Smith Arkansas AR Sebastian 131 35.191 -94.2382 +US 72914 Fort Smith Arkansas AR Sebastian 131 35.191 -94.2382 +US 72916 Fort Smith Arkansas AR Sebastian 131 35.2502 -94.3703 +US 72917 Fort Smith Arkansas AR Sebastian 131 35.191 -94.2382 +US 72918 Fort Smith Arkansas AR Sebastian 131 35.191 -94.2382 +US 72919 Fort Smith Arkansas AR Sebastian 131 35.191 -94.2382 +US 72923 Barling Arkansas AR Sebastian 131 35.333 -94.3082 +US 72936 Greenwood Arkansas AR Sebastian 131 35.1955 -94.253 +US 72937 Hackett Arkansas AR Sebastian 131 35.1945 -94.3983 +US 72938 Hartford Arkansas AR Sebastian 131 35.0222 -94.3819 +US 72940 Huntington Arkansas AR Sebastian 131 35.0963 -94.3313 +US 72941 Lavaca Arkansas AR Sebastian 131 35.3661 -94.1917 +US 72945 Midland Arkansas AR Sebastian 131 35.0963 -94.3496 +US 71823 Ben Lomond Arkansas AR Sevier 133 33.8115 -94.1251 +US 71832 De Queen Arkansas AR Sevier 133 34.0442 -94.3386 +US 71841 Gillham Arkansas AR Sevier 133 34.157 -94.3165 +US 71842 Horatio Arkansas AR Sevier 133 33.9392 -94.2959 +US 71846 Lockesburg Arkansas AR Sevier 133 33.9306 -94.1276 +US 72482 Williford Arkansas AR Sharp 135 36.2453 -91.3792 +US 72513 Ash Flat Arkansas AR Sharp 135 36.2201 -91.6421 +US 72521 Cave City Arkansas AR Sharp 135 35.9517 -91.5444 +US 72525 Cherokee Village Arkansas AR Sharp 135 36.311 -91.597 +US 72529 Cherokee Village Arkansas AR Sharp 135 36.3011 -91.5281 +US 72532 Evening Shade Arkansas AR Sharp 135 36.0855 -91.598 +US 72542 Hardy Arkansas AR Sharp 135 36.3227 -91.411 +US 72569 Poughkeepsie Arkansas AR Sharp 135 36.0715 -91.4516 +US 72577 Sidney Arkansas AR Sharp 135 36.0664 -91.642 +US 72051 Fox Arkansas AR Stone 137 35.7682 -92.3043 +US 72533 Fifty Six Arkansas AR Stone 137 35.992 -92.2182 +US 72555 Marcella Arkansas AR Stone 137 35.7756 -91.8718 +US 72560 Mountain View Arkansas AR Stone 137 35.8208 -92.0389 +US 72567 Pleasant Grove Arkansas AR Stone 137 35.8265 -91.8958 +US 72610 Alco Arkansas AR Stone 137 35.8945 -92.3808 +US 72657 Timbo Arkansas AR Stone 137 35.919 -92.1272 +US 72663 Onia Arkansas AR Stone 137 35.9403 -92.3459 +US 72680 Timbo Arkansas AR Stone 137 35.8845 -92.2913 +US 71724 Calion Arkansas AR Union 139 33.3261 -92.5464 +US 71730 El Dorado Arkansas AR Union 139 33.2073 -92.6629 +US 71731 El Dorado Arkansas AR Union 139 33.198 -92.5289 +US 71747 Huttig Arkansas AR Union 139 33.0459 -92.1942 +US 71749 Junction City Arkansas AR Union 139 33.044 -92.6843 +US 71750 Lawson Arkansas AR Union 139 33.198 -92.5289 +US 71758 Mount Holly Arkansas AR Union 139 33.3085 -92.9443 +US 71759 Norphlet Arkansas AR Union 139 33.325 -92.6616 +US 71762 Smackover Arkansas AR Union 139 33.3398 -92.7442 +US 71765 Strong Arkansas AR Union 139 33.1195 -92.3621 +US 71768 Urbana Arkansas AR Union 139 33.198 -92.5289 +US 72013 Bee Branch Arkansas AR Van Buren 141 35.4683 -92.3779 +US 72028 Choctaw Arkansas AR Van Buren 141 35.5773 -92.5456 +US 72031 Clinton Arkansas AR Van Buren 141 35.6045 -92.4758 +US 72088 Fairfield Bay Arkansas AR Van Buren 141 35.6027 -92.2742 +US 72141 Scotland Arkansas AR Van Buren 141 35.508 -92.5867 +US 72153 Shirley Arkansas AR Van Buren 141 35.6498 -92.3143 +US 72629 Dennard Arkansas AR Van Buren 141 35.7252 -92.5575 +US 72701 Fayetteville Arkansas AR Washington 143 36.052 -94.1534 +US 72702 Fayetteville Arkansas AR Washington 143 35.994 -94.22 +US 72703 Fayetteville Arkansas AR Washington 143 36.0992 -94.1716 +US 72704 Fayetteville Arkansas AR Washington 143 36.0877 -94.3093 +US 72717 Canehill Arkansas AR Washington 143 35.8477 -94.4441 +US 72727 Elkins Arkansas AR Washington 143 36.0177 -94.0073 +US 72728 Elm Springs Arkansas AR Washington 143 36.21 -94.2546 +US 72729 Evansville Arkansas AR Washington 143 35.7823 -94.4638 +US 72730 Farmington Arkansas AR Washington 143 36.0436 -94.2539 +US 72735 Goshen Arkansas AR Washington 143 36.0876 -93.9666 +US 72737 Greenland Arkansas AR Washington 143 35.9282 -94.1529 +US 72741 Johnson Arkansas AR Washington 143 35.994 -94.22 +US 72744 Lincoln Arkansas AR Washington 143 35.9569 -94.4272 +US 72749 Morrow Arkansas AR Washington 143 35.8654 -94.4432 +US 72753 Prairie Grove Arkansas AR Washington 143 35.9918 -94.3169 +US 72762 Springdale Arkansas AR Washington 143 36.1835 -94.1762 +US 72764 Springdale Arkansas AR Washington 143 36.1716 -94.0428 +US 72765 Springdale Arkansas AR Washington 143 36.1725 -94.1535 +US 72766 Springdale Arkansas AR Washington 143 35.994 -94.22 +US 72769 Summers Arkansas AR Washington 143 36.0138 -94.5 +US 72770 Tontitown Arkansas AR Washington 143 36.15 -94.2429 +US 72774 West Fork Arkansas AR Washington 143 35.9082 -94.2304 +US 72775 Wheeler Arkansas AR Washington County 143 36.114 -94.2587 +US 72959 Winslow Arkansas AR Washington 143 35.8312 -94.1187 +US 72010 Bald Knob Arkansas AR White 145 35.3113 -91.5502 +US 72012 Beebe Arkansas AR White 145 35.0937 -91.9074 +US 72020 Bradford Arkansas AR White 145 35.4277 -91.519 +US 72045 El Paso Arkansas AR White 145 35.1142 -92.0901 +US 72052 Garner Arkansas AR White 145 35.1443 -91.7772 +US 72060 Griffithville Arkansas AR White 145 35.1144 -91.6242 +US 72068 Higginson Arkansas AR White 145 35.1903 -91.7108 +US 72081 Judsonia Arkansas AR White 145 35.325 -91.6491 +US 72082 Kensett Arkansas AR White 145 35.2388 -91.6731 +US 72085 Letona Arkansas AR White 145 35.3672 -91.8221 +US 72102 Mc Rae Arkansas AR White 145 35.1132 -91.8216 +US 72121 Pangburn Arkansas AR White 145 35.4216 -91.796 +US 72136 Romance Arkansas AR White 145 35.2155 -92.0699 +US 72137 Rose Bud Arkansas AR White 145 35.3214 -92.062 +US 72139 Russell Arkansas AR White 145 35.3609 -91.5071 +US 72143 Searcy Arkansas AR White 145 35.2436 -91.7317 +US 72145 Searcy Arkansas AR White 145 35.2774 -91.7326 +US 72149 Searcy Arkansas AR White 145 35.2474 -91.7314 +US 72159 Steprock Arkansas AR White County 145 35.4289 -91.6875 +US 72178 West Point Arkansas AR White 145 35.2032 -91.6064 +US 72006 Augusta Arkansas AR Woodruff 147 35.2788 -91.3527 +US 72036 Cotton Plant Arkansas AR Woodruff 147 35.0178 -91.229 +US 72059 Gregory Arkansas AR Woodruff 147 35.1791 -91.2594 +US 72071 Howell Arkansas AR Woodruff 147 35.1791 -91.2594 +US 72074 Hunter Arkansas AR Woodruff 147 35.0452 -91.1064 +US 72101 Mc Crory Arkansas AR Woodruff 147 35.2473 -91.1793 +US 72123 Patterson Arkansas AR Woodruff 147 35.2588 -91.237 +US 72189 Mc Crory Arkansas AR Woodruff 147 35.1791 -91.2594 +US 72824 Belleville Arkansas AR Yell 149 35.1038 -93.4518 +US 72827 Bluffton Arkansas AR Yell 149 34.9016 -93.5919 +US 72828 Briggsville Arkansas AR Yell 149 34.9161 -93.5157 +US 72829 Centerville Arkansas AR Yell 149 35.1018 -93.1773 +US 72833 Danville Arkansas AR Yell 149 35.0495 -93.3929 +US 72834 Dardanelle Arkansas AR Yell 149 35.1955 -93.1873 +US 72838 Gravelly Arkansas AR Yell 149 34.8881 -93.6802 +US 72842 Havana Arkansas AR Yell 149 35.0832 -93.5955 +US 72853 Ola Arkansas AR Yell 149 35.0309 -93.2136 +US 72857 Plainview Arkansas AR Yell 149 34.9668 -93.3099 +US 72860 Rover Arkansas AR Yell 149 34.9475 -93.4017 +US 72867 Waveland Arkansas AR Yell County 149 35.0981 -93.6083 +US 85920 Alpine Arizona AZ Apache 001 33.8279 -109.1283 +US 85924 Concho Arizona AZ Apache 001 34.4458 -109.6741 +US 85925 Eagar Arizona AZ Apache 001 34.1077 -109.294 +US 85927 Greer Arizona AZ Apache 001 34.0052 -109.4664 +US 85930 Mcnary Arizona AZ Apache 001 34.0754 -109.8532 +US 85932 Nutrioso Arizona AZ Apache 001 35.2375 -109.5229 +US 85936 Saint Johns Arizona AZ Apache 001 34.501 -109.3796 +US 85938 Springerville Arizona AZ Apache 001 34.1702 -109.3315 +US 85940 Vernon Arizona AZ Apache 001 34.2575 -109.6929 +US 86028 Petrified Forest Natl Pk Arizona AZ Apache 001 35.2375 -109.5229 +US 86502 Chambers Arizona AZ Apache 001 35.2375 -109.5229 +US 86503 Chinle Arizona AZ Apache 001 36.1304 -109.6037 +US 86504 Fort Defiance Arizona AZ Apache 001 35.2375 -109.5229 +US 86505 Ganado Arizona AZ Apache 001 35.2375 -109.5229 +US 86506 Houck Arizona AZ Apache 001 35.3371 -109.2478 +US 86507 Lukachukai Arizona AZ Apache 001 36.4181 -109.2446 +US 86508 Lupton Arizona AZ Apache 001 35.2375 -109.5229 +US 86509 Chambers Arizona AZ Apache County 001 34.8172 -109.3962 +US 86511 Saint Michaels Arizona AZ Apache 001 35.904 -109.3087 +US 86512 Sanders Arizona AZ Apache 001 35.4067 -109.2855 +US 86514 Teec Nos Pos Arizona AZ Apache 001 36.7797 -109.359 +US 86515 Window Rock Arizona AZ Apache 001 35.6676 -109.0784 +US 86535 Dennehotso Arizona AZ Apache 001 36.7773 -109.861 +US 86538 Many Farms Arizona AZ Apache 001 36.4083 -109.634 +US 86540 Nazlini Arizona AZ Apache 001 35.2375 -109.5229 +US 86544 Red Valley Arizona AZ Apache 001 35.2375 -109.5229 +US 86545 Rock Point Arizona AZ Apache 001 35.2375 -109.5229 +US 86547 Round Rock Arizona AZ Apache 001 35.2375 -109.5229 +US 86549 Sawmill Arizona AZ Apache 001 35.2375 -109.5229 +US 86556 Tsaile Arizona AZ Apache 001 36.3071 -109.2176 +US 85602 Benson Arizona AZ Cochise 003 31.9883 -110.2941 +US 85603 Bisbee Arizona AZ Cochise 003 31.4086 -109.9117 +US 85605 Bowie Arizona AZ Cochise 003 31.8914 -109.7064 +US 85606 Cochise Arizona AZ Cochise 003 32.0979 -109.9239 +US 85607 Douglas Arizona AZ Cochise 003 31.3511 -109.5447 +US 85608 Douglas Arizona AZ Cochise 003 31.4151 -109.596 +US 85609 Dragoon Arizona AZ Cochise 003 32.0408 -109.818 +US 85610 Elfrida Arizona AZ Cochise 003 31.7139 -109.6193 +US 85613 Fort Huachuca Arizona AZ Cochise 003 31.5587 -110.3441 +US 85615 Hereford Arizona AZ Cochise 003 31.4035 -110.2047 +US 85616 Huachuca City Arizona AZ Cochise 003 31.6639 -110.3334 +US 85617 Mc Neal Arizona AZ Cochise 003 31.5121 -109.8438 +US 85620 Naco Arizona AZ Cochise 003 31.3373 -109.9413 +US 85625 Pearce Arizona AZ Cochise 003 31.8885 -109.6119 +US 85626 Pirtleville Arizona AZ Cochise 003 31.3575 -109.6115 +US 85627 Pomerene Arizona AZ Cochise 003 32.0495 -110.2909 +US 85630 Saint David Arizona AZ Cochise 003 31.8973 -110.2154 +US 85632 San Simon Arizona AZ Cochise 003 32.0423 -109.1748 +US 85635 Sierra Vista Arizona AZ Cochise 003 31.5365 -110.2666 +US 85636 Sierra Vista Arizona AZ Cochise 003 31.6687 -110.2801 +US 85638 Tombstone Arizona AZ Cochise 003 31.7216 -110.0584 +US 85643 Willcox Arizona AZ Cochise 003 32.373 -109.8631 +US 85644 Willcox Arizona AZ Cochise 003 32.3007 -109.8782 +US 85650 Sierra Vista Arizona AZ Cochise 003 31.4892 -110.2153 +US 85655 Douglas Arizona AZ Cochise 003 31.8801 -109.7543 +US 85670 Fort Huachuca Arizona AZ Cochise 003 31.8801 -109.7543 +US 85671 Sierra Vista Arizona AZ Cochise 003 31.8801 -109.7543 +US 85931 Forest Lakes Arizona AZ Coconino 005 34.4513 -110.8644 +US 86001 Flagstaff Arizona AZ Coconino 005 35.1859 -111.662 +US 86002 Flagstaff Arizona AZ Coconino 005 35.6308 -112.0524 +US 86003 Flagstaff Arizona AZ Coconino 005 35.6308 -112.0524 +US 86004 Flagstaff Arizona AZ Coconino 005 35.2257 -111.5741 +US 86005 Flagstaff Arizona AZ Coconino 005 35.1545 -111.6789 +US 86011 Flagstaff Arizona AZ Coconino 005 35.6308 -112.0524 +US 86015 Bellemont Arizona AZ Coconino 005 35.6308 -112.0524 +US 86016 Gray Mountain Arizona AZ Coconino 005 35.7504 -111.6188 +US 86017 Munds Park Arizona AZ Coconino 005 34.9412 -111.641 +US 86018 Parks Arizona AZ Coconino 005 35.2563 -111.95 +US 86020 Cameron Arizona AZ Coconino 005 35.9922 -111.5038 +US 86022 Fredonia Arizona AZ Coconino 005 36.9044 -112.4979 +US 86023 Grand Canyon Arizona AZ Coconino 005 35.9421 -112.1309 +US 86024 Happy Jack Arizona AZ Coconino 005 34.6616 -111.3404 +US 86035 Leupp Arizona AZ Coconino 005 35.3365 -110.9927 +US 86036 Marble Canyon Arizona AZ Coconino 005 36.737 -111.8229 +US 86038 Mormon Lake Arizona AZ Coconino 005 34.9083 -111.463 +US 86040 Page Arizona AZ Coconino 005 36.9108 -111.502 +US 86044 Tonalea Arizona AZ Coconino 005 36.7093 -110.8411 +US 86045 Tuba City Arizona AZ Coconino 005 36.1037 -111.2686 +US 86046 Williams Arizona AZ Coconino 005 35.5434 -112.1707 +US 86052 North Rim Arizona AZ Coconino 005 36.3473 -112.119 +US 86053 Kaibito Arizona AZ Coconino 005 36.4848 -111.137 +US 86336 Sedona Arizona AZ Coconino 005 34.8266 -111.7506 +US 86339 Sedona Arizona AZ Coconino 005 34.9072 -111.7286 +US 86351 Sedona Arizona AZ Coconino 005 34.7784 -111.7851 +US 86435 Supai Arizona AZ Coconino 005 36.2242 -112.6932 +US 85135 Hayden Arizona AZ Gila 007 33.0041 -110.7868 5 +US 85192 Winkelman Arizona AZ Gila 007 33.0057 -110.7727 +US 85235 Hayden Arizona AZ Gila 007 33.5764 -110.8556 +US 85501 Globe Arizona AZ Gila 007 33.4024 -110.7892 +US 85502 Globe Arizona AZ Gila 007 33.4219 -110.8127 +US 85532 Claypool Arizona AZ Gila 007 33.4154 -110.8149 +US 85539 Miami Arizona AZ Gila 007 33.4319 -110.8812 +US 85541 Payson Arizona AZ Gila 007 34.2198 -111.2878 +US 85542 Peridot Arizona AZ Gila 007 33.7415 -110.8607 +US 85544 Pine Arizona AZ Gila 007 34.3435 -111.5353 +US 85545 Roosevelt Arizona AZ Gila 007 33.6358 -110.9749 +US 85547 Payson Arizona AZ Gila 007 34.2575 -111.2878 +US 85550 San Carlos Arizona AZ Gila 007 33.3106 -110.3953 +US 85553 Tonto Basin Arizona AZ Gila 007 33.7415 -110.8607 +US 85554 Young Arizona AZ Gila 007 33.7415 -110.8607 +US 85530 Bylas Arizona AZ Graham 009 33.1265 -110.117 +US 85531 Central Arizona AZ Graham 009 32.8692 -109.7878 +US 85535 Eden Arizona AZ Graham 009 32.9751 -109.8974 +US 85536 Fort Thomas Arizona AZ Graham 009 33.0333 -109.9717 +US 85543 Pima Arizona AZ Graham 009 32.9097 -109.856 +US 85546 Safford Arizona AZ Graham 009 32.8295 -109.6266 +US 85548 Safford Arizona AZ Graham 009 32.797 -109.7522 +US 85551 Solomon Arizona AZ Graham 009 32.8428 -109.6964 +US 85552 Thatcher Arizona AZ Graham 009 32.8504 -109.7461 +US 85533 Clifton Arizona AZ Greenlee 011 33.1323 -109.2462 +US 85534 Duncan Arizona AZ Greenlee 011 32.881 -109.2157 +US 85540 Morenci Arizona AZ Greenlee 011 33.0436 -109.3115 +US 85922 Blue Arizona AZ Greenlee 011 33.6512 -109.0685 +US 85325 Bouse Arizona AZ La Paz 012 33.9578 -114.0036 +US 85328 Cibola Arizona AZ La Paz 012 33.6723 -114.0322 +US 85334 Ehrenberg Arizona AZ La Paz 012 33.6177 -114.5077 +US 85344 Parker Arizona AZ La Paz 012 33.9677 -114.2681 +US 85346 Quartzsite Arizona AZ La Paz 012 33.7292 -114.1925 +US 85348 Salome Arizona AZ La Paz 012 33.7481 -113.5715 +US 85357 Wenden Arizona AZ La Paz 012 34.0422 -113.458 +US 85359 Quartzsite Arizona AZ La Paz 012 33.6669 -114.2396 +US 85371 Poston Arizona AZ La Paz 012 34.0318 -114.3902 +US 85001 Phoenix Arizona AZ Maricopa 013 33.704 -112.3518 +US 85002 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85003 Phoenix Arizona AZ Maricopa 013 33.4511 -112.0774 +US 85004 Phoenix Arizona AZ Maricopa 013 33.4557 -112.0686 +US 85005 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85006 Phoenix Arizona AZ Maricopa 013 33.465 -112.0474 +US 85007 Phoenix Arizona AZ Maricopa 013 33.4523 -112.0893 +US 85008 Phoenix Arizona AZ Maricopa 013 33.4665 -111.9984 +US 85009 Phoenix Arizona AZ Maricopa 013 33.4564 -112.1284 +US 85010 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85011 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85012 Phoenix Arizona AZ Maricopa 013 33.5097 -112.0678 +US 85013 Phoenix Arizona AZ Maricopa 013 33.5085 -112.0827 +US 85014 Phoenix Arizona AZ Maricopa 013 33.5103 -112.0556 +US 85015 Phoenix Arizona AZ Maricopa 013 33.5082 -112.1011 +US 85016 Phoenix Arizona AZ Maricopa 013 33.5021 -112.0305 +US 85017 Phoenix Arizona AZ Maricopa 013 33.5153 -112.1212 +US 85018 Phoenix Arizona AZ Maricopa 013 33.4958 -111.9883 +US 85019 Phoenix Arizona AZ Maricopa 013 33.5123 -112.1417 +US 85020 Phoenix Arizona AZ Maricopa 013 33.5623 -112.0559 +US 85021 Phoenix Arizona AZ Maricopa 013 33.56 -112.0927 +US 85022 Phoenix Arizona AZ Maricopa 013 33.6315 -112.052 +US 85023 Phoenix Arizona AZ Maricopa 013 33.6324 -112.1118 +US 85024 Phoenix Arizona AZ Maricopa 013 33.6617 -112.037 +US 85025 Phoenix Arizona AZ Maricopa 013 33.4226 -111.7236 +US 85026 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85027 Phoenix Arizona AZ Maricopa 013 33.6819 -112.0996 +US 85028 Phoenix Arizona AZ Maricopa 013 33.5851 -112.0087 +US 85029 Phoenix Arizona AZ Maricopa 013 33.5961 -112.1199 +US 85030 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85031 Phoenix Arizona AZ Maricopa 013 33.4939 -112.1696 +US 85032 Phoenix Arizona AZ Maricopa 013 33.6238 -112.0044 +US 85033 Phoenix Arizona AZ Maricopa 013 33.4944 -112.2132 +US 85034 Phoenix Arizona AZ Maricopa 013 33.4413 -112.0421 +US 85035 Phoenix Arizona AZ Maricopa 013 33.4724 -112.1832 +US 85036 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85037 Phoenix Arizona AZ Maricopa 013 33.4913 -112.2468 +US 85038 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85039 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85040 Phoenix Arizona AZ Maricopa 013 33.4061 -112.0265 +US 85041 Phoenix Arizona AZ Maricopa 013 33.3889 -112.0954 +US 85042 Phoenix Arizona AZ Maricopa 013 33.3794 -112.0283 +US 85043 Phoenix Arizona AZ Maricopa 013 33.4491 -112.1972 +US 85044 Phoenix Arizona AZ Maricopa 013 33.3291 -111.9943 +US 85045 Phoenix Arizona AZ Maricopa 013 33.3022 -112.1226 +US 85046 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85048 Phoenix Arizona AZ Maricopa 013 33.316 -112.0669 +US 85050 Phoenix Arizona AZ Maricopa 013 33.6863 -111.9963 +US 85051 Phoenix Arizona AZ Maricopa 013 33.5591 -112.1332 +US 85053 Phoenix Arizona AZ Maricopa 013 33.6299 -112.1316 +US 85054 Phoenix Arizona AZ Maricopa 013 33.6731 -111.9461 +US 85055 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85060 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85061 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85062 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85063 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85064 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85065 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85066 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85067 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85068 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85069 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85070 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85071 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85072 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85073 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85074 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85075 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85076 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85077 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85078 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85079 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85080 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85082 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85083 Phoenix Arizona AZ Maricopa County 013 33.7352 -112.1294 +US 85085 Phoenix Arizona AZ Maricopa 013 33.7529 -112.0893 +US 85086 Phoenix Arizona AZ Maricopa 013 33.8155 -112.1202 +US 85086 Anthem Arizona AZ Maricopa 013 33.8155 -112.1202 +US 85087 New River Arizona AZ Maricopa 013 33.9235 -112.1279 +US 85097 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85098 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85099 Phoenix Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85142 Queen Creek Arizona AZ Maricopa 013 33.2848 -111.6561 +US 85201 Mesa Arizona AZ Maricopa 013 33.4317 -111.8469 +US 85202 Mesa Arizona AZ Maricopa 013 33.3851 -111.8724 +US 85203 Mesa Arizona AZ Maricopa 013 33.437 -111.8057 +US 85204 Mesa Arizona AZ Maricopa 013 33.3992 -111.7896 +US 85205 Mesa Arizona AZ Maricopa 013 33.4368 -111.7129 +US 85206 Mesa Arizona AZ Maricopa 013 33.4026 -111.7242 +US 85207 Mesa Arizona AZ Maricopa 013 33.4321 -111.6426 +US 85208 Mesa Arizona AZ Maricopa 013 33.3984 -111.6513 +US 85209 Mesa Arizona AZ Maricopa County 013 33.3782 -111.6406 +US 85210 Mesa Arizona AZ Maricopa 013 33.3887 -111.8428 +US 85211 Mesa Arizona AZ Maricopa 013 33.4663 -111.8373 +US 85212 Mesa Arizona AZ Maricopa 013 33.3425 -111.6353 +US 85213 Mesa Arizona AZ Maricopa 013 33.4367 -111.7731 +US 85214 Mesa Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85215 Mesa Arizona AZ Maricopa 013 33.4707 -111.7188 +US 85216 Mesa Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85224 Chandler Arizona AZ Maricopa 013 33.3301 -111.8632 +US 85225 Chandler Arizona AZ Maricopa 013 33.3105 -111.8239 +US 85226 Chandler Arizona AZ Maricopa 013 33.3092 -111.9198 +US 85227 Chandler Heights Arizona AZ Maricopa 013 33.2122 -111.6862 +US 85233 Gilbert Arizona AZ Maricopa 013 33.3354 -111.8153 +US 85234 Gilbert Arizona AZ Maricopa 013 33.3527 -111.7809 +US 85236 Higley Arizona AZ Maricopa 013 33.3024 -111.6969 +US 85244 Chandler Arizona AZ Maricopa 013 33.3213 -111.8888 +US 85246 Chandler Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85248 Chandler Arizona AZ Maricopa 013 33.2509 -111.8593 +US 85249 Chandler Arizona AZ Maricopa 013 33.2414 -111.7745 +US 85250 Scottsdale Arizona AZ Maricopa 013 33.5218 -111.9049 +US 85251 Scottsdale Arizona AZ Maricopa 013 33.4936 -111.9167 +US 85252 Scottsdale Arizona AZ Maricopa 013 33.4995 -111.8684 +US 85253 Paradise Valley Arizona AZ Maricopa 013 33.5494 -111.9565 +US 85254 Scottsdale Arizona AZ Maricopa 013 33.6165 -111.9554 +US 85255 Scottsdale Arizona AZ Maricopa 013 33.6968 -111.8892 +US 85256 Scottsdale Arizona AZ Maricopa 013 33.4858 -111.8533 +US 85257 Scottsdale Arizona AZ Maricopa 013 33.4669 -111.9151 +US 85258 Scottsdale Arizona AZ Maricopa 013 33.5647 -111.8931 +US 85259 Scottsdale Arizona AZ Maricopa 013 33.5879 -111.8404 +US 85260 Scottsdale Arizona AZ Maricopa 013 33.6013 -111.8867 +US 85261 Scottsdale Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85262 Scottsdale Arizona AZ Maricopa 013 33.7752 -111.7791 +US 85263 Rio Verde Arizona AZ Maricopa 013 33.682 -111.983 +US 85264 Fort Mcdowell Arizona AZ Maricopa 013 33.6118 -111.6806 +US 85266 Scottsdale Arizona AZ Maricopa 013 33.7669 -111.9182 +US 85267 Scottsdale Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85268 Fountain Hills Arizona AZ Maricopa 013 33.6085 -111.7237 +US 85269 Fountain Hills Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85271 Scottsdale Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85274 Mesa Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85275 Mesa Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85277 Mesa Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85280 Tempe Arizona AZ Maricopa 013 33.4014 -111.9313 +US 85281 Tempe Arizona AZ Maricopa 013 33.4227 -111.9261 +US 85282 Tempe Arizona AZ Maricopa 013 33.3917 -111.9249 +US 85283 Tempe Arizona AZ Maricopa 013 33.3665 -111.9312 +US 85284 Tempe Arizona AZ Maricopa 013 33.3363 -111.9197 +US 85285 Tempe Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85286 Chandler Arizona AZ Maricopa County 013 33.2711 -111.8311 +US 85287 Tempe Arizona AZ Maricopa 013 33.4285 -111.9349 +US 85289 Tempe Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85290 Tortilla Flat Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85295 Gilbert Arizona AZ Maricopa County 013 33.3054 -111.7408 +US 85296 Gilbert Arizona AZ Maricopa 013 33.3354 -111.7406 +US 85297 Gilbert Arizona AZ Maricopa 013 33.2781 -111.7096 +US 85298 Gilbert Arizona AZ Maricopa County 013 33.2522 -111.7022 +US 85299 Gilbert Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85301 Glendale Arizona AZ Maricopa 013 33.5311 -112.1767 +US 85302 Glendale Arizona AZ Maricopa 013 33.5675 -112.1753 +US 85303 Glendale Arizona AZ Maricopa 013 33.5262 -112.2149 +US 85304 Glendale Arizona AZ Maricopa 013 33.5943 -112.1746 +US 85305 Glendale Arizona AZ Maricopa 013 33.5291 -112.2482 +US 85306 Glendale Arizona AZ Maricopa 013 33.6239 -112.1776 +US 85307 Glendale Arizona AZ Maricopa 013 33.5376 -112.3137 +US 85308 Glendale Arizona AZ Maricopa 013 33.6539 -112.1694 +US 85309 Luke Afb Arizona AZ Maricopa 013 33.5355 -112.3766 +US 85310 Glendale Arizona AZ Maricopa 013 33.7047 -112.1641 +US 85311 Glendale Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85312 Glendale Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85313 Glendale Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85318 Glendale Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85320 Aguila Arizona AZ Maricopa 013 33.9186 -113.2134 +US 85322 Arlington Arizona AZ Maricopa 013 33.3133 -112.7891 +US 85323 Avondale Arizona AZ Maricopa 013 33.4321 -112.3438 +US 85326 Buckeye Arizona AZ Maricopa 013 33.389 -112.6077 +US 85327 Cave Creek Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85329 Cashion Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85331 Cave Creek Arizona AZ Maricopa 013 33.8851 -111.9349 +US 85335 El Mirage Arizona AZ Maricopa 013 33.6082 -112.3241 +US 85337 Gila Bend Arizona AZ Maricopa 013 32.9306 -112.7468 +US 85338 Goodyear Arizona AZ Maricopa 013 33.4368 -112.3834 +US 85339 Laveen Arizona AZ Maricopa 013 33.3436 -112.1716 +US 85340 Litchfield Park Arizona AZ Maricopa 013 33.5098 -112.4135 +US 85342 Morristown Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85343 Palo Verde Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85345 Peoria Arizona AZ Maricopa 013 33.5761 -112.2344 +US 85351 Sun City Arizona AZ Maricopa 013 33.6061 -112.2797 +US 85353 Tolleson Arizona AZ Maricopa 013 33.4347 -112.2774 +US 85354 Tonopah Arizona AZ Maricopa 013 33.4228 -112.9528 +US 85355 Waddell Arizona AZ Maricopa 013 33.5673 -112.4387 +US 85358 Wickenburg Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85361 Wittmann Arizona AZ Maricopa 013 33.7637 -112.6142 +US 85363 Youngtown Arizona AZ Maricopa 013 33.5908 -112.3013 +US 85372 Sun City Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85373 Sun City Arizona AZ Maricopa 013 33.6588 -112.3214 +US 85374 Surprise Arizona AZ Maricopa 013 33.63 -112.3314 +US 85375 Sun City West Arizona AZ Maricopa 013 33.6856 -112.3659 +US 85376 Sun City West Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85377 Carefree Arizona AZ Maricopa 013 33.824 -111.913 +US 85378 Surprise Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85379 Surprise Arizona AZ Maricopa 013 33.6021 -112.3736 +US 85380 Peoria Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85381 Peoria Arizona AZ Maricopa 013 33.6048 -112.2237 +US 85382 Peoria Arizona AZ Maricopa 013 33.6308 -112.2072 +US 85383 Peoria Arizona AZ Maricopa 013 33.7169 -112.238 +US 85385 Peoria Arizona AZ Maricopa 013 33.2765 -112.1872 +US 85387 Surprise Arizona AZ Maricopa 013 33.7129 -112.4375 +US 85388 Surprise Arizona AZ Maricopa County 013 33.6134 -112.4512 +US 85390 Wickenburg Arizona AZ Maricopa 013 33.8944 -112.8603 +US 85392 Avondale Arizona AZ Maricopa County 013 33.4777 -112.3093 +US 85395 Goodyear Arizona AZ Maricopa County 013 33.479 -112.3947 +US 85396 Buckeye Arizona AZ Maricopa County 013 33.468 -112.4787 +US 85360 Wikieup Arizona AZ Mohave 015 35.7478 -113.8106 +US 86021 Colorado City Arizona AZ Mohave 015 36.9763 -112.9524 +US 86401 Kingman Arizona AZ Mohave 015 35.1328 -113.7033 +US 86402 Kingman Arizona AZ Mohave 015 35.2632 -114.0637 +US 86403 Lake Havasu City Arizona AZ Mohave 015 34.4814 -114.3483 +US 86404 Lake Havasu City Arizona AZ Mohave 015 34.5575 -114.3307 +US 86405 Lake Havasu City Arizona AZ Mohave 015 35.6053 -113.6427 +US 86406 Lake Havasu City Arizona AZ Mohave 015 34.4228 -114.125 +US 86409 Kingman Arizona AZ Mohave County 015 35.2633 -114.0223 +US 86411 Hackberry Arizona AZ Mohave 015 35.6053 -113.6427 +US 86412 Hualapai Arizona AZ Mohave 015 35.3972 -113.8432 +US 86413 Golden Valley Arizona AZ Mohave 015 35.3002 -114.2215 +US 86426 Fort Mohave Arizona AZ Mohave 015 35.0052 -114.5687 +US 86427 Fort Mohave Arizona AZ Mohave 015 35.0043 -114.5812 +US 86429 Bullhead City Arizona AZ Mohave 015 35.1715 -114.5386 +US 86430 Bullhead City Arizona AZ Mohave 015 35.1473 -114.5433 +US 86431 Chloride Arizona AZ Mohave 015 35.3896 -114.2221 +US 86432 Littlefield Arizona AZ Mohave 015 36.4612 -113.5893 +US 86433 Oatman Arizona AZ Mohave 015 35.0285 -114.3837 +US 86434 Peach Springs Arizona AZ Mohave 015 35.5378 -113.4202 +US 86436 Topock Arizona AZ Mohave 015 34.7784 -114.4817 +US 86437 Valentine Arizona AZ Mohave 015 35.3788 -113.6141 +US 86438 Yucca Arizona AZ Mohave 015 35.6053 -113.6427 +US 86439 Bullhead City Arizona AZ Mohave 015 35.0958 -114.6194 +US 86440 Mohave Valley Arizona AZ Mohave 015 34.8929 -114.5951 +US 86441 Dolan Springs Arizona AZ Mohave 015 35.5692 -114.3777 +US 86442 Bullhead City Arizona AZ Mohave 015 35.106 -114.5947 +US 86443 Temple Bar Marina Arizona AZ Mohave 015 35.2106 -114.1792 +US 86444 Meadview Arizona AZ Mohave 015 35.9822 -114.0775 +US 86445 Willow Beach Arizona AZ Mohave 015 35.7759 -114.5001 +US 86446 Mohave Valley Arizona AZ Mohave 015 34.8499 -114.5917 +US 85901 Show Low Arizona AZ Navajo 017 34.2998 -110 +US 85902 Show Low Arizona AZ Navajo 017 34.2981 -110.0352 +US 85911 Cibecue Arizona AZ Navajo 017 35.2857 -110.2887 +US 85912 White Mountain Lake Arizona AZ Navajo 017 34.2666 -110.2031 +US 85923 Clay Springs Arizona AZ Navajo 017 35.2857 -110.2887 +US 85926 Fort Apache Arizona AZ Navajo 017 34.2012 -110.0106 +US 85928 Heber Arizona AZ Navajo 017 34.41 -110.5883 +US 85929 Lakeside Arizona AZ Navajo 017 34.1662 -109.9869 +US 85933 Overgaard Arizona AZ Navajo 017 34.4086 -110.56 +US 85934 Pinedale Arizona AZ Navajo 017 34.3003 -110.2457 +US 85935 Pinetop Arizona AZ Navajo 017 34.1175 -109.9197 +US 85937 Snowflake Arizona AZ Navajo 017 34.4959 -110.0807 +US 85939 Taylor Arizona AZ Navajo 017 34.439 -110.0858 +US 85941 Whiteriver Arizona AZ Navajo 017 33.8021 -109.9937 +US 85942 Woodruff Arizona AZ Navajo 017 34.6475 -110.0806 +US 86025 Holbrook Arizona AZ Navajo 017 34.9085 -110.1434 +US 86029 Sun Valley Arizona AZ Navajo 017 35.2857 -110.2887 +US 86030 Hotevilla Arizona AZ Navajo 017 36.2111 -110.5661 +US 86031 Indian Wells Arizona AZ Navajo 017 35.2857 -110.2887 +US 86032 Joseph City Arizona AZ Navajo 017 34.9814 -110.3373 +US 86033 Kayenta Arizona AZ Navajo 017 36.6883 -110.2652 +US 86034 Keams Canyon Arizona AZ Navajo 017 35.8082 -110.2845 +US 86039 Kykotsmovi Village Arizona AZ Navajo 017 35.2857 -110.2887 +US 86042 Polacca Arizona AZ Navajo 017 35.8617 -110.3875 +US 86043 Second Mesa Arizona AZ Navajo 017 35.2857 -110.2887 +US 86047 Winslow Arizona AZ Navajo 017 35.1608 -110.5114 +US 86054 Shonto Arizona AZ Navajo 017 36.6159 -110.6477 +US 86510 Pinon Arizona AZ Navajo 017 36.1002 -110.2211 +US 86520 Blue Gap Arizona AZ Navajo 017 35.2857 -110.2887 +US 85321 Ajo Arizona AZ Pima 019 32.2295 -112.6542 +US 85341 Lukeville Arizona AZ Pima 019 31.8737 -112.7845 +US 85601 Arivaca Arizona AZ Pima 019 31.5885 -111.316 +US 85614 Green Valley Arizona AZ Pima 019 31.8543 -111.0003 +US 85619 Mount Lemmon Arizona AZ Pima 019 32.3763 -110.7605 +US 85622 Green Valley Arizona AZ Pima 019 31.8269 -111.0755 +US 85629 Sahuarita Arizona AZ Pima 019 31.9452 -111.0002 +US 85633 Sasabe Arizona AZ Pima 019 31.9701 -111.8907 +US 85634 Sells Arizona AZ Pima 019 32.0315 -112.0065 +US 85639 Topawa Arizona AZ Pima 019 31.9701 -111.8907 +US 85641 Vail Arizona AZ Pima 019 32.0027 -110.7053 +US 85652 Cortaro Arizona AZ Pima 019 32.4201 -111.1132 +US 85653 Marana Arizona AZ Pima 019 32.4047 -111.2736 +US 85654 Rillito Arizona AZ Pima 019 31.9701 -111.8907 +US 85701 Tucson Arizona AZ Pima 019 32.2139 -110.9694 +US 85702 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85703 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85704 Tucson Arizona AZ Pima 019 32.3379 -110.9855 +US 85705 Tucson Arizona AZ Pima 019 32.2691 -110.9845 +US 85706 Tucson Arizona AZ Pima 019 32.1392 -110.9451 +US 85707 Tucson Arizona AZ Pima 019 32.1696 -110.8751 +US 85708 Tucson Arizona AZ Pima 019 32.18 -110.8693 +US 85709 Tucson Arizona AZ Pima 019 32.2008 -110.898 +US 85710 Tucson Arizona AZ Pima 019 32.2138 -110.824 +US 85711 Tucson Arizona AZ Pima 019 32.2127 -110.8829 +US 85712 Tucson Arizona AZ Pima 019 32.25 -110.8869 +US 85713 Tucson Arizona AZ Pima 019 32.1941 -110.9739 +US 85714 Tucson Arizona AZ Pima 019 32.1707 -110.9719 +US 85715 Tucson Arizona AZ Pima 019 32.2519 -110.82 +US 85716 Tucson Arizona AZ Pima 019 32.2468 -110.9222 +US 85717 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85718 Tucson Arizona AZ Pima 019 32.3112 -110.9179 +US 85719 Tucson Arizona AZ Pima 019 32.2474 -110.9491 +US 85720 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85721 Tucson Arizona AZ Pima 019 32.2338 -110.95 +US 85722 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85723 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85724 Tucson Arizona AZ Pima 019 32.2406 -110.9443 +US 85725 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85726 Tucson Arizona AZ Pima 019 32.2027 -110.9453 +US 85728 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85730 Tucson Arizona AZ Pima 019 32.181 -110.819 +US 85731 Tucson Arizona AZ Pima 019 32.088 -110.7082 +US 85732 Tucson Arizona AZ Pima 019 32.0848 -110.7122 +US 85733 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85734 Tucson Arizona AZ Pima 019 32.0651 -110.9353 +US 85735 Tucson Arizona AZ Pima 019 32.093 -111.3472 +US 85736 Tucson Arizona AZ Pima 019 31.9011 -111.3702 +US 85737 Tucson Arizona AZ Pima 019 32.4142 -110.9466 +US 85738 Catalina Arizona AZ Pima 019 31.9701 -111.8907 +US 85739 Tucson Arizona AZ Pima 019 32.465 -110.8922 +US 85740 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85741 Tucson Arizona AZ Pima 019 32.3472 -111.0419 +US 85742 Tucson Arizona AZ Pima 019 32.4076 -111.065 +US 85743 Tucson Arizona AZ Pima 019 32.3366 -111.1771 +US 85744 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85745 Tucson Arizona AZ Pima 019 32.2434 -111.0179 +US 85746 Tucson Arizona AZ Pima 019 32.1422 -111.0506 +US 85747 Tucson Arizona AZ Pima 019 32.0984 -110.7272 +US 85748 Tucson Arizona AZ Pima 019 32.215 -110.7758 +US 85749 Tucson Arizona AZ Pima 019 32.2733 -110.7658 +US 85750 Tucson Arizona AZ Pima 019 32.2974 -110.8404 +US 85751 Tucson Arizona AZ Pima 019 32.162 -110.7147 +US 85752 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85754 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85755 Oro Valley Arizona AZ Pima County 019 32.4738 -110.9553 +US 85756 Tucson Arizona AZ Pima 019 32.0839 -110.9004 5 +US 85757 Tucson Arizona AZ Pima County 019 32.1336 -111.0973 +US 85775 Tucson Arizona AZ Pima 019 31.9701 -111.8907 +US 85777 Tucson Arizona AZ Pima 019 32.0718 -110.8591 +US 85118 Gold Canyon Arizona AZ Pinal 021 33.3284 -111.3502 5 +US 85119 Apache Junction Arizona AZ Pinal 021 33.4001 -111.5028 5 +US 85120 Apache Junction Arizona AZ Pinal 021 33.3931 -111.5768 5 +US 85121 Bapchule Arizona AZ Pinal 021 33.1405 -111.9128 5 +US 85122 Casa Grande Arizona AZ Pinal 021 32.8905 -111.754 +US 85123 Arizona City Arizona AZ Pinal 021 32.7452 -111.6033 +US 85128 Coolidge Arizona AZ Pinal 021 32.9574 -111.5344 +US 85130 Casa Grande Arizona AZ Pinal 021 32.8151 -111.7054 +US 85131 Eloy Arizona AZ Pinal 021 32.7509 -111.5833 +US 85132 Florence Arizona AZ Pinal 021 32.9969 -111.3612 +US 85137 Kearny Arizona AZ Pinal 021 33.0594 -110.9123 +US 85138 Maricopa Arizona AZ Pinal County 021 33.0073 -111.9324 +US 85139 Maricopa Arizona AZ Pinal 021 32.9576 -112.0534 +US 85140 Queen Creek Arizona AZ Pinal County 021 33.2286 -111.5322 +US 85141 Picacho Arizona AZ Pinal 021 32.6686 -111.4549 5 +US 85143 Queen Creek Arizona AZ Pinal County 021 33.1598 -111.5618 +US 85145 Red Rock Arizona AZ Pinal 021 32.58 -111.341 +US 85147 Sacaton Arizona AZ Pinal 021 33.1234 -111.7384 5 +US 85172 Stanfield Arizona AZ Pinal 021 32.8823 -111.966 +US 85173 Superior Arizona AZ Pinal 021 33.2887 -111.0985 +US 85179 Florence Arizona AZ Pinal 021 32.9837 -111.326 +US 85193 Casa Grande Arizona AZ Pinal County 021 32.8554 -111.7973 +US 85194 Casa Grande Arizona AZ Pinal County 021 32.8984 -111.6261 +US 85217 Apache Junction Arizona AZ Pinal 021 33.3934 -111.479 +US 85218 Apache Junction Arizona AZ Pinal 021 33.3656 -111.4487 +US 85219 Apache Junction Arizona AZ Pinal 021 33.3616 -111.2795 +US 85220 Apache Junction Arizona AZ Pinal 021 33.4152 -111.5718 +US 85221 Bapchule Arizona AZ Pinal 021 33.2257 -111.476 +US 85241 Picacho Arizona AZ Pinal 021 32.6896 -111.531 +US 85247 Sacaton Arizona AZ Pinal 021 33.0977 -111.7752 +US 85278 Apache Junction Arizona AZ Pinal 021 32.9837 -111.326 +US 85291 Valley Farms Arizona AZ Pinal 021 33.0135 -111.4298 +US 85618 Mammoth Arizona AZ Pinal 021 32.7239 -110.644 +US 85623 Oracle Arizona AZ Pinal 021 32.6005 -110.7961 +US 85631 San Manuel Arizona AZ Pinal 021 32.6209 -110.5992 +US 85658 Marana Arizona AZ Pinal County 021 32.4305 -111.1459 +US 85611 Elgin Arizona AZ Santa Cruz 023 31.6097 -110.5636 +US 85621 Nogales Arizona AZ Santa Cruz 023 31.377 -110.9435 +US 85624 Patagonia Arizona AZ Santa Cruz 023 31.5353 -110.6968 +US 85628 Nogales Arizona AZ Santa Cruz 023 31.532 -110.9093 +US 85637 Sonoita Arizona AZ Santa Cruz 023 31.6731 -110.6188 +US 85640 Tumacacori Arizona AZ Santa Cruz 023 31.6162 -111.0513 +US 85645 Amado Arizona AZ Santa Cruz 023 31.6723 -111.0986 +US 85646 Tubac Arizona AZ Santa Cruz 023 31.5938 -111.0662 +US 85648 Rio Rico Arizona AZ Santa Cruz 023 31.5084 -111.0757 +US 85662 Nogales Arizona AZ Santa Cruz 023 31.532 -110.9093 +US 85324 Black Canyon City Arizona AZ Yavapai 025 34.0755 -112.134 +US 85332 Congress Arizona AZ Yavapai 025 34.1764 -112.768 +US 85362 Yarnell Arizona AZ Yavapai 025 34.2508 -112.7567 +US 86301 Prescott Arizona AZ Yavapai 025 34.5917 -112.4265 +US 86302 Prescott Arizona AZ Yavapai 025 34.5749 -112.4915 +US 86303 Prescott Arizona AZ Yavapai 025 34.4958 -112.3783 +US 86304 Prescott Arizona AZ Yavapai 025 34.5967 -112.4907 +US 86305 Prescott Arizona AZ Yavapai 025 34.8185 -112.9584 +US 86312 Prescott Valley Arizona AZ Yavapai 025 34.6683 -112.3078 +US 86313 Prescott Arizona AZ Yavapai 025 34.7067 -112.3977 +US 86314 Prescott Valley Arizona AZ Yavapai 025 34.6019 -112.3264 +US 86315 Prescott Valley Arizona AZ Yavapai 025 34.7055 -112.2639 5 +US 86320 Ash Fork Arizona AZ Yavapai 025 35.215 -112.5027 +US 86321 Bagdad Arizona AZ Yavapai 025 34.5785 -113.1755 +US 86322 Camp Verde Arizona AZ Yavapai 025 34.5697 -111.8551 +US 86323 Chino Valley Arizona AZ Yavapai 025 34.7757 -112.4731 +US 86324 Clarkdale Arizona AZ Yavapai 025 34.6595 -112.1322 +US 86325 Cornville Arizona AZ Yavapai 025 34.7256 -111.9086 +US 86326 Cottonwood Arizona AZ Yavapai 025 34.7055 -112.0091 +US 86327 Dewey Arizona AZ Yavapai 025 34.5368 -112.2567 +US 86329 Humboldt Arizona AZ Yavapai 025 34.5189 -112.2523 +US 86330 Iron Springs Arizona AZ Yavapai 025 34.7067 -112.3977 +US 86331 Jerome Arizona AZ Yavapai 025 34.7486 -112.1086 +US 86332 Kirkland Arizona AZ Yavapai 025 34.4541 -112.8966 +US 86333 Mayer Arizona AZ Yavapai 025 34.3655 -112.1296 +US 86334 Paulden Arizona AZ Yavapai 025 35.0313 -112.5441 +US 86335 Rimrock Arizona AZ Yavapai 025 34.638 -111.7842 +US 86337 Seligman Arizona AZ Yavapai 025 35.3212 -112.9548 +US 86338 Skull Valley Arizona AZ Yavapai 025 34.7067 -112.3977 +US 86340 Sedona Arizona AZ Yavapai 025 34.7067 -112.3977 +US 86341 Sedona Arizona AZ Yavapai 025 34.7766 -111.7679 +US 86342 Lake Montezuma Arizona AZ Yavapai 025 34.6417 -111.7872 +US 86343 Crown King Arizona AZ Yavapai 025 34.2241 -112.334 +US 85333 Dateland Arizona AZ Yuma 027 32.8679 -113.4631 +US 85336 Gadsden Arizona AZ Yuma 027 32.5302 -114.7743 +US 85347 Roll Arizona AZ Yuma 027 32.7526 -113.7987 +US 85349 San Luis Arizona AZ Yuma 027 32.5401 -114.755 +US 85350 Somerton Arizona AZ Yuma 027 32.5634 -114.7127 +US 85352 Tacna Arizona AZ Yuma 027 32.6934 -113.9763 +US 85356 Wellton Arizona AZ Yuma 027 32.6935 -114.1561 +US 85364 Yuma Arizona AZ Yuma 027 32.7015 -114.6424 +US 85365 Yuma Arizona AZ Yuma 027 32.7093 -114.4905 +US 85366 Yuma Arizona AZ Yuma 027 32.61 -114.6312 +US 85367 Yuma Arizona AZ Yuma 027 32.6566 -114.4042 +US 85369 Yuma Arizona AZ Yuma 027 32.7516 -114.0749 +US 94501 Alameda California CA Alameda 001 37.7706 -122.2648 +US 94502 Alameda California CA Alameda 001 37.7351 -122.2431 +US 94536 Fremont California CA Alameda 001 37.5605 -121.9999 +US 94537 Fremont California CA Alameda 001 37.6802 -121.9215 +US 94538 Fremont California CA Alameda 001 37.5308 -121.9712 +US 94539 Fremont California CA Alameda 001 37.5176 -121.9287 +US 94540 Hayward California CA Alameda 001 37.6802 -121.9215 +US 94541 Hayward California CA Alameda 001 37.674 -122.0894 +US 94542 Hayward California CA Alameda 001 37.6586 -122.0472 +US 94543 Hayward California CA Alameda 001 37.6802 -121.9215 +US 94544 Hayward California CA Alameda 001 37.6374 -122.067 +US 94545 Hayward California CA Alameda 001 37.6332 -122.0971 +US 94546 Castro Valley California CA Alameda 001 37.7015 -122.0782 +US 94550 Livermore California CA Alameda 001 37.683 -121.763 +US 94551 Livermore California CA Alameda 001 37.7526 -121.77 +US 94552 Castro Valley California CA Alameda 001 37.7131 -122.0381 +US 94555 Fremont California CA Alameda 001 37.5735 -122.0469 +US 94557 Hayward California CA Alameda 001 37.6802 -121.9215 +US 94560 Newark California CA Alameda 001 37.5368 -122.032 +US 94566 Pleasanton California CA Alameda 001 37.6658 -121.8755 +US 94568 Dublin California CA Alameda 001 37.7166 -121.9226 +US 94577 San Leandro California CA Alameda 001 37.7205 -122.1587 +US 94578 San Leandro California CA Alameda 001 37.7024 -122.124 +US 94579 San Leandro California CA Alameda 001 37.6892 -122.1507 +US 94580 San Lorenzo California CA Alameda 001 37.6787 -122.1295 +US 94586 Sunol California CA Alameda 001 37.6094 -121.8986 +US 94587 Union City California CA Alameda 001 37.5895 -122.0497 +US 94588 Pleasanton California CA Alameda 001 37.6873 -121.8957 +US 94601 Oakland California CA Alameda 001 37.7806 -122.2166 +US 94602 Oakland California CA Alameda 001 37.8011 -122.2104 +US 94603 Oakland California CA Alameda 001 37.7402 -122.171 +US 94604 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94605 Oakland California CA Alameda 001 37.7641 -122.1633 +US 94606 Oakland California CA Alameda 001 37.7957 -122.2429 +US 94607 Oakland California CA Alameda 001 37.8071 -122.2851 +US 94608 Emeryville California CA Alameda 001 37.8365 -122.2804 +US 94609 Oakland California CA Alameda 001 37.8361 -122.2637 +US 94610 Oakland California CA Alameda 001 37.8126 -122.2443 +US 94611 Oakland California CA Alameda 001 37.8471 -122.2223 +US 94612 Oakland California CA Alameda 001 37.8085 -122.2668 +US 94613 Oakland California CA Alameda 001 37.7811 -122.1866 +US 94614 Oakland California CA Alameda 001 37.7277 -122.2046 +US 94615 Oakland California CA Alameda 001 37.8067 -122.3004 +US 94616 Oakland California CA Alameda County 001 37.8044 -122.2698 +US 94617 Oakland California CA Alameda 001 37.8078 -122.2717 +US 94618 Oakland California CA Alameda 001 37.8431 -122.2402 +US 94619 Oakland California CA Alameda 001 37.7878 -122.1884 +US 94620 Piedmont California CA Alameda 001 37.6802 -121.9215 +US 94621 Oakland California CA Alameda 001 37.7589 -122.1853 +US 94622 Oakland California CA Alameda County 001 37.799 -122.2337 +US 94623 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94624 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94625 Oakland California CA Alameda 001 37.8039 -122.3197 +US 94626 Oakland California CA Alameda 001 37.8193 -122.3031 +US 94627 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94643 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94649 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94650 Oakland California CA Alameda County 001 37.8044 -122.2698 +US 94659 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94660 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94661 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94662 Emeryville California CA Alameda 001 37.6802 -121.9215 +US 94666 Oakland California CA Alameda 001 37.6802 -121.9215 +US 94701 Berkeley California CA Alameda 001 37.8606 -122.2967 +US 94702 Berkeley California CA Alameda 001 37.8656 -122.2851 +US 94703 Berkeley California CA Alameda 001 37.863 -122.2749 +US 94704 Berkeley California CA Alameda 001 37.8664 -122.257 +US 94705 Berkeley California CA Alameda 001 37.8571 -122.25 +US 94706 Albany California CA Alameda 001 37.89 -122.2954 +US 94707 Berkeley California CA Alameda 001 37.8927 -122.2761 +US 94708 Berkeley California CA Alameda 001 37.8918 -122.2604 +US 94709 Berkeley California CA Alameda 001 37.8784 -122.2655 +US 94710 Berkeley California CA Alameda 001 37.8696 -122.2959 +US 94712 Berkeley California CA Alameda 001 37.6802 -121.9215 +US 94720 Berkeley California CA Alameda 001 37.8738 -122.2549 +US 95646 Kirkwood California CA Alpine 003 38.6918 -120.0736 +US 96120 Markleeville California CA Alpine 003 38.7713 -119.8327 +US 95601 Amador City California CA Amador 005 38.4194 -120.823 +US 95629 Fiddletown California CA Amador 005 38.5234 -120.6763 +US 95640 Ione California CA Amador 005 38.3324 -120.9418 +US 95642 Jackson California CA Amador 005 38.3545 -120.7573 +US 95644 Kit Carson California CA Amador 005 38.456 -120.5294 +US 95654 Martell California CA Amador 005 38.3515 -120.7752 +US 95665 Pine Grove California CA Amador 005 38.4049 -120.6544 +US 95666 Pioneer California CA Amador 005 38.5067 -120.423 +US 95669 Plymouth California CA Amador 005 38.4916 -120.8819 +US 95675 River Pines California CA Amador 005 38.5463 -120.743 +US 95685 Sutter Creek California CA Amador 005 38.4175 -120.7951 +US 95689 Volcano California CA Amador 005 38.4765 -120.6017 +US 95699 Drytown California CA Amador 005 38.4411 -120.8533 +US 95914 Bangor California CA Butte 007 39.423 -121.3653 +US 95916 Berry Creek California CA Butte 007 39.6776 -121.3689 +US 95917 Biggs California CA Butte 007 39.4162 -121.7189 +US 95926 Chico California CA Butte 007 39.7458 -121.8444 +US 95927 Chico California CA Butte 007 39.8117 -121.9398 +US 95928 Chico California CA Butte 007 39.7224 -121.8113 +US 95929 Chico California CA Butte 007 39.7301 -121.8414 +US 95930 Clipper Mills California CA Butte 007 39.5302 -121.1675 +US 95938 Durham California CA Butte 007 39.633 -121.7886 +US 95940 Feather Falls California CA Butte 007 39.622 -121.2669 +US 95941 Forbestown California CA Butte 007 39.521 -121.2423 +US 95942 Forest Ranch California CA Butte 007 39.9917 -121.5827 +US 95948 Gridley California CA Butte 007 39.3532 -121.7137 +US 95954 Magalia California CA Butte 007 39.8912 -121.58 +US 95958 Nelson California CA Butte 007 39.5522 -121.7644 +US 95965 Oroville California CA Butte 007 39.6054 -121.5751 +US 95966 Oroville California CA Butte 007 39.4877 -121.4698 +US 95967 Paradise California CA Butte 007 39.7155 -121.6551 +US 95968 Palermo California CA Butte 007 39.4361 -121.5454 +US 95969 Paradise California CA Butte 007 39.7555 -121.6069 +US 95973 Chico California CA Butte 007 39.8032 -121.8673 +US 95974 Richvale California CA Butte 007 39.4959 -121.748 +US 95976 Chico California CA Butte 007 39.7346 -121.8331 +US 95978 Stirling City California CA Butte 007 39.9077 -121.5269 +US 95221 Altaville California CA Calaveras 009 38.0838 -120.5608 +US 95222 Angels Camp California CA Calaveras 009 38.071 -120.5722 +US 95223 Arnold California CA Calaveras 009 38.3086 -120.268 +US 95224 Avery California CA Calaveras 009 38.2044 -120.3688 +US 95225 Burson California CA Calaveras 009 38.1838 -120.8894 +US 95226 Campo Seco California CA Calaveras 009 38.2279 -120.8151 +US 95228 Copperopolis California CA Calaveras 009 37.944 -120.6423 +US 95229 Douglas Flat California CA Calaveras 009 38.1144 -120.4538 +US 95232 Glencoe California CA Calaveras 009 38.3554 -120.5778 +US 95233 Hathaway Pines California CA Calaveras 009 38.1919 -120.3644 +US 95245 Mokelumne Hill California CA Calaveras 009 38.3152 -120.5591 +US 95246 Mountain Ranch California CA Calaveras 009 38.2328 -120.4994 +US 95247 Murphys California CA Calaveras 009 38.1345 -120.4516 +US 95248 Rail Road Flat California CA Calaveras 009 38.3405 -120.5161 +US 95249 San Andreas California CA Calaveras 009 38.1904 -120.6441 +US 95250 Sheep Ranch California CA Calaveras 009 38.2094 -120.463 +US 95251 Vallecito California CA Calaveras 009 38.1013 -120.4676 +US 95252 Valley Springs California CA Calaveras 009 38.162 -120.8572 +US 95254 Wallace California CA Calaveras 009 38.1983 -120.9793 +US 95255 West Point California CA Calaveras 009 38.4197 -120.4759 +US 95257 Wilseyville California CA Calaveras 009 38.3793 -120.4627 +US 95912 Arbuckle California CA Colusa 011 39.0138 -122.0274 +US 95931 College City California CA Colusa 011 39.0058 -122.0083 +US 95932 Colusa California CA Colusa 011 39.2345 -122.0277 +US 95950 Grimes California CA Colusa 011 39.0744 -121.8927 +US 95955 Maxwell California CA Colusa 011 39.3163 -122.1849 +US 95970 Princeton California CA Colusa 011 39.4168 -122.0519 +US 95979 Stonyford California CA Colusa 011 39.3176 -122.5393 +US 95987 Williams California CA Colusa 011 39.1337 -122.2162 +US 94505 Discovery Bay California CA Contra Costa County 013 37.8989 -121.6054 +US 94506 Danville California CA Contra Costa 013 37.8321 -121.9167 +US 94507 Alamo California CA Contra Costa 013 37.8537 -122.0229 +US 94509 Antioch California CA Contra Costa 013 37.9939 -121.8089 +US 94511 Bethel Island California CA Contra Costa 013 38.0266 -121.6425 +US 94513 Brentwood California CA Contra Costa 013 37.9324 -121.6894 +US 94514 Byron California CA Contra Costa 013 37.8254 -121.6236 +US 94516 Canyon California CA Contra Costa 013 37.8339 -122.165 +US 94517 Clayton California CA Contra Costa 013 37.9154 -121.91 +US 94518 Concord California CA Contra Costa 013 37.9504 -122.0263 +US 94519 Concord California CA Contra Costa 013 37.9841 -122.0119 +US 94520 Concord California CA Contra Costa 013 37.9823 -122.0362 +US 94521 Concord California CA Contra Costa 013 37.9575 -121.975 +US 94522 Concord California CA Contra Costa 013 37.7772 -121.9554 +US 94523 Pleasant Hill California CA Contra Costa 013 37.954 -122.0737 +US 94524 Concord California CA Contra Costa 013 37.7772 -121.9554 +US 94525 Crockett California CA Contra Costa 013 38.0519 -122.2177 +US 94526 Danville California CA Contra Costa 013 37.814 -121.966 +US 94527 Concord California CA Contra Costa 013 37.9535 -121.9578 +US 94528 Diablo California CA Contra Costa 013 37.8387 -121.9667 +US 94529 Concord California CA Contra Costa 013 37.7772 -121.9554 +US 94530 El Cerrito California CA Contra Costa 013 37.9156 -122.2985 +US 94531 Antioch California CA Contra Costa 013 37.9658 -121.7758 +US 94547 Hercules California CA Contra Costa 013 38.0066 -122.2637 +US 94548 Knightsen California CA Contra Costa 013 37.9726 -121.6652 +US 94549 Lafayette California CA Contra Costa 013 37.8961 -122.1119 +US 94553 Martinez California CA Contra Costa 013 37.9864 -122.135 +US 94556 Moraga California CA Contra Costa 013 37.8437 -122.1242 +US 94561 Oakley California CA Contra Costa 013 37.994 -121.7036 +US 94563 Orinda California CA Contra Costa 013 37.8787 -122.1728 +US 94564 Pinole California CA Contra Costa 013 37.9969 -122.2875 +US 94565 Pittsburg California CA Contra Costa 013 38.0031 -121.9172 +US 94569 Port Costa California CA Contra Costa 013 38.046 -122.1866 +US 94570 Moraga California CA Contra Costa 013 37.7772 -121.9554 +US 94572 Rodeo California CA Contra Costa 013 38.0307 -122.2581 +US 94575 Moraga California CA Contra Costa 013 37.7772 -121.9554 +US 94582 San Ramon California CA Contra Costa County 013 37.7636 -121.9155 +US 94583 San Ramon California CA Contra Costa 013 37.7562 -121.9522 +US 94595 Walnut Creek California CA Contra Costa 013 37.8753 -122.0703 +US 94596 Walnut Creek California CA Contra Costa 013 37.9053 -122.0549 +US 94597 Walnut Creek California CA Contra Costa 013 37.9182 -122.0717 6 +US 94598 Walnut Creek California CA Contra Costa 013 37.9194 -122.0259 +US 94801 Richmond California CA Contra Costa 013 37.94 -122.362 +US 94802 Richmond California CA Contra Costa 013 37.7772 -121.9554 +US 94803 El Sobrante California CA Contra Costa 013 37.9693 -122.2901 +US 94804 Richmond California CA Contra Costa 013 37.9265 -122.3342 +US 94805 Richmond California CA Contra Costa 013 37.9417 -122.3238 +US 94806 San Pablo California CA Contra Costa 013 37.9724 -122.3369 +US 94807 Richmond California CA Contra Costa 013 37.7772 -121.9554 +US 94808 Richmond California CA Contra Costa 013 37.7772 -121.9554 +US 94820 El Sobrante California CA Contra Costa 013 37.7772 -121.9554 +US 94850 Richmond California CA Contra Costa 013 37.7772 -121.9554 +US 94875 Richmond California CA Contra Costa County 013 37.9359 -122.3469 +US 95531 Crescent City California CA Del Norte 015 41.7817 -124.1332 +US 95532 Crescent City California CA Del Norte 015 41.7561 -124.2005 +US 95538 Fort Dick California CA Del Norte 015 41.8382 -124.166 +US 95543 Gasquet California CA Del Norte 015 41.9056 -123.831 +US 95548 Klamath California CA Del Norte 015 41.5804 -124.0387 +US 95567 Smith River California CA Del Norte 015 41.9404 -124.1587 +US 95613 Coloma California CA El Dorado 017 38.8 -120.8891 +US 95614 Cool California CA El Dorado 017 38.8923 -120.9802 +US 95619 Diamond Springs California CA El Dorado 017 38.6865 -120.8145 +US 95623 El Dorado California CA El Dorado 017 38.633 -120.8498 +US 95633 Garden Valley California CA El Dorado 017 38.8665 -120.8567 +US 95634 Georgetown California CA El Dorado 017 38.9185 -120.7599 +US 95635 Greenwood California CA El Dorado 017 38.9143 -120.9001 +US 95636 Grizzly Flats California CA El Dorado 017 38.6489 -120.5098 +US 95643 Kelsey California CA El Dorado County 017 38.7996 -120.8176 +US 95651 Lotus California CA El Dorado 017 38.8278 -120.9238 +US 95656 Mount Aukum California CA El Dorado 017 38.55 -120.7304 +US 95664 Pilot Hill California CA El Dorado 017 38.8135 -121.0308 +US 95667 Placerville California CA El Dorado 017 38.7195 -120.8046 +US 95672 Rescue California CA El Dorado 017 38.7194 -120.9945 +US 95682 Shingle Springs California CA El Dorado 017 38.6465 -120.9641 +US 95684 Somerset California CA El Dorado 017 38.5953 -120.5949 +US 95709 Camino California CA El Dorado 017 38.747 -120.6743 +US 95720 Kyburz California CA El Dorado 017 38.7825 -120.2569 +US 95721 Echo Lake California CA El Dorado 017 38.8152 -120.0721 +US 95726 Pollock Pines California CA El Dorado 017 38.7708 -120.5427 +US 95735 Twin Bridges California CA El Dorado 017 38.8092 -120.1242 +US 95762 El Dorado Hills California CA El Dorado 017 38.685 -121.068 +US 96142 Tahoma California CA El Dorado 017 39.0644 -120.1357 +US 96150 South Lake Tahoe California CA El Dorado 017 38.917 -119.9865 +US 96151 South Lake Tahoe California CA El Dorado 017 38.9039 -119.995 +US 96152 South Lake Tahoe California CA El Dorado 017 38.9271 -119.999 +US 96153 South Lake Tahoe California CA El Dorado County 017 38.9333 -119.9834 +US 96154 South Lake Tahoe California CA El Dorado 017 38.8753 -120.0188 +US 96155 South Lake Tahoe California CA El Dorado 017 38.8449 -120.043 +US 96156 South Lake Tahoe California CA El Dorado 017 38.9352 -119.9676 +US 96157 South Lake Tahoe California CA El Dorado 017 38.9344 -119.9767 +US 96158 South Lake Tahoe California CA El Dorado 017 38.8981 -119.9984 +US 92631 Brea California CA Fresno County 019 33.8798 -117.8917 +US 93210 Coalinga California CA Fresno 019 36.1624 -120.3489 +US 93234 Huron California CA Fresno 019 36.2371 -120.102 +US 93242 Laton California CA Fresno 019 36.4378 -119.7156 +US 93602 Auberry California CA Fresno 019 37.0726 -119.4572 +US 93605 Big Creek California CA Fresno 019 37.2032 -119.2492 +US 93606 Biola California CA Fresno 019 36.8032 -120.0185 +US 93607 Burrel California CA Fresno 019 36.5898 -119.8994 +US 93608 Cantua Creek California CA Fresno 019 36.4921 -120.3353 +US 93609 Caruthers California CA Fresno 019 36.5358 -119.8446 +US 93611 Clovis California CA Fresno 019 36.8253 -119.6802 +US 93612 Clovis California CA Fresno 019 36.8149 -119.7106 +US 93613 Clovis California CA Fresno 019 37.0365 -119.5117 +US 93616 Del Rey California CA Fresno 019 36.6543 -119.5929 +US 93621 Dunlap California CA Fresno 019 36.7446 -119.0899 +US 93622 Firebaugh California CA Fresno 019 36.8651 -120.47 +US 93624 Five Points California CA Fresno 019 36.3386 -120.1118 +US 93625 Fowler California CA Fresno 019 36.6282 -119.671 +US 93626 Friant California CA Fresno 019 37.0422 -119.6807 +US 93627 Helm California CA Fresno 019 36.4992 -120.0936 +US 93628 Hume California CA Fresno 019 36.7515 -118.9575 +US 93629 Huntington Lake California CA Fresno County 019 37.2315 -119.2351 +US 93630 Kerman California CA Fresno 019 36.7306 -120.0724 +US 93631 Kingsburg California CA Fresno 019 36.508 -119.5433 +US 93634 Lakeshore California CA Fresno 019 37.1673 -119.2436 +US 93640 Mendota California CA Fresno 019 36.7424 -120.4093 +US 93641 Miramonte California CA Fresno 019 36.6894 -119.0477 +US 93642 Mono Hot Springs California CA Fresno 019 36.7464 -119.6397 +US 93646 Orange Cove California CA Fresno 019 36.6255 -119.3204 5 +US 93648 Parlier California CA Fresno 019 36.6103 -119.5375 +US 93649 Piedra California CA Fresno 019 36.8417 -119.3496 +US 93650 Fresno California CA Fresno 019 36.8411 -119.801 +US 93651 Prather California CA Fresno 019 36.9938 -119.5268 +US 93652 Raisin California CA Fresno 019 36.5989 -119.9032 +US 93654 Reedley California CA Fresno 019 36.6044 -119.4378 +US 93656 Riverdale California CA Fresno 019 36.4295 -119.872 +US 93657 Sanger California CA Fresno 019 36.7243 -119.5478 +US 93660 San Joaquin California CA Fresno 019 36.6059 -120.1889 +US 93662 Selma California CA Fresno 019 36.5695 -119.617 +US 93664 Shaver Lake California CA Fresno 019 37.1397 -119.273 +US 93667 Tollhouse California CA Fresno 019 36.9943 -119.3914 +US 93668 Tranquillity California CA Fresno 019 36.6584 -120.2617 +US 93675 Squaw Valley California CA Fresno 019 36.7071 -119.1814 +US 93701 Fresno California CA Fresno 019 36.7487 -119.7867 +US 93702 Fresno California CA Fresno 019 36.74 -119.7532 +US 93703 Fresno California CA Fresno 019 36.7684 -119.7594 +US 93704 Fresno California CA Fresno 019 36.7991 -119.8016 +US 93705 Fresno California CA Fresno 019 36.7863 -119.8286 +US 93706 Fresno California CA Fresno 019 36.6486 -119.9987 +US 93707 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93708 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93709 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93710 Fresno California CA Fresno 019 36.8236 -119.7621 +US 93711 Fresno California CA Fresno 019 36.8303 -119.8319 +US 93712 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93714 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93715 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93716 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93717 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93718 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93720 Fresno California CA Fresno 019 36.8579 -119.7655 +US 93721 Fresno California CA Fresno 019 36.7377 -119.7843 +US 93722 Fresno California CA Fresno 019 36.7918 -119.8801 +US 93723 Fresno California CA Fresno County 019 36.7863 -119.9532 +US 93724 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93725 Fresno California CA Fresno 019 36.6207 -119.7308 +US 93726 Fresno California CA Fresno 019 36.7949 -119.7604 +US 93727 Fresno California CA Fresno 019 36.7528 -119.7061 +US 93728 Fresno California CA Fresno 019 36.7581 -119.8113 +US 93729 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93730 Fresno California CA Fresno County 019 36.8878 -119.7589 +US 93740 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93741 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93744 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93745 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93747 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93750 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93755 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93759 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93760 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93761 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93762 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93764 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93765 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93771 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93772 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93773 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93774 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93775 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93776 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93777 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93778 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93779 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93780 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93782 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93784 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93786 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93790 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93791 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93792 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93793 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93794 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93844 Fresno California CA Fresno 019 36.7464 -119.6397 +US 93888 Fresno California CA Fresno 019 36.7464 -119.6397 +US 95913 Artois California CA Glenn 021 39.6197 -122.1927 +US 95920 Butte City California CA Glenn 021 39.4568 -121.9515 +US 95939 Elk Creek California CA Glenn 021 39.5306 -122.6124 +US 95943 Glenn California CA Glenn 021 39.6069 -122.0384 +US 95951 Hamilton City California CA Glenn 021 39.7386 -122.0085 +US 95963 Orland California CA Glenn 021 39.7314 -122.2534 +US 95988 Willows California CA Glenn 021 39.5353 -122.2597 +US 95501 Eureka California CA Humboldt 023 40.7938 -124.1573 +US 95502 Eureka California CA Humboldt 023 40.7965 -124.1737 +US 95503 Eureka California CA Humboldt 023 40.7592 -124.1593 +US 95511 Alderpoint California CA Humboldt 023 40.1676 -123.6192 +US 95514 Blocksburg California CA Humboldt 023 40.2987 -123.6576 +US 95518 Arcata California CA Humboldt 023 40.8685 -124.0856 +US 95519 Mckinleyville California CA Humboldt 023 40.9465 -124.0834 +US 95521 Arcata California CA Humboldt 023 40.8742 -124.0765 +US 95524 Bayside California CA Humboldt 023 40.8266 -124.0552 +US 95525 Blue Lake California CA Humboldt 023 40.9374 -123.8913 +US 95526 Bridgeville California CA Humboldt 023 40.4298 -123.5794 +US 95528 Carlotta California CA Humboldt 023 40.507 -123.9743 +US 95534 Cutten California CA Humboldt 023 40.7965 -124.1737 +US 95536 Ferndale California CA Humboldt 023 40.5259 -124.2514 +US 95537 Fields Landing California CA Humboldt 023 40.7268 -124.2174 +US 95540 Fortuna California CA Humboldt 023 40.5835 -124.1473 +US 95542 Garberville California CA Humboldt 023 40.0864 -123.7991 +US 95545 Honeydew California CA Humboldt 023 40.2421 -124.0972 +US 95546 Hoopa California CA Humboldt 023 41.1806 -123.718 +US 95547 Hydesville California CA Humboldt 023 40.5485 -124.0847 +US 95549 Kneeland California CA Humboldt 023 40.6405 -123.8826 +US 95550 Korbel California CA Humboldt 023 40.7775 -123.8486 +US 95551 Loleta California CA Humboldt 023 40.6589 -124.2251 +US 95553 Miranda California CA Humboldt 023 40.2397 -123.8077 +US 95554 Myers Flat California CA Humboldt 023 40.2841 -123.7945 +US 95555 Orick California CA Humboldt 023 41.3596 -124.0317 +US 95556 Orleans California CA Humboldt 023 41.3115 -123.5399 +US 95558 Petrolia California CA Humboldt 023 40.2868 -124.2271 +US 95559 Phillipsville California CA Humboldt 023 40.2008 -123.7735 +US 95560 Redway California CA Humboldt 023 40.1225 -123.8604 +US 95562 Rio Dell California CA Humboldt 023 40.4987 -124.1102 +US 95564 Samoa California CA Humboldt 023 40.8037 -124.1936 +US 95565 Scotia California CA Humboldt 023 40.4583 -124.0517 +US 95569 Redcrest California CA Humboldt 023 40.3437 -123.9095 +US 95570 Trinidad California CA Humboldt 023 41.0966 -124.1153 +US 95571 Weott California CA Humboldt 023 40.3224 -123.9024 +US 95573 Willow Creek California CA Humboldt 023 40.9484 -123.6276 +US 95589 Whitethorn California CA Humboldt 023 40.0231 -124.0139 +US 92222 Bard California CA Imperial 025 32.7822 -114.5619 +US 92227 Brawley California CA Imperial 025 32.9792 -115.5296 +US 92231 Calexico California CA Imperial 025 32.6832 -115.5028 +US 92232 Calexico California CA Imperial 025 33.0262 -115.2846 +US 92233 Calipatria California CA Imperial 025 33.167 -115.5114 +US 92243 El Centro California CA Imperial 025 32.7893 -115.5665 +US 92244 El Centro California CA Imperial 025 32.7948 -115.6927 +US 92249 Heber California CA Imperial 025 32.7218 -115.4383 +US 92250 Holtville California CA Imperial 025 32.8104 -115.3775 +US 92251 Imperial California CA Imperial 025 32.847 -115.573 +US 92257 Niland California CA Imperial 025 33.3784 -115.6965 +US 92259 Ocotillo California CA Imperial 025 32.981 -115.8234 +US 92266 Palo Verde California CA Imperial 025 33.3696 -114.7355 +US 92273 Seeley California CA Imperial 025 32.7941 -115.6948 +US 92275 Salton City California CA Imperial 025 33.3092 -115.9578 +US 92281 Westmorland California CA Imperial 025 33.038 -115.5914 +US 92283 Winterhaven California CA Imperial 025 32.9818 -114.6854 +US 92331 Fontana California CA Imperial County 025 34.0922 -117.4612 +US 92328 Death Valley California CA Inyo 027 36.4672 -116.8937 +US 92384 Shoshone California CA Inyo 027 35.8992 -116.2645 +US 92389 Tecopa California CA Inyo 027 35.9021 -116.1544 +US 93513 Big Pine California CA Inyo 027 37.1679 -118.2916 +US 93514 Bishop California CA Inyo 027 37.5014 -118.4048 +US 93515 Bishop California CA Inyo 027 36.626 -117.2186 +US 93522 Darwin California CA Inyo 027 36.2948 -117.5957 +US 93526 Independence California CA Inyo 027 36.8396 -118.2048 +US 93530 Keeler California CA Inyo 027 36.4886 -117.8741 +US 93542 Little Lake California CA Inyo 027 36.626 -117.2186 +US 93545 Lone Pine California CA Inyo 027 36.5798 -118.0578 +US 93549 Olancha California CA Inyo 027 36.23 -117.9552 +US 93203 Arvin California CA Kern 029 35.1966 -118.8336 +US 93205 Bodfish California CA Kern 029 35.587 -118.4847 +US 93206 Buttonwillow California CA Kern 029 35.4033 -119.4659 +US 93215 Delano California CA Kern 029 35.7715 -119.2459 +US 93216 Delano California CA Kern 029 35.2944 -118.9052 +US 93220 Edison California CA Kern 029 35.357 -118.8101 +US 93222 Frazier Park California CA Kern 029 35.2944 -118.9052 +US 93224 Fellows California CA Kern 029 35.2026 -119.5648 +US 93225 Frazier Park California CA Kern 029 34.8265 -119.0355 +US 93226 Glennville California CA Kern 029 35.7377 -118.7169 +US 93238 Kernville California CA Kern 029 35.755 -118.4047 +US 93240 Lake Isabella California CA Kern 029 35.669 -118.457 +US 93241 Lamont California CA Kern 029 35.2571 -118.9124 +US 93243 Lebec California CA Kern 029 34.8818 -118.8566 +US 93249 Lost Hills California CA Kern 029 35.6131 -119.7216 +US 93250 Mc Farland California CA Kern 029 35.6758 -119.2272 +US 93251 Mc Kittrick California CA Kern 029 35.3031 -119.6366 +US 93252 Maricopa California CA Kern 029 35.0384 -119.4077 +US 93255 Onyx California CA Kern 029 35.6824 -118.0959 +US 93263 Shafter California CA Kern 029 35.497 -119.2801 +US 93268 Taft California CA Kern 029 35.1482 -119.4557 +US 93276 Tupman California CA Kern 029 35.2992 -119.3584 +US 93280 Wasco California CA Kern 029 35.648 -119.4487 +US 93283 Weldon California CA Kern 029 35.6391 -118.2859 +US 93285 Wofford Heights California CA Kern 029 35.7246 -118.4559 +US 93287 Woody California CA Kern 029 35.7068 -118.8439 +US 93301 Bakersfield California CA Kern 029 35.3866 -119.0171 +US 93302 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93303 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93304 Bakersfield California CA Kern 029 35.3396 -119.0218 +US 93305 Bakersfield California CA Kern 029 35.3855 -118.986 +US 93306 Bakersfield California CA Kern 029 35.3867 -118.9391 +US 93307 Bakersfield California CA Kern 029 35.3275 -118.9839 +US 93308 Bakersfield California CA Kern 029 35.4244 -119.0433 +US 93309 Bakersfield California CA Kern 029 35.3384 -119.0627 +US 93311 Bakersfield California CA Kern 029 35.3039 -119.1056 +US 93312 Bakersfield California CA Kern 029 35.3935 -119.1205 +US 93313 Bakersfield California CA Kern 029 35.2974 -119.0509 +US 93314 Bakersfield California CA Kern County 029 35.3863 -119.17 +US 93380 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93381 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93382 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93383 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93384 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93385 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93386 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93387 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93388 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93389 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93390 Bakersfield California CA Kern 029 35.2944 -118.9052 +US 93399 Bakersfield California CA Kern County 029 35.4369 -119.0679 +US 93501 Mojave California CA Kern 029 35.0478 -118.1735 +US 93502 Mojave California CA Kern 029 35.0682 -118.2248 +US 93504 California City California CA Kern 029 35.1871 -117.8854 +US 93505 California City California CA Kern 029 35.1278 -117.9651 +US 93516 Boron California CA Kern 029 35.0037 -117.6629 +US 93518 Caliente California CA Kern 029 35.3701 -118.4612 +US 93519 Cantil California CA Kern 029 35.1774 -118.035 +US 93523 Edwards California CA Kern 029 35.2582 -118.1302 +US 93524 Edwards California CA Kern 029 34.932 -117.9071 +US 93527 Inyokern California CA Kern 029 35.6397 -117.857 +US 93528 Johannesburg California CA Kern 029 35.3708 -117.6427 +US 93531 Keene California CA Kern 029 35.2375 -118.6076 +US 93554 Randsburg California CA Kern 029 35.3866 -117.7159 +US 93555 Ridgecrest California CA Kern 029 35.5405 -117.794 +US 93556 Ridgecrest California CA Kern 029 35.2944 -118.9052 +US 93560 Rosamond California CA Kern 029 34.8664 -118.3409 +US 93561 Tehachapi California CA Kern 029 35.043 -118.5022 +US 93570 Bear Valley Springs California CA Kern County 029 35.2235 -118.5614 +US 93581 Tehachapi California CA Kern 029 35.2944 -118.9052 +US 93582 Tehachapi California CA Kern County 029 35.1321 -118.448 +US 93596 Boron California CA Kern 029 35.2944 -118.9052 +US 93202 Armona California CA Kings 031 36.3095 -119.7053 +US 93204 Avenal California CA Kings 031 35.9877 -120.1227 +US 93212 Corcoran California CA Kings 031 36.0865 -119.5607 +US 93230 Hanford California CA Kings 031 36.3314 -119.6491 +US 93231 Hanford California CA Kings 031 36.1389 -119.8947 +US 93232 Hanford California CA Kings 031 36.1389 -119.8947 +US 93239 Kettleman City California CA Kings 031 35.9754 -119.946 +US 93245 Lemoore California CA Kings 031 36.2682 -119.8173 +US 93246 Lemoore California CA Kings 031 36.1389 -119.8947 +US 93266 Stratford California CA Kings 031 36.179 -119.8236 +US 95422 Clearlake California CA Lake 033 38.9576 -122.636 +US 95423 Clearlake Oaks California CA Lake 033 39.0664 -122.6558 +US 95424 Clearlake Park California CA Lake 033 38.9666 -122.65 +US 95426 Cobb California CA Lake 033 38.8155 -122.7132 +US 95435 Finley California CA Lake 033 38.9639 -122.9009 +US 95443 Glenhaven California CA Lake 033 38.9454 -122.5343 +US 95451 Kelseyville California CA Lake 033 38.9421 -122.7777 +US 95453 Lakeport California CA Lake 033 39.047 -122.9328 +US 95457 Lower Lake California CA Lake 033 38.8915 -122.5914 +US 95458 Lucerne California CA Lake 033 39.0783 -122.7846 +US 95461 Middletown California CA Lake 033 38.7824 -122.6487 +US 95464 Nice California CA Lake 033 39.1194 -122.8315 +US 95467 Hidden Valley Lake California CA Lake County 033 38.8036 -122.5407 +US 95485 Upper Lake California CA Lake 033 39.1804 -122.9144 +US 95493 Witter Springs California CA Lake 033 39.1821 -122.9711 +US 96009 Bieber California CA Lassen 035 41.1315 -121.1286 +US 96053 Mcarthur California CA Lassen 035 40.4461 -120.6641 +US 96068 Nubieber California CA Lassen 035 41.13 -121.1342 +US 96109 Doyle California CA Lassen 035 40.0008 -120.1077 +US 96113 Herlong California CA Lassen 035 40.1485 -120.1713 +US 96114 Janesville California CA Lassen 035 40.2963 -120.5098 +US 96117 Litchfield California CA Lassen 035 40.4073 -120.4092 +US 96119 Madeline California CA Lassen 035 40.9766 -120.5548 +US 96121 Milford California CA Lassen 035 40.1828 -120.3895 +US 96123 Ravendale California CA Lassen 035 40.8317 -120.16 +US 96127 Susanville California CA Lassen 035 40.4461 -120.6641 +US 96128 Standish California CA Lassen 035 40.3509 -120.4068 +US 96130 Susanville California CA Lassen 035 40.3983 -120.6464 +US 96132 Termo California CA Lassen 035 40.9509 -120.613 +US 96136 Wendel California CA Lassen 035 40.3406 -120.2824 +US 96137 Westwood California CA Lassen 035 40.3038 -121.0226 +US 90001 Los Angeles California CA Los Angeles 037 33.9731 -118.2479 +US 90002 Los Angeles California CA Los Angeles 037 33.9497 -118.2462 +US 90003 Los Angeles California CA Los Angeles 037 33.9653 -118.2727 +US 90004 Los Angeles California CA Los Angeles 037 34.0762 -118.3029 +US 90005 Los Angeles California CA Los Angeles 037 34.0585 -118.3012 +US 90006 Los Angeles California CA Los Angeles 037 34.0493 -118.2917 +US 90007 Los Angeles California CA Los Angeles 037 34.0294 -118.2871 +US 90008 Los Angeles California CA Los Angeles 037 34.0116 -118.3411 +US 90009 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90010 Los Angeles California CA Los Angeles 037 34.0606 -118.3027 +US 90011 Los Angeles California CA Los Angeles 037 34.0079 -118.2582 +US 90012 Los Angeles California CA Los Angeles 037 34.0614 -118.2385 +US 90013 Los Angeles California CA Los Angeles 037 34.0448 -118.2434 +US 90014 Los Angeles California CA Los Angeles 037 34.0443 -118.2509 +US 90015 Los Angeles California CA Los Angeles 037 34.0434 -118.2716 +US 90016 Los Angeles California CA Los Angeles 037 34.0298 -118.3528 +US 90017 Los Angeles California CA Los Angeles 037 34.0559 -118.2666 +US 90018 Los Angeles California CA Los Angeles 037 34.029 -118.3152 +US 90019 Los Angeles California CA Los Angeles 037 34.0482 -118.3343 +US 90020 Los Angeles California CA Los Angeles 037 34.0665 -118.3022 +US 90021 Los Angeles California CA Los Angeles 037 34.0333 -118.2447 +US 90022 Los Angeles California CA Los Angeles 037 34.0245 -118.1561 +US 90023 Los Angeles California CA Los Angeles 037 34.0245 -118.1975 +US 90024 Los Angeles California CA Los Angeles 037 34.0637 -118.4408 +US 90025 Los Angeles California CA Los Angeles 037 34.0447 -118.4487 +US 90026 Los Angeles California CA Los Angeles 037 34.0766 -118.2646 +US 90027 Los Angeles California CA Los Angeles 037 34.104 -118.2925 +US 90028 Los Angeles California CA Los Angeles 037 34.1005 -118.3254 +US 90029 Los Angeles California CA Los Angeles 037 34.09 -118.2944 +US 90030 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90031 Los Angeles California CA Los Angeles 037 34.0783 -118.2113 +US 90032 Los Angeles California CA Los Angeles 037 34.0818 -118.1753 +US 90033 Los Angeles California CA Los Angeles 037 34.0487 -118.2084 +US 90034 Los Angeles California CA Los Angeles 037 34.029 -118.4005 +US 90035 Los Angeles California CA Los Angeles 037 34.0531 -118.3806 +US 90036 Los Angeles California CA Los Angeles 037 34.0699 -118.3492 +US 90037 Los Angeles California CA Los Angeles 037 34.003 -118.2863 +US 90038 Los Angeles California CA Los Angeles 037 34.0898 -118.3215 +US 90039 Los Angeles California CA Los Angeles 037 34.1121 -118.2594 +US 90040 Los Angeles California CA Los Angeles 037 33.9909 -118.1532 +US 90041 Los Angeles California CA Los Angeles 037 34.1339 -118.2082 +US 90042 Los Angeles California CA Los Angeles 037 34.1145 -118.1929 +US 90043 Los Angeles California CA Los Angeles 037 33.9871 -118.3321 +US 90044 Los Angeles California CA Los Angeles 037 33.9551 -118.2901 +US 90045 Los Angeles California CA Los Angeles 037 33.9631 -118.3941 +US 90046 Los Angeles California CA Los Angeles 037 34.1074 -118.3652 +US 90047 Los Angeles California CA Los Angeles 037 33.9569 -118.3073 +US 90048 Los Angeles California CA Los Angeles 037 34.0737 -118.372 +US 90049 Los Angeles California CA Los Angeles 037 34.066 -118.474 +US 90050 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90051 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90052 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90053 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90054 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90055 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90056 Los Angeles California CA Los Angeles 037 33.9853 -118.3707 +US 90057 Los Angeles California CA Los Angeles 037 34.0622 -118.2763 +US 90058 Los Angeles California CA Los Angeles 037 33.9994 -118.2133 +US 90059 Los Angeles California CA Los Angeles 037 33.9293 -118.2463 +US 90060 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90061 Los Angeles California CA Los Angeles 037 33.9245 -118.2716 +US 90062 Los Angeles California CA Los Angeles 037 34.0032 -118.3073 +US 90063 Los Angeles California CA Los Angeles 037 34.0451 -118.1859 +US 90064 Los Angeles California CA Los Angeles 037 34.0353 -118.4259 +US 90065 Los Angeles California CA Los Angeles 037 34.1073 -118.2266 +US 90066 Los Angeles California CA Los Angeles 037 34.003 -118.4298 +US 90067 Los Angeles California CA Los Angeles 037 34.0551 -118.4095 +US 90068 Los Angeles California CA Los Angeles 037 34.1156 -118.3305 +US 90069 West Hollywood California CA Los Angeles 037 34.0906 -118.3788 +US 90070 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90071 Los Angeles California CA Los Angeles 037 34.0529 -118.2549 +US 90072 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90073 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90074 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90075 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90076 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90077 Los Angeles California CA Los Angeles 037 34.1112 -118.4502 +US 90078 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90079 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90080 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90081 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90082 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90083 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90084 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90086 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90087 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90088 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90089 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90090 Dodgertown California CA Los Angeles 037 34.0725 -118.2418 5 +US 90091 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90093 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90094 Los Angeles California CA Los Angeles 037 33.9754 -118.417 +US 90095 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90096 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90097 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90099 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90101 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90102 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90103 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90174 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90185 Los Angeles California CA Los Angeles 037 33.7866 -118.2987 +US 90189 Los Angeles California CA Los Angeles County 037 34.0515 -118.2559 +US 90201 Bell California CA Los Angeles 037 33.9767 -118.1689 +US 90202 Bell Gardens California CA Los Angeles 037 33.7866 -118.2987 +US 90209 Beverly Hills California CA Los Angeles 037 33.7866 -118.2987 +US 90210 Beverly Hills California CA Los Angeles 037 34.0901 -118.4065 +US 90211 Beverly Hills California CA Los Angeles 037 34.0652 -118.383 +US 90212 Beverly Hills California CA Los Angeles 037 34.0619 -118.3995 +US 90213 Beverly Hills California CA Los Angeles 037 33.7866 -118.2987 +US 90220 Compton California CA Los Angeles 037 33.8748 -118.2402 +US 90221 Compton California CA Los Angeles 037 33.8796 -118.2168 +US 90222 Compton California CA Los Angeles 037 33.9099 -118.2357 +US 90223 Compton California CA Los Angeles 037 33.7866 -118.2987 +US 90224 Compton California CA Los Angeles 037 33.7866 -118.2987 +US 90230 Culver City California CA Los Angeles 037 33.9949 -118.3991 +US 90231 Culver City California CA Los Angeles 037 33.7866 -118.2987 +US 90232 Culver City California CA Los Angeles 037 34.0168 -118.3973 +US 90233 Culver City California CA Los Angeles 037 33.7866 -118.2987 +US 90239 Downey California CA Los Angeles 037 33.7866 -118.2987 +US 90240 Downey California CA Los Angeles 037 33.9581 -118.1174 +US 90241 Downey California CA Los Angeles 037 33.9416 -118.1306 +US 90242 Downey California CA Los Angeles 037 33.9218 -118.1395 +US 90245 El Segundo California CA Los Angeles 037 33.9243 -118.4119 +US 90247 Gardena California CA Los Angeles 037 33.8925 -118.2961 +US 90248 Gardena California CA Los Angeles 037 33.8766 -118.2835 +US 90249 Gardena California CA Los Angeles 037 33.8998 -118.3199 +US 90250 Hawthorne California CA Los Angeles 037 33.9143 -118.3493 +US 90251 Hawthorne California CA Los Angeles 037 33.7866 -118.2987 +US 90254 Hermosa Beach California CA Los Angeles 037 33.8643 -118.3955 +US 90255 Huntington Park California CA Los Angeles 037 33.9769 -118.2161 +US 90260 Lawndale California CA Los Angeles 037 33.8879 -118.351 +US 90261 Lawndale California CA Los Angeles 037 33.7866 -118.2987 +US 90262 Lynwood California CA Los Angeles 037 33.9241 -118.2013 +US 90263 Malibu California CA Los Angeles 037 33.7866 -118.2987 +US 90264 Malibu California CA Los Angeles 037 33.7866 -118.2987 +US 90265 Malibu California CA Los Angeles 037 34.0402 -118.7351 +US 90266 Manhattan Beach California CA Los Angeles 037 33.8896 -118.3996 +US 90267 Manhattan Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90270 Maywood California CA Los Angeles 037 33.989 -118.1877 +US 90272 Pacific Palisades California CA Los Angeles 037 34.0787 -118.5422 +US 90274 Palos Verdes Peninsula California CA Los Angeles 037 33.7866 -118.2987 +US 90275 Rancho Palos Verdes California CA Los Angeles 037 33.7515 -118.367 +US 90277 Redondo Beach California CA Los Angeles 037 33.8307 -118.3832 +US 90278 Redondo Beach California CA Los Angeles 037 33.8707 -118.3715 +US 90280 South Gate California CA Los Angeles 037 33.9462 -118.2013 +US 90290 Topanga California CA Los Angeles 037 34.1076 -118.6023 +US 90291 Venice California CA Los Angeles 037 33.9938 -118.4635 +US 90292 Marina Del Rey California CA Los Angeles 037 33.9779 -118.4525 +US 90293 Playa Del Rey California CA Los Angeles 037 33.9577 -118.4373 +US 90294 Venice California CA Los Angeles 037 33.7866 -118.2987 +US 90295 Marina Del Rey California CA Los Angeles 037 33.7866 -118.2987 +US 90296 Playa Del Rey California CA Los Angeles 037 33.7866 -118.2987 +US 90301 Inglewood California CA Los Angeles 037 33.955 -118.3556 +US 90302 Inglewood California CA Los Angeles 037 33.9745 -118.3548 +US 90303 Inglewood California CA Los Angeles 037 33.9377 -118.3321 +US 90304 Inglewood California CA Los Angeles 037 33.9379 -118.3586 +US 90305 Inglewood California CA Los Angeles 037 33.9583 -118.3259 +US 90306 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90307 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90308 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90309 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90310 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90311 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90312 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90313 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90397 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90398 Inglewood California CA Los Angeles 037 33.7866 -118.2987 +US 90401 Santa Monica California CA Los Angeles 037 34.0176 -118.4907 +US 90402 Santa Monica California CA Los Angeles 037 34.0349 -118.503 +US 90403 Santa Monica California CA Los Angeles 037 34.0287 -118.4924 +US 90404 Santa Monica California CA Los Angeles 037 34.0268 -118.4733 +US 90405 Santa Monica California CA Los Angeles 037 34.01 -118.4717 +US 90406 Santa Monica California CA Los Angeles 037 33.7866 -118.2987 +US 90407 Santa Monica California CA Los Angeles 037 33.7866 -118.2987 +US 90408 Santa Monica California CA Los Angeles 037 33.7866 -118.2987 +US 90409 Santa Monica California CA Los Angeles 037 33.7866 -118.2987 +US 90410 Santa Monica California CA Los Angeles 037 33.7866 -118.2987 +US 90411 Santa Monica California CA Los Angeles 037 33.7866 -118.2987 +US 90501 Torrance California CA Los Angeles 037 33.8268 -118.3118 +US 90502 Torrance California CA Los Angeles 037 33.8286 -118.292 +US 90503 Torrance California CA Los Angeles 037 33.8397 -118.3542 +US 90504 Torrance California CA Los Angeles 037 33.8708 -118.3295 +US 90505 Torrance California CA Los Angeles 037 33.8106 -118.3507 +US 90506 Torrance California CA Los Angeles 037 33.7866 -118.2987 +US 90507 Torrance California CA Los Angeles 037 33.7866 -118.2987 +US 90508 Torrance California CA Los Angeles 037 33.7866 -118.2987 +US 90509 Torrance California CA Los Angeles 037 33.7866 -118.2987 +US 90510 Torrance California CA Los Angeles 037 33.7866 -118.2987 +US 90601 Whittier California CA Los Angeles 037 34.0011 -118.0371 +US 90602 Whittier California CA Los Angeles 037 33.9693 -118.0337 +US 90603 Whittier California CA Los Angeles 037 33.9432 -117.9927 +US 90604 Whittier California CA Los Angeles 037 33.9299 -118.0121 +US 90605 Whittier California CA Los Angeles 037 33.9413 -118.0356 +US 90606 Whittier California CA Los Angeles 037 33.9777 -118.0658 +US 90607 Whittier California CA Los Angeles 037 33.7866 -118.2987 +US 90608 Whittier California CA Los Angeles 037 33.7866 -118.2987 +US 90609 Whittier California CA Los Angeles 037 33.7866 -118.2987 +US 90610 Whittier California CA Los Angeles 037 33.7866 -118.2987 +US 90612 Whittier California CA Los Angeles 037 33.7866 -118.2987 +US 90637 La Mirada California CA Los Angeles 037 33.7866 -118.2987 +US 90638 La Mirada California CA Los Angeles 037 33.9067 -118.0101 +US 90639 La Mirada California CA Los Angeles 037 33.9058 -118.0182 +US 90640 Montebello California CA Los Angeles 037 34.0133 -118.113 +US 90650 Norwalk California CA Los Angeles 037 33.9056 -118.0818 +US 90651 Norwalk California CA Los Angeles 037 33.7866 -118.2987 +US 90652 Norwalk California CA Los Angeles 037 33.7866 -118.2987 +US 90659 Norwalk California CA Los Angeles 037 33.7866 -118.2987 +US 90660 Pico Rivera California CA Los Angeles 037 33.9886 -118.0883 +US 90661 Pico Rivera California CA Los Angeles 037 33.7866 -118.2987 +US 90662 Pico Rivera California CA Los Angeles 037 33.7866 -118.2987 +US 90665 Pico Rivera California CA Los Angeles 037 33.7866 -118.2987 +US 90670 Santa Fe Springs California CA Los Angeles 037 33.9464 -118.0838 +US 90671 Santa Fe Springs California CA Los Angeles 037 33.7866 -118.2987 +US 90701 Artesia California CA Los Angeles 037 33.8654 -118.0731 +US 90702 Artesia California CA Los Angeles 037 33.7866 -118.2987 +US 90703 Cerritos California CA Los Angeles 037 33.8669 -118.0686 +US 90704 Avalon California CA Los Angeles 037 33.332 -118.3437 +US 90706 Bellflower California CA Los Angeles 037 33.8867 -118.1265 +US 90707 Bellflower California CA Los Angeles 037 33.7866 -118.2987 +US 90710 Harbor City California CA Los Angeles 037 33.797 -118.2991 +US 90711 Lakewood California CA Los Angeles 037 33.7866 -118.2987 +US 90712 Lakewood California CA Los Angeles 037 33.8512 -118.1457 +US 90713 Lakewood California CA Los Angeles 037 33.8473 -118.1115 +US 90714 Lakewood California CA Los Angeles 037 33.8512 -118.1339 +US 90715 Lakewood California CA Los Angeles 037 33.8405 -118.0767 +US 90716 Hawaiian Gardens California CA Los Angeles 037 33.8296 -118.073 +US 90717 Lomita California CA Los Angeles 037 33.7938 -118.3172 +US 90723 Paramount California CA Los Angeles 037 33.8969 -118.1632 +US 90731 San Pedro California CA Los Angeles 037 33.7339 -118.2914 +US 90732 San Pedro California CA Los Angeles 037 33.742 -118.3121 +US 90733 San Pedro California CA Los Angeles 037 33.7866 -118.2987 +US 90734 San Pedro California CA Los Angeles 037 33.7866 -118.2987 +US 90744 Wilmington California CA Los Angeles 037 33.7855 -118.2645 +US 90745 Carson California CA Los Angeles 037 33.823 -118.2684 +US 90746 Carson California CA Los Angeles 037 33.8584 -118.2554 +US 90747 Carson California CA Los Angeles 037 33.8671 -118.2538 +US 90748 Wilmington California CA Los Angeles 037 33.7866 -118.2987 +US 90749 Carson California CA Los Angeles 037 33.7866 -118.2987 +US 90755 Signal Hill California CA Los Angeles County 037 33.8029 -118.1677 +US 90801 Long Beach California CA Los Angeles 037 33.8043 -118.201 +US 90802 Long Beach California CA Los Angeles 037 33.7706 -118.182 +US 90803 Long Beach California CA Los Angeles 037 33.7619 -118.1341 +US 90804 Long Beach California CA Los Angeles 037 33.7857 -118.1357 +US 90805 Long Beach California CA Los Angeles 037 33.8635 -118.1801 +US 90806 Long Beach California CA Los Angeles 037 33.8045 -118.1876 +US 90807 Long Beach California CA Los Angeles 037 33.8315 -118.1811 +US 90808 Long Beach California CA Los Angeles 037 33.8241 -118.1103 +US 90809 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90810 Long Beach California CA Los Angeles 037 33.8193 -118.2325 +US 90813 Long Beach California CA Los Angeles 037 33.782 -118.1835 +US 90814 Long Beach California CA Los Angeles 037 33.7716 -118.148 +US 90815 Long Beach California CA Los Angeles 037 33.7939 -118.1192 +US 90822 Long Beach California CA Los Angeles 037 33.7927 -118.1638 +US 90831 Long Beach California CA Los Angeles 037 33.7678 -118.1994 +US 90832 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90833 Long Beach California CA Los Angeles 037 33.7678 -118.1994 +US 90834 Long Beach California CA Los Angeles 037 33.7678 -118.1994 +US 90835 Long Beach California CA Los Angeles 037 33.7678 -118.1994 +US 90840 Long Beach California CA Los Angeles 037 33.7843 -118.1157 +US 90842 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90844 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90845 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90846 Long Beach California CA Los Angeles 037 33.8249 -118.1504 +US 90847 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90848 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90853 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90888 Long Beach California CA Los Angeles 037 33.7866 -118.2987 +US 90895 Carson California CA Los Angeles County 037 33.8392 -118.2202 +US 90899 Long Beach California CA Los Angeles County 037 33.7987 -118.1634 +US 91001 Altadena California CA Los Angeles 037 34.1912 -118.1392 +US 91002 Altadena California CA Los Angeles County 037 34.1847 -118.1307 +US 91003 Altadena California CA Los Angeles 037 33.7866 -118.2987 +US 91006 Arcadia California CA Los Angeles 037 34.1324 -118.0264 +US 91007 Arcadia California CA Los Angeles 037 34.1243 -118.0515 +US 91008 Duarte California CA Los Angeles County 037 34.149 -117.9644 +US 91009 Duarte California CA Los Angeles 037 33.7866 -118.2987 +US 91010 Duarte California CA Los Angeles 037 34.1407 -117.9567 +US 91011 La Canada Flintridge California CA Los Angeles 037 34.2217 -118.2051 +US 91012 La Canada Flintridge California CA Los Angeles 037 33.7866 -118.2987 +US 91016 Monrovia California CA Los Angeles 037 34.144 -118.0014 +US 91017 Monrovia California CA Los Angeles 037 33.7866 -118.2987 +US 91020 Montrose California CA Los Angeles 037 34.2114 -118.2305 +US 91021 Montrose California CA Los Angeles 037 33.7866 -118.2987 +US 91023 Mount Wilson California CA Los Angeles 037 33.7866 -118.2987 +US 91024 Sierra Madre California CA Los Angeles 037 34.1651 -118.0519 +US 91025 Sierra Madre California CA Los Angeles 037 33.7866 -118.2987 +US 91030 South Pasadena California CA Los Angeles 037 34.1109 -118.1547 +US 91031 South Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91040 Sunland California CA Los Angeles 037 34.2618 -118.3371 +US 91041 Sunland California CA Los Angeles 037 33.7866 -118.2987 +US 91042 Tujunga California CA Los Angeles 037 34.2544 -118.2849 +US 91043 Tujunga California CA Los Angeles 037 33.7866 -118.2987 +US 91046 Verdugo City California CA Los Angeles 037 33.7866 -118.2987 +US 91050 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91051 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91066 Arcadia California CA Los Angeles 037 33.7866 -118.2987 +US 91077 Arcadia California CA Los Angeles 037 33.7866 -118.2987 +US 91101 Pasadena California CA Los Angeles 037 34.1468 -118.1391 +US 91102 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91103 Pasadena California CA Los Angeles 037 34.1669 -118.1551 +US 91104 Pasadena California CA Los Angeles 037 34.1678 -118.1261 +US 91105 Pasadena California CA Los Angeles 037 34.1355 -118.1636 +US 91106 Pasadena California CA Los Angeles 037 34.1435 -118.1266 +US 91107 Pasadena California CA Los Angeles 037 34.151 -118.0889 +US 91108 San Marino California CA Los Angeles 037 34.1207 -118.1117 +US 91109 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91110 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91114 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91115 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91116 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91117 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91118 San Marino California CA Los Angeles 037 33.7866 -118.2987 +US 91121 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91122 Pasadena California CA Los Angeles County 037 34.1552 -118.1533 +US 91123 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91124 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91125 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91126 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91127 Pasadena California CA Los Angeles County 037 34.1552 -118.1533 +US 91128 Pasadena California CA Los Angeles County 037 34.1552 -118.1533 +US 91129 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91131 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91175 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91182 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91184 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91185 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91186 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91187 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91188 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91189 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91191 Pasadena California CA Los Angeles 037 33.7866 -118.2987 +US 91199 Pasadena California CA Los Angeles County 037 34.1478 -118.1436 +US 91201 Glendale California CA Los Angeles 037 34.1716 -118.2899 +US 91202 Glendale California CA Los Angeles 037 34.1652 -118.2656 +US 91203 Glendale California CA Los Angeles 037 34.1517 -118.2636 +US 91204 Glendale California CA Los Angeles 037 34.1379 -118.2599 +US 91205 Glendale California CA Los Angeles 037 34.1378 -118.2425 +US 91206 Glendale California CA Los Angeles 037 34.1556 -118.2322 +US 91207 Glendale California CA Los Angeles 037 34.1649 -118.2451 +US 91208 Glendale California CA Los Angeles 037 34.1921 -118.235 +US 91209 Glendale California CA Los Angeles 037 33.7866 -118.2987 +US 91210 Glendale California CA Los Angeles 037 33.7866 -118.2987 +US 91214 La Crescenta California CA Los Angeles 037 34.2316 -118.2457 +US 91221 Glendale California CA Los Angeles 037 33.7866 -118.2987 +US 91222 Glendale California CA Los Angeles 037 33.7866 -118.2987 +US 91224 La Crescenta California CA Los Angeles 037 33.7866 -118.2987 +US 91225 Glendale California CA Los Angeles 037 33.7866 -118.2987 +US 91226 Glendale California CA Los Angeles 037 33.7866 -118.2987 +US 91301 Agoura Hills California CA Los Angeles 037 34.1227 -118.7573 +US 91302 Calabasas California CA Los Angeles 037 34.1419 -118.6641 +US 91303 Canoga Park California CA Los Angeles 037 34.1993 -118.5983 +US 91304 Canoga Park California CA Los Angeles 037 34.2197 -118.6111 +US 91305 Canoga Park California CA Los Angeles 037 33.7866 -118.2987 +US 91306 Winnetka California CA Los Angeles 037 34.2092 -118.5749 +US 91307 West Hills California CA Los Angeles 037 34.1963 -118.6389 +US 91308 West Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91309 Canoga Park California CA Los Angeles 037 33.7866 -118.2987 +US 91310 Castaic California CA Los Angeles 037 33.7866 -118.2987 +US 91311 Chatsworth California CA Los Angeles 037 34.2583 -118.5914 +US 91312 Chatsworth California CA Los Angeles 037 33.7866 -118.2987 +US 91313 Chatsworth California CA Los Angeles 037 33.7866 -118.2987 +US 91316 Encino California CA Los Angeles 037 34.1655 -118.5175 +US 91321 Newhall California CA Los Angeles 037 34.3795 -118.523 +US 91322 Newhall California CA Los Angeles 037 33.7866 -118.2987 +US 91324 Northridge California CA Los Angeles 037 34.2367 -118.5466 +US 91325 Northridge California CA Los Angeles 037 34.2353 -118.5188 +US 91326 Northridge California CA Los Angeles 037 34.2805 -118.5576 +US 91327 Northridge California CA Los Angeles 037 33.7866 -118.2987 +US 91328 Northridge California CA Los Angeles 037 33.7866 -118.2987 +US 91329 Northridge California CA Los Angeles 037 33.7866 -118.2987 +US 91330 Northridge California CA Los Angeles 037 33.7866 -118.2987 +US 91331 Pacoima California CA Los Angeles 037 34.2556 -118.4208 +US 91333 Pacoima California CA Los Angeles 037 33.7866 -118.2987 +US 91334 Pacoima California CA Los Angeles 037 33.7866 -118.2987 +US 91335 Reseda California CA Los Angeles 037 34.2007 -118.5391 +US 91337 Reseda California CA Los Angeles 037 33.7866 -118.2987 +US 91340 San Fernando California CA Los Angeles 037 34.2875 -118.4352 +US 91341 San Fernando California CA Los Angeles 037 33.7866 -118.2987 +US 91342 Sylmar California CA Los Angeles 037 34.3054 -118.4322 +US 91343 North Hills California CA Los Angeles 037 34.2366 -118.4758 +US 91344 Granada Hills California CA Los Angeles 037 34.2771 -118.4992 +US 91345 Mission Hills California CA Los Angeles 037 34.2619 -118.4587 +US 91346 Mission Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91350 Santa Clarita California CA Los Angeles 037 34.4336 -118.5007 +US 91351 Canyon Country California CA Los Angeles 037 34.4262 -118.449 +US 91352 Sun Valley California CA Los Angeles 037 34.2209 -118.3699 +US 91353 Sun Valley California CA Los Angeles 037 33.7866 -118.2987 +US 91354 Valencia California CA Los Angeles 037 34.4466 -118.5374 +US 91355 Valencia California CA Los Angeles 037 34.3985 -118.5535 +US 91356 Tarzana California CA Los Angeles 037 34.1671 -118.5414 +US 91357 Tarzana California CA Los Angeles 037 33.7866 -118.2987 +US 91363 Westlake Village California CA Los Angeles 037 33.7866 -118.2987 +US 91364 Woodland Hills California CA Los Angeles 037 34.1557 -118.6 +US 91365 Woodland Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91367 Woodland Hills California CA Los Angeles 037 34.1767 -118.6159 +US 91370 Hidden Hills California CA Los Angeles County 037 34.1696 -118.6077 +US 91371 Woodland Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91372 Calabasas California CA Los Angeles 037 33.7866 -118.2987 +US 91375 Agoura Hills California CA Los Angeles County 037 34.1429 -118.7369 +US 91376 Agoura Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91380 Santa Clarita California CA Los Angeles 037 33.7866 -118.2987 +US 91381 Stevenson Ranch California CA Los Angeles 037 34.3775 -118.6131 +US 91382 Santa Clarita California CA Los Angeles 037 33.7866 -118.2987 +US 91383 Santa Clarita California CA Los Angeles 037 33.7866 -118.2987 +US 91384 Castaic California CA Los Angeles 037 34.4827 -118.6254 +US 91385 Valencia California CA Los Angeles 037 33.7866 -118.2987 +US 91386 Canyon Country California CA Los Angeles 037 33.7866 -118.2987 +US 91387 Canyon Country California CA Los Angeles 037 34.4132 -118.426 +US 91388 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91390 Santa Clarita California CA Los Angeles 037 34.4684 -118.5261 +US 91392 Sylmar California CA Los Angeles 037 33.7866 -118.2987 +US 91393 North Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91394 Granada Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91395 Mission Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91396 Winnetka California CA Los Angeles 037 33.7866 -118.2987 +US 91399 Woodland Hills California CA Los Angeles 037 33.7866 -118.2987 +US 91401 Van Nuys California CA Los Angeles 037 34.1802 -118.4324 +US 91402 Panorama City California CA Los Angeles 037 34.2262 -118.447 +US 91403 Sherman Oaks California CA Los Angeles 037 34.1514 -118.4603 +US 91404 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91405 Van Nuys California CA Los Angeles 037 34.2001 -118.4456 +US 91406 Van Nuys California CA Los Angeles 037 34.2006 -118.4868 +US 91407 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91408 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91409 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91410 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91411 Van Nuys California CA Los Angeles 037 34.1781 -118.4574 +US 91412 Panorama City California CA Los Angeles 037 33.7866 -118.2987 +US 91413 Sherman Oaks California CA Los Angeles 037 33.7866 -118.2987 +US 91416 Encino California CA Los Angeles 037 33.7866 -118.2987 +US 91423 Sherman Oaks California CA Los Angeles 037 34.1526 -118.4322 +US 91426 Encino California CA Los Angeles 037 33.7866 -118.2987 +US 91436 Encino California CA Los Angeles 037 34.151 -118.4882 +US 91461 Los Angeles California CA Los Angeles County 037 34.2011 -118.4742 +US 91463 Los Angeles California CA Los Angeles County 037 34.2011 -118.4742 +US 91470 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91482 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91494 Los Angeles California CA Los Angeles County 037 34.2011 -118.4742 +US 91495 Sherman Oaks California CA Los Angeles 037 33.7866 -118.2987 +US 91496 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91497 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91499 Van Nuys California CA Los Angeles 037 33.7866 -118.2987 +US 91501 Burbank California CA Los Angeles 037 34.1862 -118.3009 +US 91502 Burbank California CA Los Angeles 037 34.1745 -118.3059 +US 91503 Burbank California CA Los Angeles 037 33.7866 -118.2987 +US 91504 Burbank California CA Los Angeles 037 34.2001 -118.3264 +US 91505 Burbank California CA Los Angeles 037 34.169 -118.3442 +US 91506 Burbank California CA Los Angeles 037 34.1717 -118.3231 +US 91507 Burbank California CA Los Angeles 037 33.7866 -118.2987 +US 91508 Burbank California CA Los Angeles 037 33.7866 -118.2987 +US 91510 Burbank California CA Los Angeles 037 33.7866 -118.2987 +US 91520 Burbank California CA Los Angeles County 037 34.1869 -118.348 +US 91521 Burbank California CA Los Angeles 037 33.7866 -118.2987 +US 91522 Burbank California CA Los Angeles 037 33.7866 -118.2987 +US 91523 Burbank California CA Los Angeles 037 33.7866 -118.2987 +US 91526 Burbank California CA Los Angeles 037 33.7866 -118.2987 +US 91601 North Hollywood California CA Los Angeles 037 34.1687 -118.3713 +US 91602 North Hollywood California CA Los Angeles 037 34.151 -118.3663 +US 91603 North Hollywood California CA Los Angeles 037 33.7866 -118.2987 +US 91604 Studio City California CA Los Angeles 037 34.143 -118.3913 +US 91605 North Hollywood California CA Los Angeles 037 34.2057 -118.4001 +US 91606 North Hollywood California CA Los Angeles 037 34.1872 -118.3865 +US 91607 Valley Village California CA Los Angeles 037 34.1672 -118.3989 +US 91608 Universal City California CA Los Angeles 037 34.1383 -118.3528 +US 91609 North Hollywood California CA Los Angeles 037 33.7866 -118.2987 +US 91610 Toluca Lake California CA Los Angeles 037 33.7866 -118.2987 +US 91611 North Hollywood California CA Los Angeles 037 33.7866 -118.2987 +US 91612 North Hollywood California CA Los Angeles 037 33.7866 -118.2987 +US 91614 Studio City California CA Los Angeles 037 33.7866 -118.2987 +US 91615 North Hollywood California CA Los Angeles 037 33.7866 -118.2987 +US 91616 North Hollywood California CA Los Angeles 037 33.7866 -118.2987 +US 91617 Valley Village California CA Los Angeles 037 33.7866 -118.2987 +US 91618 North Hollywood California CA Los Angeles 037 33.7866 -118.2987 +US 91702 Azusa California CA Los Angeles 037 34.1248 -117.9031 +US 91706 Baldwin Park California CA Los Angeles 037 34.0964 -117.9682 +US 91711 Claremont California CA Los Angeles 037 34.1092 -117.7183 +US 91714 City Of Industry California CA Los Angeles 037 33.7866 -118.2987 +US 91715 City Of Industry California CA Los Angeles 037 33.7866 -118.2987 +US 91716 City Of Industry California CA Los Angeles 037 33.7866 -118.2987 +US 91722 Covina California CA Los Angeles 037 34.0972 -117.9065 +US 91723 Covina California CA Los Angeles 037 34.086 -117.8843 +US 91724 Covina California CA Los Angeles 037 34.0938 -117.856 +US 91731 El Monte California CA Los Angeles 037 34.0791 -118.0371 +US 91732 El Monte California CA Los Angeles 037 34.0705 -118.0149 +US 91733 South El Monte California CA Los Angeles 037 34.0557 -118.0444 +US 91734 El Monte California CA Los Angeles 037 33.7866 -118.2987 +US 91735 El Monte California CA Los Angeles 037 33.7866 -118.2987 +US 91740 Glendora California CA Los Angeles 037 34.1287 -117.8552 +US 91741 Glendora California CA Los Angeles 037 34.1537 -117.8437 +US 91744 La Puente California CA Los Angeles 037 34.0289 -117.9373 +US 91745 Hacienda Heights California CA Los Angeles 037 33.9977 -117.9652 +US 91746 La Puente California CA Los Angeles 037 34.0443 -117.9862 +US 91747 La Puente California CA Los Angeles 037 33.7866 -118.2987 +US 91748 Rowland Heights California CA Los Angeles 037 33.9818 -117.8969 +US 91749 La Puente California CA Los Angeles 037 33.7866 -118.2987 +US 91750 La Verne California CA Los Angeles 037 34.1159 -117.7708 +US 91754 Monterey Park California CA Los Angeles 037 34.0534 -118.1271 +US 91755 Monterey Park California CA Los Angeles 037 34.048 -118.115 +US 91756 Monterey Park California CA Los Angeles 037 33.7866 -118.2987 +US 91759 Mt Baldy California CA Los Angeles 037 33.7866 -118.2987 +US 91765 Diamond Bar California CA Los Angeles 037 34.0066 -117.8098 +US 91766 Pomona California CA Los Angeles 037 34.0418 -117.7569 +US 91767 Pomona California CA Los Angeles 037 34.0812 -117.7362 +US 91768 Pomona California CA Los Angeles 037 34.0662 -117.7763 +US 91769 Pomona California CA Los Angeles 037 33.7866 -118.2987 +US 91770 Rosemead California CA Los Angeles 037 34.0658 -118.0853 +US 91771 Rosemead California CA Los Angeles 037 33.7866 -118.2987 +US 91772 Rosemead California CA Los Angeles 037 33.7866 -118.2987 +US 91773 San Dimas California CA Los Angeles 037 34.1023 -117.8169 +US 91775 San Gabriel California CA Los Angeles 037 34.1155 -118.0857 +US 91776 San Gabriel California CA Los Angeles 037 34.089 -118.0955 +US 91778 San Gabriel California CA Los Angeles 037 33.7866 -118.2987 +US 91780 Temple City California CA Los Angeles 037 34.1016 -118.0537 +US 91788 Walnut California CA Los Angeles 037 33.7866 -118.2987 +US 91789 Walnut California CA Los Angeles 037 34.0183 -117.8546 +US 91790 West Covina California CA Los Angeles 037 34.0673 -117.9366 +US 91791 West Covina California CA Los Angeles 037 34.0653 -117.8978 +US 91792 West Covina California CA Los Angeles 037 34.0229 -117.8975 +US 91793 West Covina California CA Los Angeles 037 33.7866 -118.2987 +US 91795 Walnut California CA Los Angeles 037 33.7866 -118.2987 +US 91797 Pomona California CA Los Angeles 037 33.7866 -118.2987 +US 91799 Pomona California CA Los Angeles 037 33.7866 -118.2987 +US 91801 Alhambra California CA Los Angeles 037 34.0914 -118.1293 +US 91802 Alhambra California CA Los Angeles 037 33.7866 -118.2987 +US 91803 Alhambra California CA Los Angeles 037 34.0745 -118.1434 +US 91804 Alhambra California CA Los Angeles 037 33.7866 -118.2987 +US 91841 Alhambra California CA Los Angeles 037 33.7866 -118.2987 +US 91896 Alhambra California CA Los Angeles 037 33.7866 -118.2987 +US 91899 Alhambra California CA Los Angeles 037 33.7866 -118.2987 +US 93510 Acton California CA Los Angeles 037 34.4835 -118.1959 +US 93532 Lake Hughes California CA Los Angeles 037 34.6847 -118.5442 +US 93534 Lancaster California CA Los Angeles 037 34.6909 -118.1491 +US 93535 Lancaster California CA Los Angeles 037 34.7131 -117.8783 +US 93536 Lancaster California CA Los Angeles 037 34.7471 -118.3687 +US 93539 Lancaster California CA Los Angeles 037 33.7866 -118.2987 +US 93543 Littlerock California CA Los Angeles 037 34.4891 -117.9708 +US 93544 Llano California CA Los Angeles 037 34.493 -117.7543 +US 93550 Palmdale California CA Los Angeles 037 34.4133 -118.0917 +US 93551 Palmdale California CA Los Angeles 037 34.6017 -118.231 +US 93552 Palmdale California CA Los Angeles 037 34.5715 -118.0231 +US 93553 Pearblossom California CA Los Angeles 037 34.4225 -117.9055 +US 93563 Valyermo California CA Los Angeles 037 34.3966 -117.7604 +US 93584 Lancaster California CA Los Angeles 037 33.7866 -118.2987 +US 93586 Lancaster California CA Los Angeles 037 33.7866 -118.2987 +US 93590 Palmdale California CA Los Angeles 037 33.7866 -118.2987 +US 93591 Palmdale California CA Los Angeles 037 34.6019 -117.8123 +US 93599 Palmdale California CA Los Angeles 037 33.7866 -118.2987 +US 93601 Ahwahnee California CA Madera 039 37.4076 -119.7233 +US 93604 Bass Lake California CA Madera 039 37.3244 -119.5568 +US 93610 Chowchilla California CA Madera 039 37.1014 -120.2691 +US 93614 Coarsegold California CA Madera 039 37.2214 -119.7455 +US 93637 Madera California CA Madera 039 36.9403 -120.082 +US 93638 Madera California CA Madera 039 37.0402 -120.0335 +US 93639 Madera California CA Madera 039 37.1606 -119.945 +US 93643 North Fork California CA Madera 039 37.2125 -119.5143 +US 93644 Oakhurst California CA Madera 039 37.3476 -119.6449 +US 93645 O Neals California CA Madera 039 37.1639 -119.6652 +US 93653 Raymond California CA Madera 039 37.279 -119.8766 +US 93669 Wishon California CA Madera 039 37.281 -119.557 +US 94901 San Rafael California CA Marin 041 37.9691 -122.5105 +US 94903 San Rafael California CA Marin 041 38.0339 -122.5855 +US 94904 Greenbrae California CA Marin 041 37.9479 -122.5363 +US 94911 San Rafael California CA Marin County 041 37.9811 -122.5059 +US 94912 San Rafael California CA Marin 041 38.068 -122.741 +US 94913 San Rafael California CA Marin 041 38.068 -122.741 +US 94914 Kentfield California CA Marin 041 38.068 -122.741 +US 94915 San Rafael California CA Marin 041 38.0739 -122.5594 +US 94920 Belvedere Tiburon California CA Marin 041 37.8843 -122.4637 +US 94924 Bolinas California CA Marin 041 37.9079 -122.6947 +US 94925 Corte Madera California CA Marin 041 37.9223 -122.5132 +US 94929 Dillon Beach California CA Marin 041 38.2469 -122.9562 +US 94930 Fairfax California CA Marin 041 37.9883 -122.5937 +US 94933 Forest Knolls California CA Marin 041 38.0122 -122.6907 +US 94937 Inverness California CA Marin 041 38.1126 -122.8877 +US 94938 Lagunitas California CA Marin 041 38.0139 -122.7016 +US 94939 Larkspur California CA Marin 041 37.9367 -122.5362 +US 94940 Marshall California CA Marin 041 38.1762 -122.89 +US 94941 Mill Valley California CA Marin 041 37.8958 -122.5339 +US 94942 Mill Valley California CA Marin 041 38.068 -122.741 +US 94945 Novato California CA Marin 041 38.1163 -122.5714 +US 94946 Nicasio California CA Marin 041 38.0546 -122.6964 +US 94947 Novato California CA Marin 041 38.0973 -122.5837 +US 94948 Novato California CA Marin 041 38.1489 -122.5737 +US 94949 Novato California CA Marin 041 38.0618 -122.5404 +US 94950 Olema California CA Marin 041 38.0467 -122.7699 +US 94956 Point Reyes Station California CA Marin 041 38.0579 -122.8534 +US 94957 Ross California CA Marin 041 38.0223 -122.5617 +US 94960 San Anselmo California CA Marin 041 37.9846 -122.5711 +US 94963 San Geronimo California CA Marin 041 38.0166 -122.6596 +US 94964 San Quentin California CA Marin 041 37.9416 -122.4844 +US 94965 Sausalito California CA Marin 041 37.8601 -122.4946 +US 94966 Sausalito California CA Marin 041 38.068 -122.741 +US 94970 Stinson Beach California CA Marin 041 37.902 -122.6393 +US 94971 Tomales California CA Marin 041 38.2427 -122.9145 +US 94973 Woodacre California CA Marin 041 38.0069 -122.6382 +US 94974 San Quentin California CA Marin 041 38.068 -122.741 +US 94976 Corte Madera California CA Marin 041 38.068 -122.741 +US 94977 Larkspur California CA Marin 041 38.068 -122.741 +US 94978 Fairfax California CA Marin 041 38.068 -122.741 +US 94979 San Anselmo California CA Marin 041 38.068 -122.741 +US 94998 Novato California CA Marin 041 38.1173 -122.5684 +US 93623 Fish Camp California CA Mariposa 043 37.5169 -119.642 +US 95306 Catheys Valley California CA Mariposa 043 37.4404 -120.1438 +US 95311 Coulterville California CA Mariposa 043 37.7197 -120.1197 +US 95318 El Portal California CA Mariposa 043 37.6754 -119.8147 +US 95325 Hornitos California CA Mariposa 043 37.4676 -120.2793 +US 95338 Mariposa California CA Mariposa 043 37.4931 -119.9219 +US 95345 Midpines California CA Mariposa 043 37.5757 -119.9601 +US 95384 Valley Home California CA Mariposa County 043 37.7689 -120.8576 +US 95389 Yosemite National Park California CA Mariposa 043 37.7314 -119.6489 +US 95410 Albion California CA Mendocino 045 39.2131 -123.72 +US 95415 Boonville California CA Mendocino 045 39.0197 -123.3856 +US 95417 Branscomb California CA Mendocino 045 39.6949 -123.5527 +US 95418 Calpella California CA Mendocino 045 39.2214 -123.2154 +US 95420 Caspar California CA Mendocino 045 39.3629 -123.7944 +US 95427 Comptche California CA Mendocino 045 39.2767 -123.5873 +US 95428 Covelo California CA Mendocino 045 39.82 -123.0585 +US 95429 Dos Rios California CA Mendocino 045 39.7043 -123.3372 +US 95432 Elk California CA Mendocino 045 39.1593 -123.7219 +US 95437 Fort Bragg California CA Mendocino 045 39.4402 -123.7703 +US 95445 Gualala California CA Mendocino 045 38.8251 -123.5399 +US 95449 Hopland California CA Mendocino 045 38.938 -123.0703 +US 95454 Laytonville California CA Mendocino 045 39.6627 -123.4929 +US 95456 Littleriver California CA Mendocino 045 39.2639 -123.761 +US 95459 Manchester California CA Mendocino 045 39.0097 -123.6523 +US 95460 Mendocino California CA Mendocino 045 39.3173 -123.7739 +US 95463 Navarro California CA Mendocino 045 39.185 -123.5268 +US 95466 Philo California CA Mendocino 045 39.0933 -123.5484 +US 95468 Point Arena California CA Mendocino 045 38.9152 -123.6 +US 95469 Potter Valley California CA Mendocino 045 39.3932 -123.0647 +US 95470 Redwood Valley California CA Mendocino 045 39.2779 -123.2243 +US 95481 Talmage California CA Mendocino 045 39.1269 -123.1658 +US 95482 Ukiah California CA Mendocino 045 39.1552 -123.1951 +US 95488 Westport California CA Mendocino 045 39.6843 -123.7686 +US 95490 Willits California CA Mendocino 045 39.4493 -123.3679 +US 95494 Yorkville California CA Mendocino 045 38.9235 -123.2973 +US 95585 Leggett California CA Mendocino 045 39.8481 -123.6615 +US 95587 Piercy California CA Mendocino 045 39.9465 -123.7552 +US 93620 Dos Palos California CA Merced 047 37.0025 -120.6333 +US 93635 Los Banos California CA Merced 047 37.0627 -120.8544 +US 93636 Madera California CA Merced County 047 36.9528 -119.8806 +US 93661 Santa Rita Park California CA Merced 047 37.1869 -120.6504 +US 93665 South Dos Palos California CA Merced 047 37.0135 -120.7447 +US 95301 Atwater California CA Merced 047 37.3489 -120.6028 +US 95303 Ballico California CA Merced 047 37.4548 -120.6931 +US 95312 Cressey California CA Merced 047 37.4197 -120.6663 +US 95315 Delhi California CA Merced 047 37.4273 -120.7752 +US 95317 El Nido California CA Merced 047 37.1391 -120.5251 +US 95322 Gustine California CA Merced 047 37.2001 -121.0047 +US 95324 Hilmar California CA Merced 047 37.4002 -120.8723 +US 95333 Le Grand California CA Merced 047 37.2496 -120.2667 +US 95334 Livingston California CA Merced 047 37.3763 -120.7252 +US 95340 Merced California CA Merced 047 37.2983 -120.4649 +US 95341 Merced California CA Merced 047 37.2308 -120.5144 +US 95342 Atwater California CA Merced 047 37.3022 -120.4819 +US 95343 Merced California CA Merced 047 37.3082 -120.48 +US 95344 Merced California CA Merced 047 37.3082 -120.48 +US 95348 Merced California CA Merced 047 37.3302 -120.508 +US 95365 Planada California CA Merced 047 37.3585 -120.3124 +US 95369 Snelling California CA Merced 047 37.5354 -120.378 +US 95374 Stevinson California CA Merced 047 37.3283 -120.8764 +US 95388 Winton California CA Merced 047 37.4014 -120.6045 +US 96006 Adin California CA Modoc 049 41.2175 -120.9432 +US 96015 Canby California CA Modoc 049 41.4664 -120.9218 +US 96054 Lookout California CA Modoc 049 41.2347 -121.2156 +US 96101 Alturas California CA Modoc 049 41.4767 -120.5456 +US 96104 Cedarville California CA Modoc 049 41.4759 -120.1516 +US 96108 Davis Creek California CA Modoc 049 41.5905 -120.7277 +US 96110 Eagleville California CA Modoc 049 41.5905 -120.7277 +US 96112 Fort Bidwell California CA Modoc 049 41.8644 -120.162 +US 96115 Lake City California CA Modoc 049 41.6682 -120.1814 +US 96116 Likely California CA Modoc 049 41.2329 -120.5079 +US 93512 Benton California CA Mono 051 37.8926 -118.5647 +US 93517 Bridgeport California CA Mono 051 38.2566 -119.208 +US 93529 June Lake California CA Mono 051 37.7773 -119.0825 +US 93541 Lee Vining California CA Mono 051 37.989 -119.1234 +US 93546 Mammoth Lakes California CA Mono 051 37.6094 -118.8656 +US 96107 Coleville California CA Mono 051 38.5029 -119.4828 +US 96133 Topaz California CA Mono 051 38.6415 -119.5122 +US 93426 Bradley California CA Monterey 053 35.8093 -120.9728 +US 93450 San Ardo California CA Monterey 053 35.9857 -120.8612 +US 93901 Salinas California CA Monterey 053 36.6677 -121.6596 +US 93902 Salinas California CA Monterey 053 36.3543 -121.1329 +US 93905 Salinas California CA Monterey 053 36.6811 -121.6176 +US 93906 Salinas California CA Monterey 053 36.7103 -121.6438 +US 93907 Salinas California CA Monterey 053 36.7563 -121.6703 +US 93908 Salinas California CA Monterey 053 36.6011 -121.6729 +US 93911 Salinas California CA Monterey County 053 36.6963 -121.6689 +US 93912 Salinas California CA Monterey 053 36.3543 -121.1329 +US 93915 Salinas California CA Monterey 053 36.3543 -121.1329 +US 93920 Big Sur California CA Monterey 053 36.2458 -121.7009 +US 93921 Carmel California CA Monterey 053 36.5497 -121.9225 +US 93922 Carmel California CA Monterey 053 36.5433 -121.9263 +US 93923 Carmel California CA Monterey 053 36.5457 -121.8949 +US 93924 Carmel Valley California CA Monterey 053 36.4787 -121.7244 +US 93925 Chualar California CA Monterey 053 36.595 -121.432 +US 93926 Gonzales California CA Monterey 053 36.49 -121.4103 +US 93927 Greenfield California CA Monterey 053 36.3202 -121.2451 +US 93928 Jolon California CA Monterey 053 36.0235 -121.2138 +US 93930 King City California CA Monterey 053 36.2028 -121.1273 +US 93932 Lockwood California CA Monterey 053 35.95 -121.0626 +US 93933 Marina California CA Monterey 053 36.6849 -121.7934 +US 93940 Monterey California CA Monterey 053 36.5802 -121.8443 +US 93941 Monterey California CA Monterey County 053 36.6446 -121.805 +US 93942 Monterey California CA Monterey 053 36.3543 -121.1329 +US 93943 Monterey California CA Monterey 053 36.597 -121.8741 +US 93944 Monterey California CA Monterey 053 36.6062 -121.9089 +US 93950 Pacific Grove California CA Monterey 053 36.6167 -121.922 +US 93953 Pebble Beach California CA Monterey 053 36.5907 -121.942 +US 93954 San Lucas California CA Monterey 053 36.4574 -121.2903 +US 93955 Seaside California CA Monterey 053 36.6217 -121.7935 +US 93960 Soledad California CA Monterey 053 36.4196 -121.3243 +US 93962 Spreckels California CA Monterey 053 36.6261 -121.6555 +US 95004 Aromas California CA Monterey 053 36.8769 -121.6324 +US 95012 Castroville California CA Monterey 053 36.7732 -121.7463 +US 95039 Moss Landing California CA Monterey 053 36.8175 -121.7773 +US 94503 American Canyon California CA Napa 055 38.1668 -122.2553 +US 94508 Angwin California CA Napa 055 38.5769 -122.4477 +US 94515 Calistoga California CA Napa 055 38.5823 -122.5814 +US 94558 Napa California CA Napa 055 38.4549 -122.2564 +US 94559 Napa California CA Napa 055 38.2904 -122.2841 +US 94562 Oakville California CA Napa 055 38.4379 -122.3991 +US 94567 Pope Valley California CA Napa 055 38.6493 -122.4453 +US 94573 Rutherford California CA Napa 055 38.4665 -122.4142 +US 94574 Saint Helena California CA Napa 055 38.5138 -122.4619 +US 94576 Deer Park California CA Napa 055 38.5494 -122.4764 +US 94581 Napa California CA Napa 055 38.5096 -122.3539 +US 94599 Yountville California CA Napa 055 38.4161 -122.3616 +US 95712 Chicago Park California CA Nevada 057 39.143 -120.9666 +US 95724 Norden California CA Nevada 057 39.2966 -120.4317 +US 95728 Soda Springs California CA Nevada 057 39.317 -120.4259 +US 95924 Cedar Ridge California CA Nevada 057 39.1988 -121.02 +US 95945 Grass Valley California CA Nevada 057 39.2081 -121.0069 +US 95946 Penn Valley California CA Nevada 057 39.2019 -121.2026 +US 95949 Grass Valley California CA Nevada 057 39.1193 -121.0938 +US 95959 Nevada City California CA Nevada 057 39.3017 -120.9717 +US 95960 North San Juan California CA Nevada 057 39.3765 -121.0891 +US 95975 Rough And Ready California CA Nevada 057 39.2286 -121.1509 +US 95986 Washington California CA Nevada 057 39.3569 -120.8 +US 96111 Floriston California CA Nevada 057 39.3928 -120.0212 +US 96160 Truckee California CA Nevada 057 39.3781 -120.1864 +US 96161 Truckee California CA Nevada 057 39.3385 -120.1729 +US 96162 Truckee California CA Nevada 057 39.266 -120.6415 +US 90620 Buena Park California CA Orange 059 33.8439 -118.008 5 +US 90621 Buena Park California CA Orange 059 33.8772 -117.9893 5 +US 90622 Buena Park California CA Orange 059 33.8462 -118.0031 5 +US 90623 La Palma California CA Orange 059 33.8491 -118.0398 5 +US 90624 Buena Park California CA Orange 059 33.8584 -118.0033 5 +US 90630 Cypress California CA Orange 059 33.8181 -118.0357 5 +US 90631 La Habra California CA Orange 059 33.9331 -117.9493 5 +US 90632 La Habra California CA Orange 059 33.9143 -117.9547 5 +US 90633 La Habra California CA Orange 059 33.9345 -117.9452 5 +US 90680 Stanton California CA Orange 059 33.7991 -117.9956 5 +US 90720 Los Alamitos California CA Orange 059 33.7956 -118.0648 5 +US 90721 Los Alamitos California CA Orange 059 33.8023 -118.069 5 +US 90740 Seal Beach California CA Orange 059 33.7602 -118.0808 5 +US 90742 Sunset Beach California CA Orange 059 33.7188 -118.0699 5 +US 90743 Surfside California CA Orange 059 33.7264 -118.0833 5 +US 92601 Atwood California CA Orange County 059 33.8654 -117.83 +US 92602 Irvine California CA Orange 059 33.7419 -117.7467 5 +US 92603 Irvine California CA Orange 059 33.6245 -117.794 5 +US 92604 Irvine California CA Orange 059 33.6899 -117.7868 5 +US 92605 Huntington Beach California CA Orange 059 33.7151 -118.0077 5 +US 92606 Irvine California CA Orange 059 33.6951 -117.8224 5 +US 92607 Laguna Niguel California CA Orange 059 33.5269 -117.7117 5 +US 92609 El Toro California CA Orange County 059 33.624 -117.6908 5 +US 92610 Foothill Ranch California CA Orange 059 33.6748 -117.6649 5 +US 92612 Irvine California CA Orange 059 33.6607 -117.8264 5 +US 92613 Orange California CA Orange County 059 33.8053 -117.8348 +US 92614 Irvine California CA Orange 059 33.6829 -117.8298 5 +US 92615 Huntington Beach California CA Orange 059 33.6566 -117.9699 5 +US 92616 Irvine California CA Orange 059 33.6519 -117.8361 5 +US 92617 Irvine California CA Orange County 059 33.6425 -117.8417 +US 92618 Irvine California CA Orange 059 33.7074 -117.7054 5 +US 92619 Irvine California CA Orange 059 33.6706 -117.7645 5 +US 92620 Irvine California CA Orange 059 33.7009 -117.7564 5 +US 92621 Brea California CA Orange County 059 33.9227 -117.8891 +US 92622 Brea California CA Orange County 059 33.9172 -117.8897 +US 92623 Irvine California CA Orange 059 33.6942 -117.8126 5 +US 92624 Capistrano Beach California CA Orange 059 33.46 -117.6632 5 +US 92625 Corona Del Mar California CA Orange 059 33.6021 -117.8743 +US 92626 Costa Mesa California CA Orange 059 33.6801 -117.9085 5 +US 92627 Costa Mesa California CA Orange 059 33.6483 -117.9155 5 +US 92628 Costa Mesa California CA Orange 059 33.6401 -117.9159 5 +US 92629 Dana Point California CA Orange 059 33.4743 -117.6964 5 +US 92630 Lake Forest California CA Orange 059 33.6437 -117.6868 5 +US 92632 Fullerton California CA Orange County 059 33.8685 -117.9288 +US 92633 Fullerton California CA Orange County 059 33.8734 -117.9615 +US 92634 Fullerton California CA Orange County 059 33.8739 -117.9028 +US 92635 Fullerton California CA Orange County 059 33.9017 -117.9127 +US 92637 Laguna Hills California CA Orange 059 33.615 -117.7114 5 +US 92640 Fullerton California CA Orange County 059 33.7862 -117.9309 +US 92641 Garden Grove California CA Orange County 059 33.787 -117.9782 +US 92642 Garden Grove California CA Orange County 059 33.7777 -117.9498 +US 92643 Garden Grove California CA Orange County 059 33.7629 -117.9303 +US 92644 Garden Grove California CA Orange County 059 33.7652 -117.9695 +US 92645 Garden Grove California CA Orange County 059 33.783 -118.0256 +US 92646 Huntington Beach California CA Orange 059 33.6654 -117.9686 5 +US 92647 Huntington Beach California CA Orange 059 33.721 -118.0033 5 +US 92648 Huntington Beach California CA Orange 059 33.6773 -118.0051 5 +US 92649 Huntington Beach California CA Orange 059 33.718 -118.0505 5 +US 92650 East Irvine California CA Orange 059 33.6795 -117.7609 5 +US 92651 Laguna Beach California CA Orange 059 33.5429 -117.7813 5 +US 92652 Laguna Beach California CA Orange 059 33.543 -117.7815 5 +US 92653 Laguna Hills California CA Orange 059 33.5916 -117.6985 5 +US 92654 Laguna Hills California CA Orange 059 33.6042 -117.7154 5 +US 92655 Midway City California CA Orange 059 33.7446 -117.984 5 +US 92656 Aliso Viejo California CA Orange 059 33.5701 -117.7086 5 +US 92657 Newport Coast California CA Orange 059 33.5943 -117.8334 5 +US 92658 Newport Beach California CA Orange 059 33.6422 -117.8631 5 +US 92659 Newport Beach California CA Orange 059 33.6222 -117.9235 5 +US 92660 Newport Beach California CA Orange 059 33.6295 -117.8684 5 +US 92661 Newport Beach California CA Orange 059 33.6045 -117.9021 5 +US 92662 Newport Beach California CA Orange 059 33.6062 -117.8931 5 +US 92663 Newport Beach California CA Orange 059 33.621 -117.9321 5 +US 92664 Orange California CA Orange County 059 33.7875 -117.8934 +US 92665 Orange California CA Orange County 059 33.8298 -117.8469 +US 92667 Orange California CA Orange County 059 33.8107 -117.829 +US 92668 Orange California CA Orange County 059 33.7867 -117.8742 +US 92669 Orange California CA Orange County 059 33.792 -117.7986 +US 92670 Placentia California CA Orange County 059 33.8808 -117.8582 +US 92672 San Clemente California CA Orange 059 33.4361 -117.6231 5 +US 92673 San Clemente California CA Orange 059 33.4615 -117.6375 5 +US 92674 San Clemente California CA Orange 059 33.4409 -117.6211 5 +US 92675 San Juan Capistrano California CA Orange 059 33.5085 -117.6565 5 +US 92676 Silverado California CA Orange 059 33.7451 -117.6153 5 +US 92677 Laguna Niguel California CA Orange 059 33.5145 -117.7084 5 +US 92678 Trabuco Canyon California CA Orange 059 33.6643 -117.5896 5 +US 92679 Trabuco Canyon California CA Orange 059 33.6415 -117.5894 5 +US 92681 Tustin California CA Orange County 059 33.7456 -117.8213 +US 92683 Westminster California CA Orange 059 33.7524 -117.9939 5 +US 92684 Westminster California CA Orange 059 33.7627 -118.0072 5 +US 92685 Westminster California CA Orange 059 33.7528 -117.9951 5 +US 92686 Yorba Linda California CA Orange County 059 33.8882 -117.8014 +US 92687 Yorba Linda California CA Orange County 059 33.8811 -117.7403 +US 92688 Rancho Santa Margarita California CA Orange 059 33.6512 -117.5938 5 +US 92690 Mission Viejo California CA Orange 059 33.6117 -117.643 5 +US 92691 Mission Viejo California CA Orange 059 33.6128 -117.6622 5 +US 92692 Mission Viejo California CA Orange 059 33.6144 -117.6433 5 +US 92693 San Juan Capistrano California CA Orange 059 33.4977 -117.6651 5 +US 92694 Ladera Ranch California CA Orange 059 33.5472 -117.6238 5 +US 92697 Irvine California CA Orange 059 33.6485 -117.8387 5 +US 92698 Aliso Viejo California CA Orange 059 33.6686 -117.8386 5 +US 92701 Santa Ana California CA Orange 059 33.7523 -117.8541 5 +US 92702 Santa Ana California CA Orange 059 33.7365 -117.8714 5 +US 92703 Santa Ana California CA Orange 059 33.7489 -117.9072 5 +US 92704 Santa Ana California CA Orange 059 33.7249 -117.909 5 +US 92705 Santa Ana California CA Orange 059 33.754 -117.7919 5 +US 92706 Santa Ana California CA Orange 059 33.7691 -117.8855 5 +US 92707 Santa Ana California CA Orange 059 33.7086 -117.8701 5 +US 92708 Fountain Valley California CA Orange 059 33.7102 -117.9503 5 +US 92709 Irvine California CA Orange 059 33.6813 -117.7319 5 +US 92710 Irvine California CA Orange 059 33.7074 -117.8403 5 +US 92711 Santa Ana California CA Orange 059 33.7669 -117.8043 5 +US 92712 Santa Ana California CA Orange 059 33.7496 -117.875 5 +US 92713 Irvine California CA Orange County 059 33.6698 -117.7646 +US 92714 Irvine California CA Orange County 059 33.6881 -117.8017 +US 92715 Irvine California CA Orange County 059 33.6506 -117.8185 +US 92716 Irvine California CA Orange County 059 33.6698 -117.7646 +US 92717 Irvine California CA Orange County 059 33.6462 -117.8397 +US 92718 Irvine California CA Orange County 059 33.6648 -117.7289 +US 92725 Santa Ana California CA Orange County 059 33.7465 -117.8662 5 +US 92728 Fountain Valley California CA Orange 059 33.714 -117.9284 5 +US 92730 Irvine California CA Orange County 059 33.6698 -117.7646 +US 92735 Santa Ana California CA Orange 059 33.7188 -117.8546 5 +US 92780 Tustin California CA Orange 059 33.7364 -117.8229 5 +US 92781 Tustin California CA Orange 059 33.7369 -117.8181 5 +US 92782 Tustin California CA Orange 059 33.7346 -117.7869 5 +US 92799 Santa Ana California CA Orange 059 33.7205 -117.9098 5 +US 92801 Anaheim California CA Orange 059 33.8428 -117.9546 5 +US 92802 Anaheim California CA Orange 059 33.8085 -117.9228 5 +US 92803 Anaheim California CA Orange 059 33.8397 -117.9388 5 +US 92804 Anaheim California CA Orange 059 33.8186 -117.9729 5 +US 92805 Anaheim California CA Orange 059 33.8359 -117.9086 5 +US 92806 Anaheim California CA Orange 059 33.8356 -117.8681 5 +US 92807 Anaheim California CA Orange 059 33.8544 -117.7858 5 +US 92808 Anaheim California CA Orange 059 33.8579 -117.7513 5 +US 92809 Anaheim California CA Orange County 059 33.8426 -117.9388 5 +US 92811 Atwood California CA Orange 059 33.8674 -117.831 5 +US 92812 Anaheim California CA Orange 059 33.817 -117.9286 5 +US 92814 Anaheim California CA Orange 059 33.8173 -117.9607 5 +US 92815 Anaheim California CA Orange 059 33.8319 -117.9121 5 +US 92816 Anaheim California CA Orange 059 33.8401 -117.8867 5 +US 92817 Anaheim California CA Orange 059 33.8512 -117.7915 5 +US 92821 Brea California CA Orange 059 33.9291 -117.8845 5 +US 92822 Brea California CA Orange 059 33.9187 -117.8892 5 +US 92823 Brea California CA Orange 059 33.923 -117.798 5 +US 92825 Anaheim California CA Orange 059 33.8356 -117.9132 5 +US 92831 Fullerton California CA Orange 059 33.8873 -117.8946 5 +US 92832 Fullerton California CA Orange 059 33.868 -117.9265 5 +US 92833 Fullerton California CA Orange 059 33.8766 -117.9551 5 +US 92834 Fullerton California CA Orange 059 33.8768 -117.897 5 +US 92835 Fullerton California CA Orange 059 33.8994 -117.9063 5 +US 92836 Fullerton California CA Orange 059 33.8755 -117.9038 5 +US 92837 Fullerton California CA Orange 059 33.8695 -117.9611 5 +US 92838 Fullerton California CA Orange 059 33.8934 -117.931 5 +US 92840 Garden Grove California CA Orange 059 33.7869 -117.9273 5 +US 92841 Garden Grove California CA Orange 059 33.7817 -117.9766 5 +US 92842 Garden Grove California CA Orange 059 33.7783 -117.9456 5 +US 92843 Garden Grove California CA Orange 059 33.7671 -117.929 5 +US 92844 Garden Grove California CA Orange 059 33.7661 -117.9738 5 +US 92845 Garden Grove California CA Orange 059 33.7787 -118.0267 5 +US 92846 Garden Grove California CA Orange 059 33.788 -118.0325 5 +US 92850 Anaheim California CA Orange 059 33.8442 -117.9555 5 +US 92856 Orange California CA Orange 059 33.7841 -117.8435 5 +US 92857 Orange California CA Orange 059 33.8317 -117.8491 5 +US 92859 Orange California CA Orange 059 33.8027 -117.7867 5 +US 92861 Villa Park California CA Orange 059 33.8205 -117.8104 5 +US 92862 Orange California CA Orange 059 33.7915 -117.714 5 +US 92863 Orange California CA Orange 059 33.8153 -117.8273 5 +US 92864 Orange California CA Orange 059 33.8143 -117.8308 5 +US 92865 Orange California CA Orange 059 33.8263 -117.8511 5 +US 92866 Orange California CA Orange 059 33.7877 -117.8423 5 +US 92867 Orange California CA Orange 059 33.811 -117.8493 5 +US 92868 Orange California CA Orange 059 33.7875 -117.8776 5 +US 92869 Orange California CA Orange 059 33.7868 -117.7934 5 +US 92870 Placentia California CA Orange 059 33.8744 -117.8543 5 +US 92871 Placentia California CA Orange 059 33.8829 -117.8557 5 +US 92885 Yorba Linda California CA Orange 059 33.8911 -117.8222 5 +US 92886 Yorba Linda California CA Orange 059 33.9058 -117.7865 5 +US 92887 Yorba Linda California CA Orange 059 33.8841 -117.7304 5 +US 92899 Anaheim California CA Orange 059 33.8373 -117.8712 5 +US 95602 Auburn California CA Placer 061 38.9829 -121.0944 +US 95603 Auburn California CA Placer 061 38.9115 -121.08 +US 95604 Auburn California CA Placer 061 38.9029 -121.067 +US 95631 Foresthill California CA Placer 061 39.0682 -120.7224 +US 95648 Lincoln California CA Placer 061 38.8942 -121.2908 +US 95650 Loomis California CA Placer 061 38.8071 -121.1698 +US 95658 Newcastle California CA Placer 061 38.8763 -121.143 +US 95661 Roseville California CA Placer 061 38.7346 -121.234 +US 95663 Penryn California CA Placer 061 38.8567 -121.1791 +US 95677 Rocklin California CA Placer 061 38.7877 -121.2366 +US 95678 Roseville California CA Placer 061 38.7609 -121.2867 +US 95681 Sheridan California CA Placer 061 38.9953 -121.368 +US 95701 Alta California CA Placer 061 39.2441 -120.7531 +US 95703 Applegate California CA Placer 061 38.9955 -120.9905 +US 95713 Colfax California CA Placer 061 39.0783 -120.9549 +US 95714 Dutch Flat California CA Placer 061 39.1978 -120.8262 +US 95715 Emigrant Gap California CA Placer 061 39.2747 -120.611 +US 95717 Gold Run California CA Placer 061 39.171 -120.8601 +US 95722 Meadow Vista California CA Placer 061 39.0031 -121.0292 +US 95736 Weimar California CA Placer 061 39.0375 -120.9713 +US 95746 Granite Bay California CA Placer 061 38.7435 -121.1897 +US 95747 Roseville California CA Placer 061 38.7703 -121.3372 +US 95765 Rocklin California CA Placer 061 38.8136 -121.2677 +US 96140 Carnelian Bay California CA Placer 061 39.2319 -120.0753 +US 96141 Homewood California CA Placer 061 39.0786 -120.1734 +US 96143 Kings Beach California CA Placer 061 39.2401 -120.0233 +US 96145 Tahoe City California CA Placer 061 39.1806 -120.1445 +US 96146 Olympic Valley California CA Placer 061 39.1752 -120.1954 +US 96148 Tahoe Vista California CA Placer 061 39.2448 -120.0521 +US 95915 Belden California CA Plumas 063 39.9324 -121.3144 +US 95923 Canyondam California CA Plumas 063 40.1828 -121.1496 +US 95934 Crescent Mills California CA Plumas 063 40.0673 -120.9248 +US 95947 Greenville California CA Plumas 063 40.1699 -120.9014 +US 95956 Meadow Valley California CA Plumas 063 39.8991 -121.0298 +US 95971 Quincy California CA Plumas 063 39.9284 -120.9698 +US 95980 Storrie California CA Plumas 063 39.9175 -121.3222 +US 95983 Taylorsville California CA Plumas 063 40.0357 -120.7353 +US 95984 Twain California CA Plumas 063 40.0509 -121.1268 +US 96020 Chester California CA Plumas 063 40.2975 -121.2273 +US 96103 Blairsden-Graeagle California CA Plumas 063 39.8127 -120.6405 +US 96105 Chilcoot California CA Plumas 063 39.8057 -120.1752 +US 96106 Clio California CA Plumas 063 39.7546 -120.5951 +US 96122 Portola California CA Plumas 063 39.8005 -120.5422 +US 96129 Beckwourth California CA Plumas 063 39.7721 -120.4051 +US 96135 Vinton California CA Plumas 063 40.0235 -120.7986 +US 91718 Corona California CA Riverside 065 33.7529 -116.0556 +US 91719 Corona California CA Riverside 065 33.7529 -116.0556 +US 91720 Corona California CA Riverside 065 33.7529 -116.0556 +US 91752 Mira Loma California CA Riverside 065 33.9938 -117.5236 +US 91760 Norco California CA Riverside 065 33.7529 -116.0556 +US 92201 Indio California CA Riverside 065 33.7287 -116.0357 +US 92202 Indio California CA Riverside 065 33.7529 -116.0556 +US 92203 Indio California CA Riverside 065 33.7532 -116.2676 +US 92210 Indian Wells California CA Riverside 065 33.7163 -116.3381 +US 92211 Palm Desert California CA Riverside 065 33.7644 -116.3398 +US 92220 Banning California CA Riverside 065 33.9282 -116.8899 +US 92223 Beaumont California CA Riverside 065 33.9504 -116.9701 +US 92225 Blythe California CA Riverside 065 33.7464 -114.6681 +US 92226 Blythe California CA Riverside 065 33.5987 -114.6525 +US 92230 Cabazon California CA Riverside 065 33.9086 -116.7739 +US 92234 Cathedral City California CA Riverside 065 33.8098 -116.4665 +US 92235 Cathedral City California CA Riverside 065 33.7529 -116.0556 +US 92236 Coachella California CA Riverside 065 33.675 -116.1772 +US 92239 Desert Center California CA Riverside 065 33.809 -115.3666 +US 92240 Desert Hot Springs California CA Riverside 065 33.9531 -116.5219 +US 92241 Desert Hot Springs California CA Riverside 065 33.8763 -116.354 +US 92247 La Quinta California CA Riverside County 065 33.6736 -116.2951 +US 92253 La Quinta California CA Riverside 065 33.6685 -116.3081 +US 92254 Mecca California CA Riverside 065 33.545 -116.0187 +US 92255 Palm Desert California CA Riverside 065 33.7529 -116.0556 +US 92258 North Palm Springs California CA Riverside 065 33.925 -116.5496 +US 92260 Palm Desert California CA Riverside 065 33.6806 -116.4027 +US 92261 Palm Desert California CA Riverside 065 33.6604 -116.4082 +US 92262 Palm Springs California CA Riverside 065 33.8414 -116.5347 +US 92263 Palm Springs California CA Riverside 065 33.7611 -116.5359 +US 92264 Palm Springs California CA Riverside 065 33.8018 -116.517 +US 92270 Rancho Mirage California CA Riverside 065 33.7643 -116.4225 +US 92274 Thermal California CA Riverside 065 33.5578 -116.1572 +US 92276 Thousand Palms California CA Riverside 065 33.8082 -116.3713 +US 92282 White Water California CA Riverside 065 33.9276 -116.6932 +US 92292 Palm Springs California CA Riverside 065 33.7529 -116.0556 +US 92320 Calimesa California CA Riverside 065 33.9946 -117.043 +US 92353 Lakeview California CA Riverside County 065 33.8344 -117.108 +US 92501 Riverside California CA Riverside 065 33.9924 -117.3694 +US 92502 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92503 Riverside California CA Riverside 065 33.9208 -117.4589 +US 92504 Riverside California CA Riverside 065 33.9315 -117.4119 +US 92505 Riverside California CA Riverside 065 33.9228 -117.4867 +US 92506 Riverside California CA Riverside 065 33.9455 -117.3757 +US 92507 Riverside California CA Riverside 065 33.9761 -117.3389 +US 92508 Riverside California CA Riverside 065 33.8897 -117.3043 +US 92509 Riverside California CA Riverside 065 34.0033 -117.445 +US 92513 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92514 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92515 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92516 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92517 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92518 March Air Force Base California CA Riverside 065 33.8886 -117.2776 +US 92519 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92521 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92522 Riverside California CA Riverside 065 33.7529 -116.0556 +US 92530 Lake Elsinore California CA Riverside 065 33.6598 -117.3485 +US 92531 Lake Elsinore California CA Riverside 065 33.7529 -116.0556 +US 92532 Lake Elsinore California CA Riverside 065 33.6927 -117.303 +US 92536 Aguanga California CA Riverside 065 33.4473 -116.7997 +US 92539 Anza California CA Riverside 065 33.5688 -116.7135 +US 92543 Hemet California CA Riverside 065 33.7416 -116.973 +US 92544 Hemet California CA Riverside 065 33.739 -116.9243 +US 92545 Hemet California CA Riverside 065 33.7399 -117.0151 +US 92546 Hemet California CA Riverside 065 33.7529 -116.0556 +US 92548 Homeland California CA Riverside 065 33.7453 -117.1118 +US 92549 Idyllwild California CA Riverside 065 33.7304 -116.7107 +US 92551 Moreno Valley California CA Riverside 065 33.8814 -117.2261 +US 92552 Moreno Valley California CA Riverside 065 33.7529 -116.0556 +US 92553 Moreno Valley California CA Riverside 065 33.9157 -117.2351 +US 92554 Moreno Valley California CA Riverside 065 33.522 -115.9159 +US 92555 Moreno Valley California CA Riverside 065 33.9377 -117.1851 +US 92556 Moreno Valley California CA Riverside 065 33.7529 -116.0556 +US 92557 Moreno Valley California CA Riverside 065 33.9553 -117.2457 +US 92561 Mountain Center California CA Riverside 065 33.6401 -116.5567 +US 92562 Murrieta California CA Riverside 065 33.5631 -117.2738 +US 92563 Murrieta California CA Riverside 065 33.569 -117.1783 +US 92564 Murrieta California CA Riverside 065 33.7529 -116.0556 +US 92567 Nuevo California CA Riverside 065 33.8123 -117.1048 +US 92570 Perris California CA Riverside 065 33.7852 -117.3166 +US 92571 Perris California CA Riverside 065 33.811 -117.218 +US 92572 Perris California CA Riverside 065 33.7529 -116.0556 +US 92581 San Jacinto California CA Riverside 065 33.7529 -116.0556 +US 92582 San Jacinto California CA Riverside 065 33.7883 -116.9819 +US 92583 San Jacinto California CA Riverside 065 33.7967 -116.9324 +US 92584 Menifee California CA Riverside 065 33.6647 -117.1743 +US 92585 Sun City California CA Riverside 065 33.7467 -117.1721 +US 92586 Sun City California CA Riverside 065 33.7044 -117.1969 +US 92587 Sun City California CA Riverside 065 33.6951 -117.2529 +US 92589 Temecula California CA Riverside 065 33.7529 -116.0556 +US 92590 Temecula California CA Riverside 065 33.4903 -117.1824 +US 92591 Temecula California CA Riverside 065 33.5217 -117.1286 +US 92592 Temecula California CA Riverside 065 33.4983 -117.0958 +US 92593 Temecula California CA Riverside 065 33.7529 -116.0556 +US 92595 Wildomar California CA Riverside 065 33.6021 -117.264 +US 92596 Winchester California CA Riverside 065 33.6243 -117.0885 +US 92599 Perris California CA Riverside 065 33.7529 -116.0556 +US 92666 Orange California CA Riverside County 065 33.7853 -117.845 +US 92680 Tustin California CA Riverside County 065 33.738 -117.8189 +US 92860 Norco California CA Riverside 065 33.9247 -117.5517 +US 92877 Corona California CA Riverside 065 33.7529 -116.0556 +US 92878 Corona California CA Riverside 065 33.7529 -116.0556 +US 92879 Corona California CA Riverside 065 33.8797 -117.5354 +US 92880 Corona California CA Riverside 065 33.9208 -117.6096 +US 92881 Corona California CA Riverside 065 33.8241 -117.5198 +US 92882 Corona California CA Riverside 065 33.8419 -117.6043 +US 92883 Corona California CA Riverside 065 33.7541 -117.474 +US 94203 Sacramento California CA Sacramento 067 38.3805 -121.5554 +US 94204 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94205 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94206 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94207 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94208 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94209 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94211 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94229 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94230 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94232 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94234 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94235 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94236 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94237 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94239 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94240 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94243 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94244 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94245 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94246 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94247 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94248 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94249 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94250 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94252 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94253 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94254 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94256 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94257 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94258 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94259 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94261 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94262 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94263 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94267 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94268 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94269 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94271 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94273 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94274 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94277 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94278 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94279 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94280 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94282 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94283 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94284 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94285 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94286 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94287 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94288 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94289 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94290 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94291 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94293 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94294 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94295 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94296 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94297 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94298 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 94299 Sacramento California CA Sacramento 067 38.3774 -121.4444 +US 95608 Carmichael California CA Sacramento 067 38.6284 -121.3287 +US 95609 Carmichael California CA Sacramento 067 38.6257 -121.3272 +US 95610 Citrus Heights California CA Sacramento 067 38.6946 -121.2692 +US 95611 Citrus Heights California CA Sacramento 067 38.7072 -121.28 +US 95615 Courtland California CA Sacramento 067 38.3137 -121.563 +US 95621 Citrus Heights California CA Sacramento 067 38.6952 -121.3075 +US 95624 Elk Grove California CA Sacramento 067 38.4232 -121.3599 +US 95626 Elverta California CA Sacramento 067 38.7233 -121.4497 +US 95628 Fair Oaks California CA Sacramento 067 38.6554 -121.2611 +US 95630 Folsom California CA Sacramento 067 38.6709 -121.1529 +US 95632 Galt California CA Sacramento 067 38.2691 -121.3 +US 95638 Herald California CA Sacramento 067 38.3119 -121.1729 +US 95639 Hood California CA Sacramento 067 38.3702 -121.5143 +US 95641 Isleton California CA Sacramento 067 38.157 -121.6066 +US 95652 Mcclellan Afb California CA Sacramento 067 38.6599 -121.3981 +US 95652 Mcclellan California CA Sacramento 067 38.6621 -121.3955 +US 95655 Mather California CA Sacramento 067 38.5579 -121.291 +US 95660 North Highlands California CA Sacramento 067 38.6707 -121.3781 +US 95662 Orangevale California CA Sacramento 067 38.6845 -121.2256 5 +US 95670 Rancho Cordova California CA Sacramento 067 38.6072 -121.2761 +US 95671 Represa California CA Sacramento 067 38.7065 -121.1694 +US 95673 Rio Linda California CA Sacramento 067 38.6895 -121.4479 +US 95680 Ryde California CA Sacramento 067 38.2386 -121.5594 +US 95683 Sloughhouse California CA Sacramento 067 38.5143 -121.0964 +US 95690 Walnut Grove California CA Sacramento 067 38.2396 -121.5443 +US 95693 Wilton California CA Sacramento 067 38.3983 -121.2303 +US 95741 Rancho Cordova California CA Sacramento 067 38.5891 -121.3016 +US 95742 Rancho Cordova California CA Sacramento 067 38.5981 -121.2153 +US 95743 Rancho Cordova California CA Sacramento 067 38.5891 -121.3016 +US 95757 Elk Grove California CA Sacramento County 067 38.4081 -121.4294 +US 95758 Elk Grove California CA Sacramento 067 38.4243 -121.437 +US 95759 Elk Grove California CA Sacramento 067 38.407 -121.3752 +US 95763 Folsom California CA Sacramento 067 38.678 -121.175 +US 95811 Sacramento California CA Sacramento County 067 38.5762 -121.488 +US 95812 Sacramento California CA Sacramento 067 38.5822 -121.4943 +US 95813 Sacramento California CA Sacramento 067 38.6026 -121.4475 +US 95814 Sacramento California CA Sacramento 067 38.5804 -121.4922 +US 95815 Sacramento California CA Sacramento 067 38.6093 -121.4443 +US 95816 Sacramento California CA Sacramento 067 38.5728 -121.4675 +US 95817 Sacramento California CA Sacramento 067 38.5498 -121.4583 +US 95818 Sacramento California CA Sacramento 067 38.5568 -121.4929 +US 95819 Sacramento California CA Sacramento 067 38.5683 -121.4366 +US 95820 Sacramento California CA Sacramento 067 38.5347 -121.4451 +US 95821 Sacramento California CA Sacramento 067 38.6239 -121.3837 +US 95822 Sacramento California CA Sacramento 067 38.5091 -121.4935 +US 95823 Sacramento California CA Sacramento 067 38.4797 -121.4438 +US 95824 Sacramento California CA Sacramento 067 38.5178 -121.4419 +US 95825 Sacramento California CA Sacramento 067 38.5892 -121.4057 +US 95826 Sacramento California CA Sacramento 067 38.5539 -121.3693 +US 95827 Sacramento California CA Sacramento 067 38.5662 -121.3286 +US 95828 Sacramento California CA Sacramento 067 38.4826 -121.4006 +US 95829 Sacramento California CA Sacramento 067 38.4689 -121.344 +US 95830 Sacramento California CA Sacramento 067 38.4896 -121.2772 +US 95831 Sacramento California CA Sacramento 067 38.4962 -121.5297 +US 95832 Sacramento California CA Sacramento 067 38.4695 -121.4883 +US 95833 Sacramento California CA Sacramento 067 38.6157 -121.5053 +US 95834 Sacramento California CA Sacramento 067 38.6383 -121.5072 +US 95835 Sacramento California CA Sacramento 067 38.6626 -121.4834 +US 95836 Sacramento California CA Sacramento 067 38.7198 -121.5343 +US 95837 Sacramento California CA Sacramento 067 38.6817 -121.603 +US 95838 Sacramento California CA Sacramento 067 38.6406 -121.444 +US 95840 Sacramento California CA Sacramento 067 38.5816 -121.4933 +US 95841 Sacramento California CA Sacramento 067 38.6627 -121.3406 +US 95842 Sacramento California CA Sacramento 067 38.6865 -121.3494 +US 95843 Antelope California CA Sacramento 067 38.7159 -121.3648 +US 95851 Sacramento California CA Sacramento 067 38.6026 -121.4475 +US 95852 Sacramento California CA Sacramento 067 38.6026 -121.4475 +US 95853 Sacramento California CA Sacramento 067 38.6026 -121.4475 +US 95857 Sacramento California CA Sacramento 067 38.5816 -121.4933 +US 95860 Sacramento California CA Sacramento 067 38.6105 -121.3799 +US 95864 Sacramento California CA Sacramento 067 38.5878 -121.3769 +US 95865 Sacramento California CA Sacramento 067 38.596 -121.3978 +US 95866 Sacramento California CA Sacramento 067 38.596 -121.3978 +US 95867 Sacramento California CA Sacramento 067 38.5816 -121.4933 +US 95873 Sacramento California CA Sacramento 067 38.5816 -121.4933 +US 95887 Sacramento California CA Sacramento 067 38.5816 -121.4933 +US 95894 Sacramento California CA Sacramento 067 38.5816 -121.4933 +US 95899 Sacramento California CA Sacramento 067 38.5383 -121.5549 +US 95023 Hollister California CA San Benito 069 36.8337 -121.3439 +US 95024 Hollister California CA San Benito 069 36.8586 -121.3982 +US 95043 Paicines California CA San Benito 069 36.4985 -120.9744 +US 95045 San Juan Bautista California CA San Benito 069 36.8463 -121.5346 +US 95075 Tres Pinos California CA San Benito 069 36.767 -121.3017 +US 91701 Alta Loma California CA San Bernardino 071 34.1376 -117.5999 +US 91701 Rancho Cucamonga California CA San Bernardino 071 34.1376 -117.5999 +US 91708 Chino California CA San Bernardino 071 33.954 -117.6404 +US 91709 Chino Hills California CA San Bernardino 071 33.9797 -117.7308 +US 91710 Chino California CA San Bernardino 071 34.0125 -117.6844 +US 91729 Rancho Cucamonga California CA San Bernardino 071 34.84 -115.9671 +US 91730 Rancho Cucamonga California CA San Bernardino 071 34.107 -117.5941 +US 91737 Alta Loma California CA San Bernardino 071 34.1449 -117.5793 +US 91737 Rancho Cucamonga California CA San Bernardino 071 34.1467 -117.5803 +US 91739 Rancho Cucamonga California CA San Bernardino 071 34.1705 -117.5182 +US 91743 Guasti California CA San Bernardino 071 34.84 -115.9671 +US 91758 Ontario California CA San Bernardino 071 34.84 -115.9671 +US 91761 Ontario California CA San Bernardino 071 34.0316 -117.6187 +US 91762 Ontario California CA San Bernardino 071 34.0584 -117.6665 +US 91763 Montclair California CA San Bernardino 071 34.0733 -117.6987 +US 91764 Ontario California CA San Bernardino 071 34.0763 -117.6254 +US 91784 Upland California CA San Bernardino 071 34.141 -117.6581 +US 91785 Upland California CA San Bernardino 071 34.1144 -117.6583 +US 91786 Upland California CA San Bernardino 071 34.1144 -117.6583 +US 91798 Ontario California CA San Bernardino 071 34.84 -115.9671 +US 92242 Earp California CA San Bernardino 071 34.1652 -114.3197 +US 92248 La Quinta California CA San Bernardino County 071 33.6736 -116.2951 +US 92252 Joshua Tree California CA San Bernardino 071 34.1502 -116.3038 +US 92256 Morongo Valley California CA San Bernardino 071 34.0606 -116.5656 +US 92267 Parker Dam California CA San Bernardino 071 34.298 -114.156 +US 92268 Pioneertown California CA San Bernardino 071 34.1887 -116.5048 +US 92272 Ripley California CA San Bernardino County 071 33.5316 -114.6931 +US 92277 Twentynine Palms California CA San Bernardino 071 34.1455 -116.0601 +US 92278 Twentynine Palms California CA San Bernardino 071 34.238 -116.0604 +US 92280 Vidal California CA San Bernardino 071 34.1561 -114.5656 +US 92284 Yucca Valley California CA San Bernardino 071 34.1559 -116.4313 +US 92285 Landers California CA San Bernardino 071 34.3103 -116.5241 +US 92286 Yucca Valley California CA San Bernardino 071 34.1803 -116.35 +US 92301 Adelanto California CA San Bernardino 071 34.5841 -117.4242 +US 92304 Amboy California CA San Bernardino 071 34.599 -115.7749 +US 92305 Angelus Oaks California CA San Bernardino 071 34.1531 -116.9485 +US 92307 Apple Valley California CA San Bernardino 071 34.5291 -117.2132 +US 92308 Apple Valley California CA San Bernardino 071 34.4698 -117.1927 +US 92309 Baker California CA San Bernardino 071 35.3606 -116.0638 +US 92310 Fort Irwin California CA San Bernardino 071 35.2625 -116.6966 +US 92311 Barstow California CA San Bernardino 071 34.8914 -117.0387 +US 92312 Barstow California CA San Bernardino 071 34.2016 -116.9062 +US 92313 Grand Terrace California CA San Bernardino 071 34.031 -117.3129 +US 92314 Big Bear City California CA San Bernardino 071 34.261 -116.8131 +US 92315 Big Bear Lake California CA San Bernardino 071 34.235 -116.9053 +US 92316 Bloomington California CA San Bernardino 071 34.0662 -117.3993 +US 92317 Blue Jay California CA San Bernardino 071 34.2112 -117.0796 +US 92318 Bryn Mawr California CA San Bernardino 071 34.84 -115.9671 +US 92319 Cadiz California CA San Bernardino County 071 34.5199 -115.5119 +US 92321 Cedar Glen California CA San Bernardino 071 34.2545 -117.1533 +US 92322 Cedarpines Park California CA San Bernardino 071 34.2544 -117.3265 +US 92323 Cima California CA San Bernardino 071 34.84 -115.9671 +US 92324 Colton California CA San Bernardino 071 34.0315 -117.2874 +US 92325 Crestline California CA San Bernardino 071 34.2433 -117.2811 +US 92326 Crest Park California CA San Bernardino 071 34.84 -115.9671 +US 92327 Daggett California CA San Bernardino 071 34.8668 -116.8876 +US 92329 Phelan California CA San Bernardino 071 34.84 -115.9671 +US 92332 Essex California CA San Bernardino 071 34.5881 -115.5771 +US 92333 Fawnskin California CA San Bernardino 071 34.2583 -116.9515 +US 92334 Fontana California CA San Bernardino 071 34.84 -115.9671 +US 92335 Fontana California CA San Bernardino 071 34.0794 -117.4551 +US 92336 Fontana California CA San Bernardino 071 34.1173 -117.4378 +US 92337 Fontana California CA San Bernardino 071 34.0498 -117.4706 +US 92338 Ludlow California CA San Bernardino 071 34.9329 -115.8025 +US 92339 Forest Falls California CA San Bernardino 071 34.0937 -116.9362 +US 92340 Hesperia California CA San Bernardino 071 34.84 -115.9671 +US 92341 Green Valley Lake California CA San Bernardino 071 34.2348 -117.066 +US 92342 Helendale California CA San Bernardino 071 34.7499 -117.3367 +US 92344 Hesperia California CA San Bernardino County 071 34.4239 -117.4075 +US 92345 Hesperia California CA San Bernardino 071 34.4222 -117.3025 +US 92346 Highland California CA San Bernardino 071 34.1565 -117.1403 +US 92347 Hinkley California CA San Bernardino 071 34.9279 -117.1809 +US 92350 Loma Linda California CA San Bernardino 071 34.84 -115.9671 +US 92351 Kelso California CA San Bernardino County 071 34.9678 -115.5776 +US 92352 Lake Arrowhead California CA San Bernardino 071 34.2606 -117.2016 +US 92354 Loma Linda California CA San Bernardino 071 34.0528 -117.2513 +US 92356 Lucerne Valley California CA San Bernardino 071 34.447 -116.9189 +US 92357 Loma Linda California CA San Bernardino 071 34.84 -115.9671 +US 92358 Lytle Creek California CA San Bernardino 071 34.2558 -117.5186 +US 92359 Mentone California CA San Bernardino 071 34.0774 -117.1126 +US 92363 Needles California CA San Bernardino 071 34.7824 -114.5871 +US 92364 Nipton California CA San Bernardino 071 35.4676 -115.4814 +US 92365 Newberry Springs California CA San Bernardino 071 34.885 -116.7464 +US 92366 Mountain Pass California CA San Bernardino 071 34.84 -115.9671 +US 92368 Oro Grande California CA San Bernardino 071 34.6178 -117.3327 +US 92369 Patton California CA San Bernardino 071 34.84 -115.9671 +US 92371 Phelan California CA San Bernardino 071 34.4449 -117.5196 +US 92372 Pinon Hills California CA San Bernardino 071 34.4429 -117.6403 +US 92373 Redlands California CA San Bernardino 071 34.0397 -117.1804 +US 92374 Redlands California CA San Bernardino 071 34.065 -117.1672 +US 92375 Redlands California CA San Bernardino 071 34.84 -115.9671 +US 92376 Rialto California CA San Bernardino 071 34.1132 -117.3771 +US 92377 Rialto California CA San Bernardino 071 34.1561 -117.4042 +US 92378 Rimforest California CA San Bernardino 071 34.84 -115.9671 +US 92382 Running Springs California CA San Bernardino 071 34.2102 -117.1109 +US 92385 Skyforest California CA San Bernardino 071 34.84 -115.9671 +US 92386 Sugarloaf California CA San Bernardino 071 34.2372 -116.8277 +US 92391 Twin Peaks California CA San Bernardino 071 34.2379 -117.2348 +US 92392 Victorville California CA San Bernardino 071 34.4802 -117.4082 +US 92393 Victorville California CA San Bernardino 071 34.84 -115.9671 +US 92394 Victorville California CA San Bernardino 071 34.5563 -117.3528 +US 92395 Victorville California CA San Bernardino County 071 34.5016 -117.2944 +US 92397 Wrightwood California CA San Bernardino 071 34.3628 -117.6249 +US 92398 Yermo California CA San Bernardino 071 34.9269 -116.7093 +US 92399 Yucaipa California CA San Bernardino 071 34.0282 -117.0489 +US 92401 San Bernardino California CA San Bernardino 071 34.1105 -117.2898 +US 92402 San Bernardino California CA San Bernardino 071 34.2139 -117.1272 +US 92403 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92404 San Bernardino California CA San Bernardino 071 34.1426 -117.2606 +US 92405 San Bernardino California CA San Bernardino 071 34.1446 -117.3013 +US 92406 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92407 San Bernardino California CA San Bernardino 071 34.2166 -117.3908 +US 92408 San Bernardino California CA San Bernardino 071 34.0831 -117.2711 +US 92409 San Bernardino California CA San Bernardino County 071 34.1037 -117.2413 +US 92410 San Bernardino California CA San Bernardino 071 34.1069 -117.2975 +US 92411 San Bernardino California CA San Bernardino 071 34.1214 -117.3172 +US 92412 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92413 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92414 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92415 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92416 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92418 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92420 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92423 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92424 San Bernardino California CA San Bernardino 071 34.84 -115.9671 +US 92427 San Bernardino California CA San Bernardino 071 34.2622 -116.8615 +US 93558 Red Mountain California CA San Bernardino 071 35.3479 -117.6214 +US 93562 Trona California CA San Bernardino 071 35.7481 -117.3808 +US 93592 Trona California CA San Bernardino 071 34.84 -115.9671 +US 91462 Los Angeles California CA San Diego County 073 34.2011 -118.4742 +US 91901 Alpine California CA San Diego 073 32.8282 -116.7543 +US 91902 Bonita California CA San Diego 073 32.6671 -117.0221 +US 91903 Alpine California CA San Diego 073 33.0169 -116.846 +US 91905 Boulevard California CA San Diego 073 32.6719 -116.32 +US 91906 Campo California CA San Diego 073 32.6605 -116.4905 +US 91908 Bonita California CA San Diego 073 33.0169 -116.846 +US 91909 Chula Vista California CA San Diego 073 33.0169 -116.846 +US 91910 Chula Vista California CA San Diego 073 32.6371 -117.0676 +US 91911 Chula Vista California CA San Diego 073 32.6084 -117.0565 +US 91912 Chula Vista California CA San Diego 073 33.0169 -116.846 +US 91913 Chula Vista California CA San Diego 073 32.6513 -116.9852 +US 91914 Chula Vista California CA San Diego 073 32.6587 -116.9652 +US 91915 Chula Vista California CA San Diego 073 32.6315 -116.9408 +US 91916 Descanso California CA San Diego 073 32.873 -116.6027 +US 91917 Dulzura California CA San Diego 073 32.6152 -116.7285 +US 91921 Chula Vista California CA San Diego 073 33.0169 -116.846 +US 91931 Guatay California CA San Diego 073 33.0169 -116.846 +US 91932 Imperial Beach California CA San Diego 073 32.5783 -117.1148 +US 91933 Imperial Beach California CA San Diego 073 33.0169 -116.846 +US 91934 Jacumba California CA San Diego 073 32.6249 -116.1952 +US 91935 Jamul California CA San Diego 073 32.7163 -116.8323 +US 91941 La Mesa California CA San Diego 073 32.7604 -117.0115 +US 91942 La Mesa California CA San Diego 073 32.7835 -117.0189 +US 91943 La Mesa California CA San Diego 073 33.0169 -116.846 +US 91944 La Mesa California CA San Diego 073 33.0169 -116.846 +US 91945 Lemon Grove California CA San Diego 073 32.7332 -117.0326 +US 91946 Lemon Grove California CA San Diego 073 33.0169 -116.846 +US 91947 Lincoln Acres California CA San Diego 073 33.0169 -116.846 +US 91948 Mount Laguna California CA San Diego 073 33.0169 -116.846 +US 91950 National City California CA San Diego 073 32.6749 -117.0897 +US 91951 National City California CA San Diego 073 33.0169 -116.846 +US 91962 Pine Valley California CA San Diego 073 32.835 -116.5127 +US 91963 Potrero California CA San Diego 073 32.6205 -116.6037 +US 91976 Spring Valley California CA San Diego 073 33.0169 -116.846 +US 91977 Spring Valley California CA San Diego 073 32.724 -116.9976 +US 91978 Spring Valley California CA San Diego 073 32.7329 -116.9596 +US 91979 Spring Valley California CA San Diego 073 33.0169 -116.846 +US 91980 Tecate California CA San Diego 073 32.5889 -116.6192 +US 91987 Tecate California CA San Diego 073 33.0169 -116.846 +US 91990 Potrero California CA San Diego 073 33.0169 -116.846 +US 92003 Bonsall California CA San Diego 073 33.294 -117.1897 +US 92004 Borrego Springs California CA San Diego 073 33.2386 -116.3514 +US 92007 Cardiff By The Sea California CA San Diego 073 33.023 -117.2745 +US 92008 Carlsbad California CA San Diego 073 33.1602 -117.325 +US 92009 Carlsbad California CA San Diego 073 33.0954 -117.2619 +US 92010 Carlsbad California CA San Diego County 073 33.1639 -117.3009 +US 92011 Carlsbad California CA San Diego 073 33.1072 -117.2943 +US 92013 Carlsbad California CA San Diego 073 33.0169 -116.846 +US 92014 Del Mar California CA San Diego 073 32.9665 -117.249 +US 92018 Carlsbad California CA San Diego 073 33.0169 -116.846 +US 92019 El Cajon California CA San Diego 073 32.7777 -116.9191 +US 92020 El Cajon California CA San Diego 073 32.7928 -116.9665 +US 92021 El Cajon California CA San Diego 073 32.8178 -116.9223 +US 92022 El Cajon California CA San Diego 073 33.0169 -116.846 +US 92023 Encinitas California CA San Diego 073 33.036 -117.292 +US 92024 Encinitas California CA San Diego 073 33.0535 -117.2689 +US 92025 Escondido California CA San Diego 073 33.1101 -117.07 +US 92026 Escondido California CA San Diego 073 33.1605 -117.0978 +US 92027 Escondido California CA San Diego 073 33.1388 -117.052 +US 92028 Fallbrook California CA San Diego 073 33.369 -117.229 +US 92029 Escondido California CA San Diego 073 33.0895 -117.1128 +US 92030 Escondido California CA San Diego 073 33.0169 -116.846 +US 92033 Escondido California CA San Diego 073 33.0169 -116.846 +US 92036 Julian California CA San Diego 073 33.0534 -116.5658 +US 92037 La Jolla California CA San Diego 073 32.8455 -117.2521 +US 92038 La Jolla California CA San Diego 073 33.0169 -116.846 +US 92039 La Jolla California CA San Diego 073 33.0169 -116.846 +US 92040 Lakeside California CA San Diego 073 32.8562 -116.9201 +US 92046 Escondido California CA San Diego 073 33.0169 -116.846 +US 92049 Oceanside California CA San Diego 073 33.0169 -116.846 +US 92051 Oceanside California CA San Diego 073 33.0169 -116.846 +US 92052 Oceanside California CA San Diego 073 33.0169 -116.846 +US 92054 Oceanside California CA San Diego 073 33.2072 -117.3573 +US 92055 Camp Pendleton California CA San Diego 073 33.0169 -116.846 +US 92056 Oceanside California CA San Diego 073 33.1968 -117.2831 +US 92057 Oceanside California CA San Diego 073 33.2407 -117.3025 +US 92058 Oceanside California CA San Diego 073 33.2696 -117.3423 +US 92059 Pala California CA San Diego 073 33.3777 -117.0717 +US 92060 Palomar Mountain California CA San Diego 073 33.0169 -116.846 +US 92061 Pauma Valley California CA San Diego 073 33.3063 -116.9596 +US 92064 Poway California CA San Diego 073 32.9756 -117.0402 +US 92065 Ramona California CA San Diego 073 33.0293 -116.8535 +US 92066 Ranchita California CA San Diego 073 33.2405 -116.5391 +US 92067 Rancho Santa Fe California CA San Diego 073 33.005 -117.2157 +US 92068 San Luis Rey California CA San Diego 073 33.0169 -116.846 +US 92069 San Marcos California CA San Diego 073 33.1444 -117.1697 +US 92070 Santa Ysabel California CA San Diego 073 33.1476 -116.6963 +US 92071 Santee California CA San Diego 073 32.8486 -116.9862 +US 92072 Santee California CA San Diego 073 33.0169 -116.846 +US 92074 Poway California CA San Diego 073 33.0169 -116.846 +US 92075 Solana Beach California CA San Diego 073 32.9937 -117.2598 +US 92078 San Marcos California CA San Diego 073 33.1193 -117.185 +US 92079 San Marcos California CA San Diego 073 33.0169 -116.846 +US 92081 Vista California CA San Diego County 073 33.1644 -117.2403 +US 92082 Valley Center California CA San Diego 073 33.249 -117.0122 +US 92083 Vista California CA San Diego 073 33.1978 -117.2482 +US 92084 Vista California CA San Diego 073 33.2131 -117.2243 +US 92085 Vista California CA San Diego 073 33.0169 -116.846 +US 92086 Warner Springs California CA San Diego 073 33.3096 -116.6527 +US 92088 Fallbrook California CA San Diego 073 33.0169 -116.846 +US 92090 El Cajon California CA San Diego 073 33.0169 -116.846 +US 92091 Rancho Santa Fe California CA San Diego 073 32.9623 -117.0462 +US 92092 La Jolla California CA San Diego 073 33.0169 -116.846 +US 92093 La Jolla California CA San Diego 073 33.0169 -116.846 +US 92096 San Marcos California CA San Diego 073 33.0169 -116.846 +US 92101 San Diego California CA San Diego 073 32.7185 -117.1593 +US 92102 San Diego California CA San Diego 073 32.7139 -117.1219 +US 92103 San Diego California CA San Diego 073 32.7466 -117.1636 +US 92104 San Diego California CA San Diego 073 32.7454 -117.1272 +US 92105 San Diego California CA San Diego 073 32.7423 -117.0947 +US 92106 San Diego California CA San Diego 073 32.7272 -117.2268 +US 92107 San Diego California CA San Diego 073 32.7425 -117.2433 +US 92108 San Diego California CA San Diego 073 32.7783 -117.1335 +US 92109 San Diego California CA San Diego 073 32.7969 -117.2405 +US 92110 San Diego California CA San Diego 073 32.7635 -117.2028 +US 92111 San Diego California CA San Diego 073 32.7972 -117.1708 +US 92112 San Diego California CA San Diego 073 33.0169 -116.846 +US 92113 San Diego California CA San Diego 073 32.697 -117.1153 +US 92114 San Diego California CA San Diego 073 32.7059 -117.0524 +US 92115 San Diego California CA San Diego 073 32.7607 -117.0721 +US 92116 San Diego California CA San Diego 073 32.7624 -117.1242 +US 92117 San Diego California CA San Diego 073 32.8239 -117.1965 +US 92118 Coronado California CA San Diego 073 32.6807 -117.1698 +US 92119 San Diego California CA San Diego 073 32.8036 -117.0261 +US 92120 San Diego California CA San Diego 073 32.7958 -117.0707 +US 92121 San Diego California CA San Diego 073 32.8919 -117.2035 +US 92122 San Diego California CA San Diego 073 32.8577 -117.2115 +US 92123 San Diego California CA San Diego 073 32.7973 -117.1392 +US 92124 San Diego California CA San Diego 073 32.8201 -117.0986 +US 92126 San Diego California CA San Diego 073 32.9161 -117.1402 +US 92127 San Diego California CA San Diego 073 33.0279 -117.0856 +US 92128 San Diego California CA San Diego 073 33.0067 -117.069 +US 92129 San Diego California CA San Diego 073 32.9652 -117.1213 +US 92130 San Diego California CA San Diego 073 32.9555 -117.2252 +US 92131 San Diego California CA San Diego 073 32.9123 -117.0898 +US 92132 San Diego California CA San Diego 073 32.6437 -117.1384 +US 92133 San Diego California CA San Diego 073 32.7335 -117.2165 +US 92134 San Diego California CA San Diego 073 32.7242 -117.1466 +US 92135 San Diego California CA San Diego 073 33.0169 -116.846 +US 92136 San Diego California CA San Diego 073 32.6834 -117.1219 +US 92137 San Diego California CA San Diego 073 32.8538 -117.1197 +US 92138 San Diego California CA San Diego 073 33.0169 -116.846 +US 92139 San Diego California CA San Diego 073 32.6806 -117.0474 +US 92140 San Diego California CA San Diego 073 32.7434 -117.2004 +US 92142 San Diego California CA San Diego 073 33.0169 -116.846 +US 92143 San Ysidro California CA San Diego 073 33.0169 -116.846 +US 92145 San Diego California CA San Diego 073 32.8891 -117.1005 +US 92147 San Diego California CA San Diego 073 33.0169 -116.846 +US 92149 San Diego California CA San Diego 073 33.0169 -116.846 +US 92150 San Diego California CA San Diego 073 33.0169 -116.846 +US 92152 San Diego California CA San Diego 073 33.0169 -116.846 +US 92153 San Diego California CA San Diego 073 33.0169 -116.846 +US 92154 San Diego California CA San Diego 073 32.5753 -117.0707 +US 92155 San Diego California CA San Diego 073 32.6716 -117.1657 +US 92158 San Diego California CA San Diego 073 33.0169 -116.846 +US 92159 San Diego California CA San Diego 073 33.0169 -116.846 +US 92160 San Diego California CA San Diego 073 33.0169 -116.846 +US 92161 San Diego California CA San Diego 073 32.8718 -117.2291 +US 92162 San Diego California CA San Diego 073 33.0169 -116.846 +US 92163 San Diego California CA San Diego 073 33.0169 -116.846 +US 92164 San Diego California CA San Diego 073 33.0169 -116.846 +US 92165 San Diego California CA San Diego 073 33.0169 -116.846 +US 92166 San Diego California CA San Diego 073 33.0169 -116.846 +US 92167 San Diego California CA San Diego 073 33.0169 -116.846 +US 92168 San Diego California CA San Diego 073 33.0169 -116.846 +US 92169 San Diego California CA San Diego 073 33.0169 -116.846 +US 92170 San Diego California CA San Diego 073 33.0169 -116.846 +US 92171 San Diego California CA San Diego 073 33.0169 -116.846 +US 92172 San Diego California CA San Diego 073 33.0169 -116.846 +US 92173 San Ysidro California CA San Diego 073 32.5626 -117.043 +US 92174 San Diego California CA San Diego 073 33.0169 -116.846 +US 92175 San Diego California CA San Diego 073 33.0169 -116.846 +US 92176 San Diego California CA San Diego 073 33.0169 -116.846 +US 92177 San Diego California CA San Diego 073 33.0169 -116.846 +US 92178 Coronado California CA San Diego 073 33.0169 -116.846 +US 92179 San Diego California CA San Diego 073 32.5726 -116.9187 +US 92180 National City California CA San Diego County 073 32.7151 -117.1563 +US 92181 National City California CA San Diego County 073 32.7151 -117.1563 +US 92182 San Diego California CA San Diego 073 32.7751 -117.0762 +US 92184 San Diego California CA San Diego 073 33.0169 -116.846 +US 92185 National City California CA San Diego County 073 32.7151 -117.1563 +US 92186 San Diego California CA San Diego 073 33.0169 -116.846 +US 92187 San Diego California CA San Diego 073 33.0169 -116.846 +US 92188 San Diego California CA San Diego County 073 32.7234 -117.1678 +US 92189 San Diego California CA San Diego County 073 32.7234 -117.1678 +US 92190 San Diego California CA San Diego 073 33.0169 -116.846 +US 92191 San Diego California CA San Diego 073 33.0169 -116.846 +US 92192 San Diego California CA San Diego 073 33.0169 -116.846 +US 92193 San Diego California CA San Diego 073 33.0169 -116.846 +US 92194 San Diego California CA San Diego 073 33.0169 -116.846 +US 92195 San Diego California CA San Diego 073 33.0169 -116.846 +US 92196 San Diego California CA San Diego 073 33.0169 -116.846 +US 92197 San Diego California CA San Diego 073 33.0169 -116.846 +US 92198 San Diego California CA San Diego 073 33.0169 -116.846 +US 92199 San Diego California CA San Diego 073 32.7516 -117.1918 +US 94101 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94102 San Francisco California CA San Francisco 075 37.7813 -122.4167 +US 94103 San Francisco California CA San Francisco 075 37.7725 -122.4147 +US 94104 San Francisco California CA San Francisco 075 37.7915 -122.4018 +US 94105 San Francisco California CA San Francisco 075 37.7864 -122.3892 +US 94106 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94107 San Francisco California CA San Francisco 075 37.7621 -122.3971 +US 94108 San Francisco California CA San Francisco 075 37.7929 -122.4079 +US 94109 San Francisco California CA San Francisco 075 37.7917 -122.4186 +US 94110 San Francisco California CA San Francisco 075 37.7509 -122.4153 +US 94111 San Francisco California CA San Francisco 075 37.7974 -122.4001 +US 94112 San Francisco California CA San Francisco 075 37.7195 -122.4411 +US 94114 San Francisco California CA San Francisco 075 37.7587 -122.433 +US 94115 San Francisco California CA San Francisco 075 37.7856 -122.4358 +US 94116 San Francisco California CA San Francisco 075 37.7441 -122.4863 +US 94117 San Francisco California CA San Francisco 075 37.7712 -122.4413 +US 94118 San Francisco California CA San Francisco 075 37.7812 -122.4614 +US 94119 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94120 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94121 San Francisco California CA San Francisco 075 37.7786 -122.4892 +US 94122 San Francisco California CA San Francisco 075 37.7593 -122.4836 +US 94123 San Francisco California CA San Francisco 075 37.7999 -122.4342 +US 94124 San Francisco California CA San Francisco 075 37.7309 -122.3886 +US 94125 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94126 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94127 San Francisco California CA San Francisco 075 37.7354 -122.4571 +US 94129 San Francisco California CA San Francisco 075 37.8005 -122.465 +US 94130 San Francisco California CA San Francisco 075 37.8231 -122.3693 +US 94131 San Francisco California CA San Francisco 075 37.745 -122.4383 +US 94132 San Francisco California CA San Francisco 075 37.7211 -122.4754 +US 94133 San Francisco California CA San Francisco 075 37.8002 -122.4091 +US 94134 San Francisco California CA San Francisco 075 37.719 -122.4096 +US 94135 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94136 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94137 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94138 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94139 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94140 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94141 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94142 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94143 San Francisco California CA San Francisco 075 37.7631 -122.4586 +US 94144 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94145 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94146 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94147 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94150 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94151 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94152 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94153 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94154 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94155 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94156 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94157 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94158 San Francisco California CA San Francisco County 075 37.7694 -122.3867 +US 94159 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94160 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94161 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94162 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94163 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94164 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94165 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94166 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94167 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94168 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94169 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94170 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94171 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94172 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94175 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94177 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94188 San Francisco California CA San Francisco 075 37.7848 -122.7278 +US 94199 San Francisco California CA San Francisco County 075 37.775 -122.4183 +US 95201 Stockton California CA San Joaquin 077 37.958 -121.2876 +US 95202 Stockton California CA San Joaquin 077 37.9606 -121.2871 +US 95203 Stockton California CA San Joaquin 077 37.9532 -121.3116 +US 95204 Stockton California CA San Joaquin 077 37.9743 -121.3154 +US 95205 Stockton California CA San Joaquin 077 37.9625 -121.2624 +US 95206 Stockton California CA San Joaquin 077 37.9177 -121.3123 +US 95207 Stockton California CA San Joaquin 077 38.0024 -121.3238 +US 95208 Stockton California CA San Joaquin 077 37.9304 -121.436 +US 95209 Stockton California CA San Joaquin 077 38.0377 -121.3445 +US 95210 Stockton California CA San Joaquin 077 38.025 -121.2972 +US 95211 Stockton California CA San Joaquin 077 37.9809 -121.311 +US 95212 Stockton California CA San Joaquin 077 38.0315 -121.2589 +US 95213 Stockton California CA San Joaquin 077 37.9054 -121.2222 +US 95215 Stockton California CA San Joaquin 077 37.9551 -121.2041 +US 95219 Stockton California CA San Joaquin 077 38.01 -121.3698 +US 95220 Acampo California CA San Joaquin 077 38.2004 -121.2186 +US 95227 Clements California CA San Joaquin 077 38.1929 -121.0811 +US 95230 Farmington California CA San Joaquin 077 37.9945 -120.7926 +US 95231 French Camp California CA San Joaquin 077 37.878 -121.2827 +US 95234 Holt California CA San Joaquin 077 37.9344 -121.4261 +US 95236 Linden California CA San Joaquin 077 38.032 -121.0493 +US 95237 Lockeford California CA San Joaquin 077 38.1613 -121.1424 +US 95240 Lodi California CA San Joaquin 077 38.1222 -121.2555 +US 95241 Lodi California CA San Joaquin 077 38.1327 -121.2724 +US 95242 Lodi California CA San Joaquin 077 38.1308 -121.3345 +US 95253 Victor California CA San Joaquin 077 38.138 -121.205 +US 95258 Woodbridge California CA San Joaquin 077 38.1551 -121.3086 +US 95267 Stockton California CA San Joaquin 077 38.0003 -121.3174 +US 95269 Stockton California CA San Joaquin 077 38.0187 -121.3225 +US 95290 Stockton California CA San Joaquin 077 37.9577 -121.2897 +US 95296 Lyoth California CA San Joaquin 077 38.0282 -121.2984 +US 95297 Stockton California CA San Joaquin 077 38.0025 -121.324 +US 95298 Stockton California CA San Joaquin 077 37.9577 -121.2897 +US 95304 Tracy California CA San Joaquin 077 37.7319 -121.4096 +US 95304 Banta California CA San Joaquin 077 37.7149 -121.385 +US 95320 Escalon California CA San Joaquin 077 37.7983 -121.0006 +US 95330 Lathrop California CA San Joaquin 077 37.8209 -121.2827 +US 95336 Manteca California CA San Joaquin 077 37.8134 -121.2132 +US 95337 Manteca California CA San Joaquin 077 37.7808 -121.2344 +US 95366 Ripon California CA San Joaquin 077 37.7491 -121.1284 +US 95376 Tracy California CA San Joaquin 077 37.7383 -121.4345 +US 95377 Tracy California CA San Joaquin 077 37.6567 -121.4955 +US 95378 Tracy California CA San Joaquin 077 37.6761 -121.433 +US 95385 Vernalis California CA San Joaquin 077 37.6176 -121.2581 +US 95391 Tracy California CA San Joaquin 077 37.7695 -121.5397 +US 95686 Thornton California CA San Joaquin 077 38.2261 -121.4236 +US 93401 San Luis Obispo California CA San Luis Obispo 079 35.2635 -120.6509 +US 93402 Los Osos California CA San Luis Obispo 079 35.3172 -120.8333 +US 93403 San Luis Obispo California CA San Luis Obispo 079 35.3471 -120.4553 +US 93405 San Luis Obispo California CA San Luis Obispo 079 35.2901 -120.6817 +US 93406 San Luis Obispo California CA San Luis Obispo 079 35.3471 -120.4553 +US 93407 San Luis Obispo California CA San Luis Obispo 079 35.3471 -120.4553 +US 93408 San Luis Obispo California CA San Luis Obispo 079 35.3471 -120.4553 +US 93409 San Luis Obispo California CA San Luis Obispo 079 35.2211 -120.6364 +US 93410 San Luis Obispo California CA San Luis Obispo 079 35.3471 -120.4553 +US 93412 Los Osos California CA San Luis Obispo 079 35.3471 -120.4553 +US 93420 Arroyo Grande California CA San Luis Obispo 079 35.1661 -120.4651 +US 93421 Arroyo Grande California CA San Luis Obispo 079 35.3471 -120.4553 +US 93422 Atascadero California CA San Luis Obispo 079 35.4754 -120.6638 +US 93423 Atascadero California CA San Luis Obispo 079 35.4282 -120.7695 +US 93424 Avila Beach California CA San Luis Obispo 079 35.1903 -120.7178 +US 93428 Cambria California CA San Luis Obispo 079 35.5566 -121.084 +US 93430 Cayucos California CA San Luis Obispo 079 35.4446 -120.8908 +US 93431 Cholame California CA San Luis Obispo County 079 35.5438 -120.1948 +US 93432 Creston California CA San Luis Obispo 079 35.4779 -120.4361 +US 93433 Grover Beach California CA San Luis Obispo 079 35.121 -120.6173 +US 93435 Harmony California CA San Luis Obispo 079 35.4919 -120.9763 +US 93442 Morro Bay California CA San Luis Obispo 079 35.3795 -120.8447 +US 93443 Morro Bay California CA San Luis Obispo 079 35.3471 -120.4553 +US 93444 Nipomo California CA San Luis Obispo 079 35.0298 -120.4894 +US 93445 Oceano California CA San Luis Obispo 079 35.1019 -120.608 +US 93446 Paso Robles California CA San Luis Obispo 079 35.6406 -120.7003 +US 93447 Paso Robles California CA San Luis Obispo 079 35.7562 -120.6935 +US 93448 Pismo Beach California CA San Luis Obispo 079 35.3471 -120.4553 +US 93449 Pismo Beach California CA San Luis Obispo 079 35.1578 -120.6522 +US 93451 San Miguel California CA San Luis Obispo 079 35.9004 -120.5929 +US 93452 San Simeon California CA San Luis Obispo 079 35.6668 -121.144 +US 93453 Santa Margarita California CA San Luis Obispo 079 35.3584 -120.2596 +US 93461 Shandon California CA San Luis Obispo 079 35.6513 -120.372 +US 93465 Templeton California CA San Luis Obispo 079 35.5551 -120.7107 +US 93475 Oceano California CA San Luis Obispo County 079 35.1004 -120.6111 +US 93483 Grover Beach California CA San Luis Obispo 079 35.3471 -120.4553 +US 94002 Belmont California CA San Mateo 081 37.5174 -122.2927 +US 94003 Belmont California CA San Mateo 081 37.3811 -122.3348 +US 94005 Brisbane California CA San Mateo 081 37.6811 -122.4001 +US 94010 Burlingame California CA San Mateo 081 37.5671 -122.3676 +US 94011 Burlingame California CA San Mateo 081 37.3811 -122.3348 +US 94012 Burlingame California CA San Mateo 081 37.3811 -122.3348 +US 94013 Daly City California CA San Mateo County 081 37.6987 -122.4623 +US 94014 Daly City California CA San Mateo 081 37.6875 -122.4388 +US 94015 Daly City California CA San Mateo 081 37.6787 -122.478 +US 94016 Daly City California CA San Mateo 081 37.3811 -122.3348 +US 94017 Daly City California CA San Mateo 081 37.3811 -122.3348 +US 94018 El Granada California CA San Mateo 081 37.5101 -122.4734 +US 94019 Half Moon Bay California CA San Mateo 081 37.4791 -122.4459 +US 94020 La Honda California CA San Mateo 081 37.2726 -122.2495 +US 94021 Loma Mar California CA San Mateo 081 37.2708 -122.2807 +US 94025 Menlo Park California CA San Mateo 081 37.4396 -122.1864 +US 94026 Menlo Park California CA San Mateo 081 37.3811 -122.3348 +US 94027 Atherton California CA San Mateo 081 37.4563 -122.2002 +US 94028 Portola Valley California CA San Mateo 081 37.3702 -122.2182 +US 94029 Menlo Park California CA San Mateo 081 37.3811 -122.3348 +US 94030 Millbrae California CA San Mateo 081 37.6004 -122.402 +US 94031 Millbrae California CA San Mateo 081 37.3811 -122.3348 +US 94037 Montara California CA San Mateo 081 37.5428 -122.5052 +US 94038 Moss Beach California CA San Mateo 081 37.531 -122.5068 +US 94044 Pacifica California CA San Mateo 081 37.6196 -122.4816 +US 94045 Pacifica California CA San Mateo 081 37.3811 -122.3348 +US 94059 Redwood City California CA San Mateo 081 37.3811 -122.3348 +US 94060 Pescadero California CA San Mateo 081 37.2065 -122.3649 +US 94061 Redwood City California CA San Mateo 081 37.4647 -122.2304 +US 94062 Redwood City California CA San Mateo 081 37.4245 -122.296 +US 94063 Redwood City California CA San Mateo 081 37.4815 -122.2091 +US 94064 Redwood City California CA San Mateo 081 37.3811 -122.3348 +US 94065 Redwood City California CA San Mateo 081 37.5331 -122.2486 +US 94066 San Bruno California CA San Mateo 081 37.6247 -122.429 +US 94067 San Bruno California CA San Mateo 081 37.3811 -122.3348 +US 94070 San Carlos California CA San Mateo 081 37.4969 -122.2674 +US 94071 San Carlos California CA San Mateo 081 37.3811 -122.3348 +US 94074 San Gregorio California CA San Mateo 081 37.3255 -122.3556 +US 94080 South San Francisco California CA San Mateo 081 37.6574 -122.4235 +US 94083 South San Francisco California CA San Mateo 081 37.3811 -122.3348 +US 94096 San Bruno California CA San Mateo 081 37.3811 -122.3348 +US 94098 San Bruno California CA San Mateo 081 37.3811 -122.3348 +US 94099 South San Francisco California CA San Mateo 081 37.3811 -122.3348 +US 94128 San Francisco California CA San Mateo 081 37.6216 -122.3929 +US 94303 Palo Alto California CA San Mateo 081 37.4673 -122.1388 +US 94307 Palo Alto California CA San Mateo 081 37.3811 -122.3348 +US 94308 Palo Alto California CA San Mateo 081 37.3811 -122.3348 +US 94401 San Mateo California CA San Mateo 081 37.5735 -122.3225 +US 94402 San Mateo California CA San Mateo 081 37.5507 -122.3276 +US 94403 San Mateo California CA San Mateo 081 37.5395 -122.2998 +US 94404 San Mateo California CA San Mateo 081 37.5538 -122.27 +US 94405 San Mateo California CA San Mateo 081 37.3811 -122.3348 +US 94407 San Mateo California CA San Mateo 081 37.3811 -122.3348 +US 94408 San Mateo California CA San Mateo 081 37.3811 -122.3348 +US 94409 San Mateo California CA San Mateo 081 37.3811 -122.3348 +US 94497 San Mateo California CA San Mateo 081 37.5347 -122.3259 +US 93013 Carpinteria California CA Santa Barbara 083 34.4036 -119.5183 +US 93014 Carpinteria California CA Santa Barbara 083 34.2628 -119.8486 +US 93067 Summerland California CA Santa Barbara 083 34.422 -119.5926 +US 93101 Santa Barbara California CA Santa Barbara 083 34.4197 -119.7078 +US 93102 Santa Barbara California CA Santa Barbara 083 34.2628 -119.8486 +US 93103 Santa Barbara California CA Santa Barbara 083 34.4291 -119.6833 +US 93105 Santa Barbara California CA Santa Barbara 083 34.4369 -119.7285 +US 93106 Santa Barbara California CA Santa Barbara 083 34.4329 -119.8371 +US 93107 Santa Barbara California CA Santa Barbara 083 34.4218 -119.8637 +US 93108 Santa Barbara California CA Santa Barbara 083 34.4378 -119.6159 +US 93109 Santa Barbara California CA Santa Barbara 083 34.4038 -119.7194 +US 93110 Santa Barbara California CA Santa Barbara 083 34.4418 -119.7647 +US 93111 Santa Barbara California CA Santa Barbara 083 34.4453 -119.8025 +US 93116 Goleta California CA Santa Barbara 083 34.2628 -119.8486 +US 93117 Goleta California CA Santa Barbara 083 34.4296 -119.8612 +US 93118 Goleta California CA Santa Barbara 083 34.2628 -119.8486 +US 93120 Santa Barbara California CA Santa Barbara 083 34.2628 -119.8486 +US 93121 Santa Barbara California CA Santa Barbara 083 34.2628 -119.8486 +US 93130 Santa Barbara California CA Santa Barbara 083 34.2628 -119.8486 +US 93140 Santa Barbara California CA Santa Barbara 083 34.2628 -119.8486 +US 93150 Santa Barbara California CA Santa Barbara 083 34.2628 -119.8486 +US 93160 Santa Barbara California CA Santa Barbara 083 34.2628 -119.8486 +US 93190 Santa Barbara California CA Santa Barbara 083 34.2628 -119.8486 +US 93199 Goleta California CA Santa Barbara 083 34.2628 -119.8486 +US 93214 Cuyama California CA Santa Barbara County 083 34.8934 -119.686 +US 93254 New Cuyama California CA Santa Barbara 083 34.9967 -119.8238 +US 93427 Buellton California CA Santa Barbara 083 34.6209 -120.1922 +US 93429 Casmalia California CA Santa Barbara 083 34.8458 -120.535 +US 93434 Guadalupe California CA Santa Barbara 083 34.96 -120.5703 +US 93436 Lompoc California CA Santa Barbara 083 34.6583 -120.4506 +US 93437 Lompoc California CA Santa Barbara 083 34.7532 -120.5171 +US 93438 Lompoc California CA Santa Barbara 083 34.2628 -119.8486 +US 93440 Los Alamos California CA Santa Barbara 083 34.7457 -120.2049 +US 93441 Los Olivos California CA Santa Barbara 083 34.693 -120.0685 +US 93454 Santa Maria California CA Santa Barbara 083 34.9545 -120.4325 +US 93455 Santa Maria California CA Santa Barbara 083 34.8286 -120.4268 +US 93456 Santa Maria California CA Santa Barbara 083 35.0277 -120.1968 +US 93457 Santa Maria California CA Santa Barbara 083 34.8363 -120.5342 +US 93458 Santa Maria California CA Santa Barbara 083 34.9535 -120.4957 +US 93460 Santa Ynez California CA Santa Barbara 083 34.624 -120.0713 +US 93463 Solvang California CA Santa Barbara 083 34.6488 -120.1701 +US 93464 Solvang California CA Santa Barbara 083 34.6744 -120.1115 +US 94022 Los Altos California CA Santa Clara 085 37.3814 -122.1258 +US 94023 Los Altos California CA Santa Clara 085 37.1894 -121.7053 +US 94024 Los Altos California CA Santa Clara 085 37.3547 -122.0862 +US 94035 Mountain View California CA Santa Clara 085 37.1894 -121.7053 +US 94039 Mountain View California CA Santa Clara 085 37.1894 -121.7053 +US 94040 Mountain View California CA Santa Clara 085 37.3855 -122.088 +US 94041 Mountain View California CA Santa Clara 085 37.3893 -122.0783 +US 94042 Mountain View California CA Santa Clara 085 37.1894 -121.7053 +US 94043 Mountain View California CA Santa Clara 085 37.4056 -122.0775 +US 94085 Sunnyvale California CA Santa Clara 085 37.3886 -122.0177 +US 94086 Sunnyvale California CA Santa Clara 085 37.3764 -122.0238 +US 94087 Sunnyvale California CA Santa Clara 085 37.3502 -122.0349 +US 94088 Sunnyvale California CA Santa Clara 085 37.1894 -121.7053 +US 94089 Sunnyvale California CA Santa Clara 085 37.3983 -122.0006 +US 94090 Sunnyvale California CA Santa Clara 085 37.1894 -121.7053 +US 94091 Sunnyvale California CA Santa Clara County 085 37.3858 -122.0255 +US 94301 Palo Alto California CA Santa Clara 085 37.4443 -122.1497 +US 94302 Palo Alto California CA Santa Clara 085 37.1894 -121.7053 +US 94304 Palo Alto California CA Santa Clara 085 37.4334 -122.1842 +US 94305 Stanford California CA Santa Clara 085 37.4236 -122.1619 +US 94306 Palo Alto California CA Santa Clara 085 37.418 -122.1274 +US 94309 Palo Alto California CA Santa Clara 085 37.1894 -121.7053 +US 94310 Palo Alto California CA Santa Clara 085 37.1894 -121.7053 +US 95002 Alviso California CA Santa Clara 085 37.426 -121.9736 +US 95008 Campbell California CA Santa Clara 085 37.2803 -121.9539 +US 95009 Campbell California CA Santa Clara 085 37.2872 -121.9488 +US 95011 Campbell California CA Santa Clara 085 37.294 -121.9571 +US 95013 Coyote California CA Santa Clara 085 37.2123 -121.7416 +US 95014 Cupertino California CA Santa Clara 085 37.318 -122.0449 +US 95015 Cupertino California CA Santa Clara 085 37.323 -122.0527 +US 95020 Gilroy California CA Santa Clara 085 37.0139 -121.5773 +US 95021 Gilroy California CA Santa Clara 085 37.0095 -121.5705 +US 95026 Holy City California CA Santa Clara 085 37.1584 -121.986 +US 95030 Los Gatos California CA Santa Clara 085 37.2296 -121.9834 +US 95031 Los Gatos California CA Santa Clara 085 37.1574 -121.9676 +US 95032 Los Gatos California CA Santa Clara 085 37.2417 -121.9554 +US 95033 Los Gatos California CA Santa Clara 085 37.1539 -121.9816 +US 95035 Milpitas California CA Santa Clara 085 37.4352 -121.895 +US 95036 Milpitas California CA Santa Clara 085 37.424 -121.906 +US 95037 Morgan Hill California CA Santa Clara 085 37.1353 -121.6501 +US 95038 Morgan Hill California CA Santa Clara 085 37.1525 -121.6722 +US 95042 New Almaden California CA Santa Clara 085 37.1771 -121.8207 +US 95044 Redwood Estates California CA Santa Clara 085 37.1584 -121.986 +US 95046 San Martin California CA Santa Clara 085 37.0911 -121.5999 +US 95050 Santa Clara California CA Santa Clara 085 37.3492 -121.953 +US 95051 Santa Clara California CA Santa Clara 085 37.3483 -121.9844 +US 95052 Santa Clara California CA Santa Clara 085 37.3522 -121.9583 +US 95053 Santa Clara California CA Santa Clara 085 37.3498 -121.9378 +US 95054 Santa Clara California CA Santa Clara 085 37.3924 -121.9623 +US 95055 Santa Clara California CA Santa Clara 085 37.3451 -121.9769 +US 95056 Santa Clara California CA Santa Clara 085 37.3997 -121.9608 +US 95070 Saratoga California CA Santa Clara 085 37.2713 -122.0227 +US 95071 Saratoga California CA Santa Clara 085 37.2593 -122.0302 +US 95101 San Jose California CA Santa Clara 085 37.3894 -121.8868 +US 95102 San Jose California CA Santa Clara 085 37.3866 -121.897 +US 95103 San Jose California CA Santa Clara 085 37.3378 -121.8908 +US 95106 San Jose California CA Santa Clara 085 37.3378 -121.8908 +US 95108 San Jose California CA Santa Clara 085 37.3378 -121.8908 +US 95109 San Jose California CA Santa Clara 085 37.3378 -121.8908 +US 95110 San Jose California CA Santa Clara 085 37.3391 -121.9016 +US 95111 San Jose California CA Santa Clara 085 37.2827 -121.8265 +US 95112 San Jose California CA Santa Clara 085 37.3476 -121.887 +US 95113 San Jose California CA Santa Clara 085 37.3329 -121.8916 +US 95114 San Jose California CA Santa Clara 085 37.3866 -121.897 +US 95115 San Jose California CA Santa Clara 085 37.3378 -121.8908 +US 95116 San Jose California CA Santa Clara 085 37.3518 -121.8508 +US 95117 San Jose California CA Santa Clara 085 37.3108 -121.9623 +US 95118 San Jose California CA Santa Clara 085 37.2568 -121.8896 +US 95119 San Jose California CA Santa Clara 085 37.2329 -121.7875 +US 95120 San Jose California CA Santa Clara 085 37.2144 -121.8574 +US 95121 San Jose California CA Santa Clara 085 37.3042 -121.8099 +US 95122 San Jose California CA Santa Clara 085 37.3293 -121.8339 +US 95123 San Jose California CA Santa Clara 085 37.2458 -121.8306 +US 95124 San Jose California CA Santa Clara 085 37.2563 -121.9229 +US 95125 San Jose California CA Santa Clara 085 37.296 -121.8939 +US 95126 San Jose California CA Santa Clara 085 37.3249 -121.9153 +US 95127 San Jose California CA Santa Clara 085 37.3692 -121.8208 +US 95128 San Jose California CA Santa Clara 085 37.3163 -121.9356 +US 95129 San Jose California CA Santa Clara 085 37.3066 -122.0002 +US 95130 San Jose California CA Santa Clara 085 37.2886 -121.9818 +US 95131 San Jose California CA Santa Clara 085 37.3864 -121.88 +US 95132 San Jose California CA Santa Clara 085 37.4031 -121.8585 +US 95133 San Jose California CA Santa Clara 085 37.3729 -121.856 +US 95134 San Jose California CA Santa Clara 085 37.4087 -121.9406 +US 95135 San Jose California CA Santa Clara 085 37.2974 -121.7562 +US 95136 San Jose California CA Santa Clara 085 37.2685 -121.849 +US 95137 San Jose California CA Santa Clara 085 37.3866 -121.897 +US 95138 San Jose California CA Santa Clara 085 37.2602 -121.7709 +US 95139 San Jose California CA Santa Clara 085 37.2252 -121.7687 +US 95140 Mount Hamilton California CA Santa Clara 085 37.3511 -121.6384 +US 95141 San Jose California CA Santa Clara 085 37.1705 -121.7556 +US 95142 San Jose California CA Santa Clara 085 37.3866 -121.897 +US 95148 San Jose California CA Santa Clara 085 37.3304 -121.7913 +US 95150 San Jose California CA Santa Clara 085 37.3866 -121.897 +US 95151 San Jose California CA Santa Clara 085 37.3198 -121.8262 +US 95152 San Jose California CA Santa Clara 085 37.4022 -121.847 +US 95153 San Jose California CA Santa Clara 085 37.2488 -121.8459 +US 95154 San Jose California CA Santa Clara 085 37.2649 -121.9139 +US 95155 San Jose California CA Santa Clara 085 37.31 -121.9011 +US 95156 San Jose California CA Santa Clara 085 37.3576 -121.8416 +US 95157 San Jose California CA Santa Clara 085 37.3008 -121.9777 +US 95158 San Jose California CA Santa Clara 085 37.2625 -121.8779 +US 95159 San Jose California CA Santa Clara 085 37.3179 -121.9349 +US 95160 San Jose California CA Santa Clara 085 37.2187 -121.8601 +US 95161 San Jose California CA Santa Clara 085 37.3894 -121.8868 +US 95164 San Jose California CA Santa Clara 085 37.3916 -121.9203 +US 95170 San Jose California CA Santa Clara 085 37.3103 -122.0093 +US 95172 San Jose California CA Santa Clara 085 37.334 -121.8847 +US 95173 San Jose California CA Santa Clara 085 37.3352 -121.8938 +US 95190 San Jose California CA Santa Clara 085 37.3894 -121.8868 +US 95191 San Jose California CA Santa Clara 085 37.3262 -121.9158 +US 95192 San Jose California CA Santa Clara 085 37.3383 -121.8801 +US 95193 San Jose California CA Santa Clara 085 37.2441 -121.8287 +US 95194 San Jose California CA Santa Clara 085 37.3894 -121.8868 +US 95196 San Jose California CA Santa Clara 085 37.3338 -121.8894 +US 95199 San Jose California CA Santa Clara County 085 37.3063 -121.9221 +US 95001 Aptos California CA Santa Cruz 087 36.979 -121.898 +US 95003 Aptos California CA Santa Cruz 087 36.9797 -121.8902 +US 95005 Ben Lomond California CA Santa Cruz 087 37.0882 -122.0887 +US 95006 Boulder Creek California CA Santa Cruz 087 37.1547 -122.1365 +US 95007 Brookdale California CA Santa Cruz 087 37.1063 -122.105 +US 95010 Capitola California CA Santa Cruz 087 36.9767 -121.9555 +US 95017 Davenport California CA Santa Cruz 087 37.0423 -122.2137 +US 95018 Felton California CA Santa Cruz 087 37.0662 -122.0618 +US 95019 Freedom California CA Santa Cruz 087 36.9356 -121.7767 +US 95041 Mount Hermon California CA Santa Cruz 087 37.0511 -122.0575 +US 95060 Santa Cruz California CA Santa Cruz 087 37.0313 -122.1198 +US 95061 Santa Cruz California CA Santa Cruz 087 37.063 -122.162 +US 95062 Santa Cruz California CA Santa Cruz 087 36.9721 -121.9881 +US 95063 Santa Cruz California CA Santa Cruz 087 36.9792 -122.0088 +US 95064 Santa Cruz California CA Santa Cruz 087 36.9959 -122.0578 +US 95065 Santa Cruz California CA Santa Cruz 087 37.0089 -121.9849 +US 95066 Scotts Valley California CA Santa Cruz 087 37.0597 -122.0152 +US 95067 Scotts Valley California CA Santa Cruz 087 37.0511 -122.0136 +US 95073 Soquel California CA Santa Cruz 087 37.0048 -121.9507 +US 95076 Watsonville California CA Santa Cruz 087 36.9294 -121.7727 +US 95077 Watsonville California CA Santa Cruz 087 36.9116 -121.7575 +US 96001 Redding California CA Shasta 089 40.5605 -122.4116 +US 96002 Redding California CA Shasta 089 40.5486 -122.3339 +US 96003 Redding California CA Shasta 089 40.6278 -122.353 +US 96007 Anderson California CA Shasta 089 40.4574 -122.3282 +US 96008 Bella Vista California CA Shasta 089 40.7409 -122.0725 +US 96011 Big Bend California CA Shasta 089 40.9749 -121.825 +US 96013 Burney California CA Shasta 089 40.8949 -121.655 +US 96016 Cassel California CA Shasta 089 40.9337 -121.5677 +US 96017 Castella California CA Shasta 089 41.1103 -122.3161 +US 96019 Shasta Lake California CA Shasta 089 40.6969 -122.3683 +US 96022 Cottonwood California CA Shasta 089 40.3691 -122.3375 +US 96028 Fall River Mills California CA Shasta 089 41.0393 -121.4606 +US 96033 French Gulch California CA Shasta 089 40.7035 -122.6229 +US 96040 Hat Creek California CA Shasta 089 40.7677 -121.4637 +US 96047 Igo California CA Shasta 089 40.4318 -122.654 +US 96049 Redding California CA Shasta 089 40.7098 -122.3116 +US 96051 Lakehead California CA Shasta 089 40.9105 -122.4106 +US 96056 Mcarthur California CA Shasta 089 41.0968 -121.4368 +US 96062 Millville California CA Shasta 089 40.5653 -122.1111 +US 96065 Montgomery Creek California CA Shasta 089 40.9124 -121.9233 +US 96069 Oak Run California CA Shasta 089 40.6863 -122.0409 +US 96070 Obrien California CA Shasta 089 40.7352 -122.1944 +US 96071 Old Station California CA Shasta 089 40.6256 -121.4585 +US 96073 Palo Cedro California CA Shasta 089 40.5767 -122.2398 +US 96076 Platina California CA Shasta 089 40.376 -122.937 +US 96079 Shasta Lake California CA Shasta 089 40.6866 -122.3348 +US 96084 Round Mountain California CA Shasta 089 40.7629 -122.1711 +US 96087 Shasta California CA Shasta 089 40.6109 -122.4968 +US 96088 Shingletown California CA Shasta 089 40.505 -121.8857 +US 96089 Shasta Lake California CA Shasta 089 40.6579 -122.4273 +US 96095 Whiskeytown California CA Shasta 089 40.7352 -122.1944 +US 96096 Whitmore California CA Shasta 089 40.6525 -121.8771 +US 96099 Redding California CA Shasta 089 40.7043 -122.3878 +US 95910 Alleghany California CA Sierra 091 39.4826 -120.8483 +US 95936 Downieville California CA Sierra 091 39.569 -120.8344 +US 95944 Goodyears Bar California CA Sierra 091 39.5299 -120.8171 +US 96118 Loyalton California CA Sierra 091 39.663 -120.2297 +US 96124 Calpine California CA Sierra 091 39.6139 -120.4046 +US 96125 Sierra City California CA Sierra 091 39.5936 -120.6269 +US 96126 Sierraville California CA Sierra 091 39.5825 -120.3711 +US 95568 Somes Bar California CA Siskiyou 093 41.4533 -123.4634 +US 96014 Callahan California CA Siskiyou 093 41.3833 -122.764 +US 96023 Dorris California CA Siskiyou 093 41.9194 -121.9739 +US 96025 Dunsmuir California CA Siskiyou 093 41.2124 -122.2734 +US 96027 Etna California CA Siskiyou 093 41.4463 -123.01 +US 96031 Forks Of Salmon California CA Siskiyou 093 41.2191 -123.2363 +US 96032 Fort Jones California CA Siskiyou 093 41.617 -122.8832 +US 96034 Gazelle California CA Siskiyou 093 41.5105 -122.5371 +US 96037 Greenview California CA Siskiyou 093 41.5403 -122.9366 +US 96038 Grenada California CA Siskiyou 093 41.6125 -122.5258 +US 96039 Happy Camp California CA Siskiyou 093 41.8018 -123.388 +US 96044 Hornbrook California CA Siskiyou 093 41.9077 -122.5265 +US 96045 Horse Creek California CA Siskiyou County 093 41.8337 -123.0139 +US 96050 Klamath River California CA Siskiyou 093 41.8637 -122.8197 +US 96057 Mccloud California CA Siskiyou 093 41.2475 -122.1128 +US 96058 Macdoel California CA Siskiyou 093 41.883 -121.9445 +US 96064 Montague California CA Siskiyou 093 41.7243 -122.4638 +US 96067 Mount Shasta California CA Siskiyou 093 41.3174 -122.324 +US 96085 Scott Bar California CA Siskiyou 093 41.7736 -122.9882 +US 96086 Seiad Valley California CA Siskiyou 093 41.8866 -123.2438 +US 96094 Weed California CA Siskiyou 093 41.6661 -122.4086 +US 96097 Yreka California CA Siskiyou 093 41.7206 -122.6376 +US 96134 Tulelake California CA Siskiyou 093 41.9316 -121.4347 +US 94510 Benicia California CA Solano 095 38.0685 -122.1614 +US 94512 Birds Landing California CA Solano 095 38.1504 -121.8443 +US 94533 Fairfield California CA Solano 095 38.2671 -122.0357 +US 94534 Fairfield California CA Solano County 095 38.2423 -122.1314 +US 94535 Travis Afb California CA Solano 095 38.2743 -121.9463 +US 94571 Rio Vista California CA Solano 095 38.1637 -121.7016 +US 94585 Suisun City California CA Solano 095 38.2408 -122.042 +US 94589 Vallejo California CA Solano 095 38.1582 -122.2804 +US 94590 Vallejo California CA Solano 095 38.1053 -122.2474 +US 94591 Vallejo California CA Solano 095 38.0985 -122.2124 +US 94592 Vallejo California CA Solano 095 38.0968 -122.2699 +US 95620 Dixon California CA Solano 095 38.4403 -121.8088 +US 95625 Elmira California CA Solano 095 38.43 -122.0168 +US 95687 Vacaville California CA Solano 095 38.3482 -121.9538 +US 95688 Vacaville California CA Solano 095 38.3847 -121.9887 +US 95696 Vacaville California CA Solano 095 38.43 -122.0168 +US 94922 Bodega California CA Sonoma 097 38.3514 -122.9741 +US 94923 Bodega Bay California CA Sonoma 097 38.3309 -123.0373 +US 94926 Cotati California CA Sonoma 097 38.4631 -122.99 +US 94927 Rohnert Park California CA Sonoma 097 38.4631 -122.99 +US 94928 Rohnert Park California CA Sonoma 097 38.347 -122.6941 +US 94931 Cotati California CA Sonoma 097 38.3259 -122.7048 +US 94951 Penngrove California CA Sonoma 097 38.3153 -122.6483 +US 94952 Petaluma California CA Sonoma 097 38.2403 -122.6777 +US 94953 Petaluma California CA Sonoma 097 38.4631 -122.99 +US 94954 Petaluma California CA Sonoma 097 38.2507 -122.6155 +US 94955 Petaluma California CA Sonoma 097 38.4631 -122.99 +US 94972 Valley Ford California CA Sonoma 097 38.3072 -122.8558 +US 94975 Petaluma California CA Sonoma 097 38.4631 -122.99 +US 94999 Petaluma California CA Sonoma 097 38.2675 -122.6581 +US 95401 Santa Rosa California CA Sonoma 097 38.4432 -122.7547 +US 95402 Santa Rosa California CA Sonoma 097 38.4399 -122.7096 +US 95403 Santa Rosa California CA Sonoma 097 38.4822 -122.7473 +US 95404 Santa Rosa California CA Sonoma 097 38.4534 -122.6878 +US 95405 Santa Rosa California CA Sonoma 097 38.4386 -122.6727 +US 95406 Santa Rosa California CA Sonoma 097 38.4399 -122.7096 +US 95407 Santa Rosa California CA Sonoma 097 38.4089 -122.7339 +US 95408 Santa Rosa California CA Sonoma 097 38.4405 -122.7133 +US 95409 Santa Rosa California CA Sonoma 097 38.4592 -122.6393 +US 95412 Annapolis California CA Sonoma 097 38.7026 -123.3539 +US 95416 Boyes Hot Springs California CA Sonoma 097 38.3141 -122.4843 +US 95419 Camp Meeker California CA Sonoma 097 38.425 -122.9485 +US 95421 Cazadero California CA Sonoma 097 38.5918 -123.1965 +US 95425 Cloverdale California CA Sonoma 097 38.7931 -123.0074 +US 95430 Duncans Mills California CA Sonoma 097 38.3929 -123.0057 +US 95431 Eldridge California CA Sonoma 097 38.3348 -122.5055 +US 95433 El Verano California CA Sonoma 097 38.2993 -122.4867 +US 95436 Forestville California CA Sonoma 097 38.4923 -122.9042 +US 95439 Fulton California CA Sonoma 097 38.4947 -122.7761 +US 95441 Geyserville California CA Sonoma 097 38.7173 -122.8834 +US 95442 Glen Ellen California CA Sonoma 097 38.3662 -122.5196 +US 95444 Graton California CA Sonoma 097 38.4335 -122.8676 +US 95446 Guerneville California CA Sonoma 097 38.5055 -122.9965 +US 95448 Healdsburg California CA Sonoma 097 38.6184 -122.862 +US 95450 Jenner California CA Sonoma 097 38.4987 -123.1974 +US 95452 Kenwood California CA Sonoma 097 38.4168 -122.5547 +US 95462 Monte Rio California CA Sonoma 097 38.4706 -123.0172 +US 95465 Occidental California CA Sonoma 097 38.4087 -122.9954 +US 95471 Rio Nido California CA Sonoma 097 38.4905 -123.0331 +US 95472 Sebastopol California CA Sonoma 097 38.3941 -122.8433 +US 95473 Sebastopol California CA Sonoma 097 38.4022 -122.8227 +US 95476 Sonoma California CA Sonoma 097 38.2849 -122.4696 +US 95480 Stewarts Point California CA Sonoma 097 38.7082 -123.3478 +US 95486 Villa Grande California CA Sonoma 097 38.4741 -123.0242 +US 95487 Vineburg California CA Sonoma 097 38.2725 -122.4375 +US 95492 Windsor California CA Sonoma 097 38.5443 -122.8073 +US 95497 The Sea Ranch California CA Sonoma 097 38.7256 -123.4675 +US 95307 Ceres California CA Stanislaus 099 37.5833 -120.9496 +US 95313 Crows Landing California CA Stanislaus 099 37.4218 -121.0411 +US 95316 Denair California CA Stanislaus 099 37.539 -120.7758 +US 95319 Empire California CA Stanislaus 099 37.6382 -120.9005 +US 95323 Hickman California CA Stanislaus 099 37.6156 -120.7011 +US 95326 Hughson California CA Stanislaus 099 37.5964 -120.8627 +US 95328 Keyes California CA Stanislaus 099 37.5591 -120.9148 +US 95329 La Grange California CA Stanislaus 099 37.6899 -120.3851 +US 95350 Modesto California CA Stanislaus 099 37.6746 -121.0113 +US 95351 Modesto California CA Stanislaus 099 37.6236 -120.9966 +US 95352 Modesto California CA Stanislaus 099 37.6566 -121.0191 +US 95353 Modesto California CA Stanislaus 099 37.6424 -120.9999 +US 95354 Modesto California CA Stanislaus 099 37.6409 -120.9749 +US 95355 Modesto California CA Stanislaus 099 37.6717 -120.9482 +US 95356 Modesto California CA Stanislaus 099 37.7005 -121.0252 +US 95357 Modesto California CA Stanislaus 099 37.6693 -120.8817 +US 95358 Modesto California CA Stanislaus 099 37.6237 -121.0438 +US 95360 Newman California CA Stanislaus 099 37.3097 -121.0805 +US 95361 Oakdale California CA Stanislaus 099 37.7741 -120.8377 +US 95363 Patterson California CA Stanislaus 099 37.4826 -121.1648 +US 95367 Riverbank California CA Stanislaus 099 37.7298 -120.942 +US 95368 Salida California CA Stanislaus 099 37.7083 -121.0864 +US 95380 Turlock California CA Stanislaus 099 37.4888 -120.8535 +US 95381 Turlock California CA Stanislaus 099 37.4994 -120.8428 +US 95382 Turlock California CA Stanislaus 099 37.5239 -120.8517 +US 95386 Waterford California CA Stanislaus 099 37.652 -120.7292 +US 95387 Westley California CA Stanislaus 099 37.5452 -121.2255 +US 95390 Riverbank California CA Stanislaus 099 37.7347 -120.9389 +US 95397 Modesto California CA Stanislaus 099 37.6566 -121.0191 +US 95622 Nicolaus California CA Sutter County 101 38.9102 -121.5439 +US 95659 Nicolaus California CA Sutter 101 38.8657 -121.557 +US 95668 Pleasant Grove California CA Sutter 101 38.8115 -121.4982 +US 95674 Rio Oso California CA Sutter 101 38.967 -121.4773 +US 95676 Robbins California CA Sutter 101 38.8702 -121.7052 +US 95953 Live Oak California CA Sutter 101 39.2601 -121.6923 +US 95957 Meridian California CA Sutter 101 39.052 -121.8061 +US 95982 Sutter California CA Sutter 101 39.1779 -121.7758 +US 95991 Yuba City California CA Sutter 101 39.1051 -121.6202 +US 95992 Yuba City California CA Sutter 101 39.023 -121.6116 +US 95993 Yuba City California CA Sutter 101 39.1237 -121.6611 +US 96021 Corning California CA Tehama 103 39.9296 -122.196 +US 96029 Flournoy California CA Tehama 103 39.9024 -122.4918 +US 96035 Gerber California CA Tehama 103 40.043 -122.1649 +US 96055 Los Molinos California CA Tehama 103 40.0497 -122.0992 +US 96059 Manton California CA Tehama 103 40.4331 -121.8365 +US 96061 Mill Creek California CA Tehama 103 40.3439 -121.5035 +US 96063 Mineral California CA Tehama 103 40.3564 -121.571 +US 96074 Paskenta California CA Tehama 103 39.8772 -122.5814 +US 96075 Paynes Creek California CA Tehama 103 40.3514 -121.765 +US 96078 Proberta California CA Tehama 103 40.1252 -122.2041 +US 96080 Red Bluff California CA Tehama 103 40.1795 -122.2383 +US 96090 Tehama California CA Tehama 103 40.0214 -122.1186 +US 96092 Vina California CA Tehama 103 39.9272 -122.025 +US 95527 Burnt Ranch California CA Trinity 105 40.7897 -123.4113 +US 95552 Mad River California CA Trinity 105 40.3316 -123.3904 +US 95563 Salyer California CA Trinity 105 40.8558 -123.573 +US 95595 Zenia California CA Trinity 105 40.2147 -123.3911 +US 96010 Big Bar California CA Trinity 105 40.748 -123.229 +US 96024 Douglas City California CA Trinity 105 40.6342 -122.9239 +US 96041 Hayfork California CA Trinity 105 40.5504 -123.1634 +US 96046 Hyampom California CA Trinity 105 40.6137 -123.4488 +US 96048 Junction City California CA Trinity 105 40.7411 -123.0718 +US 96052 Lewiston California CA Trinity 105 40.746 -122.8426 +US 96091 Trinity Center California CA Trinity 105 41.0615 -122.7239 +US 96093 Weaverville California CA Trinity 105 40.7317 -122.9353 +US 93201 Alpaugh California CA Tulare 107 35.8583 -119.3037 +US 93207 California Hot Springs California CA Tulare 107 35.8818 -118.6561 +US 93208 Camp Nelson California CA Tulare 107 36.1398 -118.6946 +US 93217 Di Giorgio California CA Tulare County 107 35.265 -118.8273 +US 93218 Ducor California CA Tulare 107 36.082 -119.0363 +US 93219 Earlimart California CA Tulare 107 35.8744 -119.281 +US 93221 Exeter California CA Tulare 107 36.3041 -119.1293 +US 93223 Farmersville California CA Tulare 107 36.3002 -119.2054 +US 93227 Goshen California CA Tulare 107 36.3572 -119.4254 +US 93235 Ivanhoe California CA Tulare 107 36.3856 -119.2189 +US 93237 Kaweah California CA Tulare 107 36.4727 -118.9029 +US 93244 Lemon Cove California CA Tulare 107 36.4969 -118.9941 +US 93247 Lindsay California CA Tulare 107 36.2096 -119.0884 +US 93256 Pixley California CA Tulare 107 35.9553 -119.2564 +US 93257 Porterville California CA Tulare 107 36.0686 -119.0315 +US 93258 Porterville California CA Tulare 107 36.0331 -119.0073 +US 93260 Posey California CA Tulare 107 35.8135 -118.6643 +US 93261 Richgrove California CA Tulare 107 35.805 -119.1315 +US 93262 Sequoia National Park California CA Tulare 107 36.6007 -118.711 +US 93265 Springville California CA Tulare 107 36.1363 -118.7961 +US 93267 Strathmore California CA Tulare 107 36.1472 -119.0792 +US 93270 Terra Bella California CA Tulare 107 35.957 -119.0312 +US 93271 Three Rivers California CA Tulare 107 36.4377 -118.8875 +US 93272 Tipton California CA Tulare 107 36.0546 -119.3078 +US 93274 Tulare California CA Tulare 107 36.2022 -119.338 +US 93275 Tulare California CA Tulare 107 36.267 -118.7769 +US 93277 Visalia California CA Tulare 107 36.3114 -119.3065 +US 93278 Visalia California CA Tulare 107 36.1266 -118.8194 +US 93279 Visalia California CA Tulare 107 36.3936 -119.119 +US 93282 Waukena California CA Tulare 107 36.1296 -119.5161 +US 93286 Woodlake California CA Tulare 107 36.4313 -119.0918 +US 93290 Visalia California CA Tulare County 107 36.3291 -119.2925 +US 93291 Visalia California CA Tulare 107 36.3551 -119.301 +US 93292 Visalia California CA Tulare 107 36.1946 -119.2283 +US 93603 Badger California CA Tulare 107 36.5683 -119.0162 +US 93615 Cutler California CA Tulare 107 36.5243 -119.287 +US 93618 Dinuba California CA Tulare 107 36.5349 -119.3909 +US 93619 Clovis California CA Tulare County 107 36.8432 -119.6518 +US 93633 Kings Canyon National Pk California CA Tulare 107 36.7341 -118.9588 +US 93647 Orosi California CA Tulare 107 36.5464 -119.2815 +US 93666 Sultana California CA Tulare 107 36.521 -119.352 +US 93670 Yettem California CA Tulare 107 36.4718 -119.2594 +US 93673 Traver California CA Tulare 107 36.4442 -119.4717 +US 95305 Big Oak Flat California CA Tuolumne 109 37.8261 -120.2521 +US 95309 Chinese Camp California CA Tuolumne 109 37.8594 -120.4069 +US 95310 Columbia California CA Tuolumne 109 38.044 -120.3971 +US 95314 Dardanelle California CA Tuolumne 109 38.3411 -119.8327 +US 95321 Groveland California CA Tuolumne 109 37.8298 -120.1037 +US 95327 Jamestown California CA Tuolumne 109 37.8906 -120.4717 +US 95335 Long Barn California CA Tuolumne 109 38.2262 -120.0526 +US 95346 Mi Wuk Village California CA Tuolumne 109 38.0675 -120.1794 +US 95347 Moccasin California CA Tuolumne 109 37.8108 -120.2988 +US 95364 Pinecrest California CA Tuolumne 109 38.3398 -119.9242 +US 95370 Sonora California CA Tuolumne 109 37.9957 -120.3368 +US 95372 Soulsbyville California CA Tuolumne 109 37.9926 -120.2624 +US 95373 Standard California CA Tuolumne 109 37.9666 -120.3108 +US 95375 Strawberry California CA Tuolumne 109 38.2042 -120.0101 +US 95379 Tuolumne California CA Tuolumne 109 37.9678 -120.2357 +US 95383 Twain Harte California CA Tuolumne 109 38.0454 -120.2178 +US 91319 Newbury Park California CA Ventura 111 34.0324 -119.1343 +US 91320 Newbury Park California CA Ventura 111 34.1774 -118.9358 +US 91358 Thousand Oaks California CA Ventura 111 34.0324 -119.1343 +US 91359 Westlake Village California CA Ventura 111 34.0324 -119.1343 +US 91360 Thousand Oaks California CA Ventura 111 34.2092 -118.8739 +US 91361 Westlake Village California CA Ventura 111 34.1472 -118.8383 +US 91362 Thousand Oaks California CA Ventura 111 34.1948 -118.8232 +US 91377 Oak Park California CA Ventura 111 34.185 -118.7669 +US 93001 Ventura California CA Ventura 111 34.3308 -119.3584 +US 93002 Ventura California CA Ventura 111 34.0324 -119.1343 +US 93003 Ventura California CA Ventura 111 34.2846 -119.2222 +US 93004 Ventura California CA Ventura 111 34.2788 -119.1651 +US 93005 Ventura California CA Ventura 111 34.0324 -119.1343 +US 93006 Ventura California CA Ventura 111 34.0324 -119.1343 +US 93007 Ventura California CA Ventura 111 34.0324 -119.1343 +US 93009 Ventura California CA Ventura 111 34.3562 -119.1462 +US 93010 Camarillo California CA Ventura 111 34.2313 -119.0464 +US 93011 Camarillo California CA Ventura 111 34.0324 -119.1343 +US 93012 Camarillo California CA Ventura 111 34.2218 -118.9866 +US 93015 Fillmore California CA Ventura 111 34.3934 -118.8643 +US 93016 Fillmore California CA Ventura 111 34.0324 -119.1343 +US 93020 Moorpark California CA Ventura 111 34.0324 -119.1343 +US 93021 Moorpark California CA Ventura 111 34.2784 -118.8771 +US 93022 Oak View California CA Ventura 111 34.402 -119.2982 +US 93023 Ojai California CA Ventura 111 34.4451 -119.2565 +US 93024 Ojai California CA Ventura 111 34.0324 -119.1343 +US 93030 Oxnard California CA Ventura 111 34.2141 -119.175 +US 93031 Oxnard California CA Ventura 111 34.0324 -119.1343 +US 93032 Oxnard California CA Ventura 111 34.0324 -119.1343 +US 93033 Oxnard California CA Ventura 111 34.1685 -119.1717 +US 93034 Oxnard California CA Ventura 111 34.0324 -119.1343 +US 93035 Oxnard California CA Ventura 111 34.1822 -119.216 +US 93036 Oxnard California CA Ventura County 111 34.2351 -119.182 +US 93040 Piru California CA Ventura 111 34.4352 -118.7855 +US 93041 Port Hueneme California CA Ventura 111 34.1626 -119.1973 +US 93042 Point Mugu Nawc California CA Ventura 111 34.1134 -119.1124 +US 93043 Port Hueneme Cbc Base California CA Ventura 111 34.1621 -119.2074 +US 93044 Port Hueneme California CA Ventura 111 34.0324 -119.1343 +US 93060 Santa Paula California CA Ventura 111 34.3547 -119.0713 +US 93061 Santa Paula California CA Ventura 111 34.0324 -119.1343 +US 93062 Simi Valley California CA Ventura 111 34.0324 -119.1343 +US 93063 Simi Valley California CA Ventura 111 34.3046 -118.6844 +US 93064 Brandeis California CA Ventura 111 34.2582 -118.7107 +US 93065 Simi Valley California CA Ventura 111 34.2656 -118.7653 +US 93066 Somis California CA Ventura 111 34.2798 -119.0115 +US 93093 Simi Valley California CA Ventura 111 34.0324 -119.1343 +US 93094 Simi Valley California CA Ventura 111 34.0324 -119.1343 +US 93097 Simi Valley California CA Ventura County 111 34.2693 -118.7806 +US 93099 Simi Valley California CA Ventura 111 34.0324 -119.1343 +US 95605 West Sacramento California CA Yolo 113 38.5927 -121.5325 +US 95606 Brooks California CA Yolo 113 38.8065 -122.2039 +US 95607 Capay California CA Yolo 113 38.7209 -122.0912 +US 95612 Clarksburg California CA Yolo 113 38.3945 -121.5641 +US 95616 Davis California CA Yolo 113 38.5538 -121.7418 +US 95617 Davis California CA Yolo 113 38.5494 -121.7253 +US 95618 El Macero California CA Yolo 113 38.5462 -121.6676 +US 95627 Esparto California CA Yolo 113 38.7061 -122.0152 +US 95637 Guinda California CA Yolo 113 38.8407 -122.2036 +US 95645 Knights Landing California CA Yolo 113 38.8517 -121.7334 +US 95653 Madison California CA Yolo 113 38.6802 -121.9721 +US 95679 Rumsey California CA Yolo 113 38.8953 -122.3079 +US 95691 West Sacramento California CA Yolo 113 38.5673 -121.5516 +US 95694 Winters California CA Yolo 113 38.5322 -121.9676 +US 95695 Woodland California CA Yolo 113 38.6816 -121.8052 +US 95697 Yolo California CA Yolo 113 38.7343 -121.8066 +US 95698 Zamora California CA Yolo 113 38.8204 -121.9191 +US 95776 Woodland California CA Yolo 113 38.6808 -121.7411 +US 95798 West Sacramento California CA Yolo 113 38.5805 -121.5291 +US 95799 West Sacramento California CA Yolo 113 38.5713 -121.5715 +US 95937 Dunnigan California CA Yolo 113 38.887 -121.9992 +US 95692 Wheatland California CA Yuba 115 39.0337 -121.4235 +US 95901 Marysville California CA Yuba 115 39.1663 -121.5105 +US 95903 Beale Afb California CA Yuba 115 39.1115 -121.3604 +US 95918 Browns Valley California CA Yuba 115 39.2882 -121.3303 +US 95919 Brownsville California CA Yuba 115 39.4525 -121.2612 +US 95922 Camptonville California CA Yuba 115 39.482 -121.0098 +US 95925 Challenge California CA Yuba 115 39.4685 -121.1936 +US 95935 Dobbins California CA Yuba 115 39.3662 -121.2256 +US 95961 Olivehurst California CA Yuba 115 39.0861 -121.5497 +US 95962 Oregon House California CA Yuba 115 39.3459 -121.2663 +US 95972 Rackerby California CA Yuba 115 39.4256 -121.3252 +US 95977 Smartville California CA Yuba 115 39.1948 -121.2807 +US 95981 Strawberry Valley California CA Yuba 115 39.687 -121.045 +US 80011 Aurora Colorado CO Adams 001 39.7378 -104.8152 +US 80019 Aurora Colorado CO Adams 001 39.7656 -104.7069 +US 80022 Commerce City Colorado CO Adams 001 39.8259 -104.9113 +US 80024 Dupont Colorado CO Adams 001 39.8445 -104.9188 +US 80030 Westminster Colorado CO Adams 001 39.8302 -105.037 +US 80031 Westminster Colorado CO Adams 001 39.8753 -105.0345 +US 80035 Westminster Colorado CO Adams 001 39.808 -104.4079 +US 80036 Westminster Colorado CO Adams 001 39.808 -104.4079 +US 80037 Commerce City Colorado CO Adams 001 39.808 -104.4079 +US 80040 Aurora Colorado CO Adams 001 39.808 -104.4079 +US 80042 Aurora Colorado CO Adams 001 39.808 -104.4079 +US 80045 Aurora Colorado CO Adams 001 39.7467 -104.8384 +US 80102 Bennett Colorado CO Adams 001 39.7254 -104.4273 +US 80136 Strasburg Colorado CO Adams 001 39.7814 -104.2683 +US 80137 Watkins Colorado CO Adams 001 39.7623 -104.5834 +US 80221 Denver Colorado CO Adams 001 39.838 -104.9988 +US 80229 Denver Colorado CO Adams 001 39.8671 -104.9227 +US 80233 Denver Colorado CO Adams 001 39.9015 -104.9407 +US 80234 Denver Colorado CO Adams 001 39.9108 -105.0109 +US 80241 Denver Colorado CO Adams 001 39.9274 -104.9548 +US 80260 Denver Colorado CO Adams 001 39.8672 -105.0041 +US 80601 Brighton Colorado CO Adams 001 39.943 -104.7866 +US 80602 Brighton Colorado CO Adams 001 39.9636 -104.9072 +US 80603 Brighton Colorado CO Adams 001 39.9515 -104.7746 +US 80614 Eastlake Colorado CO Adams 001 39.808 -104.4079 +US 80640 Henderson Colorado CO Adams 001 39.8983 -104.8718 +US 81101 Alamosa Colorado CO Alamosa 003 37.4703 -105.8786 +US 81102 Alamosa Colorado CO Alamosa 003 37.476 -105.8818 +US 81136 Hooper Colorado CO Alamosa 003 37.7232 -105.8712 +US 81146 Mosca Colorado CO Alamosa 003 37.6358 -105.8069 +US 80010 Aurora Colorado CO Arapahoe 005 39.7368 -104.8646 +US 80012 Aurora Colorado CO Arapahoe 005 39.6987 -104.8377 +US 80013 Aurora Colorado CO Arapahoe 005 39.6575 -104.7846 +US 80014 Aurora Colorado CO Arapahoe 005 39.6662 -104.835 +US 80015 Aurora Colorado CO Arapahoe 005 39.6255 -104.7874 +US 80016 Aurora Colorado CO Arapahoe 005 39.6012 -104.7394 +US 80017 Aurora Colorado CO Arapahoe 005 39.6948 -104.7881 +US 80018 Aurora Colorado CO Arapahoe 005 39.7102 -104.7071 +US 80041 Aurora Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80044 Aurora Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80046 Aurora Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80047 Aurora Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80103 Byers Colorado CO Arapahoe 005 39.6985 -104.2019 +US 80105 Deer Trail Colorado CO Arapahoe 005 39.5931 -104.068 +US 80110 Englewood Colorado CO Arapahoe 005 39.6463 -105.0092 +US 80111 Englewood Colorado CO Arapahoe 005 39.6123 -104.8799 +US 80112 Englewood Colorado CO Arapahoe 005 39.5805 -104.9011 +US 80113 Englewood Colorado CO Arapahoe County 005 39.6405 -104.9614 +US 80120 Littleton Colorado CO Arapahoe 005 39.5994 -105.0044 +US 80121 Littleton Colorado CO Arapahoe 005 39.6111 -104.9532 +US 80122 Littleton Colorado CO Arapahoe 005 39.5814 -104.9557 +US 80150 Englewood Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80151 Englewood Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80154 Englewood Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80155 Englewood Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80160 Littleton Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80161 Littleton Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80165 Littleton Colorado CO Arapahoe 005 39.7388 -104.4083 +US 80166 Littleton Colorado CO Arapahoe 005 39.7388 -104.4083 +US 81121 Arboles Colorado CO Archuleta 007 37.1092 -107.3118 +US 81127 Chimney Rock Colorado CO Archuleta 007 37.2507 -107.3211 +US 81128 Chromo Colorado CO Archuleta 007 37.1301 -106.8217 +US 81147 Pagosa Springs Colorado CO Archuleta 007 37.2523 -107.0385 +US 81157 Pagosa Springs Colorado CO Archuleta 007 37.2704 -107.0932 +US 81029 Campo Colorado CO Baca 009 37.1195 -102.5464 +US 81064 Pritchett Colorado CO Baca 009 37.2723 -102.9145 +US 81073 Springfield Colorado CO Baca 009 37.4067 -102.6173 +US 81084 Two Buttes Colorado CO Baca 009 37.5214 -102.4332 +US 81087 Vilas Colorado CO Baca 009 37.373 -102.4437 +US 81090 Walsh Colorado CO Baca 009 37.3521 -102.2537 +US 81038 Fort Lyon Colorado CO Bent 011 37.9555 -103.0725 +US 81044 Hasty Colorado CO Bent 011 37.959 -103.015 +US 81054 Las Animas Colorado CO Bent 011 37.923 -103.0884 +US 81057 Mc Clave Colorado CO Bent 011 38.085 -102.8869 +US 80020 Broomfield Colorado CO Boulder 013 39.9245 -105.0609 +US 80025 Eldorado Springs Colorado CO Boulder 013 39.9324 -105.288 +US 80026 Lafayette Colorado CO Boulder 013 39.998 -105.0963 +US 80027 Louisville Colorado CO Boulder 013 39.9789 -105.1456 +US 80028 Louisville Colorado CO Boulder 013 40.0878 -105.3735 +US 80038 Broomfield Colorado CO Boulder 013 40.0878 -105.3735 +US 80301 Boulder Colorado CO Boulder 013 40.0497 -105.2143 +US 80302 Boulder Colorado CO Boulder 013 40.0172 -105.2851 +US 80303 Boulder Colorado CO Boulder 013 39.9914 -105.2392 +US 80304 Boulder Colorado CO Boulder 013 40.0375 -105.2771 +US 80305 Boulder Colorado CO Boulder 013 39.9807 -105.2531 +US 80306 Boulder Colorado CO Boulder 013 40.1022 -105.3847 +US 80307 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80308 Boulder Colorado CO Boulder 013 40.0277 -105.3868 +US 80309 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80310 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80314 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80321 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80322 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80323 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80328 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80329 Boulder Colorado CO Boulder 013 40.0878 -105.3735 +US 80455 Jamestown Colorado CO Boulder 013 40.1006 -105.419 +US 80466 Nederland Colorado CO Boulder 013 39.9703 -105.4813 +US 80471 Pinecliffe Colorado CO Boulder 013 39.9474 -105.4593 +US 80481 Ward Colorado CO Boulder 013 40.0726 -105.508 +US 80501 Longmont Colorado CO Boulder 013 40.1779 -105.1009 +US 80502 Longmont Colorado CO Boulder 013 40.0878 -105.3735 +US 80503 Longmont Colorado CO Boulder 013 40.1559 -105.1624 +US 80510 Allenspark Colorado CO Boulder 013 40.2268 -105.5201 +US 80533 Hygiene Colorado CO Boulder 013 40.1815 -105.2327 +US 80540 Lyons Colorado CO Boulder 013 40.2357 -105.3231 +US 80544 Niwot Colorado CO Boulder 013 40.177 -105.275 +US 80023 Broomfield Colorado CO Broomfield County 014 39.9619 -105.0148 +US 81201 Salida Colorado CO Chaffee 015 38.5259 -105.9978 +US 81211 Buena Vista Colorado CO Chaffee 015 38.838 -106.1471 +US 81227 Monarch Colorado CO Chaffee 015 38.5458 -106.2434 +US 81228 Granite Colorado CO Chaffee 015 39.0307 -106.2566 +US 81236 Nathrop Colorado CO Chaffee 015 38.7103 -106.1166 +US 81242 Poncha Springs Colorado CO Chaffee 015 38.4719 -106.0973 +US 80802 Arapahoe Colorado CO Cheyenne 017 38.8417 -102.194 +US 80810 Cheyenne Wells Colorado CO Cheyenne 017 38.8198 -102.3582 +US 80825 Kit Carson Colorado CO Cheyenne 017 38.804 -102.8198 +US 80862 Wild Horse Colorado CO Cheyenne 017 38.8041 -103.0798 +US 81026 Eads Colorado CO Cheyenne County 017 38.4496 -102.8213 +US 80436 Dumont Colorado CO Clear Creek 019 39.7531 -105.6356 +US 80438 Empire Colorado CO Clear Creek 019 39.7619 -105.6655 +US 80444 Georgetown Colorado CO Clear Creek 019 39.7257 -105.7606 +US 80452 Idaho Springs Colorado CO Clear Creek 019 39.7402 -105.5983 +US 80476 Silver Plume Colorado CO Clear Creek 019 39.6996 -105.7507 +US 81120 Antonito Colorado CO Conejos 021 37.0855 -106.0379 +US 81124 Capulin Colorado CO Conejos 021 37.3042 -106.1279 +US 81129 Conejos Colorado CO Conejos 021 37.1011 -106.0265 +US 81140 La Jara Colorado CO Conejos 021 37.2907 -106.0054 +US 81141 Manassa Colorado CO Conejos 021 37.1755 -105.9278 +US 81148 Romeo Colorado CO Conejos 021 37.1721 -105.9858 +US 81151 Sanford Colorado CO Conejos 021 37.2087 -105.9286 +US 81123 Blanca Colorado CO Costilla 023 37.4317 -105.5178 +US 81126 Chama Colorado CO Costilla 023 37.3267 -105.4505 +US 81133 Fort Garland Colorado CO Costilla 023 37.427 -105.4049 +US 81134 Garcia Colorado CO Costilla 023 37.0922 -105.53 +US 81138 Jaroso Colorado CO Costilla 023 37.1977 -105.4294 +US 81150 San Acacio Colorado CO Costilla County 023 37.2013 -105.4399 +US 81152 San Luis Colorado CO Costilla 023 37.1066 -105.4781 +US 81153 San Pablo Colorado CO Costilla 023 37.1349 -105.3462 +US 81033 Crowley Colorado CO Crowley 025 38.2294 -103.8042 +US 81034 Crowley Colorado CO Crowley 025 38.3179 -103.78 +US 81062 Olney Springs Colorado CO Crowley 025 38.2019 -103.941 +US 81063 Ordway Colorado CO Crowley 025 38.2095 -103.8003 +US 81076 Sugar City Colorado CO Crowley 025 38.2444 -103.6556 +US 81249 Silver Cliff Colorado CO Custer County 027 38.1351 -105.4458 +US 81252 Westcliffe Colorado CO Custer 027 38.123 -105.4332 +US 81253 Wetmore Colorado CO Custer 027 38.1217 -105.1477 +US 81410 Austin Colorado CO Delta 029 38.7975 -107.9738 +US 81413 Cedaredge Colorado CO Delta 029 38.9119 -107.9268 +US 81414 Cory Colorado CO Delta 029 38.7887 -107.9862 +US 81415 Crawford Colorado CO Delta 029 38.6941 -107.6149 +US 81416 Delta Colorado CO Delta 029 38.7349 -108.0604 +US 81418 Eckert Colorado CO Delta 029 38.845 -107.9625 +US 81419 Hotchkiss Colorado CO Delta 029 38.8124 -107.7472 +US 81420 Lazear Colorado CO Delta 029 38.7817 -107.7808 +US 81421 Maher Colorado CO Delta 029 38.9429 -107.9398 +US 81428 Paonia Colorado CO Delta 029 38.865 -107.5985 +US 80201 Denver Colorado CO Denver 031 39.7263 -104.8568 +US 80202 Denver Colorado CO Denver 031 39.7491 -104.9946 +US 80203 Denver Colorado CO Denver 031 39.7313 -104.9811 +US 80204 Denver Colorado CO Denver 031 39.734 -105.0259 +US 80205 Denver Colorado CO Denver 031 39.759 -104.9661 +US 80206 Denver Colorado CO Denver 031 39.7331 -104.9524 +US 80207 Denver Colorado CO Denver 031 39.7584 -104.9177 +US 80208 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80209 Denver Colorado CO Denver 031 39.7074 -104.9686 +US 80210 Denver Colorado CO Denver 031 39.679 -104.9631 +US 80211 Denver Colorado CO Denver 031 39.7665 -105.0204 +US 80212 Denver Colorado CO Denver 031 39.7683 -105.0493 +US 80216 Denver Colorado CO Denver 031 39.7835 -104.9669 +US 80217 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80218 Denver Colorado CO Denver 031 39.7327 -104.9717 +US 80219 Denver Colorado CO Denver 031 39.6956 -105.0341 +US 80220 Denver Colorado CO Denver 031 39.7312 -104.9129 +US 80222 Denver Colorado CO Denver 031 39.671 -104.9279 +US 80223 Denver Colorado CO Denver 031 39.7002 -105.0028 +US 80224 Denver Colorado CO Denver 031 39.688 -104.9108 +US 80227 Denver Colorado CO Denver 031 39.6667 -105.0854 +US 80230 Denver Colorado CO Denver 031 39.7218 -104.8951 +US 80231 Denver Colorado CO Denver 031 39.6793 -104.8843 +US 80235 Denver Colorado CO Denver 031 39.6472 -105.0795 +US 80236 Denver Colorado CO Denver 031 39.6535 -105.0376 +US 80237 Denver Colorado CO Denver 031 39.6431 -104.8987 +US 80238 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80239 Denver Colorado CO Denver 031 39.7878 -104.8288 +US 80243 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80244 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80246 Denver Colorado CO Denver 031 39.7086 -104.9312 +US 80247 Denver Colorado CO Denver County 031 39.6971 -104.8819 +US 80248 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80249 Denver Colorado CO Denver 031 39.7783 -104.7557 +US 80250 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80251 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80252 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80254 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80255 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80256 Denver Colorado CO Denver 031 39.7474 -104.9928 +US 80257 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80259 Denver Colorado CO Denver 031 39.7462 -104.9913 +US 80261 Denver Colorado CO Denver 031 39.7379 -104.985 +US 80262 Denver Colorado CO Denver 031 39.731 -104.9384 +US 80263 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80264 Denver Colorado CO Denver 031 39.7426 -104.9863 +US 80265 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80266 Denver Colorado CO Denver 031 39.7472 -104.9915 +US 80270 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80271 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80273 Denver Colorado CO Denver 031 39.7273 -104.9875 +US 80274 Denver Colorado CO Denver 031 39.7439 -104.9876 +US 80275 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80279 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 80280 Denver Colorado CO Denver 031 39.7167 -104.9069 +US 80281 Denver Colorado CO Denver 031 39.7439 -104.9876 +US 80285 Denver Colorado CO Denver County 031 39.7427 -104.9813 +US 80290 Denver Colorado CO Denver 031 39.7436 -104.9876 +US 80291 Denver Colorado CO Denver 031 39.7439 -104.9876 +US 80292 Denver Colorado CO Denver 031 39.7474 -104.9928 +US 80293 Denver Colorado CO Denver 031 39.7458 -104.9907 +US 80294 Denver Colorado CO Denver 031 39.7491 -104.989 +US 80295 Denver Colorado CO Denver 031 39.7455 -104.9863 +US 80299 Denver Colorado CO Denver 031 39.7388 -104.4083 +US 81320 Cahone Colorado CO Dolores 033 37.7182 -108.7917 +US 81324 Dove Creek Colorado CO Dolores 033 37.7632 -108.9181 +US 81332 Rico Colorado CO Dolores 033 37.6905 -108.0324 +US 80104 Castle Rock Colorado CO Douglas 035 39.3926 -104.8602 +US 80108 Castle Rock Colorado CO Douglas County 035 39.4455 -104.853 +US 80109 Castle Rock Colorado CO Douglas County 035 39.3643 -104.9014 +US 80116 Franktown Colorado CO Douglas 035 39.3728 -104.7256 +US 80118 Larkspur Colorado CO Douglas 035 39.2011 -104.8546 +US 80124 Littleton Colorado CO Douglas 035 39.5506 -104.8972 +US 80125 Littleton Colorado CO Douglas 035 39.4845 -105.0561 +US 80126 Littleton Colorado CO Douglas 035 39.5437 -104.9691 +US 80129 Littleton Colorado CO Douglas 035 39.5397 -105.0109 +US 80130 Littleton Colorado CO Douglas 035 39.5414 -104.9218 +US 80131 Louviers Colorado CO Douglas 035 39.4764 -105.0075 +US 80134 Parker Colorado CO Douglas 035 39.4895 -104.8447 +US 80135 Sedalia Colorado CO Douglas 035 39.3113 -105.0676 +US 80138 Parker Colorado CO Douglas 035 39.5102 -104.7216 +US 80163 Littleton Colorado CO Douglas 035 39.3479 -104.9947 +US 80423 Bond Colorado CO Eagle 037 39.8691 -106.6763 +US 80426 Burns Colorado CO Eagle 037 39.7836 -106.8965 +US 80463 Mc Coy Colorado CO Eagle 037 39.9134 -106.7309 +US 81620 Avon Colorado CO Eagle 037 39.6313 -106.5108 +US 81621 Basalt Colorado CO Eagle 037 39.3535 -106.9988 +US 81628 El Jebel Colorado CO Eagle 037 39.3979 -107.0892 +US 81631 Eagle Colorado CO Eagle 037 39.6341 -106.7588 +US 81632 Edwards Colorado CO Eagle 037 39.6382 -106.6206 +US 81637 Gypsum Colorado CO Eagle 037 39.6618 -106.9671 +US 81645 Minturn Colorado CO Eagle 037 39.5805 -106.4176 +US 81649 Red Cliff Colorado CO Eagle 037 39.4584 -106.3851 +US 81655 Wolcott Colorado CO Eagle 037 39.7907 -106.6964 +US 81657 Vail Colorado CO Eagle 037 39.6512 -106.3234 +US 81658 Vail Colorado CO Eagle 037 39.6242 -106.4973 +US 80101 Agate Colorado CO Elbert 039 39.4203 -103.9846 +US 80106 Elbert Colorado CO Elbert 039 39.0969 -104.5746 +US 80107 Elizabeth Colorado CO Elbert 039 39.3836 -104.592 +US 80117 Kiowa Colorado CO Elbert 039 39.324 -104.4523 +US 80830 Matheson Colorado CO Elbert 039 39.132 -103.9132 +US 80835 Simla Colorado CO Elbert 039 39.2087 -104.0702 +US 80132 Monument Colorado CO El Paso 041 39.1007 -104.8542 +US 80133 Palmer Lake Colorado CO El Paso 041 39.1205 -104.9148 +US 80806 Boyero Colorado CO El Paso County 041 38.8162 -104.8145 +US 80808 Calhan Colorado CO El Paso 041 38.9648 -104.3553 +US 80809 Cascade Colorado CO El Paso 041 38.9455 -104.995 +US 80817 Fountain Colorado CO El Paso 041 38.6996 -104.7005 +US 80819 Green Mountain Falls Colorado CO El Paso 041 38.9389 -105.0094 +US 80829 Manitou Springs Colorado CO El Paso 041 38.855 -104.9058 +US 80831 Peyton Colorado CO El Paso 041 38.9541 -104.5472 +US 80832 Ramah Colorado CO El Paso 041 39.0736 -104.1247 +US 80833 Rush Colorado CO El Paso 041 38.7642 -104.0241 +US 80840 U S A F Academy Colorado CO El Paso 041 38.9792 -104.8606 +US 80841 U S A F Academy Colorado CO El Paso 041 38.8247 -104.562 +US 80864 Yoder Colorado CO El Paso 041 38.7753 -104.2184 +US 80901 Colorado Springs Colorado CO El Paso 041 38.8615 -104.8578 +US 80902 Colorado Springs Colorado CO El Paso County 041 38.7536 -104.8063 +US 80903 Colorado Springs Colorado CO El Paso 041 38.8388 -104.8145 +US 80904 Colorado Springs Colorado CO El Paso 041 38.8533 -104.8595 +US 80905 Colorado Springs Colorado CO El Paso 041 38.8377 -104.837 +US 80906 Colorado Springs Colorado CO El Paso 041 38.7902 -104.8199 +US 80907 Colorado Springs Colorado CO El Paso 041 38.876 -104.817 +US 80908 Colorado Springs Colorado CO El Paso 041 39.0237 -104.6933 +US 80909 Colorado Springs Colorado CO El Paso 041 38.852 -104.7735 +US 80910 Colorado Springs Colorado CO El Paso 041 38.8152 -104.7703 +US 80911 Colorado Springs Colorado CO El Paso 041 38.7457 -104.7223 +US 80912 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80913 Colorado Springs Colorado CO El Paso 041 38.73 -104.7536 +US 80914 Colorado Springs Colorado CO El Paso 041 38.8192 -104.7012 +US 80915 Colorado Springs Colorado CO El Paso 041 38.8558 -104.7134 +US 80916 Colorado Springs Colorado CO El Paso 041 38.8076 -104.7403 +US 80917 Colorado Springs Colorado CO El Paso 041 38.886 -104.7399 +US 80918 Colorado Springs Colorado CO El Paso 041 38.9129 -104.7734 +US 80919 Colorado Springs Colorado CO El Paso 041 38.9268 -104.8464 +US 80920 Colorado Springs Colorado CO El Paso 041 38.9497 -104.767 +US 80921 Colorado Springs Colorado CO El Paso 041 39.0487 -104.814 +US 80922 Colorado Springs Colorado CO El Paso 041 38.905 -104.6982 +US 80923 Colorado Springs Colorado CO El Paso County 041 38.9189 -104.7045 +US 80924 Colorado Springs Colorado CO El Paso County 041 38.9676 -104.7211 +US 80925 Colorado Springs Colorado CO El Paso 041 38.7378 -104.6459 +US 80926 Colorado Springs Colorado CO El Paso 041 38.6981 -104.8505 +US 80927 Colorado Springs Colorado CO El Paso County 041 38.9286 -104.6583 +US 80928 Colorado Springs Colorado CO El Paso 041 38.6233 -104.457 +US 80929 Colorado Springs Colorado CO El Paso 041 38.7968 -104.6079 +US 80930 Colorado Springs Colorado CO El Paso 041 38.8289 -104.5269 +US 80931 Colorado Springs Colorado CO El Paso 041 38.953 -104.6092 +US 80932 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80933 Colorado Springs Colorado CO El Paso 041 38.9394 -105.0118 +US 80934 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80935 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80936 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80937 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80938 Colorado Springs Colorado CO El Paso County 041 38.9047 -104.6634 +US 80939 Colorado Springs Colorado CO El Paso County 041 38.8776 -104.6774 +US 80940 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80941 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80942 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80943 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80944 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80945 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80946 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80947 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80949 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80950 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80951 Colorado Springs Colorado CO El Paso County 041 38.8881 -104.6556 +US 80960 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80962 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80970 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80977 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80995 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 80997 Colorado Springs Colorado CO El Paso 041 38.8247 -104.562 +US 81212 Canon City Colorado CO Fremont 043 38.4451 -105.2178 +US 81215 Canon City Colorado CO Fremont 043 38.4776 -105.4766 +US 81221 Coal Creek Colorado CO Fremont 043 38.3389 -105.1597 +US 81222 Coaldale Colorado CO Fremont 043 38.3824 -105.7843 +US 81223 Cotopaxi Colorado CO Fremont 043 38.44 -105.4965 +US 81226 Florence Colorado CO Fremont 043 38.385 -105.1232 +US 81232 Hillside Colorado CO Fremont 043 38.2855 -105.6425 +US 81233 Howard Colorado CO Fremont 043 38.41 -105.7698 +US 81240 Penrose Colorado CO Fremont 043 38.4336 -105.0113 +US 81244 Rockvale Colorado CO Fremont 043 38.3362 -105.2211 +US 81246 Canon City Colorado CO Fremont 043 38.4776 -105.4766 +US 81290 Florence Colorado CO Fremont 043 38.3584 -105.1069 +US 81601 Glenwood Springs Colorado CO Garfield 045 39.5296 -107.3252 +US 81602 Glenwood Springs Colorado CO Garfield 045 39.5117 -107.3253 +US 81623 Carbondale Colorado CO Garfield 045 39.2511 -107.2044 +US 81635 Parachute Colorado CO Garfield 045 39.4585 -107.8789 +US 81636 Battlement Mesa Colorado CO Garfield 045 39.4305 -108.0239 +US 81647 New Castle Colorado CO Garfield 045 39.5709 -107.5428 +US 81650 Rifle Colorado CO Garfield 045 39.5491 -107.7898 +US 81652 Silt Colorado CO Garfield 045 39.5028 -107.6657 +US 80422 Black Hawk Colorado CO Gilpin 047 39.816 -105.4753 +US 80427 Central City Colorado CO Gilpin 047 39.8216 -105.5456 +US 80474 Rollinsville Colorado CO Gilpin 047 39.8838 -105.5482 +US 80442 Fraser Colorado CO Grand 049 39.9585 -105.7926 +US 80446 Granby Colorado CO Grand 049 40.0739 -105.9285 +US 80447 Grand Lake Colorado CO Grand 049 40.2289 -105.8605 +US 80451 Hot Sulphur Springs Colorado CO Grand 049 40.0712 -106.0693 +US 80459 Kremmling Colorado CO Grand 049 40.0632 -106.3955 +US 80468 Parshall Colorado CO Grand 049 39.9539 -106.093 +US 80478 Tabernash Colorado CO Grand 049 39.9797 -105.8615 +US 80482 Winter Park Colorado CO Grand 049 39.8939 -105.7845 +US 81210 Almont Colorado CO Gunnison 051 38.82 -106.6603 +US 81224 Crested Butte Colorado CO Gunnison 051 38.8691 -106.9619 +US 81225 Crested Butte Colorado CO Gunnison 051 38.9006 -106.9631 +US 81230 Gunnison Colorado CO Gunnison 051 38.5511 -106.931 +US 81231 Gunnison Colorado CO Gunnison 051 38.7023 -106.9402 +US 81237 Ohio City Colorado CO Gunnison 051 38.5908 -106.6028 +US 81239 Parlin Colorado CO Gunnison 051 38.5371 -106.6352 +US 81241 Pitkin Colorado CO Gunnison 051 38.6179 -106.5146 +US 81243 Powderhorn Colorado CO Gunnison 051 38.2822 -107.1084 +US 81247 Gunnison Colorado CO Gunnison 051 38.4575 -107.2921 +US 81434 Somerset Colorado CO Gunnison 051 38.9468 -107.3781 +US 81235 Lake City Colorado CO Hinsdale 053 37.9868 -107.302 +US 81040 Gardner Colorado CO Huerfano 055 37.7878 -105.1849 +US 81055 La Veta Colorado CO Huerfano 055 37.5117 -105.0575 +US 81065 Pryor Colorado CO Huerfano County 055 37.5081 -104.7136 +US 81066 Walsenburg Colorado CO Huerfano 055 37.7199 -105.3042 +US 81066 Red Wing Colorado CO Huerfano 055 37.7121 -105.3449 +US 81089 Walsenburg Colorado CO Huerfano 055 37.6465 -104.7798 +US 81333 Slick Rock Colorado CO Huerfano County 055 38.0427 -108.888 +US 80430 Coalmont Colorado CO Jackson 057 40.5383 -106.5321 +US 80434 Cowdrey Colorado CO Jackson 057 40.6631 -106.3625 +US 80473 Rand Colorado CO Jackson 057 40.4667 -106.1857 +US 80480 Walden Colorado CO Jackson 057 40.71 -106.2767 +US 80001 Arvada Colorado CO Jefferson 059 39.522 -105.2239 +US 80002 Arvada Colorado CO Jefferson 059 39.7945 -105.0984 +US 80003 Arvada Colorado CO Jefferson 059 39.8286 -105.0655 +US 80004 Arvada Colorado CO Jefferson 059 39.8141 -105.1177 +US 80005 Arvada Colorado CO Jefferson 059 39.8422 -105.1097 +US 80006 Arvada Colorado CO Jefferson 059 39.522 -105.2239 +US 80007 Arvada Colorado CO Jefferson 059 39.8634 -105.1724 +US 80021 Broomfield Colorado CO Jefferson 059 39.8854 -105.1139 +US 80033 Wheat Ridge Colorado CO Jefferson 059 39.774 -105.0962 +US 80034 Wheat Ridge Colorado CO Jefferson 059 39.522 -105.2239 +US 80123 Littleton Colorado CO Jefferson 059 39.6206 -105.0901 +US 80127 Littleton Colorado CO Jefferson 059 39.592 -105.1328 +US 80128 Littleton Colorado CO Jefferson 059 39.5918 -105.0832 +US 80162 Littleton Colorado CO Jefferson 059 39.522 -105.2239 +US 80214 Denver Colorado CO Jefferson 059 39.7436 -105.0643 +US 80215 Denver Colorado CO Jefferson 059 39.7435 -105.1009 +US 80225 Denver Colorado CO Jefferson 059 39.6971 -105.1204 +US 80226 Denver Colorado CO Jefferson 059 39.7123 -105.0918 +US 80228 Denver Colorado CO Jefferson 059 39.6888 -105.156 +US 80232 Denver Colorado CO Jefferson 059 39.6895 -105.0908 +US 80401 Golden Colorado CO Jefferson 059 39.7305 -105.1915 +US 80402 Golden Colorado CO Jefferson 059 39.522 -105.2239 +US 80403 Golden Colorado CO Jefferson 059 39.8232 -105.2825 +US 80419 Golden Colorado CO Jefferson 059 39.522 -105.2239 +US 80425 Buffalo Creek Colorado CO Jefferson 059 39.3322 -105.255 +US 80433 Conifer Colorado CO Jefferson 059 39.5197 -105.3169 +US 80437 Evergreen Colorado CO Jefferson 059 39.522 -105.2239 +US 80439 Evergreen Colorado CO Jefferson 059 39.6374 -105.3402 +US 80441 Foxton Colorado CO Jefferson County 059 39.4713 -105.2517 +US 80453 Idledale Colorado CO Jefferson 059 39.6684 -105.2442 +US 80454 Indian Hills Colorado CO Jefferson 059 39.6296 -105.2514 +US 80457 Kittredge Colorado CO Jefferson 059 39.6481 -105.2782 +US 80465 Morrison Colorado CO Jefferson 059 39.6125 -105.1746 +US 80470 Pine Colorado CO Jefferson 059 39.4667 -105.3741 +US 81021 Arlington Colorado CO Kiowa 061 38.4068 -103.3697 +US 81036 Eads Colorado CO Kiowa 061 38.4408 -102.5549 +US 81045 Haswell Colorado CO Kiowa 061 38.4474 -103.1505 +US 81071 Sheridan Lake Colorado CO Kiowa 061 38.4484 -102.2664 +US 80805 Bethune Colorado CO Kit Carson 063 39.3448 -102.4281 +US 80807 Burlington Colorado CO Kit Carson 063 39.3106 -102.2583 +US 80815 Flagler Colorado CO Kit Carson 063 39.3127 -103.0624 +US 80834 Seibert Colorado CO Kit Carson 063 39.3183 -102.8822 +US 80836 Stratton Colorado CO Kit Carson 063 39.3087 -102.5979 +US 80861 Vona Colorado CO Kit Carson 063 39.3236 -102.7393 +US 80429 Climax Colorado CO Lake 065 39.2258 -106.3117 +US 80461 Leadville Colorado CO Lake 065 39.2497 -106.3015 +US 81251 Twin Lakes Colorado CO Lake 065 39.1011 -106.4416 +US 81122 Bayfield Colorado CO La Plata 067 37.2603 -107.6137 +US 81137 Ignacio Colorado CO La Plata 067 37.1264 -107.6395 +US 81301 Durango Colorado CO La Plata 067 37.2874 -107.8617 +US 81302 Durango Colorado CO La Plata 067 37.3572 -107.9359 +US 81303 Durango Colorado CO La Plata 067 37.1156 -107.8909 +US 81326 Hesperus Colorado CO La Plata 067 37.1654 -108.1219 +US 81329 Marvel Colorado CO La Plata 067 37.0926 -108.1252 +US 80511 Estes Park Colorado CO Larimer 069 40.6281 -105.5692 +US 80512 Bellvue Colorado CO Larimer 069 40.6265 -105.261 +US 80513 Berthoud Colorado CO Larimer 069 40.2993 -105.1055 +US 80515 Drake Colorado CO Larimer 069 40.4275 -105.3831 +US 80517 Estes Park Colorado CO Larimer 069 40.3658 -105.5142 +US 80521 Fort Collins Colorado CO Larimer 069 40.5813 -105.1039 +US 80522 Fort Collins Colorado CO Larimer 069 40.6429 -105.057 +US 80523 Fort Collins Colorado CO Larimer 069 40.4555 -105.4648 +US 80524 Fort Collins Colorado CO Larimer 069 40.5986 -105.0581 +US 80525 Fort Collins Colorado CO Larimer 069 40.5384 -105.0547 +US 80526 Fort Collins Colorado CO Larimer 069 40.5473 -105.1076 +US 80527 Fort Collins Colorado CO Larimer 069 40.5406 -105.28 +US 80528 Fort Collins Colorado CO Larimer 069 40.4961 -105.0002 +US 80532 Glen Haven Colorado CO Larimer 069 40.4578 -105.447 +US 80535 Laporte Colorado CO Larimer 069 40.6347 -105.1488 +US 80536 Livermore Colorado CO Larimer 069 40.8701 -105.3766 +US 80537 Loveland Colorado CO Larimer 069 40.3849 -105.0916 +US 80538 Loveland Colorado CO Larimer 069 40.4262 -105.09 +US 80539 Loveland Colorado CO Larimer 069 40.3864 -105.1634 +US 80541 Masonville Colorado CO Larimer 069 40.5293 -105.372 +US 80545 Red Feather Lakes Colorado CO Larimer 069 40.8659 -105.6893 +US 80547 Timnath Colorado CO Larimer 069 40.7087 -105.0175 +US 80548 Laporte Colorado CO Larimer County 069 40.6632 -105.1552 +US 80549 Wellington Colorado CO Larimer 069 40.7255 -105.0318 +US 80553 Fort Collins Colorado CO Larimer 069 40.6281 -105.5692 +US 81020 Aguilar Colorado CO Las Animas 071 37.3933 -104.6769 +US 81024 Boncarbo Colorado CO Las Animas 071 37.2081 -104.7198 +US 81027 Branson Colorado CO Las Animas 071 37.0518 -103.8741 +US 81028 Bristol Colorado CO Las Animas County 071 38.134 -102.3477 +US 81032 Cokedale Colorado CO Las Animas County 071 37.1451 -104.6205 +US 81042 Gulnare Colorado CO Las Animas 071 37.3153 -104.7346 +US 81046 Hoehne Colorado CO Las Animas 071 37.2796 -104.3584 +US 81049 Kim Colorado CO Las Animas 071 37.3328 -103.3736 +US 81059 Model Colorado CO Las Animas 071 37.5192 -104.223 +US 81070 Segundo Colorado CO Las Animas County 071 37.1253 -104.755 +US 81074 Starkville Colorado CO Las Animas 071 37.121 -104.5232 +US 81075 Stonington Colorado CO Las Animas County 071 37.2936 -102.1869 +US 81081 Trinchera Colorado CO Las Animas 071 37.0757 -104.1184 +US 81082 Trinidad Colorado CO Las Animas 071 37.2691 -104.5038 +US 81091 Weston Colorado CO Las Animas 071 37.1702 -104.8247 +US 80804 Arriba Colorado CO Lincoln 073 39.3025 -103.271 +US 80818 Genoa Colorado CO Lincoln 073 39.3383 -103.4607 +US 80821 Hugo Colorado CO Lincoln 073 39.0843 -103.499 +US 80823 Karval Colorado CO Lincoln 073 38.7119 -103.5006 +US 80826 Limon Colorado CO Lincoln 073 39.0414 -103.6049 +US 80828 Limon Colorado CO Lincoln 073 39.2713 -103.6856 +US 80722 Atwood Colorado CO Logan 075 40.5082 -103.2749 +US 80726 Crook Colorado CO Logan 075 40.8747 -102.8472 +US 80728 Fleming Colorado CO Logan 075 40.637 -102.8688 +US 80736 Iliff Colorado CO Logan 075 40.7692 -103.0968 +US 80741 Merino Colorado CO Logan 075 40.5708 -103.4719 +US 80745 Padroni Colorado CO Logan 075 40.8842 -103.3728 +US 80747 Peetz Colorado CO Logan 075 40.9519 -103.1166 +US 80751 Sterling Colorado CO Logan 075 40.6306 -103.2212 +US 81501 Grand Junction Colorado CO Mesa 077 39.0783 -108.5457 +US 81502 Grand Junction Colorado CO Mesa 077 39.0179 -108.4814 +US 81503 Grand Junction Colorado CO Mesa 077 39.0307 -108.4361 +US 81504 Grand Junction Colorado CO Mesa 077 39.0791 -108.4916 +US 81505 Grand Junction Colorado CO Mesa 077 39.1071 -108.5968 +US 81506 Grand Junction Colorado CO Mesa 077 39.1032 -108.5491 +US 81507 Grand Junction Colorado CO Mesa 077 39.0157 -108.6129 5 +US 81520 Clifton Colorado CO Mesa 077 39.0805 -108.4496 +US 81521 Fruita Colorado CO Mesa 077 39.1637 -108.7218 +US 81522 Gateway Colorado CO Mesa 077 38.6784 -108.9719 +US 81523 Glade Park Colorado CO Mesa 077 38.9894 -108.781 +US 81524 Loma Colorado CO Mesa 077 39.2279 -108.8149 +US 81525 Mack Colorado CO Mesa 077 39.2554 -108.9296 +US 81526 Palisade Colorado CO Mesa 077 39.1032 -108.368 +US 81527 Whitewater Colorado CO Mesa 077 38.9744 -108.399 +US 81624 Collbran Colorado CO Mesa 077 39.2453 -107.9249 +US 81630 De Beque Colorado CO Mesa 077 39.3118 -108.2304 +US 81643 Mesa Colorado CO Mesa 077 39.1612 -108.1044 +US 81646 Molina Colorado CO Mesa 077 39.1652 -108.0765 +US 81130 Creede Colorado CO Mineral 079 37.8164 -106.9277 +US 81610 Dinosaur Colorado CO Moffat 081 40.2566 -108.9652 +US 81625 Craig Colorado CO Moffat 081 40.5224 -107.5615 +US 81626 Craig Colorado CO Moffat 081 40.6677 -107.7833 +US 81633 Dinosaur Colorado CO Moffat 081 40.377 -108.399 +US 81638 Hamilton Colorado CO Moffat 081 40.325 -107.5841 +US 81640 Maybell Colorado CO Moffat 081 40.6738 -108.3699 +US 81653 Slater Colorado CO Moffat 081 40.9979 -107.3388 +US 81321 Cortez Colorado CO Montezuma 083 37.3549 -108.5837 +US 81323 Dolores Colorado CO Montezuma 083 37.4666 -108.4717 +US 81327 Lewis Colorado CO Montezuma 083 37.5177 -108.6546 +US 81328 Mancos Colorado CO Montezuma 083 37.3471 -108.2982 +US 81330 Mesa Verde National Park Colorado CO Montezuma 083 37.2313 -108.4825 +US 81331 Pleasant View Colorado CO Montezuma 083 37.5888 -108.8095 +US 81334 Towaoc Colorado CO Montezuma 083 37.2084 -108.72 +US 81335 Yellow Jacket Colorado CO Montezuma 083 37.4995 -108.7852 +US 81220 Cimarron Colorado CO Montrose 085 38.3876 -107.4824 +US 81401 Montrose Colorado CO Montrose 085 38.4678 -107.8752 +US 81402 Montrose Colorado CO Montrose 085 38.4851 -107.886 +US 81403 Montrose Colorado CO Montrose 085 38.3602 -107.9381 5 +US 81411 Bedrock Colorado CO Montrose 085 38.2509 -108.9799 +US 81422 Naturita Colorado CO Montrose 085 38.2226 -108.5728 +US 81424 Nucla Colorado CO Montrose 085 38.2682 -108.5476 +US 81425 Olathe Colorado CO Montrose 085 38.5976 -107.9921 +US 81429 Paradox Colorado CO Montrose 085 38.3711 -108.9698 +US 81431 Redvale Colorado CO Montrose 085 38.1865 -108.3895 +US 80649 Orchard Colorado CO Morgan 087 40.3639 -104.0973 +US 80653 Weldona Colorado CO Morgan 087 40.3681 -103.9678 +US 80654 Wiggins Colorado CO Morgan 087 40.1598 -104.0468 +US 80701 Fort Morgan Colorado CO Morgan 087 40.2541 -103.8031 +US 80705 Log Lane Village Colorado CO Morgan 087 40.2707 -103.8338 +US 80723 Brush Colorado CO Morgan 087 40.2603 -103.6279 +US 80733 Hillrose Colorado CO Morgan 087 40.3459 -103.5057 +US 80750 Snyder Colorado CO Morgan 087 40.3307 -103.5971 +US 81030 Cheraw Colorado CO Otero 089 38.1029 -103.5367 +US 81039 Fowler Colorado CO Otero 089 38.1231 -104.0299 +US 81050 La Junta Colorado CO Otero 089 37.9546 -103.6644 +US 81058 Manzanola Colorado CO Otero 089 38.1109 -103.8766 +US 81067 Rocky Ford Colorado CO Otero 089 38.049 -103.7251 +US 81077 Swink Colorado CO Otero 089 38.055 -103.6195 +US 81427 Ouray Colorado CO Ouray 091 38.0258 -107.6726 +US 81432 Ridgway Colorado CO Ouray 091 38.1381 -107.7533 +US 80420 Alma Colorado CO Park 093 39.298 -106.0635 +US 80421 Bailey Colorado CO Park 093 39.4482 -105.4693 +US 80432 Como Colorado CO Park 093 39.1587 -105.817 +US 80440 Fairplay Colorado CO Park 093 39.2256 -105.9994 +US 80448 Grant Colorado CO Park 093 39.4612 -105.6583 +US 80449 Hartsel Colorado CO Park 093 38.9673 -105.8788 +US 80456 Jefferson Colorado CO Park 093 39.2759 -105.6865 +US 80475 Shawnee Colorado CO Park 093 39.4395 -105.603 +US 80820 Guffey Colorado CO Park 093 38.8146 -105.5784 +US 80827 Lake George Colorado CO Park 093 39.0342 -105.4347 +US 80721 Amherst Colorado CO Phillips 095 40.6824 -102.1706 +US 80731 Haxtun Colorado CO Phillips 095 40.6406 -102.6052 +US 80734 Holyoke Colorado CO Phillips 095 40.5825 -102.2825 +US 80746 Paoli Colorado CO Phillips 095 40.6106 -102.4722 +US 81611 Aspen Colorado CO Pitkin 097 39.1951 -106.8236 +US 81612 Aspen Colorado CO Pitkin 097 39.2234 -106.8828 +US 81615 Snowmass Village Colorado CO Pitkin 097 39.2212 -106.932 +US 81642 Meredith Colorado CO Pitkin 097 39.3199 -106.6596 +US 81654 Snowmass Colorado CO Pitkin 097 39.2258 -107.0303 +US 81656 Woody Creek Colorado CO Pitkin 097 39.2831 -106.8985 +US 81041 Granada Colorado CO Prowers 099 38.0545 -102.3271 +US 81043 Hartman Colorado CO Prowers 099 38.1195 -102.2168 +US 81047 Holly Colorado CO Prowers 099 38.0205 -102.1415 +US 81052 Lamar Colorado CO Prowers 099 38.0841 -102.6192 +US 81092 Wiley Colorado CO Prowers 099 38.159 -102.7147 +US 81001 Pueblo Colorado CO Pueblo 101 38.2879 -104.5848 +US 81002 Pueblo Colorado CO Pueblo 101 38.1286 -104.5523 +US 81003 Pueblo Colorado CO Pueblo 101 38.2843 -104.6234 +US 81004 Pueblo Colorado CO Pueblo 101 38.2441 -104.6278 +US 81005 Pueblo Colorado CO Pueblo 101 38.2352 -104.66 +US 81006 Pueblo Colorado CO Pueblo 101 38.2447 -104.5318 +US 81007 Pueblo Colorado CO Pueblo 101 38.387 -104.7792 +US 81008 Pueblo Colorado CO Pueblo 101 38.3133 -104.6284 +US 81009 Pueblo Colorado CO Pueblo 101 38.1286 -104.5523 +US 81010 Pueblo Colorado CO Pueblo 101 38.1286 -104.5523 +US 81011 Pueblo Colorado CO Pueblo 101 38.1286 -104.5523 +US 81012 Pueblo Colorado CO Pueblo 101 38.1286 -104.5523 +US 81013 Pueblo Colorado CO Pueblo 101 38.1286 -104.5523 +US 81014 Pueblo Colorado CO Pueblo 101 38.1286 -104.5523 +US 81015 Pueblo Colorado CO Pueblo 101 38.1286 -104.5523 +US 81019 Colorado City Colorado CO Pueblo 101 37.9441 -104.8412 +US 81022 Avondale Colorado CO Pueblo 101 38.1025 -104.5298 +US 81023 Beulah Colorado CO Pueblo 101 38.0837 -104.9724 +US 81025 Boone Colorado CO Pueblo 101 38.2646 -104.2585 +US 81069 Rye Colorado CO Pueblo 101 37.9371 -104.8863 +US 81641 Meeker Colorado CO Rio Blanco 103 40.0387 -107.8925 +US 81648 Rangely Colorado CO Rio Blanco 103 40.0828 -108.7991 +US 81132 Del Norte Colorado CO Rio Grande 105 37.6447 -106.4073 +US 81135 Homelake Colorado CO Rio Grande 105 37.6157 -106.3753 +US 81144 Monte Vista Colorado CO Rio Grande 105 37.5731 -106.1408 +US 81154 South Fork Colorado CO Rio Grande 105 37.6725 -106.6125 +US 80428 Clark Colorado CO Routt 107 40.7268 -106.9215 +US 80467 Oak Creek Colorado CO Routt 107 40.2567 -106.9296 +US 80469 Phippsburg Colorado CO Routt 107 40.1907 -106.9735 +US 80477 Steamboat Springs Colorado CO Routt 107 40.3482 -106.9269 +US 80479 Toponas Colorado CO Routt 107 40.0676 -106.8517 +US 80483 Yampa Colorado CO Routt 107 40.1304 -106.9116 +US 80487 Steamboat Springs Colorado CO Routt 107 40.6327 -106.9318 +US 80488 Steamboat Springs Colorado CO Routt 107 40.6197 -106.8607 +US 81639 Hayden Colorado CO Routt 107 40.4945 -107.2571 +US 81125 Center Colorado CO Saguache 109 37.7343 -106.0906 +US 81131 Crestone Colorado CO Saguache 109 37.953 -105.6879 +US 81143 Moffat Colorado CO Saguache 109 38.0452 -105.8411 +US 81149 Saguache Colorado CO Saguache 109 38.0977 -106.1876 +US 81155 Villa Grove Colorado CO Saguache 109 38.2952 -106.1102 +US 81248 Sargents Colorado CO Saguache 109 38.4033 -106.4161 +US 81433 Silverton Colorado CO San Juan 111 37.809 -107.6667 +US 81325 Egnar Colorado CO San Miguel 113 37.9344 -108.9299 +US 81423 Norwood Colorado CO San Miguel 113 38.1104 -108.2845 +US 81426 Ophir Colorado CO San Miguel 113 37.8562 -107.852 +US 81430 Placerville Colorado CO San Miguel 113 38.0593 -107.9904 +US 81435 Telluride Colorado CO San Miguel 113 37.94 -107.8214 +US 80737 Julesburg Colorado CO Sedgwick 115 40.9708 -102.2575 +US 80744 Ovid Colorado CO Sedgwick 115 40.9459 -102.3874 +US 80749 Sedgwick Colorado CO Sedgwick 115 40.9103 -102.5291 +US 80424 Breckenridge Colorado CO Summit 117 39.4753 -106.0225 +US 80435 Dillon Colorado CO Summit 117 39.5952 -105.9741 +US 80443 Frisco Colorado CO Summit 117 39.5589 -106.1332 +US 80497 Silverthorne Colorado CO Summit 117 39.6411 -106.108 +US 80498 Silverthorne Colorado CO Summit 117 39.7647 -106.2211 +US 80813 Cripple Creek Colorado CO Teller 119 38.8261 -105.1499 +US 80814 Divide Colorado CO Teller 119 38.9576 -105.1994 +US 80816 Florissant Colorado CO Teller 119 38.8546 -105.3121 +US 80860 Victor Colorado CO Teller 119 38.731 -105.1321 +US 80863 Woodland Park Colorado CO Teller 119 38.9969 -105.0623 +US 80866 Woodland Park Colorado CO Teller 119 39.0363 -105.156 +US 80720 Akron Colorado CO Washington 121 40.1803 -103.2259 +US 80740 Lindon Colorado CO Washington 121 39.7909 -103.4142 +US 80743 Otis Colorado CO Washington 121 40.203 -102.9392 +US 80757 Woodrow Colorado CO Washington 121 39.805 -103.5752 +US 80801 Anton Colorado CO Washington 121 39.6909 -103.1373 +US 80812 Cope Colorado CO Washington 121 39.6848 -102.9904 +US 80504 Longmont Colorado CO Weld 123 40.1306 -104.9504 +US 80514 Dacono Colorado CO Weld 123 40.0836 -104.9297 +US 80516 Erie Colorado CO Weld 123 40.0597 -105.0686 +US 80520 Firestone Colorado CO Weld 123 40.1225 -104.9358 +US 80530 Frederick Colorado CO Weld 123 40.0978 -104.9293 +US 80534 Johnstown Colorado CO Weld 123 40.3355 -104.9236 +US 80542 Mead Colorado CO Weld 123 40.2347 -104.9994 +US 80543 Milliken Colorado CO Weld 123 40.3107 -104.8761 +US 80546 Severance Colorado CO Weld 123 40.525 -104.8505 +US 80550 Windsor Colorado CO Weld 123 40.4837 -104.8994 +US 80551 Windsor Colorado CO Weld 123 40.4641 -104.8851 +US 80610 Ault Colorado CO Weld 123 40.5938 -104.7356 +US 80611 Briggsdale Colorado CO Weld 123 40.6392 -104.2871 +US 80612 Carr Colorado CO Weld 123 40.8666 -104.8859 +US 80615 Eaton Colorado CO Weld 123 40.5273 -104.7146 +US 80620 Evans Colorado CO Weld 123 40.3803 -104.6971 +US 80621 Fort Lupton Colorado CO Weld 123 40.108 -104.8013 +US 80622 Galeton Colorado CO Weld 123 40.5378 -104.4585 +US 80623 Gilcrest Colorado CO Weld 123 40.2854 -104.7825 +US 80624 Gill Colorado CO Weld 123 40.4696 -104.5 +US 80631 Greeley Colorado CO Weld 123 40.385 -104.6806 +US 80632 Greeley Colorado CO Weld 123 40.3766 -104.7629 +US 80633 Greeley Colorado CO Weld 123 40.5009 -104.315 +US 80634 Greeley Colorado CO Weld 123 40.4109 -104.7541 +US 80638 Greeley Colorado CO Weld 123 40.5009 -104.315 +US 80639 Greeley Colorado CO Weld 123 40.3993 -104.7017 +US 80642 Hudson Colorado CO Weld 123 40.0606 -104.6532 +US 80643 Keenesburg Colorado CO Weld 123 40.0958 -104.4464 +US 80644 Kersey Colorado CO Weld 123 40.3963 -104.5288 +US 80645 La Salle Colorado CO Weld 123 40.3211 -104.7268 +US 80646 Lucerne Colorado CO Weld 123 40.4824 -104.7054 +US 80648 Nunn Colorado CO Weld 123 40.7265 -104.785 +US 80650 Pierce Colorado CO Weld 123 40.6359 -104.7638 +US 80651 Platteville Colorado CO Weld 123 40.2131 -104.8028 +US 80652 Roggen Colorado CO Weld 123 40.0878 -104.282 +US 80729 Grover Colorado CO Weld 123 40.8716 -104.2346 +US 80732 Hereford Colorado CO Weld 123 40.9751 -104.3053 +US 80742 New Raymer Colorado CO Weld 123 40.6851 -103.839 +US 80754 Stoneham Colorado CO Weld 123 40.687 -103.6387 +US 80727 Eckley Colorado CO Yuma 125 40.1138 -102.4828 +US 80735 Idalia Colorado CO Yuma 125 39.8167 -102.4262 +US 80755 Vernon Colorado CO Yuma 125 39.9331 -102.3193 +US 80758 Wray Colorado CO Yuma 125 40.0685 -102.393 +US 80759 Yuma Colorado CO Yuma 125 40.1301 -102.7072 +US 80822 Joes Colorado CO Yuma 125 39.6728 -102.6151 +US 80824 Kirk Colorado CO Yuma 125 39.6171 -102.4776 +US 06404 Botsford Connecticut CT Fairfield 001 41.1651 -73.1292 +US 06430 Fairfield Connecticut CT Fairfield 001 41.1664 -73.2571 +US 06431 Fairfield Connecticut CT Fairfield 001 41.2191 -73.2527 +US 06432 Fairfield Connecticut CT Fairfield 001 41.2017 -73.2354 +US 06436 Greens Farms Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06440 Hawleyville Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06468 Monroe Connecticut CT Fairfield 001 41.3312 -73.2243 +US 06470 Newtown Connecticut CT Fairfield 001 41.3931 -73.3167 +US 06482 Sandy Hook Connecticut CT Fairfield 001 41.4087 -73.2485 +US 06484 Shelton Connecticut CT Fairfield 001 41.3047 -73.1294 +US 06490 Southport Connecticut CT Fairfield 001 41.1453 -73.2902 +US 06491 Stevenson Connecticut CT Fairfield 001 41.3866 -73.1872 +US 06497 Stratford Connecticut CT Fairfield 001 41.2071 -73.1305 +US 06601 Bridgeport Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06602 Bridgeport Connecticut CT Fairfield 001 41.1798 -73.189 +US 06604 Bridgeport Connecticut CT Fairfield 001 41.1796 -73.2019 +US 06605 Bridgeport Connecticut CT Fairfield 001 41.1668 -73.2163 +US 06606 Bridgeport Connecticut CT Fairfield 001 41.2091 -73.2086 +US 06607 Bridgeport Connecticut CT Fairfield 001 41.1784 -73.165 +US 06608 Bridgeport Connecticut CT Fairfield 001 41.1895 -73.1811 +US 06610 Bridgeport Connecticut CT Fairfield 001 41.2005 -73.1688 +US 06611 Trumbull Connecticut CT Fairfield 001 41.2564 -73.2111 +US 06612 Easton Connecticut CT Fairfield 001 41.2523 -73.2871 +US 06614 Stratford Connecticut CT Fairfield 001 41.216 -73.1304 +US 06615 Stratford Connecticut CT Fairfield 001 41.177 -73.1336 +US 06650 Bridgeport Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06673 Bridgeport Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06699 Bridgeport Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06784 Sherman Connecticut CT Fairfield 001 41.5714 -73.4947 +US 06801 Bethel Connecticut CT Fairfield 001 41.3813 -73.4008 +US 06804 Brookfield Connecticut CT Fairfield 001 41.465 -73.398 +US 06807 Cos Cob Connecticut CT Fairfield 001 41.053 -73.5935 +US 06810 Danbury Connecticut CT Fairfield 001 41.3917 -73.4532 +US 06811 Danbury Connecticut CT Fairfield 001 41.424 -73.4716 +US 06812 New Fairfield Connecticut CT Fairfield 001 41.473 -73.4978 +US 06813 Danbury Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06814 Danbury Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06816 Danbury Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06817 Danbury Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06820 Darien Connecticut CT Fairfield 001 41.0768 -73.4853 +US 06824 Fairfield Connecticut CT Fairfield County 001 41.1692 -73.2681 +US 06825 Fairfield Connecticut CT Fairfield County 001 41.1928 -73.2402 +US 06828 Fairfield Connecticut CT Fairfield County 001 41.169 -73.2334 +US 06829 Georgetown Connecticut CT Fairfield 001 41.2555 -73.4279 +US 06830 Greenwich Connecticut CT Fairfield 001 41.0427 -73.6262 +US 06831 Greenwich Connecticut CT Fairfield 001 41.0549 -73.6594 +US 06832 Greenwich Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06836 Greenwich Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06838 Greens Farms Connecticut CT Fairfield County 001 41.1238 -73.3195 +US 06840 New Canaan Connecticut CT Fairfield 001 41.151 -73.4944 +US 06842 New Canaan Connecticut CT Fairfield 001 41.1471 -73.4954 +US 06850 Norwalk Connecticut CT Fairfield 001 41.1222 -73.4358 +US 06851 Norwalk Connecticut CT Fairfield 001 41.1323 -73.4058 +US 06852 Norwalk Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06853 Norwalk Connecticut CT Fairfield 001 41.0702 -73.4397 +US 06854 Norwalk Connecticut CT Fairfield 001 41.0957 -73.4285 +US 06855 Norwalk Connecticut CT Fairfield 001 41.1014 -73.4011 +US 06856 Norwalk Connecticut CT Fairfield 001 41.1112 -73.4204 +US 06857 Norwalk Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06858 Norwalk Connecticut CT Fairfield 001 41.1105 -73.4162 +US 06859 Norwalk Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06860 Norwalk Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06870 Old Greenwich Connecticut CT Fairfield 001 41.0354 -73.5673 +US 06875 Redding Center Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06876 Redding Ridge Connecticut CT Fairfield 001 41.0326 -73.5836 +US 06877 Ridgefield Connecticut CT Fairfield 001 41.2977 -73.4973 +US 06878 Riverside Connecticut CT Fairfield 001 41.038 -73.5811 +US 06879 Ridgefield Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06880 Westport Connecticut CT Fairfield 001 41.1434 -73.3496 +US 06881 Westport Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06883 Weston Connecticut CT Fairfield 001 41.2195 -73.3715 +US 06888 Westport Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06889 Westport Connecticut CT Fairfield 001 41.141 -73.3469 +US 06890 Southport Connecticut CT Fairfield County 001 41.1428 -73.2884 +US 06896 Redding Connecticut CT Fairfield 001 41.2711 -73.3863 +US 06897 Wilton Connecticut CT Fairfield 001 41.2018 -73.4383 +US 06901 Stamford Connecticut CT Fairfield 001 41.0531 -73.539 +US 06902 Stamford Connecticut CT Fairfield 001 41.0602 -73.5445 +US 06903 Stamford Connecticut CT Fairfield 001 41.1352 -73.5684 +US 06904 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06905 Stamford Connecticut CT Fairfield 001 41.0888 -73.5435 +US 06906 Stamford Connecticut CT Fairfield 001 41.0692 -73.5236 +US 06907 Stamford Connecticut CT Fairfield 001 41.0942 -73.5203 +US 06910 Stamford Connecticut CT Fairfield 001 41.0391 -73.5591 +US 06911 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06912 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06913 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06914 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06920 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06921 Stamford Connecticut CT Fairfield 001 41.0499 -73.538 +US 06922 Stamford Connecticut CT Fairfield 001 41.0516 -73.5143 +US 06925 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06926 Stamford Connecticut CT Fairfield 001 41.0412 -73.5386 +US 06927 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06928 Stamford Connecticut CT Fairfield 001 41.3089 -73.3637 +US 06001 Avon Connecticut CT Hartford 003 41.7905 -72.8653 +US 06002 Bloomfield Connecticut CT Hartford 003 41.8316 -72.7249 +US 06006 Windsor Connecticut CT Hartford 003 41.8796 -72.7343 +US 06010 Bristol Connecticut CT Hartford 003 41.6823 -72.9302 +US 06011 Bristol Connecticut CT Hartford 003 41.7918 -72.7188 +US 06013 Burlington Connecticut CT Hartford 003 41.7573 -72.9444 +US 06016 Broad Brook Connecticut CT Hartford 003 41.9042 -72.5444 +US 06019 Canton Connecticut CT Hartford 003 41.8384 -72.8987 +US 06020 Canton Center Connecticut CT Hartford 003 41.8539 -72.9028 +US 06022 Collinsville Connecticut CT Hartford 003 41.8513 -72.9283 +US 06023 East Berlin Connecticut CT Hartford 003 41.6128 -72.719 +US 06025 East Glastonbury Connecticut CT Hartford 003 41.6889 -72.5345 +US 06026 East Granby Connecticut CT Hartford 003 41.9322 -72.7459 +US 06027 East Hartland Connecticut CT Hartford 003 42.0016 -72.9242 +US 06028 East Windsor Hill Connecticut CT Hartford 003 41.8592 -72.603 +US 06030 Farmington Connecticut CT Hartford 003 41.7918 -72.7188 +US 06032 Farmington Connecticut CT Hartford 003 41.7284 -72.8415 +US 06033 Glastonbury Connecticut CT Hartford 003 41.7073 -72.5727 +US 06034 Farmington Connecticut CT Hartford 003 41.7918 -72.7188 +US 06035 Granby Connecticut CT Hartford 003 41.9602 -72.7994 +US 06037 Kensington Connecticut CT Hartford 003 41.6029 -72.77 +US 06040 Manchester Connecticut CT Hartford 003 41.7777 -72.5244 +US 06041 Manchester Connecticut CT Hartford 003 41.7947 -72.5648 +US 06042 Manchester Connecticut CT Hartford County 003 41.7966 -72.5292 +US 06045 Manchester Connecticut CT Hartford 003 41.7918 -72.7188 +US 06049 Melrose Connecticut CT Hartford 003 41.7918 -72.7188 +US 06050 New Britain Connecticut CT Hartford 003 41.666 -72.7784 +US 06051 New Britain Connecticut CT Hartford 003 41.6667 -72.7722 +US 06052 New Britain Connecticut CT Hartford 003 41.6588 -72.7989 +US 06053 New Britain Connecticut CT Hartford 003 41.6867 -72.7908 +US 06059 North Canton Connecticut CT Hartford 003 41.8997 -72.8907 +US 06060 North Granby Connecticut CT Hartford 003 42.0219 -72.8409 +US 06062 Plainville Connecticut CT Hartford 003 41.6727 -72.8644 +US 06064 Poquonock Connecticut CT Hartford 003 41.7918 -72.7188 +US 06067 Rocky Hill Connecticut CT Hartford 003 41.6583 -72.6632 +US 06070 Simsbury Connecticut CT Hartford 003 41.8737 -72.8213 +US 06073 South Glastonbury Connecticut CT Hartford 003 41.6571 -72.5722 +US 06074 South Windsor Connecticut CT Hartford 003 41.8341 -72.5576 +US 06078 Suffield Connecticut CT Hartford 003 41.99 -72.642 +US 06080 Suffield Connecticut CT Hartford 003 41.9486 -72.6288 +US 06081 Tariffville Connecticut CT Hartford 003 41.9077 -72.7678 +US 06082 Enfield Connecticut CT Hartford 003 41.989 -72.5652 +US 06083 Enfield Connecticut CT Hartford 003 41.7918 -72.7188 +US 06085 Unionville Connecticut CT Hartford 003 41.7477 -72.8874 +US 06087 Unionville Connecticut CT Hartford 003 41.7576 -72.885 +US 06088 East Windsor Connecticut CT Hartford 003 41.9099 -72.6029 +US 06089 Weatogue Connecticut CT Hartford 003 41.8372 -72.8253 +US 06090 West Granby Connecticut CT Hartford 003 41.9556 -72.862 +US 06091 West Hartland Connecticut CT Hartford 003 42.0034 -72.9921 +US 06092 West Simsbury Connecticut CT Hartford 003 41.8718 -72.8577 +US 06093 West Suffield Connecticut CT Hartford 003 42.0115 -72.7362 +US 06095 Windsor Connecticut CT Hartford 003 41.8561 -72.6639 +US 06096 Windsor Locks Connecticut CT Hartford 003 41.9261 -72.6458 +US 06101 Hartford Connecticut CT Hartford 003 41.7801 -72.6771 +US 06102 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06103 Hartford Connecticut CT Hartford 003 41.7672 -72.676 +US 06104 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06105 Hartford Connecticut CT Hartford 003 41.7691 -72.701 +US 06106 Hartford Connecticut CT Hartford 003 41.7498 -72.6947 +US 06107 West Hartford Connecticut CT Hartford 003 41.7556 -72.7532 +US 06108 East Hartford Connecticut CT Hartford 003 41.7803 -72.618 +US 06109 Wethersfield Connecticut CT Hartford 003 41.7013 -72.6763 +US 06110 West Hartford Connecticut CT Hartford 003 41.7326 -72.7337 +US 06111 Newington Connecticut CT Hartford 003 41.686 -72.7296 +US 06112 Hartford Connecticut CT Hartford 003 41.7905 -72.6964 +US 06114 Hartford Connecticut CT Hartford 003 41.7403 -72.6807 +US 06115 Hartford Connecticut CT Hartford 003 41.7588 -72.6794 +US 06117 West Hartford Connecticut CT Hartford 003 41.79 -72.7457 +US 06118 East Hartford Connecticut CT Hartford 003 41.7472 -72.6103 +US 06119 West Hartford Connecticut CT Hartford 003 41.7628 -72.7268 +US 06120 Hartford Connecticut CT Hartford 003 41.786 -72.6758 +US 06123 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06126 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06127 West Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06128 East Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06129 Wethersfield Connecticut CT Hartford 003 41.7918 -72.7188 +US 06131 Newington Connecticut CT Hartford 003 41.7918 -72.7188 +US 06132 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06133 West Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06134 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06137 West Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06138 East Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06140 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06141 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06142 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06143 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06144 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06145 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06146 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06147 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06150 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06151 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06152 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06153 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06154 Hartford Connecticut CT Hartford 003 41.7715 -72.6867 +US 06155 Hartford Connecticut CT Hartford 003 41.7693 -72.6865 +US 06156 Hartford Connecticut CT Hartford 003 41.7679 -72.6907 +US 06160 Hartford Connecticut CT Hartford 003 41.7665 -72.6933 +US 06161 Hartford Connecticut CT Hartford 003 41.766 -72.6718 +US 06167 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06176 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06180 Hartford Connecticut CT Hartford 003 41.7918 -72.7188 +US 06183 Hartford Connecticut CT Hartford 003 41.7638 -72.673 +US 06199 Hartford Connecticut CT Hartford 003 41.9274 -72.6804 +US 06444 Marion Connecticut CT Hartford 003 41.7918 -72.7188 +US 06447 Marlborough Connecticut CT Hartford 003 41.6412 -72.4609 +US 06467 Milldale Connecticut CT Hartford 003 41.5657 -72.9037 +US 06479 Plantsville Connecticut CT Hartford 003 41.5797 -72.899 +US 06489 Southington Connecticut CT Hartford 003 41.6052 -72.8727 +US 06018 Canaan Connecticut CT Litchfield 005 42.0248 -73.3232 +US 06021 Colebrook Connecticut CT Litchfield 005 42.0282 -73.1041 +US 06024 East Canaan Connecticut CT Litchfield 005 42.0158 -73.2913 +US 06031 Falls Village Connecticut CT Litchfield 005 41.9578 -73.3517 +US 06039 Lakeville Connecticut CT Litchfield 005 41.9516 -73.4377 +US 06057 New Hartford Connecticut CT Litchfield 005 41.8468 -73.0104 +US 06058 Norfolk Connecticut CT Litchfield 005 41.9854 -73.1992 +US 06061 Pine Meadow Connecticut CT Litchfield 005 41.8744 -72.968 +US 06063 Pleasant Valley Connecticut CT Litchfield 005 41.9249 -72.9827 +US 06065 Riverton Connecticut CT Litchfield 005 41.9686 -73.0145 +US 06068 Salisbury Connecticut CT Litchfield 005 42.0015 -73.4215 +US 06069 Sharon Connecticut CT Litchfield 005 41.8714 -73.4578 +US 06079 Taconic Connecticut CT Litchfield 005 42.032 -73.4038 +US 06094 Winchester Center Connecticut CT Litchfield 005 41.8963 -73.1463 +US 06098 Winsted Connecticut CT Litchfield 005 41.9252 -73.0663 +US 06750 Bantam Connecticut CT Litchfield 005 41.7215 -73.252 +US 06751 Bethlehem Connecticut CT Litchfield 005 41.6387 -73.2091 +US 06752 Bridgewater Connecticut CT Litchfield 005 41.5287 -73.3609 +US 06753 Cornwall Connecticut CT Litchfield 005 41.8281 -73.3323 +US 06754 Cornwall Bridge Connecticut CT Litchfield 005 41.7444 -73.3019 +US 06755 Gaylordsville Connecticut CT Litchfield 005 41.6486 -73.4835 +US 06756 Goshen Connecticut CT Litchfield 005 41.8335 -73.2429 +US 06757 Kent Connecticut CT Litchfield 005 41.7316 -73.4583 +US 06758 Lakeside Connecticut CT Litchfield 005 41.6754 -73.242 +US 06759 Litchfield Connecticut CT Litchfield 005 41.7541 -73.2 +US 06763 Morris Connecticut CT Litchfield 005 41.6881 -73.1765 +US 06776 New Milford Connecticut CT Litchfield 005 41.5817 -73.4128 +US 06777 New Preston Marble Dale Connecticut CT Litchfield 005 41.6903 -73.3103 +US 06778 Northfield Connecticut CT Litchfield 005 41.7077 -73.109 +US 06779 Oakville Connecticut CT Litchfield 005 41.5909 -73.0873 +US 06781 Pequabuck Connecticut CT Litchfield 005 41.6699 -72.9915 +US 06782 Plymouth Connecticut CT Litchfield 005 41.6611 -73.0449 +US 06783 Roxbury Connecticut CT Litchfield 005 41.5509 -73.2993 +US 06785 South Kent Connecticut CT Litchfield 005 41.6951 -73.469 +US 06786 Terryville Connecticut CT Litchfield 005 41.6762 -73.0092 +US 06787 Thomaston Connecticut CT Litchfield 005 41.6786 -73.0886 +US 06790 Torrington Connecticut CT Litchfield 005 41.8131 -73.1156 +US 06791 Harwinton Connecticut CT Litchfield 005 41.7701 -73.0728 +US 06792 Torrington Connecticut CT Litchfield County 005 41.7549 -73.0582 +US 06793 Washington Connecticut CT Litchfield 005 41.6296 -73.2884 +US 06794 Washington Depot Connecticut CT Litchfield 005 41.6559 -73.3274 +US 06795 Watertown Connecticut CT Litchfield 005 41.6057 -73.1221 +US 06796 West Cornwall Connecticut CT Litchfield 005 41.8689 -73.3313 +US 06798 Woodbury Connecticut CT Litchfield 005 41.5521 -73.2083 +US 06409 Centerbrook Connecticut CT Middlesex 007 41.3474 -72.4173 +US 06412 Chester Connecticut CT Middlesex 007 41.4049 -72.4643 +US 06413 Clinton Connecticut CT Middlesex 007 41.2912 -72.528 +US 06414 Cobalt Connecticut CT Middlesex 007 41.5667 -72.5581 +US 06416 Cromwell Connecticut CT Middlesex 007 41.6105 -72.6663 +US 06417 Deep River Connecticut CT Middlesex 007 41.3765 -72.4486 +US 06419 Killingworth Connecticut CT Middlesex 007 41.3696 -72.5712 +US 06422 Durham Connecticut CT Middlesex 007 41.465 -72.6875 +US 06423 East Haddam Connecticut CT Middlesex 007 41.4696 -72.4059 +US 06424 East Hampton Connecticut CT Middlesex 007 41.5761 -72.5093 +US 06426 Essex Connecticut CT Middlesex 007 41.3549 -72.3965 +US 06438 Haddam Connecticut CT Middlesex 007 41.4627 -72.505 +US 06441 Higganum Connecticut CT Middlesex 007 41.4682 -72.5751 +US 06442 Ivoryton Connecticut CT Middlesex 007 41.3421 -72.4404 +US 06455 Middlefield Connecticut CT Middlesex 007 41.5168 -72.7186 +US 06456 Middle Haddam Connecticut CT Middlesex 007 41.538 -72.5252 +US 06457 Middletown Connecticut CT Middlesex 007 41.5569 -72.6652 +US 06459 Middletown Connecticut CT Middlesex 007 41.5565 -72.6582 +US 06469 Moodus Connecticut CT Middlesex 007 41.5078 -72.4419 +US 06475 Old Saybrook Connecticut CT Middlesex 007 41.2913 -72.385 +US 06480 Portland Connecticut CT Middlesex 007 41.5852 -72.6128 +US 06481 Rockfall Connecticut CT Middlesex 007 41.5341 -72.6997 +US 06498 Westbrook Connecticut CT Middlesex 007 41.2927 -72.4563 +US 06401 Ansonia Connecticut CT New Haven 009 41.3427 -73.0742 +US 06403 Beacon Falls Connecticut CT New Haven 009 41.4369 -73.0597 +US 06405 Branford Connecticut CT New Haven 009 41.28 -72.8106 +US 06408 Cheshire Connecticut CT New Haven 009 41.3657 -72.9275 +US 06410 Cheshire Connecticut CT New Haven 009 41.5055 -72.9081 +US 06411 Cheshire Connecticut CT New Haven 009 41.5501 -72.9222 +US 06418 Derby Connecticut CT New Haven 009 41.3229 -73.08 +US 06437 Guilford Connecticut CT New Haven 009 41.3154 -72.6968 +US 06443 Madison Connecticut CT New Haven 009 41.309 -72.6153 +US 06450 Meriden Connecticut CT New Haven 009 41.5334 -72.7997 +US 06451 Meriden Connecticut CT New Haven 009 41.5401 -72.8189 +US 06454 Meriden Connecticut CT New Haven 009 41.3657 -72.9275 +US 06460 Milford Connecticut CT New Haven 009 41.2175 -73.0549 +US 06461 Milford Connecticut CT New Haven County 009 41.2338 -73.0747 +US 06466 Milford Connecticut CT New Haven County 009 41.2222 -73.0567 +US 06471 North Branford Connecticut CT New Haven 009 41.3323 -72.7809 +US 06472 Northford Connecticut CT New Haven 009 41.3962 -72.7809 +US 06473 North Haven Connecticut CT New Haven 009 41.3822 -72.8585 +US 06477 Orange Connecticut CT New Haven 009 41.2815 -73.0287 +US 06478 Oxford Connecticut CT New Haven 009 41.4202 -73.1296 +US 06483 Seymour Connecticut CT New Haven 009 41.3862 -73.0817 +US 06487 South Britain Connecticut CT New Haven 009 41.3657 -72.9275 +US 06488 Southbury Connecticut CT New Haven 009 41.4767 -73.2241 +US 06492 Wallingford Connecticut CT New Haven 009 41.46 -72.8222 +US 06493 Wallingford Connecticut CT New Haven 009 41.3657 -72.9275 +US 06494 Wallingford Connecticut CT New Haven 009 41.3657 -72.9275 +US 06495 Wallingford Connecticut CT New Haven County 009 41.3885 -72.8795 +US 06501 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06502 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06503 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06504 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06505 New Haven Connecticut CT New Haven 009 41.3057 -72.7799 +US 06506 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06507 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06508 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06509 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06510 New Haven Connecticut CT New Haven 009 41.3087 -72.9271 +US 06511 New Haven Connecticut CT New Haven 009 41.3184 -72.9318 +US 06512 East Haven Connecticut CT New Haven 009 41.2805 -72.8741 +US 06513 New Haven Connecticut CT New Haven 009 41.3072 -72.8654 +US 06514 Hamden Connecticut CT New Haven 009 41.362 -72.9361 +US 06515 New Haven Connecticut CT New Haven 009 41.3293 -72.9664 +US 06516 West Haven Connecticut CT New Haven 009 41.2701 -72.9638 +US 06517 Hamden Connecticut CT New Haven 009 41.3484 -72.9117 +US 06518 Hamden Connecticut CT New Haven 009 41.4097 -72.911 +US 06519 New Haven Connecticut CT New Haven 009 41.2963 -72.9373 +US 06520 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06521 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06524 Bethany Connecticut CT New Haven 009 41.4262 -73.0007 +US 06525 Woodbridge Connecticut CT New Haven 009 41.3517 -73.0139 +US 06530 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06531 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06532 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06533 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06534 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06535 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06536 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06537 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06538 New Haven Connecticut CT New Haven 009 41.3657 -72.9275 +US 06540 New Haven Connecticut CT New Haven 009 41.2996 -72.9188 +US 06701 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06702 Waterbury Connecticut CT New Haven 009 41.5566 -73.0385 +US 06703 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06704 Waterbury Connecticut CT New Haven 009 41.5754 -73.0318 +US 06705 Waterbury Connecticut CT New Haven 009 41.5503 -72.9963 +US 06706 Waterbury Connecticut CT New Haven 009 41.5363 -73.0306 +US 06708 Waterbury Connecticut CT New Haven 009 41.5511 -73.0645 +US 06710 Waterbury Connecticut CT New Haven 009 41.5675 -73.0468 +US 06712 Prospect Connecticut CT New Haven 009 41.5022 -72.9788 +US 06716 Wolcott Connecticut CT New Haven 009 41.597 -72.9828 +US 06720 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06721 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06722 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06723 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06724 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06725 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06726 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06749 Waterbury Connecticut CT New Haven 009 41.3657 -72.9275 +US 06762 Middlebury Connecticut CT New Haven 009 41.5343 -73.1131 +US 06770 Naugatuck Connecticut CT New Haven 009 41.492 -73.0493 +US 06249 Lebanon Connecticut CT New London 011 41.633 -72.244 +US 06254 North Franklin Connecticut CT New London 011 41.6161 -72.1425 +US 06320 New London Connecticut CT New London 011 41.3507 -72.1062 +US 06330 Baltic Connecticut CT New London 011 41.6263 -72.0775 +US 06333 East Lyme Connecticut CT New London 011 41.3668 -72.233 +US 06334 Bozrah Connecticut CT New London 011 41.5465 -72.1711 +US 06335 Gales Ferry Connecticut CT New London 011 41.4285 -72.0672 +US 06336 Gilman Connecticut CT New London 011 41.5795 -72.1963 +US 06337 Glasgo Connecticut CT New London 011 41.5599 -71.8892 +US 06338 Mashantucket Connecticut CT New London County 011 41.4757 -71.9574 +US 06339 Ledyard Connecticut CT New London 011 41.4401 -71.9956 +US 06340 Groton Connecticut CT New London 011 41.3572 -72.0579 +US 06349 Groton Connecticut CT New London 011 41.3997 -72.0904 +US 06350 Hanover Connecticut CT New London 011 41.6445 -72.0677 +US 06351 Jewett City Connecticut CT New London 011 41.6052 -71.9808 +US 06353 Montville Connecticut CT New London 011 41.4525 -72.1375 +US 06355 Mystic Connecticut CT New London 011 41.3616 -71.9774 +US 06357 Niantic Connecticut CT New London 011 41.3253 -72.2108 +US 06359 North Stonington Connecticut CT New London 011 41.4531 -71.8727 +US 06360 Norwich Connecticut CT New London 011 41.5371 -72.0849 +US 06365 Preston Connecticut CT New London 011 41.5224 -71.9934 +US 06370 Oakdale Connecticut CT New London 011 41.4706 -72.1904 +US 06371 Old Lyme Connecticut CT New London 011 41.3347 -72.3086 +US 06372 Old Mystic Connecticut CT New London 011 41.3882 -71.9495 +US 06375 Quaker Hill Connecticut CT New London 011 41.4032 -72.1172 +US 06376 South Lyme Connecticut CT New London 011 41.2967 -72.2633 +US 06378 Stonington Connecticut CT New London 011 41.3664 -71.9155 +US 06379 Pawcatuck Connecticut CT New London 011 41.3735 -71.8478 +US 06380 Taftville Connecticut CT New London 011 41.5653 -72.0529 +US 06382 Uncasville Connecticut CT New London 011 41.4622 -72.1126 +US 06383 Versailles Connecticut CT New London 011 41.6016 -72.0404 +US 06384 Voluntown Connecticut CT New London 011 41.5831 -71.855 +US 06385 Waterford Connecticut CT New London 011 41.3469 -72.1458 +US 06386 Waterford Connecticut CT New London 011 41.4648 -72.1273 +US 06388 West Mystic Connecticut CT New London 011 41.3441 -71.9765 +US 06389 Yantic Connecticut CT New London 011 41.5596 -72.1227 +US 06415 Colchester Connecticut CT New London 011 41.5662 -72.3441 +US 06420 Salem Connecticut CT New London 011 41.4966 -72.2725 +US 06439 Hadlyme Connecticut CT New London 011 41.4212 -72.4141 +US 06474 North Westchester Connecticut CT New London 011 41.4648 -72.1273 +US 06029 Ellington Connecticut CT Tolland 013 41.9114 -72.4626 +US 06043 Bolton Connecticut CT Tolland 013 41.7689 -72.4396 +US 06066 Vernon Rockville Connecticut CT Tolland 013 41.8501 -72.4649 +US 06071 Somers Connecticut CT Tolland 013 41.9978 -72.4583 +US 06072 Somersville Connecticut CT Tolland 013 41.9765 -72.4906 +US 06075 Stafford Connecticut CT Tolland 013 41.8115 -72.3088 +US 06076 Stafford Springs Connecticut CT Tolland 013 41.9661 -72.2899 +US 06077 Staffordville Connecticut CT Tolland 013 41.9916 -72.2577 +US 06084 Tolland Connecticut CT Tolland 013 41.8696 -72.3718 +US 06231 Amston Connecticut CT Tolland 013 41.629 -72.3646 +US 06232 Andover Connecticut CT Tolland 013 41.7332 -72.3767 +US 06237 Columbia Connecticut CT Tolland 013 41.6973 -72.3072 +US 06238 Coventry Connecticut CT Tolland 013 41.7822 -72.3332 +US 06248 Hebron Connecticut CT Tolland 013 41.6842 -72.3986 +US 06250 Mansfield Center Connecticut CT Tolland 013 41.7698 -72.2011 +US 06251 Mansfield Depot Connecticut CT Tolland 013 41.7993 -72.3065 +US 06265 South Willington Connecticut CT Tolland 013 41.8115 -72.3088 +US 06268 Storrs Mansfield Connecticut CT Tolland 013 41.7997 -72.2478 +US 06269 Storrs Mansfield Connecticut CT Tolland 013 41.808 -72.251 +US 06279 Willington Connecticut CT Tolland 013 41.8966 -72.2622 +US 06226 Willimantic Connecticut CT Windham 015 41.7149 -72.2134 +US 06230 Abington Connecticut CT Windham 015 41.8473 -72.0253 +US 06233 Ballouville Connecticut CT Windham 015 41.8316 -72.0201 +US 06234 Brooklyn Connecticut CT Windham 015 41.7807 -71.9541 +US 06235 Chaplin Connecticut CT Windham 015 41.8026 -72.1372 +US 06239 Danielson Connecticut CT Windham 015 41.7982 -71.8807 +US 06241 Dayville Connecticut CT Windham 015 41.854 -71.8683 +US 06242 Eastford Connecticut CT Windham 015 41.8771 -72.0895 +US 06243 East Killingly Connecticut CT Windham 015 41.8452 -71.8026 +US 06244 East Woodstock Connecticut CT Windham 015 41.9843 -71.981 +US 06245 Fabyan Connecticut CT Windham 015 42.0198 -71.9417 +US 06246 Grosvenor Dale Connecticut CT Windham 015 41.9711 -71.8917 +US 06247 Hampton Connecticut CT Windham 015 41.7671 -72.0662 +US 06255 North Grosvenordale Connecticut CT Windham 015 41.9784 -71.8997 +US 06256 North Windham Connecticut CT Windham 015 41.7451 -72.1601 +US 06258 Pomfret Connecticut CT Windham 015 41.889 -71.9682 +US 06259 Pomfret Center Connecticut CT Windham 015 41.8697 -71.982 +US 06260 Putnam Connecticut CT Windham 015 41.9185 -71.8968 +US 06262 Quinebaug Connecticut CT Windham 015 42.0217 -71.9391 +US 06263 Rogers Connecticut CT Windham 015 41.8391 -71.9063 +US 06264 Scotland Connecticut CT Windham 015 41.6958 -72.087 +US 06266 South Windham Connecticut CT Windham 015 41.6677 -72.1681 +US 06267 South Woodstock Connecticut CT Windham 015 41.9439 -71.9453 +US 06277 Thompson Connecticut CT Windham 015 41.9803 -71.8376 +US 06278 Ashford Connecticut CT Windham 015 41.889 -72.1476 +US 06280 Windham Connecticut CT Windham 015 41.7027 -72.1526 +US 06281 Woodstock Connecticut CT Windham 015 41.9602 -72.004 +US 06282 Woodstock Valley Connecticut CT Windham 015 41.9153 -72.0937 +US 06331 Canterbury Connecticut CT Windham 015 41.6844 -72.001 +US 06332 Central Village Connecticut CT Windham 015 41.7257 -71.909 +US 06354 Moosup Connecticut CT Windham 015 41.721 -71.885 +US 06373 Oneco Connecticut CT Windham 015 41.6785 -71.8178 +US 06374 Plainfield Connecticut CT Windham 015 41.6775 -71.922 +US 06377 Sterling Connecticut CT Windham 015 41.7156 -71.8196 +US 06387 Wauregan Connecticut CT Windham 015 41.7445 -71.9133 +US 20001 Washington District of Columbia DC District of Columbia 001 38.9122 -77.0177 +US 20002 Washington District of Columbia DC District of Columbia 001 38.9024 -76.9901 +US 20003 Washington District of Columbia DC District of Columbia 001 38.8829 -76.9895 +US 20004 Washington District of Columbia DC District of Columbia 001 38.893 -77.0263 +US 20005 Washington District of Columbia DC District of Columbia 001 38.9067 -77.0312 +US 20006 Washington District of Columbia DC District of Columbia 001 38.8964 -77.0447 +US 20007 Washington District of Columbia DC District of Columbia 001 38.9144 -77.074 +US 20008 Washington District of Columbia DC District of Columbia 001 38.9363 -77.0599 +US 20009 Washington District of Columbia DC District of Columbia 001 38.9202 -77.0375 +US 20010 Washington District of Columbia DC District of Columbia 001 38.9327 -77.0322 +US 20011 Washington District of Columbia DC District of Columbia 001 38.9518 -77.0203 +US 20012 Washington District of Columbia DC District of Columbia 001 38.9757 -77.0282 +US 20013 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20015 Washington District of Columbia DC District of Columbia 001 38.9658 -77.068 +US 20016 Washington District of Columbia DC District of Columbia 001 38.9381 -77.086 +US 20017 Washington District of Columbia DC District of Columbia 001 38.9367 -76.994 +US 20018 Washington District of Columbia DC District of Columbia 001 38.9277 -76.9762 +US 20019 Washington District of Columbia DC District of Columbia 001 38.8902 -76.9376 +US 20020 Washington District of Columbia DC District of Columbia 001 38.86 -76.9742 +US 20022 Washington District of Columbia DC District of Columbia 001 38.945 -77.0364 +US 20023 Washington District of Columbia DC District of Columbia 001 38.8654 -77.0495 +US 20024 Washington District of Columbia DC District of Columbia 001 38.8759 -77.016 +US 20026 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20027 Washington District of Columbia DC District of Columbia 001 38.9007 -77.0501 +US 20029 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20030 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20032 Washington District of Columbia DC District of Columbia 001 38.8338 -76.9995 +US 20033 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20035 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20036 Washington District of Columbia DC District of Columbia 001 38.9087 -77.0414 +US 20037 Washington District of Columbia DC District of Columbia 001 38.9014 -77.0504 +US 20038 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20039 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20040 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20041 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20042 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20043 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20044 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20045 Washington District of Columbia DC District of Columbia 001 38.8966 -77.0319 +US 20046 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20047 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20048 Washington District of Columbia DC District of Columbia 001 38.9164 -76.9948 +US 20049 Washington District of Columbia DC District of Columbia 001 38.8959 -77.021 +US 20050 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20051 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20052 Washington District of Columbia DC District of Columbia 001 38.9001 -77.0479 +US 20053 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20055 Washington District of Columbia DC District of Columbia 001 38.9016 -77.021 +US 20056 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20057 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20058 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20059 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20060 Washington District of Columbia DC District of Columbia 001 38.918 -77.0204 +US 20061 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20062 Washington District of Columbia DC District of Columbia 001 38.9 -77.0369 +US 20063 Washington District of Columbia DC District of Columbia 001 38.9053 -77.0466 +US 20064 Washington District of Columbia DC District of Columbia 001 38.9332 -76.9963 +US 20065 Washington District of Columbia DC District of Columbia 001 38.8834 -77.0282 +US 20066 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20067 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20068 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20069 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20070 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20071 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20073 Washington District of Columbia DC District of Columbia 001 38.897 -77.0251 +US 20074 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20075 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20076 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20077 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20078 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20080 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20081 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20082 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20084 Washington District of Columbia DC District of Columbia 001 38.9164 -76.9948 +US 20088 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20090 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20091 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20097 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20098 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20099 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20201 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20202 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20203 Washington District of Columbia DC District of Columbia 001 38.9053 -77.0466 +US 20204 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20205 Washington District of Columbia DC District of Columbia 001 38.9051 -77.0162 +US 20206 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20207 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20208 Washington District of Columbia DC District of Columbia 001 38.8966 -77.0117 +US 20209 Washington District of Columbia DC District of Columbia 001 38.9051 -77.0162 +US 20210 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20211 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20212 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20213 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20214 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20215 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20216 Washington District of Columbia DC District of Columbia 001 38.8919 -77.0141 +US 20217 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20218 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20219 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20220 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20221 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20222 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20223 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20224 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20226 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20227 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20228 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20229 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20230 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20231 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20232 Washington District of Columbia DC District of Columbia 001 38.9006 -77.0391 +US 20233 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20235 Washington District of Columbia DC District of Columbia 001 38.9154 -77.0572 +US 20237 Washington District of Columbia DC District of Columbia 001 38.895 -77.0367 +US 20238 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20239 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20240 Washington District of Columbia DC District of Columbia 001 38.8971 -77.0409 +US 20241 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20242 Washington District of Columbia DC District of Columbia 001 38.8678 -77.0289 +US 20244 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20245 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20250 Washington District of Columbia DC District of Columbia 001 38.8873 -77.0327 +US 20251 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20254 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20260 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20261 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20262 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20265 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20266 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20268 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20270 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20277 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20289 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20292 Washington District of Columbia DC District of Columbia 001 38.9164 -76.9948 +US 20299 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20301 Washington District of Columbia DC District of Columbia 001 38.8894 -77.0311 +US 20303 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20306 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20307 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20310 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20314 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20315 Washington District of Columbia DC District of Columbia 001 38.9289 -77.0179 +US 20317 Washington District of Columbia DC District of Columbia 001 38.9363 -77.0123 +US 20318 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20319 Washington District of Columbia DC District of Columbia 001 38.8667 -77.0166 +US 20330 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20331 Washington District of Columbia DC District of Columbia 001 38.9027 -76.9764 +US 20332 Washington District of Columbia DC District of Columbia 001 38.8346 -77.0158 +US 20335 Andrews A F B District of Columbia DC District of Columbia 001 38.8022 -76.8857 +US 20336 Washington District of Columbia DC District of Columbia 001 38.8395 -77.0148 +US 20337 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20338 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20340 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20350 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20355 Washington District of Columbia DC District of Columbia 001 38.8951 -77.0369 +US 20370 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20372 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20373 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20374 Washington District of Columbia DC District of Columbia 001 38.8555 -77.0022 +US 20375 Washington District of Columbia DC District of Columbia 001 38.8262 -77.0174 +US 20376 Washington Navy Yard District of Columbia DC District of Columbia 001 38.9164 -76.9947 +US 20380 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20388 Washington District of Columbia DC District of Columbia 001 38.8726 -76.9966 +US 20389 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20390 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20391 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20392 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20393 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20394 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20395 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20396 Washington District of Columbia DC District of Columbia 001 38.9164 -76.9948 +US 20397 Washington District of Columbia DC District of Columbia 001 38.9164 -76.9948 +US 20398 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20401 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20402 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20403 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20404 Washington District of Columbia DC District of Columbia 001 38.8992 -77.0089 +US 20405 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20406 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20407 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20408 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20409 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20410 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20411 Washington District of Columbia DC District of Columbia 001 38.884 -77.0221 +US 20412 Washington District of Columbia DC District of Columbia 001 38.8953 -77.0221 +US 20413 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20414 Washington District of Columbia DC District of Columbia 001 38.884 -77.0221 +US 20415 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20416 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20418 Washington District of Columbia DC District of Columbia 001 38.9043 -77.0572 +US 20419 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20420 Washington District of Columbia DC District of Columbia 001 38.9035 -77.0276 +US 20421 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20422 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20423 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20424 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20425 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20426 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20427 Washington District of Columbia DC District of Columbia 001 38.9021 -77.0476 +US 20428 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20429 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20430 Washington District of Columbia DC District of Columbia 001 38.9164 -76.9948 +US 20431 Washington District of Columbia DC District of Columbia 001 38.8986 -77.0428 +US 20433 Washington District of Columbia DC District of Columbia 001 38.9 -77.042 +US 20434 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20435 Washington District of Columbia DC District of Columbia 001 38.8994 -77.0403 +US 20436 Washington District of Columbia DC District of Columbia 001 38.8959 -77.0211 +US 20437 Washington District of Columbia DC District of Columbia 001 38.9028 -77.0485 +US 20439 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20440 Washington District of Columbia DC District of Columbia 001 38.9139 -77.0453 +US 20441 Washington District of Columbia DC District of Columbia 001 38.9239 -77.0363 +US 20442 Washington District of Columbia DC District of Columbia 001 38.896 -77.0177 +US 20444 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20447 Washington District of Columbia DC District of Columbia 001 38.8847 -77.0252 +US 20451 Washington District of Columbia DC District of Columbia 001 38.8977 -77.0444 +US 20453 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20456 Washington District of Columbia DC District of Columbia 001 38.8981 -77.0401 +US 20460 Washington District of Columbia DC District of Columbia 001 38.8764 -77.0188 +US 20463 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20468 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20469 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20470 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20472 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20500 Washington District of Columbia DC District of Columbia 001 38.8946 -77.0355 +US 20501 Washington District of Columbia DC District of Columbia 001 38.8987 -77.0362 +US 20502 Washington District of Columbia DC District of Columbia 001 38.8987 -77.0362 +US 20503 Washington District of Columbia DC District of Columbia 001 38.9007 -77.0431 +US 20504 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20505 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20506 Washington District of Columbia DC District of Columbia 001 38.8994 -77.0377 +US 20507 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20508 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20509 Washington District of Columbia DC District of Columbia 001 38.8987 -77.0356 +US 20510 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20511 Washington District of Columbia DC District of Columbia 001 38.8407 -77.0167 +US 20515 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20520 Washington District of Columbia DC District of Columbia 001 38.8932 -77.049 +US 20521 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20522 Washington District of Columbia DC District of Columbia 001 38.8932 -77.049 +US 20523 Washington District of Columbia DC District of Columbia 001 38.8945 -77.0478 +US 20524 Washington District of Columbia DC District of Columbia 001 38.9024 -77.0326 +US 20525 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20526 Washington District of Columbia DC District of Columbia 001 38.9022 -77.0437 +US 20527 Washington District of Columbia DC District of Columbia 001 38.9029 -77.0361 +US 20528 Washington District of Columbia DC District of Columbia 001 38.8951 -77.0369 +US 20529 Washington District of Columbia DC District of Columbia 001 38.8973 -77.0142 +US 20530 Washington District of Columbia DC District of Columbia 001 38.8976 -77.027 +US 20531 Washington District of Columbia DC District of Columbia 001 38.8938 -77.0218 +US 20532 Washington District of Columbia DC District of Columbia 001 38.9045 -77.0173 +US 20533 Washington District of Columbia DC District of Columbia 001 38.9011 -77.0326 +US 20534 Washington District of Columbia DC District of Columbia 001 38.8941 -77.0125 +US 20535 Washington District of Columbia DC District of Columbia 001 38.8941 -77.0251 +US 20536 Washington District of Columbia DC District of Columbia 001 38.9012 -77.0169 +US 20537 Washington District of Columbia DC District of Columbia 001 38.8941 -77.0251 +US 20538 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20539 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20540 Washington District of Columbia DC District of Columbia 001 38.8874 -77.0047 +US 20541 Washington District of Columbia DC District of Columbia 001 38.8874 -77.0047 +US 20542 Washington District of Columbia DC District of Columbia 001 38.9408 -77.0283 +US 20543 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20544 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20546 Washington District of Columbia DC District of Columbia 001 38.891 -77.0211 +US 20547 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20548 Washington District of Columbia DC District of Columbia 001 38.8981 -77.0177 +US 20549 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20550 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20551 Washington District of Columbia DC District of Columbia 001 38.892 -77.0452 +US 20552 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20553 Washington District of Columbia DC District of Columbia 001 38.8873 -77.0231 +US 20554 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20555 Washington District of Columbia DC District of Columbia 001 38.9 -77.0401 +US 20557 Washington District of Columbia DC District of Columbia 001 38.8874 -77.0047 +US 20558 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20559 Washington District of Columbia DC District of Columbia 001 38.8874 -77.0047 +US 20560 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20565 Washington District of Columbia DC District of Columbia 001 38.8919 -77.0189 +US 20566 Washington District of Columbia DC District of Columbia 001 38.8971 -77.0554 +US 20570 Washington District of Columbia DC District of Columbia 001 38.8991 -77.0401 +US 20571 Washington District of Columbia DC District of Columbia 001 38.9006 -77.0346 +US 20572 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20573 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20575 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20576 Washington District of Columbia DC District of Columbia 001 38.8937 -77.0236 +US 20577 Washington District of Columbia DC District of Columbia 001 38.9008 -77.0345 +US 20578 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20579 Washington District of Columbia DC District of Columbia 001 38.9043 -77.0446 +US 20580 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20581 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20585 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20586 Washington District of Columbia DC District of Columbia 001 38.9022 -77.0474 +US 20590 Washington District of Columbia DC District of Columbia 001 38.884 -77.0221 +US 20591 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20593 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20594 Washington District of Columbia DC District of Columbia 001 38.8849 -77.0184 +US 20595 Washington District of Columbia DC District of Columbia 001 38.9051 -77.0162 +US 20597 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 20599 Washington District of Columbia DC District of Columbia 001 38.8933 -77.0146 +US 56901 Washington District of Columbia DC District of Columbia 001 38.8952 -77.0365 +US 56915 Washington District of Columbia DC District of Columbia 001 38.8952 -77.0365 +US 56920 Washington District of Columbia DC District of Columbia 001 38.8952 -77.0365 +US 56933 Washington District of Columbia DC District of Columbia 001 38.8952 -77.0365 +US 56944 Washington District of Columbia DC District of Columbia 001 38.8952 -77.0365 +US 56972 Washington District of Columbia DC District of Columbia 001 38.9164 -76.9948 +US 19901 Dover Delaware DE Kent 001 39.1564 -75.4955 +US 19902 Dover Afb Delaware DE Kent 001 39.1253 -75.4818 +US 19903 Dover Delaware DE Kent 001 39.1087 -75.448 +US 19904 Dover Delaware DE Kent 001 39.1605 -75.5974 +US 19905 Dover Delaware DE Kent 001 39.1087 -75.448 +US 19906 Dover Delaware DE Kent County 001 39.157 -75.5294 +US 19934 Camden Wyoming Delaware DE Kent 001 39.0991 -75.5966 +US 19936 Cheswold Delaware DE Kent 001 39.2184 -75.5848 +US 19938 Clayton Delaware DE Kent 001 39.2564 -75.6904 +US 19942 Farmington Delaware DE Kent 001 38.8689 -75.5773 +US 19943 Felton Delaware DE Kent 001 39.0225 -75.5829 +US 19946 Frederica Delaware DE Kent 001 39.0342 -75.4545 +US 19952 Harrington Delaware DE Kent 001 38.924 -75.5843 +US 19953 Hartly Delaware DE Kent 001 39.1542 -75.6935 +US 19954 Houston Delaware DE Kent 001 38.9114 -75.5064 +US 19955 Kenton Delaware DE Kent 001 39.2256 -75.6642 +US 19961 Little Creek Delaware DE Kent 001 39.1663 -75.4483 +US 19962 Magnolia Delaware DE Kent 001 39.0735 -75.5083 +US 19964 Marydel Delaware DE Kent 001 39.0998 -75.7287 +US 19977 Smyrna Delaware DE Kent 001 39.2934 -75.6008 +US 19979 Viola Delaware DE Kent 001 39.0419 -75.5726 +US 19980 Woodside Delaware DE Kent 001 39.0724 -75.5711 +US 19701 Bear Delaware DE New Castle 003 39.6102 -75.6747 +US 19702 Newark Delaware DE New Castle 003 39.6349 -75.6993 +US 19703 Claymont Delaware DE New Castle 003 39.8044 -75.4649 +US 19706 Delaware City Delaware DE New Castle 003 39.5725 -75.5957 +US 19707 Hockessin Delaware DE New Castle 003 39.776 -75.6889 +US 19708 Kirkwood Delaware DE New Castle 003 39.5776 -75.6901 +US 19709 Middletown Delaware DE New Castle 003 39.4815 -75.6832 +US 19710 Montchanin Delaware DE New Castle 003 39.7578 -75.6391 +US 19711 Newark Delaware DE New Castle 003 39.7011 -75.7375 +US 19712 Newark Delaware DE New Castle 003 39.5645 -75.597 +US 19713 Newark Delaware DE New Castle 003 39.6699 -75.7151 +US 19714 Newark Delaware DE New Castle 003 39.5645 -75.597 +US 19715 Newark Delaware DE New Castle 003 39.5645 -75.597 +US 19716 Newark Delaware DE New Castle 003 39.6896 -75.7584 +US 19717 Newark Delaware DE New Castle 003 39.5645 -75.597 +US 19718 Newark Delaware DE New Castle 003 39.5645 -75.597 +US 19720 New Castle Delaware DE New Castle 003 39.5929 -75.6515 +US 19721 New Castle Delaware DE New Castle 003 39.5645 -75.597 +US 19725 Newark Delaware DE New Castle 003 39.5645 -75.597 +US 19726 Newark Delaware DE New Castle 003 39.5645 -75.597 +US 19730 Odessa Delaware DE New Castle 003 39.4592 -75.6536 +US 19731 Port Penn Delaware DE New Castle 003 39.5129 -75.5852 +US 19732 Rockland Delaware DE New Castle 003 39.7939 -75.5738 +US 19733 Saint Georges Delaware DE New Castle 003 39.5555 -75.6505 +US 19734 Townsend Delaware DE New Castle 003 39.3819 -75.6834 +US 19735 Winterthur Delaware DE New Castle 003 39.7944 -75.5976 +US 19736 Yorklyn Delaware DE New Castle 003 39.7971 -75.6604 +US 19801 Wilmington Delaware DE New Castle 003 39.7378 -75.5497 +US 19802 Wilmington Delaware DE New Castle 003 39.7564 -75.534 +US 19803 Wilmington Delaware DE New Castle 003 39.7994 -75.5317 +US 19804 Wilmington Delaware DE New Castle 003 39.7168 -75.6184 +US 19805 Wilmington Delaware DE New Castle 003 39.7434 -75.5827 +US 19806 Wilmington Delaware DE New Castle 003 39.7571 -75.5635 +US 19807 Wilmington Delaware DE New Castle 003 39.7949 -75.6161 +US 19808 Wilmington Delaware DE New Castle 003 39.7359 -75.6647 +US 19809 Wilmington Delaware DE New Castle 003 39.7647 -75.5069 +US 19810 Wilmington Delaware DE New Castle 003 39.8188 -75.5064 +US 19850 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19880 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19884 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19885 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19886 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19887 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19889 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19890 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19891 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19892 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19893 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19894 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19895 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19896 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19897 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19898 Wilmington Delaware DE New Castle 003 39.5645 -75.597 +US 19899 Wilmington Delaware DE New Castle 003 39.7348 -75.6246 +US 19930 Bethany Beach Delaware DE Sussex 005 38.531 -75.0674 +US 19931 Bethel Delaware DE Sussex 005 38.5685 -75.6243 +US 19933 Bridgeville Delaware DE Sussex 005 38.7366 -75.6088 +US 19939 Dagsboro Delaware DE Sussex 005 38.5596 -75.2113 +US 19940 Delmar Delaware DE Sussex 005 38.477 -75.5759 +US 19941 Ellendale Delaware DE Sussex 005 38.8057 -75.4056 +US 19944 Fenwick Island Delaware DE Sussex 005 38.4865 -75.0589 +US 19945 Frankford Delaware DE Sussex 005 38.5177 -75.2006 +US 19947 Georgetown Delaware DE Sussex 005 38.679 -75.3932 +US 19950 Greenwood Delaware DE Sussex 005 38.8175 -75.5935 +US 19951 Harbeson Delaware DE Sussex 005 38.6723 -75.2236 +US 19956 Laurel Delaware DE Sussex 005 38.5537 -75.5631 +US 19958 Lewes Delaware DE Sussex 005 38.7381 -75.1747 +US 19960 Lincoln Delaware DE Sussex 005 38.8613 -75.4 +US 19963 Milford Delaware DE Sussex 005 38.9218 -75.4299 +US 19966 Millsboro Delaware DE Sussex 005 38.6595 -75.2464 +US 19967 Millville Delaware DE Sussex 005 38.7005 -75.2423 +US 19968 Milton Delaware DE Sussex 005 38.7687 -75.2953 +US 19969 Nassau Delaware DE Sussex 005 38.7256 -75.3534 +US 19970 Ocean View Delaware DE Sussex 005 38.5617 -75.0966 +US 19971 Rehoboth Beach Delaware DE Sussex 005 38.6298 -75.32 +US 19973 Seaford Delaware DE Sussex 005 38.6404 -75.6041 +US 19975 Selbyville Delaware DE Sussex 005 38.4654 -75.1573 +US 32601 Gainesville Florida FL Alachua 001 29.6489 -82.325 +US 32602 Gainesville Florida FL Alachua 001 29.6299 -82.3966 +US 32603 Gainesville Florida FL Alachua 001 29.6515 -82.3493 +US 32604 Gainesville Florida FL Alachua 001 29.5733 -82.3979 +US 32605 Gainesville Florida FL Alachua 001 29.6785 -82.3679 +US 32606 Gainesville Florida FL Alachua 001 29.6954 -82.4023 +US 32607 Gainesville Florida FL Alachua 001 29.6456 -82.4033 +US 32608 Gainesville Florida FL Alachua 001 29.6132 -82.3873 +US 32609 Gainesville Florida FL Alachua 001 29.7005 -82.308 +US 32610 Gainesville Florida FL Alachua 001 29.6813 -82.3539 +US 32611 Gainesville Florida FL Alachua 001 29.6813 -82.3539 +US 32612 Gainesville Florida FL Alachua 001 29.6813 -82.3539 +US 32613 Gainesville Florida FL Alachua 001 29.6813 -82.3539 +US 32614 Gainesville Florida FL Alachua 001 29.6813 -82.3539 +US 32615 Alachua Florida FL Alachua 001 29.8135 -82.472 +US 32616 Alachua Florida FL Alachua 001 29.792 -82.496 +US 32618 Archer Florida FL Alachua 001 29.5597 -82.5108 +US 32627 Gainesville Florida FL Alachua 001 29.6813 -82.3539 +US 32631 Earleton Florida FL Alachua 001 29.7304 -82.0971 +US 32633 Evinston Florida FL Alachua 001 29.6813 -82.3539 +US 32635 Gainesville Florida FL Alachua 001 29.6813 -82.3539 +US 32640 Hawthorne Florida FL Alachua 001 29.574 -82.1056 +US 32641 Gainesville Florida FL Alachua 001 29.6824 -82.2014 +US 32643 High Springs Florida FL Alachua 001 29.841 -82.6156 +US 32653 Gainesville Florida FL Alachua 001 29.7728 -82.3782 +US 32654 Island Grove Florida FL Alachua 001 29.6813 -82.3539 +US 32655 High Springs Florida FL Alachua 001 29.8175 -82.6006 +US 32658 La Crosse Florida FL Alachua 001 29.8261 -82.416 +US 32662 Lochloosa Florida FL Alachua 001 29.6813 -82.3539 +US 32667 Micanopy Florida FL Alachua 001 29.5122 -82.3053 +US 32669 Newberry Florida FL Alachua 001 29.6609 -82.5852 +US 32694 Waldo Florida FL Alachua 001 29.7871 -82.1608 +US 34623 Clearwater Florida FL Alachua County 001 28.0018 -82.7468 +US 32040 Glen Saint Mary Florida FL Baker 003 30.2861 -82.2041 +US 32063 Macclenny Florida FL Baker 003 30.2737 -82.1325 +US 32072 Olustee Florida FL Baker 003 30.3604 -82.2542 +US 32087 Sanderson Florida FL Baker 003 30.291 -82.334 +US 32401 Panama City Florida FL Bay 005 30.1606 -85.6494 +US 32402 Panama City Florida FL Bay 005 30.2345 -85.692 +US 32403 Panama City Florida FL Bay 005 30.0583 -85.5762 +US 32404 Panama City Florida FL Bay 005 30.1653 -85.5763 +US 32405 Panama City Florida FL Bay 005 30.1949 -85.6727 +US 32406 Panama City Florida FL Bay 005 30.2345 -85.692 +US 32407 Panama City Beach Florida FL Bay 005 30.2007 -85.8136 +US 32408 Panama City Florida FL Bay 005 30.1655 -85.7116 +US 32409 Panama City Florida FL Bay 005 30.3117 -85.6923 +US 32410 Mexico Beach Florida FL Bay 005 29.9395 -85.4096 +US 32411 Panama City Florida FL Bay 005 30.2345 -85.692 +US 32412 Panama City Florida FL Bay 005 30.2345 -85.692 +US 32413 Panama City Beach Florida FL Bay 005 30.3105 -85.9106 +US 32417 Panama City Florida FL Bay 005 30.2438 -85.917 +US 32438 Fountain Florida FL Bay 005 30.4753 -85.4293 +US 32444 Lynn Haven Florida FL Bay 005 30.2362 -85.6467 +US 32461 Rosemary Bch Florida FL Bay 005 30.2578 -85.961 +US 32461 Sunnyside Florida FL Bay 005 30.2525 -85.9424 +US 32466 Youngstown Florida FL Bay 005 30.3269 -85.5169 +US 32042 Graham Florida FL Bradford 007 29.9689 -82.1226 +US 32044 Hampton Florida FL Bradford 007 29.8575 -82.1483 +US 32058 Lawtey Florida FL Bradford 007 30.0472 -82.1055 +US 32091 Starke Florida FL Bradford 007 29.9583 -82.1185 +US 32622 Brooker Florida FL Bradford 007 29.919 -82.2956 +US 32754 Mims Florida FL Brevard 009 28.6974 -80.8663 +US 32775 Scottsmoor Florida FL Brevard 009 28.7702 -80.872 +US 32780 Titusville Florida FL Brevard 009 28.5697 -80.8191 +US 32781 Titusville Florida FL Brevard 009 28.3067 -80.6862 +US 32782 Titusville Florida FL Brevard 009 28.3067 -80.6862 +US 32783 Titusville Florida FL Brevard 009 28.3067 -80.6862 +US 32796 Titusville Florida FL Brevard 009 28.6271 -80.8429 +US 32815 Orlando Florida FL Brevard 009 28.3067 -80.6862 +US 32899 Orlando Florida FL Brevard 009 28.3067 -80.6862 +US 32901 Melbourne Florida FL Brevard 009 28.0691 -80.62 +US 32902 Melbourne Florida FL Brevard 009 28.3067 -80.6862 +US 32903 Indialantic Florida FL Brevard 009 28.1091 -80.5787 +US 32904 Melbourne Florida FL Brevard 009 28.0673 -80.678 +US 32905 Palm Bay Florida FL Brevard 009 28.0313 -80.5995 +US 32906 Palm Bay Florida FL Brevard 009 28.0671 -80.6503 +US 32907 Palm Bay Florida FL Brevard 009 28.0168 -80.6739 +US 32908 Palm Bay Florida FL Brevard 009 27.9816 -80.6894 +US 32909 Palm Bay Florida FL Brevard 009 27.9694 -80.6473 +US 32910 Palm Bay Florida FL Brevard 009 28.3067 -80.6862 +US 32911 Palm Bay Florida FL Brevard 009 28.3067 -80.6862 +US 32912 Melbourne Florida FL Brevard 009 28.3067 -80.6862 +US 32919 Melbourne Florida FL Brevard 009 28.3067 -80.6862 +US 32920 Cape Canaveral Florida FL Brevard 009 28.3903 -80.6043 +US 32922 Cocoa Florida FL Brevard 009 28.3672 -80.7465 +US 32923 Cocoa Florida FL Brevard 009 28.4275 -80.829 +US 32924 Cocoa Florida FL Brevard 009 28.3067 -80.6862 +US 32925 Patrick Afb Florida FL Brevard 009 28.1743 -80.584 +US 32926 Cocoa Florida FL Brevard 009 28.391 -80.787 +US 32927 Cocoa Florida FL Brevard 009 28.4566 -80.7978 +US 32931 Cocoa Beach Florida FL Brevard 009 28.3325 -80.6121 +US 32932 Cocoa Beach Florida FL Brevard 009 28.3067 -80.6862 +US 32934 Melbourne Florida FL Brevard 009 28.1331 -80.7112 +US 32935 Melbourne Florida FL Brevard 009 28.1384 -80.6524 +US 32936 Melbourne Florida FL Brevard 009 28.3067 -80.6862 +US 32937 Satellite Beach Florida FL Brevard 009 28.178 -80.602 +US 32940 Melbourne Florida FL Brevard 009 28.2061 -80.685 +US 32941 Melbourne Florida FL Brevard 009 27.9246 -80.5235 +US 32949 Grant Florida FL Brevard 009 27.9364 -80.5556 +US 32950 Malabar Florida FL Brevard 009 27.9761 -80.5788 +US 32951 Melbourne Beach Florida FL Brevard 009 28.0219 -80.5389 +US 32952 Merritt Island Florida FL Brevard 009 28.2764 -80.6568 +US 32953 Merritt Island Florida FL Brevard 009 28.3888 -80.7301 +US 32954 Merritt Island Florida FL Brevard 009 28.2257 -80.6734 +US 32955 Rockledge Florida FL Brevard 009 28.3134 -80.7319 +US 32956 Rockledge Florida FL Brevard 009 28.3298 -80.7323 +US 32959 Sharpes Florida FL Brevard 009 28.3067 -80.6862 +US 32976 Sebastian Florida FL Brevard 009 27.8679 -80.5416 +US 33004 Dania Florida FL Broward 011 26.0476 -80.1447 +US 33008 Hallandale Florida FL Broward 011 26.1457 -80.4483 +US 33009 Hallandale Florida FL Broward 011 25.985 -80.1407 +US 33019 Hollywood Florida FL Broward 011 26.007 -80.1219 +US 33020 Hollywood Florida FL Broward 011 26.0161 -80.1517 +US 33021 Hollywood Florida FL Broward 011 26.0218 -80.1891 +US 33022 Hollywood Florida FL Broward 011 26.0134 -80.1442 +US 33023 Hollywood Florida FL Broward 011 25.9894 -80.2153 +US 33024 Hollywood Florida FL Broward 011 26.0296 -80.2489 +US 33025 Hollywood Florida FL Broward 011 25.9921 -80.2712 +US 33026 Hollywood Florida FL Broward 011 26.0229 -80.2974 +US 33027 Hollywood Florida FL Broward 011 25.9974 -80.3248 +US 33028 Hollywood Florida FL Broward 011 26.0185 -80.3449 +US 33028 Pembroke Pines Florida FL Broward 011 26.0185 -80.3449 +US 33029 Hollywood Florida FL Broward 011 25.9924 -80.4089 +US 33060 Pompano Beach Florida FL Broward 011 26.2315 -80.1235 +US 33061 Pompano Beach Florida FL Broward 011 26.2539 -80.1342 +US 33062 Pompano Beach Florida FL Broward 011 26.2343 -80.0941 +US 33063 Pompano Beach Florida FL Broward 011 26.2674 -80.2092 +US 33064 Pompano Beach Florida FL Broward 011 26.2785 -80.1157 +US 33065 Pompano Beach Florida FL Broward 011 26.2729 -80.2603 +US 33066 Pompano Beach Florida FL Broward 011 26.2535 -80.1775 +US 33067 Pompano Beach Florida FL Broward 011 26.3033 -80.2415 +US 33068 Pompano Beach Florida FL Broward 011 26.216 -80.2205 +US 33069 Pompano Beach Florida FL Broward 011 26.2288 -80.1635 +US 33071 Pompano Beach Florida FL Broward 011 26.2435 -80.2601 +US 33072 Pompano Beach Florida FL Broward 011 26.2335 -80.0924 +US 33073 Pompano Beach Florida FL Broward 011 26.2997 -80.181 +US 33074 Pompano Beach Florida FL Broward 011 26.1457 -80.4483 +US 33075 Pompano Beach Florida FL Broward 011 26.1457 -80.4483 +US 33076 Pompano Beach Florida FL Broward 011 26.3168 -80.2753 +US 33077 Pompano Beach Florida FL Broward 011 26.1457 -80.4483 +US 33081 Hollywood Florida FL Broward 011 26.1457 -80.4483 +US 33082 Pembroke Pines Florida FL Broward 011 26.1457 -80.4483 +US 33083 Hollywood Florida FL Broward 011 26.1457 -80.4483 +US 33084 Pembroke Pines Florida FL Broward 011 26.2891 -80.1298 +US 33093 Pompano Beach Florida FL Broward 011 26.1457 -80.4483 +US 33097 Pompano Beach Florida FL Broward 011 26.1457 -80.4483 +US 33301 Fort Lauderdale Florida FL Broward 011 26.1216 -80.1288 +US 33302 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33303 Fort Lauderdale Florida FL Broward 011 26.1969 -80.0952 +US 33304 Fort Lauderdale Florida FL Broward 011 26.1387 -80.1218 +US 33305 Fort Lauderdale Florida FL Broward 011 26.1497 -80.1229 +US 33306 Fort Lauderdale Florida FL Broward 011 26.1656 -80.1118 +US 33307 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33308 Fort Lauderdale Florida FL Broward 011 26.0984 -80.1822 +US 33309 Fort Lauderdale Florida FL Broward 011 26.1817 -80.1746 +US 33310 Fort Lauderdale Florida FL Broward 011 26.1443 -80.2069 +US 33311 Fort Lauderdale Florida FL Broward 011 26.1421 -80.1728 +US 33312 Fort Lauderdale Florida FL Broward 011 26.0968 -80.181 +US 33313 Fort Lauderdale Florida FL Broward 011 26.1487 -80.2075 +US 33314 Fort Lauderdale Florida FL Broward 011 26.0697 -80.2246 +US 33315 Fort Lauderdale Florida FL Broward 011 26.0989 -80.1541 +US 33316 Fort Lauderdale Florida FL Broward 011 26.1042 -80.126 +US 33317 Fort Lauderdale Florida FL Broward 011 26.1122 -80.2264 +US 33318 Fort Lauderdale Florida FL Broward 011 26.1184 -80.252 +US 33319 Fort Lauderdale Florida FL Broward 011 26.1848 -80.2406 +US 33320 Fort Lauderdale Florida FL Broward 011 26.1625 -80.2582 +US 33321 Fort Lauderdale Florida FL Broward 011 26.212 -80.2696 +US 33322 Fort Lauderdale Florida FL Broward 011 26.1502 -80.2745 +US 33323 Fort Lauderdale Florida FL Broward 011 26.152 -80.3165 +US 33324 Fort Lauderdale Florida FL Broward 011 26.1255 -80.2644 +US 33325 Fort Lauderdale Florida FL Broward 011 26.1097 -80.3215 +US 33326 Weston Florida FL Broward 011 26.1158 -80.3681 +US 33326 Fort Lauderdale Florida FL Broward 011 26.1158 -80.3681 +US 33327 Fort Lauderdale Florida FL Broward 011 26.1168 -80.4156 +US 33327 Weston Florida FL Broward 011 26.1136 -80.417 +US 33328 Fort Lauderdale Florida FL Broward 011 26.0671 -80.2723 +US 33329 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33330 Fort Lauderdale Florida FL Broward 011 26.0663 -80.3339 +US 33331 Fort Lauderdale Florida FL Broward 011 26.048 -80.3749 +US 33332 Fort Lauderdale Florida FL Broward 011 26.0596 -80.4146 +US 33334 Fort Lauderdale Florida FL Broward 011 26.1845 -80.1344 +US 33335 Fort Lauderdale Florida FL Broward 011 26.0892 -80.336 +US 33336 Fort Lauderdale Florida FL Broward County 011 26.1219 -80.1436 +US 33337 Fort Lauderdale Florida FL Broward 011 26.129 -80.2601 +US 33338 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33339 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33340 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33345 Fort Lauderdale Florida FL Broward 011 26.1654 -80.2959 +US 33346 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33348 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33349 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33351 Fort Lauderdale Florida FL Broward 011 26.1793 -80.2746 +US 33355 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33359 Fort Lauderdale Florida FL Broward 011 26.1457 -80.4483 +US 33388 Fort Lauderdale Florida FL Broward 011 26.1209 -80.2533 +US 33394 Fort Lauderdale Florida FL Broward 011 26.1221 -80.139 +US 33441 Deerfield Beach Florida FL Broward 011 26.3096 -80.0992 +US 33442 Deerfield Beach Florida FL Broward 011 26.3124 -80.1412 +US 33443 Deerfield Beach Florida FL Broward 011 26.1457 -80.4483 +US 33973 Lehigh Acres Florida FL Broward County 011 26.602 -81.7311 +US 32421 Altha Florida FL Calhoun 013 30.5319 -85.1704 +US 32424 Blountstown Florida FL Calhoun 013 30.4394 -85.062 +US 32430 Clarksville Florida FL Calhoun 013 30.3568 -85.1898 +US 32449 Kinard Florida FL Calhoun 013 30.2632 -85.2065 +US 33927 Punta Gorda Florida FL Charlotte 015 26.902 -82 +US 33927 El Jobean Florida FL Charlotte 015 26.9324 -82.2168 +US 33938 Murdock Florida FL Charlotte 015 26.902 -82 +US 33946 Placida Florida FL Charlotte 015 26.848 -82.274 +US 33947 Rotonda West Florida FL Charlotte 015 26.8842 -82.2691 +US 33948 Port Charlotte Florida FL Charlotte 015 26.9827 -82.1412 +US 33949 Port Charlotte Florida FL Charlotte 015 26.9939 -82.0984 +US 33950 Punta Gorda Florida FL Charlotte 015 26.9152 -82.0532 +US 33951 Punta Gorda Florida FL Charlotte 015 26.9708 -81.9845 +US 33952 Port Charlotte Florida FL Charlotte 015 26.9905 -82.0964 +US 33953 Port Charlotte Florida FL Charlotte 015 27.004 -82.2117 +US 33954 Port Charlotte Florida FL Charlotte 015 27.0228 -82.1108 +US 33955 Punta Gorda Florida FL Charlotte 015 26.824 -81.9547 +US 33980 Port Charlotte Florida FL Charlotte 015 26.984 -82.0589 +US 33981 Port Charlotte Florida FL Charlotte 015 26.9379 -82.2388 +US 33982 Punta Gorda Florida FL Charlotte 015 26.9668 -81.9545 +US 33983 Punta Gorda Florida FL Charlotte 015 27.0074 -82.0163 +US 34423 Crystal River Florida FL Citrus 017 28.867 -82.5727 +US 34428 Crystal River Florida FL Citrus 017 28.9584 -82.5993 +US 34429 Crystal River Florida FL Citrus 017 28.8547 -82.6669 +US 34433 Dunnellon Florida FL Citrus 017 28.9949 -82.5196 +US 34434 Dunnellon Florida FL Citrus 017 28.9938 -82.4241 +US 34436 Floral City Florida FL Citrus 017 28.7304 -82.3077 +US 34442 Hernando Florida FL Citrus 017 28.9223 -82.39 +US 34445 Holder Florida FL Citrus 017 28.9488 -82.4065 +US 34446 Homosassa Florida FL Citrus 017 28.7508 -82.5139 +US 34447 Homosassa Springs Florida FL Citrus 017 28.8049 -82.5743 +US 34448 Homosassa Florida FL Citrus 017 28.788 -82.568 +US 34450 Inverness Florida FL Citrus 017 28.834 -82.2822 +US 34451 Inverness Florida FL Citrus 017 28.8032 -82.3217 +US 34452 Inverness Florida FL Citrus 017 28.7778 -82.3603 +US 34453 Inverness Florida FL Citrus 017 28.8723 -82.3454 +US 34460 Lecanto Florida FL Citrus 017 28.8593 -82.5087 +US 34461 Lecanto Florida FL Citrus 017 28.8197 -82.4641 +US 34464 Beverly Hills Florida FL Citrus 017 28.8593 -82.5087 +US 34465 Beverly Hills Florida FL Citrus 017 28.9295 -82.4892 +US 34487 Homosassa Florida FL Citrus 017 28.8593 -82.5087 +US 34609 Spring Hill Florida FL Citrus 017 28.4794 -82.5083 +US 32003 Orange Park Florida FL Clay 019 30.1063 -81.716 +US 32006 Fleming Island Florida FL Clay County 019 30.107 -81.7167 +US 32030 Doctors Inlet Florida FL Clay 019 30.1056 -81.769 +US 32043 Green Cove Springs Florida FL Clay 019 29.9983 -81.7647 +US 32050 Middleburg Florida FL Clay 019 30.0317 -81.8484 +US 32065 Orange Park Florida FL Clay 019 30.1382 -81.7742 +US 32067 Orange Park Florida FL Clay 019 29.9561 -81.8151 +US 32068 Middleburg Florida FL Clay 019 30.084 -81.8645 +US 32073 Orange Park Florida FL Clay 019 30.1637 -81.7291 +US 32079 Penney Farms Florida FL Clay 019 29.9849 -81.8022 +US 32160 Lake Geneva Florida FL Clay 019 29.7683 -81.9907 +US 32656 Keystone Heights Florida FL Clay 019 29.7976 -81.9899 +US 33929 Everglades City Florida FL Collier County 021 25.8595 -81.3804 +US 33939 Naples Florida FL Collier County 021 26.143 -81.7957 +US 33940 Naples Florida FL Collier County 021 26.1734 -81.802 +US 33941 Naples Florida FL Collier County 021 26.1597 -81.7908 +US 33942 Naples Florida FL Collier County 021 26.1988 -81.7655 +US 33961 Naples Florida FL Collier County 021 26.045 -81.6669 +US 33962 Naples Florida FL Collier County 021 26.113 -81.749 +US 33964 Naples Florida FL Collier County 021 26.244 -81.6055 +US 33969 Marco Island Florida FL Collier County 021 25.9446 -81.7058 +US 33999 Naples Florida FL Collier County 021 26.2028 -81.7134 +US 34101 Naples Florida FL Collier 021 25.8555 -81.3872 +US 34102 Naples Florida FL Collier 021 26.134 -81.7953 +US 34103 Naples Florida FL Collier 021 26.1917 -81.8039 +US 34104 Naples Florida FL Collier 021 26.1529 -81.7417 +US 34105 Naples Florida FL Collier 021 26.1938 -81.7636 +US 34106 Naples Florida FL Collier 021 26.1433 -81.3891 +US 34107 Vanderbilt Beach Florida FL Collier 021 26.1433 -81.3891 +US 34108 Naples Florida FL Collier 021 26.2416 -81.8071 +US 34109 Naples Florida FL Collier 021 26.2534 -81.7644 +US 34110 Naples Florida FL Collier 021 26.2823 -81.7573 +US 34112 Naples Florida FL Collier 021 26.1184 -81.7361 +US 34113 Naples Florida FL Collier 021 26.0426 -81.7182 +US 34114 Naples Florida FL Collier 021 26.0143 -81.5856 +US 34116 Naples Florida FL Collier 021 26.1873 -81.711 +US 34117 Naples Florida FL Collier 021 26.1156 -81.5239 +US 34119 Naples Florida FL Collier 021 26.2665 -81.7146 +US 34120 Naples Florida FL Collier 021 26.3304 -81.5871 +US 34137 Copeland Florida FL Collier 021 26.1433 -81.3891 +US 34138 Chokoloskee Florida FL Collier 021 25.8367 -81.122 +US 34139 Everglades City Florida FL Collier 021 25.857 -81.3778 +US 34140 Goodland Florida FL Collier 021 26.1433 -81.3891 +US 34141 Ochopee Florida FL Collier 021 25.8734 -81.1599 +US 34142 Immokalee Florida FL Collier 021 26.1844 -81.4152 +US 34143 Immokalee Florida FL Collier 021 26.4642 -81.5047 +US 34145 Marco Island Florida FL Collier 021 25.9388 -81.6968 +US 34146 Marco Island Florida FL Collier 021 26.1433 -81.3891 +US 32024 Lake City Florida FL Columbia 023 30.1055 -82.6878 +US 32025 Lake City Florida FL Columbia 023 30.1601 -82.6396 +US 32038 Fort White Florida FL Columbia 023 29.9207 -82.6879 +US 32055 Lake City Florida FL Columbia 023 30.2702 -82.6254 +US 32056 Lake City Florida FL Columbia 023 30.1628 -82.6512 +US 32061 Lulu Florida FL Columbia 023 30.0754 -82.5385 +US 33821 Arcadia Florida FL DeSoto County 027 27.1964 -81.8716 +US 33842 Fort Ogden Florida FL DeSoto County 027 27.0867 -81.9524 +US 33864 Nocatee Florida FL DeSoto County 027 27.1598 -81.8824 +US 34265 Arcadia Florida FL DeSoto 027 27.1861 -81.8099 +US 34266 Arcadia Florida FL DeSoto 027 27.1861 -81.8667 +US 34267 Fort Ogden Florida FL DeSoto 027 27.1861 -81.8099 +US 34268 Nocatee Florida FL DeSoto 027 27.2038 -81.8644 +US 34269 Arcadia Florida FL DeSoto 027 27.0675 -81.9855 +US 32628 Cross City Florida FL Dixie 029 29.6372 -83.2032 +US 32648 Horseshoe Beach Florida FL Dixie 029 29.4869 -83.2616 +US 32680 Old Town Florida FL Dixie 029 29.6699 -83.005 +US 32692 Suwannee Florida FL Dixie 029 29.3295 -83.14 +US 32099 Jacksonville Florida FL Duval 031 30.3375 -81.7686 +US 32201 Jacksonville Florida FL Duval 031 30.3894 -81.6808 +US 32202 Jacksonville Florida FL Duval 031 30.3299 -81.6517 +US 32203 Jacksonville Florida FL Duval 031 30.3228 -81.547 +US 32204 Jacksonville Florida FL Duval 031 30.3189 -81.6854 +US 32205 Jacksonville Florida FL Duval 031 30.3172 -81.722 +US 32206 Jacksonville Florida FL Duval 031 30.3511 -81.6488 +US 32207 Jacksonville Florida FL Duval 031 30.2908 -81.6321 +US 32208 Jacksonville Florida FL Duval 031 30.3937 -81.6889 +US 32209 Jacksonville Florida FL Duval 031 30.3584 -81.692 +US 32210 Jacksonville Florida FL Duval 031 30.2687 -81.7473 +US 32211 Jacksonville Florida FL Duval 031 30.348 -81.5882 +US 32212 Jacksonville Florida FL Duval 031 30.2132 -81.69 +US 32214 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32215 Jacksonville Florida FL Duval 031 30.2407 -81.893 +US 32216 Jacksonville Florida FL Duval 031 30.2787 -81.5831 +US 32217 Jacksonville Florida FL Duval 031 30.2407 -81.617 +US 32218 Jacksonville Florida FL Duval 031 30.4507 -81.6626 +US 32219 Jacksonville Florida FL Duval 031 30.4034 -81.7635 +US 32220 Jacksonville Florida FL Duval 031 30.329 -81.8176 +US 32221 Jacksonville Florida FL Duval 031 30.2837 -81.8202 +US 32222 Jacksonville Florida FL Duval 031 30.2292 -81.8131 +US 32223 Jacksonville Florida FL Duval 031 30.1548 -81.63 +US 32224 Jacksonville Florida FL Duval 031 30.3031 -81.4404 +US 32225 Jacksonville Florida FL Duval 031 30.351 -81.5061 +US 32226 Jacksonville Florida FL Duval 031 30.4735 -81.5448 +US 32227 Jacksonville Florida FL Duval 031 30.3802 -81.416 +US 32228 Jacksonville Florida FL Duval 031 30.3824 -81.4369 +US 32229 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32230 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32231 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32232 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32233 Atlantic Beach Florida FL Duval 031 30.3483 -81.4159 +US 32234 Jacksonville Florida FL Duval 031 30.2757 -81.9686 +US 32235 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32236 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32237 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32238 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32239 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32240 Jacksonville Beach Florida FL Duval 031 30.3449 -81.6831 +US 32241 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32244 Jacksonville Florida FL Duval 031 30.2231 -81.7556 +US 32245 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32246 Jacksonville Florida FL Duval 031 30.2933 -81.5092 +US 32247 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32250 Jacksonville Beach Florida FL Duval 031 30.2801 -81.4165 +US 32254 Jacksonville Florida FL Duval 031 30.3415 -81.7358 +US 32255 Jacksonville Florida FL Duval 031 30.287 -81.3893 +US 32256 Jacksonville Florida FL Duval 031 30.2214 -81.5571 +US 32257 Jacksonville Florida FL Duval 031 30.1927 -81.605 +US 32258 Jacksonville Florida FL Duval 031 30.1459 -81.5739 +US 32266 Neptune Beach Florida FL Duval 031 30.3155 -81.4051 +US 32267 Jacksonville Florida FL Duval 031 30.3449 -81.6831 +US 32277 Jacksonville Florida FL Duval 031 30.3704 -81.5864 +US 32290 Jacksonville Florida FL Duval County 031 30.3073 -81.6331 +US 32294 Jacksonville Florida FL Duval County 031 30.3162 -81.4174 +US 32296 Jacksonville Florida FL Duval County 031 30.3162 -81.4174 +US 32297 Jacksonville Florida FL Duval County 031 30.3162 -81.4174 +US 32501 Pensacola Florida FL Escambia 033 30.4223 -87.2248 +US 32502 Pensacola Florida FL Escambia 033 30.4095 -87.2229 +US 32503 Pensacola Florida FL Escambia 033 30.4564 -87.2104 +US 32504 Pensacola Florida FL Escambia 033 30.4873 -87.1872 +US 32505 Pensacola Florida FL Escambia 033 30.4481 -87.2589 +US 32506 Pensacola Florida FL Escambia 033 30.4129 -87.3092 +US 32507 Pensacola Florida FL Escambia 033 30.3737 -87.3126 +US 32508 Pensacola Florida FL Escambia 033 30.3511 -87.2749 +US 32509 Pensacola Florida FL Escambia 033 30.4643 -87.3403 +US 32511 Pensacola Florida FL Escambia 033 30.4061 -87.2917 +US 32512 Pensacola Florida FL Escambia 033 30.3943 -87.2991 +US 32513 Pensacola Florida FL Escambia 033 30.5571 -87.2596 +US 32514 Pensacola Florida FL Escambia 033 30.5241 -87.2167 +US 32516 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32520 Pensacola Florida FL Escambia 033 30.4124 -87.2035 +US 32521 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32522 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32523 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32524 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32526 Pensacola Florida FL Escambia 033 30.4756 -87.3179 +US 32533 Cantonment Florida FL Escambia 033 30.6143 -87.3251 +US 32534 Pensacola Florida FL Escambia 033 30.5301 -87.2793 +US 32535 Century Florida FL Escambia 033 30.9687 -87.3216 +US 32559 Pensacola Florida FL Escambia 033 30.3563 -87.2773 +US 32560 Gonzalez Florida FL Escambia 033 30.5818 -87.2929 +US 32568 Mc David Florida FL Escambia 033 30.8686 -87.4539 +US 32573 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32574 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32575 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32576 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32577 Molino Florida FL Escambia 033 30.6902 -87.3852 +US 32581 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32582 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32589 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32590 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32591 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32592 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32593 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32594 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32595 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32596 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32597 Pensacola Florida FL Escambia 033 30.5297 -87.2757 +US 32598 Pensacola Florida FL Escambia 033 30.6143 -87.2758 +US 32110 Bunnell Florida FL Flagler 035 29.4562 -81.3244 +US 32135 Palm Coast Florida FL Flagler 035 29.4661 -81.2828 +US 32136 Flagler Beach Florida FL Flagler 035 29.475 -81.1303 +US 32137 Palm Coast Florida FL Flagler 035 29.5565 -81.219 +US 32142 Palm Coast Florida FL Flagler 035 29.4661 -81.2828 +US 32151 Flagler Beach Florida FL Flagler 035 29.4661 -81.2828 +US 32164 Palm Coast Florida FL Flagler 035 29.4861 -81.2045 +US 32318 Tallahassee Florida FL Franklin County 037 30.3953 -84.265 +US 32320 Apalachicola Florida FL Franklin 037 29.7255 -85.0063 +US 32322 Carrabelle Florida FL Franklin 037 29.8692 -84.6358 +US 32323 Lanark Village Florida FL Franklin 037 29.8826 -84.5964 +US 32328 Eastpoint Florida FL Franklin 037 29.7495 -84.8162 +US 32329 Apalachicola Florida FL Franklin 037 29.7455 -85.0239 +US 32324 Chattahoochee Florida FL Gadsden 039 30.6834 -84.828 +US 32330 Greensboro Florida FL Gadsden 039 30.5653 -84.736 +US 32332 Gretna Florida FL Gadsden 039 30.6099 -84.6688 +US 32333 Havana Florida FL Gadsden 039 30.6092 -84.4143 +US 32343 Midway Florida FL Gadsden 039 30.485 -84.4768 +US 32351 Quincy Florida FL Gadsden 039 30.5867 -84.6094 +US 32352 Mount Pleasant Florida FL Gadsden 039 30.6512 -84.5866 +US 32352 Quincy Florida FL Gadsden 039 30.6512 -84.5866 +US 32353 Quincy Florida FL Gadsden 039 30.5497 -84.6069 +US 32619 Bell Florida FL Gilchrist 041 29.7837 -82.8711 +US 32693 Trenton Florida FL Gilchrist 041 29.6746 -82.8117 +US 33471 Moore Haven Florida FL Glades 043 26.8327 -81.2188 +US 33943 Ochopee Florida FL Glades County 043 25.9129 -81.2765 +US 33944 Palmdale Florida FL Glades 043 26.9464 -81.3091 +US 33963 Naples Florida FL Glades County 043 26.2626 -81.8071 +US 32453 Overstreet Florida FL Gulf County 045 29.9981 -85.3689 +US 32456 Port Saint Joe Florida FL Gulf 045 29.9323 -85.2354 +US 32457 Port Saint Joe Florida FL Gulf 045 29.9025 -85.2422 +US 32465 Wewahitchka Florida FL Gulf 045 30.0933 -85.2048 +US 32052 Jasper Florida FL Hamilton 047 30.5029 -82.9322 +US 32053 Jennings Florida FL Hamilton 047 30.5482 -83.135 +US 32096 White Springs Florida FL Hamilton 047 30.3387 -82.7765 +US 33834 Bowling Green Florida FL Hardee 049 27.6019 -81.8507 +US 33865 Ona Florida FL Hardee 049 27.4127 -81.928 +US 33873 Wauchula Florida FL Hardee 049 27.5517 -81.8074 +US 33890 Zolfo Springs Florida FL Hardee 049 27.48 -81.7423 +US 33440 Clewiston Florida FL Hendry 051 26.7172 -80.9492 +US 33930 Felda Florida FL Hendry 051 26.6128 -81.4799 +US 33934 Immokalee Florida FL Hendry County 051 26.4168 -81.4423 +US 33935 Labelle Florida FL Hendry 051 26.7321 -81.434 +US 33975 Labelle Florida FL Hendry 051 26.7633 -81.4388 +US 34601 Brooksville Florida FL Hernando 053 28.5658 -82.3737 +US 34602 Brooksville Florida FL Hernando 053 28.5093 -82.2957 +US 34603 Brooksville Florida FL Hernando 053 28.5642 -82.4165 +US 34604 Brooksville Florida FL Hernando 053 28.4409 -82.4612 +US 34605 Brooksville Florida FL Hernando 053 28.5059 -82.4226 +US 34606 Spring Hill Florida FL Hernando 053 28.4655 -82.5981 +US 34607 Spring Hill Florida FL Hernando 053 28.5065 -82.6267 +US 34608 Spring Hill Florida FL Hernando 053 28.4797 -82.5562 +US 34609 Brooksville Florida FL Hernando 053 28.4794 -82.5083 +US 34611 Spring Hill Florida FL Hernando 053 28.5642 -82.4165 +US 34613 Brooksville Florida FL Hernando 053 28.5466 -82.5213 +US 34614 Brooksville Florida FL Hernando 053 28.6622 -82.5236 +US 34636 Istachatta Florida FL Hernando 053 28.655 -82.2677 +US 34661 Nobleton Florida FL Hernando 053 28.6436 -82.2638 +US 33825 Avon Park Florida FL Highlands 055 27.6001 -81.5015 +US 33826 Avon Park Florida FL Highlands 055 27.3395 -81.2529 +US 33852 Lake Placid Florida FL Highlands 055 27.2945 -81.3649 +US 33857 Lorida Florida FL Highlands 055 27.415 -81.1965 +US 33862 Lake Placid Florida FL Highlands 055 27.2447 -81.2884 +US 33870 Sebring Florida FL Highlands 055 27.4924 -81.4357 +US 33871 Sebring Florida FL Highlands 055 27.4858 -81.4079 +US 33872 Sebring Florida FL Highlands 055 27.4703 -81.4872 +US 33875 Sebring Florida FL Highlands 055 27.4676 -81.4581 +US 33876 Sebring Florida FL Highlands 055 27.4287 -81.3519 +US 33960 Venus Florida FL Highlands 055 27.1203 -81.3909 +US 33503 Balm Florida FL Hillsborough 057 27.7648 -82.2734 +US 33508 Brandon Florida FL Hillsborough County 057 27.9318 -82.295 +US 33509 Brandon Florida FL Hillsborough 057 28.1196 -82.452 +US 33510 Brandon Florida FL Hillsborough 057 27.9551 -82.2966 +US 33511 Brandon Florida FL Hillsborough 057 27.9056 -82.2881 +US 33527 Dover Florida FL Hillsborough 057 27.992 -82.2138 +US 33530 Durant Florida FL Hillsborough 057 27.9068 -82.1767 +US 33534 Gibsonton Florida FL Hillsborough 057 27.8411 -82.3698 +US 33547 Lithia Florida FL Hillsborough 057 27.8293 -82.1357 +US 33548 Lutz Florida FL Hillsborough 057 28.1385 -82.4821 +US 33549 Lutz Florida FL Hillsborough 057 28.1367 -82.461 +US 33550 Mango Florida FL Hillsborough 057 27.872 -82.4388 +US 33556 Odessa Florida FL Hillsborough 057 28.1421 -82.5905 +US 33558 Lutz Florida FL Hillsborough 057 28.1474 -82.5152 +US 33563 Plant City Florida FL Hillsborough County 057 28.013 -82.1339 +US 33564 Plant City Florida FL Hillsborough 057 28.0296 -82.1347 +US 33565 Plant City Florida FL Hillsborough 057 28.0699 -82.1576 +US 33566 Plant City Florida FL Hillsborough 057 28.0094 -82.1138 +US 33567 Plant City Florida FL Hillsborough 057 27.922 -82.1216 +US 33568 Riverview Florida FL Hillsborough 057 27.872 -82.4388 +US 33569 Riverview Florida FL Hillsborough 057 27.845 -82.3125 +US 33570 Ruskin Florida FL Hillsborough 057 27.7015 -82.4355 +US 33571 Sun City Center Florida FL Hillsborough 057 27.7201 -82.453 +US 33572 Apollo Beach Florida FL Hillsborough 057 27.7716 -82.4102 +US 33573 Sun City Center Florida FL Hillsborough 057 27.7147 -82.3538 +US 33575 Ruskin Florida FL Hillsborough County 057 27.7144 -82.4291 +US 33579 Riverview Florida FL Hillsborough County 057 27.8024 -82.2755 +US 33583 Seffner Florida FL Hillsborough 057 27.872 -82.4388 +US 33584 Seffner Florida FL Hillsborough 057 27.9922 -82.2863 +US 33586 Sun City Florida FL Hillsborough 057 27.872 -82.4388 +US 33587 Sydney Florida FL Hillsborough 057 27.872 -82.4388 +US 33592 Thonotosassa Florida FL Hillsborough 057 28.0617 -82.3082 +US 33594 Valrico Florida FL Hillsborough 057 27.9408 -82.242 +US 33595 Valrico Florida FL Hillsborough 057 27.872 -82.4388 +US 33596 Valrico Florida FL Hillsborough County 057 27.8925 -82.243 +US 33598 Wimauma Florida FL Hillsborough 057 27.7015 -82.3151 +US 33601 Tampa Florida FL Hillsborough 057 27.9961 -82.582 +US 33602 Tampa Florida FL Hillsborough 057 27.9614 -82.4597 +US 33603 Tampa Florida FL Hillsborough 057 27.9845 -82.463 +US 33604 Tampa Florida FL Hillsborough 057 28.0173 -82.4578 +US 33605 Tampa Florida FL Hillsborough 057 27.9671 -82.4334 +US 33606 Tampa Florida FL Hillsborough 057 27.9306 -82.4653 +US 33607 Tampa Florida FL Hillsborough 057 27.9625 -82.4895 +US 33608 Tampa Florida FL Hillsborough 057 27.8434 -82.4884 +US 33609 Tampa Florida FL Hillsborough 057 27.9425 -82.5057 +US 33610 Tampa Florida FL Hillsborough 057 27.9951 -82.4046 +US 33611 Tampa Florida FL Hillsborough 057 27.8914 -82.5067 +US 33612 Tampa Florida FL Hillsborough 057 28.0502 -82.45 +US 33613 Tampa Florida FL Hillsborough 057 28.0772 -82.4455 +US 33614 Tampa Florida FL Hillsborough 057 28.0091 -82.5034 +US 33615 Tampa Florida FL Hillsborough 057 28.0081 -82.5805 +US 33616 Tampa Florida FL Hillsborough 057 27.8742 -82.5203 +US 33617 Tampa Florida FL Hillsborough 057 28.0384 -82.3949 +US 33618 Tampa Florida FL Hillsborough 057 28.0763 -82.4852 +US 33619 Tampa Florida FL Hillsborough 057 27.9382 -82.3756 +US 33620 Tampa Florida FL Hillsborough 057 28.06 -82.4079 +US 33621 Tampa Florida FL Hillsborough 057 27.8491 -82.4946 +US 33622 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33623 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33624 Tampa Florida FL Hillsborough 057 28.079 -82.5268 +US 33625 Tampa Florida FL Hillsborough 057 28.0726 -82.559 +US 33626 Tampa Florida FL Hillsborough 057 28.0509 -82.6164 +US 33629 Tampa Florida FL Hillsborough 057 27.921 -82.5079 +US 33630 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33631 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33633 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33634 Tampa Florida FL Hillsborough 057 28.0068 -82.556 +US 33635 Tampa Florida FL Hillsborough 057 28.0301 -82.6048 +US 33637 Tampa Florida FL Hillsborough 057 28.0338 -82.3659 +US 33646 Tampa Florida FL Hillsborough County 057 28.094 -82.4021 +US 33647 Tampa Florida FL Hillsborough 057 28.1147 -82.3678 +US 33650 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33651 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33655 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33660 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33661 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33662 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33663 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33664 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33672 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33673 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33674 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33675 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33677 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33679 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33680 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33681 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33682 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33684 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33685 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33686 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33687 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33688 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33689 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33690 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33694 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 33695 Tampa Florida FL Hillsborough County 057 27.9471 -82.4585 +US 33697 Tampa Florida FL Hillsborough 057 27.872 -82.4388 +US 32425 Bonifay Florida FL Holmes 059 30.8464 -85.69 +US 32452 Noma Florida FL Holmes 059 30.85 -85.768 +US 32455 Ponce De Leon Florida FL Holmes 059 30.7041 -85.9546 +US 32464 Westville Florida FL Holmes 059 30.8747 -85.913 +US 32948 Fellsmere Florida FL Indian River 061 27.7643 -80.6019 +US 32957 Roseland Florida FL Indian River 061 27.709 -80.5726 +US 32958 Sebastian Florida FL Indian River 061 27.7901 -80.4784 +US 32960 Vero Beach Florida FL Indian River 061 27.633 -80.4031 +US 32961 Vero Beach Florida FL Indian River 061 27.6175 -80.4231 +US 32962 Vero Beach Florida FL Indian River 061 27.5885 -80.3923 +US 32963 Vero Beach Florida FL Indian River 061 27.6898 -80.3757 +US 32964 Vero Beach Florida FL Indian River 061 27.709 -80.5726 +US 32965 Vero Beach Florida FL Indian River 061 27.709 -80.5726 +US 32966 Vero Beach Florida FL Indian River 061 27.6372 -80.4794 +US 32967 Vero Beach Florida FL Indian River 061 27.6972 -80.4416 +US 32968 Vero Beach Florida FL Indian River 061 27.5999 -80.4382 +US 32969 Vero Beach Florida FL Indian River 061 27.709 -80.5726 +US 32970 Wabasso Florida FL Indian River 061 27.7529 -80.4743 +US 32971 Winter Beach Florida FL Indian River 061 27.709 -80.5726 +US 32978 Sebastian Florida FL Indian River 061 27.709 -80.5726 +US 32420 Alford Florida FL Jackson 063 30.6412 -85.3756 +US 32423 Bascom Florida FL Jackson 063 30.9514 -85.0972 +US 32426 Campbellton Florida FL Jackson 063 30.9563 -85.3766 +US 32431 Cottondale Florida FL Jackson 063 30.8004 -85.3847 +US 32432 Cypress Florida FL Jackson 063 30.7158 -85.0784 +US 32440 Graceville Florida FL Jackson 063 30.9426 -85.5136 +US 32442 Grand Ridge Florida FL Jackson 063 30.7148 -85.021 +US 32443 Greenwood Florida FL Jackson 063 30.8667 -85.1153 +US 32445 Malone Florida FL Jackson 063 30.9602 -85.1639 +US 32446 Marianna Florida FL Jackson 063 30.7996 -85.2293 +US 32447 Marianna Florida FL Jackson 063 30.7603 -85.2022 +US 32448 Marianna Florida FL Jackson 063 30.6749 -85.2122 +US 32460 Sneads Florida FL Jackson 063 30.7276 -84.9337 +US 32336 Lamont Florida FL Jefferson 065 30.2983 -83.9008 +US 32337 Lloyd Florida FL Jefferson 065 30.3422 -83.8402 +US 32344 Monticello Florida FL Jefferson 065 30.5197 -83.8925 +US 32345 Monticello Florida FL Jefferson 065 30.3422 -83.8402 +US 32361 Wacissa Florida FL Jefferson 065 30.3422 -83.8402 +US 32753 Debary Florida FL Jefferson 065 35.0704 -85.0055 +US 32013 Day Florida FL Lafayette 067 30.0414 -83.1231 +US 32066 Mayo Florida FL Lafayette 067 30.04 -83.1462 +US 32102 Astor Florida FL Lake 069 29.165 -81.5399 +US 32158 Lady Lake Florida FL Lake 069 28.8111 -81.6536 +US 32159 Lady Lake Florida FL Lake 069 28.9299 -81.9256 +US 32702 Altoona Florida FL Lake 069 29.0219 -81.6323 +US 32726 Eustis Florida FL Lake 069 28.855 -81.6789 +US 32727 Eustis Florida FL Lake 069 28.8555 -81.6741 +US 32735 Grand Island Florida FL Lake 069 28.8866 -81.7391 +US 32736 Eustis Florida FL Lake 069 28.9102 -81.5235 +US 32756 Mount Dora Florida FL Lake 069 28.8111 -81.6536 +US 32757 Mount Dora Florida FL Lake 069 28.774 -81.6439 +US 32767 Paisley Florida FL Lake 069 28.9993 -81.503 +US 32776 Sorrento Florida FL Lake 069 28.8035 -81.5323 +US 32778 Tavares Florida FL Lake 069 28.801 -81.734 +US 32784 Umatilla Florida FL Lake 069 28.9254 -81.6801 +US 34705 Astatula Florida FL Lake 069 28.7088 -81.7195 +US 34711 Clermont Florida FL Lake 069 28.5525 -81.7574 +US 34712 Clermont Florida FL Lake 069 28.8111 -81.6536 +US 34713 Clermont Florida FL Lake 069 28.8111 -81.6536 +US 34715 Clermont Florida FL Lake County 069 28.6259 -81.7306 +US 34729 Ferndale Florida FL Lake 069 28.8111 -81.6536 +US 34731 Fruitland Park Florida FL Lake 069 28.8639 -81.8998 +US 34736 Groveland Florida FL Lake 069 28.5644 -81.8745 +US 34737 Howey In The Hills Florida FL Lake 069 28.6971 -81.7976 +US 34748 Leesburg Florida FL Lake 069 28.808 -81.8858 +US 34749 Leesburg Florida FL Lake 069 28.8111 -81.6536 +US 34753 Mascotte Florida FL Lake 069 28.583 -81.8941 +US 34755 Minneola Florida FL Lake 069 28.5782 -81.8319 +US 34756 Montverde Florida FL Lake 069 28.5972 -81.6794 +US 34762 Okahumpka Florida FL Lake 069 28.7545 -81.9151 +US 34788 Leesburg Florida FL Lake 069 28.8887 -81.7827 +US 34789 Leesburg Florida FL Lake 069 28.8111 -81.6536 +US 34797 Yalaha Florida FL Lake 069 28.7444 -81.8263 +US 33900 Fort Myers Florida FL Lee County 071 26.6306 -81.8506 +US 33901 Fort Myers Florida FL Lee 071 26.6204 -81.8725 +US 33902 Fort Myers Florida FL Lee 071 26.6239 -81.8836 +US 33903 North Fort Myers Florida FL Lee 071 26.693 -81.9125 +US 33904 Cape Coral Florida FL Lee 071 26.6065 -81.9502 +US 33905 Fort Myers Florida FL Lee 071 26.6693 -81.7605 +US 33906 Fort Myers Florida FL Lee 071 26.5529 -81.9486 +US 33907 Fort Myers Florida FL Lee 071 26.5681 -81.8736 +US 33908 Fort Myers Florida FL Lee 071 26.5025 -81.9276 +US 33909 Cape Coral Florida FL Lee 071 26.6939 -81.9452 +US 33910 Cape Coral Florida FL Lee 071 26.5529 -81.9486 +US 33911 Fort Myers Florida FL Lee 071 26.5963 -81.8824 +US 33912 Fort Myers Florida FL Lee 071 26.4972 -81.8246 +US 33913 Fort Myers Florida FL Lee 071 26.5228 -81.7065 +US 33914 Cape Coral Florida FL Lee 071 26.5557 -82.0206 +US 33915 Cape Coral Florida FL Lee 071 26.6599 -81.8934 +US 33916 Fort Myers Florida FL Lee 071 26.6466 -81.8429 +US 33917 North Fort Myers Florida FL Lee 071 26.7357 -81.8435 +US 33918 North Fort Myers Florida FL Lee 071 26.7161 -81.607 +US 33919 Fort Myers Florida FL Lee 071 26.5567 -81.9034 +US 33920 Alva Florida FL Lee 071 26.7147 -81.6351 +US 33921 Boca Grande Florida FL Lee 071 26.7545 -82.2611 +US 33922 Bokeelia Florida FL Lee 071 26.6627 -82.1401 +US 33923 Bonita Springs Florida FL Lee County 071 26.3472 -81.7899 +US 33924 Captiva Florida FL Lee 071 26.5215 -82.1802 +US 33925 Chokoloskee Florida FL Lee County 071 25.8123 -81.3621 +US 33926 Copeland Florida FL Lee County 071 25.9531 -81.356 +US 33928 Estero Florida FL Lee 071 26.4351 -81.8102 +US 33931 Fort Myers Beach Florida FL Lee 071 26.5761 -82.0712 +US 33932 Fort Myers Beach Florida FL Lee 071 26.5529 -81.9486 +US 33933 Goodland Florida FL Lee County 071 25.9242 -81.6457 +US 33936 Lehigh Acres Florida FL Lee 071 26.5936 -81.6619 +US 33945 Pineland Florida FL Lee 071 26.6583 -82.1434 +US 33956 Saint James City Florida FL Lee 071 26.529 -82.0916 +US 33957 Sanibel Florida FL Lee 071 26.4514 -82.0868 +US 33959 Bonita Springs Florida FL Lee County 071 26.3392 -81.7787 +US 33965 Fort Myers Florida FL Lee 071 26.4637 -81.7722 +US 33966 Fort Myers Florida FL Lee County 071 26.5824 -81.832 +US 33970 Lehigh Acres Florida FL Lee 071 26.5647 -81.6208 +US 33971 Lehigh Acres Florida FL Lee 071 26.6388 -81.6992 +US 33972 Lehigh Acres Florida FL Lee 071 26.6492 -81.6167 +US 33974 Lehigh Acres Florida FL Lee County 071 26.5677 -81.5954 +US 33976 Lehigh Acres Florida FL Lee County 071 26.5952 -81.6849 +US 33990 Cape Coral Florida FL Lee 071 26.6265 -81.9677 +US 33991 Cape Coral Florida FL Lee 071 26.6281 -82.0182 +US 33993 Cape Coral Florida FL Lee 071 26.6786 -82.0254 +US 33994 Fort Myers Florida FL Lee 071 26.5529 -81.9486 +US 34133 Bonita Springs Florida FL Lee 071 26.5529 -81.9486 +US 34134 Bonita Springs Florida FL Lee 071 26.3626 -81.8183 +US 34135 Bonita Springs Florida FL Lee 071 26.3771 -81.7334 +US 34136 Bonita Springs Florida FL Lee 071 26.5529 -81.9486 +US 32301 Tallahassee Florida FL Leon 073 30.4286 -84.2593 +US 32302 Tallahassee Florida FL Leon 073 30.4793 -84.3462 +US 32303 Tallahassee Florida FL Leon 073 30.4874 -84.3189 +US 32304 Tallahassee Florida FL Leon 073 30.4478 -84.3211 +US 32305 Tallahassee Florida FL Leon 073 30.334 -84.287 +US 32306 Tallahassee Florida FL Leon 073 30.4425 -84.2986 +US 32307 Tallahassee Florida FL Leon 073 30.4257 -84.2877 +US 32308 Tallahassee Florida FL Leon 073 30.4771 -84.2246 +US 32309 Tallahassee Florida FL Leon 073 30.5422 -84.1413 +US 32309 Miccosukee Cpo Florida FL Leon 073 30.5146 -84.1884 +US 32310 Tallahassee Florida FL Leon 073 30.3991 -84.3298 +US 32311 Tallahassee Florida FL Leon 073 30.4156 -84.187 +US 32312 Tallahassee Florida FL Leon 073 30.5185 -84.2627 +US 32313 Tallahassee Florida FL Leon 073 30.4793 -84.3462 +US 32314 Tallahassee Florida FL Leon 073 30.4793 -84.3462 +US 32315 Tallahassee Florida FL Leon 073 30.4793 -84.3462 +US 32316 Tallahassee Florida FL Leon 073 30.4793 -84.3462 +US 32317 Tallahassee Florida FL Leon 073 30.4651 -84.1128 +US 32362 Woodville Florida FL Leon 073 30.3193 -84.2674 +US 32395 Tallahassee Florida FL Leon 073 30.4793 -84.3462 +US 32399 Tallahassee Florida FL Leon 073 30.4494 -84.2909 +US 32621 Bronson Florida FL Levy 075 29.461 -82.6356 +US 32625 Cedar Key Florida FL Levy 075 29.171 -83.0168 +US 32626 Chiefland Florida FL Levy 075 29.4832 -82.8809 +US 32639 Gulf Hammock Florida FL Levy 075 29.2447 -82.7402 +US 32644 Chiefland Florida FL Levy 075 29.4602 -82.8553 +US 32668 Morriston Florida FL Levy 075 29.2813 -82.4917 +US 32683 Otter Creek Florida FL Levy 075 29.3109 -82.7945 +US 32696 Williston Florida FL Levy 075 29.3977 -82.4856 +US 34449 Inglis Florida FL Levy 075 29.0955 -82.6561 +US 34498 Yankeetown Florida FL Levy 075 29.0305 -82.719 +US 32321 Bristol Florida FL Liberty 077 30.4223 -84.9466 +US 32334 Hosford Florida FL Liberty 077 30.3639 -84.8054 +US 32335 Sumatra Florida FL Liberty 077 30.2889 -84.8484 +US 32360 Telogia Florida FL Liberty 077 30.2889 -84.8484 +US 32059 Lee Florida FL Madison 079 30.3979 -83.2844 +US 32331 Greenville Florida FL Madison 079 30.4512 -83.6474 +US 32340 Madison Florida FL Madison 079 30.4802 -83.4067 +US 32341 Madison Florida FL Madison 079 30.4776 -83.3914 +US 32350 Pinetta Florida FL Madison 079 30.5997 -83.3405 +US 34201 Bradenton Florida FL Manatee 081 27.4047 -82.4705 +US 34202 Bradenton Florida FL Manatee 081 27.4067 -82.39 +US 34203 Bradenton Florida FL Manatee 081 27.4547 -82.5359 +US 34204 Bradenton Florida FL Manatee 081 27.4272 -82.4387 +US 34205 Bradenton Florida FL Manatee 081 27.4841 -82.5834 +US 34206 Bradenton Florida FL Manatee 081 27.4272 -82.4387 +US 34207 Bradenton Florida FL Manatee 081 27.4394 -82.5778 +US 34208 Bradenton Florida FL Manatee 081 27.4678 -82.512 +US 34209 Bradenton Florida FL Manatee 081 27.4759 -82.6167 +US 34210 Bradenton Florida FL Manatee 081 27.4544 -82.6358 +US 34211 Bradenton Florida FL Manatee 081 27.45 -82.3773 +US 34212 Bradenton Florida FL Manatee 081 27.4978 -82.4101 +US 34215 Cortez Florida FL Manatee 081 27.4713 -82.6823 +US 34216 Anna Maria Florida FL Manatee 081 27.5291 -82.7317 +US 34217 Bradenton Beach Florida FL Manatee 081 27.4859 -82.7102 +US 34218 Holmes Beach Florida FL Manatee 081 27.4995 -82.7099 +US 34219 Parrish Florida FL Manatee 081 27.5572 -82.396 +US 34220 Palmetto Florida FL Manatee 081 27.4272 -82.4387 +US 34221 Palmetto Florida FL Manatee 081 27.5429 -82.563 +US 34222 Ellenton Florida FL Manatee 081 27.5382 -82.5006 +US 34228 Longboat Key Florida FL Manatee 081 27.3572 -82.4431 +US 34243 Sarasota Florida FL Manatee 081 27.4072 -82.5303 +US 34250 Terra Ceia Florida FL Manatee 081 27.5722 -82.5832 +US 34251 Myakka City Florida FL Manatee 081 27.3648 -82.1849 +US 34260 Manasota Florida FL Manatee 081 27.4272 -82.4387 +US 34264 Oneco Florida FL Manatee 081 27.4272 -82.4387 +US 34270 Tallevast Florida FL Manatee 081 27.4054 -82.5435 +US 34280 Bradenton Florida FL Manatee 081 27.4272 -82.4387 +US 34281 Bradenton Florida FL Manatee 081 27.4272 -82.4387 +US 34282 Bradenton Florida FL Manatee 081 27.4272 -82.4387 +US 32111 Candler Florida FL Marion 083 29.0607 -81.969 +US 32113 Citra Florida FL Marion 083 29.3918 -82.1062 +US 32133 Eastlake Weir Florida FL Marion 083 29.0088 -81.9094 +US 32134 Fort Mc Coy Florida FL Marion 083 29.391 -81.8551 +US 32179 Ocklawaha Florida FL Marion 083 29.0643 -81.8857 +US 32182 Orange Springs Florida FL Marion 083 29.4856 -81.9589 +US 32183 Ocklawaha Florida FL Marion 083 29.0597 -81.9051 +US 32192 Sparr Florida FL Marion 083 29.3268 -82.1046 +US 32195 Weirsdale Florida FL Marion 083 28.9782 -81.8932 +US 32617 Anthony Florida FL Marion 083 29.3048 -82.1262 +US 32634 Fairfield Florida FL Marion 083 29.3509 -82.2765 +US 32663 Lowell Florida FL Marion 083 29.3424 -82.2126 +US 32664 Mc Intosh Florida FL Marion 083 29.438 -82.2295 +US 32681 Orange Lake Florida FL Marion 083 29.4281 -82.2449 +US 32686 Reddick Florida FL Marion 083 29.3754 -82.244 +US 33491 Canal Point Florida FL Marion County 083 26.7028 -80.6634 +US 34420 Belleview Florida FL Marion 083 29.0531 -82.0375 +US 34421 Belleview Florida FL Marion 083 29.2407 -82.0875 +US 34430 Dunnellon Florida FL Marion 083 29.2407 -82.0875 +US 34431 Dunnellon Florida FL Marion 083 29.1392 -82.5328 +US 34432 Dunnellon Florida FL Marion 083 29.1015 -82.3413 +US 34470 Ocala Florida FL Marion 083 29.1989 -82.0874 +US 34471 Ocala Florida FL Marion 083 29.1605 -82.1288 +US 34472 Ocala Florida FL Marion 083 29.1253 -82.0086 +US 34473 Ocala Florida FL Marion 083 29.0058 -82.1828 +US 34474 Ocala Florida FL Marion 083 29.1565 -82.2095 +US 34475 Ocala Florida FL Marion 083 29.2573 -82.161 +US 34476 Ocala Florida FL Marion 083 29.1159 -82.2422 +US 34477 Ocala Florida FL Marion 083 29.2407 -82.0875 +US 34478 Ocala Florida FL Marion 083 29.1872 -82.1123 +US 34479 Ocala Florida FL Marion 083 29.2541 -82.1095 +US 34480 Ocala Florida FL Marion 083 29.1056 -82.098 +US 34481 Ocala Florida FL Marion 083 29.1281 -82.2975 +US 34482 Ocala Florida FL Marion 083 29.2611 -82.2195 +US 34483 Ocala Florida FL Marion 083 29.2407 -82.0875 +US 34488 Silver Springs Florida FL Marion 083 29.2635 -81.9532 +US 34489 Silver Springs Florida FL Marion 083 29.2152 -82.0972 +US 34491 Summerfield Florida FL Marion 083 29.0112 -82.0325 +US 34492 Summerfield Florida FL Marion 083 28.998 -82.0161 +US 33455 Hobe Sound Florida FL Martin 085 27.0813 -80.1509 +US 33475 Hobe Sound Florida FL Martin 085 27.1102 -80.4542 +US 34956 Indiantown Florida FL Martin 085 27.0615 -80.4803 +US 34957 Jensen Beach Florida FL Martin 085 27.2356 -80.2277 +US 34958 Jensen Beach Florida FL Martin 085 27.2424 -80.2246 +US 34990 Palm City Florida FL Martin 085 27.1656 -80.2916 +US 34991 Palm City Florida FL Martin 085 27.1102 -80.4542 +US 34992 Port Salerno Florida FL Martin 085 27.1102 -80.4542 +US 34994 Stuart Florida FL Martin 085 27.1968 -80.2538 +US 34995 Stuart Florida FL Martin 085 27.1754 -80.2415 +US 34996 Stuart Florida FL Martin 085 27.1929 -80.2164 +US 34997 Stuart Florida FL Martin 085 27.1398 -80.2129 +US 33002 Hialeah Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33010 Hialeah Florida FL Miami-Dade 086 25.8325 -80.2808 +US 33011 Hialeah Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33012 Hialeah Florida FL Miami-Dade 086 25.8654 -80.3059 +US 33013 Hialeah Florida FL Miami-Dade 086 25.8594 -80.2725 +US 33014 Hialeah Florida FL Miami-Dade 086 25.8963 -80.3063 +US 33015 Hialeah Florida FL Miami-Dade 086 25.9388 -80.3165 +US 33016 Hialeah Florida FL Miami-Dade 086 25.8803 -80.3368 +US 33017 Hialeah Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33018 Hialeah Florida FL Miami-Dade 086 25.9098 -80.3889 +US 33030 Homestead Florida FL Miami-Dade 086 25.4766 -80.4839 +US 33031 Homestead Florida FL Miami-Dade 086 25.5323 -80.5075 +US 33032 Homestead Florida FL Miami-Dade 086 25.5303 -80.3918 +US 33033 Homestead Florida FL Miami-Dade 086 25.4906 -80.438 +US 33034 Homestead Florida FL Miami-Dade 086 25.2846 -80.6246 +US 33035 Homestead Florida FL Miami-Dade 086 25.4573 -80.4572 +US 33039 Homestead Florida FL Miami-Dade 086 25.5021 -80.3997 +US 33054 Opa Locka Florida FL Miami-Dade 086 25.9097 -80.247 +US 33055 Opa Locka Florida FL Miami-Dade 086 25.9476 -80.2778 +US 33056 Opa Locka Florida FL Miami-Dade 086 25.9484 -80.2479 +US 33090 Homestead Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33092 Homestead Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33101 Miami Florida FL Miami-Dade 086 25.7791 -80.1978 +US 33102 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33107 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33109 Miami Beach Florida FL Miami-Dade 086 25.7588 -80.1376 +US 33110 Miami Florida FL Miami-Dade 086 25.8469 -80.2083 +US 33111 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33114 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33116 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33119 Miami Beach Florida FL Miami-Dade 086 25.7845 -80.132 +US 33121 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33122 Miami Florida FL Miami-Dade 086 25.8001 -80.281 +US 33124 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33125 Miami Florida FL Miami-Dade 086 25.7825 -80.2341 +US 33126 Miami Florida FL Miami-Dade 086 25.7763 -80.2919 +US 33127 Miami Florida FL Miami-Dade 086 25.8143 -80.2051 +US 33128 Miami Florida FL Miami-Dade 086 25.7756 -80.2089 +US 33129 Miami Florida FL Miami-Dade 086 25.7559 -80.2013 +US 33130 Miami Florida FL Miami-Dade 086 25.7672 -80.2059 +US 33131 Miami Florida FL Miami-Dade 086 25.7629 -80.1895 +US 33132 Miami Florida FL Miami-Dade 086 25.7867 -80.18 +US 33133 Miami Florida FL Miami-Dade 086 25.7378 -80.2248 +US 33134 Miami Florida FL Miami-Dade 086 25.768 -80.2714 +US 33135 Miami Florida FL Miami-Dade 086 25.7664 -80.2317 +US 33136 Miami Florida FL Miami-Dade 086 25.7864 -80.2042 +US 33137 Miami Florida FL Miami-Dade 086 25.8156 -80.1897 +US 33138 Miami Florida FL Miami-Dade 086 25.8521 -80.1821 +US 33139 Miami Beach Florida FL Miami-Dade 086 25.7873 -80.1564 +US 33140 Miami Beach Florida FL Miami-Dade 086 25.8198 -80.1337 +US 33141 Miami Beach Florida FL Miami-Dade 086 25.8486 -80.1446 +US 33142 Miami Florida FL Miami-Dade 086 25.813 -80.232 +US 33143 Miami Florida FL Miami-Dade 086 25.7022 -80.2978 +US 33144 Miami Florida FL Miami-Dade 086 25.7626 -80.3096 +US 33145 Miami Florida FL Miami-Dade 086 25.7539 -80.2253 +US 33146 Miami Florida FL Miami-Dade 086 25.7205 -80.2728 +US 33147 Miami Florida FL Miami-Dade 086 25.8507 -80.2366 +US 33148 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33149 Key Biscayne Florida FL Miami-Dade 086 25.6921 -80.1625 +US 33150 Miami Florida FL Miami-Dade 086 25.8512 -80.207 +US 33151 Miami Florida FL Miami-Dade 086 25.8321 -80.2094 +US 33152 Miami Florida FL Miami-Dade 086 25.7955 -80.3129 +US 33153 Miami Florida FL Miami-Dade 086 25.8655 -80.1936 +US 33154 Miami Florida FL Miami-Dade 086 25.8831 -80.1321 +US 33155 Miami Florida FL Miami-Dade 086 25.7392 -80.3103 +US 33156 Miami Florida FL Miami-Dade 086 25.6682 -80.2973 +US 33157 Miami Florida FL Miami-Dade 086 25.6062 -80.3426 +US 33158 Miami Florida FL Miami-Dade 086 25.6364 -80.3187 +US 33159 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33160 North Miami Beach Florida FL Miami-Dade 086 25.9449 -80.1391 +US 33161 Miami Florida FL Miami-Dade 086 25.8934 -80.1758 +US 33162 Miami Florida FL Miami-Dade 086 25.9286 -80.183 +US 33163 Miami Florida FL Miami-Dade 086 25.945 -80.2145 +US 33164 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33165 Miami Florida FL Miami-Dade 086 25.7343 -80.3588 +US 33166 Miami Florida FL Miami-Dade 086 25.8301 -80.2926 +US 33167 Miami Florida FL Miami-Dade 086 25.8856 -80.2292 +US 33168 Miami Florida FL Miami-Dade 086 25.8902 -80.2101 +US 33169 Miami Florida FL Miami-Dade 086 25.9441 -80.2144 +US 33170 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33172 Miami Florida FL Miami-Dade 086 25.7735 -80.3572 +US 33173 Miami Florida FL Miami-Dade 086 25.6992 -80.3618 +US 33174 Miami Florida FL Miami-Dade 086 25.7628 -80.3611 +US 33175 Miami Florida FL Miami-Dade 086 25.7341 -80.4068 +US 33176 Miami Florida FL Miami-Dade 086 25.6574 -80.3627 +US 33177 Miami Florida FL Miami-Dade 086 25.5968 -80.4046 +US 33178 Miami Florida FL Miami-Dade 086 25.8141 -80.3549 +US 33179 Miami Florida FL Miami-Dade 086 25.9571 -80.1814 +US 33180 Miami Florida FL Miami-Dade 086 25.9597 -80.1403 +US 33181 Miami Florida FL Miami-Dade 086 25.8965 -80.157 +US 33182 Miami Florida FL Miami-Dade 086 25.7877 -80.4166 +US 33183 Miami Florida FL Miami-Dade 086 25.7 -80.413 +US 33184 Miami Florida FL Miami-Dade 086 25.7574 -80.403 +US 33185 Miami Florida FL Miami-Dade 086 25.7274 -80.4497 +US 33186 Miami Florida FL Miami-Dade 086 25.6694 -80.4085 +US 33187 Miami Florida FL Miami-Dade 086 25.596 -80.507 +US 33188 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33189 Miami Florida FL Miami-Dade 086 25.573 -80.3374 +US 33190 Miami Florida FL Miami-Dade 086 25.5593 -80.3483 +US 33192 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33193 Miami Florida FL Miami-Dade 086 25.6964 -80.4401 +US 33194 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33195 Miami Florida FL Miami-Dade 086 25.7729 -80.187 +US 33196 Miami Florida FL Miami-Dade 086 25.6615 -80.441 +US 33197 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33199 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33222 Miami Florida FL Miami-Dade County 086 25.7577 -80.3748 +US 33231 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33233 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33234 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33238 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33239 Miami Beach Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33242 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33243 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33245 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33247 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33255 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33256 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33257 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33261 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33265 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33266 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33269 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33280 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33283 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33296 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33299 Miami Florida FL Miami-Dade 086 25.5584 -80.4582 +US 33001 Long Key Florida FL Monroe 087 24.8306 -80.8049 +US 33036 Islamorada Florida FL Monroe 087 24.9233 -80.63 +US 33037 Key Largo Florida FL Monroe 087 24.9635 -80.9613 +US 33040 Key West Florida FL Monroe 087 24.6557 -81.3824 +US 33041 Key West Florida FL Monroe 087 25.101 -81.5689 +US 33042 Sugarloaf Shores Florida FL Monroe 087 24.6443 -81.562 +US 33042 Summerland Key Florida FL Monroe 087 24.667 -81.5099 +US 33043 Big Pine Key Florida FL Monroe 087 24.68 -81.362 +US 33045 Key West Florida FL Monroe 087 25.101 -81.5689 +US 33050 Marathon Florida FL Monroe 087 24.7279 -81.0386 +US 33051 Key Colony Beach Florida FL Monroe 087 24.7234 -81.0203 +US 33052 Marathon Shores Florida FL Monroe 087 24.7233 -81.0632 +US 33070 Tavernier Florida FL Monroe 087 25.0108 -80.5218 +US 32009 Bryceville Florida FL Nassau 089 30.4193 -81.9724 +US 32011 Callahan Florida FL Nassau 089 30.552 -81.8145 +US 32034 Fernandina Beach Florida FL Nassau 089 30.6078 -81.6829 +US 32035 Fernandina Beach Florida FL Nassau 089 30.5516 -81.6984 +US 32041 Yulee Florida FL Nassau 089 30.6233 -81.5902 +US 32046 Hilliard Florida FL Nassau 089 30.6884 -81.9345 +US 32097 Yulee Florida FL Nassau 089 30.6222 -81.5906 +US 32531 Baker Florida FL Okaloosa 091 30.8316 -86.677 +US 32536 Crestview Florida FL Okaloosa 091 30.7644 -86.5917 +US 32537 Milligan Florida FL Okaloosa 091 30.742 -86.6552 +US 32539 Crestview Florida FL Okaloosa 091 30.7773 -86.4832 +US 32540 Destin Florida FL Okaloosa 091 30.6612 -86.5945 +US 32541 Destin Florida FL Okaloosa 091 30.3949 -86.4692 +US 32542 Eglin Afb Florida FL Okaloosa 091 30.5393 -86.6087 +US 32544 Hurlburt Field Florida FL Okaloosa 091 30.4229 -86.6985 +US 32547 Fort Walton Beach Florida FL Okaloosa 091 30.4487 -86.6255 +US 32548 Fort Walton Beach Florida FL Okaloosa 091 30.4206 -86.6286 +US 32549 Fort Walton Beach Florida FL Okaloosa 091 30.6612 -86.5945 +US 32564 Holt Florida FL Okaloosa 091 30.7416 -86.7198 +US 32567 Laurel Hill Florida FL Okaloosa 091 30.9524 -86.4003 +US 32569 Mary Esther Florida FL Okaloosa 091 30.4085 -86.7352 +US 32578 Niceville Florida FL Okaloosa 091 30.4958 -86.4145 +US 32579 Shalimar Florida FL Okaloosa 091 30.4456 -86.5717 +US 32580 Valparaiso Florida FL Okaloosa 091 30.5092 -86.5009 +US 32588 Niceville Florida FL Okaloosa 091 30.6612 -86.5945 +US 34972 Okeechobee Florida FL Okeechobee 093 27.4203 -80.9454 +US 34973 Okeechobee Florida FL Okeechobee 093 27.2976 -80.8027 +US 34974 Okeechobee Florida FL Okeechobee 093 27.2002 -80.841 +US 32703 Apopka Florida FL Orange 095 28.6354 -81.4888 +US 32704 Apopka Florida FL Orange 095 28.5663 -81.2608 +US 32709 Christmas Florida FL Orange 095 28.5462 -81.0116 +US 32710 Clarcona Florida FL Orange 095 28.5663 -81.2608 +US 32712 Apopka Florida FL Orange 095 28.712 -81.5136 +US 32751 Maitland Florida FL Orange 095 28.6255 -81.3646 +US 32768 Plymouth Florida FL Orange 095 28.6985 -81.5698 +US 32777 Tangerine Florida FL Orange 095 28.5663 -81.2608 +US 32789 Winter Park Florida FL Orange 095 28.5978 -81.3534 +US 32790 Winter Park Florida FL Orange 095 28.5663 -81.2608 +US 32792 Winter Park Florida FL Orange 095 28.5974 -81.3036 +US 32793 Winter Park Florida FL Orange 095 28.5663 -81.2608 +US 32794 Maitland Florida FL Orange 095 28.5663 -81.2608 +US 32798 Zellwood Florida FL Orange 095 28.7194 -81.5762 +US 32801 Orlando Florida FL Orange 095 28.5399 -81.3727 +US 32802 Orlando Florida FL Orange 095 28.519 -81.3439 +US 32803 Orlando Florida FL Orange 095 28.5559 -81.3535 +US 32804 Orlando Florida FL Orange 095 28.5754 -81.3955 +US 32805 Orlando Florida FL Orange 095 28.5302 -81.4045 +US 32806 Orlando Florida FL Orange 095 28.514 -81.357 +US 32807 Orlando Florida FL Orange 095 28.5515 -81.3051 +US 32808 Orlando Florida FL Orange 095 28.5803 -81.4396 +US 32809 Orlando Florida FL Orange 095 28.4637 -81.3948 +US 32810 Orlando Florida FL Orange 095 28.6214 -81.4294 +US 32811 Orlando Florida FL Orange 095 28.5163 -81.4516 +US 32812 Orlando Florida FL Orange 095 28.4998 -81.3288 +US 32813 Orlando Florida FL Orange 095 28.5679 -81.3258 +US 32814 Orlando Florida FL Orange 095 28.5702 -81.3265 +US 32816 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32817 Orlando Florida FL Orange 095 28.5891 -81.2277 +US 32818 Orlando Florida FL Orange 095 28.5801 -81.4846 +US 32819 Orlando Florida FL Orange 095 28.4522 -81.4678 +US 32820 Orlando Florida FL Orange 095 28.5725 -81.1219 +US 32821 Orlando Florida FL Orange 095 28.3957 -81.4666 +US 32822 Orlando Florida FL Orange 095 28.4944 -81.2902 +US 32824 Orlando Florida FL Orange 095 28.3932 -81.3622 +US 32825 Orlando Florida FL Orange 095 28.5469 -81.2571 +US 32826 Orlando Florida FL Orange 095 28.5826 -81.1907 +US 32827 Orlando Florida FL Orange 095 28.4317 -81.343 +US 32828 Orlando Florida FL Orange 095 28.5523 -81.1795 +US 32829 Orlando Florida FL Orange 095 28.4671 -81.2417 +US 32830 Orlando Florida FL Orange 095 28.3822 -81.569 +US 32831 Orlando Florida FL Orange 095 28.4656 -81.151 +US 32832 Orlando Florida FL Orange 095 28.3774 -81.1888 +US 32833 Orlando Florida FL Orange 095 28.5088 -81.0703 +US 32834 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32835 Orlando Florida FL Orange 095 28.5289 -81.4787 +US 32836 Orlando Florida FL Orange 095 28.4115 -81.525 +US 32837 Orlando Florida FL Orange 095 28.3949 -81.4179 +US 32839 Orlando Florida FL Orange 095 28.4871 -81.4082 +US 32853 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32854 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32855 Orlando Florida FL Orange 095 28.55 -81.1042 +US 32856 Orlando Florida FL Orange 095 28.5484 -81.4201 +US 32857 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32858 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32859 Orlando Florida FL Orange 095 28.4429 -81.4026 +US 32860 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32861 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32862 Orlando Florida FL Orange 095 28.4174 -81.3328 +US 32867 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32868 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32869 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32872 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32877 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32878 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32885 Orlando Florida FL Orange County 095 28.5456 -81.3782 +US 32886 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32887 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32889 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32890 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32891 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32893 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32896 Orlando Florida FL Orange County 095 28.5419 -81.3791 +US 32897 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 32898 Orlando Florida FL Orange 095 28.5663 -81.2608 +US 34734 Gotha Florida FL Orange 095 28.5384 -81.5208 +US 34740 Killarney Florida FL Orange 095 28.5454 -81.6507 +US 34760 Oakland Florida FL Orange 095 28.5547 -81.6322 +US 34761 Ocoee Florida FL Orange 095 28.5837 -81.5326 +US 34777 Winter Garden Florida FL Orange 095 28.5416 -81.6058 +US 34778 Winter Garden Florida FL Orange 095 28.5663 -81.2608 +US 34786 Windermere Florida FL Orange 095 28.5006 -81.5354 +US 34787 Winter Garden Florida FL Orange 095 28.5423 -81.5911 +US 33848 Intercession City Florida FL Osceola 097 28.2774 -81.5069 +US 34739 Kenansville Florida FL Osceola 097 27.8767 -81.05 +US 34741 Kissimmee Florida FL Osceola 097 28.3051 -81.4242 +US 34742 Kissimmee Florida FL Osceola 097 27.9953 -81.2593 +US 34743 Kissimmee Florida FL Osceola 097 28.3306 -81.3544 +US 34744 Kissimmee Florida FL Osceola 097 28.3078 -81.3681 +US 34745 Kissimmee Florida FL Osceola 097 27.9953 -81.2593 +US 34746 Kissimmee Florida FL Osceola 097 28.268 -81.4675 +US 34747 Kissimmee Florida FL Osceola 097 28.3037 -81.5898 +US 34758 Kissimmee Florida FL Osceola 097 28.1984 -81.487 +US 34769 Saint Cloud Florida FL Osceola 097 28.248 -81.2876 +US 34770 Saint Cloud Florida FL Osceola 097 27.9953 -81.2593 +US 34771 Saint Cloud Florida FL Osceola 097 28.273 -81.2003 +US 34772 Saint Cloud Florida FL Osceola 097 28.1905 -81.2645 +US 34773 Saint Cloud Florida FL Osceola 097 28.1293 -81.0176 +US 33401 West Palm Beach Florida FL Palm Beach 099 26.7165 -80.0679 +US 33402 West Palm Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33403 West Palm Beach Florida FL Palm Beach 099 26.8035 -80.0756 +US 33404 West Palm Beach Florida FL Palm Beach 099 26.7832 -80.0638 +US 33405 West Palm Beach Florida FL Palm Beach 099 26.67 -80.0582 +US 33406 West Palm Beach Florida FL Palm Beach 099 26.6396 -80.0827 +US 33407 West Palm Beach Florida FL Palm Beach 099 26.7492 -80.0725 +US 33408 North Palm Beach Florida FL Palm Beach 099 26.8289 -80.0603 +US 33409 West Palm Beach Florida FL Palm Beach 099 26.7162 -80.0965 +US 33410 West Palm Beach Florida FL Palm Beach 099 26.8467 -80.088 +US 33411 West Palm Beach Florida FL Palm Beach 099 26.6644 -80.1741 +US 33412 West Palm Beach Florida FL Palm Beach 099 26.8055 -80.2482 +US 33413 West Palm Beach Florida FL Palm Beach 099 26.6555 -80.1596 +US 33414 West Palm Beach Florida FL Palm Beach 099 26.6627 -80.253 +US 33415 West Palm Beach Florida FL Palm Beach 099 26.656 -80.126 +US 33416 West Palm Beach Florida FL Palm Beach 099 26.6654 -80.0929 +US 33417 West Palm Beach Florida FL Palm Beach 099 26.7197 -80.1248 +US 33418 West Palm Beach Florida FL Palm Beach 099 26.8607 -80.1669 +US 33419 West Palm Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33420 West Palm Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33421 West Palm Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33422 West Palm Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33424 Boynton Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33425 Boynton Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33426 Boynton Beach Florida FL Palm Beach 099 26.5175 -80.0834 +US 33427 Boca Raton Florida FL Palm Beach 099 26.376 -80.1072 +US 33428 Boca Raton Florida FL Palm Beach 099 26.3446 -80.2109 +US 33429 Boca Raton Florida FL Palm Beach 099 26.6459 -80.4303 +US 33430 Belle Glade Florida FL Palm Beach 099 26.6843 -80.6724 +US 33431 Boca Raton Florida FL Palm Beach 099 26.3799 -80.0975 +US 33432 Boca Raton Florida FL Palm Beach 099 26.3462 -80.0844 +US 33433 Boca Raton Florida FL Palm Beach 099 26.3464 -80.1564 +US 33434 Boca Raton Florida FL Palm Beach 099 26.3839 -80.1749 +US 33435 Boynton Beach Florida FL Palm Beach 099 26.5254 -80.061 +US 33436 Boynton Beach Florida FL Palm Beach 099 26.5354 -80.1124 +US 33437 Boynton Beach Florida FL Palm Beach 099 26.5312 -80.1418 +US 33438 Canal Point Florida FL Palm Beach 099 26.8593 -80.6299 +US 33439 Bryant Florida FL Palm Beach 099 26.6459 -80.4303 +US 33444 Delray Beach Florida FL Palm Beach 099 26.4564 -80.0793 +US 33445 Delray Beach Florida FL Palm Beach 099 26.4564 -80.1054 +US 33446 Delray Beach Florida FL Palm Beach 099 26.4517 -80.158 +US 33447 Delray Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33448 Delray Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33449 Lake Worth Florida FL Palm Beach County 099 26.6048 -80.2149 +US 33454 Lake Worth Florida FL Palm Beach 099 26.6459 -80.4303 +US 33458 Jupiter Florida FL Palm Beach 099 26.9339 -80.1201 +US 33459 Lake Harbor Florida FL Palm Beach 099 26.6459 -80.4303 +US 33460 Lake Worth Florida FL Palm Beach 099 26.6182 -80.056 +US 33461 Lake Worth Florida FL Palm Beach 099 26.6232 -80.0946 +US 33462 Lake Worth Florida FL Palm Beach 099 26.5747 -80.0794 +US 33463 Lake Worth Florida FL Palm Beach 099 26.5955 -80.1291 +US 33464 Lake Worth Florida FL Palm Beach 099 26.6459 -80.4303 +US 33465 Lake Worth Florida FL Palm Beach 099 26.6283 -80.1326 +US 33466 Lake Worth Florida FL Palm Beach 099 26.6459 -80.4303 +US 33467 Lake Worth Florida FL Palm Beach 099 26.6104 -80.1683 +US 33468 Jupiter Florida FL Palm Beach 099 26.6459 -80.4303 +US 33469 Jupiter Florida FL Palm Beach 099 26.9831 -80.108 +US 33470 Loxahatchee Florida FL Palm Beach 099 26.7383 -80.276 +US 33472 Boynton Beach Florida FL Palm Beach County 099 26.5384 -80.1856 +US 33473 Boynton Beach Florida FL Palm Beach County 099 26.5088 -80.1896 +US 33474 Boynton Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33476 Pahokee Florida FL Palm Beach 099 26.8142 -80.6629 +US 33477 Jupiter Florida FL Palm Beach 099 26.9217 -80.077 +US 33478 Jupiter Florida FL Palm Beach 099 26.9212 -80.2144 +US 33480 Palm Beach Florida FL Palm Beach 099 26.7206 -80.0388 +US 33481 Boca Raton Florida FL Palm Beach 099 26.6459 -80.4303 +US 33482 Delray Beach Florida FL Palm Beach 099 26.6459 -80.4303 +US 33483 Delray Beach Florida FL Palm Beach 099 26.4546 -80.0656 +US 33484 Delray Beach Florida FL Palm Beach 099 26.4543 -80.1346 +US 33486 Boca Raton Florida FL Palm Beach 099 26.3481 -80.1104 +US 33487 Boca Raton Florida FL Palm Beach 099 26.4116 -80.0928 +US 33488 Boca Raton Florida FL Palm Beach 099 26.6459 -80.4303 +US 33493 South Bay Florida FL Palm Beach 099 26.6701 -80.7312 +US 33496 Boca Raton Florida FL Palm Beach 099 26.403 -80.1813 +US 33497 Boca Raton Florida FL Palm Beach 099 26.6459 -80.4303 +US 33498 Boca Raton Florida FL Palm Beach 099 26.3907 -80.2161 +US 33499 Boca Raton Florida FL Palm Beach 099 26.6459 -80.4303 +US 33523 Dade City Florida FL Pasco 101 28.4247 -82.2185 +US 33524 Crystal Springs Florida FL Pasco 101 28.1822 -82.1523 +US 33525 Dade City Florida FL Pasco 101 28.3318 -82.2446 +US 33526 Dade City Florida FL Pasco 101 28.3101 -82.2478 +US 33537 Lacoochee Florida FL Pasco 101 28.3248 -82.4818 +US 33539 Zephyrhills Florida FL Pasco 101 28.213 -82.1657 +US 33540 Zephyrhills Florida FL Pasco 101 28.2151 -82.1506 +US 33541 Zephyrhills Florida FL Pasco 101 28.2311 -82.2057 +US 33542 Zephyrhills Florida FL Pasco County 101 28.2303 -82.1779 +US 33543 Zephyrhills Florida FL Pasco 101 28.2059 -82.3063 +US 33544 Zephyrhills Florida FL Pasco 101 28.2637 -82.3493 +US 33545 Wesley Chapel Florida FL Pasco County 101 28.2697 -82.2903 +US 33559 Lutz Florida FL Pasco 101 28.1801 -82.4169 +US 33574 Saint Leo Florida FL Pasco 101 28.3348 -82.2693 +US 33576 San Antonio Florida FL Pasco 101 28.3371 -82.2882 +US 33578 Riverview Florida FL Pasco County 101 27.8633 -82.3499 +US 33593 Trilby Florida FL Pasco 101 28.3248 -82.4818 +US 34610 Spring Hill Florida FL Pasco 101 28.4079 -82.5398 +US 34610 Brooksville Florida FL Pasco 101 28.3775 -82.5241 +US 34637 Land O Lakes Florida FL Pasco County 101 28.2782 -82.4625 +US 34638 Land O Lakes Florida FL Pasco County 101 28.2478 -82.4962 +US 34639 Land O Lakes Florida FL Pasco 101 28.2258 -82.4547 +US 34652 New Port Richey Florida FL Pasco 101 28.2326 -82.7327 +US 34653 New Port Richey Florida FL Pasco 101 28.2444 -82.6986 +US 34654 New Port Richey Florida FL Pasco 101 28.3022 -82.6264 +US 34655 New Port Richey Florida FL Pasco 101 28.2129 -82.6807 +US 34656 New Port Richey Florida FL Pasco 101 28.3248 -82.4818 +US 34667 Hudson Florida FL Pasco 101 28.3648 -82.6757 +US 34668 Port Richey Florida FL Pasco 101 28.3011 -82.6927 +US 34669 Hudson Florida FL Pasco 101 28.3506 -82.6288 +US 34673 Port Richey Florida FL Pasco 101 28.3248 -82.4818 +US 34674 Hudson Florida FL Pasco 101 28.3248 -82.4818 +US 34679 Aripeka Florida FL Pasco 101 28.4302 -82.6616 +US 34680 Elfers Florida FL Pasco 101 28.3248 -82.4818 +US 34690 Holiday Florida FL Pasco 101 28.1913 -82.7279 +US 34691 Holiday Florida FL Pasco 101 28.1913 -82.756 +US 34692 Holiday Florida FL Pasco County 101 28.188 -82.7346 +US 33504 Bay Pines Florida FL Pinellas County 103 27.8137 -82.7782 +US 33701 Saint Petersburg Florida FL Pinellas 103 27.7723 -82.6386 +US 33702 Saint Petersburg Florida FL Pinellas 103 27.8427 -82.6448 +US 33703 Saint Petersburg Florida FL Pinellas 103 27.817 -82.6264 +US 33704 Saint Petersburg Florida FL Pinellas 103 27.7954 -82.6373 +US 33705 Saint Petersburg Florida FL Pinellas 103 27.7391 -82.6435 +US 33706 Saint Petersburg Florida FL Pinellas 103 27.7456 -82.7516 +US 33707 Saint Petersburg Florida FL Pinellas 103 27.7549 -82.7208 +US 33708 Saint Petersburg Florida FL Pinellas 103 27.8116 -82.8014 +US 33709 Saint Petersburg Florida FL Pinellas 103 27.8201 -82.7308 +US 33710 Saint Petersburg Florida FL Pinellas 103 27.7898 -82.7243 +US 33711 Saint Petersburg Florida FL Pinellas 103 27.7465 -82.6897 +US 33712 Saint Petersburg Florida FL Pinellas 103 27.7353 -82.6663 +US 33713 Saint Petersburg Florida FL Pinellas 103 27.789 -82.6779 +US 33714 Saint Petersburg Florida FL Pinellas 103 27.8176 -82.6776 +US 33715 Saint Petersburg Florida FL Pinellas 103 27.6705 -82.7119 +US 33716 Saint Petersburg Florida FL Pinellas 103 27.8738 -82.64 +US 33728 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33729 Saint Petersburg Florida FL Pinellas 103 27.8819 -82.6644 +US 33730 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33731 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33732 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33733 Saint Petersburg Florida FL Pinellas 103 27.9258 -82.7521 +US 33734 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33736 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33737 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33738 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33739 Saint Petersburg Florida FL Pinellas County 103 27.733 -82.6405 +US 33740 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33741 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33742 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33743 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33744 Bay Pines Florida FL Pinellas 103 27.8918 -82.7248 +US 33747 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33755 Clearwater Florida FL Pinellas 103 27.9781 -82.7815 +US 33756 Clearwater Florida FL Pinellas 103 27.947 -82.7943 +US 33757 Clearwater Florida FL Pinellas 103 27.8918 -82.7248 +US 33758 Clearwater Florida FL Pinellas 103 27.8918 -82.7248 +US 33759 Clearwater Florida FL Pinellas 103 27.975 -82.7019 +US 33760 Clearwater Florida FL Pinellas 103 27.9004 -82.7152 +US 33761 Clearwater Florida FL Pinellas 103 28.031 -82.7239 +US 33762 Clearwater Florida FL Pinellas 103 27.8942 -82.6746 +US 33763 Clearwater Florida FL Pinellas 103 28.0173 -82.7461 +US 33764 Clearwater Florida FL Pinellas 103 27.916 -82.7343 +US 33765 Clearwater Florida FL Pinellas 103 27.9902 -82.7433 +US 33766 Clearwater Florida FL Pinellas 103 27.8918 -82.7248 +US 33767 Clearwater Beach Florida FL Pinellas 103 27.9598 -82.8286 +US 33769 Clearwater Florida FL Pinellas 103 27.8918 -82.7248 +US 33770 Largo Florida FL Pinellas 103 27.917 -82.8027 +US 33771 Largo Florida FL Pinellas 103 27.9085 -82.7568 +US 33772 Seminole Florida FL Pinellas 103 27.8466 -82.7954 +US 33773 Largo Florida FL Pinellas 103 27.8802 -82.7534 +US 33774 Largo Florida FL Pinellas 103 27.8839 -82.8265 +US 33775 Seminole Florida FL Pinellas 103 27.8918 -82.7248 +US 33776 Seminole Florida FL Pinellas 103 27.8505 -82.8263 +US 33777 Largo Florida FL Pinellas 103 27.8546 -82.7545 +US 33777 Seminole Florida FL Pinellas 103 27.8688 -82.7344 +US 33778 Largo Florida FL Pinellas 103 27.884 -82.8025 +US 33779 Largo Florida FL Pinellas 103 27.8397 -82.7725 +US 33780 Pinellas Park Florida FL Pinellas 103 27.8918 -82.7248 +US 33781 Pinellas Park Florida FL Pinellas 103 27.8387 -82.7151 +US 33782 Pinellas Park Florida FL Pinellas 103 27.8681 -82.7086 +US 33784 Saint Petersburg Florida FL Pinellas 103 27.8918 -82.7248 +US 33785 Indian Rocks Beach Florida FL Pinellas 103 27.8868 -82.8435 +US 33786 Belleair Beach Florida FL Pinellas 103 27.9229 -82.8393 +US 34615 Clearwater Florida FL Pinellas County 103 27.9843 -82.7813 +US 34616 Clearwater Florida FL Pinellas County 103 27.945 -82.787 +US 34617 Clearwater Florida FL Pinellas County 103 27.9658 -82.7979 +US 34618 Clearwater Florida FL Pinellas County 103 27.9654 -82.8001 +US 34619 Clearwater Florida FL Pinellas County 103 27.977 -82.7164 +US 34620 Clearwater Florida FL Pinellas County 103 27.9139 -82.7157 +US 34621 Clearwater Florida FL Pinellas County 103 28.0292 -82.7239 +US 34622 Clearwater Florida FL Pinellas County 103 27.8884 -82.6845 +US 34624 Clearwater Florida FL Pinellas County 103 27.9375 -82.744 +US 34625 Clearwater Florida FL Pinellas County 103 27.973 -82.7463 +US 34629 Clearwater Florida FL Pinellas County 103 27.9654 -82.8001 +US 34630 Clearwater Florida FL Pinellas County 103 27.9845 -82.8233 +US 34634 Belleair Beach Florida FL Pinellas County 103 27.8825 -82.8496 +US 34635 Indian Rocks Beach Florida FL Pinellas County 103 27.8982 -82.8449 +US 34640 Largo Florida FL Pinellas County 103 27.916 -82.8014 +US 34641 Largo Florida FL Pinellas County 103 27.9083 -82.7585 +US 34642 Seminole Florida FL Pinellas County 103 27.8444 -82.7963 +US 34643 Largo Florida FL Pinellas County 103 27.881 -82.7619 +US 34644 Largo Florida FL Pinellas County 103 27.8832 -82.8264 +US 34645 Seminole Florida FL Pinellas County 103 27.8578 -82.7951 +US 34646 Seminole Florida FL Pinellas County 103 27.8529 -82.8272 +US 34647 Largo Florida FL Pinellas County 103 27.8532 -82.7597 +US 34648 Largo Florida FL Pinellas County 103 27.8839 -82.7958 +US 34649 Largo Florida FL Pinellas County 103 27.909 -82.7874 +US 34660 Ozona Florida FL Pinellas 103 28.067 -82.7784 +US 34664 Pinellas Park Florida FL Pinellas County 103 27.8425 -82.7054 +US 34665 Pinellas Park Florida FL Pinellas County 103 27.8402 -82.7125 +US 34666 Pinellas Park Florida FL Pinellas County 103 27.8609 -82.7094 +US 34677 Oldsmar Florida FL Pinellas 103 28.046 -82.6848 +US 34681 Crystal Beach Florida FL Pinellas 103 28.0874 -82.7777 +US 34682 Palm Harbor Florida FL Pinellas 103 27.8918 -82.7248 +US 34683 Palm Harbor Florida FL Pinellas 103 28.0662 -82.7585 +US 34684 Palm Harbor Florida FL Pinellas 103 28.0848 -82.7253 +US 34685 Palm Harbor Florida FL Pinellas 103 28.0967 -82.6964 +US 34688 Tarpon Springs Florida FL Pinellas 103 28.1458 -82.6825 +US 34689 Tarpon Springs Florida FL Pinellas 103 28.1385 -82.743 +US 34695 Safety Harbor Florida FL Pinellas 103 28.0096 -82.6967 +US 34697 Dunedin Florida FL Pinellas 103 27.8918 -82.7248 +US 34698 Dunedin Florida FL Pinellas 103 28.0284 -82.7794 +US 33801 Lakeland Florida FL Polk 105 28.0381 -81.9392 +US 33802 Lakeland Florida FL Polk 105 28.021 -81.9852 +US 33803 Lakeland Florida FL Polk 105 28.014 -81.9523 +US 33804 Lakeland Florida FL Polk 105 28.0026 -81.6186 +US 33805 Lakeland Florida FL Polk 105 28.072 -81.9609 +US 33806 Lakeland Florida FL Polk 105 28.0026 -81.6186 +US 33807 Lakeland Florida FL Polk 105 28.0026 -81.6186 +US 33809 Lakeland Florida FL Polk 105 28.1762 -81.9591 +US 33810 Lakeland Florida FL Polk 105 28.1479 -82.0372 +US 33811 Lakeland Florida FL Polk 105 27.9865 -82.0139 +US 33812 Lakeland Florida FL Polk County 105 27.9729 -81.8931 +US 33813 Lakeland Florida FL Polk 105 27.9611 -81.9398 +US 33815 Lakeland Florida FL Polk 105 28.0496 -82.0069 +US 33820 Alturas Florida FL Polk 105 28.0026 -81.6186 +US 33823 Auburndale Florida FL Polk 105 28.0724 -81.8122 +US 33827 Babson Park Florida FL Polk 105 27.8163 -81.5139 +US 33830 Bartow Florida FL Polk 105 27.8957 -81.8127 +US 33831 Bartow Florida FL Polk 105 27.9554 -81.9517 +US 33835 Bradley Florida FL Polk 105 27.6993 -81.9494 +US 33836 Davenport Florida FL Polk 105 28.1672 -81.6316 +US 33837 Davenport Florida FL Polk 105 28.1963 -81.6079 +US 33838 Dundee Florida FL Polk 105 28.0194 -81.6212 +US 33839 Eagle Lake Florida FL Polk 105 27.9787 -81.7564 +US 33840 Eaton Park Florida FL Polk 105 28.0844 -81.5415 +US 33841 Fort Meade Florida FL Polk 105 27.7464 -81.7823 +US 33843 Frostproof Florida FL Polk 105 27.7211 -81.5148 +US 33844 Haines City Florida FL Polk 105 28.0758 -81.5929 +US 33845 Haines City Florida FL Polk 105 28.0026 -81.6186 +US 33846 Highland City Florida FL Polk 105 27.9647 -81.8672 +US 33847 Homeland Florida FL Polk 105 27.9841 -81.7167 +US 33849 Kathleen Florida FL Polk 105 28.1975 -82.0396 +US 33850 Lake Alfred Florida FL Polk 105 28.0895 -81.7271 +US 33851 Lake Hamilton Florida FL Polk 105 28.0369 -81.628 +US 33853 Lake Wales Florida FL Polk 105 27.9002 -81.5847 +US 33854 Fedhaven Florida FL Polk 105 28.0026 -81.6186 +US 33855 Indian Lake Estates Florida FL Polk 105 27.798 -81.3572 +US 33856 Nalcrest Florida FL Polk 105 27.8557 -81.4309 +US 33858 Loughman Florida FL Polk 105 28.0501 -81.5052 +US 33859 Lake Wales Florida FL Polk 105 27.8774 -81.6221 +US 33860 Mulberry Florida FL Polk 105 27.902 -82.0015 +US 33863 Nichols Florida FL Polk 105 28.0026 -81.6186 +US 33867 River Ranch Florida FL Polk 105 27.7686 -81.1966 +US 33868 Polk City Florida FL Polk 105 28.1987 -81.8083 +US 33877 Waverly Florida FL Polk 105 27.9769 -81.6144 +US 33880 Winter Haven Florida FL Polk 105 27.9873 -81.7625 +US 33881 Winter Haven Florida FL Polk 105 28.0452 -81.7325 +US 33882 Winter Haven Florida FL Polk 105 28.0294 -81.7321 +US 33883 Winter Haven Florida FL Polk 105 28.0026 -81.6186 +US 33884 Winter Haven Florida FL Polk 105 27.981 -81.6736 +US 33885 Winter Haven Florida FL Polk 105 28.0026 -81.6186 +US 33888 Winter Haven Florida FL Polk 105 28.0231 -81.7234 +US 33896 Davenport Florida FL Polk 105 28.2531 -81.6509 +US 33897 Davenport Florida FL Polk 105 28.3112 -81.6643 +US 33898 Lake Wales Florida FL Polk 105 27.8643 -81.5719 +US 33937 Marco Island Florida FL Polk County 105 25.9397 -81.7194 +US 33967 Fort Myers Florida FL Polk County 105 26.4722 -81.8122 +US 34714 Clermont Florida FL Polk County 105 28.4113 -81.7812 +US 34759 Kissimmee Florida FL Polk 105 28.0946 -81.499 +US 32007 Bostwick Florida FL Putnam 107 29.7996 -81.6273 +US 32112 Crescent City Florida FL Putnam 107 29.4272 -81.5579 +US 32131 East Palatka Florida FL Putnam 107 29.6609 -81.5879 +US 32138 Grandin Florida FL Putnam 107 29.6993 -81.9224 +US 32139 Georgetown Florida FL Putnam 107 29.3842 -81.6183 +US 32140 Florahome Florida FL Putnam 107 29.7581 -81.8622 +US 32147 Hollister Florida FL Putnam 107 29.6576 -81.7797 +US 32148 Interlachen Florida FL Putnam 107 29.627 -81.8894 +US 32149 Interlachen Florida FL Putnam 107 29.582 -81.7449 +US 32157 Lake Como Florida FL Putnam 107 29.4582 -81.5914 +US 32177 Palatka Florida FL Putnam 107 29.6577 -81.6595 +US 32178 Palatka Florida FL Putnam 107 29.6443 -81.6686 +US 32181 Pomona Park Florida FL Putnam 107 29.5021 -81.6307 +US 32185 Putnam Hall Florida FL Putnam 107 29.7368 -81.958 +US 32187 San Mateo Florida FL Putnam 107 29.5888 -81.5921 +US 32189 Satsuma Florida FL Putnam 107 29.5594 -81.6406 +US 32193 Welaka Florida FL Putnam 107 29.4905 -81.653 +US 32666 Melrose Florida FL Putnam 107 29.7325 -82.0279 +US 33112 Miami Florida FL Putnam County 107 25.7964 -80.3849 +US 32004 Ponte Vedra Beach Florida FL St. Johns 109 29.9377 -81.4206 +US 32033 Elkton Florida FL St. Johns 109 29.7882 -81.462 +US 32080 Saint Augustine Florida FL St. Johns 109 29.7964 -81.2649 +US 32081 Ponte Vedra Florida FL Saint Johns County 109 30.1204 -81.4128 +US 32082 Ponte Vedra Beach Florida FL St. Johns 109 30.1223 -81.3627 +US 32084 Saint Augustine Florida FL St. Johns 109 29.9175 -81.3668 +US 32085 Saint Augustine Florida FL St. Johns 109 29.9377 -81.4206 +US 32086 Saint Augustine Florida FL St. Johns 109 29.8285 -81.3237 +US 32092 Saint Augustine Florida FL St. Johns 109 29.9475 -81.5264 +US 32095 Saint Augustine Florida FL St. Johns 109 30.011 -81.4108 +US 32145 Hastings Florida FL St. Johns 109 29.7051 -81.4909 +US 32259 Jacksonville Florida FL St. Johns 109 30.0956 -81.6217 +US 32260 Jacksonville Florida FL St. Johns 109 29.9377 -81.4206 +US 34945 Fort Pierce Florida FL St. Lucie 111 27.4382 -80.444 +US 34946 Fort Pierce Florida FL St. Lucie 111 27.5008 -80.36 +US 34947 Fort Pierce Florida FL St. Lucie 111 27.4493 -80.3592 +US 34948 Fort Pierce Florida FL St. Lucie 111 27.3822 -80.409 +US 34949 Fort Pierce Florida FL St. Lucie 111 27.3896 -80.2615 +US 34950 Fort Pierce Florida FL St. Lucie 111 27.4486 -80.3385 +US 34951 Fort Pierce Florida FL St. Lucie 111 27.5391 -80.4052 +US 34952 Port Saint Lucie Florida FL St. Lucie 111 27.2889 -80.298 +US 34953 Port Saint Lucie Florida FL St. Lucie 111 27.2625 -80.3793 +US 34954 Fort Pierce Florida FL St. Lucie 111 27.3822 -80.409 +US 34979 Fort Pierce Florida FL St. Lucie 111 27.3822 -80.409 +US 34981 Fort Pierce Florida FL St. Lucie 111 27.4049 -80.3623 +US 34982 Fort Pierce Florida FL St. Lucie 111 27.3908 -80.3246 +US 34983 Port Saint Lucie Florida FL St. Lucie 111 27.3094 -80.345 +US 34984 Port Saint Lucie Florida FL St. Lucie 111 27.2655 -80.3389 +US 34985 Port Saint Lucie Florida FL St. Lucie 111 27.3822 -80.409 +US 34986 Port Saint Lucie Florida FL St. Lucie 111 27.3215 -80.403 +US 34987 Port Saint Lucie Florida FL St. Lucie 111 27.2606 -80.4771 +US 34988 Port Saint Lucie Florida FL St. Lucie 111 27.3868 -80.5037 +US 32530 Bagdad Florida FL Santa Rosa 113 30.5986 -87.0315 +US 32561 Gulf Breeze Florida FL Santa Rosa 113 30.3847 -87.0439 +US 32562 Gulf Breeze Florida FL Santa Rosa 113 30.6592 -87.0497 +US 32563 Harold Florida FL Santa Rosa 113 30.3962 -87.0274 +US 32563 Gulf Breeze Florida FL Santa Rosa 113 30.3962 -87.0274 +US 32565 Jay Florida FL Santa Rosa 113 30.8985 -87.1332 +US 32566 Gulf Breeze Florida FL Santa Rosa 113 30.4277 -86.9271 +US 32566 Navarre Florida FL Santa Rosa 113 30.4212 -86.8926 +US 32570 Milton Florida FL Santa Rosa 113 30.6604 -87.0473 +US 32571 Milton Florida FL Santa Rosa 113 30.6698 -87.1794 +US 32572 Milton Florida FL Santa Rosa 113 30.6592 -87.0497 +US 32583 Milton Florida FL Santa Rosa 113 30.5761 -87.0663 +US 34223 Englewood Florida FL Sarasota 115 26.9667 -82.3599 +US 34224 Englewood Florida FL Sarasota 115 26.92 -82.3048 +US 34229 Osprey Florida FL Sarasota 115 27.1838 -82.4853 +US 34230 Sarasota Florida FL Sarasota 115 27.335 -82.5372 +US 34231 Sarasota Florida FL Sarasota 115 27.2666 -82.5163 +US 34232 Sarasota Florida FL Sarasota 115 27.3262 -82.4724 +US 34233 Sarasota Florida FL Sarasota 115 27.2866 -82.477 +US 34234 Sarasota Florida FL Sarasota 115 27.3688 -82.5268 +US 34235 Sarasota Florida FL Sarasota 115 27.3672 -82.4848 +US 34236 Sarasota Florida FL Sarasota 115 27.3269 -82.5433 +US 34237 Sarasota Florida FL Sarasota 115 27.3369 -82.5128 +US 34238 Sarasota Florida FL Sarasota 115 27.2427 -82.4751 +US 34239 Sarasota Florida FL Sarasota 115 27.3111 -82.5195 +US 34240 Sarasota Florida FL Sarasota 115 27.339 -82.3473 +US 34241 Sarasota Florida FL Sarasota 115 27.2822 -82.4181 +US 34242 Sarasota Florida FL Sarasota 115 27.2566 -82.5398 +US 34272 Laurel Florida FL Sarasota 115 27.147 -82.4255 +US 34274 Nokomis Florida FL Sarasota 115 27.144 -82.4645 +US 34275 Nokomis Florida FL Sarasota 115 27.1384 -82.4518 +US 34276 Sarasota Florida FL Sarasota 115 27.1675 -82.381 +US 34277 Sarasota Florida FL Sarasota 115 27.1675 -82.381 +US 34278 Sarasota Florida FL Sarasota 115 27.3316 -82.5285 +US 34284 Venice Florida FL Sarasota 115 27.1675 -82.381 +US 34285 Venice Florida FL Sarasota 115 27.0933 -82.4498 +US 34286 North Port Florida FL Sarasota 115 27.0748 -82.1756 +US 34287 North Port Florida FL Sarasota 115 27.0478 -82.2416 +US 34288 North Port Florida FL Sarasota 115 27.0498 -82.1288 +US 34289 North Port Florida FL Sarasota 115 27.0808 -82.1516 +US 34290 North Port Florida FL Sarasota County 115 27.0459 -82.2491 +US 34291 North Port Florida FL Sarasota County 115 27.0997 -82.2095 +US 34292 Venice Florida FL Sarasota 115 27.09 -82.37 +US 34293 Venice Florida FL Sarasota 115 27.0606 -82.352 +US 34295 Englewood Florida FL Sarasota 115 27.086 -82.4389 +US 32701 Altamonte Springs Florida FL Seminole 117 28.6666 -81.365 +US 32707 Casselberry Florida FL Seminole 117 28.6617 -81.3122 +US 32708 Winter Springs Florida FL Seminole 117 28.6831 -81.2814 +US 32714 Altamonte Springs Florida FL Seminole 117 28.6625 -81.4117 +US 32715 Altamonte Springs Florida FL Seminole 117 28.7448 -81.2233 +US 32716 Altamonte Springs Florida FL Seminole 117 28.7448 -81.2233 +US 32717 Altamonte Springs Florida FL Seminole County 117 28.6659 -81.4027 +US 32718 Casselberry Florida FL Seminole 117 28.7448 -81.2233 +US 32719 Winter Springs Florida FL Seminole 117 28.7448 -81.2233 +US 32730 Casselberry Florida FL Seminole 117 28.6513 -81.3418 +US 32732 Geneva Florida FL Seminole 117 28.7503 -81.1114 +US 32733 Goldenrod Florida FL Seminole 117 28.6133 -81.2581 +US 32746 Lake Mary Florida FL Seminole 117 28.7577 -81.3508 +US 32747 Lake Monroe Florida FL Seminole 117 28.8272 -81.3329 +US 32750 Longwood Florida FL Seminole 117 28.712 -81.3552 +US 32752 Longwood Florida FL Seminole 117 28.7448 -81.2233 +US 32762 Oviedo Florida FL Seminole 117 28.7448 -81.2233 +US 32765 Oviedo Florida FL Seminole 117 28.6513 -81.2066 +US 32766 Oviedo Florida FL Seminole 117 28.6607 -81.1134 +US 32771 Sanford Florida FL Seminole 117 28.8013 -81.285 +US 32772 Sanford Florida FL Seminole 117 28.8072 -81.2502 +US 32773 Sanford Florida FL Seminole 117 28.7644 -81.282 +US 32779 Longwood Florida FL Seminole 117 28.7168 -81.4126 +US 32791 Longwood Florida FL Seminole 117 28.7448 -81.2233 +US 32795 Lake Mary Florida FL Seminole 117 28.7448 -81.2233 +US 32799 Mid Florida Florida FL Seminole 117 28.7448 -81.2233 +US 32162 Lady Lake Florida FL Sumter 119 28.9471 -81.9971 +US 32163 The Villages Florida FL Sumter County 119 28.9338 -81.9914 +US 33513 Bushnell Florida FL Sumter 119 28.6611 -82.1553 +US 33514 Center Hill Florida FL Sumter 119 28.6635 -81.9963 +US 33521 Coleman Florida FL Sumter 119 28.7755 -82.0597 +US 33538 Lake Panasoffkee Florida FL Sumter 119 28.7953 -82.1363 +US 33585 Sumterville Florida FL Sumter 119 28.7356 -82.0616 +US 33597 Webster Florida FL Sumter 119 28.549 -82.0805 +US 34484 Oxford Florida FL Sumter 119 28.9059 -82.0612 +US 34785 Wildwood Florida FL Sumter 119 28.8454 -82.0347 +US 32008 Branford Florida FL Suwannee 121 29.9395 -82.8993 +US 32060 Live Oak Florida FL Suwannee 121 30.1759 -83.0304 +US 32062 Mc Alpin Florida FL Suwannee 121 30.1509 -82.9662 +US 32064 Live Oak Florida FL Suwannee 121 30.2956 -82.9844 +US 32071 O Brien Florida FL Suwannee 121 30.0381 -82.93 +US 32094 Wellborn Florida FL Suwannee 121 30.1796 -82.8505 +US 32347 Perry Florida FL Taylor 123 30.1668 -83.616 +US 32348 Perry Florida FL Taylor 123 29.9665 -83.6594 +US 32356 Salem Florida FL Taylor 123 29.8539 -83.4421 +US 32357 Shady Grove Florida FL Taylor 123 30.2147 -83.7111 +US 32359 Steinhatchee Florida FL Taylor 123 29.6739 -83.3723 +US 32026 Raiford Florida FL Union County 125 30.0699 -82.1927 +US 32054 Lake Butler Florida FL Union 125 30.0035 -82.3828 +US 32083 Raiford Florida FL Union 125 30.0704 -82.2001 +US 32697 Worthington Springs Florida FL Union 125 29.9315 -82.4255 +US 32105 Barberville Florida FL Volusia 127 29.2005 -81.4065 +US 32114 Daytona Beach Florida FL Volusia 127 29.2012 -81.0371 +US 32115 Daytona Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32116 Daytona Beach Florida FL Volusia 127 29.1091 -80.9843 +US 32117 Daytona Beach Florida FL Volusia 127 29.2353 -81.0658 +US 32118 Daytona Beach Florida FL Volusia 127 29.2219 -81.0095 +US 32119 Daytona Beach Florida FL Volusia 127 29.16 -81.0269 +US 32120 Daytona Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32121 Daytona Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32122 Daytona Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32123 Daytona Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32124 Daytona Beach Florida FL Volusia 127 29.1419 -81.1402 +US 32125 Daytona Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32126 Daytona Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32127 Daytona Beach Florida FL Volusia 127 29.1135 -80.9765 +US 32128 Daytona Beach Florida FL Volusia 127 29.0838 -81.0336 +US 32129 Port Orange Florida FL Volusia 127 29.1372 -81.0241 +US 32130 De Leon Springs Florida FL Volusia 127 29.1166 -81.3488 +US 32132 Edgewater Florida FL Volusia 127 28.9818 -80.9103 +US 32141 Edgewater Florida FL Volusia 127 28.9455 -80.8969 +US 32168 New Smyrna Beach Florida FL Volusia 127 29.0247 -80.9584 +US 32169 New Smyrna Beach Florida FL Volusia 127 29.0172 -80.8885 +US 32170 New Smyrna Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32173 Ormond Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32174 Ormond Beach Florida FL Volusia 127 29.2833 -81.0882 +US 32175 Ormond Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32176 Ormond Beach Florida FL Volusia 127 29.3222 -81.0584 +US 32180 Pierson Florida FL Volusia 127 29.2226 -81.4353 +US 32190 Seville Florida FL Volusia 127 29.3201 -81.5279 +US 32198 Daytona Beach Florida FL Volusia 127 29.0227 -81.1722 +US 32706 Cassadaga Florida FL Volusia 127 28.9664 -81.2371 +US 32713 Debary Florida FL Volusia 127 28.8846 -81.3065 +US 32720 Deland Florida FL Volusia 127 29.0266 -81.3349 +US 32721 Deland Florida FL Volusia 127 28.9973 -81.2995 +US 32722 Glenwood Florida FL Volusia 127 29.0227 -81.1722 +US 32723 Deland Florida FL Volusia County 127 29.0275 -81.3068 +US 32724 Deland Florida FL Volusia 127 29.0422 -81.2863 +US 32725 Deltona Florida FL Volusia 127 28.8989 -81.2473 +US 32728 Deltona Florida FL Volusia 127 29.0227 -81.1722 +US 32738 Deltona Florida FL Volusia 127 28.9093 -81.1922 +US 32739 Deltona Florida FL Volusia 127 29.0227 -81.1722 +US 32744 Lake Helen Florida FL Volusia 127 28.9806 -81.2334 +US 32745 Mid Florida Florida FL Volusia County 127 28.7676 -81.3522 +US 32759 Oak Hill Florida FL Volusia 127 28.87 -80.8551 +US 32763 Orange City Florida FL Volusia 127 28.9453 -81.2995 +US 32764 Osteen Florida FL Volusia 127 28.8426 -81.1562 +US 32774 Orange City Florida FL Volusia 127 29.0227 -81.1722 +US 32305 Wakulla Springs Florida FL Wakulla 129 30.334 -84.287 +US 32326 Crawfordville Florida FL Wakulla 129 30.1834 -84.3491 +US 32327 Crawfordville Florida FL Wakulla 129 30.2108 -84.3205 +US 32346 Panacea Florida FL Wakulla 129 30.0153 -84.3912 +US 32355 Saint Marks Florida FL Wakulla 129 30.1631 -84.2083 +US 32358 Sopchoppy Florida FL Wakulla 129 30.0714 -84.4549 +US 32422 Argyle Florida FL Walton 131 30.7056 -86.0314 +US 32433 Defuniak Springs Florida FL Walton 131 30.8494 -86.2023 +US 32434 Mossy Head Florida FL Walton 131 30.7625 -86.3427 +US 32435 Defuniak Springs Florida FL Walton 131 30.6038 -86.1211 +US 32439 Freeport Florida FL Walton 131 30.4896 -86.1684 +US 32454 Point Washington Florida FL Walton 131 30.6038 -86.1211 +US 32459 Santa Rosa Beach Florida FL Walton 131 30.3659 -86.2458 +US 32538 Paxton Florida FL Walton 131 30.9709 -86.3111 +US 32550 Miramar Beach Florida FL Walton 131 30.385 -86.3473 +US 32427 Caryville Florida FL Washington 133 30.7123 -85.8014 +US 32428 Chipley Florida FL Washington 133 30.7107 -85.5486 +US 32437 Ebro Florida FL Washington 133 30.4352 -85.8881 +US 32462 Vernon Florida FL Washington 133 30.6267 -85.7553 +US 32463 Wausau Florida FL Washington 133 30.6391 -85.5879 +US 96941 Pohnpei FM 002 7.1383 151.5031 +US 96942 Chuuk FM 002 7.1383 151.5031 +US 96943 Yap FM 002 7.1383 151.5031 +US 96944 Kosrae FM 002 7.1383 151.5031 +US 31513 Baxley Georgia GA Appling 001 31.7837 -82.3486 +US 31515 Baxley Georgia GA Appling 001 31.7177 -82.2997 +US 31562 Saint George Georgia GA Appling County 001 30.5224 -82.0376 +US 31563 Surrency Georgia GA Appling 001 31.6489 -82.1982 +US 31624 Axson Georgia GA Atkinson 003 31.3035 -82.7319 +US 31642 Pearson Georgia GA Atkinson 003 31.3106 -82.8591 +US 31650 Willacoochee Georgia GA Atkinson 003 31.3455 -83.0449 +US 31510 Alma Georgia GA Bacon 005 31.5465 -82.4633 +US 31721 Albany Georgia GA Baker County 007 31.5105 -84.3087 +US 31770 Newton Georgia GA Baker 007 31.3134 -84.4411 +US 39837 Colquitt Georgia GA Baker County 007 31.173 -84.731 +US 39841 Damascus Georgia GA Baker County 007 31.2984 -84.7175 +US 39845 Donalsonville Georgia GA Baker County 007 31.0505 -84.8801 +US 39862 Leary Georgia GA Baker County 007 31.4849 -84.5128 +US 39870 Newton Georgia GA Baker County 007 31.3164 -84.3367 +US 31034 Hardwick Georgia GA Baldwin 009 33.0227 -83.247 +US 31059 Milledgeville Georgia GA Baldwin County 009 33.0846 -83.238 +US 31061 Milledgeville Georgia GA Baldwin 009 33.08 -83.2379 +US 31062 Milledgeville Georgia GA Baldwin 009 33.0491 -83.2174 +US 30511 Baldwin Georgia GA Banks 011 34.4574 -83.476 +US 30547 Homer Georgia GA Banks 011 34.3563 -83.4974 +US 30558 Maysville Georgia GA Banks 011 34.2736 -83.584 +US 30011 Auburn Georgia GA Barrow 013 34.0191 -83.8261 +US 30620 Bethlehem Georgia GA Barrow 013 33.9261 -83.7282 +US 30666 Statham Georgia GA Barrow 013 33.9602 -83.5893 +US 30680 Winder Georgia GA Barrow 013 33.9985 -83.7115 +US 30103 Adairsville Georgia GA Bartow 015 34.3595 -84.9176 +US 30120 Cartersville Georgia GA Bartow 015 34.187 -84.8204 +US 30121 Cartersville Georgia GA Bartow 015 34.2079 -84.7673 +US 30123 Cassville Georgia GA Bartow 015 34.2442 -84.8457 +US 30137 Emerson Georgia GA Bartow 015 34.12 -84.757 +US 30145 Kingston Georgia GA Bartow 015 34.2501 -84.9973 +US 30171 Rydal Georgia GA Bartow 015 34.3379 -84.7376 +US 30178 Taylorsville Georgia GA Bartow 015 34.1229 -84.9739 +US 30184 White Georgia GA Bartow 015 34.2717 -84.7383 +US 31750 Fitzgerald Georgia GA Ben Hill 017 31.7248 -83.2495 +US 39840 Cuthbert Georgia GA Ben Hill County 017 31.7706 -84.7936 +US 31622 Alapaha Georgia GA Berrien 019 31.394 -83.2132 +US 31639 Nashville Georgia GA Berrien 019 31.2074 -83.2319 +US 31645 Ray City Georgia GA Berrien 019 31.0825 -83.2143 +US 31749 Enigma Georgia GA Berrien 019 31.3736 -83.3552 +US 31052 Lizella Georgia GA Bibb 021 32.7773 -83.825 +US 31201 Macon Georgia GA Bibb 021 32.8095 -83.6168 +US 31202 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31203 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31204 Macon Georgia GA Bibb 021 32.8424 -83.6766 +US 31205 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31206 Macon Georgia GA Bibb 021 32.7914 -83.679 +US 31207 Macon Georgia GA Bibb 021 32.8304 -83.6486 +US 31208 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31209 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31210 Macon Georgia GA Bibb 021 32.8926 -83.7455 +US 31211 Macon Georgia GA Bibb 021 32.8869 -83.6021 +US 31212 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31213 Macon Georgia GA Bibb 021 32.8393 -83.6388 +US 31216 Macon Georgia GA Bibb 021 32.7486 -83.7477 +US 31217 Macon Georgia GA Bibb 021 32.8118 -83.565 +US 31220 Macon Georgia GA Bibb 021 32.8595 -83.802 +US 31221 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31294 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31295 Macon Georgia GA Bibb 021 32.8102 -83.569 +US 31296 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31297 Macon Georgia GA Bibb 021 32.7004 -83.6572 +US 31298 Macon Georgia GA Bibb 021 32.8733 -83.7084 +US 31299 Macon Georgia GA Bibb 021 32.8067 -83.6913 +US 31014 Cochran Georgia GA Bleckley 023 32.3981 -83.3229 +US 31542 Hoboken Georgia GA Brantley 025 31.1431 -82.1207 +US 31543 Hortense Georgia GA Brantley 025 31.3199 -81.9596 +US 31553 Nahunta Georgia GA Brantley 025 31.1827 -81.9722 +US 31566 Waynesville Georgia GA Brantley 025 31.2448 -81.8039 +US 31625 Barney Georgia GA Brooks 027 31.0074 -83.5219 +US 31629 Dixie Georgia GA Brooks 027 30.7722 -83.6792 +US 31638 Morven Georgia GA Brooks 027 30.9248 -83.54 +US 31643 Quitman Georgia GA Brooks 027 30.7797 -83.5567 +US 31720 Barwick Georgia GA Brooks 027 30.8566 -83.5265 +US 31308 Ellabell Georgia GA Bryan 029 32.1273 -81.4983 +US 31321 Pembroke Georgia GA Bryan 029 32.1812 -81.6656 +US 31324 Richmond Hill Georgia GA Bryan 029 31.8962 -81.294 +US 30415 Brooklet Georgia GA Bulloch 031 32.294 -81.628 +US 30450 Portal Georgia GA Bulloch 031 32.555 -81.9123 +US 30452 Register Georgia GA Bulloch 031 32.3382 -81.8728 +US 30458 Statesboro Georgia GA Bulloch 031 32.4408 -81.774 +US 30459 Statesboro Georgia GA Bulloch 031 32.447 -81.7777 +US 30460 Statesboro Georgia GA Bulloch 031 32.4179 -81.7823 +US 30461 Statesboro Georgia GA Bulloch 031 32.45 -81.7158 +US 30426 Girard Georgia GA Burke 033 33.0437 -81.7106 +US 30441 Midville Georgia GA Burke 033 32.8638 -82.2042 +US 30456 Sardis Georgia GA Burke 033 32.9809 -81.773 +US 30811 Gough Georgia GA Burke 033 33.0505 -81.9292 +US 30816 Keysville Georgia GA Burke 033 33.1719 -82.1834 +US 30830 Waynesboro Georgia GA Burke 033 33.1013 -81.9908 +US 30216 Flovilla Georgia GA Butts 035 33.25 -83.9079 +US 30233 Jackson Georgia GA Butts 035 33.282 -83.9784 +US 30234 Jenkinsburg Georgia GA Butts 035 33.3224 -84.0287 +US 30243 Lawrenceville Georgia GA Butts County 035 33.9986 -84.0138 +US 31713 Arlington Georgia GA Calhoun 037 31.4456 -84.7257 +US 31746 Edison Georgia GA Calhoun 037 31.565 -84.7456 +US 31762 Leary Georgia GA Calhoun 037 31.4843 -84.5137 +US 31766 Morgan Georgia GA Calhoun 037 31.5566 -84.6178 +US 39842 Dawson Georgia GA Calhoun County 037 31.7703 -84.5238 +US 39866 Morgan Georgia GA Calhoun County 037 31.5374 -84.5994 +US 39886 Shellman Georgia GA Calhoun County 037 31.7608 -84.6092 +US 31547 Kings Bay Georgia GA Camden 039 30.7906 -81.5607 +US 31548 Kingsland Georgia GA Camden 039 30.7977 -81.7075 +US 31558 Saint Marys Georgia GA Camden 039 30.7735 -81.5652 +US 31565 Waverly Georgia GA Camden 039 31.0427 -81.5697 +US 31568 White Oak Georgia GA Camden 039 30.9952 -81.7782 +US 31569 Woodbine Georgia GA Camden 039 30.9437 -81.6783 +US 30439 Metter Georgia GA Candler 043 32.401 -82.0607 +US 30451 Pulaski Georgia GA Candler 043 32.4143 -82.0867 +US 30108 Bowdon Georgia GA Carroll 045 33.5373 -85.2533 +US 30109 Bowdon Junction Georgia GA Carroll 045 33.6534 -85.1362 +US 30112 Carrollton Georgia GA Carroll County 045 33.5809 -85.0792 +US 30116 Carrollton Georgia GA Carroll 045 33.6045 -85.0499 +US 30117 Carrollton Georgia GA Carroll 045 33.5798 -85.0812 +US 30118 Carrollton Georgia GA Carroll 045 33.5712 -85.0961 +US 30119 Carrollton Georgia GA Carroll 045 33.6189 -85.0736 +US 30150 Mount Zion Georgia GA Carroll 045 33.643 -85.1818 +US 30170 Roopville Georgia GA Carroll 045 33.4322 -85.1671 +US 30179 Temple Georgia GA Carroll 045 33.7677 -85.0133 +US 30180 Villa Rica Georgia GA Carroll 045 33.7173 -84.9297 +US 30185 Whitesburg Georgia GA Carroll 045 33.5111 -84.9254 +US 30726 Graysville Georgia GA Catoosa 047 34.9802 -85.1408 +US 30736 Ringgold Georgia GA Catoosa 047 34.9205 -85.1549 +US 30742 Fort Oglethorpe Georgia GA Catoosa 047 34.9506 -85.2432 +US 31537 Folkston Georgia GA Charlton 049 30.8508 -82.0116 +US 31646 Saint George Georgia GA Charlton 049 30.5592 -82.0834 +US 31302 Bloomingdale Georgia GA Chatham 051 32.1177 -81.3085 +US 31322 Pooler Georgia GA Chatham 051 32.1149 -81.252 +US 31328 Tybee Island Georgia GA Chatham 051 32.0068 -80.8509 +US 31401 Savannah Georgia GA Chatham 051 32.0749 -81.0883 +US 31402 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31403 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31404 Savannah Georgia GA Chatham 051 32.0543 -81.0492 +US 31405 Savannah Georgia GA Chatham 051 32.0391 -81.1242 +US 31406 Savannah Georgia GA Chatham 051 31.989 -81.0979 +US 31407 Savannah Georgia GA Chatham 051 32.1672 -81.1999 +US 31408 Savannah Georgia GA Chatham 051 32.1082 -81.1746 +US 31409 Savannah Georgia GA Chatham 051 32.0093 -81.157 +US 31410 Savannah Georgia GA Chatham 051 32.0175 -80.997 +US 31411 Savannah Georgia GA Chatham 051 31.9268 -81.0381 +US 31412 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31414 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31415 Savannah Georgia GA Chatham 051 32.0753 -81.1289 +US 31416 Savannah Georgia GA Chatham 051 32.0053 -81.0477 +US 31418 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31419 Savannah Georgia GA Chatham 051 31.9959 -81.2358 +US 31420 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31421 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31422 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31498 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31499 Savannah Georgia GA Chatham 051 31.9714 -81.0716 +US 31805 Cusseta Georgia GA Chattahoochee 053 32.299 -84.7645 +US 30730 Lyerly Georgia GA Chattooga 055 34.403 -85.4038 +US 30731 Menlo Georgia GA Chattooga 055 34.5864 -85.4774 +US 30747 Summerville Georgia GA Chattooga 055 34.4859 -85.3362 +US 30753 Trion Georgia GA Chattooga 055 34.5468 -85.3112 +US 30107 Ball Ground Georgia GA Cherokee 057 34.3393 -84.3758 +US 30114 Canton Georgia GA Cherokee 057 34.2505 -84.4909 +US 30115 Canton Georgia GA Cherokee 057 34.1993 -84.4199 +US 30142 Holly Springs Georgia GA Cherokee 057 34.2429 -84.4583 +US 30146 Lebanon Georgia GA Cherokee 057 34.2429 -84.4583 +US 30151 Nelson Georgia GA Cherokee 057 34.2429 -84.4583 +US 30155 Duluth Georgia GA Cherokee County 057 34.0313 -84.1568 +US 30169 Canton Georgia GA Cherokee County 057 34.234 -84.4904 +US 30183 Waleska Georgia GA Cherokee 057 34.3217 -84.562 +US 30188 Woodstock Georgia GA Cherokee 057 34.106 -84.5117 +US 30189 Woodstock Georgia GA Cherokee 057 34.1281 -84.5717 +US 30601 Athens Georgia GA Clarke 059 33.9761 -83.3632 +US 30602 Athens Georgia GA Clarke 059 33.9433 -83.3724 +US 30603 Athens Georgia GA Clarke 059 33.9476 -83.4089 +US 30604 Athens Georgia GA Clarke 059 33.9443 -83.3891 +US 30605 Athens Georgia GA Clarke 059 33.9321 -83.3525 +US 30606 Athens Georgia GA Clarke 059 33.9461 -83.418 +US 30607 Athens Georgia GA Clarke 059 34.007 -83.4278 +US 30608 Athens Georgia GA Clarke 059 33.9443 -83.3891 +US 30609 Athens Georgia GA Clarke 059 33.9464 -83.3774 +US 30610 Athens Georgia GA Clarke 059 33.9443 -83.3891 +US 30612 Athens Georgia GA Clarke 059 33.9443 -83.3891 +US 30613 Athens Georgia GA Clarke 059 33.9624 -83.3983 +US 30683 Winterville Georgia GA Clarke 059 33.9543 -83.2906 +US 31724 Bluffton Georgia GA Clay 061 31.5562 -84.8772 +US 31751 Fort Gaines Georgia GA Clay 061 31.6464 -85.0394 +US 39823 Blakely Georgia GA Clay County 061 31.3791 -84.9353 +US 39824 Bluffton Georgia GA Clay County 061 31.52 -84.867 +US 39836 Coleman Georgia GA Clay County 061 31.6726 -84.8903 +US 39846 Edison Georgia GA Clay County 061 31.5607 -84.7381 +US 39851 Fort Gaines Georgia GA Clay County 061 31.6264 -85.0548 +US 39854 Georgetown Georgia GA Clay County 061 31.8854 -85.1059 +US 39867 Morris Georgia GA Clay County 061 31.8343 -84.9255 +US 30027 Conley Georgia GA Clayton County 063 33.6473 -84.3267 +US 30050 Forest Park Georgia GA Clayton County 063 33.6147 -84.368 +US 30236 Jonesboro Georgia GA Clayton 063 33.5242 -84.359 +US 30237 Jonesboro Georgia GA Clayton 063 33.5007 -84.3513 +US 30238 Jonesboro Georgia GA Clayton 063 33.4944 -84.3797 +US 30239 Alpharetta Georgia GA Clayton County 063 34.0703 -84.2887 +US 30247 Lilburn Georgia GA Clayton County 063 33.8727 -84.1176 +US 30250 Lovejoy Georgia GA Clayton 063 33.4429 -84.3136 +US 30260 Morrow Georgia GA Clayton 063 33.5849 -84.3247 +US 30273 Rex Georgia GA Clayton 063 33.5808 -84.2782 +US 30274 Riverdale Georgia GA Clayton 063 33.5531 -84.4003 +US 30287 Morrow Georgia GA Clayton 063 33.5007 -84.3513 +US 30288 Conley Georgia GA Clayton 063 33.6369 -84.3371 +US 30294 Ellenwood Georgia GA Clayton 063 33.6166 -84.2939 +US 30296 Riverdale Georgia GA Clayton 063 33.5667 -84.4364 +US 30297 Forest Park Georgia GA Clayton 063 33.6115 -84.3745 +US 30298 Forest Park Georgia GA Clayton 063 33.5007 -84.3513 +US 31623 Argyle Georgia GA Clinch 065 31.0744 -82.644 +US 31630 Du Pont Georgia GA Clinch 065 31 -82.8555 +US 31631 Fargo Georgia GA Clinch 065 30.7166 -82.5801 +US 31634 Homerville Georgia GA Clinch 065 31.0509 -82.7613 +US 30001 Austell Georgia GA Cobb County 067 33.8094 -84.6077 +US 30006 Marietta Georgia GA Cobb 067 33.9125 -84.5572 +US 30007 Marietta Georgia GA Cobb 067 33.9125 -84.5572 +US 30008 Marietta Georgia GA Cobb 067 33.8972 -84.592 +US 30020 Clarkdale Georgia GA Cobb County 067 33.8307 -84.6496 +US 30059 Mableton Georgia GA Cobb County 067 33.8153 -84.5618 +US 30060 Marietta Georgia GA Cobb 067 33.9382 -84.5403 +US 30061 Marietta Georgia GA Cobb 067 33.9328 -84.556 +US 30062 Marietta Georgia GA Cobb 067 34.0025 -84.4633 +US 30063 Marietta Georgia GA Cobb 067 33.9653 -84.5112 +US 30064 Marietta Georgia GA Cobb 067 33.9343 -84.6076 +US 30065 Marietta Georgia GA Cobb 067 33.9125 -84.5572 +US 30066 Marietta Georgia GA Cobb 067 34.0378 -84.5038 +US 30067 Marietta Georgia GA Cobb 067 33.9282 -84.4733 +US 30068 Marietta Georgia GA Cobb 067 33.9679 -84.4385 +US 30069 Marietta Georgia GA Cobb 067 33.9125 -84.5572 +US 30073 Decatur Georgia GA Cobb County 067 33.7034 -84.2573 +US 30080 Smyrna Georgia GA Cobb 067 33.8796 -84.5023 +US 30081 Smyrna Georgia GA Cobb 067 33.8588 -84.7106 +US 30082 Smyrna Georgia GA Cobb 067 33.8631 -84.5382 +US 30090 Marietta Georgia GA Cobb 067 33.9525 -84.5471 +US 30101 Acworth Georgia GA Cobb 067 34.0756 -84.6477 +US 30102 Acworth Georgia GA Cobb 067 34.0707 -84.5894 +US 30106 Austell Georgia GA Cobb 067 33.8369 -84.6307 +US 30111 Clarkdale Georgia GA Cobb 067 33.9125 -84.5572 +US 30126 Mableton Georgia GA Cobb 067 33.8332 -84.6031 +US 30127 Powder Springs Georgia GA Cobb 067 33.9135 -84.6859 +US 30144 Kennesaw Georgia GA Cobb 067 34.0287 -84.6047 +US 30152 Kennesaw Georgia GA Cobb 067 33.9951 -84.6544 +US 30156 Kennesaw Georgia GA Cobb County 067 34.0177 -84.625 +US 30160 Kennesaw Georgia GA Cobb County 067 34.0177 -84.625 +US 30168 Austell Georgia GA Cobb 067 33.7838 -84.5952 +US 31512 Ambrose Georgia GA Coffee 069 31.5367 -82.9976 +US 31519 Broxton Georgia GA Coffee 069 31.6484 -82.905 +US 31533 Douglas Georgia GA Coffee 069 31.4973 -82.8465 +US 31534 Douglas Georgia GA Coffee 069 31.5716 -82.8546 +US 31535 Douglas Georgia GA Coffee 069 31.4551 -82.8561 +US 31554 Nicholls Georgia GA Coffee 069 31.4498 -82.6032 +US 31567 West Green Georgia GA Coffee 069 31.6143 -82.7243 +US 31722 Berlin Georgia GA Colquitt 071 31.0807 -83.6491 +US 31744 Doerun Georgia GA Colquitt 071 31.3136 -83.9253 +US 31747 Ellenton Georgia GA Colquitt 071 31.1789 -83.5889 +US 31753 Funston Georgia GA Colquitt 071 31.2054 -83.8776 +US 31756 Hartsfield Georgia GA Colquitt 071 31.2173 -83.9704 +US 31768 Moultrie Georgia GA Colquitt 071 31.1792 -83.7641 +US 31771 Norman Park Georgia GA Colquitt 071 31.2462 -83.6549 +US 31776 Moultrie Georgia GA Colquitt 071 31.1727 -83.7924 +US 31788 Moultrie Georgia GA Colquitt County 071 31.0855 -83.6821 +US 30802 Appling Georgia GA Columbia 073 33.6271 -82.2856 +US 30809 Evans Georgia GA Columbia 073 33.5412 -82.1398 +US 30813 Grovetown Georgia GA Columbia 073 33.4766 -82.2409 +US 30814 Harlem Georgia GA Columbia 073 33.417 -82.3097 +US 30917 Augusta Georgia GA Columbia 073 33.5277 -82.2355 +US 39813 Arlington Georgia GA Columbia County 073 31.442 -84.7241 +US 31620 Adel Georgia GA Cook 075 31.1251 -83.4213 +US 31627 Cecil Georgia GA Cook 075 31.0403 -83.3915 +US 31637 Lenox Georgia GA Cook 075 31.2664 -83.4481 +US 31647 Sparks Georgia GA Cook 075 31.179 -83.4476 +US 30220 Grantville Georgia GA Coweta 077 33.2473 -84.835 +US 30229 Haralson Georgia GA Coweta 077 33.2322 -84.5685 +US 30254 Newnan Georgia GA Coweta County 077 33.3934 -84.8547 +US 30259 Moreland Georgia GA Coweta 077 33.2734 -84.7566 +US 30262 Newborn Georgia GA Coweta County 077 33.4951 -83.6671 +US 30263 Newnan Georgia GA Coweta 077 33.3696 -84.8194 +US 30264 Newnan Georgia GA Coweta 077 33.361 -84.8142 +US 30265 Newnan Georgia GA Coweta 077 33.3958 -84.7121 +US 30271 Newnan Georgia GA Coweta 077 33.3514 -84.7561 +US 30275 Sargent Georgia GA Coweta 077 33.4299 -84.8744 +US 30276 Senoia Georgia GA Coweta 077 33.2845 -84.5918 +US 30277 Sharpsburg Georgia GA Coweta 077 33.4013 -84.654 +US 30289 Turin Georgia GA Coweta 077 33.326 -84.6371 +US 31050 Knoxville Georgia GA Crawford 079 32.7156 -83.9158 +US 31066 Musella Georgia GA Crawford 079 32.8202 -84.0456 +US 31078 Roberta Georgia GA Crawford 079 32.7222 -84.0451 +US 31010 Cordele Georgia GA Crisp 081 31.9172 -83.7854 +US 31015 Cordele Georgia GA Crisp 081 31.9566 -83.7835 +US 31712 Arabi Georgia GA Crisp 081 31.8496 -83.7277 +US 30738 Rising Fawn Georgia GA Dade 083 34.8139 -85.5019 +US 30752 Trenton Georgia GA Dade 083 34.9017 -85.5171 +US 30757 Wildwood Georgia GA Dade 083 34.9779 -85.4305 +US 30534 Dawsonville Georgia GA Dawson 085 34.4537 -84.155 +US 31715 Attapulgus Georgia GA Decatur 087 30.7506 -84.486 +US 31717 Bainbridge Georgia GA Decatur 087 30.8979 -84.574 +US 31718 Bainbridge Georgia GA Decatur 087 30.9019 -84.57 +US 31725 Brinson Georgia GA Decatur 087 30.9079 -84.7038 +US 31734 Climax Georgia GA Decatur 087 30.8573 -84.4432 +US 31752 Fowlstown Georgia GA Decatur 087 30.7919 -84.5499 +US 39815 Attapulgus Georgia GA Decatur County 087 30.7493 -84.4846 +US 39818 Bainbridge Georgia GA Decatur County 087 30.8845 -84.5655 +US 39819 Bainbridge Georgia GA Decatur County 087 30.9039 -84.569 +US 39852 Fowlstown Georgia GA Decatur County 087 30.8024 -84.5471 +US 30002 Avondale Estates Georgia GA DeKalb 089 33.7717 -84.2607 +US 30021 Clarkston Georgia GA DeKalb 089 33.8101 -84.2388 +US 30030 Decatur Georgia GA DeKalb 089 33.7699 -84.295 +US 30031 Decatur Georgia GA DeKalb 089 33.8913 -84.0746 +US 30032 Decatur Georgia GA DeKalb 089 33.7408 -84.2632 +US 30033 Decatur Georgia GA DeKalb 089 33.8123 -84.2819 +US 30034 Decatur Georgia GA DeKalb 089 33.6954 -84.2489 +US 30035 Decatur Georgia GA DeKalb 089 33.7278 -84.2143 +US 30036 Decatur Georgia GA DeKalb 089 33.8913 -84.0746 +US 30037 Decatur Georgia GA DeKalb 089 33.8913 -84.0746 +US 30038 Lithonia Georgia GA DeKalb 089 33.6823 -84.161 +US 30058 Lithonia Georgia GA DeKalb 089 33.7356 -84.1009 +US 30072 Pine Lake Georgia GA DeKalb 089 33.7906 -84.2053 +US 30074 Redan Georgia GA DeKalb 089 33.8913 -84.0746 +US 30079 Scottdale Georgia GA DeKalb 089 33.7934 -84.2585 +US 30083 Stone Mountain Georgia GA DeKalb 089 33.7942 -84.2018 +US 30084 Tucker Georgia GA DeKalb 089 33.857 -84.216 +US 30085 Tucker Georgia GA DeKalb 089 33.8913 -84.0746 +US 30086 Stone Mountain Georgia GA DeKalb 089 33.8913 -84.0746 +US 30087 Stone Mountain Georgia GA DeKalb 089 33.8105 -84.1361 +US 30088 Stone Mountain Georgia GA DeKalb 089 33.758 -84.1802 +US 30319 Atlanta Georgia GA DeKalb 089 33.8687 -84.3351 +US 30322 Atlanta Georgia GA DeKalb 089 33.7952 -84.3248 +US 30329 Atlanta Georgia GA DeKalb 089 33.8236 -84.3214 +US 30333 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 30340 Atlanta Georgia GA DeKalb 089 33.8932 -84.2539 +US 30341 Atlanta Georgia GA DeKalb 089 33.8879 -84.2905 +US 30345 Atlanta Georgia GA DeKalb 089 33.8513 -84.287 +US 30346 Atlanta Georgia GA DeKalb 089 33.9267 -84.3334 +US 30350 Atlanta Georgia GA DeKalb 089 33.9795 -84.3411 +US 30356 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 30359 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 30360 Atlanta Georgia GA DeKalb 089 33.9378 -84.2716 +US 30362 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 30366 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 31119 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 31141 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 31145 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 31146 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 39901 Atlanta Georgia GA DeKalb 089 33.8913 -84.0746 +US 31011 Chauncey Georgia GA Dodge 091 32.1504 -83.0555 +US 31012 Chester Georgia GA Dodge 091 32.3982 -83.174 +US 31023 Eastman Georgia GA Dodge 091 32.2084 -83.186 +US 31073 Plainfield Georgia GA Dodge 091 32.1764 -83.1229 +US 31077 Rhine Georgia GA Dodge 091 31.938 -83.1837 +US 31007 Byromville Georgia GA Dooly 093 32.189 -83.9332 +US 31051 Lilly Georgia GA Dooly 093 32.1469 -83.8913 +US 31063 Montezuma Georgia GA Dooly 093 32.3026 -84.0041 +US 31070 Pinehurst Georgia GA Dooly 093 32.1967 -83.7209 +US 31091 Unadilla Georgia GA Dooly 093 32.2558 -83.7447 +US 31092 Vienna Georgia GA Dooly 093 32.0913 -83.7922 +US 31701 Albany Georgia GA Dougherty 095 31.5678 -84.1619 +US 31702 Albany Georgia GA Dougherty 095 31.5948 -84.1948 +US 31703 Albany Georgia GA Dougherty 095 31.5431 -84.2196 +US 31704 Albany Georgia GA Dougherty 095 31.55 -84.0612 +US 31705 Albany Georgia GA Dougherty 095 31.5464 -84.0783 +US 31706 Albany Georgia GA Dougherty 095 31.5593 -84.1765 +US 31707 Albany Georgia GA Dougherty 095 31.5789 -84.2118 +US 31708 Albany Georgia GA Dougherty 095 31.5911 -84.1324 +US 31782 Putney Georgia GA Dougherty 095 31.5431 -84.2196 +US 30057 Lithia Springs Georgia GA Douglas County 097 33.7737 -84.6544 +US 30122 Lithia Springs Georgia GA Douglas 097 33.7655 -84.6469 +US 30133 Douglasville Georgia GA Douglas 097 33.6897 -84.7446 +US 30134 Douglasville Georgia GA Douglas 097 33.7606 -84.7477 +US 30135 Douglasville Georgia GA Douglas 097 33.6989 -84.7454 +US 30154 Douglasville Georgia GA Douglas 097 33.6897 -84.7446 +US 30187 Winston Georgia GA Douglas 097 33.6634 -84.8639 +US 31723 Blakely Georgia GA Early 099 31.3719 -84.9353 +US 31732 Cedar Springs Georgia GA Early 099 31.2956 -84.8711 +US 31741 Damascus Georgia GA Early 099 31.2981 -84.7175 +US 31761 Jakin Georgia GA Early 099 31.0894 -84.9861 +US 39832 Cedar Springs Georgia GA Early County 099 31.1745 -85.037 +US 39834 Climax Georgia GA Early County 099 30.8757 -84.445 +US 31648 Statenville Georgia GA Echols 101 30.7065 -83.019 +US 31303 Clyo Georgia GA Effingham 103 32.5126 -81.3086 +US 31307 Eden Georgia GA Effingham 103 32.1736 -81.3992 +US 31312 Guyton Georgia GA Effingham 103 32.314 -81.3896 +US 31318 Meldrim Georgia GA Effingham 103 32.1499 -81.3722 +US 31326 Rincon Georgia GA Effingham 103 32.2852 -81.2875 +US 31329 Springfield Georgia GA Effingham 103 32.3697 -81.3618 +US 30624 Bowman Georgia GA Elbert 105 34.1919 -83.0284 +US 30634 Dewy Rose Georgia GA Elbert 105 34.1853 -82.9434 +US 30635 Elberton Georgia GA Elbert 105 34.1082 -82.8448 +US 30401 Swainsboro Georgia GA Emanuel 107 32.5699 -82.3462 +US 30425 Garfield Georgia GA Emanuel 107 32.6549 -82.1002 +US 30447 Norristown Georgia GA Emanuel 107 32.5041 -82.4848 +US 30448 Nunez Georgia GA Emanuel 107 32.4759 -82.3726 +US 30464 Stillmore Georgia GA Emanuel 107 32.4459 -82.2587 +US 30466 Summertown Georgia GA Emanuel 107 32.5666 -82.3245 +US 30471 Twin City Georgia GA Emanuel 107 32.6129 -82.1979 +US 31002 Adrian Georgia GA Emanuel 107 32.5635 -82.5695 +US 30414 Bellville Georgia GA Evans 109 32.1634 -81.8719 +US 30417 Claxton Georgia GA Evans 109 32.165 -81.908 +US 30423 Daisy Georgia GA Evans 109 32.1634 -81.8719 +US 30429 Hagan Georgia GA Evans 109 32.1528 -81.9259 +US 30255 Mansfield Georgia GA Fannin County 111 33.5283 -83.7345 +US 30513 Blue Ridge Georgia GA Fannin 111 34.8555 -84.3281 +US 30541 Epworth Georgia GA Fannin 111 34.9129 -84.5391 +US 30555 Mc Caysville Georgia GA Fannin 111 34.9739 -84.4291 +US 30559 Mineral Bluff Georgia GA Fannin 111 34.9341 -84.2541 +US 30560 Morganton Georgia GA Fannin 111 34.8714 -84.2115 +US 30205 Brooks Georgia GA Fayette 113 33.2984 -84.4769 +US 30214 Fayetteville Georgia GA Fayette 113 33.4679 -84.4806 +US 30215 Fayetteville Georgia GA Fayette 113 33.3943 -84.4738 +US 30232 Inman Georgia GA Fayette 113 33.4038 -84.5044 +US 30269 Peachtree City Georgia GA Fayette 113 33.3915 -84.5635 +US 30290 Tyrone Georgia GA Fayette 113 33.4719 -84.5914 +US 30105 Armuchee Georgia GA Floyd 115 34.4411 -85.1843 +US 30124 Cave Spring Georgia GA Floyd 115 34.1167 -85.3379 +US 30129 Coosa Georgia GA Floyd 115 34.3333 -85.2337 +US 30147 Lindale Georgia GA Floyd 115 34.1707 -85.1825 +US 30149 Mount Berry Georgia GA Floyd 115 34.2804 -85.1821 +US 30161 Rome Georgia GA Floyd 115 34.2507 -85.1465 +US 30162 Rome Georgia GA Floyd 115 34.2905 -85.2138 +US 30163 Rome Georgia GA Floyd 115 34.3333 -85.2337 +US 30164 Rome Georgia GA Floyd 115 34.3333 -85.2337 +US 30165 Rome Georgia GA Floyd 115 34.2837 -85.2231 +US 30172 Shannon Georgia GA Floyd 115 34.3333 -85.2337 +US 30173 Silver Creek Georgia GA Floyd 115 34.1593 -85.1429 +US 30028 Cumming Georgia GA Forsyth 117 34.2897 -84.1796 +US 30040 Cumming Georgia GA Forsyth 117 34.2321 -84.158 +US 30041 Cumming Georgia GA Forsyth 117 34.2037 -84.1031 +US 30128 Cumming Georgia GA Forsyth County 117 34.2088 -84.1351 +US 30520 Canon Georgia GA Franklin 119 34.3478 -83.1267 +US 30521 Carnesville Georgia GA Franklin 119 34.3631 -83.2547 +US 30553 Lavonia Georgia GA Franklin 119 34.4528 -83.113 +US 30639 Franklin Springs Georgia GA Franklin 119 34.2743 -83.147 +US 30662 Royston Georgia GA Franklin 119 34.2778 -83.1406 +US 30004 Alpharetta Georgia GA Fulton 121 34.1124 -84.302 +US 30005 Alpharetta Georgia GA Fulton 121 34.0782 -84.2281 +US 30009 Alpharetta Georgia GA Fulton 121 34.077 -84.3033 +US 30022 Alpharetta Georgia GA Fulton 121 34.0268 -84.2422 +US 30023 Alpharetta Georgia GA Fulton 121 33.8444 -84.4741 +US 30075 Roswell Georgia GA Fulton 121 34.0408 -84.3859 +US 30076 Roswell Georgia GA Fulton 121 34.0213 -84.3104 +US 30077 Roswell Georgia GA Fulton 121 33.8444 -84.4741 +US 30201 Alpharetta Georgia GA Fulton County 121 34.1094 -84.2978 +US 30202 Alpharetta Georgia GA Fulton County 121 34.0383 -84.2377 +US 30213 Fairburn Georgia GA Fulton 121 33.5648 -84.5809 +US 30268 Palmetto Georgia GA Fulton 121 33.5242 -84.679 +US 30272 Red Oak Georgia GA Fulton 121 33.6259 -84.5163 +US 30291 Union City Georgia GA Fulton 121 33.5832 -84.5499 +US 30301 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30302 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30303 Atlanta Georgia GA Fulton 121 33.7525 -84.3888 +US 30304 Atlanta Georgia GA Fulton 121 33.8482 -84.4293 +US 30305 Atlanta Georgia GA Fulton 121 33.832 -84.3851 +US 30306 Atlanta Georgia GA Fulton 121 33.786 -84.3514 +US 30307 Atlanta Georgia GA Fulton 121 33.7691 -84.336 +US 30308 Atlanta Georgia GA Fulton 121 33.7718 -84.3757 +US 30309 Atlanta Georgia GA Fulton 121 33.7984 -84.3883 +US 30310 Atlanta Georgia GA Fulton 121 33.7278 -84.4232 +US 30311 Atlanta Georgia GA Fulton 121 33.723 -84.4702 +US 30312 Atlanta Georgia GA Fulton 121 33.7467 -84.3781 +US 30313 Atlanta Georgia GA Fulton 121 33.7683 -84.3935 +US 30314 Atlanta Georgia GA Fulton 121 33.7561 -84.4255 +US 30315 Atlanta Georgia GA Fulton 121 33.7051 -84.3808 +US 30316 Atlanta Georgia GA Fulton 121 33.7217 -84.3339 +US 30317 Atlanta Georgia GA Fulton 121 33.7498 -84.3169 +US 30318 Atlanta Georgia GA Fulton 121 33.7865 -84.4454 +US 30320 Atlanta Georgia GA Fulton 121 33.6568 -84.4236 +US 30321 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30323 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30324 Atlanta Georgia GA Fulton 121 33.8206 -84.3549 +US 30325 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30326 Atlanta Georgia GA Fulton 121 33.8482 -84.3582 +US 30327 Atlanta Georgia GA Fulton 121 33.8627 -84.42 +US 30328 Atlanta Georgia GA Fulton 121 33.9335 -84.3958 +US 30330 Atlanta Georgia GA Fulton 121 33.7071 -84.4321 +US 30331 Atlanta Georgia GA Fulton 121 33.7224 -84.5205 +US 30332 Atlanta Georgia GA Fulton 121 33.7763 -84.398 +US 30334 Atlanta Georgia GA Fulton 121 33.7489 -84.3872 +US 30336 Atlanta Georgia GA Fulton 121 33.7406 -84.5545 +US 30337 Atlanta Georgia GA Fulton 121 33.6428 -84.4618 +US 30338 Atlanta Georgia GA Fulton 121 33.9669 -84.3249 +US 30339 Atlanta Georgia GA Fulton 121 33.8713 -84.4629 +US 30342 Atlanta Georgia GA Fulton 121 33.8842 -84.3761 +US 30343 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30344 Atlanta Georgia GA Fulton 121 33.6919 -84.448 +US 30347 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30348 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30349 Atlanta Georgia GA Fulton 121 33.6053 -84.4813 +US 30351 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30353 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30354 Atlanta Georgia GA Fulton 121 33.6675 -84.3896 +US 30355 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30357 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30358 Atlanta Georgia GA Fulton 121 33.9982 -84.3411 +US 30361 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30363 Atlanta Georgia GA Fulton 121 33.791 -84.3992 +US 30364 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30365 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30368 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30369 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30370 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30371 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30374 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30375 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30376 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30377 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30378 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30379 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30380 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30381 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30383 Atlanta Georgia GA Fulton County 121 33.7487 -84.3879 +US 30384 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30385 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30386 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30387 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30388 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30389 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30390 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30392 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30394 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30396 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30398 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30399 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31106 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31107 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31120 Atlanta Georgia GA Fulton County 121 33.7487 -84.3877 +US 31126 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31131 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31136 Atlanta Georgia GA Fulton County 121 33.7473 -84.3824 +US 31139 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31150 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31156 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31160 Atlanta Georgia GA Fulton County 121 33.7629 -84.4226 +US 31165 Atlanta Georgia GA Fulton County 121 33.7629 -84.4226 +US 31170 Atlanta Georgia GA Fulton County 121 33.7629 -84.4226 +US 31175 Atlanta Georgia GA Fulton County 121 33.7629 -84.4226 +US 31180 Atlanta Georgia GA Fulton County 121 33.7629 -84.4226 +US 31185 Atlanta Georgia GA Fulton County 121 33.7629 -84.4226 +US 31190 Atlanta Georgia GA Fulton County 121 33.7629 -84.4226 +US 31191 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31192 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31193 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31195 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31196 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31197 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31198 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 31199 Atlanta Georgia GA Fulton 121 33.8444 -84.4741 +US 30522 Cherrylog Georgia GA Gilmer 123 34.7833 -84.3348 +US 30536 Ellijay Georgia GA Gilmer County 123 34.655 -84.3554 +US 30539 East Ellijay Georgia GA Gilmer 123 34.6585 -84.4932 +US 30540 Ellijay Georgia GA Gilmer 123 34.6775 -84.4812 +US 30810 Gibson Georgia GA Glascock 125 33.2471 -82.5766 +US 30820 Mitchell Georgia GA Glascock 125 33.2052 -82.6817 +US 31520 Brunswick Georgia GA Glynn 127 31.1807 -81.4949 +US 31521 Brunswick Georgia GA Glynn 127 31.2415 -81.5325 +US 31522 Saint Simons Island Georgia GA Glynn 127 31.23 -81.3502 +US 31523 Brunswick Georgia GA Glynn 127 31.2189 -81.546 +US 31524 Brunswick Georgia GA Glynn 127 31.222 -81.4826 +US 31525 Brunswick Georgia GA Glynn 127 31.2804 -81.5305 +US 31527 Jekyll Island Georgia GA Glynn 127 31.074 -81.4128 +US 31561 Sea Island Georgia GA Glynn 127 31.1989 -81.3322 +US 30139 Fairmount Georgia GA Gordon 129 34.4652 -84.7669 +US 30701 Calhoun Georgia GA Gordon 129 34.4965 -84.9345 +US 30703 Calhoun Georgia GA Gordon 129 34.4791 -84.7622 +US 30732 Oakman Georgia GA Gordon 129 34.569 -84.7119 +US 30733 Plainville Georgia GA Gordon 129 34.4145 -85.0312 +US 30734 Ranger Georgia GA Gordon 129 34.5404 -84.727 +US 30735 Resaca Georgia GA Gordon 129 34.5833 -84.9068 +US 30746 Sugar Valley Georgia GA Gordon 129 34.5519 -85.026 +US 31728 Cairo Georgia GA Grady 131 30.8925 -84.1962 +US 31729 Calvary Georgia GA Grady 131 30.7147 -84.3518 +US 31797 Whigham Georgia GA Grady 131 30.907 -84.3158 +US 39827 Cairo Georgia GA Grady County 131 30.9528 -84.2069 +US 39829 Calvary Georgia GA Grady County 131 30.7462 -84.3125 +US 39897 Whigham Georgia GA Grady County 131 30.8836 -84.3246 +US 30642 Greensboro Georgia GA Greene 133 33.5637 -83.1702 +US 30665 Siloam Georgia GA Greene 133 33.5619 -83.0742 +US 30669 Union Point Georgia GA Greene 133 33.6345 -83.0879 +US 30678 White Plains Georgia GA Greene 133 33.4581 -83.0802 +US 30003 Norcross Georgia GA Gwinnett 135 33.9604 -84.0379 +US 30010 Norcross Georgia GA Gwinnett 135 33.9604 -84.0379 +US 30017 Grayson Georgia GA Gwinnett 135 33.8901 -83.9632 +US 30019 Dacula Georgia GA Gwinnett 135 33.9883 -83.8795 +US 30024 Suwanee Georgia GA Gwinnett 135 34.0425 -84.0262 +US 30026 Duluth Georgia GA Gwinnett 135 33.963 -84.0923 +US 30029 Duluth Georgia GA Gwinnett 135 33.9604 -84.0379 +US 30039 Snellville Georgia GA Gwinnett 135 33.8178 -84.0229 +US 30042 Lawrenceville Georgia GA Gwinnett 135 33.9295 -84.1032 +US 30043 Lawrenceville Georgia GA Gwinnett 135 34.0031 -84.0126 +US 30044 Lawrenceville Georgia GA Gwinnett 135 33.9418 -84.0706 +US 30045 Lawrenceville Georgia GA Gwinnett 135 33.9367 -83.9573 +US 30046 Lawrenceville Georgia GA Gwinnett 135 33.9496 -83.9942 +US 30047 Lilburn Georgia GA Gwinnett 135 33.8656 -84.0725 +US 30048 Lilburn Georgia GA Gwinnett 135 33.9604 -84.0379 +US 30049 Lawrenceville Georgia GA Gwinnett County 135 33.9495 -83.9922 +US 30052 Loganville Georgia GA Gwinnett 135 33.8769 -83.8968 +US 30071 Norcross Georgia GA Gwinnett 135 33.9381 -84.1972 +US 30078 Snellville Georgia GA Gwinnett 135 33.8635 -84.0081 +US 30091 Norcross Georgia GA Gwinnett 135 33.9604 -84.0379 +US 30092 Norcross Georgia GA Gwinnett 135 33.9677 -84.2438 +US 30093 Norcross Georgia GA Gwinnett 135 33.906 -84.184 +US 30095 Duluth Georgia GA Gwinnett 135 34.0256 -84.1304 +US 30096 Duluth Georgia GA Gwinnett 135 33.9845 -84.1529 +US 30097 Duluth Georgia GA Gwinnett 135 34.026 -84.147 +US 30098 Duluth Georgia GA Gwinnett 135 33.9604 -84.0379 +US 30099 Duluth Georgia GA Gwinnett 135 33.9595 -84.105 +US 30136 Duluth Georgia GA Gwinnett County 135 33.985 -84.1569 +US 30195 Duluth Georgia GA Gwinnett County 135 34.0047 -84.1532 +US 30198 Duluth Georgia GA Gwinnett County 135 34.0026 -84.1446 +US 30199 Duluth Georgia GA Gwinnett County 135 34.0026 -84.1446 +US 30211 Dacula Georgia GA Gwinnett County 135 33.9872 -83.8857 +US 30221 Grayson Georgia GA Gwinnett County 135 33.8835 -83.9749 +US 30226 Lilburn Georgia GA Gwinnett County 135 33.9008 -84.1263 +US 30227 Lawrenceville Georgia GA Gwinnett County 135 33.9495 -83.9922 +US 30244 Lawrenceville Georgia GA Gwinnett County 135 33.9216 -84.0704 +US 30245 Lawrenceville Georgia GA Gwinnett County 135 33.9464 -83.9912 +US 30246 Lawrenceville Georgia GA Gwinnett County 135 33.956 -83.9879 +US 30278 Snellville Georgia GA Gwinnett County 135 33.8505 -84.0208 +US 30515 Buford Georgia GA Gwinnett 135 33.9604 -84.0379 +US 30518 Buford Georgia GA Gwinnett 135 34.1124 -83.9965 +US 30519 Buford Georgia GA Gwinnett 135 34.0797 -83.9308 +US 30510 Alto Georgia GA Habersham 137 34.4591 -83.602 +US 30523 Clarkesville Georgia GA Habersham 137 34.645 -83.5243 +US 30531 Cornelia Georgia GA Habersham 137 34.5209 -83.5453 +US 30535 Demorest Georgia GA Habersham 137 34.5756 -83.5696 +US 30544 Demorest Georgia GA Habersham 137 34.5931 -83.5629 +US 30563 Mount Airy Georgia GA Habersham 137 34.5678 -83.4713 +US 30580 Turnerville Georgia GA Habersham 137 34.6766 -83.4358 +US 30596 Alto Georgia GA Habersham 137 34.6294 -83.5099 +US 30501 Gainesville Georgia GA Hall 139 34.3073 -83.8256 +US 30502 Chestnut Mountain Georgia GA Hall 139 34.213 -83.7949 +US 30503 Gainesville Georgia GA Hall 139 34.3454 -83.9505 +US 30504 Gainesville Georgia GA Hall 139 34.2723 -83.8793 +US 30505 Gainesville Georgia GA Hall 139 34.3062 -83.8389 +US 30506 Gainesville Georgia GA Hall 139 34.3562 -83.8882 +US 30507 Gainesville Georgia GA Hall 139 34.2591 -83.7716 +US 30527 Clermont Georgia GA Hall 139 34.4761 -83.7853 +US 30542 Flowery Branch Georgia GA Hall 139 34.1819 -83.9024 +US 30543 Gillsville Georgia GA Hall 139 34.3001 -83.6757 +US 30554 Lula Georgia GA Hall 139 34.3985 -83.6945 +US 30564 Murrayville Georgia GA Hall 139 34.4342 -83.8949 +US 30566 Oakwood Georgia GA Hall 139 34.2372 -83.894 +US 31087 Sparta Georgia GA Hancock 141 33.2571 -83.0892 +US 30110 Bremen Georgia GA Haralson 143 33.7309 -85.1286 +US 30113 Buchanan Georgia GA Haralson 143 33.8283 -85.1506 +US 30140 Felton Georgia GA Haralson 143 33.8823 -85.2349 +US 30176 Tallapoosa Georgia GA Haralson 143 33.7602 -85.3 +US 30182 Waco Georgia GA Haralson 143 33.684 -85.2197 +US 31804 Cataula Georgia GA Harris 145 32.6242 -84.9207 +US 31807 Ellerslie Georgia GA Harris 145 32.6312 -84.7895 +US 31811 Hamilton Georgia GA Harris 145 32.7418 -84.8848 +US 31822 Pine Mountain Georgia GA Harris 145 32.8735 -84.896 +US 31823 Pine Mountain Valley Georgia GA Harris 145 32.8226 -84.8204 +US 31826 Shiloh Georgia GA Harris 145 32.8067 -84.7412 +US 31831 Waverly Hall Georgia GA Harris 145 32.6793 -84.7425 +US 30516 Bowersville Georgia GA Hart 147 34.3996 -83.0484 +US 30643 Hartwell Georgia GA Hart 147 34.3571 -82.9296 +US 30217 Franklin Georgia GA Heard 149 33.278 -85.134 +US 30219 Glenn Georgia GA Heard 149 33.1572 -85.1706 +US 30228 Hampton Georgia GA Henry 151 33.4124 -84.2947 +US 30235 Jersey Georgia GA Henry County 151 33.7154 -83.7987 +US 30248 Locust Grove Georgia GA Henry 151 33.3449 -84.0982 +US 30249 Loganville Georgia GA Henry County 151 33.8312 -83.9002 +US 30252 Mcdonough Georgia GA Henry 151 33.4768 -84.055 +US 30253 Mcdonough Georgia GA Henry 151 33.451 -84.1544 +US 30281 Stockbridge Georgia GA Henry 151 33.5633 -84.2165 +US 30352 Atlanta Georgia GA Henry County 151 33.6597 -84.3569 +US 31005 Bonaire Georgia GA Houston 153 32.546 -83.6047 +US 31013 Clinchfield Georgia GA Houston 153 32.3386 -83.6926 +US 31025 Elko Georgia GA Houston 153 32.3336 -83.7304 +US 31028 Centerville Georgia GA Houston 153 32.6344 -83.6768 +US 31047 Kathleen Georgia GA Houston 153 32.4672 -83.6128 +US 31069 Perry Georgia GA Houston 153 32.4605 -83.7283 +US 31088 Warner Robins Georgia GA Houston 153 32.5934 -83.6416 +US 31093 Warner Robins Georgia GA Houston 153 32.6368 -83.6395 +US 31095 Warner Robins Georgia GA Houston 153 32.4874 -83.6697 +US 31098 Warner Robins Georgia GA Houston 153 32.6181 -83.5739 +US 31099 Warner Robins Georgia GA Houston 153 32.6462 -83.6513 +US 31760 Irwinville Georgia GA Irwin 155 31.7063 -83.4086 +US 31769 Mystic Georgia GA Irwin 155 31.6209 -83.2498 +US 31774 Ocilla Georgia GA Irwin 155 31.5929 -83.2565 +US 31798 Wray Georgia GA Irwin 155 31.5952 -83.1075 +US 30517 Braselton Georgia GA Jackson 157 34.1389 -83.7812 +US 30529 Commerce Georgia GA Jackson 157 34.2134 -83.448 +US 30530 Commerce Georgia GA Jackson 157 34.1683 -83.4022 +US 30548 Hoschton Georgia GA Jackson 157 34.0866 -83.7803 +US 30549 Jefferson Georgia GA Jackson 157 34.1062 -83.5708 +US 30565 Nicholson Georgia GA Jackson 157 34.097 -83.421 +US 30567 Pendergrass Georgia GA Jackson 157 34.1796 -83.6634 +US 30575 Talmo Georgia GA Jackson 157 34.1951 -83.7187 +US 30599 Commerce Georgia GA Jackson 157 34.1306 -83.5874 +US 30055 Mansfield Georgia GA Jasper 159 33.4314 -83.7908 +US 31038 Hillsboro Georgia GA Jasper 159 33.1421 -83.6404 +US 31064 Monticello Georgia GA Jasper 159 33.3118 -83.714 +US 31085 Shady Dale Georgia GA Jasper 159 33.435 -83.6269 +US 31532 Denton Georgia GA Jeff Davis 161 31.7226 -82.7526 +US 31539 Hazlehurst Georgia GA Jeff Davis 161 31.8606 -82.5909 +US 30413 Bartow Georgia GA Jefferson 163 32.8632 -82.4708 +US 30434 Louisville Georgia GA Jefferson 163 33.0163 -82.3836 +US 30477 Wadley Georgia GA Jefferson 163 32.8747 -82.4025 +US 30803 Avera Georgia GA Jefferson 163 33.141 -82.515 +US 30818 Matthews Georgia GA Jefferson 163 33.2652 -82.3294 +US 30823 Stapleton Georgia GA Jefferson 163 33.1894 -82.4597 +US 30833 Wrens Georgia GA Jefferson 163 33.2104 -82.381 +US 30442 Millen Georgia GA Jenkins 165 32.7877 -81.9618 +US 30822 Perkins Georgia GA Jenkins 165 32.9129 -81.8538 +US 31049 Kite Georgia GA Johnson 167 32.7078 -82.5274 +US 31096 Wrightsville Georgia GA Johnson 167 32.7219 -82.7262 +US 31032 Gray Georgia GA Jones 169 33.0172 -83.54 +US 31033 Haddock Georgia GA Jones 169 33.0519 -83.4312 +US 30203 Auburn Georgia GA Lamar County 171 34.009 -83.825 +US 30204 Barnesville Georgia GA Lamar 171 33.0457 -84.1515 +US 30257 Milner Georgia GA Lamar 171 33.141 -84.1759 +US 31635 Lakeland Georgia GA Lanier 173 31.0381 -83.0889 +US 31649 Stockton Georgia GA Lanier 173 31.0229 -83.0139 +US 30454 Rockledge Georgia GA Laurens 175 32.3915 -82.7479 +US 31009 Cadwell Georgia GA Laurens 175 32.3174 -83.0268 +US 31019 Dexter Georgia GA Laurens 175 32.4356 -83.0528 +US 31021 Dublin Georgia GA Laurens 175 32.4593 -82.9381 +US 31022 Dudley Georgia GA Laurens 175 32.5259 -83.0899 +US 31027 Dublin Georgia GA Laurens 175 32.5524 -82.7817 +US 31040 Dublin Georgia GA Laurens 175 32.5401 -82.915 +US 31065 Montrose Georgia GA Laurens 175 32.5619 -83.1601 +US 31075 Rentz Georgia GA Laurens 175 32.3799 -82.967 +US 31763 Leesburg Georgia GA Lee 177 31.6812 -84.1593 +US 31787 Smithville Georgia GA Lee 177 31.8847 -84.2271 +US 31132 Atlanta Georgia GA Liberty County 179 33.7488 -84.3883 +US 31301 Allenhurst Georgia GA Liberty 179 31.7741 -81.6186 +US 31309 Fleming Georgia GA Liberty 179 31.8645 -81.4232 +US 31310 Hinesville Georgia GA Liberty 179 31.8068 -81.4371 +US 31313 Hinesville Georgia GA Liberty 179 31.8513 -81.6072 +US 31314 Fort Stewart Georgia GA Liberty 179 31.8701 -81.6318 +US 31315 Fort Stewart Georgia GA Liberty 179 31.8938 -81.5902 +US 31320 Midway Georgia GA Liberty 179 31.8018 -81.3909 +US 31323 Riceboro Georgia GA Liberty 179 31.7357 -81.4671 +US 31333 Walthourville Georgia GA Liberty 179 31.7705 -81.6208 +US 30817 Lincolnton Georgia GA Lincoln 181 33.7773 -82.4435 +US 31316 Ludowici Georgia GA Long 183 31.7705 -81.7453 +US 31601 Valdosta Georgia GA Lowndes 185 30.7539 -83.3321 +US 31602 Valdosta Georgia GA Lowndes 185 30.8931 -83.3278 +US 31603 Valdosta Georgia GA Lowndes 185 30.828 -83.2522 +US 31604 Valdosta Georgia GA Lowndes 185 30.828 -83.2522 +US 31605 Valdosta Georgia GA Lowndes 185 30.946 -83.2474 +US 31606 Valdosta Georgia GA Lowndes 185 30.7989 -83.1891 +US 31632 Hahira Georgia GA Lowndes 185 30.9416 -83.3574 +US 31636 Lake Park Georgia GA Lowndes 185 30.6906 -83.1753 +US 31641 Naylor Georgia GA Lowndes 185 30.8985 -83.1224 +US 31698 Valdosta Georgia GA Lowndes 185 30.8485 -83.2878 +US 31699 Valdosta Georgia GA Lowndes 185 30.9751 -83.2072 +US 30533 Dahlonega Georgia GA Lumpkin 187 34.5299 -83.9798 +US 30597 Dahlonega Georgia GA Lumpkin 187 34.5277 -83.9809 +US 30806 Boneville Georgia GA McDuffie 189 33.528 -82.5104 +US 30808 Dearing Georgia GA McDuffie 189 33.407 -82.3955 +US 30824 Thomson Georgia GA McDuffie 189 33.4774 -82.4942 +US 31304 Crescent Georgia GA McIntosh 191 31.4951 -81.3819 +US 31305 Darien Georgia GA McIntosh 191 31.3826 -81.4312 +US 31319 Meridian Georgia GA McIntosh 191 31.459 -81.3689 +US 31327 Sapelo Island Georgia GA McIntosh 191 31.4951 -81.3819 +US 31331 Townsend Georgia GA McIntosh 191 31.5673 -81.4182 +US 31332 Valona Georgia GA McIntosh 191 31.4951 -81.3819 +US 31041 Ideal Georgia GA Macon 193 32.393 -84.1481 +US 31057 Marshallville Georgia GA Macon 193 32.452 -83.9435 +US 31068 Oglethorpe Georgia GA Macon 193 32.2842 -84.083 +US 30627 Carlton Georgia GA Madison 195 33.9852 -83.0038 +US 30628 Colbert Georgia GA Madison 195 34.0382 -83.2191 +US 30629 Comer Georgia GA Madison 195 34.0888 -83.122 +US 30633 Danielsville Georgia GA Madison 195 34.1708 -83.2758 +US 30646 Hull Georgia GA Madison 195 34.0478 -83.311 +US 30647 Ila Georgia GA Madison 195 34.1202 -83.2881 +US 31803 Buena Vista Georgia GA Marion 197 32.2542 -84.4898 +US 30218 Gay Georgia GA Meriwether 199 33.1274 -84.5836 +US 30222 Greenville Georgia GA Meriwether 199 33.0468 -84.7402 +US 30251 Luthersville Georgia GA Meriwether 199 33.1798 -84.7577 +US 30293 Woodbury Georgia GA Meriwether 199 32.9813 -84.5986 +US 31816 Manchester Georgia GA Meriwether 199 32.8721 -84.6312 +US 31830 Warm Springs Georgia GA Meriwether 199 32.9063 -84.7167 +US 31737 Colquitt Georgia GA Miller 201 31.1619 -84.7309 +US 39817 Bainbridge Georgia GA Miller County 201 30.9381 -84.5934 +US 31716 Baconton Georgia GA Mitchell 205 31.3878 -84.1135 +US 31730 Camilla Georgia GA Mitchell 205 31.2199 -84.2297 +US 31739 Cotton Georgia GA Mitchell 205 31.2604 -84.2531 +US 31779 Pelham Georgia GA Mitchell 205 31.1272 -84.1564 +US 31784 Sale City Georgia GA Mitchell 205 31.26 -84.0422 +US 31004 Bolingbroke Georgia GA Monroe 207 32.947 -83.8006 +US 31016 Culloden Georgia GA Monroe 207 32.9003 -84.0626 +US 31029 Forsyth Georgia GA Monroe 207 33.0508 -83.9362 +US 31046 Juliette Georgia GA Monroe 207 33.1194 -83.8235 +US 31086 Smarr Georgia GA Monroe 207 32.9895 -83.8761 +US 30410 Ailey Georgia GA Montgomery 209 32.2143 -82.4762 +US 30412 Alston Georgia GA Montgomery 209 32.0775 -82.4825 +US 30445 Mount Vernon Georgia GA Montgomery 209 32.184 -82.5867 +US 30470 Tarrytown Georgia GA Montgomery 209 32.1888 -82.5221 +US 30473 Uvalda Georgia GA Montgomery 209 32.0483 -82.5089 +US 30623 Bostwick Georgia GA Morgan 211 33.7542 -83.5111 +US 30625 Buckhead Georgia GA Morgan 211 33.5368 -83.3435 +US 30645 High Shoals Georgia GA Morgan 211 33.8013 -83.5164 +US 30650 Madison Georgia GA Morgan 211 33.5947 -83.4618 +US 30663 Rutledge Georgia GA Morgan 211 33.6163 -83.6023 +US 30705 Chatsworth Georgia GA Murray 213 34.7589 -84.7943 +US 30708 Cisco Georgia GA Murray 213 34.9618 -84.6646 +US 30711 Crandall Georgia GA Murray 213 34.9412 -84.7645 +US 30724 Eton Georgia GA Murray 213 34.7878 -84.7779 +US 30751 Tennga Georgia GA Murray 213 34.9814 -84.7352 +US 31808 Fortson Georgia GA Muscogee 215 32.6288 -85.0017 +US 31820 Midland Georgia GA Muscogee 215 32.5616 -84.8559 +US 31829 Upatoi Georgia GA Muscogee 215 32.5601 -84.7448 +US 31900 Columbus Georgia GA Muscogee County 215 32.4841 -84.9431 +US 31901 Columbus Georgia GA Muscogee 215 32.473 -84.9795 +US 31902 Columbus Georgia GA Muscogee 215 32.5243 -84.9558 +US 31903 Columbus Georgia GA Muscogee 215 32.4245 -84.9481 +US 31904 Columbus Georgia GA Muscogee 215 32.5161 -84.9785 +US 31905 Fort Benning Georgia GA Muscogee 215 32.3923 -84.9315 +US 31906 Columbus Georgia GA Muscogee 215 32.4638 -84.9484 +US 31907 Columbus Georgia GA Muscogee 215 32.4779 -84.898 +US 31908 Columbus Georgia GA Muscogee 215 32.5349 -84.9065 +US 31909 Columbus Georgia GA Muscogee 215 32.5369 -84.9274 +US 31914 Columbus Georgia GA Muscogee 215 32.491 -84.8741 +US 31917 Columbus Georgia GA Muscogee 215 32.491 -84.8741 +US 31993 Columbus Georgia GA Muscogee 215 32.4821 -84.9771 +US 31994 Columbus Georgia GA Muscogee 215 32.491 -84.8741 +US 31995 Fort Benning Georgia GA Muscogee 215 32.4958 -84.964 +US 31997 Columbus Georgia GA Muscogee 215 32.491 -84.8741 +US 31998 Columbus Georgia GA Muscogee 215 32.491 -84.8741 +US 31999 Columbus Georgia GA Muscogee 215 32.491 -84.8741 +US 30014 Covington Georgia GA Newton 217 33.5293 -83.8496 +US 30015 Covington Georgia GA Newton 217 33.5558 -83.8649 +US 30016 Covington Georgia GA Newton 217 33.5146 -83.8626 +US 30054 Oxford Georgia GA Newton 217 33.6706 -83.874 +US 30056 Newborn Georgia GA Newton 217 33.5149 -83.7072 +US 30070 Porterdale Georgia GA Newton 217 33.5712 -83.8951 +US 30209 Covington Georgia GA Newton County 217 33.5746 -83.8854 +US 30210 Covington Georgia GA Newton County 217 33.5965 -83.8601 +US 30267 Oxford Georgia GA Newton County 217 33.6806 -83.864 +US 30621 Bishop Georgia GA Oconee 219 33.8081 -83.4777 +US 30622 Bogart Georgia GA Oconee 219 33.934 -83.5055 +US 30638 Farmington Georgia GA Oconee 219 33.7558 -83.4201 +US 30677 Watkinsville Georgia GA Oconee 219 33.8542 -83.408 +US 30619 Arnoldsville Georgia GA Oglethorpe 221 33.8803 -83.2341 +US 30630 Crawford Georgia GA Oglethorpe 221 33.9076 -83.1646 +US 30648 Lexington Georgia GA Oglethorpe 221 33.8799 -83.0858 +US 30667 Stephens Georgia GA Oglethorpe 221 33.7715 -83.1159 +US 30671 Maxeys Georgia GA Oglethorpe 221 33.7405 -83.1706 +US 30130 Cumming Georgia GA Paulding County 223 34.2216 -84.1537 +US 30131 Cumming Georgia GA Paulding County 223 34.2041 -84.0951 +US 30132 Dallas Georgia GA Paulding 223 33.9163 -84.8278 +US 30141 Hiram Georgia GA Paulding 223 33.8673 -84.7699 +US 30157 Dallas Georgia GA Paulding 223 33.9045 -84.8621 +US 30158 North Metro Georgia GA Paulding County 223 34.0035 -84.1505 +US 31008 Byron Georgia GA Peach 225 32.6181 -83.789 +US 31030 Fort Valley Georgia GA Peach 225 32.5496 -83.8887 +US 30143 Jasper Georgia GA Pickens 227 34.462 -84.4759 +US 30148 Marble Hill Georgia GA Pickens 227 34.4398 -84.303 +US 30175 Talking Rock Georgia GA Pickens 227 34.5394 -84.4912 +US 30177 Tate Georgia GA Pickens 227 34.4027 -84.3785 +US 31516 Blackshear Georgia GA Pierce 229 31.2931 -82.2617 +US 31518 Bristol Georgia GA Pierce 229 31.4833 -82.215 +US 31551 Mershon Georgia GA Pierce 229 31.4783 -82.217 +US 31556 Offerman Georgia GA Pierce 229 31.4126 -82.1155 +US 31557 Patterson Georgia GA Pierce 229 31.3903 -82.1274 +US 30206 Concord Georgia GA Pike 231 33.0998 -84.447 +US 30256 Meansville Georgia GA Pike 231 33.0134 -84.3169 +US 30258 Molena Georgia GA Pike 231 32.9978 -84.4558 +US 30292 Williamson Georgia GA Pike 231 33.1598 -84.3795 +US 30295 Zebulon Georgia GA Pike 231 33.1002 -84.3108 +US 30104 Aragon Georgia GA Polk 233 34.0666 -85.0696 +US 30125 Cedartown Georgia GA Polk 233 34.0112 -85.2459 +US 30138 Esom Hill Georgia GA Polk 233 33.9999 -85.1723 +US 30153 Rockmart Georgia GA Polk 233 33.9979 -85.0594 +US 30174 Suwanee Georgia GA Polk County 233 34.0554 -84.0803 +US 31036 Hawkinsville Georgia GA Pulaski 235 32.2778 -83.4948 +US 31024 Eatonton Georgia GA Putnam 237 33.3127 -83.3628 +US 31026 Eatonton Georgia GA Putnam County 237 33.3304 -83.377 +US 31754 Georgetown Georgia GA Quitman 239 31.8848 -85.0711 +US 31767 Morris Georgia GA Quitman 239 31.8814 -85.0245 +US 30525 Clayton Georgia GA Rabun 241 34.8826 -83.4065 +US 30537 Dillard Georgia GA Rabun 241 34.9777 -83.3199 +US 30552 Lakemont Georgia GA Rabun 241 34.7617 -83.4038 +US 30562 Mountain City Georgia GA Rabun 241 34.9144 -83.4028 +US 30568 Rabun Gap Georgia GA Rabun 241 34.9576 -83.3901 +US 30573 Tallulah Falls Georgia GA Rabun 241 34.742 -83.3977 +US 30576 Tiger Georgia GA Rabun 241 34.8174 -83.4333 +US 30581 Wiley Georgia GA Rabun 241 34.8045 -83.4191 +US 31736 Coleman Georgia GA Randolph 243 31.6568 -84.8745 +US 31740 Cuthbert Georgia GA Randolph 243 31.7691 -84.7889 +US 31786 Shellman Georgia GA Randolph 243 31.7434 -84.6166 +US 30805 Blythe Georgia GA Richmond 245 33.2941 -82.203 +US 30812 Gracewood Georgia GA Richmond 245 33.386 -82.091 +US 30815 Hephzibah Georgia GA Richmond 245 33.3433 -82.0887 +US 30901 Augusta Georgia GA Richmond 245 33.4601 -81.973 +US 30903 Augusta Georgia GA Richmond 245 33.386 -82.091 +US 30904 Augusta Georgia GA Richmond 245 33.4737 -82.0131 +US 30905 Augusta Georgia GA Richmond 245 33.413 -82.1337 +US 30906 Augusta Georgia GA Richmond 245 33.3589 -82.0099 +US 30907 Augusta Georgia GA Richmond 245 33.5229 -82.0852 +US 30909 Augusta Georgia GA Richmond 245 33.4717 -82.0834 +US 30910 Augusta Georgia GA Richmond 245 33.386 -82.091 +US 30911 Augusta Georgia GA Richmond 245 33.386 -82.091 +US 30912 Augusta Georgia GA Richmond 245 33.4705 -81.9881 +US 30913 Augusta Georgia GA Richmond 245 33.386 -82.091 +US 30914 Augusta Georgia GA Richmond 245 33.386 -82.091 +US 30916 Augusta Georgia GA Richmond 245 33.386 -82.091 +US 30919 Augusta Georgia GA Richmond 245 33.386 -82.091 +US 30999 Augusta Georgia GA Richmond 245 33.386 -82.091 +US 30012 Conyers Georgia GA Rockdale 247 33.7192 -84.0021 +US 30013 Conyers Georgia GA Rockdale 247 33.6436 -83.9684 +US 30094 Conyers Georgia GA Rockdale 247 33.6111 -84.0683 +US 30207 Conyers Georgia GA Rockdale County 247 33.6831 -84.0198 +US 30208 Conyers Georgia GA Rockdale County 247 33.6077 -84.0132 +US 31806 Ellaville Georgia GA Schley 249 32.239 -84.3039 +US 30424 Dover Georgia GA Screven 251 32.7676 -81.6291 +US 30446 Newington Georgia GA Screven 251 32.581 -81.4826 +US 30449 Oliver Georgia GA Screven 251 32.5281 -81.5332 +US 30455 Rocky Ford Georgia GA Screven 251 32.723 -81.7933 +US 30467 Sylvania Georgia GA Screven 251 32.7439 -81.6287 +US 31745 Donalsonville Georgia GA Seminole 253 30.9818 -84.887 +US 31759 Iron City Georgia GA Seminole 253 30.9947 -84.7966 +US 39825 Brinson Georgia GA Seminole County 253 30.9788 -84.7373 +US 39859 Iron City Georgia GA Seminole County 253 31.013 -84.8138 +US 39861 Jakin Georgia GA Seminole County 253 31.1824 -85.0121 +US 30212 Experiment Georgia GA Spalding 255 33.2782 -84.2888 +US 30223 Griffin Georgia GA Spalding 255 33.2549 -84.2728 +US 30224 Griffin Georgia GA Spalding 255 33.2404 -84.2734 +US 30266 Orchard Hill Georgia GA Spalding 255 33.2657 -84.299 +US 30284 Sunny Side Georgia GA Spalding 255 33.3453 -84.2898 +US 30538 Eastanollee Georgia GA Stephens 257 34.5037 -83.2587 +US 30557 Martin Georgia GA Stephens 257 34.5155 -83.1686 +US 30577 Toccoa Georgia GA Stephens 257 34.5665 -83.3114 +US 30598 Toccoa Georgia GA Stephens 257 34.5918 -83.3525 +US 30598 Toccoa Falls Georgia GA Stephens 257 34.5942 -83.3557 +US 31814 Louvale Georgia GA Stewart 259 32.0766 -84.8497 +US 31815 Lumpkin Georgia GA Stewart 259 32.0435 -84.8022 +US 31821 Omaha Georgia GA Stewart 259 32.1176 -84.9711 +US 31825 Richland Georgia GA Stewart 259 32.0846 -84.6667 +US 31709 Americus Georgia GA Sumter 261 32.0404 -84.2153 +US 31710 Americus Georgia GA Sumter 261 32.0512 -84.1815 +US 31711 Andersonville Georgia GA Sumter 261 32.1559 -84.164 +US 31719 Americus Georgia GA Sumter County 261 32.0833 -84.2975 +US 31735 Cobb Georgia GA Sumter 261 31.9617 -83.9581 +US 31743 De Soto Georgia GA Sumter 261 31.9502 -84.0271 +US 31764 Leslie Georgia GA Sumter 261 31.954 -84.0783 +US 31780 Plains Georgia GA Sumter 261 32.0339 -84.3586 +US 31801 Box Springs Georgia GA Talbot 263 32.5195 -84.5927 +US 31810 Geneva Georgia GA Talbot 263 32.7011 -84.4949 +US 31812 Junction City Georgia GA Talbot 263 32.608 -84.4574 +US 31827 Talbotton Georgia GA Talbot 263 32.6797 -84.5462 +US 31836 Woodland Georgia GA Talbot 263 32.79 -84.5654 +US 30631 Crawfordville Georgia GA Taliaferro 265 33.5708 -82.8872 +US 30664 Sharon Georgia GA Taliaferro 265 33.56 -82.7948 +US 30420 Cobbtown Georgia GA Tattnall 267 32.2642 -82.1333 +US 30421 Collins Georgia GA Tattnall 267 32.1852 -82.1095 +US 30427 Glennville Georgia GA Tattnall 267 31.9467 -81.9483 +US 30438 Manassas Georgia GA Tattnall 267 32.0507 -81.9983 +US 30453 Reidsville Georgia GA Tattnall 267 32.0548 -82.1478 +US 30499 Reidsville Georgia GA Tattnall 267 32.0507 -81.9983 +US 31006 Butler Georgia GA Taylor 269 32.5726 -84.2343 +US 31039 Howard Georgia GA Taylor 269 32.5598 -84.2277 +US 31058 Mauk Georgia GA Taylor 269 32.509 -84.3999 +US 31076 Reynolds Georgia GA Taylor 269 32.5541 -84.1011 +US 31081 Rupert Georgia GA Taylor 269 32.4325 -84.2738 +US 31037 Helena Georgia GA Telfair 271 32.0781 -82.9178 +US 31055 Mc Rae Georgia GA Telfair 271 32.0435 -82.8877 +US 31060 Milan Georgia GA Telfair 271 31.9618 -83.0588 +US 31083 Scotland Georgia GA Telfair 271 32.0841 -82.9123 +US 31544 Jacksonville Georgia GA Telfair 271 31.8481 -82.975 +US 31549 Lumber City Georgia GA Telfair 271 31.9251 -82.7073 +US 31726 Bronwood Georgia GA Terrell 273 31.8216 -84.3594 +US 31742 Dawson Georgia GA Terrell 273 31.7661 -84.4386 +US 31777 Parrott Georgia GA Terrell 273 31.9117 -84.5061 +US 31785 Sasser Georgia GA Terrell 273 31.69 -84.3275 +US 39826 Bronwood Georgia GA Terrell County 273 31.8308 -84.364 +US 39828 Cairo Georgia GA Terrell County 273 30.8768 -84.2091 +US 39885 Sasser Georgia GA Terrell County 273 31.7191 -84.3479 +US 31626 Boston Georgia GA Thomas 275 30.7855 -83.7971 +US 31738 Coolidge Georgia GA Thomas 275 30.9859 -83.8752 +US 31757 Thomasville Georgia GA Thomas 275 30.8536 -83.8883 +US 31758 Thomasville Georgia GA Thomas 275 30.8682 -83.9278 +US 31765 Meigs Georgia GA Thomas 275 31.0625 -84.0824 +US 31773 Ochlocknee Georgia GA Thomas 275 30.9594 -84.0326 +US 31778 Pavo Georgia GA Thomas 275 30.9401 -83.7409 +US 31792 Thomasville Georgia GA Thomas 275 30.8385 -83.9696 +US 31799 Thomasville Georgia GA Thomas 275 30.881 -83.8859 +US 31727 Brookfield Georgia GA Tift 277 31.4417 -83.5037 +US 31733 Chula Georgia GA Tift 277 31.5439 -83.5509 +US 31775 Omega Georgia GA Tift 277 31.33 -83.5974 +US 31793 Tifton Georgia GA Tift 277 31.4619 -83.5873 +US 31794 Tifton Georgia GA Tift 277 31.4639 -83.4999 +US 31795 Ty Ty Georgia GA Tift 277 31.4752 -83.5921 +US 30436 Lyons Georgia GA Toombs 279 32.1711 -82.3078 +US 30474 Vidalia Georgia GA Toombs 279 32.1934 -82.4067 +US 30475 Vidalia Georgia GA Toombs 279 32.1775 -82.3739 +US 30546 Hiawassee Georgia GA Towns 281 34.9063 -83.7274 +US 30582 Young Harris Georgia GA Towns 281 34.9588 -83.8688 +US 30457 Soperton Georgia GA Treutlen 283 32.3869 -82.5871 +US 30230 Hogansville Georgia GA Troup 285 33.1644 -84.9309 +US 30240 Lagrange Georgia GA Troup 285 33.0243 -85.0739 +US 30241 Lagrange Georgia GA Troup 285 33.0249 -84.9577 +US 30261 Lagrange Georgia GA Troup 285 33.0457 -85.049 +US 31833 West Point Georgia GA Troup 285 32.8337 -85.1197 +US 31714 Ashburn Georgia GA Turner 287 31.7059 -83.6608 +US 31783 Rebecca Georgia GA Turner 287 31.7979 -83.5235 +US 31790 Sycamore Georgia GA Turner 287 31.6553 -83.6064 +US 31017 Danville Georgia GA Twiggs 289 32.593 -83.3033 +US 31020 Dry Branch Georgia GA Twiggs 289 32.7151 -83.4558 +US 31044 Jeffersonville Georgia GA Twiggs 289 32.7411 -83.3859 +US 30051 Forest Park Georgia GA Union County 291 33.6185 -84.3543 +US 30512 Blairsville Georgia GA Union 291 34.8763 -83.992 +US 30514 Blairsville Georgia GA Union 291 34.9034 -84.0192 +US 30572 Suches Georgia GA Union 291 34.7253 -84.0496 +US 30285 The Rock Georgia GA Upson 293 32.9717 -84.2424 +US 30286 Thomaston Georgia GA Upson 293 32.9015 -84.3324 +US 31097 Yatesville Georgia GA Upson 293 32.9156 -84.1593 +US 30707 Chickamauga Georgia GA Walker 295 34.858 -85.3221 +US 30725 Flintstone Georgia GA Walker 295 34.9252 -85.3524 +US 30728 La Fayette Georgia GA Walker 295 34.692 -85.2602 +US 30739 Rock Spring Georgia GA Walker 295 34.8065 -85.2415 +US 30741 Rossville Georgia GA Walker 295 34.9535 -85.2968 +US 30750 Lookout Mountain Georgia GA Walker 295 34.9335 -85.3794 +US 30018 Jersey Georgia GA Walton 297 33.718 -83.8015 +US 30025 Social Circle Georgia GA Walton 297 33.6791 -83.6835 +US 30279 Social Circle Georgia GA Walton County 297 33.6539 -83.7058 +US 30641 Good Hope Georgia GA Walton 297 33.7613 -83.595 +US 30655 Monroe Georgia GA Walton 297 33.7883 -83.7013 +US 30656 Monroe Georgia GA Walton 297 33.8386 -83.7104 +US 31501 Waycross Georgia GA Ware 299 31.2243 -82.3596 +US 31502 Waycross Georgia GA Ware 299 31.019 -82.4165 +US 31503 Waycross Georgia GA Ware 299 31.1932 -82.3766 +US 31550 Manor Georgia GA Ware 299 31.1088 -82.5742 +US 31552 Millwood Georgia GA Ware 299 31.2506 -82.6441 +US 31564 Waresboro Georgia GA Ware 299 31.019 -82.4165 +US 30807 Camak Georgia GA Warren 301 33.4471 -82.6422 +US 30819 Mesena Georgia GA Warren 301 33.4324 -82.6252 +US 30821 Norwood Georgia GA Warren 301 33.4789 -82.7356 +US 30828 Warrenton Georgia GA Warren 301 33.4091 -82.6357 +US 31045 Jewell Georgia GA Warren 301 33.2966 -82.7556 +US 30089 Decatur Georgia GA Washington County 303 33.7749 -84.3046 +US 31018 Davisboro Georgia GA Washington 303 32.9443 -82.6227 +US 31035 Harrison Georgia GA Washington 303 32.842 -82.7159 +US 31067 Oconee Georgia GA Washington 303 32.8767 -82.9469 +US 31082 Sandersville Georgia GA Washington 303 32.975 -82.8406 +US 31089 Tennille Georgia GA Washington 303 32.9063 -82.84 +US 31094 Warthen Georgia GA Washington 303 33.1255 -82.8039 +US 31545 Jesup Georgia GA Wayne 305 31.6043 -81.8871 +US 31546 Jesup Georgia GA Wayne 305 31.5319 -81.8049 +US 31555 Odum Georgia GA Wayne 305 31.6999 -81.9943 +US 31560 Screven Georgia GA Wayne 305 31.5168 -82.0397 +US 31598 Jesup Georgia GA Wayne 305 31.5782 -81.8802 +US 31599 Jesup Georgia GA Wayne 305 31.5782 -81.8802 +US 31824 Preston Georgia GA Webster 307 32.074 -84.5489 +US 31832 Weston Georgia GA Webster 307 31.9637 -84.5756 +US 39877 Parrott Georgia GA Webster County 307 31.8939 -84.5112 +US 30411 Alamo Georgia GA Wheeler 309 32.133 -82.7944 +US 30428 Glenwood Georgia GA Wheeler 309 32.1572 -82.6759 +US 30528 Cleveland Georgia GA White 311 34.5839 -83.75 +US 30545 Helen Georgia GA White 311 34.6866 -83.7399 +US 30571 Sautee Nacoochee Georgia GA White 311 34.7162 -83.6931 +US 30270 Peachtree City Georgia GA Whitfield County 313 33.3968 -84.59 +US 30710 Cohutta Georgia GA Whitfield 313 34.9326 -84.9458 +US 30719 Dalton Georgia GA Whitfield 313 34.8019 -84.9898 +US 30720 Dalton Georgia GA Whitfield 313 34.7635 -84.9875 +US 30721 Dalton Georgia GA Whitfield 313 34.7792 -84.9339 +US 30722 Dalton Georgia GA Whitfield 313 34.7595 -84.9513 +US 30740 Rocky Face Georgia GA Whitfield 313 34.7745 -85.0561 +US 30755 Tunnel Hill Georgia GA Whitfield 313 34.8541 -85.0468 +US 30756 Varnell Georgia GA Whitfield 313 34.9298 -84.9885 +US 31001 Abbeville Georgia GA Wilcox 315 31.9648 -83.3068 +US 31071 Pineview Georgia GA Wilcox 315 32.0907 -83.5158 +US 31072 Pitts Georgia GA Wilcox 315 31.9425 -83.5579 +US 31079 Rochelle Georgia GA Wilcox 315 31.9491 -83.445 +US 31084 Seville Georgia GA Wilcox 315 31.989 -83.3946 +US 30660 Rayle Georgia GA Wilkes 317 33.7856 -82.9504 +US 30668 Tignall Georgia GA Wilkes 317 33.8778 -82.747 +US 30673 Washington Georgia GA Wilkes 317 33.7265 -82.7429 +US 31003 Allentown Georgia GA Wilkinson 319 32.6064 -83.2095 +US 31031 Gordon Georgia GA Wilkinson 319 32.8813 -83.3029 +US 31042 Irwinton Georgia GA Wilkinson 319 32.8088 -83.174 +US 31054 Mc Intyre Georgia GA Wilkinson 319 32.8468 -83.204 +US 31090 Toomsboro Georgia GA Wilkinson 319 32.8219 -83.0844 +US 31772 Oakfield Georgia GA Worth 321 31.7798 -83.9706 +US 31781 Poulan Georgia GA Worth 321 31.5384 -83.7843 +US 31789 Sumner Georgia GA Worth 321 31.5392 -83.7245 +US 31791 Sylvester Georgia GA Worth 321 31.5393 -83.8607 +US 31796 Warwick Georgia GA Worth 321 31.7622 -83.8762 +US 96912 DEDEDO GU Bingham 011 39.0176 -122.0666 +US 96704 Captain Cook Hawaii HI Hawaii 001 19.4386 -155.8875 +US 96710 Hakalau Hawaii HI Hawaii 001 19.8882 -155.1333 +US 96718 Hawaii National Park Hawaii HI Hawaii 001 19.5935 -155.438 +US 96719 Hawi Hawaii HI Hawaii 001 20.238 -155.838 +US 96720 Hilo Hawaii HI Hawaii 001 19.7025 -155.0939 +US 96721 Hilo Hawaii HI Hawaii 001 19.5935 -155.438 +US 96725 Holualoa Hawaii HI Hawaii 001 19.6103 -155.9176 +US 96726 Honaunau Hawaii HI Hawaii 001 19.2783 -155.8453 +US 96727 Honokaa Hawaii HI Hawaii 001 20.0827 -155.488 +US 96728 Honomu Hawaii HI Hawaii 001 19.8728 -155.1177 +US 96737 Ocean View Hawaii HI Hawaii 001 19.1002 -155.7258 +US 96738 Waikoloa Hawaii HI Hawaii 001 19.9724 -155.818 +US 96739 Keauhou Hawaii HI Hawaii 001 19.5935 -155.438 +US 96740 Kailua Kona Hawaii HI Hawaii 001 19.6531 -155.9798 +US 96743 Kamuela Hawaii HI Hawaii 001 20.0081 -155.7052 +US 96745 Kailua Kona Hawaii HI Hawaii 001 19.5935 -155.438 +US 96749 Keaau Hawaii HI Hawaii 001 19.5893 -154.9926 +US 96750 Kealakekua Hawaii HI Hawaii 001 19.5261 -155.93 +US 96755 Kapaau Hawaii HI Hawaii 001 20.2183 -155.799 +US 96760 Kurtistown Hawaii HI Hawaii 001 19.5693 -155.0349 +US 96764 Laupahoehoe Hawaii HI Hawaii 001 19.9802 -155.2323 +US 96771 Mountain View Hawaii HI Hawaii 001 19.5506 -155.0864 +US 96772 Naalehu Hawaii HI Hawaii 001 19.0668 -155.6575 +US 96773 Ninole Hawaii HI Hawaii 001 19.935 -155.1668 +US 96774 Ookala Hawaii HI Hawaii 001 20.0119 -155.2747 +US 96775 Paauhau Hawaii HI Hawaii 001 19.5935 -155.438 +US 96776 Paauilo Hawaii HI Hawaii 001 20.0271 -155.3697 +US 96777 Pahala Hawaii HI Hawaii 001 19.2079 -155.4815 +US 96778 Pahoa Hawaii HI Hawaii 001 19.5089 -154.9231 +US 96780 Papaaloa Hawaii HI Hawaii 001 19.9048 -155.2184 +US 96781 Papaikou Hawaii HI Hawaii 001 19.7916 -155.0984 +US 96783 Pepeekeo Hawaii HI Hawaii 001 19.8353 -155.113 +US 96785 Volcano Hawaii HI Hawaii 001 19.4801 -155.1974 +US 96701 Aiea Hawaii HI Honolulu 003 21.3908 -157.9332 +US 96706 Ewa Beach Hawaii HI Honolulu 003 21.3274 -158.0103 +US 96707 Kapolei Hawaii HI Honolulu 003 21.3453 -158.087 +US 96709 Kapolei Hawaii HI Honolulu 003 21.3233 -158.0058 +US 96712 Haleiwa Hawaii HI Honolulu 003 21.6312 -158.0693 +US 96717 Hauula Hawaii HI Honolulu 003 21.6139 -157.9157 +US 96730 Kaaawa Hawaii HI Honolulu 003 21.5481 -157.8495 +US 96731 Kahuku Hawaii HI Honolulu 003 21.675 -157.9725 +US 96734 Kailua Hawaii HI Honolulu 003 21.4063 -157.7448 +US 96744 Kaneohe Hawaii HI Honolulu 003 21.4228 -157.8115 +US 96759 Kunia Hawaii HI Honolulu 003 21.463 -158.0639 +US 96762 Laie Hawaii HI Honolulu 003 21.6253 -157.941 +US 96782 Pearl City Hawaii HI Honolulu 003 21.4084 -157.9652 +US 96786 Wahiawa Hawaii HI Honolulu 003 21.5006 -158.0435 +US 96789 Mililani Hawaii HI Honolulu 003 21.4531 -158.0174 +US 96791 Waialua Hawaii HI Honolulu 003 21.5766 -158.1267 +US 96792 Waianae Hawaii HI Honolulu 003 21.4352 -158.1781 +US 96795 Waimanalo Hawaii HI Honolulu 003 21.3418 -157.7131 +US 96797 Waipahu Hawaii HI Honolulu 003 21.3982 -158.0124 +US 96801 Honolulu Hawaii HI Honolulu 003 21.3278 -157.8294 +US 96802 Honolulu Hawaii HI Honolulu 003 21.306 -157.8587 +US 96803 Honolulu Hawaii HI Honolulu 003 21.306 -157.8585 +US 96804 Honolulu Hawaii HI Honolulu 003 21.306 -157.8585 +US 96805 Honolulu Hawaii HI Honolulu 003 21.3062 -157.8585 +US 96806 Honolulu Hawaii HI Honolulu 003 21.3062 -157.8585 +US 96807 Honolulu Hawaii HI Honolulu 003 21.3062 -157.8585 +US 96808 Honolulu Hawaii HI Honolulu 003 21.3062 -157.8585 +US 96809 Honolulu Hawaii HI Honolulu 003 21.3062 -157.8585 +US 96810 Honolulu Hawaii HI Honolulu 003 21.3062 -157.8585 +US 96811 Honolulu Hawaii HI Honolulu 003 21.3278 -157.8294 +US 96812 Honolulu Hawaii HI Honolulu 003 21.3061 -157.8585 +US 96813 Honolulu Hawaii HI Honolulu 003 21.3179 -157.8521 +US 96814 Honolulu Hawaii HI Honolulu 003 21.2998 -157.8439 +US 96815 Honolulu Hawaii HI Honolulu 003 21.2811 -157.8266 +US 96816 Honolulu Hawaii HI Honolulu 003 21.2887 -157.8006 +US 96817 Honolulu Hawaii HI Honolulu 003 21.3295 -157.8615 +US 96818 Honolulu Hawaii HI Honolulu 003 21.3532 -157.9269 +US 96819 Honolulu Hawaii HI Honolulu 003 21.3488 -157.8759 +US 96820 Honolulu Hawaii HI Honolulu 003 21.351 -157.8795 +US 96821 Honolulu Hawaii HI Honolulu 003 21.2928 -157.7552 +US 96822 Honolulu Hawaii HI Honolulu 003 21.3117 -157.8298 +US 96823 Honolulu Hawaii HI Honolulu 003 21.3072 -157.8465 +US 96824 Honolulu Hawaii HI Honolulu 003 21.2808 -157.7552 +US 96825 Honolulu Hawaii HI Honolulu 003 21.2987 -157.6985 +US 96826 Honolulu Hawaii HI Honolulu 003 21.2941 -157.8284 +US 96827 Honolulu Hawaii HI Honolulu 003 21.3172 -157.8643 +US 96828 Honolulu Hawaii HI Honolulu 003 21.294 -157.8226 +US 96830 Honolulu Hawaii HI Honolulu 003 21.2841 -157.834 +US 96835 Honolulu Hawaii HI Honolulu 003 21.3278 -157.8294 +US 96836 Honolulu Hawaii HI Honolulu 003 21.2899 -157.8384 +US 96837 Honolulu Hawaii HI Honolulu 003 21.315 -157.8633 +US 96838 Honolulu Hawaii HI Honolulu 003 21.349 -157.875 +US 96839 Honolulu Hawaii HI Honolulu 003 21.3206 -157.8126 +US 96840 Honolulu Hawaii HI Honolulu 003 21.3068 -157.8607 +US 96841 Honolulu Hawaii HI Honolulu 003 21.3103 -157.8594 +US 96842 Honolulu Hawaii HI Honolulu 003 21.3278 -157.8294 +US 96843 Honolulu Hawaii HI Honolulu 003 21.3055 -157.853 +US 96844 Honolulu Hawaii HI Honolulu 003 21.2951 -157.8162 +US 96845 Honolulu Hawaii HI Honolulu 003 21.3278 -157.8294 +US 96846 Honolulu Hawaii HI Honolulu 003 21.3206 -157.8699 +US 96847 Honolulu Hawaii HI Honolulu 003 21.3022 -157.8443 +US 96848 Honolulu Hawaii HI Honolulu 003 21.3206 -157.8126 +US 96849 Honolulu Hawaii HI Honolulu 003 21.3341 -157.9172 +US 96850 Honolulu Hawaii HI Honolulu 003 21.3095 -157.863 +US 96853 Hickam Afb Hawaii HI Honolulu 003 21.3347 -157.9346 +US 96854 Wheeler Army Airfield Hawaii HI Honolulu 003 21.4877 -158.0351 +US 96857 Schofield Barracks Hawaii HI Honolulu 003 21.4963 -158.0646 +US 96858 Fort Shafter Hawaii HI Honolulu 003 21.3416 -157.8918 +US 96859 Tripler Army Medical Ctr Hawaii HI Honolulu 003 21.349 -157.875 +US 96860 Pearl Harbor Hawaii HI Honolulu 003 21.3538 -157.9394 +US 96861 Camp H M Smith Hawaii HI Honolulu 003 21.3967 -157.8994 +US 96862 Barbers Point N A S Hawaii HI Honolulu 003 21.319 -158.0749 +US 96863 M C B H Kaneohe Bay Hawaii HI Honolulu 003 21.3913 -157.7524 +US 96898 Wake Island Hawaii HI Honolulu 003 19.2836 166.6419 +US 96703 Anahola Hawaii HI Kauai 007 22.1533 -159.3478 +US 96705 Eleele Hawaii HI Kauai 007 21.9377 -159.6452 +US 96714 Hanalei Hawaii HI Kauai 007 22.1603 -159.5471 +US 96715 Hanamaulu Hawaii HI Kauai 007 21.98 -159.5124 +US 96716 Hanapepe Hawaii HI Kauai 007 21.9156 -159.592 +US 96722 Princeville Hawaii HI Kauai 007 22.2192 -159.4866 +US 96741 Kalaheo Hawaii HI Kauai 007 21.9259 -159.5303 +US 96746 Kapaa Hawaii HI Kauai 007 22.0868 -159.3448 +US 96747 Kaumakani Hawaii HI Kauai 007 21.9213 -159.6241 +US 96751 Kealia Hawaii HI Kauai 007 22.106 -159.3085 +US 96752 Kekaha Hawaii HI Kauai 007 21.9735 -159.7199 +US 96754 Kilauea Hawaii HI Kauai 007 22.2073 -159.3954 +US 96756 Koloa Hawaii HI Kauai 007 21.9083 -159.4749 +US 96765 Lawai Hawaii HI Kauai 007 21.9309 -159.4993 +US 96766 Lihue Hawaii HI Kauai 007 21.9816 -159.3683 +US 96769 Makaweli Hawaii HI Kauai 007 21.9454 -159.9214 +US 96796 Waimea Hawaii HI Kauai 007 21.9685 -159.6694 +US 96708 Haiku Hawaii HI Maui 009 20.9071 -156.3 +US 96713 Hana Hawaii HI Maui 009 20.7616 -156.0397 +US 96729 Hoolehua Hawaii HI Maui 009 21.173 -157.0791 +US 96732 Kahului Hawaii HI Maui 009 20.8814 -156.4783 +US 96733 Kahului Hawaii HI Maui 009 20.8666 -156.6467 +US 96742 Kalaupapa Hawaii HI Maui 009 21.1929 -156.9835 +US 96748 Kaunakakai Hawaii HI Maui 009 21.0905 -156.969 +US 96753 Kihei Hawaii HI Maui 009 20.7441 -156.4475 +US 96757 Kualapuu Hawaii HI Maui 009 21.1601 -157.0277 +US 96761 Lahaina Hawaii HI Maui 009 20.9174 -156.6772 +US 96763 Lanai City Hawaii HI Maui 009 20.8293 -156.921 +US 96767 Lahaina Hawaii HI Maui 009 20.8666 -156.6467 +US 96768 Makawao Hawaii HI Maui 009 20.8469 -156.3327 +US 96770 Maunaloa Hawaii HI Maui 009 21.1422 -157.2193 +US 96779 Paia Hawaii HI Maui 009 20.9154 -156.3802 +US 96784 Puunene Hawaii HI Maui 009 20.8666 -156.6467 +US 96788 Pukalani Hawaii HI Maui 009 20.8559 -156.3259 +US 96790 Kula Hawaii HI Maui 009 20.7534 -156.326 +US 96793 Wailuku Hawaii HI Maui 009 20.8966 -156.5036 +US 50002 Adair Iowa IA Adair 001 41.5137 -94.6444 +US 50837 Bridgewater Iowa IA Adair 001 41.2589 -94.6669 +US 50846 Fontanelle Iowa IA Adair 001 41.2896 -94.5419 +US 50849 Greenfield Iowa IA Adair 001 41.3133 -94.4408 +US 50858 Orient Iowa IA Adair 001 41.2192 -94.3705 +US 50839 Carbon Iowa IA Adams 003 41.0487 -94.8231 +US 50841 Corning Iowa IA Adams 003 40.9871 -94.7358 +US 50857 Nodaway Iowa IA Adams 003 40.954 -94.8731 +US 50859 Prescott Iowa IA Adams 003 41.0577 -94.5942 +US 52140 Dorchester Iowa IA Allamakee 005 43.4421 -91.5076 +US 52146 Harpers Ferry Iowa IA Allamakee 005 43.1698 -91.2188 +US 52151 Lansing Iowa IA Allamakee 005 43.3661 -91.266 +US 52160 New Albin Iowa IA Allamakee 005 43.4899 -91.2942 +US 52162 Postville Iowa IA Allamakee 005 43.0036 -91.5478 +US 52170 Waterville Iowa IA Allamakee 005 43.2636 -91.263 +US 52172 Waukon Iowa IA Allamakee 005 43.264 -91.48 +US 52544 Centerville Iowa IA Appanoose 007 40.7326 -92.8728 +US 52549 Cincinnati Iowa IA Appanoose 007 40.6344 -92.9219 +US 52555 Exline Iowa IA Appanoose 007 40.6414 -92.827 +US 52571 Moravia Iowa IA Appanoose 007 40.8825 -92.8534 +US 52572 Moulton Iowa IA Appanoose 007 40.6866 -92.6833 +US 52574 Mystic Iowa IA Appanoose 007 40.7883 -92.9284 +US 52575 Numa Iowa IA Appanoose County 007 40.6706 -93.0186 +US 52581 Plano Iowa IA Appanoose 007 40.7751 -93.0386 +US 52593 Udell Iowa IA Appanoose 007 40.7836 -92.7185 +US 52594 Unionville Iowa IA Appanoose 007 40.8416 -92.6935 +US 50025 Audubon Iowa IA Audubon 009 41.73 -94.9164 +US 50042 Brayton Iowa IA Audubon 009 41.5524 -94.974 +US 50076 Exira Iowa IA Audubon 009 41.5768 -94.8571 +US 50110 Gray Iowa IA Audubon 009 41.8401 -94.9812 +US 50117 Hamlin Iowa IA Audubon 009 41.6506 -94.9157 +US 51543 Kimballton Iowa IA Audubon 009 41.6352 -95.0553 +US 52206 Atkins Iowa IA Benton 011 41.9881 -91.876 +US 52208 Belle Plaine Iowa IA Benton 011 41.8992 -92.2574 +US 52209 Blairstown Iowa IA Benton 011 41.9063 -92.0829 +US 52229 Garrison Iowa IA Benton 011 42.1588 -92.1644 +US 52249 Keystone Iowa IA Benton 011 42.0156 -92.2179 +US 52257 Luzerne Iowa IA Benton 011 41.9061 -92.1793 +US 52313 Mount Auburn Iowa IA Benton 011 42.2554 -92.1595 +US 52315 Newhall Iowa IA Benton 011 41.9927 -91.9779 +US 52318 Norway Iowa IA Benton 011 41.8992 -91.892 +US 52332 Shellsburg Iowa IA Benton 011 42.0848 -91.8746 +US 52345 Urbana Iowa IA Benton 011 42.2365 -91.8881 +US 52346 Van Horne Iowa IA Benton 011 42.0194 -92.1046 +US 52349 Vinton Iowa IA Benton 011 42.1743 -91.9892 +US 52351 Walford Iowa IA Benton 011 41.877 -91.8369 +US 52354 Watkins Iowa IA Benton 011 41.904 -91.9965 +US 50613 Cedar Falls Iowa IA Black Hawk 013 42.5241 -92.4497 +US 50614 Cedar Falls Iowa IA Black Hawk 013 42.4698 -92.3095 +US 50623 Dewar Iowa IA Black Hawk 013 42.5253 -92.2207 +US 50626 Dunkerton Iowa IA Black Hawk 013 42.578 -92.1588 +US 50634 Gilbertville Iowa IA Black Hawk 013 42.4197 -92.2199 +US 50643 Hudson Iowa IA Black Hawk 013 42.3905 -92.4549 +US 50651 La Porte City Iowa IA Black Hawk 013 42.3416 -92.1862 +US 50667 Raymond Iowa IA Black Hawk 013 42.4672 -92.2162 +US 50701 Waterloo Iowa IA Black Hawk 013 42.4778 -92.3661 +US 50702 Waterloo Iowa IA Black Hawk 013 42.4731 -92.3365 +US 50703 Waterloo Iowa IA Black Hawk 013 42.5149 -92.3269 +US 50704 Waterloo Iowa IA Black Hawk 013 42.4698 -92.3095 +US 50706 Waterloo Iowa IA Black Hawk 013 42.4156 -92.2703 +US 50707 Evansdale Iowa IA Black Hawk 013 42.4755 -92.2812 +US 50799 Waterloo Iowa IA Black Hawk 013 42.4698 -92.3095 +US 50031 Beaver Iowa IA Boone 015 42.0387 -94.1436 +US 50036 Boone Iowa IA Boone 015 42.0694 -93.8781 +US 50037 Boone Iowa IA Boone 015 42.0366 -93.9317 +US 50040 Boxholm Iowa IA Boone 015 42.1706 -94.1052 +US 50152 Luther Iowa IA Boone 015 41.9387 -93.8371 +US 50156 Madrid Iowa IA Boone 015 41.8841 -93.8448 +US 50212 Ogden Iowa IA Boone 015 42.0351 -94.0063 +US 50223 Pilot Mound Iowa IA Boone 015 42.1604 -94.0102 +US 50622 Denver Iowa IA Bremer 017 42.6731 -92.3417 +US 50631 Frederika Iowa IA Bremer 017 42.8827 -92.3063 +US 50647 Janesville Iowa IA Bremer 017 42.6465 -92.4791 +US 50666 Plainfield Iowa IA Bremer 017 42.8503 -92.5116 +US 50668 Readlyn Iowa IA Bremer 017 42.6929 -92.2154 +US 50674 Sumner Iowa IA Bremer 017 42.8419 -92.1186 +US 50676 Tripoli Iowa IA Bremer 017 42.8105 -92.2659 +US 50677 Waverly Iowa IA Bremer 017 42.7748 -92.404 +US 50607 Aurora Iowa IA Buchanan 019 42.6203 -91.7335 +US 50629 Fairbank Iowa IA Buchanan 019 42.6162 -92.0326 +US 50641 Hazleton Iowa IA Buchanan 019 42.6076 -91.9105 +US 50644 Independence Iowa IA Buchanan 019 42.4674 -91.8803 +US 50648 Jesup Iowa IA Buchanan 019 42.4823 -92.0456 +US 50650 Lamont Iowa IA Buchanan 019 42.5946 -91.6701 +US 50671 Stanley Iowa IA Buchanan 019 42.6356 -91.8127 +US 50682 Winthrop Iowa IA Buchanan 019 42.4912 -91.7315 +US 52210 Brandon Iowa IA Buchanan 019 42.3309 -92.0059 +US 52326 Quasqueton Iowa IA Buchanan 019 42.3956 -91.7679 +US 52329 Rowley Iowa IA Buchanan 019 42.3434 -91.7875 +US 50510 Albert City Iowa IA Buena Vista 021 42.7784 -94.9824 +US 50565 Marathon Iowa IA Buena Vista 021 42.8612 -94.9836 +US 50568 Newell Iowa IA Buena Vista 021 42.6157 -94.9946 +US 50576 Rembrandt Iowa IA Buena Vista 021 42.826 -95.1652 +US 50585 Sioux Rapids Iowa IA Buena Vista 021 42.9065 -95.1388 +US 50588 Storm Lake Iowa IA Buena Vista 021 42.6474 -95.1961 +US 50592 Truesdale Iowa IA Buena Vista 021 42.7262 -95.1853 +US 51002 Alta Iowa IA Buena Vista 021 42.6771 -95.3129 +US 51033 Linn Grove Iowa IA Buena Vista 021 42.8742 -95.2512 +US 50602 Allison Iowa IA Butler 023 42.7615 -92.783 +US 50604 Aplington Iowa IA Butler 023 42.587 -92.8751 +US 50605 Aredale Iowa IA Butler 023 42.8318 -93.021 +US 50608 Austinville Iowa IA Butler 023 42.5824 -92.9599 +US 50611 Bristow Iowa IA Butler 023 42.7741 -92.8864 +US 50619 Clarksville Iowa IA Butler 023 42.8041 -92.6588 +US 50625 Dumont Iowa IA Butler 023 42.7368 -92.9673 +US 50636 Greene Iowa IA Butler 023 42.916 -92.7583 +US 50649 Kesley Iowa IA Butler 023 42.6626 -92.9112 +US 50660 New Hartford Iowa IA Butler 023 42.5831 -92.6164 +US 50665 Parkersburg Iowa IA Butler 023 42.5714 -92.7688 +US 50670 Shell Rock Iowa IA Butler 023 42.7061 -92.5888 +US 50538 Farnhamville Iowa IA Calhoun 025 42.2692 -94.4226 +US 50551 Jolley Iowa IA Calhoun 025 42.4871 -94.757 +US 50552 Knierim Iowa IA Calhoun 025 42.4236 -94.4586 +US 50561 Lytton Iowa IA Calhoun 025 42.4304 -94.814 +US 50563 Manson Iowa IA Calhoun 025 42.5285 -94.5304 +US 50575 Pomeroy Iowa IA Calhoun 025 42.5326 -94.6638 +US 50579 Rockwell City Iowa IA Calhoun 025 42.3961 -94.6292 +US 50586 Somers Iowa IA Calhoun 025 42.3561 -94.4464 +US 50587 Rinard Iowa IA Calhoun 025 42.3391 -94.4886 +US 51449 Lake City Iowa IA Calhoun 025 42.2705 -94.7458 +US 51453 Lohrville Iowa IA Calhoun 025 42.2619 -94.5566 +US 50058 Coon Rapids Iowa IA Carroll 027 41.894 -94.68 +US 51401 Carroll Iowa IA Carroll 027 42.072 -94.8667 +US 51430 Arcadia Iowa IA Carroll 027 42.0573 -95.0371 +US 51436 Breda Iowa IA Carroll 027 42.1758 -95.0007 +US 51440 Dedham Iowa IA Carroll 027 41.9055 -94.8149 +US 51443 Glidden Iowa IA Carroll 027 42.0618 -94.7148 +US 51444 Halbur Iowa IA Carroll 027 42.0048 -94.9731 +US 51451 Lanesboro Iowa IA Carroll 027 42.1845 -94.6917 +US 51452 Lidderdale Iowa IA Carroll 027 42.1254 -94.7754 +US 51455 Manning Iowa IA Carroll 027 41.9072 -95.0556 +US 51459 Ralston Iowa IA Carroll 027 42.0414 -94.6321 +US 51463 Templeton Iowa IA Carroll 027 41.9121 -94.932 +US 50020 Anita Iowa IA Cass 029 41.45 -94.7794 +US 50022 Atlantic Iowa IA Cass 029 41.4003 -95.0101 +US 50274 Wiota Iowa IA Cass 029 41.3846 -94.8405 +US 50843 Cumberland Iowa IA Cass 029 41.2632 -94.871 +US 50853 Massena Iowa IA Cass 029 41.2499 -94.7649 +US 51535 Griswold Iowa IA Cass 029 41.2238 -95.099 +US 51544 Lewis Iowa IA Cass 029 41.2963 -95.062 +US 51552 Marne Iowa IA Cass 029 41.4547 -95.0973 +US 52216 Clarence Iowa IA Cedar 031 41.8896 -91.0605 +US 52255 Lowden Iowa IA Cedar 031 41.8594 -90.9382 +US 52306 Mechanicsville Iowa IA Cedar 031 41.9039 -91.2764 +US 52337 Stanwood Iowa IA Cedar 031 41.8963 -91.1662 +US 52358 West Branch Iowa IA Cedar 031 41.6726 -91.3141 +US 52721 Bennett Iowa IA Cedar 031 41.7353 -90.9656 +US 52747 Durant Iowa IA Cedar 031 41.6145 -90.91 +US 52772 Tipton Iowa IA Cedar 031 41.7563 -91.1362 +US 50401 Mason City Iowa IA Cerro Gordo 033 43.1499 -93.1954 +US 50402 Mason City Iowa IA Cerro Gordo 033 43.0816 -93.2609 +US 50428 Clear Lake Iowa IA Cerro Gordo 033 43.1406 -93.385 +US 50433 Dougherty Iowa IA Cerro Gordo 033 42.9416 -93.0686 +US 50457 Meservey Iowa IA Cerro Gordo 033 42.9137 -93.4773 +US 50464 Plymouth Iowa IA Cerro Gordo 033 43.246 -93.1226 +US 50467 Rock Falls Iowa IA Cerro Gordo 033 43.2066 -93.0857 +US 50469 Rockwell Iowa IA Cerro Gordo 033 43.0032 -93.2167 +US 50477 Swaledale Iowa IA Cerro Gordo 033 42.9622 -93.3115 +US 50479 Thornton Iowa IA Cerro Gordo 033 42.9684 -93.4088 +US 50482 Ventura Iowa IA Cerro Gordo 033 43.1262 -93.4706 +US 51005 Aurelia Iowa IA Cherokee 035 42.6912 -95.4381 +US 51012 Cherokee Iowa IA Cherokee 035 42.7482 -95.5568 +US 51014 Cleghorn Iowa IA Cherokee 035 42.8086 -95.7124 +US 51029 Larrabee Iowa IA Cherokee 035 42.8734 -95.5651 +US 51035 Marcus Iowa IA Cherokee 035 42.82 -95.8034 +US 51037 Meriden Iowa IA Cherokee 035 42.7874 -95.6408 +US 51049 Quimby Iowa IA Cherokee 035 42.6287 -95.6812 +US 51061 Washta Iowa IA Cherokee 035 42.5781 -95.7295 +US 50603 Alta Vista Iowa IA Chickasaw 037 43.1482 -92.4237 +US 50630 Fredericksburg Iowa IA Chickasaw 037 42.9593 -92.1983 +US 50645 Ionia Iowa IA Chickasaw 037 43.0403 -92.4865 +US 50658 Nashua Iowa IA Chickasaw 037 42.9528 -92.5298 +US 50659 New Hampton Iowa IA Chickasaw 037 43.056 -92.3131 +US 50661 North Washington Iowa IA Chickasaw 037 43.1174 -92.4144 +US 52154 Lawler Iowa IA Chickasaw 037 43.0932 -92.144 +US 50174 Murray Iowa IA Clarke 039 41.0376 -93.953 +US 50213 Osceola Iowa IA Clarke 039 41.0295 -93.7712 +US 50275 Woodburn Iowa IA Clarke 039 41 -93.6083 +US 51047 Peterson Iowa IA Clay 041 42.9328 -95.3377 +US 51301 Spencer Iowa IA Clay 041 43.1451 -95.1457 +US 51333 Dickens Iowa IA Clay 041 43.1548 -94.9854 +US 51338 Everly Iowa IA Clay 041 43.1609 -95.3228 +US 51340 Fostoria Iowa IA Clay 041 43.0824 -95.1511 +US 51341 Gillett Grove Iowa IA Clay 041 43.0157 -95.0431 +US 51343 Greenville Iowa IA Clay 041 43.0333 -95.0582 +US 51357 Royal Iowa IA Clay 041 43.0488 -95.2679 +US 51366 Webb Iowa IA Clay 041 42.9502 -94.9951 +US 52042 Edgewood Iowa IA Clayton 043 42.6541 -91.395 +US 52043 Elkader Iowa IA Clayton 043 42.8496 -91.4143 +US 52044 Elkport Iowa IA Clayton 043 42.7624 -91.3203 +US 52047 Farmersburg Iowa IA Clayton 043 42.9522 -91.339 +US 52048 Garber Iowa IA Clayton 043 42.7453 -91.2593 +US 52049 Garnavillo Iowa IA Clayton 043 42.8762 -91.2156 +US 52052 Guttenberg Iowa IA Clayton 043 42.7594 -91.119 +US 52055 Littleport Iowa IA Clayton 043 42.8627 -91.2525 +US 52066 North Buena Vista Iowa IA Clayton 043 42.6783 -90.9518 +US 52072 Saint Olaf Iowa IA Clayton 043 42.922 -91.3778 +US 52076 Strawberry Point Iowa IA Clayton 043 42.6832 -91.5409 +US 52077 Volga Iowa IA Clayton 043 42.7904 -91.5429 +US 52156 Luana Iowa IA Clayton 043 43.0493 -91.4583 +US 52157 Mc Gregor Iowa IA Clayton 043 43.0237 -91.1887 +US 52158 Marquette Iowa IA Clayton 043 43.036 -91.1931 +US 52159 Monona Iowa IA Clayton 043 43.034 -91.3934 +US 52037 Delmar Iowa IA Clinton 045 41.9961 -90.6087 +US 52226 Elwood Iowa IA Clinton 045 41.989 -90.736 +US 52254 Lost Nation Iowa IA Clinton 045 41.9745 -90.8265 +US 52343 Toronto Iowa IA Clinton County 045 41.9046 -90.7842 +US 52701 Andover Iowa IA Clinton 045 41.9644 -90.2223 +US 52727 Bryant Iowa IA Clinton 045 41.9629 -90.3388 +US 52729 Calamus Iowa IA Clinton 045 41.8111 -90.7416 +US 52730 Camanche Iowa IA Clinton 045 41.7886 -90.2709 +US 52731 Charlotte Iowa IA Clinton 045 41.9779 -90.4782 +US 52732 Clinton Iowa IA Clinton 045 41.8517 -90.2078 +US 52733 Clinton Iowa IA Clinton 045 41.8806 -90.5195 +US 52734 Clinton Iowa IA Clinton County 045 41.8444 -90.1885 +US 52736 Clinton Iowa IA Clinton 045 41.8806 -90.5195 +US 52742 De Witt Iowa IA Clinton 045 41.8267 -90.5237 +US 52750 Goose Lake Iowa IA Clinton 045 41.9799 -90.3819 +US 52751 Grand Mound Iowa IA Clinton 045 41.8501 -90.6695 +US 52757 Low Moor Iowa IA Clinton 045 41.8065 -90.3706 +US 52771 Teeds Grove Iowa IA Clinton 045 41.9991 -90.2187 +US 52774 Welton Iowa IA Clinton 045 41.9174 -90.597 +US 52777 Wheatland Iowa IA Clinton 045 41.8259 -90.8402 +US 51432 Aspinwall Iowa IA Crawford 047 41.9119 -95.1356 +US 51439 Charter Oak Iowa IA Crawford 047 42.0707 -95.5992 +US 51441 Deloit Iowa IA Crawford 047 42.1238 -95.3045 +US 51442 Denison Iowa IA Crawford 047 42.0196 -95.3636 +US 51448 Kiron Iowa IA Crawford 047 42.1794 -95.3115 +US 51454 Manilla Iowa IA Crawford 047 41.8922 -95.2391 +US 51460 Ricketts Iowa IA Crawford 047 42.1304 -95.5746 +US 51461 Schleswig Iowa IA Crawford 047 42.1646 -95.4443 +US 51465 Vail Iowa IA Crawford 047 42.0338 -95.1778 +US 51467 Westside Iowa IA Crawford 047 42.1084 -95.1273 +US 51520 Arion Iowa IA Crawford 047 41.9504 -95.4623 +US 51528 Dow City Iowa IA Crawford 047 41.9134 -95.4862 +US 50003 Adel Iowa IA Dallas 049 41.6221 -94.038 +US 50038 Booneville Iowa IA Dallas 049 41.6304 -93.9463 +US 50039 Bouton Iowa IA Dallas 049 41.8284 -93.9963 +US 50063 Dallas Center Iowa IA Dallas 049 41.6862 -93.9707 +US 50066 Dawson Iowa IA Dallas 049 41.8324 -94.2171 +US 50069 De Soto Iowa IA Dallas 049 41.5208 -94.0303 +US 50070 Dexter Iowa IA Dallas 049 41.5198 -94.2145 +US 50109 Granger Iowa IA Dallas 049 41.7616 -93.8533 +US 50146 Linden Iowa IA Dallas 049 41.6422 -94.2406 +US 50167 Minburn Iowa IA Dallas 049 41.7562 -94.015 +US 50220 Perry Iowa IA Dallas 049 41.8397 -94.1022 +US 50233 Redfield Iowa IA Dallas 049 41.5873 -94.1897 +US 50261 Van Meter Iowa IA Dallas 049 41.4699 -93.9207 +US 50263 Waukee Iowa IA Dallas 049 41.593 -93.8592 +US 50276 Woodward Iowa IA Dallas 049 41.8452 -93.9056 +US 52537 Bloomfield Iowa IA Davis 051 40.7324 -92.3987 +US 52538 West Grove Iowa IA Davis 051 40.7453 -92.4087 +US 52552 Drakesville Iowa IA Davis 051 40.8253 -92.5051 +US 52560 Floris Iowa IA Davis 051 40.8591 -92.3247 +US 52584 Pulaski Iowa IA Davis 051 40.6941 -92.258 +US 50065 Davis City Iowa IA Decatur 053 40.6346 -93.8105 +US 50067 Decatur Iowa IA Decatur 053 40.743 -93.8317 +US 50103 Garden Grove Iowa IA Decatur 053 40.7711 -93.6117 +US 50108 Grand River Iowa IA Decatur 053 40.8137 -93.9544 +US 50140 Lamoni Iowa IA Decatur 053 40.6229 -93.9349 +US 50144 Leon Iowa IA Decatur 053 40.7373 -93.7429 +US 50262 Van Wert Iowa IA Decatur 053 40.8645 -93.8073 +US 50264 Weldon Iowa IA Decatur 053 40.8739 -93.7387 +US 50654 Masonville Iowa IA Delaware 055 42.4573 -91.5642 +US 52035 Colesburg Iowa IA Delaware 055 42.6383 -91.1963 +US 52036 Delaware Iowa IA Delaware 055 42.4766 -91.3112 +US 52038 Dundee Iowa IA Delaware 055 42.594 -91.5477 +US 52041 Earlville Iowa IA Delaware 055 42.5001 -91.2597 +US 52050 Greeley Iowa IA Delaware 055 42.5939 -91.3233 +US 52057 Manchester Iowa IA Delaware 055 42.4834 -91.449 +US 52223 Delhi Iowa IA Delaware 055 42.4137 -91.3107 +US 52237 Hopkinton Iowa IA Delaware 055 42.3422 -91.2461 +US 52330 Ryan Iowa IA Delaware 055 42.3436 -91.4848 +US 52601 Burlington Iowa IA Des Moines 057 40.8087 -91.117 +US 52623 Danville Iowa IA Des Moines 057 40.854 -91.314 +US 52637 Mediapolis Iowa IA Des Moines 057 41.0059 -91.1321 +US 52638 Middletown Iowa IA Des Moines 057 40.8296 -91.2631 +US 52650 Sperry Iowa IA Des Moines 057 40.9419 -91.185 +US 52655 West Burlington Iowa IA Des Moines 057 40.8321 -91.1799 +US 52660 Yarmouth Iowa IA Des Moines 057 40.9835 -91.3026 +US 51331 Arnolds Park Iowa IA Dickinson 059 43.3637 -95.1282 +US 51347 Lake Park Iowa IA Dickinson 059 43.4452 -95.3216 +US 51351 Milford Iowa IA Dickinson 059 43.3196 -95.1615 +US 51355 Okoboji Iowa IA Dickinson 059 43.3889 -95.1369 +US 51360 Spirit Lake Iowa IA Dickinson 059 43.4262 -95.1123 +US 51363 Superior Iowa IA Dickinson 059 43.4318 -94.9469 +US 51364 Terril Iowa IA Dickinson 059 43.3241 -94.9737 +US 52001 Dubuque Iowa IA Dubuque 061 42.515 -90.6819 +US 52002 Dubuque Iowa IA Dubuque 061 42.5122 -90.7384 +US 52003 Dubuque Iowa IA Dubuque 061 42.4649 -90.6829 +US 52004 Dubuque Iowa IA Dubuque 061 42.4849 -90.8041 +US 52032 Bernard Iowa IA Dubuque 061 42.3321 -90.863 +US 52033 Cascade Iowa IA Dubuque 061 42.287 -91.0144 +US 52039 Durango Iowa IA Dubuque 061 42.5526 -90.8608 +US 52040 Dyersville Iowa IA Dubuque 061 42.4833 -91.1183 +US 52045 Epworth Iowa IA Dubuque 061 42.4439 -90.9313 +US 52046 Farley Iowa IA Dubuque 061 42.4451 -91.0083 +US 52053 Holy Cross Iowa IA Dubuque 061 42.5808 -90.973 +US 52056 Luxemburg Iowa IA Dubuque 061 42.5783 -91.0621 +US 52065 New Vienna Iowa IA Dubuque 061 42.5678 -91.0976 +US 52068 Peosta Iowa IA Dubuque 061 42.4435 -90.8094 +US 52073 Sherrill Iowa IA Dubuque 061 42.6171 -90.8115 +US 52078 Worthington Iowa IA Dubuque 061 42.393 -91.1069 +US 52079 Zwingle Iowa IA Dubuque 061 42.2775 -90.7507 +US 52099 Dubuque Iowa IA Dubuque 061 42.4849 -90.8041 +US 50514 Armstrong Iowa IA Emmet 063 43.4024 -94.4853 +US 50531 Dolliver Iowa IA Emmet 063 43.4664 -94.6242 +US 50578 Ringsted Iowa IA Emmet 063 43.2977 -94.5291 +US 51334 Estherville Iowa IA Emmet 063 43.4017 -94.818 +US 51344 Gruver Iowa IA Emmet 063 43.3936 -94.7049 +US 51365 Wallingford Iowa IA Emmet 063 43.3189 -94.7964 +US 50606 Arlington Iowa IA Fayette 065 42.7338 -91.6668 +US 50655 Maynard Iowa IA Fayette 065 42.7752 -91.8908 +US 50662 Oelwein Iowa IA Fayette 065 42.6811 -91.9131 +US 50664 Oran Iowa IA Fayette 065 42.7012 -92.0762 +US 50681 Westgate Iowa IA Fayette 065 42.7812 -92.0122 +US 52130 Alpha Iowa IA Fayette County 065 42.9966 -92.0474 +US 52135 Clermont Iowa IA Fayette 065 43.013 -91.6552 +US 52141 Elgin Iowa IA Fayette 065 42.9548 -91.6454 +US 52142 Fayette Iowa IA Fayette 065 42.8494 -91.8139 +US 52147 Hawkeye Iowa IA Fayette 065 42.9487 -91.9578 +US 52164 Randalia Iowa IA Fayette 065 42.8626 -91.8846 +US 52166 Saint Lucas Iowa IA Fayette 065 43.0607 -91.9232 +US 52169 Wadena Iowa IA Fayette 065 42.855 -91.6639 +US 52171 Waucoma Iowa IA Fayette 065 43.0433 -92.0302 +US 52175 West Union Iowa IA Fayette 065 42.9438 -91.8334 +US 50435 Floyd Iowa IA Floyd 067 43.143 -92.724 +US 50458 Nora Springs Iowa IA Floyd 067 43.1479 -93.0002 +US 50468 Rockford Iowa IA Floyd 067 43.0573 -92.952 +US 50471 Rudd Iowa IA Floyd 067 43.142 -92.8885 +US 50616 Charles City Iowa IA Floyd 067 43.0683 -92.6761 +US 50620 Colwell Iowa IA Floyd 067 43.1584 -92.5905 +US 50653 Marble Rock Iowa IA Floyd 067 42.9645 -92.8917 +US 50041 Bradford Iowa IA Franklin 069 42.6003 -93.2232 +US 50227 Popejoy Iowa IA Franklin 069 42.5974 -93.4279 +US 50420 Alexander Iowa IA Franklin 069 42.8114 -93.445 +US 50427 Chapin Iowa IA Franklin 069 42.8349 -93.2226 +US 50431 Coulter Iowa IA Franklin 069 42.7382 -93.37 +US 50441 Hampton Iowa IA Franklin 069 42.7405 -93.211 +US 50452 Latimer Iowa IA Franklin 069 42.7598 -93.3518 +US 50475 Sheffield Iowa IA Franklin 069 42.8779 -93.2156 +US 50633 Geneva Iowa IA Franklin 069 42.6804 -93.1038 +US 50640 Hansell Iowa IA Franklin County 069 42.7712 -93.09 +US 51639 Farragut Iowa IA Fremont 071 40.7215 -95.4776 +US 51640 Hamburg Iowa IA Fremont 071 40.6149 -95.6258 +US 51645 Imogene Iowa IA Fremont 071 40.8631 -95.4358 +US 51648 Percival Iowa IA Fremont 071 40.7401 -95.8093 +US 51649 Randolph Iowa IA Fremont 071 40.8704 -95.5624 +US 51650 Riverton Iowa IA Fremont 071 40.6629 -95.5773 +US 51652 Sidney Iowa IA Fremont 071 40.7507 -95.6403 +US 51653 Tabor Iowa IA Fremont 071 40.9004 -95.6729 +US 51654 Thurman Iowa IA Fremont 071 40.8424 -95.7605 +US 51655 Bartlett Iowa IA Fremont County 071 40.885 -95.7947 +US 50050 Churdan Iowa IA Greene 073 42.1614 -94.4933 +US 50059 Cooper Iowa IA Greene 073 42.0363 -94.397 +US 50064 Dana Iowa IA Greene 073 42.1063 -94.2322 +US 50107 Grand Junction Iowa IA Greene 073 42.0296 -94.2336 +US 50129 Jefferson Iowa IA Greene 073 42.0093 -94.3888 +US 50217 Paton Iowa IA Greene 073 42.1658 -94.273 +US 50235 Rippey Iowa IA Greene 073 41.9257 -94.2132 +US 51462 Scranton Iowa IA Greene 073 42.0124 -94.5518 +US 50609 Beaman Iowa IA Grundy 075 42.2367 -92.8162 +US 50621 Conrad Iowa IA Grundy 075 42.2342 -92.8865 +US 50624 Dike Iowa IA Grundy 075 42.473 -92.6122 +US 50638 Grundy Center Iowa IA Grundy 075 42.3672 -92.7773 +US 50642 Holland Iowa IA Grundy 075 42.4011 -92.7999 +US 50657 Morrison Iowa IA Grundy 075 42.3433 -92.6738 +US 50669 Reinbeck Iowa IA Grundy 075 42.3131 -92.5948 +US 50673 Stout Iowa IA Grundy 075 42.5255 -92.7029 +US 50680 Wellsburg Iowa IA Grundy 075 42.4494 -92.9398 +US 50026 Bagley Iowa IA Guthrie 077 41.8341 -94.4415 +US 50029 Bayard Iowa IA Guthrie 077 41.8386 -94.5915 +US 50048 Casey Iowa IA Guthrie 077 41.5763 -94.5212 +US 50115 Guthrie Center Iowa IA Guthrie 077 41.6837 -94.4864 +US 50128 Jamaica Iowa IA Guthrie 077 41.8419 -94.3204 +US 50164 Menlo Iowa IA Guthrie 077 41.5348 -94.409 +US 50216 Panora Iowa IA Guthrie 077 41.6967 -94.3606 +US 50250 Stuart Iowa IA Guthrie 077 41.5186 -94.3046 +US 50277 Yale Iowa IA Guthrie 077 41.7753 -94.3503 +US 50034 Blairsburg Iowa IA Hamilton 079 42.4937 -93.6594 +US 50075 Ellsworth Iowa IA Hamilton 079 42.3009 -93.549 +US 50130 Jewell Iowa IA Hamilton 079 42.3139 -93.6428 +US 50132 Kamrar Iowa IA Hamilton 079 42.3945 -93.7279 +US 50231 Randall Iowa IA Hamilton 079 42.2401 -93.6283 +US 50246 Stanhope Iowa IA Hamilton 079 42.2904 -93.7751 +US 50249 Stratford Iowa IA Hamilton 079 42.2847 -93.9029 +US 50271 Williams Iowa IA Hamilton 079 42.4614 -93.5677 +US 50595 Webster City Iowa IA Hamilton 079 42.4657 -93.8262 +US 50423 Britt Iowa IA Hancock 081 43.1006 -93.7752 +US 50430 Corwith Iowa IA Hancock 081 42.9927 -93.9323 +US 50432 Crystal Lake Iowa IA Hancock 081 43.2184 -93.8007 +US 50438 Garner Iowa IA Hancock 081 43.1144 -93.5944 +US 50439 Goodell Iowa IA Hancock 081 42.9383 -93.5824 +US 50447 Kanawha Iowa IA Hancock 081 42.9434 -93.7728 +US 50449 Klemme Iowa IA Hancock 081 43.0136 -93.5879 +US 50484 Woden Iowa IA Hancock 081 43.2226 -93.9109 +US 50006 Alden Iowa IA Hardin 083 42.5179 -93.3841 +US 50043 Buckeye Iowa IA Hardin 083 42.4179 -93.3755 +US 50102 Garden City Iowa IA Hardin 083 42.2354 -93.3733 +US 50122 Hubbard Iowa IA Hardin 083 42.3022 -93.2939 +US 50126 Iowa Falls Iowa IA Hardin 083 42.5138 -93.2709 +US 50206 New Providence Iowa IA Hardin 083 42.2693 -93.1753 +US 50230 Radcliffe Iowa IA Hardin 083 42.3241 -93.4234 +US 50258 Union Iowa IA Hardin 083 42.2521 -93.0562 +US 50259 Gifford Iowa IA Hardin 083 42.3831 -93.2506 +US 50269 Whitten Iowa IA Hardin 083 42.2718 -93.0214 +US 50601 Ackley Iowa IA Hardin 083 42.5527 -93.0608 +US 50627 Eldora Iowa IA Hardin 083 42.3572 -93.1037 +US 50672 Steamboat Rock Iowa IA Hardin 083 42.4178 -93.0629 +US 51529 Dunlap Iowa IA Harrison 085 41.8603 -95.6257 +US 51545 Little Sioux Iowa IA Harrison 085 41.8083 -96.0314 +US 51546 Logan Iowa IA Harrison 085 41.6243 -95.7525 +US 51550 Magnolia Iowa IA Harrison 085 41.6921 -95.8742 +US 51555 Missouri Valley Iowa IA Harrison 085 41.5644 -95.8913 +US 51556 Modale Iowa IA Harrison 085 41.6371 -95.9852 +US 51557 Mondamin Iowa IA Harrison 085 41.7089 -96.0072 +US 51563 Persia Iowa IA Harrison 085 41.5647 -95.5658 +US 51564 Pisgah Iowa IA Harrison 085 41.8214 -95.9192 +US 51579 Woodbine Iowa IA Harrison 085 41.7373 -95.7008 +US 52630 Hillsboro Iowa IA Henry 087 40.8372 -91.7119 +US 52641 Mount Pleasant Iowa IA Henry 087 40.9646 -91.5614 +US 52642 Rome Iowa IA Henry 087 40.9774 -91.6923 +US 52644 Mount Union Iowa IA Henry 087 41.0374 -91.4138 +US 52645 New London Iowa IA Henry 087 40.9161 -91.3986 +US 52647 Olds Iowa IA Henry 087 41.147 -91.5444 +US 52649 Salem Iowa IA Henry 087 40.8568 -91.6336 +US 52652 Swedesburg Iowa IA Henry 087 41.1043 -91.547 +US 52654 Wayland Iowa IA Henry 087 41.1449 -91.6589 +US 52659 Winfield Iowa IA Henry 087 41.1257 -91.4379 +US 50466 Riceville Iowa IA Howard 089 43.3719 -92.5554 +US 50628 Elma Iowa IA Howard 089 43.2786 -92.3981 +US 52134 Chester Iowa IA Howard 089 43.473 -92.4155 +US 52136 Cresco Iowa IA Howard 089 43.363 -92.126 +US 52155 Lime Springs Iowa IA Howard 089 43.4556 -92.2733 +US 52163 Protivin Iowa IA Howard 089 43.217 -92.0927 +US 50519 Bode Iowa IA Humboldt 091 42.8661 -94.2781 +US 50520 Bradgate Iowa IA Humboldt 091 42.7794 -94.4002 +US 50529 Dakota City Iowa IA Humboldt 091 42.7214 -94.1993 +US 50541 Gilmore City Iowa IA Humboldt 091 42.7067 -94.4108 +US 50545 Hardy Iowa IA Humboldt 091 42.7975 -94.0799 +US 50548 Humboldt Iowa IA Humboldt 091 42.7196 -94.2132 +US 50558 Livermore Iowa IA Humboldt 091 42.8666 -94.1747 +US 50570 Ottosen Iowa IA Humboldt 091 42.8764 -94.3786 +US 50577 Renwick Iowa IA Humboldt 091 42.8491 -94.0074 +US 50582 Rutland Iowa IA Humboldt 091 42.7635 -94.2719 +US 50591 Thor Iowa IA Humboldt 091 42.6889 -94.039 +US 51006 Battle Creek Iowa IA Ida 093 42.3327 -95.6045 +US 51020 Galva Iowa IA Ida 093 42.5105 -95.4298 +US 51025 Holstein Iowa IA Ida 093 42.4948 -95.565 +US 51431 Arthur Iowa IA Ida 093 42.3363 -95.3675 +US 51445 Ida Grove Iowa IA Ida 093 42.34 -95.4645 +US 52203 Amana Iowa IA Iowa 095 41.8313 -91.8855 +US 52204 Amana Iowa IA Iowa 095 41.6864 -92.0636 +US 52220 Conroy Iowa IA Iowa 095 41.7354 -92.0102 +US 52236 Homestead Iowa IA Iowa 095 41.7339 -91.8795 +US 52251 Ladora Iowa IA Iowa 095 41.7564 -92.1873 +US 52301 Marengo Iowa IA Iowa 095 41.7863 -92.072 +US 52307 Middle Amana Iowa IA Iowa 095 41.7954 -91.9018 +US 52308 Millersburg Iowa IA Iowa 095 41.5764 -92.1666 +US 52316 North English Iowa IA Iowa 095 41.5241 -92.0893 +US 52325 Parnell Iowa IA Iowa 095 41.5702 -92.0052 +US 52334 South Amana Iowa IA Iowa 095 41.7576 -91.9263 +US 52347 Victor Iowa IA Iowa 095 41.729 -92.2842 +US 52357 West Amana Iowa IA Iowa County 095 41.803 -91.9336 +US 52361 Williamsburg Iowa IA Iowa 095 41.6393 -92.024 +US 52030 Andrew Iowa IA Jackson 097 42.1641 -90.6107 +US 52031 Bellevue Iowa IA Jackson 097 42.2582 -90.4356 +US 52054 La Motte Iowa IA Jackson 097 42.3044 -90.6177 +US 52060 Maquoketa Iowa IA Jackson 097 42.0778 -90.6771 +US 52064 Miles Iowa IA Jackson 097 42.1006 -90.3367 +US 52069 Preston Iowa IA Jackson 097 42.0539 -90.3954 +US 52070 Sabula Iowa IA Jackson 097 42.0737 -90.1955 +US 52071 Saint Donatus Iowa IA Jackson 097 42.3196 -90.4903 +US 52074 Spragueville Iowa IA Jackson 097 42.0727 -90.473 +US 52075 Springbrook Iowa IA Jackson 097 42.1674 -90.4846 +US 52207 Baldwin Iowa IA Jackson 097 42.0732 -90.82 +US 52309 Monmouth Iowa IA Jackson 097 42.0772 -90.8786 +US 50028 Baxter Iowa IA Jasper 099 41.8204 -93.1583 +US 50054 Colfax Iowa IA Jasper 099 41.6788 -93.2588 +US 50127 Ira Iowa IA Jasper 099 41.7771 -93.2058 +US 50135 Kellogg Iowa IA Jasper 099 41.7184 -92.9114 +US 50137 Killduff Iowa IA Jasper 099 41.6594 -92.9391 +US 50153 Lynnville Iowa IA Jasper 099 41.5698 -92.7877 +US 50168 Mingo Iowa IA Jasper 099 41.7898 -93.288 +US 50170 Monroe Iowa IA Jasper 099 41.5356 -93.0726 +US 50208 Newton Iowa IA Jasper 099 41.6992 -93.0455 +US 50228 Prairie City Iowa IA Jasper 099 41.5854 -93.241 +US 50232 Reasnor Iowa IA Jasper 099 41.5798 -93.0198 +US 50251 Sully Iowa IA Jasper 099 41.574 -92.8451 +US 52533 Batavia Iowa IA Jefferson 101 40.9905 -92.1431 +US 52556 Fairfield Iowa IA Jefferson 101 41.0039 -91.9576 +US 52557 Fairfield Iowa IA Jefferson 101 41.0166 -91.9682 +US 52567 Libertyville Iowa IA Jefferson 101 40.9499 -92.025 +US 52580 Packwood Iowa IA Jefferson 101 41.1228 -92.0664 +US 52635 Lockridge Iowa IA Jefferson 101 41.0119 -91.7645 +US 52235 Hills Iowa IA Johnson 103 41.5557 -91.5308 +US 52240 Iowa City Iowa IA Johnson 103 41.6355 -91.5016 +US 52241 Coralville Iowa IA Johnson 103 41.6937 -91.5906 +US 52242 Iowa City Iowa IA Johnson 103 41.6627 -91.5477 +US 52243 Iowa City Iowa IA Johnson 103 41.6427 -91.6 +US 52244 Iowa City Iowa IA Johnson 103 41.5727 -91.6619 +US 52245 Iowa City Iowa IA Johnson 103 41.6649 -91.5151 +US 52246 Iowa City Iowa IA Johnson 103 41.6438 -91.5669 +US 52317 North Liberty Iowa IA Johnson 103 41.7443 -91.6061 +US 52319 Oakdale Iowa IA Johnson 103 41.6427 -91.6 +US 52322 Oxford Iowa IA Johnson 103 41.6507 -91.7724 +US 52333 Solon Iowa IA Johnson 103 41.8099 -91.5086 +US 52338 Swisher Iowa IA Johnson 103 41.8268 -91.6739 +US 52340 Tiffin Iowa IA Johnson 103 41.7018 -91.6773 +US 52755 Lone Tree Iowa IA Johnson 103 41.4988 -91.4363 +US 52205 Anamosa Iowa IA Jones 105 42.1078 -91.2851 +US 52212 Center Junction Iowa IA Jones 105 42.0926 -91.067 +US 52230 Hale Iowa IA Jones County 105 42.0125 -91.059 +US 52252 Langworthy Iowa IA Jones 105 42.192 -91.2258 +US 52305 Martelle Iowa IA Jones 105 42.0035 -91.3217 +US 52310 Monticello Iowa IA Jones 105 42.2326 -91.1989 +US 52312 Morley Iowa IA Jones 105 42.006 -91.2459 +US 52320 Olin Iowa IA Jones 105 41.9954 -91.1409 +US 52321 Onslow Iowa IA Jones 105 42.1235 -90.9731 +US 52323 Oxford Junction Iowa IA Jones 105 41.9854 -90.9543 +US 52331 Scotch Grove Iowa IA Jones County 105 42.1662 -91.0797 +US 52362 Wyoming Iowa IA Jones 105 42.0604 -90.994 +US 50104 Gibson Iowa IA Keokuk 107 41.4868 -92.3867 +US 50136 Keswick Iowa IA Keokuk 107 41.4613 -92.2395 +US 50255 Thornburg Iowa IA Keokuk 107 41.3363 -92.1784 +US 50268 What Cheer Iowa IA Keokuk 107 41.3953 -92.3548 +US 52231 Harper Iowa IA Keokuk 107 41.3728 -92.0388 +US 52248 Keota Iowa IA Keokuk 107 41.3504 -91.9641 +US 52250 Kinross Iowa IA Keokuk County 107 41.4698 -92.0025 +US 52335 South English Iowa IA Keokuk 107 41.4529 -92.068 +US 52355 Webster Iowa IA Keokuk 107 41.4364 -92.1765 +US 52550 Delta Iowa IA Keokuk 107 41.3167 -92.3359 +US 52562 Hayesville Iowa IA Keokuk 107 41.3363 -92.1784 +US 52563 Hedrick Iowa IA Keokuk 107 41.1826 -92.3097 +US 52568 Martinsburg Iowa IA Keokuk 107 41.1948 -92.2715 +US 52576 Ollie Iowa IA Keokuk 107 41.2001 -92.1354 +US 52585 Richland Iowa IA Keokuk 107 41.1939 -91.9739 +US 52591 Sigourney Iowa IA Keokuk 107 41.3301 -92.2019 +US 50451 Lakota Iowa IA Kossuth 109 43.3953 -94.0705 +US 50480 Titonka Iowa IA Kossuth 109 43.2456 -94.0367 +US 50483 Wesley Iowa IA Kossuth 109 43.0977 -94.0038 +US 50511 Algona Iowa IA Kossuth 109 43.066 -94.2306 +US 50517 Bancroft Iowa IA Kossuth 109 43.2935 -94.2108 +US 50522 Burt Iowa IA Kossuth 109 43.2062 -94.2122 +US 50539 Fenton Iowa IA Kossuth 109 43.242 -94.4044 +US 50556 Ledyard Iowa IA Kossuth 109 43.4346 -94.1503 +US 50559 Lone Rock Iowa IA Kossuth 109 43.1666 -94.3586 +US 50560 Lu Verne Iowa IA Kossuth 109 42.9868 -94.0959 +US 50590 Swea City Iowa IA Kossuth 109 43.4022 -94.3193 +US 50598 Whittemore Iowa IA Kossuth 109 43.0261 -94.4064 +US 52619 Argyle Iowa IA Lee 111 40.5657 -91.5639 +US 52624 Denmark Iowa IA Lee 111 40.7434 -91.3239 +US 52625 Donnellson Iowa IA Lee 111 40.6612 -91.5745 +US 52627 Fort Madison Iowa IA Lee 111 40.633 -91.3398 +US 52631 Houghton Iowa IA Lee 111 40.77 -91.6138 +US 52632 Keokuk Iowa IA Lee 111 40.4094 -91.3982 +US 52639 Montrose Iowa IA Lee 111 40.5139 -91.424 +US 52648 Pilot Grove Iowa IA Lee 111 40.5947 -91.4156 +US 52656 West Point Iowa IA Lee 111 40.715 -91.4397 +US 52657 Saint Paul Iowa IA Lee 111 40.7587 -91.4783 +US 52658 Wever Iowa IA Lee 111 40.7067 -91.2268 +US 52202 Alburnett Iowa IA Linn 113 42.1583 -91.6392 +US 52213 Center Point Iowa IA Linn 113 42.1898 -91.7758 +US 52214 Central City Iowa IA Linn 113 42.1982 -91.4914 +US 52218 Coggon Iowa IA Linn 113 42.2792 -91.5413 +US 52219 Prairieburg Iowa IA Linn 113 42.231 -91.3954 +US 52227 Ely Iowa IA Linn 113 41.8943 -91.5738 +US 52228 Fairfax Iowa IA Linn 113 41.9153 -91.7801 +US 52233 Hiawatha Iowa IA Linn 113 42.0425 -91.677 +US 52253 Lisbon Iowa IA Linn 113 41.9212 -91.3861 +US 52302 Marion Iowa IA Linn 113 42.0411 -91.5941 +US 52314 Mount Vernon Iowa IA Linn 113 41.9287 -91.4274 +US 52324 Palo Iowa IA Linn 113 42.0365 -91.7877 +US 52328 Robins Iowa IA Linn 113 42.0731 -91.6648 +US 52336 Springville Iowa IA Linn 113 42.0607 -91.4394 +US 52341 Toddville Iowa IA Linn 113 42.1039 -91.729 +US 52344 Troy Mills Iowa IA Linn 113 42.0794 -91.5992 +US 52350 Viola Iowa IA Linn 113 42.0912 -91.385 +US 52352 Walker Iowa IA Linn 113 42.272 -91.7302 +US 52401 Cedar Rapids Iowa IA Linn 113 41.9743 -91.6554 +US 52402 Cedar Rapids Iowa IA Linn 113 42.0188 -91.6612 +US 52403 Cedar Rapids Iowa IA Linn 113 41.9843 -91.6259 +US 52404 Cedar Rapids Iowa IA Linn 113 41.9521 -91.6853 +US 52405 Cedar Rapids Iowa IA Linn 113 41.9804 -91.7098 +US 52406 Cedar Rapids Iowa IA Linn 113 42.2872 -91.7775 +US 52407 Cedar Rapids Iowa IA Linn 113 42.0794 -91.5992 +US 52408 Cedar Rapids Iowa IA Linn 113 42.0794 -91.5992 +US 52409 Cedar Rapids Iowa IA Linn 113 42.0794 -91.5992 +US 52410 Cedar Rapids Iowa IA Linn 113 42.0794 -91.5992 +US 52411 Cedar Rapids Iowa IA Linn 113 42.0493 -91.7263 +US 52497 Cedar Rapids Iowa IA Linn 113 42.0794 -91.5992 +US 52498 Cedar Rapids Iowa IA Linn 113 42.0794 -91.5992 +US 52499 Cedar Rapids Iowa IA Linn 113 42.0794 -91.5992 +US 52640 Morning Sun Iowa IA Louisa 115 41.0984 -91.2581 +US 52646 Oakville Iowa IA Louisa 115 41.1003 -91.0439 +US 52653 Wapello Iowa IA Louisa 115 41.207 -91.1719 +US 52737 Columbus City Iowa IA Louisa 115 41.2593 -91.3747 +US 52738 Columbus Junction Iowa IA Louisa 115 41.2926 -91.3006 +US 52752 Grandview Iowa IA Louisa 115 41.2567 -91.1967 +US 52754 Letts Iowa IA Louisa 115 41.293 -91.204 +US 50049 Chariton Iowa IA Lucas 117 41.0226 -93.3042 +US 50068 Derby Iowa IA Lucas 117 40.9355 -93.4796 +US 50151 Lucas Iowa IA Lucas 117 41.0585 -93.4836 +US 50238 Russell Iowa IA Lucas 117 40.9456 -93.1784 +US 50272 Williamson Iowa IA Lucas 117 41.0959 -93.2559 +US 51230 Alvord Iowa IA Lyon 119 43.3201 -96.291 +US 51235 Doon Iowa IA Lyon 119 43.2872 -96.202 +US 51237 George Iowa IA Lyon 119 43.3439 -95.9894 +US 51240 Inwood Iowa IA Lyon 119 43.3047 -96.4363 +US 51241 Larchwood Iowa IA Lyon 119 43.4387 -96.4252 +US 51242 Lester Iowa IA Lyon 119 43.4443 -96.3361 +US 51243 Little Rock Iowa IA Lyon 119 43.4496 -95.8926 +US 51246 Rock Rapids Iowa IA Lyon 119 43.4272 -96.1781 +US 50033 Bevington Iowa IA Madison 121 41.363 -93.7928 +US 50072 Earlham Iowa IA Madison 121 41.4709 -94.1294 +US 50155 Macksburg Iowa IA Madison 121 41.2104 -94.1825 +US 50218 Patterson Iowa IA Madison 121 41.3499 -93.8803 +US 50222 Peru Iowa IA Madison 121 41.2145 -93.9437 +US 50240 Saint Charles Iowa IA Madison 121 41.2924 -93.8242 +US 50257 Truro Iowa IA Madison 121 41.2076 -93.841 +US 50273 Winterset Iowa IA Madison 121 41.3391 -94.0088 +US 50027 Barnes City Iowa IA Mahaska 123 41.4883 -92.4703 +US 50143 Leighton Iowa IA Mahaska 123 41.3647 -92.8081 +US 50207 New Sharon Iowa IA Mahaska 123 41.464 -92.6848 +US 50253 Taintor Iowa IA Mahaska County 123 41.5011 -92.7382 +US 52534 Beacon Iowa IA Mahaska 123 41.272 -92.6819 +US 52543 Cedar Iowa IA Mahaska 123 41.2121 -92.509 +US 52561 Fremont Iowa IA Mahaska 123 41.2117 -92.4362 +US 52577 Oskaloosa Iowa IA Mahaska 123 41.2942 -92.6439 +US 52586 Rose Hill Iowa IA Mahaska 123 41.3309 -92.472 +US 52595 University Park Iowa IA Mahaska 123 41.2864 -92.6184 +US 50044 Bussey Iowa IA Marion 125 41.2094 -92.8963 +US 50057 Columbia Iowa IA Marion 125 41.1838 -93.1582 +US 50062 Dallas Iowa IA Marion 125 41.2213 -93.2535 +US 50116 Hamilton Iowa IA Marion 125 41.19 -92.959 +US 50119 Harvey Iowa IA Marion 125 41.303 -92.9318 +US 50138 Knoxville Iowa IA Marion 125 41.3164 -93.0954 +US 50163 Melcher Iowa IA Marion 125 41.2422 -93.1732 +US 50197 Knoxville Iowa IA Marion 125 41.3345 -93.0992 +US 50198 Knoxville Iowa IA Marion 125 41.3345 -93.0992 +US 50214 Otley Iowa IA Marion 125 41.4518 -93.0348 +US 50219 Pella Iowa IA Marion 125 41.4082 -92.9172 +US 50221 Pershing Iowa IA Marion County 125 41.3055 -93.0957 +US 50225 Pleasantville Iowa IA Marion 125 41.3738 -93.2712 +US 50252 Swan Iowa IA Marion 125 41.4636 -93.301 +US 50256 Tracy Iowa IA Marion 125 41.2756 -92.8753 +US 50005 Albion Iowa IA Marshall 127 42.1143 -92.9882 +US 50051 Clemons Iowa IA Marshall 127 42.09 -93.1688 +US 50078 Ferguson Iowa IA Marshall 127 41.9374 -92.865 +US 50106 Gilman Iowa IA Marshall 127 41.9012 -92.8101 +US 50120 Haverhill Iowa IA Marshall 127 41.9337 -92.9829 +US 50141 Laurel Iowa IA Marshall 127 41.8829 -92.9263 +US 50142 Le Grand Iowa IA Marshall 127 42.0066 -92.7756 +US 50148 Liscomb Iowa IA Marshall 127 42.184 -92.9833 +US 50158 Marshalltown Iowa IA Marshall 127 42.0405 -92.9127 +US 50162 Melbourne Iowa IA Marshall 127 41.9323 -93.0856 +US 50234 Rhodes Iowa IA Marshall 127 41.9177 -93.1796 +US 50239 Saint Anthony Iowa IA Marshall 127 42.152 -93.1824 +US 50247 State Center Iowa IA Marshall 127 42.0109 -93.1673 +US 50637 Green Mountain Iowa IA Marshall County 127 42.1016 -92.8201 +US 51533 Emerson Iowa IA Mills 129 41.0284 -95.4106 +US 51534 Glenwood Iowa IA Mills 129 41.047 -95.7389 +US 51540 Hastings Iowa IA Mills 129 41.0132 -95.5008 +US 51541 Henderson Iowa IA Mills 129 41.1254 -95.4586 +US 51551 Malvern Iowa IA Mills 129 41.0074 -95.584 +US 51554 Mineola Iowa IA Mills 129 41.1414 -95.7005 +US 51561 Pacific Junction Iowa IA Mills 129 41.0271 -95.8046 +US 51571 Silver City Iowa IA Mills 129 41.113 -95.6269 +US 50426 Carpenter Iowa IA Mitchell 131 43.4149 -93.0028 +US 50454 Little Cedar Iowa IA Mitchell 131 43.3919 -92.7344 +US 50455 Mc Intire Iowa IA Mitchell 131 43.45 -92.6048 +US 50460 Orchard Iowa IA Mitchell 131 43.2355 -92.72 +US 50461 Osage Iowa IA Mitchell 131 43.2872 -92.8144 +US 50472 Saint Ansgar Iowa IA Mitchell 131 43.4061 -92.9235 +US 50476 Stacyville Iowa IA Mitchell 131 43.4457 -92.761 +US 50481 Toeterville Iowa IA Mitchell 131 43.3564 -92.789 +US 51010 Castana Iowa IA Monona 133 42.1054 -95.9431 +US 51034 Mapleton Iowa IA Monona 133 42.1585 -95.7909 +US 51040 Onawa Iowa IA Monona 133 42.037 -96.1072 +US 51051 Rodney Iowa IA Monona 133 42.198 -95.9769 +US 51059 Turin Iowa IA Monona 133 42.0332 -95.9651 +US 51060 Ute Iowa IA Monona 133 42.0581 -95.7125 +US 51063 Whiting Iowa IA Monona 133 42.1522 -96.1822 +US 51523 Blencoe Iowa IA Monona 133 41.9237 -96.0827 +US 51558 Moorhead Iowa IA Monona 133 41.9186 -95.829 +US 51572 Soldier Iowa IA Monona 133 41.9942 -95.7825 +US 50150 Lovilia Iowa IA Monroe 135 41.1272 -92.9293 +US 52531 Albia Iowa IA Monroe 135 41.0287 -92.7946 +US 52569 Melrose Iowa IA Monroe 135 40.9665 -93.0145 +US 50847 Grant Iowa IA Montgomery 137 41.1427 -94.9842 +US 50864 Villisca Iowa IA Montgomery 137 40.9437 -94.9796 +US 51532 Elliott Iowa IA Montgomery 137 41.1306 -95.1602 +US 51566 Red Oak Iowa IA Montgomery 137 41.0079 -95.2269 +US 51573 Stanton Iowa IA Montgomery 137 40.9859 -95.0988 +US 51591 Red Oak Iowa IA Montgomery 137 41.0303 -95.1562 +US 52720 Atalissa Iowa IA Muscatine 139 41.5614 -91.1748 +US 52739 Conesville Iowa IA Muscatine 139 41.3805 -91.3465 +US 52749 Fruitland Iowa IA Muscatine 139 41.3486 -91.1237 +US 52759 Montpelier Iowa IA Muscatine 139 41.4625 -90.8088 +US 52760 Moscow Iowa IA Muscatine 139 41.5646 -91.0859 +US 52761 Muscatine Iowa IA Muscatine 139 41.4304 -91.0509 +US 52766 Nichols Iowa IA Muscatine 139 41.4766 -91.2931 +US 52769 Stockton Iowa IA Muscatine 139 41.5583 -90.8473 +US 52776 West Liberty Iowa IA Muscatine 139 41.5701 -91.2668 +US 52778 Wilton Iowa IA Muscatine 139 41.5858 -91.01 +US 51009 Calumet Iowa IA O'Brien 141 42.9444 -95.5515 +US 51046 Paullina Iowa IA O'Brien 141 42.9703 -95.7083 +US 51058 Sutherland Iowa IA O'Brien 141 42.9826 -95.4807 +US 51201 Sheldon Iowa IA O'Brien 141 43.1808 -95.8401 +US 51231 Archer Iowa IA O'Brien 141 43.1179 -95.7417 +US 51245 Primghar Iowa IA O'Brien 141 43.0759 -95.6533 +US 51248 Sanborn Iowa IA O'Brien 141 43.189 -95.6622 +US 51346 Hartley Iowa IA O'Brien 141 43.18 -95.4817 +US 51232 Ashton Iowa IA Osceola 143 43.3053 -95.7655 +US 51249 Sibley Iowa IA Osceola 143 43.4069 -95.7424 +US 51330 Allendorf Iowa IA Osceola 143 43.4153 -95.6434 +US 51345 Harris Iowa IA Osceola 143 43.4568 -95.4426 +US 51349 May City Iowa IA Osceola 143 43.3779 -95.6248 +US 51350 Melvin Iowa IA Osceola 143 43.2845 -95.593 +US 51354 Ocheyedan Iowa IA Osceola 143 43.391 -95.5204 +US 51601 Shenandoah Iowa IA Page 145 40.7581 -95.3648 +US 51602 Shenandoah Iowa IA Page 145 40.7383 -95.1493 +US 51603 Shenandoah Iowa IA Page 145 40.7383 -95.1493 +US 51630 Blanchard Iowa IA Page 145 40.6122 -95.2054 +US 51631 Braddyville Iowa IA Page 145 40.5991 -94.9956 +US 51632 Clarinda Iowa IA Page 145 40.7491 -95.038 +US 51636 Coin Iowa IA Page 145 40.6686 -95.2217 +US 51637 College Springs Iowa IA Page 145 40.6249 -95.1157 +US 51638 Essex Iowa IA Page 145 40.8404 -95.2888 +US 51647 Northboro Iowa IA Page 145 40.6127 -95.3096 +US 51651 Shambaugh Iowa IA Page 145 40.6575 -95.025 +US 51656 Yorktown Iowa IA Page 145 40.7374 -95.1562 +US 51693 Shenandoah Iowa IA Page County 145 40.7594 -95.3692 +US 50515 Ayrshire Iowa IA Palo Alto 147 43.037 -94.8478 +US 50527 Curlew Iowa IA Palo Alto 147 42.9633 -94.7975 +US 50528 Cylinder Iowa IA Palo Alto 147 43.1507 -94.5107 +US 50536 Emmetsburg Iowa IA Palo Alto 147 43.1082 -94.6825 +US 50562 Mallard Iowa IA Palo Alto 147 42.9417 -94.6746 +US 50580 Rodman Iowa IA Palo Alto County 147 43.0372 -94.5003 +US 50597 West Bend Iowa IA Palo Alto 147 42.9574 -94.4564 +US 51342 Graettinger Iowa IA Palo Alto 147 43.2277 -94.7334 +US 51358 Ruthven Iowa IA Palo Alto 147 43.1448 -94.8842 +US 51001 Akron Iowa IA Plymouth 149 42.8354 -96.5225 +US 51008 Brunsville Iowa IA Plymouth 149 42.8093 -96.2626 +US 51017 Craig Iowa IA Plymouth 149 42.8962 -96.3095 +US 51024 Hinton Iowa IA Plymouth 149 42.604 -96.305 +US 51028 Kingsley Iowa IA Plymouth 149 42.6191 -95.9762 +US 51031 Le Mars Iowa IA Plymouth 149 42.7962 -96.1704 +US 51038 Merrill Iowa IA Plymouth 149 42.7047 -96.2283 +US 51045 Oyens Iowa IA Plymouth 149 42.8199 -96.0566 +US 51050 Remsen Iowa IA Plymouth 149 42.8149 -95.9544 +US 51057 Struble Iowa IA Plymouth 149 42.8376 -96.1786 +US 51062 Westfield Iowa IA Plymouth 149 42.6953 -96.492 +US 50540 Fonda Iowa IA Pocahontas 151 42.6051 -94.8297 +US 50546 Havelock Iowa IA Pocahontas 151 42.8411 -94.7252 +US 50553 Fonda Iowa IA Pocahontas County 151 42.5205 -94.8544 +US 50554 Laurens Iowa IA Pocahontas 151 42.8409 -94.8508 +US 50571 Palmer Iowa IA Pocahontas 151 42.6419 -94.5432 +US 50573 Plover Iowa IA Pocahontas 151 42.8648 -94.6197 +US 50574 Pocahontas Iowa IA Pocahontas 151 42.7296 -94.6737 +US 50581 Rolfe Iowa IA Pocahontas 151 42.8082 -94.5166 +US 50593 Varina Iowa IA Pocahontas 151 42.6598 -94.8979 +US 50007 Alleman Iowa IA Polk 153 41.8159 -93.6063 +US 50009 Altoona Iowa IA Polk 153 41.6475 -93.4724 +US 50015 Ankeny Iowa IA Polk 153 41.6727 -93.5722 +US 50021 Ankeny Iowa IA Polk 153 41.7212 -93.5682 +US 50023 Ankeny Iowa IA Polk County 153 41.7194 -93.6266 +US 50032 Berwick Iowa IA Polk 153 41.6658 -93.5432 +US 50035 Bondurant Iowa IA Polk 153 41.7017 -93.4527 +US 50073 Elkhart Iowa IA Polk 153 41.8114 -93.4855 +US 50111 Grimes Iowa IA Polk 153 41.7018 -93.7821 +US 50131 Johnston Iowa IA Polk 153 41.673 -93.7028 +US 50169 Mitchellville Iowa IA Polk 153 41.6609 -93.37 +US 50226 Polk City Iowa IA Polk 153 41.7549 -93.6893 +US 50237 Runnells Iowa IA Polk 153 41.5515 -93.4202 +US 50243 Sheldahl Iowa IA Polk 153 41.8571 -93.6973 +US 50265 West Des Moines Iowa IA Polk 153 41.5805 -93.7447 +US 50266 West Des Moines Iowa IA Polk 153 41.5695 -93.7994 +US 50301 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50302 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50303 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50304 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50305 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50306 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50307 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50308 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50309 Des Moines Iowa IA Polk 153 41.5887 -93.6212 +US 50310 Des Moines Iowa IA Polk 153 41.6255 -93.6736 +US 50311 Des Moines Iowa IA Polk 153 41.601 -93.6729 +US 50312 Des Moines Iowa IA Polk 153 41.5855 -93.6719 +US 50313 Des Moines Iowa IA Polk 153 41.6381 -93.6203 +US 50314 Des Moines Iowa IA Polk 153 41.603 -93.633 +US 50315 Des Moines Iowa IA Polk 153 41.5444 -93.6192 +US 50316 Des Moines Iowa IA Polk 153 41.6092 -93.6 +US 50317 Des Moines Iowa IA Polk 153 41.6122 -93.5296 +US 50318 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50319 Des Moines Iowa IA Polk 153 41.5921 -93.604 +US 50320 Des Moines Iowa IA Polk 153 41.5487 -93.5827 +US 50321 Des Moines Iowa IA Polk 153 41.5476 -93.6618 +US 50322 Urbandale Iowa IA Polk 153 41.6295 -93.723 +US 50323 Urbandale Iowa IA Polk 153 41.6294 -93.7717 +US 50324 Windsor Heights Iowa IA Polk 153 41.6032 -93.7152 5 +US 50325 Clive Iowa IA Polk 153 41.6067 -93.7457 +US 50327 Des Moines Iowa IA Polk 153 41.5815 -93.4848 +US 50328 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50329 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50330 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50331 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50332 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50333 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50334 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50335 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50336 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50338 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50339 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50340 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50347 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50350 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50359 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50360 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50361 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50362 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50363 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50364 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50367 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50368 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50369 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50380 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50381 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50391 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50392 Des Moines Iowa IA Polk 153 41.5878 -93.6274 +US 50393 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50394 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50395 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50396 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50397 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50398 West Des Moines Iowa IA Polk 153 41.5945 -93.7855 +US 50936 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50940 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50947 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50950 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50980 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 50981 Des Moines Iowa IA Polk 153 41.6727 -93.5722 +US 51501 Council Bluffs Iowa IA Pottawattamie 155 41.2324 -95.8751 +US 51502 Council Bluffs Iowa IA Pottawattamie 155 41.3329 -95.5872 +US 51503 Council Bluffs Iowa IA Pottawattamie 155 41.2616 -95.8251 +US 51510 Carter Lake Iowa IA Pottawattamie 155 41.2925 -95.9141 +US 51521 Avoca Iowa IA Pottawattamie 155 41.4768 -95.3509 +US 51525 Carson Iowa IA Pottawattamie 155 41.2253 -95.3681 +US 51526 Crescent Iowa IA Pottawattamie 155 41.3644 -95.8276 +US 51536 Hancock Iowa IA Pottawattamie 155 41.3832 -95.3445 +US 51542 Honey Creek Iowa IA Pottawattamie 155 41.463 -95.8802 +US 51548 Mc Clelland Iowa IA Pottawattamie 155 41.2932 -95.6813 +US 51549 Macedonia Iowa IA Pottawattamie 155 41.1916 -95.4314 +US 51553 Minden Iowa IA Pottawattamie 155 41.4654 -95.5519 +US 51559 Neola Iowa IA Pottawattamie 155 41.4564 -95.6794 +US 51560 Oakland Iowa IA Pottawattamie 155 41.312 -95.379 +US 51570 Shelby Iowa IA Pottawattamie 155 41.5339 -95.4469 +US 51575 Treynor Iowa IA Pottawattamie 155 41.2307 -95.6086 +US 51576 Underwood Iowa IA Pottawattamie 155 41.3603 -95.627 +US 51577 Walnut Iowa IA Pottawattamie 155 41.4623 -95.218 +US 51593 Harlan Iowa IA Pottawattamie 155 41.3329 -95.5872 +US 50112 Grinnell Iowa IA Poweshiek 157 41.7421 -92.7344 +US 50157 Malcom Iowa IA Poweshiek 157 41.7695 -92.5354 +US 50171 Montezuma Iowa IA Poweshiek 157 41.5928 -92.5276 +US 50172 Montezuma Iowa IA Poweshiek County 157 41.662 -92.3339 +US 50177 Grinnell Iowa IA Poweshiek 157 41.6857 -92.532 +US 50242 Searsboro Iowa IA Poweshiek 157 41.5656 -92.6987 +US 52211 Brooklyn Iowa IA Poweshiek 157 41.7321 -92.4285 +US 52221 Guernsey Iowa IA Poweshiek 157 41.6378 -92.3479 +US 52222 Deep River Iowa IA Poweshiek 157 41.5717 -92.3645 +US 52232 Hartwick Iowa IA Poweshiek 157 41.808 -92.3538 +US 50030 Beaconsfield Iowa IA Ringgold County 159 40.7767 -94.0735 +US 50074 Ellston Iowa IA Ringgold 159 40.8505 -94.0841 +US 50133 Kellerton Iowa IA Ringgold 159 40.6861 -94.0607 +US 50835 Benton Iowa IA Ringgold 159 40.7082 -94.3689 +US 50844 Delphos Iowa IA Ringgold County 159 40.664 -94.317 +US 50845 Diagonal Iowa IA Ringgold 159 40.8226 -94.3552 +US 50852 Maloy Iowa IA Ringgold County 159 40.6731 -94.4083 +US 50854 Mount Ayr Iowa IA Ringgold 159 40.7142 -94.2321 +US 50860 Redding Iowa IA Ringgold 159 40.6053 -94.3595 +US 50863 Tingley Iowa IA Ringgold 159 40.8516 -94.1908 +US 50535 Early Iowa IA Sac 161 42.4483 -95.1726 +US 50567 Nemaha Iowa IA Sac 161 42.518 -95.0939 +US 50583 Sac City Iowa IA Sac 161 42.4262 -94.9796 +US 51053 Schaller Iowa IA Sac 161 42.5055 -95.2846 +US 51433 Auburn Iowa IA Sac 161 42.2763 -94.8711 +US 51450 Lake View Iowa IA Sac 161 42.3154 -95.0486 +US 51458 Odebolt Iowa IA Sac 161 42.3095 -95.2501 +US 51466 Wall Lake Iowa IA Sac 161 42.2653 -95.0852 +US 52722 Bettendorf Iowa IA Scott 163 41.5509 -90.4942 +US 52725 Big Rock Iowa IA Scott County 163 41.7703 -90.8261 +US 52726 Blue Grass Iowa IA Scott 163 41.5112 -90.738 +US 52728 Buffalo Iowa IA Scott 163 41.4693 -90.7366 +US 52745 Dixon Iowa IA Scott 163 41.7113 -90.7553 +US 52746 Donahue Iowa IA Scott 163 41.7093 -90.6829 +US 52748 Eldridge Iowa IA Scott 163 41.6635 -90.5634 +US 52753 Le Claire Iowa IA Scott 163 41.6082 -90.3628 +US 52756 Long Grove Iowa IA Scott 163 41.7213 -90.5534 +US 52758 Mc Causland Iowa IA Scott 163 41.743 -90.4539 +US 52765 New Liberty Iowa IA Scott 163 41.7132 -90.8599 +US 52767 Pleasant Valley Iowa IA Scott 163 41.5746 -90.4213 +US 52768 Princeton Iowa IA Scott 163 41.6858 -90.3706 +US 52773 Walcott Iowa IA Scott 163 41.6453 -90.7256 +US 52800 Davenport Iowa IA Scott County 163 41.5628 -90.5314 +US 52801 Davenport Iowa IA Scott 163 41.5208 -90.5745 +US 52802 Davenport Iowa IA Scott 163 41.5164 -90.6141 +US 52803 Davenport Iowa IA Scott 163 41.5385 -90.5613 +US 52804 Davenport Iowa IA Scott 163 41.5386 -90.6115 +US 52805 Davenport Iowa IA Scott 163 41.613 -90.6063 +US 52806 Davenport Iowa IA Scott 163 41.5733 -90.6038 +US 52807 Davenport Iowa IA Scott 163 41.5618 -90.5403 +US 52808 Davenport Iowa IA Scott 163 41.613 -90.6063 +US 52809 Davenport Iowa IA Scott 163 41.613 -90.6063 +US 51437 Carnarvon Iowa IA Shelby County 165 42.2536 -95.0908 +US 51446 Irwin Iowa IA Shelby 165 41.7751 -95.1919 +US 51447 Kirkman Iowa IA Shelby 165 41.7308 -95.2671 +US 51527 Defiance Iowa IA Shelby 165 41.8053 -95.3537 +US 51530 Earling Iowa IA Shelby 165 41.7925 -95.421 +US 51531 Elk Horn Iowa IA Shelby 165 41.5829 -95.07 +US 51537 Harlan Iowa IA Shelby 165 41.6437 -95.3111 +US 51562 Panama Iowa IA Shelby 165 41.7288 -95.487 +US 51565 Portsmouth Iowa IA Shelby 165 41.6484 -95.5108 +US 51574 Tennant Iowa IA Shelby 165 41.5957 -95.4419 +US 51578 Westphalia Iowa IA Shelby 165 41.7199 -95.3952 +US 51003 Alton Iowa IA Sioux 167 42.9782 -96.0173 +US 51011 Chatsworth Iowa IA Sioux 167 42.9163 -96.5145 +US 51022 Granville Iowa IA Sioux 167 42.9693 -95.8972 +US 51023 Hawarden Iowa IA Sioux 167 43.0013 -96.473 +US 51027 Ireton Iowa IA Sioux 167 42.9666 -96.3232 +US 51036 Maurice Iowa IA Sioux 167 42.9626 -96.1655 +US 51041 Orange City Iowa IA Sioux 167 43.0185 -96.0565 +US 51234 Boyden Iowa IA Sioux 167 43.2034 -95.9823 +US 51238 Hospers Iowa IA Sioux 167 43.0793 -95.9142 +US 51239 Hull Iowa IA Sioux 167 43.1952 -96.1392 +US 51244 Matlock Iowa IA Sioux 167 43.215 -95.9151 +US 51247 Rock Valley Iowa IA Sioux 167 43.2014 -96.3103 +US 51250 Sioux Center Iowa IA Sioux 167 43.0814 -96.18 +US 50010 Ames Iowa IA Story 169 42.0379 -93.6003 +US 50011 Ames Iowa IA Story 169 42.036 -93.4652 +US 50012 Ames Iowa IA Story 169 42.0236 -93.6485 +US 50013 Ames Iowa IA Story 169 42.0235 -93.6408 +US 50014 Ames Iowa IA Story 169 42.0486 -93.6945 +US 50046 Cambridge Iowa IA Story 169 41.9025 -93.5305 +US 50055 Collins Iowa IA Story 169 41.9032 -93.3008 +US 50056 Colo Iowa IA Story 169 42.0131 -93.3071 +US 50105 Gilbert Iowa IA Story 169 42.1148 -93.6399 +US 50124 Huxley Iowa IA Story 169 41.8994 -93.6024 +US 50134 Kelley Iowa IA Story 169 41.9488 -93.6644 +US 50154 Mc Callsburg Iowa IA Story 169 42.1665 -93.3978 +US 50161 Maxwell Iowa IA Story 169 41.8967 -93.4001 +US 50201 Nevada Iowa IA Story 169 42.019 -93.4462 +US 50236 Roland Iowa IA Story 169 42.1646 -93.5063 +US 50244 Slater Iowa IA Story 169 41.8765 -93.6812 +US 50248 Story City Iowa IA Story 169 42.1835 -93.5988 +US 50278 Zearing Iowa IA Story 169 42.1535 -93.2928 +US 50173 Montour Iowa IA Tama 171 41.9709 -92.7006 +US 50612 Buckingham Iowa IA Tama 171 42.2552 -92.4098 +US 50632 Garwin Iowa IA Tama 171 42.0872 -92.6894 +US 50635 Gladbrook Iowa IA Tama 171 42.1774 -92.7141 +US 50652 Lincoln Iowa IA Tama 171 42.2643 -92.693 +US 50675 Traer Iowa IA Tama 171 42.1847 -92.4827 +US 52215 Chelsea Iowa IA Tama 171 41.9131 -92.4078 +US 52217 Clutier Iowa IA Tama 171 42.0789 -92.3763 +US 52224 Dysart Iowa IA Tama 171 42.169 -92.3187 +US 52225 Elberon Iowa IA Tama 171 42.0088 -92.3314 +US 52339 Tama Iowa IA Tama 171 41.9616 -92.58 +US 52342 Toledo Iowa IA Tama 171 42.0077 -92.5662 +US 52348 Vining Iowa IA Tama 171 41.9802 -92.3757 +US 50833 Bedford Iowa IA Taylor 173 40.6683 -94.7324 +US 50836 Blockton Iowa IA Taylor 173 40.6242 -94.5049 +US 50840 Clearfield Iowa IA Taylor 173 40.7935 -94.4944 +US 50848 Gravity Iowa IA Taylor 173 40.7909 -94.7506 +US 50851 Lenox Iowa IA Taylor 173 40.8841 -94.5612 +US 50862 Sharpsburg Iowa IA Taylor 173 40.795 -94.6416 +US 51646 New Market Iowa IA Taylor 173 40.7422 -94.8917 +US 50149 Lorimor Iowa IA Union 175 41.1233 -94.0639 +US 50254 Thayer Iowa IA Union 175 41.0029 -94.0686 +US 50801 Creston Iowa IA Union 175 41.0499 -94.3471 +US 50830 Afton Iowa IA Union 175 41.0401 -94.194 +US 50831 Arispe Iowa IA Union 175 40.9314 -94.2193 +US 50842 Cromwell Iowa IA Union 175 41.0398 -94.4616 +US 50850 Kent Iowa IA Union County 175 40.9474 -94.4215 +US 50861 Shannon City Iowa IA Union 175 40.9366 -94.2501 +US 52535 Birmingham Iowa IA Van Buren 177 40.8626 -91.9534 +US 52542 Cantril Iowa IA Van Buren 177 40.6546 -92.0465 +US 52551 Douds Iowa IA Van Buren 177 40.8378 -92.0859 +US 52565 Keosauqua Iowa IA Van Buren 177 40.7424 -91.9704 +US 52570 Milton Iowa IA Van Buren 177 40.6721 -92.1438 +US 52573 Mount Sterling Iowa IA Van Buren 177 40.6458 -91.9027 +US 52588 Selma Iowa IA Van Buren 177 40.864 -92.1736 +US 52620 Bonaparte Iowa IA Van Buren 177 40.7148 -91.7897 +US 52626 Farmington Iowa IA Van Buren 177 40.6397 -91.7447 +US 52651 Stockport Iowa IA Van Buren 177 40.8584 -91.8141 +US 52501 Ottumwa Iowa IA Wapello 179 41.0309 -92.4098 +US 52530 Agency Iowa IA Wapello 179 40.9957 -92.3162 +US 52536 Blakesburg Iowa IA Wapello 179 40.9555 -92.6195 +US 52548 Chillicothe Iowa IA Wapello 179 41.086 -92.5303 +US 52553 Eddyville Iowa IA Wapello 179 41.1533 -92.6221 +US 52554 Eldon Iowa IA Wapello 179 40.9261 -92.2268 +US 52566 Kirkville Iowa IA Wapello 179 41.1438 -92.5006 +US 50001 Ackworth Iowa IA Warren 181 41.3737 -93.3767 +US 50047 Carlisle Iowa IA Warren 181 41.4814 -93.4921 +US 50061 Cumming Iowa IA Warren 181 41.4849 -93.7539 +US 50118 Hartford Iowa IA Warren 181 41.4596 -93.4022 +US 50125 Indianola Iowa IA Warren 181 41.3143 -93.588 +US 50139 Lacona Iowa IA Warren 181 41.1988 -93.3838 +US 50145 Liberty Center Iowa IA Warren 181 41.2071 -93.4993 +US 50160 Martensdale Iowa IA Warren 181 41.3854 -93.7418 +US 50166 Milo Iowa IA Warren 181 41.2904 -93.4454 +US 50210 New Virginia Iowa IA Warren 181 41.1883 -93.6976 +US 50211 Norwalk Iowa IA Warren 181 41.4861 -93.6573 +US 50229 Prole Iowa IA Warren 181 41.383 -93.7344 +US 50241 Saint Marys Iowa IA Warren 181 41.3084 -93.7369 +US 52201 Ainsworth Iowa IA Washington 183 41.3202 -91.5472 +US 52247 Kalona Iowa IA Washington 183 41.4823 -91.7057 +US 52327 Riverside Iowa IA Washington 183 41.4758 -91.5741 +US 52353 Washington Iowa IA Washington 183 41.3015 -91.6987 +US 52356 Wellman Iowa IA Washington 183 41.47 -91.84 +US 52359 West Chester Iowa IA Washington 183 41.3585 -91.8075 +US 52540 Brighton Iowa IA Washington 183 41.1543 -91.8284 +US 52621 Crawfordsville Iowa IA Washington 183 41.2093 -91.5414 +US 50008 Allerton Iowa IA Wayne 185 40.7023 -93.3724 +US 50052 Clio Iowa IA Wayne 185 40.6342 -93.448 +US 50060 Corydon Iowa IA Wayne 185 40.7771 -93.3274 +US 50123 Humeston Iowa IA Wayne 185 40.8469 -93.5101 +US 50147 Lineville Iowa IA Wayne 185 40.6004 -93.4862 +US 50165 Millerton Iowa IA Wayne 185 40.8437 -93.3622 +US 52583 Promise City Iowa IA Wayne 185 40.7585 -93.1527 +US 52590 Seymour Iowa IA Wayne 185 40.6724 -93.1368 +US 50501 Fort Dodge Iowa IA Webster 187 42.5088 -94.1807 +US 50516 Badger Iowa IA Webster 187 42.6013 -94.1481 +US 50518 Barnum Iowa IA Webster 187 42.5159 -94.3703 +US 50521 Burnside Iowa IA Webster 187 42.3413 -94.1143 +US 50523 Callender Iowa IA Webster 187 42.3494 -94.282 +US 50524 Clare Iowa IA Webster 187 42.5954 -94.308 +US 50530 Dayton Iowa IA Webster 187 42.2594 -94.061 +US 50532 Duncombe Iowa IA Webster 187 42.4493 -94.0592 +US 50543 Gowrie Iowa IA Webster 187 42.2767 -94.2987 +US 50544 Harcourt Iowa IA Webster 187 42.2531 -94.1961 +US 50557 Lehigh Iowa IA Webster 187 42.3526 -94.0342 +US 50566 Moorland Iowa IA Webster 187 42.434 -94.3199 +US 50569 Otho Iowa IA Webster 187 42.4031 -94.1388 +US 50594 Vincent Iowa IA Webster 187 42.5623 -94.0335 +US 50424 Buffalo Center Iowa IA Winnebago 189 43.3732 -93.9376 +US 50436 Forest City Iowa IA Winnebago 189 43.2692 -93.6356 +US 50450 Lake Mills Iowa IA Winnebago 189 43.4167 -93.5336 +US 50453 Leland Iowa IA Winnebago 189 43.3425 -93.6895 +US 50465 Rake Iowa IA Winnebago 189 43.4767 -93.9171 +US 50473 Scarville Iowa IA Winnebago 189 43.4673 -93.6423 +US 50478 Thompson Iowa IA Winnebago 189 43.3875 -93.7517 +US 52101 Decorah Iowa IA Winneshiek 191 43.3227 -91.7939 +US 52131 Burr Oak Iowa IA Winneshiek 191 43.4787 -91.7656 +US 52132 Calmar Iowa IA Winneshiek 191 43.1974 -91.9126 +US 52133 Castalia Iowa IA Winneshiek 191 43.1361 -91.6643 +US 52143 Festina Iowa IA Winneshiek County 191 43.1194 -91.8668 +US 52144 Fort Atkinson Iowa IA Winneshiek 191 43.1339 -91.9134 +US 52149 Highlandville Iowa IA Winneshiek 191 43.4638 -91.6899 +US 52150 Jackson Junction Iowa IA Winneshiek County 191 43.1266 -92.0229 +US 52161 Ossian Iowa IA Winneshiek 191 43.1379 -91.7734 +US 52165 Ridgeway Iowa IA Winneshiek 191 43.2979 -92.0034 +US 52168 Spillville Iowa IA Winneshiek 191 43.2032 -91.9441 +US 51004 Anthon Iowa IA Woodbury 193 42.387 -95.8948 +US 51007 Bronson Iowa IA Woodbury 193 42.4292 -96.1986 +US 51015 Climbing Hill Iowa IA Woodbury 193 42.345 -96.0875 +US 51016 Correctionville Iowa IA Woodbury 193 42.4743 -95.7804 +US 51018 Cushing Iowa IA Woodbury 193 42.4642 -95.6775 +US 51019 Danbury Iowa IA Woodbury 193 42.2693 -95.7263 +US 51026 Hornick Iowa IA Woodbury 193 42.2897 -96.0796 +US 51030 Lawton Iowa IA Woodbury 193 42.5047 -96.2189 +US 51039 Moville Iowa IA Woodbury 193 42.4819 -96.0656 +US 51044 Oto Iowa IA Woodbury 193 42.2646 -95.8616 +US 51048 Pierson Iowa IA Woodbury 193 42.5335 -95.8922 +US 51052 Salix Iowa IA Woodbury 193 42.3306 -96.2879 +US 51054 Sergeant Bluff Iowa IA Woodbury 193 42.4019 -96.3534 +US 51055 Sloan Iowa IA Woodbury 193 42.2427 -96.2306 +US 51056 Smithland Iowa IA Woodbury 193 42.2408 -95.9486 +US 51101 Sioux City Iowa IA Woodbury 193 42.4972 -96.4029 +US 51102 Sioux City Iowa IA Woodbury 193 42.3684 -96.318 +US 51103 Sioux City Iowa IA Woodbury 193 42.5068 -96.4295 +US 51104 Sioux City Iowa IA Woodbury 193 42.5254 -96.4005 +US 51105 Sioux City Iowa IA Woodbury 193 42.5032 -96.3829 +US 51106 Sioux City Iowa IA Woodbury 193 42.4671 -96.3528 +US 51107 Sioux City Iowa IA Woodbury County 193 42.4875 -96.3813 +US 51108 Sioux City Iowa IA Woodbury 193 42.5469 -96.3617 +US 51109 Sioux City Iowa IA Woodbury 193 42.5173 -96.4803 +US 51110 Sioux City Iowa IA Woodbury County 193 42.4011 -96.372 +US 51111 Sioux City Iowa IA Woodbury 193 42.4089 -96.3713 +US 50434 Fertile Iowa IA Worth 195 43.2992 -93.285 +US 50440 Grafton Iowa IA Worth 195 43.311 -93.0797 +US 50444 Hanlontown Iowa IA Worth 195 43.3207 -93.3789 +US 50446 Joice Iowa IA Worth 195 43.3761 -93.4454 +US 50448 Kensett Iowa IA Worth 195 43.3739 -93.1728 +US 50456 Manly Iowa IA Worth 195 43.2891 -93.2018 +US 50459 Northwood Iowa IA Worth 195 43.4506 -93.2419 +US 50071 Dows Iowa IA Wright 197 42.661 -93.5058 +US 50101 Galt Iowa IA Wright 197 42.6912 -93.6035 +US 50421 Belmond Iowa IA Wright 197 42.8511 -93.62 +US 50470 Rowan Iowa IA Wright 197 42.7596 -93.557 +US 50525 Clarion Iowa IA Wright 197 42.7271 -93.7277 +US 50526 Clarion Iowa IA Wright 197 42.733 -93.7352 +US 50533 Eagle Grove Iowa IA Wright 197 42.6609 -93.9049 +US 50542 Goldfield Iowa IA Wright 197 42.7581 -93.9194 +US 50599 Woolstock Iowa IA Wright 197 42.5844 -93.8216 +US 83616 Eagle Idaho ID Ada 001 43.7069 -116.362 +US 83634 Kuna Idaho ID Ada 001 43.487 -116.3819 +US 83642 Meridian Idaho ID Ada 001 43.615 -116.3975 +US 83669 Star Idaho ID Ada 001 43.7013 -116.4967 +US 83680 Meridian Idaho ID Ada 001 43.4599 -116.244 +US 83701 Boise Idaho ID Ada 001 43.6038 -116.2729 +US 83702 Boise Idaho ID Ada 001 43.6322 -116.2052 +US 83703 Boise Idaho ID Ada 001 43.6601 -116.2524 +US 83704 Boise Idaho ID Ada 001 43.633 -116.2951 +US 83705 Boise Idaho ID Ada 001 43.5851 -116.2191 +US 83706 Boise Idaho ID Ada 001 43.5885 -116.191 +US 83707 Boise Idaho ID Ada 001 43.3847 -115.9971 +US 83708 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83709 Boise Idaho ID Ada 001 43.5741 -116.2941 +US 83711 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83712 Boise Idaho ID Ada 001 43.6023 -116.1649 +US 83713 Boise Idaho ID Ada 001 43.634 -116.3419 +US 83714 Garden City Idaho ID Ada 001 43.7318 -116.2797 +US 83714 Boise Idaho ID Ada 001 43.7318 -116.2797 +US 83715 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83716 Boise Idaho ID Ada 001 43.5345 -115.9711 +US 83717 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83719 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83720 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83721 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83722 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83723 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83724 Boise Idaho ID Ada 001 43.6195 -116.1952 +US 83725 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83726 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83727 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83728 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83729 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83730 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83731 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83732 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83733 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83735 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83744 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83756 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83757 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83788 Boise Idaho ID Ada 001 43.6068 -116.2823 +US 83799 Boise Idaho ID Ada 001 43.4599 -116.244 +US 83612 Council Idaho ID Adams 003 44.7628 -116.4518 +US 83620 Fruitvale Idaho ID Adams 003 44.8177 -116.4299 +US 83632 Indian Valley Idaho ID Adams 003 44.5491 -116.443 +US 83643 Mesa Idaho ID Adams 003 44.6255 -116.4493 +US 83654 New Meadows Idaho ID Adams 003 44.994 -116.2874 +US 83201 Pocatello Idaho ID Bannock 005 42.8876 -112.4381 +US 83202 Pocatello Idaho ID Bannock 005 42.9357 -112.4679 +US 83204 Pocatello Idaho ID Bannock 005 42.8465 -112.4434 +US 83205 Pocatello Idaho ID Bannock 005 42.8062 -112.4103 +US 83206 Pocatello Idaho ID Bannock 005 42.6395 -112.3138 +US 83209 Pocatello Idaho ID Bannock 005 42.6395 -112.3138 +US 83214 Arimo Idaho ID Bannock 005 42.56 -112.1746 +US 83234 Downey Idaho ID Bannock 005 42.4181 -112.109 +US 83245 Inkom Idaho ID Bannock 005 42.7964 -112.2465 +US 83246 Lava Hot Springs Idaho ID Bannock 005 42.6185 -112.0176 +US 83250 McCammon Idaho ID Bannock 005 42.6336 -112.1758 +US 83281 Swanlake Idaho ID Bannock 005 42.3195 -111.9781 +US 83220 Bern Idaho ID Bear Lake 007 42.3191 -111.3926 +US 83223 Bloomington Idaho ID Bear Lake 007 42.184 -111.4086 +US 83233 Dingle Idaho ID Bear Lake 007 42.1774 -111.2174 +US 83238 Geneva Idaho ID Bear Lake 007 42.3136 -111.0722 +US 83239 Georgetown Idaho ID Bear Lake 007 42.4729 -111.4358 +US 83254 Montpelier Idaho ID Bear Lake 007 42.352 -111.3195 +US 83260 Ovid Idaho ID Bear Lake County 007 42.3124 -111.4527 +US 83261 Paris Idaho ID Bear Lake 007 42.2242 -111.4208 +US 83272 Saint Charles Idaho ID Bear Lake 007 42.1128 -111.3897 +US 83287 Fish Haven Idaho ID Bear Lake 007 42.0459 -111.4633 +US 83824 Desmet Idaho ID Benewah 009 47.126 -116.8937 +US 83830 Fernwood Idaho ID Benewah 009 47.116 -116.3831 +US 83851 Plummer Idaho ID Benewah 009 47.3278 -116.8662 +US 83861 Saint Maries Idaho ID Benewah 009 47.2977 -116.5681 +US 83866 Santa Idaho ID Benewah 009 47.1544 -116.431 +US 83870 Tensed Idaho ID Benewah 009 47.1707 -116.9027 +US 83203 Fort Hall Idaho ID Bingham 011 43.0331 -112.4285 +US 83210 Aberdeen Idaho ID Bingham 011 43.0049 -112.84 +US 83215 Atomic City Idaho ID Bingham 011 43.2448 -112.2979 +US 83218 Basalt Idaho ID Bingham 011 43.3043 -112.1817 +US 83221 Blackfoot Idaho ID Bingham 011 43.1943 -112.3615 +US 83236 Firth Idaho ID Bingham 011 43.3021 -112.1588 +US 83256 Moreland Idaho ID Bingham 011 43.2226 -112.4423 +US 83262 Pingree Idaho ID Bingham 011 43.1336 -112.6295 +US 83274 Shelley Idaho ID Bingham 011 43.3769 -112.1075 +US 83277 Springfield Idaho ID Bingham 011 43.0803 -112.673 +US 83313 Bellevue Idaho ID Blaine 013 43.4397 -114.2498 +US 83320 Carey Idaho ID Blaine 013 43.2744 -113.8926 +US 83333 Hailey Idaho ID Blaine 013 43.5239 -114.3064 +US 83340 Ketchum Idaho ID Blaine 013 43.6692 -114.4858 +US 83348 Picabo Idaho ID Blaine 013 43.3101 -114.0861 +US 83353 Sun Valley Idaho ID Blaine 013 43.6853 -114.3313 +US 83354 Sun Valley Idaho ID Blaine 013 43.5946 -114.3226 +US 83602 Banks Idaho ID Boise 015 44.0887 -116.0658 +US 83622 Garden Valley Idaho ID Boise 015 44.0909 -115.8243 +US 83629 Horseshoe Bend Idaho ID Boise 015 43.9229 -116.1809 +US 83631 Idaho City Idaho ID Boise 015 43.8834 -115.708 +US 83637 Lowman Idaho ID Boise 015 44.1106 -115.5285 +US 83646 Meridian Idaho ID Boise County 015 43.6498 -116.4306 +US 83666 Placerville Idaho ID Boise 015 43.9633 -115.9759 +US 83804 Blanchard Idaho ID Bonner 017 48.0223 -116.9909 +US 83809 Careywood Idaho ID Bonner 017 48.0482 -116.5939 +US 83811 Clark Fork Idaho ID Bonner 017 48.1405 -116.1699 +US 83813 Cocolalla Idaho ID Bonner 017 48.1248 -116.6571 +US 83821 Coolin Idaho ID Bonner 017 48.5228 -116.8408 +US 83822 Oldtown Idaho ID Bonner 017 48.1552 -116.9781 +US 83825 Dover Idaho ID Bonner 017 48.3687 -116.5455 +US 83836 Hope Idaho ID Bonner 017 48.2444 -116.2795 +US 83840 Kootenai Idaho ID Bonner 017 48.3144 -116.5153 +US 83841 Laclede Idaho ID Bonner 017 48.1791 -116.8246 +US 83848 Nordman Idaho ID Bonner 017 48.6146 -116.9258 +US 83852 Ponderay Idaho ID Bonner 017 48.4114 -116.7319 +US 83856 Priest River Idaho ID Bonner 017 48.1664 -116.9066 +US 83860 Sagle Idaho ID Bonner 017 48.2035 -116.5455 +US 83862 Samuels Idaho ID Bonner 017 48.3687 -116.5455 +US 83864 Sandpoint Idaho ID Bonner 017 48.312 -116.5332 +US 83865 Colburn Idaho ID Bonner 017 48.3633 -116.6256 +US 83888 Sandpoint Idaho ID Bonner 017 48.3687 -116.5455 +US 83401 Idaho Falls Idaho ID Bonneville 019 43.5518 -111.8919 +US 83402 Idaho Falls Idaho ID Bonneville 019 43.4934 -112.0578 +US 83403 Idaho Falls Idaho ID Bonneville 019 43.4211 -111.3334 +US 83404 Idaho Falls Idaho ID Bonneville 019 43.475 -112.0124 +US 83405 Idaho Falls Idaho ID Bonneville 019 43.3233 -111.7822 +US 83406 Idaho Falls Idaho ID Bonneville 019 43.4732 -111.9661 +US 83415 Idaho Falls Idaho ID Bonneville 019 43.3233 -111.7822 +US 83427 Iona Idaho ID Bonneville 019 43.4073 -111.8543 +US 83428 Irwin Idaho ID Bonneville 019 43.3861 -111.2527 +US 83437 Palisades Idaho ID Bonneville County 019 43.3519 -111.2169 +US 83449 Swan Valley Idaho ID Bonneville 019 43.4058 -111.2794 +US 83454 Ucon Idaho ID Bonneville 019 43.5936 -111.9573 +US 83805 Bonners Ferry Idaho ID Boundary 021 48.7306 -116.3322 +US 83826 Eastport Idaho ID Boundary 021 48.7506 -116.5407 +US 83845 Moyie Springs Idaho ID Boundary 021 48.7464 -116.1796 +US 83847 Naples Idaho ID Boundary 021 48.6049 -116.3196 +US 83853 Porthill Idaho ID Boundary 021 48.992 -116.4775 +US 83213 Arco Idaho ID Butte 023 43.6355 -113.3176 +US 83231 Moore Idaho ID Butte County 023 43.7715 -113.3803 +US 83244 Howe Idaho ID Butte 023 43.9087 -113.0878 +US 83255 Moore Idaho ID Butte 023 43.7296 -113.4544 +US 83322 Corral Idaho ID Camas 025 43.5282 -114.7307 +US 83327 Fairfield Idaho ID Camas 025 43.3675 -114.7908 +US 83337 Hill City Idaho ID Camas 025 43.3277 -114.8017 +US 83605 Caldwell Idaho ID Canyon 027 43.6627 -116.7 +US 83606 Caldwell Idaho ID Canyon 027 43.7249 -116.7989 +US 83607 Caldwell Idaho ID Canyon 027 43.6186 -116.7501 +US 83626 Greenleaf Idaho ID Canyon 027 43.669 -116.8315 +US 83630 Huston Idaho ID Canyon 027 43.6027 -116.7903 +US 83641 Melba Idaho ID Canyon 027 43.3784 -116.5489 +US 83644 Middleton Idaho ID Canyon 027 43.7191 -116.6112 +US 83651 Nampa Idaho ID Canyon 027 43.5834 -116.5848 +US 83652 Nampa Idaho ID Canyon 027 43.7071 -116.6208 +US 83653 Nampa Idaho ID Canyon 027 43.5851 -116.753 +US 83656 Notus Idaho ID Canyon 027 43.7259 -116.7997 +US 83660 Parma Idaho ID Canyon 027 43.7896 -116.9401 +US 83676 Wilder Idaho ID Canyon 027 43.6579 -116.9122 +US 83686 Nampa Idaho ID Canyon 027 43.5441 -116.566 +US 83687 Nampa Idaho ID Canyon 027 43.5937 -116.536 +US 83217 Bancroft Idaho ID Caribou 029 42.7205 -111.8429 +US 83230 Conda Idaho ID Caribou 029 42.7191 -111.5967 +US 83241 Grace Idaho ID Caribou 029 42.55 -111.74 +US 83276 Soda Springs Idaho ID Caribou 029 42.6718 -111.5699 +US 83285 Wayan Idaho ID Caribou 029 43.0269 -111.2541 +US 83311 Albion Idaho ID Cassia 031 42.3896 -113.5567 +US 83312 Almo Idaho ID Cassia 031 42.0846 -113.6283 +US 83318 Burley Idaho ID Cassia 031 42.5244 -113.7931 +US 83323 Declo Idaho ID Cassia 031 42.5245 -113.4338 +US 83342 Malta Idaho ID Cassia 031 42.2741 -113.3927 +US 83346 Oakley Idaho ID Cassia 031 42.194 -113.872 +US 83423 Dubois Idaho ID Clark 033 44.1858 -112.3259 +US 83446 Spencer Idaho ID Clark 033 44.2718 -112.3062 +US 83520 Ahsahka Idaho ID Clearwater 035 46.5394 -116.3233 +US 83541 Lenore Idaho ID Clearwater 035 46.5354 -116.513 +US 83544 Orofino Idaho ID Clearwater 035 46.4952 -116.2404 +US 83546 Pierce Idaho ID Clearwater 035 46.4924 -115.8071 +US 83553 Weippe Idaho ID Clearwater 035 46.3807 -115.9386 +US 83827 Elk River Idaho ID Clearwater 035 46.7796 -116.2145 +US 83226 Challis Idaho ID Custer 037 44.4969 -114.1946 +US 83227 Clayton Idaho ID Custer 037 44.2733 -114.4102 +US 83235 Ellis Idaho ID Custer 037 44.224 -114.3127 +US 83251 Mackay Idaho ID Custer 037 43.9111 -113.612 +US 83278 Stanley Idaho ID Custer 037 44.3714 -114.8561 +US 83326 Elba Idaho ID Custer County 037 42.1979 -113.6888 +US 83601 Atlanta Idaho ID Elmore 039 43.8479 -115.2538 +US 83623 Glenns Ferry Idaho ID Elmore 039 42.9622 -115.316 +US 83627 Hammett Idaho ID Elmore 039 42.9482 -115.3837 +US 83633 King Hill Idaho ID Elmore 039 42.9799 -115.1899 +US 83647 Mountain Home Idaho ID Elmore 039 43.1392 -115.6963 +US 83648 Mountain Home A F B Idaho ID Elmore 039 43.0496 -115.8656 +US 83228 Clifton Idaho ID Franklin 041 42.216 -111.9957 +US 83232 Dayton Idaho ID Franklin 041 42.1184 -111.9858 +US 83237 Franklin Idaho ID Franklin 041 42.0288 -111.7871 +US 83263 Preston Idaho ID Franklin 041 42.1109 -111.8565 +US 83283 Thatcher Idaho ID Franklin 041 42.3794 -111.6841 +US 83286 Weston Idaho ID Franklin 041 42.0446 -111.9715 +US 83420 Ashton Idaho ID Fremont 043 44.0153 -111.4253 +US 83421 Chester Idaho ID Fremont 043 44.0011 -111.5351 +US 83429 Island Park Idaho ID Fremont 043 44.4466 -111.3679 +US 83433 Macks Inn Idaho ID Fremont 043 44.3192 -111.6017 +US 83436 Newdale Idaho ID Fremont 043 43.8881 -111.6042 +US 83438 Parker Idaho ID Fremont 043 44.3192 -111.6017 +US 83445 Saint Anthony Idaho ID Fremont 043 43.963 -111.7036 +US 83447 Squirrel Idaho ID Fremont 043 44.3192 -111.6017 +US 83451 Teton Idaho ID Fremont 043 43.8907 -111.6504 +US 83617 Emmett Idaho ID Gem 045 43.9089 -116.4927 +US 83636 Letha Idaho ID Gem 045 43.8963 -116.6462 +US 83657 Ola Idaho ID Gem 045 44.2418 -116.2732 +US 83670 Sweet Idaho ID Gem 045 43.9948 -116.3232 +US 83314 Bliss Idaho ID Gooding 047 42.9449 -114.9104 +US 83330 Gooding Idaho ID Gooding 047 42.9373 -114.712 +US 83332 Hagerman Idaho ID Gooding 047 42.8142 -114.887 +US 83355 Wendell Idaho ID Gooding 047 42.7579 -114.7154 +US 83522 Cottonwood Idaho ID Idaho 049 46.0448 -116.3733 +US 83525 Elk City Idaho ID Idaho 049 45.7896 -115.5024 +US 83526 Ferdinand Idaho ID Idaho 049 46.1349 -116.3982 +US 83530 Grangeville Idaho ID Idaho 049 45.9272 -116.1076 +US 83531 Fenn Idaho ID Idaho 049 45.8893 -115.5574 +US 83533 Greencreek Idaho ID Idaho 049 46.1155 -116.2724 +US 83538 Cottonwood Idaho ID Idaho County 049 45.9423 -116.5493 +US 83539 Kooskia Idaho ID Idaho 049 46.116 -115.9459 +US 83542 Lucile Idaho ID Idaho 049 45.557 -116.2669 +US 83547 Pollock Idaho ID Idaho 049 45.3068 -116.3517 +US 83549 Riggins Idaho ID Idaho 049 45.397 -116.3006 +US 83552 Stites Idaho ID Idaho 049 46.002 -115.9269 +US 83554 White Bird Idaho ID Idaho 049 45.7521 -116.2889 +US 83671 Warren Idaho ID Idaho 049 45.8893 -115.5574 +US 83425 Hamer Idaho ID Jefferson 051 43.9308 -112.1872 +US 83431 Lewisville Idaho ID Jefferson 051 43.6725 -112.0189 +US 83434 Menan Idaho ID Jefferson 051 43.7266 -111.9837 +US 83435 Monteview Idaho ID Jefferson 051 43.9862 -112.5783 +US 83442 Rigby Idaho ID Jefferson 051 43.6715 -111.9005 +US 83443 Ririe Idaho ID Jefferson 051 43.5197 -111.5266 +US 83444 Roberts Idaho ID Jefferson 051 43.7116 -112.1196 +US 83450 Terreton Idaho ID Jefferson 051 43.8586 -112.42 +US 83325 Eden Idaho ID Jerome 053 42.5868 -114.2467 +US 83335 Hazelton Idaho ID Jerome 053 42.5955 -114.135 +US 83338 Jerome Idaho ID Jerome 053 42.7178 -114.5012 +US 83801 Athol Idaho ID Kootenai 055 47.9267 -116.7318 +US 83803 Bayview Idaho ID Kootenai 055 47.9822 -116.5494 +US 83810 Cataldo Idaho ID Kootenai 055 47.5522 -116.4431 +US 83814 Coeur D Alene Idaho ID Kootenai 055 47.6928 -116.785 +US 83815 Coeur D Alene Idaho ID Kootenai 055 47.7248 -116.789 +US 83816 Coeur D Alene Idaho ID Kootenai 055 47.6788 -116.6827 +US 83833 Harrison Idaho ID Kootenai 055 47.5017 -116.7446 +US 83835 Hayden Idaho ID Kootenai 055 47.7989 -116.7423 +US 83842 Medimont Idaho ID Kootenai 055 47.4625 -116.5683 +US 83854 Post Falls Idaho ID Kootenai 055 47.7205 -116.9353 +US 83858 Rathdrum Idaho ID Kootenai 055 47.8241 -116.8873 +US 83869 Spirit Lake Idaho ID Kootenai 055 47.9657 -116.868 +US 83876 Worley Idaho ID Kootenai 055 47.4292 -116.9056 +US 83877 Post Falls Idaho ID Kootenai 055 47.6788 -116.6827 +US 83535 Juliaetta Idaho ID Latah 057 46.5754 -116.7188 +US 83537 Kendrick Idaho ID Latah 057 46.6286 -116.6049 +US 83806 Bovill Idaho ID Latah 057 46.8936 -116.3624 +US 83823 Deary Idaho ID Latah 057 46.8061 -116.5238 +US 83832 Genesee Idaho ID Latah 057 46.5714 -116.929 +US 83834 Harvard Idaho ID Latah 057 46.9376 -116.7025 +US 83843 Moscow Idaho ID Latah 057 46.7309 -116.9897 +US 83844 Moscow Idaho ID Latah 057 46.8363 -116.6846 +US 83855 Potlatch Idaho ID Latah 057 46.9448 -116.9141 +US 83857 Princeton Idaho ID Latah 057 46.8996 -116.8287 +US 83871 Troy Idaho ID Latah 057 46.7426 -116.7681 +US 83872 Viola Idaho ID Latah 057 46.8583 -116.9732 +US 83229 Cobalt Idaho ID Lemhi 059 44.9681 -113.8167 +US 83253 May Idaho ID Lemhi 059 44.9681 -113.8167 +US 83462 Carmen Idaho ID Lemhi 059 45.255 -113.8573 +US 83463 Gibbonsville Idaho ID Lemhi 059 45.5704 -113.9913 +US 83464 Leadore Idaho ID Lemhi 059 44.7389 -113.4926 +US 83465 Lemhi Idaho ID Lemhi 059 44.9681 -113.8167 +US 83466 North Fork Idaho ID Lemhi 059 45.4242 -114.0419 +US 83467 Salmon Idaho ID Lemhi 059 45.1571 -113.8784 +US 83468 Tendoy Idaho ID Lemhi 059 44.9681 -113.8167 +US 83469 Shoup Idaho ID Lemhi 059 45.1851 -114.406 +US 83523 Craigmont Idaho ID Lewis 061 46.2453 -116.4677 +US 83536 Kamiah Idaho ID Lewis 061 46.2186 -116.0347 +US 83543 Nezperce Idaho ID Lewis 061 46.2475 -116.2393 +US 83548 Reubens Idaho ID Lewis 061 46.3361 -116.5333 +US 83555 Winchester Idaho ID Lewis 061 46.2383 -116.6204 +US 83324 Dietrich Idaho ID Lincoln 063 42.9125 -114.2664 +US 83349 Richfield Idaho ID Lincoln 063 43.0588 -114.1508 +US 83352 Shoshone Idaho ID Lincoln 063 42.9474 -114.3822 +US 83440 Rexburg Idaho ID Madison 065 43.81 -111.789 +US 83441 Rexburg Idaho ID Madison 065 43.7761 -111.691 +US 83448 Sugar City Idaho ID Madison 065 43.8477 -111.6932 +US 83460 Rexburg Idaho ID Madison 065 43.7761 -111.691 +US 83336 Heyburn Idaho ID Minidoka 067 42.5599 -113.7709 +US 83343 Minidoka Idaho ID Minidoka 067 42.773 -113.5098 +US 83347 Paul Idaho ID Minidoka 067 42.624 -113.7971 +US 83350 Rupert Idaho ID Minidoka 067 42.6888 -113.6481 +US 83501 Lewiston Idaho ID Nez Perce 069 46.3646 -116.8609 +US 83524 Culdesac Idaho ID Nez Perce 069 46.378 -116.6536 +US 83540 Lapwai Idaho ID Nez Perce 069 46.4124 -116.7902 +US 83545 Peck Idaho ID Nez Perce 069 46.4807 -116.4114 +US 83551 Spalding Idaho ID Nez Perce 069 46.4003 -116.8045 +US 83243 Holbrook Idaho ID Oneida 071 42.2221 -112.6934 +US 83252 Malad City Idaho ID Oneida 071 42.1808 -112.262 +US 83280 Stone Idaho ID Oneida County 071 42.0384 -112.7109 +US 83604 Bruneau Idaho ID Owyhee 073 42.614 -115.8419 +US 83624 Grand View Idaho ID Owyhee 073 43.3006 -116.5103 +US 83628 Homedale Idaho ID Owyhee 073 43.6138 -116.9472 +US 83639 Marsing Idaho ID Owyhee 073 43.5399 -116.824 +US 83650 Murphy Idaho ID Owyhee 073 42.8481 -116.6371 +US 83619 Fruitland Idaho ID Payette 075 44.0027 -116.9143 +US 83655 New Plymouth Idaho ID Payette 075 43.959 -116.8048 +US 83661 Payette Idaho ID Payette 075 44.0782 -116.9203 +US 83211 American Falls Idaho ID Power 077 42.6352 -112.9458 +US 83212 Arbon Idaho ID Power 077 42.5026 -112.5585 +US 83271 Rockland Idaho ID Power 077 42.5556 -112.854 +US 83802 Avery Idaho ID Shoshone 079 47.2714 -115.866 +US 83808 Calder Idaho ID Shoshone 079 47.3219 -116.0703 +US 83812 Clarkia Idaho ID Shoshone 079 47.0445 -116.2774 +US 83837 Kellogg Idaho ID Shoshone 079 47.5431 -116.1253 +US 83839 Kingston Idaho ID Shoshone 079 47.5509 -116.2887 +US 83846 Mullan Idaho ID Shoshone 079 47.4709 -115.7926 +US 83849 Osburn Idaho ID Shoshone 079 47.5211 -116.021 +US 83850 Pinehurst Idaho ID Shoshone 079 47.5018 -116.2647 +US 83867 Silverton Idaho ID Shoshone 079 47.4981 -115.9657 +US 83868 Smelterville Idaho ID Shoshone 079 47.5362 -116.2062 +US 83873 Wallace Idaho ID Shoshone 079 47.4908 -115.962 +US 83874 Murray Idaho ID Shoshone 079 47.5012 -115.6445 +US 83422 Driggs Idaho ID Teton 081 43.7263 -111.1199 +US 83424 Felt Idaho ID Teton 081 43.8724 -111.1895 +US 83452 Tetonia Idaho ID Teton 081 43.7814 -111.2118 +US 83455 Victor Idaho ID Teton 081 43.6148 -111.1259 +US 83301 Twin Falls Idaho ID Twin Falls 083 42.5565 -114.4693 +US 83302 Rogerson Idaho ID Twin Falls 083 42.1669 -114.816 +US 83303 Twin Falls Idaho ID Twin Falls 083 42.4563 -114.5195 +US 83316 Buhl Idaho ID Twin Falls 083 42.6008 -114.7825 +US 83321 Castleford Idaho ID Twin Falls 083 42.521 -114.8734 +US 83328 Filer Idaho ID Twin Falls 083 42.5653 -114.614 +US 83334 Hansen Idaho ID Twin Falls 083 42.5249 -114.2994 +US 83341 Kimberly Idaho ID Twin Falls 083 42.5287 -114.3657 +US 83344 Murtaugh Idaho ID Twin Falls 083 42.4776 -114.1606 +US 83611 Cascade Idaho ID Valley 085 44.6927 -115.6417 +US 83615 Donnelly Idaho ID Valley 085 44.6659 -116.0369 +US 83635 Lake Fork Idaho ID Valley 085 44.6837 -115.4536 +US 83638 McCall Idaho ID Valley 085 44.8918 -116.0789 +US 83677 Yellow Pine Idaho ID Valley 085 44.9698 -115.4963 +US 83610 Cambridge Idaho ID Washington 087 44.5922 -116.6757 +US 83645 Midvale Idaho ID Washington 087 44.442 -116.7038 +US 83672 Weiser Idaho ID Washington 087 44.2522 -116.9651 +US 62301 Quincy Illinois IL Adams 001 39.9307 -91.3763 +US 62305 Quincy Illinois IL Adams 001 39.9601 -91.3026 +US 62306 Quincy Illinois IL Adams 001 39.9786 -91.2126 +US 62320 Camp Point Illinois IL Adams 001 40.0293 -91.0769 +US 62324 Clayton Illinois IL Adams 001 40.0133 -90.9554 +US 62325 Coatsburg Illinois IL Adams 001 40.0554 -91.1747 +US 62328 Columbus Illinois IL Adams County 001 39.9326 -91.3022 +US 62338 Fowler Illinois IL Adams 001 39.9925 -91.2452 +US 62339 Golden Illinois IL Adams 001 40.1203 -91.0296 +US 62346 La Prairie Illinois IL Adams 001 40.1572 -90.9844 +US 62347 Liberty Illinois IL Adams 001 39.8892 -91.0869 +US 62348 Lima Illinois IL Adams 001 40.1656 -91.3875 +US 62349 Loraine Illinois IL Adams 001 40.1532 -91.213 +US 62351 Mendon Illinois IL Adams 001 40.0857 -91.2899 +US 62359 Paloma Illinois IL Adams 001 40.0366 -91.2053 +US 62360 Payson Illinois IL Adams 001 39.8153 -91.2627 +US 62365 Plainville Illinois IL Adams 001 39.8004 -91.1436 +US 62376 Ursa Illinois IL Adams 001 40.0809 -91.3733 +US 62913 Cache Illinois IL Alexander 003 37.1528 -89.3256 +US 62914 Cairo Illinois IL Alexander 003 37.0123 -89.1811 +US 62929 Elco Illinois IL Alexander County 003 37.3004 -89.2657 +US 62957 Mc Clure Illinois IL Alexander 003 37.302 -89.4531 +US 62962 Miller City Illinois IL Alexander 003 37.1034 -89.3494 +US 62969 Olive Branch Illinois IL Alexander 003 37.1674 -89.3537 +US 62988 Tamms Illinois IL Alexander 003 37.2345 -89.2763 +US 62990 Thebes Illinois IL Alexander 003 37.221 -89.4599 +US 62993 Unity Illinois IL Alexander 003 37.1528 -89.3256 +US 62019 Donnellson Illinois IL Bond 005 39.0344 -89.4909 +US 62086 Sorento Illinois IL Bond 005 38.9693 -89.5653 +US 62246 Greenville Illinois IL Bond 005 38.8933 -89.4052 +US 62262 Mulberry Grove Illinois IL Bond 005 38.9311 -89.2463 +US 62273 Pierron Illinois IL Bond 005 38.8845 -89.4449 +US 62275 Pocahontas Illinois IL Bond 005 38.7846 -89.5247 +US 62284 Smithboro Illinois IL Bond 005 38.8739 -89.3266 +US 61008 Belvidere Illinois IL Boone 007 42.2595 -88.8509 +US 61011 Caledonia Illinois IL Boone 007 42.3835 -88.9185 +US 61012 Capron Illinois IL Boone 007 42.4087 -88.7465 +US 61038 Garden Prairie Illinois IL Boone 007 42.251 -88.7437 +US 61065 Poplar Grove Illinois IL Boone 007 42.3594 -88.8428 +US 62353 Mount Sterling Illinois IL Brown 009 39.9803 -90.7414 +US 62375 Timewell Illinois IL Brown 009 40.0117 -90.8661 +US 62378 Versailles Illinois IL Brown 009 39.8883 -90.6741 +US 61312 Arlington Illinois IL Bureau 011 41.4437 -89.2219 +US 61314 Buda Illinois IL Bureau 011 41.314 -89.6795 +US 61315 Bureau Illinois IL Bureau 011 41.2894 -89.3686 +US 61317 Cherry Illinois IL Bureau 011 41.4264 -89.2126 +US 61320 Dalzell Illinois IL Bureau 011 41.3547 -89.1705 +US 61322 Depue Illinois IL Bureau 011 41.3092 -89.3252 +US 61323 Dover Illinois IL Bureau 011 41.4362 -89.396 +US 61328 Kasbeer Illinois IL Bureau 011 41.3669 -89.5131 +US 61329 Ladd Illinois IL Bureau 011 41.3795 -89.2038 +US 61330 La Moille Illinois IL Bureau 011 41.5376 -89.297 +US 61337 Malden Illinois IL Bureau 011 41.4223 -89.3355 +US 61338 Manlius Illinois IL Bureau 011 41.4555 -89.6697 +US 61344 Mineral Illinois IL Bureau 011 41.4036 -89.8201 +US 61345 Neponset Illinois IL Bureau 011 41.2905 -89.7944 +US 61346 New Bedford Illinois IL Bureau 011 41.5122 -89.7199 +US 61349 Ohio Illinois IL Bureau 011 41.5371 -89.4574 +US 61356 Princeton Illinois IL Bureau 011 41.3629 -89.427 +US 61359 Seatonville Illinois IL Bureau 011 41.3613 -89.2691 +US 61361 Sheffield Illinois IL Bureau 011 41.3949 -89.7115 +US 61362 Spring Valley Illinois IL Bureau 011 41.3279 -89.2042 +US 61368 Tiskilwa Illinois IL Bureau 011 41.2891 -89.508 +US 61374 Van Orin Illinois IL Bureau 011 41.3669 -89.5131 +US 61376 Walnut Illinois IL Bureau 011 41.5394 -89.6092 +US 61379 Wyanet Illinois IL Bureau 011 41.3785 -89.5744 +US 62006 Batchtown Illinois IL Calhoun 013 39.0725 -90.6591 +US 62013 Brussels Illinois IL Calhoun 013 38.9255 -90.5968 +US 62036 Golden Eagle Illinois IL Calhoun 013 38.8961 -90.5602 +US 62045 Hamburg Illinois IL Calhoun 013 39.2235 -90.6995 +US 62047 Hardin Illinois IL Calhoun 013 39.1547 -90.624 +US 62053 Kampsville Illinois IL Calhoun 013 39.3064 -90.6269 +US 62065 Michael Illinois IL Calhoun 013 39.1343 -90.6938 +US 62070 Mozier Illinois IL Calhoun 013 39.1343 -90.6938 +US 61014 Chadwick Illinois IL Carroll 015 41.9962 -89.8963 +US 61045 Kings Illinois IL Carroll County 015 42.014 -89.0997 +US 61046 Lanark Illinois IL Carroll 015 42.0935 -89.8247 +US 61051 Milledgeville Illinois IL Carroll 015 41.9674 -89.7801 +US 61053 Mount Carroll Illinois IL Carroll 015 42.1053 -89.9845 +US 61074 Savanna Illinois IL Carroll 015 42.0956 -90.1401 +US 61078 Shannon Illinois IL Carroll 015 42.161 -89.7481 +US 61285 Thomson Illinois IL Carroll 015 41.9816 -90.0844 +US 62611 Arenzville Illinois IL Cass 017 39.8979 -90.3636 +US 62612 Ashland Illinois IL Cass 017 39.9386 -90.0792 +US 62618 Beardstown Illinois IL Cass 017 40.0044 -90.4229 +US 62622 Bluff Springs Illinois IL Cass 017 39.9796 -90.3524 +US 62627 Chandlerville Illinois IL Cass 017 40.0374 -90.1163 +US 62691 Virginia Illinois IL Cass 017 39.958 -90.1764 +US 60949 Ludlow Illinois IL Champaign 019 40.3747 -88.138 +US 61801 Urbana Illinois IL Champaign 019 40.1095 -88.2036 +US 61802 Urbana Illinois IL Champaign 019 40.0746 -88.1691 +US 61803 Urbana Illinois IL Champaign 019 40.1059 -88.2247 +US 61815 Bondville Illinois IL Champaign 019 40.1084 -88.3782 +US 61816 Broadlands Illinois IL Champaign 019 39.9142 -87.9948 +US 61820 Champaign Illinois IL Champaign 019 40.111 -88.2407 +US 61821 Champaign Illinois IL Champaign 019 40.1073 -88.2788 +US 61822 Champaign Illinois IL Champaign 019 40.1317 -88.2854 +US 61824 Champaign Illinois IL Champaign 019 40.1399 -88.1961 +US 61825 Champaign Illinois IL Champaign 019 40.1399 -88.1961 +US 61826 Champaign Illinois IL Champaign 019 40.1131 -88.3613 +US 61840 Dewey Illinois IL Champaign 019 40.3131 -88.277 +US 61843 Fisher Illinois IL Champaign 019 40.2991 -88.356 +US 61845 Foosland Illinois IL Champaign 019 40.3554 -88.4202 +US 61847 Gifford Illinois IL Champaign 019 40.3028 -88.0317 +US 61849 Homer Illinois IL Champaign 019 40.0346 -87.9627 +US 61851 Ivesdale Illinois IL Champaign 019 39.9502 -88.4451 +US 61852 Longview Illinois IL Champaign 019 39.9012 -88.0753 +US 61853 Mahomet Illinois IL Champaign 019 40.1964 -88.3928 +US 61859 Ogden Illinois IL Champaign 019 40.1401 -87.9665 +US 61862 Penfield Illinois IL Champaign 019 40.3101 -87.957 +US 61863 Pesotum Illinois IL Champaign 019 39.9151 -88.2743 +US 61864 Philo Illinois IL Champaign 019 40.0052 -88.1595 +US 61866 Rantoul Illinois IL Champaign 019 40.3107 -88.1462 +US 61868 Rantoul Illinois IL Champaign County 019 40.2959 -88.1499 +US 61871 Royal Illinois IL Champaign 019 40.1924 -87.9742 +US 61872 Sadorus Illinois IL Champaign 019 39.9613 -88.3447 +US 61873 Saint Joseph Illinois IL Champaign 019 40.1207 -88.0472 +US 61874 Savoy Illinois IL Champaign 019 40.0654 -88.2528 +US 61875 Seymour Illinois IL Champaign 019 40.1035 -88.3944 +US 61877 Sidney Illinois IL Champaign 019 40.0232 -88.069 +US 61878 Thomasboro Illinois IL Champaign 019 40.2402 -88.183 +US 61880 Tolono Illinois IL Champaign 019 39.985 -88.2596 +US 62083 Rosamond Illinois IL Christian 021 39.3743 -89.1983 +US 62510 Assumption Illinois IL Christian 021 39.5095 -89.0398 +US 62517 Bulpitt Illinois IL Christian 021 39.5914 -89.4316 +US 62531 Edinburg Illinois IL Christian 021 39.6612 -89.3779 +US 62540 Kincaid Illinois IL Christian 021 39.5838 -89.4185 +US 62546 Morrisonville Illinois IL Christian 021 39.4153 -89.4541 +US 62547 Mount Auburn Illinois IL Christian 021 39.769 -89.2489 +US 62555 Owaneco Illinois IL Christian 021 39.4775 -89.1951 +US 62556 Palmer Illinois IL Christian 021 39.4699 -89.3733 +US 62557 Pana Illinois IL Christian 021 39.3971 -89.1048 +US 62567 Stonington Illinois IL Christian 021 39.6405 -89.1913 +US 62568 Taylorville Illinois IL Christian 021 39.5591 -89.3406 +US 62570 Tovey Illinois IL Christian 021 39.588 -89.4495 +US 62420 Casey Illinois IL Clark 023 39.3017 -87.9913 +US 62423 Dennison Illinois IL Clark 023 39.449 -87.5867 +US 62441 Marshall Illinois IL Clark 023 39.422 -87.6923 +US 62442 Martinsville Illinois IL Clark 023 39.3174 -87.8707 +US 62474 Westfield Illinois IL Clark 023 39.4424 -88.0448 +US 62477 West Union Illinois IL Clark 023 39.2402 -87.6512 +US 62434 Ingraham Illinois IL Clay 025 38.8284 -88.3204 +US 62824 Clay City Illinois IL Clay 025 38.6695 -88.3516 +US 62839 Flora Illinois IL Clay 025 38.6703 -88.4919 +US 62847 Iola Illinois IL Clay 025 38.7573 -88.4736 +US 62858 Louisville Illinois IL Clay 025 38.7718 -88.5065 +US 62879 Sailor Springs Illinois IL Clay 025 38.7573 -88.4736 +US 62899 Xenia Illinois IL Clay 025 38.6697 -88.6379 +US 62215 Albers Illinois IL Clinton 027 38.532 -89.6202 +US 62216 Aviston Illinois IL Clinton 027 38.6089 -89.6034 +US 62218 Bartelso Illinois IL Clinton 027 38.5385 -89.4578 +US 62219 Beckemeyer Illinois IL Clinton 027 38.6058 -89.4319 +US 62230 Breese Illinois IL Clinton 027 38.6188 -89.5284 +US 62231 Carlyle Illinois IL Clinton 027 38.6066 -89.3805 +US 62245 Germantown Illinois IL Clinton 027 38.5487 -89.5413 +US 62250 Hoffman Illinois IL Clinton 027 38.5408 -89.2661 +US 62252 Huey Illinois IL Clinton 027 38.6018 -89.2915 +US 62253 Keyesport Illinois IL Clinton 027 38.7769 -89.2975 +US 62265 New Baden Illinois IL Clinton 027 38.5315 -89.6922 +US 62266 New Memphis Illinois IL Clinton 027 38.4857 -89.6816 +US 62283 Shattuc Illinois IL Clinton 027 38.6435 -89.2054 +US 62293 Trenton Illinois IL Clinton 027 38.6191 -89.6447 +US 61912 Ashmore Illinois IL Coles 029 39.5254 -88.0341 +US 61920 Charleston Illinois IL Coles 029 39.4869 -88.1761 +US 61931 Humboldt Illinois IL Coles 029 39.6012 -88.3141 +US 61938 Mattoon Illinois IL Coles 029 39.4802 -88.3762 +US 61943 Oakland Illinois IL Coles 029 39.6516 -88.0253 +US 62440 Lerna Illinois IL Coles 029 39.3958 -88.253 +US 62469 Trilla Illinois IL Coles 029 39.3938 -88.3488 +US 60004 Arlington Heights Illinois IL Cook 031 42.112 -87.9792 +US 60005 Arlington Heights Illinois IL Cook 031 42.0639 -87.9856 +US 60006 Arlington Heights Illinois IL Cook 031 41.8119 -87.6873 +US 60007 Elk Grove Village Illinois IL Cook 031 42.0076 -87.9931 +US 60008 Rolling Meadows Illinois IL Cook 031 42.073 -88.0191 +US 60009 Elk Grove Village Illinois IL Cook 031 41.8119 -87.6873 +US 60016 Des Plaines Illinois IL Cook 031 42.0467 -87.8859 +US 60017 Des Plaines Illinois IL Cook 031 42.0288 -87.8944 +US 60018 Des Plaines Illinois IL Cook 031 42.0155 -87.8687 +US 60019 Des Plaines Illinois IL Cook 031 42.0243 -87.9071 +US 60022 Glencoe Illinois IL Cook 031 42.1333 -87.7615 +US 60025 Glenview Illinois IL Cook 031 42.0758 -87.8223 +US 60026 Glenview Nas Illinois IL Cook 031 42.0922 -87.8374 +US 60029 Golf Illinois IL Cook 031 42.058 -87.7916 +US 60038 Palatine Illinois IL Cook 031 42.098 -88.0141 +US 60043 Kenilworth Illinois IL Cook 031 42.0884 -87.7165 +US 60053 Morton Grove Illinois IL Cook 031 42.0431 -87.7899 +US 60055 Palatine Illinois IL Cook 031 42.098 -88.0141 +US 60056 Mount Prospect Illinois IL Cook 031 42.0624 -87.9377 +US 60062 Northbrook Illinois IL Cook 031 42.1254 -87.8465 +US 60065 Northbrook Illinois IL Cook 031 41.8119 -87.6873 +US 60067 Palatine Illinois IL Cook 031 42.1139 -88.0429 +US 60068 Park Ridge Illinois IL Cook 031 42.0122 -87.8417 +US 60070 Prospect Heights Illinois IL Cook 031 42.1058 -87.9395 +US 60074 Palatine Illinois IL Cook 031 42.1458 -88.023 +US 60076 Skokie Illinois IL Cook 031 42.0362 -87.7328 +US 60077 Skokie Illinois IL Cook 031 42.0345 -87.7541 +US 60078 Palatine Illinois IL Cook 031 41.8119 -87.6873 +US 60082 Techny Illinois IL Cook 031 42.1164 -87.8121 +US 60090 Wheeling Illinois IL Cook 031 42.134 -87.9341 +US 60091 Wilmette Illinois IL Cook 031 42.0765 -87.7246 +US 60093 Winnetka Illinois IL Cook 031 42.1054 -87.7535 +US 60094 Palatine Illinois IL Cook 031 41.8119 -87.6873 +US 60095 Palatine Illinois IL Cook 031 41.8119 -87.6873 +US 60103 Bartlett Illinois IL Cook 031 41.9794 -88.2063 +US 60104 Bellwood Illinois IL Cook 031 41.8825 -87.8786 +US 60107 Streamwood Illinois IL Cook 031 42.0225 -88.169 +US 60130 Forest Park Illinois IL Cook 031 41.8744 -87.8106 +US 60131 Franklin Park Illinois IL Cook 031 41.9339 -87.8734 +US 60141 Hines Illinois IL Cook 031 41.8623 -87.8355 +US 60153 Maywood Illinois IL Cook 031 41.8793 -87.8433 +US 60154 Westchester Illinois IL Cook 031 41.8524 -87.8845 +US 60155 Broadview Illinois IL Cook 031 41.8577 -87.8562 +US 60159 Schaumburg Illinois IL Cook 031 41.8119 -87.6873 +US 60160 Melrose Park Illinois IL Cook 031 41.9003 -87.8581 +US 60161 Melrose Park Illinois IL Cook 031 41.8119 -87.6873 +US 60162 Hillside Illinois IL Cook 031 41.8725 -87.9016 +US 60163 Berkeley Illinois IL Cook 031 41.8888 -87.909 +US 60164 Melrose Park Illinois IL Cook 031 41.9214 -87.8924 +US 60165 Stone Park Illinois IL Cook 031 41.903 -87.8811 +US 60168 Schaumburg Illinois IL Cook 031 41.8119 -87.6873 +US 60169 Hoffman Estates Illinois IL Cook County 031 42.0493 -88.1065 +US 60171 River Grove Illinois IL Cook 031 41.9279 -87.8387 +US 60173 Schaumburg Illinois IL Cook 031 42.0581 -88.0482 +US 60176 Schiller Park Illinois IL Cook 031 41.9563 -87.8692 +US 60179 Hoffman Estates Illinois IL Cook 031 42.0793 -88.2237 +US 60192 Schaumburg Illinois IL Cook 031 42.0925 -88.1161 +US 60193 Schaumburg Illinois IL Cook 031 42.0144 -88.0935 +US 60194 Schaumburg Illinois IL Cook 031 42.0289 -88.1167 +US 60195 Schaumburg Illinois IL Cook 031 42.0764 -88.1093 +US 60196 Schaumburg Illinois IL Cook 031 42.0564 -88.0725 +US 60201 Evanston Illinois IL Cook 031 42.0546 -87.6943 +US 60202 Evanston Illinois IL Cook 031 42.0302 -87.6865 +US 60203 Evanston Illinois IL Cook 031 42.0485 -87.7176 +US 60204 Evanston Illinois IL Cook 031 41.8119 -87.6873 +US 60208 Evanston Illinois IL Cook 031 42.0586 -87.6845 +US 60209 Evanston Illinois IL Cook 031 42.0497 -87.6794 +US 60251 Palatine Illinois IL Cook County 031 41.9166 -88.1208 +US 60290 Chicago Illinois IL Cook County 031 41.9613 -87.8849 +US 60301 Oak Park Illinois IL Cook 031 41.8886 -87.7986 +US 60302 Oak Park Illinois IL Cook 031 41.8925 -87.7895 +US 60303 Oak Park Illinois IL Cook 031 41.8119 -87.6873 +US 60304 Oak Park Illinois IL Cook 031 41.8725 -87.7877 +US 60305 River Forest Illinois IL Cook 031 41.8951 -87.8159 +US 60398 Franklin Park Illinois IL Cook County 031 41.9552 -87.9401 +US 60402 Berwyn Illinois IL Cook 031 41.8347 -87.7914 +US 60406 Blue Island Illinois IL Cook 031 41.6582 -87.6795 +US 60409 Calumet City Illinois IL Cook 031 41.6153 -87.5483 +US 60411 Chicago Heights Illinois IL Cook 031 41.5087 -87.5904 +US 60412 Chicago Heights Illinois IL Cook 031 41.8119 -87.6873 +US 60415 Chicago Ridge Illinois IL Cook 031 41.7017 -87.7774 +US 60419 Dolton Illinois IL Cook 031 41.6257 -87.598 +US 60422 Flossmoor Illinois IL Cook 031 41.5406 -87.6837 +US 60425 Glenwood Illinois IL Cook 031 41.5467 -87.6126 +US 60426 Harvey Illinois IL Cook 031 41.6103 -87.6534 +US 60429 Hazel Crest Illinois IL Cook 031 41.5738 -87.6849 +US 60430 Homewood Illinois IL Cook 031 41.5556 -87.6616 +US 60438 Lansing Illinois IL Cook 031 41.566 -87.5446 +US 60443 Matteson Illinois IL Cook 031 41.5102 -87.7406 +US 60445 Midlothian Illinois IL Cook 031 41.635 -87.7362 +US 60452 Oak Forest Illinois IL Cook 031 41.6077 -87.7542 +US 60453 Oak Lawn Illinois IL Cook 031 41.7143 -87.7516 +US 60454 Oak Lawn Illinois IL Cook 031 41.8119 -87.6873 +US 60455 Bridgeview Illinois IL Cook 031 41.7431 -87.8066 +US 60456 Hometown Illinois IL Cook 031 41.7311 -87.7315 +US 60457 Hickory Hills Illinois IL Cook 031 41.7262 -87.8289 +US 60458 Justice Illinois IL Cook 031 41.7447 -87.8346 +US 60459 Burbank Illinois IL Cook 031 41.7447 -87.7699 +US 60461 Olympia Fields Illinois IL Cook 031 41.5167 -87.6908 +US 60462 Orland Park Illinois IL Cook 031 41.6194 -87.8423 +US 60463 Palos Heights Illinois IL Cook 031 41.6621 -87.7927 +US 60464 Palos Park Illinois IL Cook 031 41.6624 -87.8521 +US 60465 Palos Hills Illinois IL Cook 031 41.7004 -87.8263 +US 60466 Park Forest Illinois IL Cook 031 41.479 -87.6828 +US 60467 Orland Park Illinois IL Cook 031 41.6018 -87.8899 +US 60469 Posen Illinois IL Cook 031 41.6277 -87.6872 +US 60471 Richton Park Illinois IL Cook 031 41.4819 -87.7238 +US 60472 Robbins Illinois IL Cook 031 41.6423 -87.7089 +US 60473 South Holland Illinois IL Cook 031 41.5979 -87.5938 +US 60475 Steger Illinois IL Cook 031 41.4686 -87.6386 +US 60476 Thornton Illinois IL Cook 031 41.5727 -87.6078 +US 60477 Tinley Park Illinois IL Cook 031 41.5825 -87.805 +US 60478 Country Club Hills Illinois IL Cook 031 41.5637 -87.7247 +US 60480 Willow Springs Illinois IL Cook 031 41.7364 -87.8786 +US 60482 Worth Illinois IL Cook 031 41.6895 -87.7863 +US 60483 Tinley Park Illinois IL Cook County 031 41.5772 -87.7887 +US 60499 Bedford Park Illinois IL Cook 031 41.8119 -87.6873 +US 60501 Summit Argo Illinois IL Cook 031 41.7801 -87.824 +US 60513 Brookfield Illinois IL Cook 031 41.8217 -87.8492 +US 60525 La Grange Illinois IL Cook 031 41.7842 -87.8689 +US 60526 La Grange Park Illinois IL Cook 031 41.8318 -87.874 +US 60527 Willowbrook Illinois IL Cook 031 41.7447 -87.9334 +US 60534 Lyons Illinois IL Cook 031 41.813 -87.8236 +US 60546 Riverside Illinois IL Cook 031 41.8379 -87.8213 +US 60558 Western Springs Illinois IL Cook 031 41.8049 -87.8995 +US 60601 Chicago Illinois IL Cook 031 41.8858 -87.6181 +US 60602 Chicago Illinois IL Cook 031 41.8829 -87.6321 +US 60603 Chicago Illinois IL Cook 031 41.8798 -87.6285 +US 60604 Chicago Illinois IL Cook 031 41.8785 -87.633 +US 60605 Chicago Illinois IL Cook 031 41.8713 -87.6277 +US 60606 Chicago Illinois IL Cook 031 41.8868 -87.6386 +US 60607 Chicago Illinois IL Cook 031 41.8721 -87.6578 +US 60608 Chicago Illinois IL Cook 031 41.8515 -87.6694 +US 60609 Chicago Illinois IL Cook 031 41.8097 -87.6533 +US 60610 Chicago Illinois IL Cook 031 41.9033 -87.6336 +US 60611 Chicago Illinois IL Cook 031 41.8971 -87.6223 +US 60612 Chicago Illinois IL Cook 031 41.8805 -87.6873 +US 60613 Chicago Illinois IL Cook 031 41.9543 -87.6575 +US 60614 Chicago Illinois IL Cook 031 41.9229 -87.6483 +US 60615 Chicago Illinois IL Cook 031 41.8022 -87.6006 +US 60616 Chicago Illinois IL Cook 031 41.8426 -87.6306 +US 60617 Chicago Illinois IL Cook 031 41.7257 -87.556 +US 60618 Chicago Illinois IL Cook 031 41.9464 -87.7042 +US 60619 Chicago Illinois IL Cook 031 41.7458 -87.6054 +US 60620 Chicago Illinois IL Cook 031 41.7411 -87.6543 +US 60621 Chicago Illinois IL Cook 031 41.775 -87.6421 +US 60622 Chicago Illinois IL Cook 031 41.9019 -87.6779 +US 60623 Chicago Illinois IL Cook 031 41.849 -87.7157 +US 60624 Chicago Illinois IL Cook 031 41.8804 -87.7223 +US 60625 Chicago Illinois IL Cook 031 41.9703 -87.7042 +US 60626 Chicago Illinois IL Cook 031 42.0095 -87.6689 +US 60627 Riverdale Illinois IL Cook County 031 41.6455 -87.6176 +US 60628 Chicago Illinois IL Cook 031 41.6934 -87.6243 +US 60629 Chicago Illinois IL Cook 031 41.7781 -87.7069 +US 60630 Chicago Illinois IL Cook 031 41.9699 -87.7603 +US 60631 Chicago Illinois IL Cook 031 41.9951 -87.8082 +US 60632 Chicago Illinois IL Cook 031 41.8093 -87.7052 +US 60633 Chicago Illinois IL Cook 031 41.6642 -87.5612 +US 60634 Chicago Illinois IL Cook 031 41.9463 -87.8061 +US 60635 Elmwood Park Illinois IL Cook County 031 41.9222 -87.808 +US 60636 Chicago Illinois IL Cook 031 41.776 -87.6674 +US 60637 Chicago Illinois IL Cook 031 41.7813 -87.6051 +US 60638 Chicago Illinois IL Cook 031 41.7814 -87.7705 +US 60639 Chicago Illinois IL Cook 031 41.9202 -87.7535 +US 60640 Chicago Illinois IL Cook 031 41.9719 -87.6624 +US 60641 Chicago Illinois IL Cook 031 41.9453 -87.7474 +US 60642 Chicago Illinois IL Cook 031 41.9008 -87.6528 +US 60643 Chicago Illinois IL Cook 031 41.6996 -87.6628 +US 60644 Chicago Illinois IL Cook 031 41.8829 -87.7582 +US 60645 Chicago Illinois IL Cook 031 42.0086 -87.6947 +US 60646 Chicago Illinois IL Cook 031 41.993 -87.7596 +US 60647 Chicago Illinois IL Cook 031 41.9209 -87.7043 +US 60648 Chicago Illinois IL Cook County 031 42.0311 -87.8164 +US 60649 Chicago Illinois IL Cook 031 41.762 -87.5703 +US 60651 Chicago Illinois IL Cook 031 41.9025 -87.7393 +US 60652 Chicago Illinois IL Cook 031 41.7454 -87.7135 +US 60653 Chicago Illinois IL Cook 031 41.8196 -87.6126 +US 60654 Chicago Illinois IL Cook 031 41.8923 -87.6373 +US 60655 Chicago Illinois IL Cook 031 41.6948 -87.7038 +US 60656 Chicago Illinois IL Cook 031 41.9735 -87.8658 +US 60657 Chicago Illinois IL Cook 031 41.9399 -87.6528 +US 60658 Chicago Illinois IL Cook County 031 41.6706 -87.73 +US 60659 Chicago Illinois IL Cook 031 41.9972 -87.7166 +US 60660 Chicago Illinois IL Cook 031 41.9909 -87.6629 +US 60661 Chicago Illinois IL Cook 031 41.8814 -87.643 +US 60663 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60664 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60665 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60666 Amf Ohare Illinois IL Cook 031 41.968 -87.8912 +US 60667 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60668 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60669 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60670 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60671 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60672 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60673 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60674 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60675 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60677 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60678 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60680 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60681 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60682 Chicago Illinois IL Cook County 031 41.837 -87.685 +US 60683 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60684 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60685 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60686 Chicago Illinois IL Cook County 031 41.8756 -87.6378 +US 60687 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60688 Chicago Illinois IL Cook County 031 41.8724 -87.6688 +US 60689 Chicago Illinois IL Cook County 031 41.8745 -87.6353 +US 60690 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60691 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60693 Chicago Illinois IL Cook 031 42.0964 -87.7179 +US 60694 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60695 Chicago Illinois IL Cook County 031 41.8839 -87.6317 +US 60696 Chicago Illinois IL Cook County 031 41.8684 -87.6649 +US 60697 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60699 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60701 Chicago Illinois IL Cook 031 41.8119 -87.6873 +US 60706 Harwood Heights Illinois IL Cook 031 41.9643 -87.8162 +US 60707 Elmwood Park Illinois IL Cook 031 41.9232 -87.8185 +US 60712 Lincolnwood Illinois IL Cook 031 42.008 -87.7361 +US 60714 Niles Illinois IL Cook 031 42.0312 -87.8112 +US 60799 Chicago Bmc Illinois IL Cook County 031 42.0275 -87.808 +US 60803 Alsip Illinois IL Cook 031 41.6721 -87.7357 +US 60804 Cicero Illinois IL Cook 031 41.8378 -87.7602 +US 60805 Evergreen Park Illinois IL Cook 031 41.722 -87.7024 +US 60827 Riverdale Illinois IL Cook 031 41.6496 -87.6301 +US 62413 Annapolis Illinois IL Crawford 033 39.1179 -87.8029 +US 62427 Flat Rock Illinois IL Crawford 033 38.9096 -87.6837 +US 62433 Hutsonville Illinois IL Crawford 033 39.1064 -87.6695 +US 62449 Oblong Illinois IL Crawford 033 39.001 -87.895 +US 62451 Palestine Illinois IL Crawford 033 39.0028 -87.6157 +US 62454 Robinson Illinois IL Crawford 033 39.007 -87.7484 +US 62464 Stoy Illinois IL Crawford 033 38.9898 -87.8396 +US 62478 West York Illinois IL Crawford 033 39.1938 -87.7131 +US 62428 Greenup Illinois IL Cumberland 035 39.274 -88.1246 +US 62435 Janesville Illinois IL Cumberland 035 39.3743 -88.2445 +US 62436 Jewett Illinois IL Cumberland 035 39.2076 -88.2474 +US 62447 Neoga Illinois IL Cumberland 035 39.322 -88.4503 +US 62468 Toledo Illinois IL Cumberland 035 39.2772 -88.2468 +US 60111 Clare Illinois IL DeKalb 037 42.0086 -88.8306 +US 60112 Cortland Illinois IL DeKalb 037 41.9262 -88.684 +US 60115 Dekalb Illinois IL DeKalb 037 41.9008 -88.7548 +US 60129 Esmond Illinois IL DeKalb 037 42.0225 -88.9439 +US 60135 Genoa Illinois IL DeKalb 037 42.0981 -88.6908 +US 60145 Kingston Illinois IL DeKalb 037 42.1057 -88.7695 +US 60146 Kirkland Illinois IL DeKalb 037 42.1014 -88.8685 +US 60150 Malta Illinois IL DeKalb 037 41.9183 -88.8688 +US 60178 Sycamore Illinois IL DeKalb 037 41.9911 -88.6928 +US 60520 Hinckley Illinois IL DeKalb 037 41.7691 -88.6448 +US 60548 Sandwich Illinois IL DeKalb 037 41.6353 -88.6393 +US 60550 Shabbona Illinois IL DeKalb 037 41.7638 -88.8752 +US 60552 Somonauk Illinois IL DeKalb 037 41.6383 -88.6816 +US 60556 Waterman Illinois IL DeKalb 037 41.7504 -88.7754 +US 61727 Clinton Illinois IL De Witt 039 40.1487 -88.9627 +US 61735 Dewitt Illinois IL De Witt 039 40.1848 -88.7637 +US 61749 Kenney Illinois IL De Witt 039 40.1115 -89.0622 +US 61750 Lane Illinois IL De Witt 039 40.1235 -88.8597 +US 61777 Wapella Illinois IL De Witt 039 40.2323 -88.9673 +US 61778 Waynesville Illinois IL De Witt 039 40.2437 -89.1143 +US 61842 Farmer City Illinois IL De Witt 039 40.2447 -88.6634 +US 61882 Weldon Illinois IL De Witt 039 40.1177 -88.7531 +US 61910 Arcola Illinois IL Douglas 041 39.687 -88.3037 +US 61911 Arthur Illinois IL Douglas 041 39.7077 -88.4555 +US 61913 Atwood Illinois IL Douglas 041 39.8044 -88.4494 +US 61919 Camargo Illinois IL Douglas 041 39.8 -88.1468 +US 61930 Hindsboro Illinois IL Douglas 041 39.7018 -88.1486 +US 61941 Murdock Illinois IL Douglas 041 39.8 -88.183 +US 61942 Newman Illinois IL Douglas 041 39.7848 -88.0001 +US 61953 Tuscola Illinois IL Douglas 041 39.7995 -88.2816 +US 61956 Villa Grove Illinois IL Douglas 041 39.8687 -88.1616 +US 60101 Addison Illinois IL DuPage 043 41.9335 -88.0054 +US 60105 Bensenville Illinois IL DuPage 043 41.8397 -88.0887 +US 60106 Bensenville Illinois IL DuPage 043 41.9501 -87.945 +US 60108 Bloomingdale Illinois IL DuPage 043 41.9483 -88.0782 +US 60114 Addison Illinois IL DuPage 043 41.8397 -88.0887 +US 60116 Carol Stream Illinois IL DuPage 043 41.8397 -88.0887 +US 60117 Bloomingdale Illinois IL DuPage 043 41.8397 -88.0887 +US 60125 Carol Stream Illinois IL DuPage 043 41.8397 -88.0887 +US 60126 Elmhurst Illinois IL DuPage 043 41.8927 -87.941 +US 60128 Carol Stream Illinois IL DuPage 043 41.8397 -88.0887 +US 60132 Carol Stream Illinois IL DuPage 043 41.8397 -88.0887 +US 60133 Hanover Park Illinois IL DuPage 043 41.9394 -88.1212 +US 60137 Glen Ellyn Illinois IL DuPage 043 41.8661 -88.0648 +US 60138 Glen Ellyn Illinois IL DuPage 043 41.8397 -88.0887 +US 60139 Glendale Heights Illinois IL DuPage 043 41.9205 -88.0793 +US 60143 Itasca Illinois IL DuPage 043 41.972 -88.0202 +US 60148 Lombard Illinois IL DuPage 043 41.8721 -88.016 +US 60157 Medinah Illinois IL DuPage 043 41.9705 -88.0575 +US 60158 Carol Stream Illinois IL DuPage County 043 41.9166 -88.1208 +US 60172 Roselle Illinois IL DuPage 043 41.9798 -88.0857 +US 60181 Villa Park Illinois IL DuPage 043 41.8799 -87.9782 +US 60184 Wayne Illinois IL DuPage 043 41.9525 -88.2536 +US 60185 West Chicago Illinois IL DuPage 043 41.8886 -88.2022 +US 60186 West Chicago Illinois IL DuPage 043 41.8397 -88.0887 +US 60187 Wheaton Illinois IL DuPage 043 41.8724 -88.1123 +US 60188 Carol Stream Illinois IL DuPage 043 41.9178 -88.137 +US 60189 Wheaton Illinois IL DuPage 043 41.8397 -88.0887 +US 60190 Winfield Illinois IL DuPage 043 41.8744 -88.1516 +US 60191 Wood Dale Illinois IL DuPage 043 41.9602 -87.981 +US 60197 Carol Stream Illinois IL DuPage 043 41.8397 -88.0887 +US 60198 Carol Stream Illinois IL DuPage 043 41.8397 -88.0887 +US 60199 Carol Stream Illinois IL DuPage 043 41.8397 -88.0887 +US 60351 Carol Stream Illinois IL DuPage County 043 41.9166 -88.1208 +US 60353 Carol Stream Illinois IL DuPage County 043 41.9166 -88.1208 +US 60399 Wood Dale Illinois IL DuPage County 043 41.9545 -87.9377 +US 60439 Lemont Illinois IL DuPage 043 41.7074 -87.9756 +US 60504 Aurora Illinois IL DuPage 043 41.7523 -88.2453 +US 60514 Clarendon Hills Illinois IL DuPage 043 41.7965 -87.9569 +US 60515 Downers Grove Illinois IL DuPage 043 41.8034 -88.0138 +US 60516 Downers Grove Illinois IL DuPage 043 41.7602 -88.0159 +US 60517 Woodridge Illinois IL DuPage 043 41.7518 -88.0489 +US 60519 Eola Illinois IL DuPage 043 41.7772 -88.2462 +US 60521 Hinsdale Illinois IL DuPage 043 41.8001 -87.9287 +US 60522 Hinsdale Illinois IL DuPage 043 41.8397 -88.0887 +US 60523 Oak Brook Illinois IL DuPage 043 41.8371 -87.9638 +US 60527 Hinsdale Illinois IL DuPage 043 41.7447 -87.9334 +US 60532 Lisle Illinois IL DuPage 043 41.7862 -88.0879 +US 60540 Naperville Illinois IL DuPage 043 41.7662 -88.141 +US 60555 Warrenville Illinois IL DuPage 043 41.828 -88.1921 +US 60559 Westmont Illinois IL DuPage 043 41.7728 -87.9757 +US 60561 Darien Illinois IL DuPage 043 41.7434 -87.9805 +US 60563 Naperville Illinois IL DuPage 043 41.7895 -88.169 +US 60565 Naperville Illinois IL DuPage 043 41.7328 -88.1282 +US 60566 Naperville Illinois IL DuPage 043 41.8397 -88.0887 +US 60567 Naperville Illinois IL DuPage 043 41.8397 -88.0887 +US 60570 Hinsdale Illinois IL DuPage 043 41.8397 -88.0887 +US 60572 Aurora Illinois IL DuPage 043 41.8397 -88.0887 +US 60598 Aurora Illinois IL DuPage 043 41.8397 -88.0887 +US 60599 Fox Valley Illinois IL DuPage 043 41.8397 -88.0887 +US 61917 Brocton Illinois IL Edgar 045 39.6923 -87.9263 +US 61924 Chrisman Illinois IL Edgar 045 39.7996 -87.6556 +US 61932 Hume Illinois IL Edgar 045 39.8009 -87.8747 +US 61933 Kansas Illinois IL Edgar 045 39.5525 -87.9352 +US 61940 Metcalf Illinois IL Edgar 045 39.8008 -87.7955 +US 61944 Paris Illinois IL Edgar 045 39.6132 -87.6976 +US 61949 Redmon Illinois IL Edgar 045 39.6601 -87.8633 +US 61955 Vermilion Illinois IL Edgar 045 39.6799 -87.7502 +US 62476 West Salem Illinois IL Edwards 047 38.5183 -88.0323 +US 62806 Albion Illinois IL Edwards 047 38.374 -88.0636 +US 62815 Bone Gap Illinois IL Edwards 047 38.449 -88.0025 +US 62818 Browns Illinois IL Edwards 047 38.3764 -87.9928 +US 62833 Ellery Illinois IL Edwards 047 38.365 -88.1335 +US 62401 Effingham Illinois IL Effingham 049 39.1217 -88.5611 +US 62411 Altamont Illinois IL Effingham 049 39.0634 -88.7481 +US 62414 Beecher City Illinois IL Effingham 049 39.1835 -88.8038 +US 62424 Dieterich Illinois IL Effingham 049 39.0319 -88.4074 +US 62426 Edgewood Illinois IL Effingham 049 38.9021 -88.6645 +US 62443 Mason Illinois IL Effingham 049 38.9645 -88.6234 +US 62445 Montrose Illinois IL Effingham 049 39.1573 -88.335 +US 62461 Shumway Illinois IL Effingham 049 39.1881 -88.6418 +US 62467 Teutopolis Illinois IL Effingham 049 39.132 -88.4767 +US 62473 Watson Illinois IL Effingham 049 38.9906 -88.5584 +US 62011 Bingham Illinois IL Fayette 051 39.1128 -89.2125 +US 62080 Ramsey Illinois IL Fayette 051 39.0781 -89.1051 +US 62247 Hagarstown Illinois IL Fayette 051 38.9771 -88.9755 +US 62418 Brownstown Illinois IL Fayette 051 38.9891 -88.9494 +US 62458 Saint Elmo Illinois IL Fayette 051 39.0315 -88.8552 +US 62471 Vandalia Illinois IL Fayette 051 38.9439 -89.1041 +US 62838 Farina Illinois IL Fayette 051 38.8469 -88.7614 +US 62857 Loogootee Illinois IL Fayette 051 38.9771 -88.9755 +US 62880 Saint Peter Illinois IL Fayette 051 38.8697 -88.856 +US 62885 Shobonier Illinois IL Fayette 051 38.8446 -89.079 +US 60919 Cabery Illinois IL Ford 053 40.9819 -88.1921 +US 60933 Elliott Illinois IL Ford 053 40.4648 -88.2712 +US 60936 Gibson City Illinois IL Ford 053 40.4659 -88.3609 +US 60946 Kempton Illinois IL Ford 053 40.9126 -88.209 +US 60952 Melvin Illinois IL Ford 053 40.5714 -88.2551 +US 60957 Paxton Illinois IL Ford 053 40.4565 -88.099 +US 60959 Piper City Illinois IL Ford 053 40.7556 -88.1873 +US 60962 Roberts Illinois IL Ford 053 40.6193 -88.1804 +US 61773 Sibley Illinois IL Ford 053 40.5823 -88.3815 +US 62805 Akin Illinois IL Franklin 055 37.9943 -88.9417 +US 62812 Benton Illinois IL Franklin 055 38 -88.9227 +US 62819 Buckner Illinois IL Franklin 055 37.9764 -89.0209 +US 62822 Christopher Illinois IL Franklin 055 37.9849 -89.0574 +US 62825 Coello Illinois IL Franklin 055 37.9946 -89.0672 +US 62836 Ewing Illinois IL Franklin 055 38.0702 -88.8504 +US 62840 Frankfort Heights Illinois IL Franklin 055 37.9943 -88.9417 +US 62856 Logan Illinois IL Franklin 055 37.9943 -88.9417 +US 62865 Mulkeytown Illinois IL Franklin 055 37.9687 -89.1159 +US 62874 Orient Illinois IL Franklin 055 37.9182 -88.9767 +US 62884 Sesser Illinois IL Franklin 055 38.0894 -89.0574 +US 62890 Thompsonville Illinois IL Franklin 055 37.8804 -88.7684 +US 62891 Valier Illinois IL Franklin 055 38.0222 -89.0351 +US 62896 West Frankfort Illinois IL Franklin 055 37.8979 -88.9307 +US 62897 Whittington Illinois IL Franklin 055 38.0872 -88.9014 +US 62983 Royalton Illinois IL Franklin 055 37.879 -89.1141 +US 62999 Zeigler Illinois IL Franklin 055 37.8991 -89.0523 +US 61415 Avon Illinois IL Fulton 057 40.6549 -90.4461 +US 61427 Cuba Illinois IL Fulton 057 40.4995 -90.1811 +US 61431 Ellisville Illinois IL Fulton 057 40.6047 -90.2875 +US 61432 Fairview Illinois IL Fulton 057 40.6442 -90.1653 +US 61433 Fiatt Illinois IL Fulton 057 40.4493 -90.1618 +US 61441 Ipava Illinois IL Fulton 057 40.3594 -90.2967 +US 61459 Marietta Illinois IL Fulton 057 40.4978 -90.3885 +US 61477 Smithfield Illinois IL Fulton 057 40.4855 -90.2856 +US 61482 Table Grove Illinois IL Fulton 057 40.3784 -90.4239 +US 61484 Vermont Illinois IL Fulton 057 40.3062 -90.422 +US 61501 Astoria Illinois IL Fulton 057 40.2311 -90.3443 +US 61519 Bryant Illinois IL Fulton 057 40.4663 -90.091 +US 61520 Canton Illinois IL Fulton 057 40.5601 -90.0242 +US 61524 Dunfermline Illinois IL Fulton 057 40.4916 -90.0419 +US 61531 Farmington Illinois IL Fulton 057 40.6832 -90.035 +US 61542 Lewistown Illinois IL Fulton 057 40.383 -90.1563 +US 61543 Liverpool Illinois IL Fulton 057 40.3902 -90.0026 +US 61544 London Mills Illinois IL Fulton 057 40.695 -90.2616 +US 61553 Norris Illinois IL Fulton 057 40.6259 -90.0323 +US 61563 Saint David Illinois IL Fulton 057 40.4912 -90.0505 +US 62867 New Haven Illinois IL Gallatin 059 37.8999 -88.1285 +US 62871 Omaha Illinois IL Gallatin 059 37.8904 -88.2865 +US 62934 Equality Illinois IL Gallatin 059 37.7278 -88.3445 +US 62954 Junction Illinois IL Gallatin 059 37.6952 -88.2491 +US 62979 Ridgway Illinois IL Gallatin 059 37.8042 -88.2612 +US 62984 Shawneetown Illinois IL Gallatin 059 37.7132 -88.1785 +US 62016 Carrollton Illinois IL Greene 061 39.3009 -90.4092 +US 62027 Eldred Illinois IL Greene 061 39.2836 -90.5329 +US 62044 Greenfield Illinois IL Greene 061 39.3491 -90.2089 +US 62050 Hillview Illinois IL Greene 061 39.4674 -90.5128 +US 62054 Kane Illinois IL Greene 061 39.2037 -90.3719 +US 62078 Patterson Illinois IL Greene 061 39.3197 -90.3852 +US 62081 Rockbridge Illinois IL Greene 061 39.2831 -90.2558 +US 62082 Roodhouse Illinois IL Greene 061 39.4846 -90.3498 +US 62092 White Hall Illinois IL Greene 061 39.4288 -90.4019 +US 62098 Wrights Illinois IL Greene 061 39.3762 -90.2933 +US 60407 Braceville Illinois IL Grundy 063 41.2288 -88.269 +US 60416 Coal City Illinois IL Grundy 063 41.2908 -88.2823 +US 60424 Gardner Illinois IL Grundy 063 41.1775 -88.338 +US 60437 Kinsman Illinois IL Grundy 063 41.1631 -88.5535 +US 60444 Mazon Illinois IL Grundy 063 41.2264 -88.4217 +US 60447 Minooka Illinois IL Grundy 063 41.4615 -88.2786 +US 60450 Morris Illinois IL Grundy 063 41.3672 -88.4178 +US 60474 South Wilmington Illinois IL Grundy 063 41.1719 -88.2673 +US 60479 Verona Illinois IL Grundy 063 41.2501 -88.517 +US 62817 Broughton Illinois IL Hamilton 065 37.9546 -88.4678 +US 62828 Dahlgren Illinois IL Hamilton 065 38.1975 -88.6363 +US 62829 Dale Illinois IL Hamilton 065 38.0816 -88.5386 +US 62859 Mc Leansboro Illinois IL Hamilton 065 38.0939 -88.5286 +US 62860 Macedonia Illinois IL Hamilton 065 38.013 -88.6961 +US 61450 La Harpe Illinois IL Hancock 067 40.5846 -90.9687 +US 62310 Adrian Illinois IL Hancock 067 40.4161 -91.2058 +US 62311 Augusta Illinois IL Hancock 067 40.2341 -90.9554 +US 62313 Basco Illinois IL Hancock 067 40.3283 -91.197 +US 62316 Bowen Illinois IL Hancock 067 40.2341 -91.0705 +US 62318 Burnside Illinois IL Hancock 067 40.4881 -91.1358 +US 62321 Carthage Illinois IL Hancock 067 40.4129 -91.1005 +US 62329 Colusa Illinois IL Hancock 067 40.5714 -91.1682 +US 62330 Dallas City Illinois IL Hancock 067 40.572 -91.1255 +US 62334 Elvaston Illinois IL Hancock 067 40.4171 -91.2214 +US 62336 Ferris Illinois IL Hancock 067 40.4682 -91.171 +US 62341 Hamilton Illinois IL Hancock 067 40.4392 -91.344 +US 62354 Nauvoo Illinois IL Hancock 067 40.5261 -91.3318 +US 62358 Niota Illinois IL Hancock 067 40.5978 -91.2991 +US 62367 Plymouth Illinois IL Hancock 067 40.3236 -90.9672 +US 62373 Sutter Illinois IL Hancock 067 40.2865 -91.3726 +US 62379 Warsaw Illinois IL Hancock 067 40.3544 -91.4348 +US 62380 West Point Illinois IL Hancock 067 40.2452 -91.2496 +US 62919 Cave In Rock Illinois IL Hardin 069 37.5008 -88.2383 +US 62931 Elizabethtown Illinois IL Hardin 069 37.4665 -88.2867 +US 62955 Karbers Ridge Illinois IL Hardin 069 37.5008 -88.2383 +US 62982 Rosiclare Illinois IL Hardin 069 37.424 -88.3462 +US 61418 Biggsville Illinois IL Henderson 071 40.8531 -90.8561 +US 61425 Carman Illinois IL Henderson 071 40.7551 -91.0564 +US 61437 Gladstone Illinois IL Henderson 071 40.8377 -90.9941 +US 61454 Lomax Illinois IL Henderson 071 40.6761 -91.0391 +US 61460 Media Illinois IL Henderson 071 40.7618 -90.857 +US 61469 Oquawka Illinois IL Henderson 071 40.9442 -90.9302 +US 61471 Raritan Illinois IL Henderson 071 40.8526 -90.9853 +US 61480 Stronghurst Illinois IL Henderson 071 40.7523 -90.9257 +US 61233 Andover Illinois IL Henry 073 41.2954 -90.2905 +US 61234 Annawan Illinois IL Henry 073 41.398 -89.9129 +US 61235 Atkinson Illinois IL Henry 073 41.4162 -90.0225 +US 61238 Cambridge Illinois IL Henry 073 41.3114 -90.1805 +US 61241 Colona Illinois IL Henry 073 41.4885 -90.321 +US 61254 Geneseo Illinois IL Henry 073 41.4688 -90.1711 +US 61258 Hooppole Illinois IL Henry 073 41.522 -89.9122 +US 61262 Lynn Center Illinois IL Henry 073 41.2888 -90.3304 +US 61273 Orion Illinois IL Henry 073 41.3634 -90.3849 +US 61274 Osco Illinois IL Henry 073 41.3637 -90.2681 +US 61413 Alpha Illinois IL Henry 073 41.193 -90.3821 +US 61419 Bishop Hill Illinois IL Henry 073 41.1977 -90.1183 +US 61434 Galva Illinois IL Henry 073 41.1656 -90.0481 +US 61443 Kewanee Illinois IL Henry 073 41.2411 -89.9274 +US 61468 Opheim Illinois IL Henry 073 41.2577 -90.3878 +US 61490 Woodhull Illinois IL Henry 073 41.1849 -90.2833 +US 60911 Ashkum Illinois IL Iroquois 075 40.8844 -87.9411 +US 60912 Beaverville Illinois IL Iroquois 075 40.9672 -87.6217 +US 60918 Buckley Illinois IL Iroquois 075 40.6018 -88.0361 +US 60922 Chebanse Illinois IL Iroquois 075 41.0254 -87.8959 +US 60924 Cissna Park Illinois IL Iroquois 075 40.5858 -87.8759 +US 60926 Claytonville Illinois IL Iroquois 075 40.5676 -87.804 +US 60927 Clifton Illinois IL Iroquois 075 40.9394 -87.9202 +US 60928 Crescent City Illinois IL Iroquois 075 40.7417 -87.849 +US 60930 Danforth Illinois IL Iroquois 075 40.8244 -87.9868 +US 60931 Donovan Illinois IL Iroquois 075 40.8891 -87.6046 +US 60938 Gilman Illinois IL Iroquois 075 40.768 -87.9933 +US 60939 Goodwine Illinois IL Iroquois 075 40.7481 -87.8288 +US 60945 Iroquois Illinois IL Iroquois 075 40.8269 -87.5847 +US 60948 Loda Illinois IL Iroquois 075 40.5241 -88.0927 +US 60951 Martinton Illinois IL Iroquois 075 40.9052 -87.7443 +US 60953 Milford Illinois IL Iroquois 075 40.6293 -87.6853 +US 60955 Onarga Illinois IL Iroquois 075 40.712 -87.9958 +US 60956 Papineau Illinois IL Iroquois 075 40.967 -87.7161 +US 60966 Sheldon Illinois IL Iroquois 075 40.7803 -87.5736 +US 60967 Stockland Illinois IL Iroquois 075 40.7481 -87.8288 +US 60968 Thawville Illinois IL Iroquois 075 40.684 -88.0999 +US 60970 Watseka Illinois IL Iroquois 075 40.7734 -87.7309 +US 60973 Wellington Illinois IL Iroquois 075 40.5339 -87.6561 +US 60974 Woodland Illinois IL Iroquois 075 40.7151 -87.7307 +US 62901 Carbondale Illinois IL Jackson 077 37.72 -89.2158 +US 62902 Carbondale Illinois IL Jackson 077 37.6636 -89.1173 +US 62903 Carbondale Illinois IL Jackson 077 37.6704 -89.2778 +US 62907 Ava Illinois IL Jackson 077 37.8793 -89.4654 +US 62916 Campbell Hill Illinois IL Jackson 077 37.9228 -89.5799 +US 62924 De Soto Illinois IL Jackson 077 37.8147 -89.2218 +US 62927 Dowell Illinois IL Jackson 077 37.9392 -89.2318 +US 62932 Elkville Illinois IL Jackson 077 37.9155 -89.2336 +US 62940 Gorham Illinois IL Jackson 077 37.7406 -89.444 +US 62942 Grand Tower Illinois IL Jackson 077 37.6322 -89.4999 +US 62950 Jacob Illinois IL Jackson 077 37.7437 -89.5444 +US 62958 Makanda Illinois IL Jackson 077 37.6871 -89.2509 +US 62966 Murphysboro Illinois IL Jackson 077 37.7655 -89.3317 +US 62971 Oraville Illinois IL Jackson 077 37.7586 -89.4158 +US 62975 Pomona Illinois IL Jackson 077 37.6501 -89.3693 +US 62994 Vergennes Illinois IL Jackson 077 37.9051 -89.3269 +US 62432 Hidalgo Illinois IL Jasper 079 39.1228 -88.1397 +US 62448 Newton Illinois IL Jasper 079 38.9847 -88.1704 +US 62459 Sainte Marie Illinois IL Jasper 079 38.928 -88.0291 +US 62475 West Liberty Illinois IL Jasper 079 38.895 -88.0979 +US 62479 Wheeler Illinois IL Jasper 079 39.0182 -88.3175 +US 62480 Willow Hill Illinois IL Jasper 079 38.9757 -88.0172 +US 62481 Yale Illinois IL Jasper 079 39.13 -88.0105 +US 62810 Belle Rive Illinois IL Jefferson 081 38.2153 -88.7558 +US 62814 Bluford Illinois IL Jefferson 081 38.3531 -88.7587 +US 62816 Bonnie Illinois IL Jefferson 081 38.198 -88.9229 +US 62830 Dix Illinois IL Jefferson 081 38.4333 -88.9657 +US 62846 Ina Illinois IL Jefferson 081 38.1527 -88.8894 +US 62864 Mount Vernon Illinois IL Jefferson 081 38.317 -88.9105 +US 62866 Nason Illinois IL Jefferson 081 38.1654 -88.9676 +US 62872 Opdyke Illinois IL Jefferson 081 38.275 -88.775 +US 62883 Scheller Illinois IL Jefferson 081 38.1731 -89.0927 +US 62889 Texico Illinois IL Jefferson 081 38.425 -88.8702 +US 62894 Waltonville Illinois IL Jefferson 081 38.2465 -89.0067 +US 62898 Woodlawn Illinois IL Jefferson 081 38.3844 -89.0745 +US 62012 Brighton Illinois IL Jersey 083 39.0361 -90.1443 +US 62022 Dow Illinois IL Jersey 083 39.0312 -90.3011 +US 62028 Elsah Illinois IL Jersey 083 38.9594 -90.3541 +US 62030 Fidelity Illinois IL Jersey 083 39.1546 -90.1642 +US 62031 Fieldon Illinois IL Jersey 083 39.1086 -90.5297 +US 62037 Grafton Illinois IL Jersey 083 39.0021 -90.4323 +US 62052 Jerseyville Illinois IL Jersey 083 39.1213 -90.3338 +US 62063 Medora Illinois IL Jersey 083 39.1986 -90.1542 +US 61001 Apple River Illinois IL Jo Daviess 085 42.4714 -90.1201 +US 61025 East Dubuque Illinois IL Jo Daviess 085 42.4875 -90.6046 +US 61028 Elizabeth Illinois IL Jo Daviess 085 42.3089 -90.1986 +US 61036 Galena Illinois IL Jo Daviess 085 42.4182 -90.4195 +US 61041 Hanover Illinois IL Jo Daviess 085 42.2594 -90.2897 +US 61059 Nora Illinois IL Jo Daviess 085 42.4637 -89.9414 +US 61075 Scales Mound Illinois IL Jo Daviess 085 42.4715 -90.258 +US 61085 Stockton Illinois IL Jo Daviess 085 42.3492 -90.0202 +US 61087 Warren Illinois IL Jo Daviess 085 42.489 -89.986 +US 62908 Belknap Illinois IL Johnson 087 37.3266 -88.9507 +US 62909 Boles Illinois IL Johnson 087 37.4472 -88.8768 +US 62912 Buncombe Illinois IL Johnson 087 37.4637 -88.9806 +US 62923 Cypress Illinois IL Johnson 087 37.365 -88.9747 +US 62939 Goreville Illinois IL Johnson 087 37.575 -88.9655 +US 62943 Grantsburg Illinois IL Johnson 087 37.3794 -88.7583 +US 62967 New Burnside Illinois IL Johnson 087 37.578 -88.7454 +US 62972 Ozark Illinois IL Johnson 087 37.5367 -88.7688 +US 62985 Simpson Illinois IL Johnson 087 37.4519 -88.8014 +US 62991 Tunnel Hill Illinois IL Johnson 087 37.5737 -88.8835 +US 62995 Vienna Illinois IL Johnson 087 37.4205 -88.8879 +US 60109 Burlington Illinois IL Kane 089 42.0458 -88.539 +US 60110 Carpentersville Illinois IL Kane 089 42.123 -88.2606 +US 60118 Dundee Illinois IL Kane 089 42.0962 -88.2902 +US 60119 Elburn Illinois IL Kane 089 41.8824 -88.4611 +US 60120 Elgin Illinois IL Kane 089 42.0384 -88.2606 +US 60121 Elgin Illinois IL Kane 089 42.0413 -88.3126 +US 60122 Elgin Illinois IL Kane 089 42.0671 -88.305 +US 60123 Elgin Illinois IL Kane 089 42.0376 -88.3186 +US 60124 Elgin Illinois IL Kane County 089 42.0293 -88.3747 +US 60134 Geneva Illinois IL Kane 089 41.886 -88.311 +US 60136 Gilberts Illinois IL Kane 089 42.0984 -88.3691 +US 60140 Hampshire Illinois IL Kane 089 42.0807 -88.517 +US 60144 Kaneville Illinois IL Kane 089 41.937 -88.4202 +US 60147 Lafox Illinois IL Kane 089 41.937 -88.4202 +US 60151 Maple Park Illinois IL Kane 089 41.9232 -88.5999 +US 60170 Plato Center Illinois IL Kane 089 42.0258 -88.4259 +US 60174 Saint Charles Illinois IL Kane 089 41.9194 -88.307 +US 60175 Saint Charles Illinois IL Kane 089 41.9478 -88.3918 +US 60177 South Elgin Illinois IL Kane 089 41.9969 -88.2986 +US 60182 Virgil Illinois IL Kane 089 41.9087 -88.5991 +US 60183 Wasco Illinois IL Kane 089 41.937 -88.4202 +US 60502 Aurora Illinois IL Kane County 089 41.7845 -88.2616 +US 60505 Aurora Illinois IL Kane 089 41.7582 -88.2971 +US 60506 Aurora Illinois IL Kane 089 41.7664 -88.3446 +US 60507 Aurora Illinois IL Kane 089 41.937 -88.4202 +US 60510 Batavia Illinois IL Kane 089 41.8482 -88.3098 +US 60511 Big Rock Illinois IL Kane 089 41.7593 -88.5376 +US 60539 Mooseheart Illinois IL Kane 089 41.8241 -88.3315 +US 60542 North Aurora Illinois IL Kane 089 41.8089 -88.3274 +US 60554 Sugar Grove Illinois IL Kane 089 41.7741 -88.4397 +US 60568 Aurora Illinois IL Kane 089 41.9356 -88.4324 +US 60901 Kankakee Illinois IL Kankakee 091 41.1166 -87.8696 +US 60902 Kankakee Illinois IL Kankakee 091 41.1465 -87.889 +US 60910 Aroma Park Illinois IL Kankakee 091 41.0916 -87.6843 +US 60913 Bonfield Illinois IL Kankakee 091 41.1573 -88.0619 +US 60914 Bourbonnais Illinois IL Kankakee 091 41.1661 -87.879 +US 60915 Bradley Illinois IL Kankakee 091 41.1454 -87.8601 +US 60917 Buckingham Illinois IL Kankakee 091 41.0433 -88.1772 +US 60935 Essex Illinois IL Kankakee 091 41.1676 -88.1845 +US 60940 Grant Park Illinois IL Kankakee 091 41.2477 -87.648 +US 60941 Herscher Illinois IL Kankakee 091 41.0464 -88.0858 +US 60944 Hopkins Park Illinois IL Kankakee 091 41.1465 -87.889 +US 60950 Manteno Illinois IL Kankakee 091 41.2514 -87.8468 +US 60954 Momence Illinois IL Kankakee 091 41.1593 -87.6575 +US 60958 Pembroke Township Illinois IL Kankakee 091 41.0646 -87.5917 5 +US 60961 Reddick Illinois IL Kankakee 091 41.1005 -88.2089 +US 60964 Saint Anne Illinois IL Kankakee 091 41.0487 -87.6564 +US 60969 Union Hill Illinois IL Kankakee 091 41.1088 -88.1465 +US 60512 Bristol Illinois IL Kendall 093 41.7016 -88.4398 +US 60536 Millbrook Illinois IL Kendall 093 41.5903 -88.562 +US 60537 Millington Illinois IL Kendall 093 41.5614 -88.5975 +US 60538 Montgomery Illinois IL Kendall 093 41.7177 -88.332 +US 60541 Newark Illinois IL Kendall 093 41.5267 -88.527 +US 60543 Oswego Illinois IL Kendall 093 41.6849 -88.3453 +US 60545 Plano Illinois IL Kendall 093 41.667 -88.5384 +US 60560 Yorkville Illinois IL Kendall 093 41.6387 -88.4438 +US 60650 Cicero Illinois IL Kendall County 093 41.8457 -87.7613 +US 61401 Galesburg Illinois IL Knox 095 40.9521 -90.3698 +US 61402 Galesburg Illinois IL Knox 095 40.9322 -90.2144 +US 61410 Abingdon Illinois IL Knox 095 40.8023 -90.4009 +US 61414 Altona Illinois IL Knox 095 41.1128 -90.1598 +US 61428 Dahinda Illinois IL Knox 095 40.9551 -90.1398 +US 61430 East Galesburg Illinois IL Knox 095 40.9402 -90.3109 +US 61436 Gilson Illinois IL Knox 095 40.8765 -90.1747 +US 61439 Henderson Illinois IL Knox 095 41.0276 -90.3575 +US 61448 Knoxville Illinois IL Knox 095 40.9107 -90.2871 +US 61458 Maquon Illinois IL Knox 095 40.7849 -90.2008 +US 61467 Oneida Illinois IL Knox 095 41.0832 -90.2391 +US 61472 Rio Illinois IL Knox 095 41.1103 -90.39 +US 61474 Saint Augustine Illinois IL Knox 095 40.7289 -90.3798 +US 61485 Victoria Illinois IL Knox 095 41.0256 -90.0933 +US 61488 Wataga Illinois IL Knox 095 41.0224 -90.2723 +US 61489 Williamsfield Illinois IL Knox 095 40.9277 -90.0267 +US 61572 Yates City Illinois IL Knox 095 40.7878 -90.0265 +US 60002 Antioch Illinois IL Lake 097 42.4648 -88.1178 +US 60010 Barrington Illinois IL Lake 097 42.1614 -88.1383 +US 60011 Barrington Illinois IL Lake 097 42.3228 -87.6101 +US 60015 Deerfield Illinois IL Lake 097 42.1705 -87.859 +US 60020 Fox Lake Illinois IL Lake 097 42.3937 -88.1648 +US 60030 Grayslake Illinois IL Lake 097 42.3524 -88.0545 +US 60031 Gurnee Illinois IL Lake 097 42.3669 -87.9452 +US 60035 Highland Park Illinois IL Lake 097 42.1794 -87.8059 +US 60037 Fort Sheridan Illinois IL Lake 097 42.2097 -87.8056 +US 60040 Highwood Illinois IL Lake 097 42.2035 -87.8141 +US 60041 Ingleside Illinois IL Lake 097 42.3631 -88.1587 +US 60042 Island Lake Illinois IL Lake 097 42.2742 -88.1926 +US 60044 Lake Bluff Illinois IL Lake 097 42.282 -87.856 +US 60045 Lake Forest Illinois IL Lake 097 42.2374 -87.8482 +US 60046 Lake Villa Illinois IL Lake 097 42.3813 -87.9991 +US 60047 Lake Zurich Illinois IL Lake 097 42.2165 -88.0769 +US 60048 Libertyville Illinois IL Lake 097 42.281 -87.95 +US 60049 Long Grove Illinois IL Lake 097 42.1987 -88.0419 +US 60060 Mundelein Illinois IL Lake 097 42.2636 -88.0048 +US 60061 Vernon Hills Illinois IL Lake 097 42.2288 -87.9719 +US 60063 Deerfield Illinois IL Lake County 097 42.1647 -87.8456 +US 60064 North Chicago Illinois IL Lake 097 42.3247 -87.8564 +US 60069 Lincolnshire Illinois IL Lake 097 42.1976 -87.9261 +US 60073 Round Lake Illinois IL Lake 097 42.3668 -88.0888 +US 60075 Russell Illinois IL Lake 097 42.3228 -87.6101 +US 60079 Waukegan Illinois IL Lake 097 42.3228 -87.6101 +US 60083 Wadsworth Illinois IL Lake 097 42.446 -87.904 +US 60084 Wauconda Illinois IL Lake 097 42.2636 -88.1333 +US 60085 Waukegan Illinois IL Lake 097 42.3542 -87.8651 +US 60086 North Chicago Illinois IL Lake 097 42.4333 -87.7766 +US 60087 Waukegan Illinois IL Lake 097 42.3989 -87.8554 +US 60088 Great Lakes Illinois IL Lake 097 42.3032 -87.8642 +US 60089 Buffalo Grove Illinois IL Lake 097 42.1598 -87.9644 +US 60092 Libertyville Illinois IL Lake 097 42.3228 -87.6101 +US 60096 Winthrop Harbor Illinois IL Lake 097 42.4793 -87.8318 +US 60099 Zion Illinois IL Lake 097 42.4442 -87.8389 +US 60470 Ransom Illinois IL La Salle 099 41.153 -88.6502 +US 60518 Earlville Illinois IL La Salle 099 41.5859 -88.9103 +US 60531 Leland Illinois IL La Salle 099 41.6066 -88.7716 +US 60549 Serena Illinois IL La Salle 099 41.4995 -88.7509 +US 60551 Sheridan Illinois IL La Salle 099 41.5164 -88.6706 +US 60557 Wedron Illinois IL La Salle 099 41.4409 -88.7703 +US 61301 La Salle Illinois IL La Salle 099 41.3442 -89.0955 +US 61316 Cedar Point Illinois IL La Salle 099 41.2617 -89.1237 +US 61321 Dana Illinois IL La Salle 099 40.9547 -88.9628 +US 61325 Grand Ridge Illinois IL La Salle 099 41.2386 -88.8168 +US 61332 Leonore Illinois IL La Salle 099 41.1488 -89.0091 +US 61334 Lostant Illinois IL La Salle 099 41.145 -89.075 +US 61341 Marseilles Illinois IL La Salle 099 41.3302 -88.6947 +US 61342 Mendota Illinois IL La Salle 099 41.5443 -89.1083 +US 61348 Oglesby Illinois IL La Salle 099 41.2928 -89.0553 +US 61350 Ottawa Illinois IL La Salle 099 41.3526 -88.8416 +US 61354 Peru Illinois IL La Salle 099 41.333 -89.1265 +US 61358 Rutland Illinois IL La Salle 099 40.9844 -89.0388 +US 61360 Seneca Illinois IL La Salle 099 41.3152 -88.61 +US 61364 Streator Illinois IL La Salle 099 41.1225 -88.8307 +US 61370 Tonica Illinois IL La Salle 099 41.2327 -89.089 +US 61371 Triumph Illinois IL La Salle 099 41.4991 -89.0219 +US 61372 Troy Grove Illinois IL La Salle 099 41.4518 -89.0705 +US 61373 Utica Illinois IL La Salle 099 41.363 -89.0008 +US 62415 Birds Illinois IL Lawrence 101 38.7103 -87.7036 +US 62417 Bridgeport Illinois IL Lawrence 101 38.7067 -87.7657 +US 62439 Lawrenceville Illinois IL Lawrence 101 38.7309 -87.6784 +US 62460 Saint Francisville Illinois IL Lawrence 101 38.5921 -87.6487 +US 62466 Sumner Illinois IL Lawrence 101 38.7171 -87.8638 +US 60530 Lee Illinois IL Lee 103 41.7864 -88.9714 +US 60553 Steward Illinois IL Lee 103 41.8475 -89.0151 +US 61006 Ashton Illinois IL Lee 103 41.8643 -89.2086 +US 61021 Dixon Illinois IL Lee 103 41.8478 -89.4893 +US 61031 Franklin Grove Illinois IL Lee 103 41.858 -89.3171 +US 61042 Harmon Illinois IL Lee 103 41.6973 -89.5695 +US 61057 Nachusa Illinois IL Lee 103 41.8316 -89.3896 +US 61058 Nelson Illinois IL Lee 103 41.7973 -89.5995 +US 61310 Amboy Illinois IL Lee 103 41.7042 -89.3472 +US 61318 Compton Illinois IL Lee 103 41.685 -89.0877 +US 61324 Eldena Illinois IL Lee 103 41.7711 -89.4123 +US 61331 Lee Center Illinois IL Lee 103 41.7488 -89.2827 +US 61353 Paw Paw Illinois IL Lee 103 41.6852 -88.9674 +US 61367 Sublette Illinois IL Lee 103 41.6331 -89.2354 +US 61378 West Brooklyn Illinois IL Lee 103 41.7292 -89.1909 +US 60420 Dwight Illinois IL Livingston 105 41.0887 -88.4159 +US 60460 Odell Illinois IL Livingston 105 41.0238 -88.5156 +US 60920 Campus Illinois IL Livingston 105 41.0248 -88.3072 +US 60921 Chatsworth Illinois IL Livingston 105 40.7484 -88.2937 +US 60929 Cullom Illinois IL Livingston 105 40.8781 -88.2765 +US 60934 Emington Illinois IL Livingston 105 40.9692 -88.3589 +US 61311 Ancona Illinois IL Livingston 105 41.0426 -88.8642 +US 61313 Blackstone Illinois IL Livingston 105 41.0719 -88.6498 +US 61319 Cornell Illinois IL Livingston 105 41.031 -88.7668 +US 61333 Long Point Illinois IL Livingston 105 40.9896 -88.8811 +US 61739 Fairbury Illinois IL Livingston 105 40.745 -88.5165 +US 61740 Flanagan Illinois IL Livingston 105 40.879 -88.862 +US 61741 Forrest Illinois IL Livingston 105 40.7513 -88.4111 +US 61743 Graymont Illinois IL Livingston 105 40.8757 -88.7817 +US 61764 Pontiac Illinois IL Livingston 105 40.8764 -88.6328 +US 61769 Saunemin Illinois IL Livingston 105 40.8885 -88.4094 +US 61775 Strawn Illinois IL Livingston 105 40.6476 -88.404 +US 61723 Atlanta Illinois IL Logan 107 40.2586 -89.23 +US 61751 Lawndale Illinois IL Logan 107 40.2193 -89.2852 +US 62512 Beason Illinois IL Logan 107 40.1437 -89.1948 +US 62518 Chestnut Illinois IL Logan 107 40.0582 -89.19 +US 62519 Cornland Illinois IL Logan 107 39.9374 -89.4023 +US 62541 Lake Fork Illinois IL Logan 107 39.9706 -89.3505 +US 62543 Latham Illinois IL Logan 107 39.9711 -89.1725 +US 62548 Mount Pulaski Illinois IL Logan 107 40.0045 -89.2935 +US 62634 Elkhart Illinois IL Logan 107 40.0132 -89.452 +US 62635 Emden Illinois IL Logan 107 40.2967 -89.4714 +US 62643 Hartsburg Illinois IL Logan 107 40.2451 -89.4519 +US 62656 Lincoln Illinois IL Logan 107 40.1451 -89.3684 +US 62666 Middletown Illinois IL Logan 107 40.0967 -89.5818 +US 62671 New Holland Illinois IL Logan 107 40.1682 -89.5604 +US 61411 Adair Illinois IL McDonough 109 40.3852 -90.5037 +US 61416 Bardolph Illinois IL McDonough 109 40.4979 -90.5088 +US 61420 Blandinsville Illinois IL McDonough 109 40.5516 -90.8595 +US 61422 Bushnell Illinois IL McDonough 109 40.5539 -90.506 +US 61438 Good Hope Illinois IL McDonough 109 40.5749 -90.6324 +US 61440 Industry Illinois IL McDonough 109 40.3256 -90.6105 +US 61455 Macomb Illinois IL McDonough 109 40.4617 -90.6787 +US 61470 Prairie City Illinois IL McDonough 109 40.618 -90.4727 +US 61475 Sciota Illinois IL McDonough 109 40.5832 -90.7316 +US 62326 Colchester Illinois IL McDonough 109 40.4156 -90.7846 +US 62327 Colmar Illinois IL McDonough County 109 40.3545 -90.7533 +US 62374 Tennessee Illinois IL McDonough 109 40.414 -90.8556 +US 60001 Alden Illinois IL McHenry 111 42.3248 -88.4525 +US 60012 Crystal Lake Illinois IL McHenry 111 42.2662 -88.3213 +US 60013 Cary Illinois IL McHenry 111 42.2196 -88.2426 +US 60014 Crystal Lake Illinois IL McHenry 111 42.2308 -88.3324 +US 60021 Fox River Grove Illinois IL McHenry 111 42.1936 -88.2205 +US 60033 Harvard Illinois IL McHenry 111 42.4227 -88.6048 +US 60034 Hebron Illinois IL McHenry 111 42.4642 -88.4176 +US 60039 Crystal Lake Illinois IL McHenry 111 42.3248 -88.4525 +US 60050 Mchenry Illinois IL McHenry 111 42.3311 -88.2955 +US 60051 Mchenry Illinois IL McHenry 111 42.3542 -88.2294 +US 60071 Richmond Illinois IL McHenry 111 42.4669 -88.29 +US 60072 Ringwood Illinois IL McHenry 111 42.4048 -88.3054 +US 60080 Solon Mills Illinois IL McHenry 111 42.4425 -88.276 +US 60081 Spring Grove Illinois IL McHenry 111 42.4413 -88.2237 +US 60097 Wonder Lake Illinois IL McHenry 111 42.3849 -88.3534 +US 60098 Woodstock Illinois IL McHenry 111 42.3198 -88.4477 +US 60102 Algonquin Illinois IL McHenry 111 42.1641 -88.3064 +US 60142 Huntley Illinois IL McHenry 111 42.1756 -88.4268 +US 60152 Marengo Illinois IL McHenry 111 42.2442 -88.6074 +US 60156 Lake In The Hills Illinois IL McHenry 111 42.1947 -88.3665 +US 60180 Union Illinois IL McHenry 111 42.2103 -88.5283 +US 60296 McHenry Illinois IL McHenry County 111 42.3448 -88.2696 +US 61701 Bloomington Illinois IL McLean 113 40.4783 -88.9893 +US 61702 Bloomington Illinois IL McLean 113 40.5192 -88.8643 +US 61704 Bloomington Illinois IL McLean 113 40.4705 -88.9433 +US 61705 Bloomington Illinois IL McLean 113 40.44 -89.067 +US 61709 Bloomington Illinois IL McLean 113 40.4614 -88.953 +US 61710 Bloomington Illinois IL McLean 113 40.4777 -88.9542 +US 61720 Anchor Illinois IL McLean 113 40.5441 -88.5266 +US 61722 Arrowsmith Illinois IL McLean 113 40.412 -88.6296 +US 61724 Bellflower Illinois IL McLean 113 40.3401 -88.5227 +US 61725 Carlock Illinois IL McLean 113 40.6029 -89.1098 +US 61726 Chenoa Illinois IL McLean 113 40.7446 -88.7219 +US 61728 Colfax Illinois IL McLean 113 40.5704 -88.62 +US 61730 Cooksville Illinois IL McLean 113 40.536 -88.735 +US 61731 Cropsey Illinois IL McLean 113 40.603 -88.4943 +US 61732 Danvers Illinois IL McLean 113 40.5364 -89.1885 +US 61736 Downs Illinois IL McLean 113 40.3989 -88.8686 +US 61737 Ellsworth Illinois IL McLean 113 40.4432 -88.7371 +US 61744 Gridley Illinois IL McLean 113 40.7439 -88.884 +US 61745 Heyworth Illinois IL McLean 113 40.3307 -88.9776 +US 61748 Hudson Illinois IL McLean 113 40.6205 -88.9759 +US 61752 Le Roy Illinois IL McLean 113 40.3468 -88.7598 +US 61753 Lexington Illinois IL McLean 113 40.6357 -88.8062 +US 61754 Mc Lean Illinois IL McLean 113 40.3282 -89.1645 +US 61758 Merna Illinois IL McLean 113 40.5192 -88.8643 +US 61761 Normal Illinois IL McLean 113 40.5124 -88.9883 +US 61770 Saybrook Illinois IL McLean 113 40.432 -88.5247 +US 61772 Shirley Illinois IL McLean 113 40.4174 -89.0822 +US 61774 Stanford Illinois IL McLean 113 40.4376 -89.2164 +US 61776 Towanda Illinois IL McLean 113 40.5533 -88.8886 +US 61790 Normal Illinois IL McLean 113 40.5103 -88.998 +US 61791 Bloomington Illinois IL McLean 113 40.5192 -88.8643 +US 61799 Bloomington Illinois IL McLean 113 40.4885 -88.9396 +US 61756 Maroa Illinois IL Macon 115 40.0342 -88.9578 +US 62501 Argenta Illinois IL Macon 115 39.934 -88.8052 +US 62513 Blue Mound Illinois IL Macon 115 39.6978 -89.1136 +US 62514 Boody Illinois IL Macon 115 39.7624 -89.0507 +US 62521 Decatur Illinois IL Macon 115 39.8395 -88.9465 +US 62522 Decatur Illinois IL Macon 115 39.8432 -88.9861 +US 62523 Decatur Illinois IL Macon 115 39.8417 -88.9534 +US 62524 Decatur Illinois IL Macon 115 39.854 -88.9815 +US 62525 Decatur Illinois IL Macon 115 39.854 -88.9815 +US 62526 Decatur Illinois IL Macon 115 39.8583 -88.9382 +US 62527 Decatur Illinois IL Macon 115 39.854 -88.9815 +US 62532 Elwin Illinois IL Macon 115 39.78 -88.9808 +US 62535 Forsyth Illinois IL Macon 115 39.9248 -88.9691 +US 62537 Harristown Illinois IL Macon 115 39.8567 -89.085 +US 62544 Macon Illinois IL Macon 115 39.7041 -88.988 +US 62549 Mt Zion Illinois IL Macon 115 39.7705 -88.8659 +US 62551 Niantic Illinois IL Macon 115 39.8582 -89.1701 +US 62552 Oakley Illinois IL Macon 115 39.8835 -88.8048 +US 62554 Oreana Illinois IL Macon 115 39.9351 -88.8547 +US 62573 Warrensburg Illinois IL Macon 115 39.9454 -89.0741 +US 62009 Benld Illinois IL Macoupin 117 39.0939 -89.8031 +US 62014 Bunker Hill Illinois IL Macoupin 117 39.0408 -89.9624 +US 62023 Eagarville Illinois IL Macoupin 117 39.1118 -89.7855 +US 62033 Gillespie Illinois IL Macoupin 117 39.1341 -89.8442 +US 62069 Mount Olive Illinois IL Macoupin 117 39.0705 -89.7448 +US 62079 Piasa Illinois IL Macoupin 117 39.1128 -90.1198 +US 62085 Sawyerville Illinois IL Macoupin 117 39.0828 -89.8043 +US 62088 Staunton Illinois IL Macoupin 117 39.0135 -89.7857 +US 62093 Wilsonville Illinois IL Macoupin 117 39.0695 -89.8565 +US 62511 Atwater Illinois IL Macoupin 117 39.3391 -89.7357 +US 62626 Carlinville Illinois IL Macoupin 117 39.2885 -89.8661 +US 62630 Chesterfield Illinois IL Macoupin 117 39.2608 -90.0784 +US 62640 Girard Illinois IL Macoupin 117 39.3838 -89.8501 +US 62649 Hettick Illinois IL Macoupin 117 39.3752 -90.0672 +US 62667 Modesto Illinois IL Macoupin 117 39.476 -89.9794 +US 62672 Nilwood Illinois IL Macoupin 117 39.398 -89.8045 +US 62674 Palmyra Illinois IL Macoupin 117 39.4227 -90.0311 +US 62683 Scottville Illinois IL Macoupin 117 39.2609 -89.9261 +US 62685 Shipman Illinois IL Macoupin 117 39.1952 -89.9607 +US 62686 Standard City Illinois IL Macoupin 117 39.2387 -89.8894 +US 62690 Virden Illinois IL Macoupin 117 39.5064 -89.7783 +US 60297 McHenry Illinois IL Madison County 119 42.3448 -88.2696 +US 62001 Alhambra Illinois IL Madison 119 38.8822 -89.7441 +US 62002 Alton Illinois IL Madison 119 38.9087 -90.1568 +US 62010 Bethalto Illinois IL Madison 119 38.9074 -90.0344 +US 62018 Cottage Hills Illinois IL Madison 119 38.9124 -90.0826 +US 62021 Dorsey Illinois IL Madison 119 38.9832 -89.9786 +US 62024 East Alton Illinois IL Madison 119 38.8803 -90.083 +US 62025 Edwardsville Illinois IL Madison 119 38.805 -89.9637 +US 62026 Edwardsville Illinois IL Madison 119 38.7337 -89.943 +US 62034 Glen Carbon Illinois IL Madison 119 38.7609 -89.9706 +US 62035 Godfrey Illinois IL Madison 119 38.946 -90.206 +US 62040 Granite City Illinois IL Madison 119 38.7261 -90.1106 +US 62046 Hamel Illinois IL Madison 119 38.8901 -89.8457 +US 62048 Hartford Illinois IL Madison 119 38.8278 -90.0926 +US 62058 Livingston Illinois IL Madison 119 38.969 -89.7668 +US 62060 Madison Illinois IL Madison 119 38.6811 -90.1566 +US 62061 Marine Illinois IL Madison 119 38.7793 -89.7786 +US 62062 Maryville Illinois IL Madison 119 38.7138 -89.9658 +US 62067 Moro Illinois IL Madison 119 38.9318 -89.9618 +US 62074 New Douglas Illinois IL Madison 119 38.9676 -89.7392 +US 62084 Roxana Illinois IL Madison 119 38.8482 -90.0798 +US 62087 South Roxana Illinois IL Madison 119 38.8225 -90.0583 +US 62090 Venice Illinois IL Madison 119 38.6706 -90.1689 +US 62095 Wood River Illinois IL Madison 119 38.8643 -90.0875 +US 62097 Worden Illinois IL Madison 119 38.9449 -89.8532 +US 62234 Collinsville Illinois IL Madison 119 38.6835 -89.9853 +US 62249 Highland Illinois IL Madison 119 38.7631 -89.6789 +US 62281 Saint Jacob Illinois IL Madison 119 38.7059 -89.7925 +US 62294 Troy Illinois IL Madison 119 38.7243 -89.8708 +US 62801 Centralia Illinois IL Marion 121 38.5241 -89.1365 +US 62807 Alma Illinois IL Marion 121 38.7231 -88.9157 +US 62849 Iuka Illinois IL Marion 121 38.6136 -88.7689 +US 62853 Kell Illinois IL Marion 121 38.5147 -88.9127 +US 62854 Kinmundy Illinois IL Marion 121 38.7559 -88.813 +US 62870 Odin Illinois IL Marion 121 38.6088 -89.0552 +US 62875 Patoka Illinois IL Marion 121 38.7549 -89.0942 +US 62881 Salem Illinois IL Marion 121 38.6264 -88.9481 +US 62882 Sandoval Illinois IL Marion 121 38.6131 -89.114 +US 62892 Vernon Illinois IL Marion 121 38.8033 -89.083 +US 62893 Walnut Hill Illinois IL Marion 121 38.467 -89.0328 +US 61369 Toluca Illinois IL Marshall 123 41.0046 -89.1348 +US 61375 Varna Illinois IL Marshall 123 41.0327 -89.2483 +US 61377 Wenona Illinois IL Marshall 123 41.0548 -89.0416 +US 61424 Camp Grove Illinois IL Marshall 123 41.078 -89.6332 +US 61537 Henry Illinois IL Marshall 123 41.1115 -89.3743 +US 61540 Lacon Illinois IL Marshall 123 41.0216 -89.4008 +US 61541 La Rose Illinois IL Marshall 123 41.0063 -89.2269 +US 61565 Sparland Illinois IL Marshall 123 41.0134 -89.4571 +US 61570 Washburn Illinois IL Marshall 123 40.9141 -89.283 +US 61532 Forest City Illinois IL Mason 125 40.3594 -89.8334 +US 61546 Manito Illinois IL Mason 125 40.416 -89.7898 +US 61567 Topeka Illinois IL Mason 125 40.3443 -89.8859 +US 62617 Bath Illinois IL Mason 125 40.1536 -90.1661 +US 62633 Easton Illinois IL Mason 125 40.2279 -89.8903 +US 62644 Havana Illinois IL Mason 125 40.3084 -89.9383 +US 62655 Kilbourne Illinois IL Mason 125 40.1587 -90.0043 +US 62664 Mason City Illinois IL Mason 125 40.2269 -89.7318 +US 62682 San Jose Illinois IL Mason 125 40.3011 -89.6872 +US 62910 Brookport Illinois IL Massac 127 37.1542 -88.5334 +US 62953 Joppa Illinois IL Massac 127 37.2092 -88.8442 +US 62960 Metropolis Illinois IL Massac 127 37.1753 -88.7252 +US 62613 Athens Illinois IL Menard 129 39.9917 -89.6684 +US 62642 Greenview Illinois IL Menard 129 40.1017 -89.7469 +US 62659 Lincoln'S New Salem Illinois IL Menard 129 40.0311 -89.7867 +US 62673 Oakford Illinois IL Menard 129 40.0994 -89.9601 +US 62675 Petersburg Illinois IL Menard 129 39.9728 -89.8072 +US 62676 Plainview Illinois IL Menard County 129 39.1752 -89.9617 +US 62688 Tallula Illinois IL Menard 129 39.9402 -89.8823 +US 61231 Aledo Illinois IL Mercer 131 41.2008 -90.7416 +US 61260 Joy Illinois IL Mercer 131 41.2262 -90.8518 +US 61263 Matherville Illinois IL Mercer 131 41.2599 -90.6128 +US 61272 New Boston Illinois IL Mercer 131 41.2153 -90.9879 +US 61276 Preemption Illinois IL Mercer 131 41.2996 -90.5866 +US 61281 Sherrard Illinois IL Mercer 131 41.3027 -90.4939 +US 61412 Alexis Illinois IL Mercer 131 41.0521 -90.5436 +US 61442 Keithsburg Illinois IL Mercer 131 41.1043 -90.9263 +US 61465 New Windsor Illinois IL Mercer 131 41.1987 -90.4598 +US 61466 North Henderson Illinois IL Mercer 131 41.1006 -90.4736 +US 61476 Seaton Illinois IL Mercer 131 41.0732 -90.8257 +US 61486 Viola Illinois IL Mercer 131 41.2024 -90.5936 +US 62236 Columbia Illinois IL Monroe 133 38.4325 -90.2027 +US 62244 Fults Illinois IL Monroe 133 38.1797 -90.1974 +US 62248 Hecker Illinois IL Monroe 133 38.3044 -89.9935 +US 62256 Maeystown Illinois IL Monroe 133 38.3043 -90.1356 +US 62279 Renault Illinois IL Monroe 133 38.1521 -90.1346 +US 62295 Valmeyer Illinois IL Monroe 133 38.2805 -90.3122 +US 62298 Waterloo Illinois IL Monroe 133 38.3223 -90.1478 +US 62015 Butler Illinois IL Montgomery 135 39.2114 -89.5305 +US 62017 Coffeen Illinois IL Montgomery 135 39.0908 -89.3945 +US 62032 Fillmore Illinois IL Montgomery 135 39.1039 -89.2946 +US 62049 Hillsboro Illinois IL Montgomery 135 39.1494 -89.4881 +US 62051 Irving Illinois IL Montgomery 135 39.2089 -89.4104 +US 62056 Litchfield Illinois IL Montgomery 135 39.1793 -89.6499 +US 62075 Nokomis Illinois IL Montgomery 135 39.3036 -89.2853 +US 62076 Ohlman Illinois IL Montgomery 135 39.3434 -89.2191 +US 62077 Panama Illinois IL Montgomery 135 39.0317 -89.5237 +US 62089 Taylor Springs Illinois IL Montgomery 135 39.1218 -89.4942 +US 62091 Walshville Illinois IL Montgomery 135 39.0473 -89.635 +US 62094 Witt Illinois IL Montgomery 135 39.2469 -89.3414 +US 62533 Farmersville Illinois IL Montgomery 135 39.4401 -89.617 +US 62538 Harvel Illinois IL Montgomery 135 39.3719 -89.538 +US 62560 Raymond Illinois IL Montgomery 135 39.3106 -89.5851 +US 62572 Waggoner Illinois IL Montgomery 135 39.3688 -89.6545 +US 62601 Alexander Illinois IL Morgan 137 39.7517 -90.0458 +US 62628 Chapin Illinois IL Morgan 137 39.7716 -90.4113 +US 62631 Concord Illinois IL Morgan 137 39.823 -90.3722 +US 62638 Franklin Illinois IL Morgan 137 39.6222 -90.0889 +US 62650 Jacksonville Illinois IL Morgan 137 39.737 -90.3014 +US 62651 Jacksonville Illinois IL Morgan 137 39.6983 -90.2615 +US 62660 Literberry Illinois IL Morgan 137 39.8589 -90.2007 +US 62665 Meredosia Illinois IL Morgan 137 39.8173 -90.5339 +US 62668 Murrayville Illinois IL Morgan 137 39.5723 -90.2379 +US 62692 Waverly Illinois IL Morgan 137 39.587 -89.9449 +US 62695 Woodson Illinois IL Morgan 137 39.6189 -90.2257 +US 61914 Bethany Illinois IL Moultrie 139 39.6348 -88.7543 +US 61925 Dalton City Illinois IL Moultrie 139 39.7119 -88.7975 +US 61928 Gays Illinois IL Moultrie 139 39.4796 -88.5242 +US 61937 Lovington Illinois IL Moultrie 139 39.7192 -88.6417 +US 61951 Sullivan Illinois IL Moultrie 139 39.5934 -88.6038 +US 60113 Creston Illinois IL Ogle 141 41.9312 -88.9566 +US 61007 Baileyville Illinois IL Ogle 141 42.1905 -89.5939 +US 61010 Byron Illinois IL Ogle 141 42.1292 -89.2659 +US 61015 Chana Illinois IL Ogle 141 41.9933 -89.2117 +US 61020 Davis Junction Illinois IL Ogle 141 42.0979 -89.0838 +US 61030 Forreston Illinois IL Ogle 141 42.1229 -89.5831 +US 61043 Holcomb Illinois IL Ogle 141 42.0451 -89.3136 +US 61047 Leaf River Illinois IL Ogle 141 42.1532 -89.3959 +US 61049 Lindenwood Illinois IL Ogle 141 42.0507 -89.034 +US 61052 Monroe Center Illinois IL Ogle 141 42.105 -89.0169 +US 61054 Mount Morris Illinois IL Ogle 141 42.0479 -89.4346 +US 61061 Oregon Illinois IL Ogle 141 42.0095 -89.3444 +US 61064 Polo Illinois IL Ogle 141 41.989 -89.5984 +US 61068 Rochelle Illinois IL Ogle 141 41.9282 -89.071 +US 61084 Stillman Valley Illinois IL Ogle 141 42.1183 -89.1898 +US 61091 Woosung Illinois IL Ogle 141 41.9031 -89.5404 +US 61451 Laura Illinois IL Peoria 143 40.9335 -89.9349 +US 61517 Brimfield Illinois IL Peoria 143 40.8407 -89.897 +US 61518 Brimfield Illinois IL Peoria 143 40.7442 -89.7184 +US 61523 Chillicothe Illinois IL Peoria 143 40.9013 -89.5068 +US 61525 Dunlap Illinois IL Peoria 143 40.8444 -89.6397 +US 61526 Edelstein Illinois IL Peoria 143 40.9454 -89.5858 +US 61528 Edwards Illinois IL Peoria 143 40.779 -89.723 +US 61529 Elmwood Illinois IL Peoria 143 40.7726 -89.9289 +US 61533 Glasford Illinois IL Peoria 143 40.576 -89.8113 +US 61536 Hanna City Illinois IL Peoria 143 40.6798 -89.7952 +US 61539 Kingston Mines Illinois IL Peoria 143 40.5571 -89.7685 +US 61547 Mapleton Illinois IL Peoria 143 40.6117 -89.7184 +US 61552 Mossville Illinois IL Peoria 143 40.818 -89.568 +US 61562 Rome Illinois IL Peoria 143 40.8743 -89.5067 +US 61569 Trivoli Illinois IL Peoria 143 40.6795 -89.9135 +US 61601 Peoria Illinois IL Peoria 143 40.6931 -89.5898 +US 61602 Peoria Illinois IL Peoria 143 40.6833 -89.6049 +US 61603 Peoria Illinois IL Peoria 143 40.7132 -89.577 +US 61604 Peoria Illinois IL Peoria 143 40.7111 -89.6324 +US 61605 Peoria Illinois IL Peoria 143 40.6775 -89.6263 +US 61606 Peoria Illinois IL Peoria 143 40.6989 -89.6122 +US 61607 Peoria Illinois IL Peoria 143 40.6321 -89.6903 +US 61612 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61613 Peoria Illinois IL Peoria 143 40.7425 -89.6279 +US 61614 Peoria Illinois IL Peoria 143 40.7681 -89.6026 +US 61615 Peoria Illinois IL Peoria 143 40.7661 -89.645 +US 61616 Peoria Illinois IL Peoria 143 40.7468 -89.5719 +US 61625 Peoria Illinois IL Peoria 143 40.6963 -89.6166 +US 61628 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61629 Peoria Illinois IL Peoria 143 40.692 -89.5887 +US 61630 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61632 Peoria Illinois IL Peoria 143 40.7653 -89.5692 +US 61633 Peoria Illinois IL Peoria 143 40.7312 -89.6031 +US 61634 Peoria Illinois IL Peoria 143 40.6896 -89.5926 +US 61635 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61636 Peoria Illinois IL Peoria 143 40.6999 -89.5951 +US 61637 Peoria Illinois IL Peoria 143 40.7025 -89.5898 +US 61638 Peoria Illinois IL Peoria 143 40.7969 -89.6111 +US 61639 Peoria Illinois IL Peoria 143 40.7098 -89.5636 +US 61640 Peoria Illinois IL Peoria 143 40.7857 -89.6177 +US 61641 Peoria Illinois IL Peoria 143 40.64 -89.652 +US 61643 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61644 Peoria Illinois IL Peoria 143 40.7653 -89.5692 +US 61650 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61651 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61652 Peoria Illinois IL Peoria 143 40.8767 -89.5091 +US 61653 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61654 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61655 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 61656 Peoria Illinois IL Peoria 143 40.7442 -89.7184 +US 62238 Cutler Illinois IL Perry 145 38.0427 -89.5661 +US 62274 Pinckneyville Illinois IL Perry 145 38.0903 -89.3858 +US 62332 Detroit Illinois IL Perry County 145 39.6183 -90.6545 +US 62832 Du Quoin Illinois IL Perry 145 38.0137 -89.2333 +US 62888 Tamaroa Illinois IL Perry 145 38.138 -89.2231 +US 62997 Willisville Illinois IL Perry 145 37.9848 -89.5899 +US 61813 Bement Illinois IL Piatt 147 39.9222 -88.5688 +US 61818 Cerro Gordo Illinois IL Piatt 147 39.8681 -88.7256 +US 61830 Cisco Illinois IL Piatt 147 39.9972 -88.6962 +US 61839 De Land Illinois IL Piatt 147 40.1107 -88.6392 +US 61854 Mansfield Illinois IL Piatt 147 40.2147 -88.5179 +US 61855 Milmine Illinois IL Piatt 147 39.9238 -88.6599 +US 61856 Monticello Illinois IL Piatt 147 40.0263 -88.5686 +US 61884 White Heath Illinois IL Piatt 147 40.1009 -88.5193 +US 61929 Hammond Illinois IL Piatt 147 39.7946 -88.5793 +US 61936 La Place Illinois IL Piatt 147 39.7983 -88.7272 +US 62312 Barry Illinois IL Pike 149 39.7047 -91.0265 +US 62314 Baylis Illinois IL Pike 149 39.7612 -90.8832 +US 62323 Chambersburg Illinois IL Pike 149 39.8071 -90.663 +US 62340 Griggsville Illinois IL Pike 149 39.7084 -90.7249 +US 62343 Hull Illinois IL Pike 149 39.7186 -91.2338 +US 62345 Kinderhook Illinois IL Pike 149 39.6953 -91.1637 +US 62352 Milton Illinois IL Pike 149 39.5508 -90.6443 +US 62355 Nebo Illinois IL Pike 149 39.4202 -90.7692 +US 62356 New Canton Illinois IL Pike 149 39.6342 -91.0886 +US 62357 New Salem Illinois IL Pike 149 39.6996 -90.844 +US 62361 Pearl Illinois IL Pike 149 39.4441 -90.638 +US 62362 Perry Illinois IL Pike 149 39.7823 -90.7471 +US 62363 Pittsfield Illinois IL Pike 149 39.6013 -90.8073 +US 62366 Pleasant Hill Illinois IL Pike 149 39.4467 -90.877 +US 62370 Rockport Illinois IL Pike 149 39.5328 -90.9722 +US 62372 Summer Hill Illinois IL Pike County 149 39.5351 -91.0187 +US 62928 Eddyville Illinois IL Pope 151 37.4829 -88.5791 +US 62938 Golconda Illinois IL Pope 151 37.3602 -88.4886 +US 62944 Hamletsburg Illinois IL Pope 151 37.3336 -88.5614 +US 62947 Herod Illinois IL Pope 151 37.5634 -88.44 +US 62941 Grand Chain Illinois IL Pulaski 153 37.251 -89.0083 +US 62956 Karnak Illinois IL Pulaski 153 37.2911 -88.9739 +US 62963 Mound City Illinois IL Pulaski 153 37.0865 -89.1637 +US 62964 Mounds Illinois IL Pulaski 153 37.1188 -89.2001 +US 62970 Olmsted Illinois IL Pulaski 153 37.1935 -89.0933 +US 62973 Perks Illinois IL Pulaski 153 37.3113 -89.0831 +US 62976 Pulaski Illinois IL Pulaski 153 37.2146 -89.1968 +US 62992 Ullin Illinois IL Pulaski 153 37.2704 -89.1911 +US 62996 Villa Ridge Illinois IL Pulaski 153 37.1578 -89.1825 +US 61326 Granville Illinois IL Putnam 155 41.2642 -89.225 +US 61327 Hennepin Illinois IL Putnam 155 41.2352 -89.3218 +US 61335 Mc Nabb Illinois IL Putnam 155 41.173 -89.2187 +US 61336 Magnolia Illinois IL Putnam 155 41.1164 -89.227 +US 61340 Mark Illinois IL Putnam 155 41.266 -89.2491 +US 61363 Standard Illinois IL Putnam 155 41.2567 -89.1778 +US 61560 Putnam Illinois IL Putnam 155 41.1949 -89.4409 +US 62217 Baldwin Illinois IL Randolph 157 38.1754 -89.8414 +US 62233 Chester Illinois IL Randolph 157 37.9188 -89.8218 +US 62237 Coulterville Illinois IL Randolph 157 38.1753 -89.6479 +US 62241 Ellis Grove Illinois IL Randolph 157 38.0054 -89.9008 +US 62242 Evansville Illinois IL Randolph 157 38.0926 -89.917 +US 62259 Menard Illinois IL Randolph 157 38.0131 -89.8996 +US 62261 Modoc Illinois IL Randolph 157 38.0507 -90.0163 +US 62272 Percy Illinois IL Randolph 157 38.0126 -89.617 +US 62277 Prairie Du Rocher Illinois IL Randolph 157 38.1142 -90.0341 +US 62278 Red Bud Illinois IL Randolph 157 38.1907 -89.9884 +US 62280 Rockwood Illinois IL Randolph 157 37.8322 -89.6214 +US 62286 Sparta Illinois IL Randolph 157 38.1318 -89.7035 +US 62288 Steeleville Illinois IL Randolph 157 38.0057 -89.6665 +US 62292 Tilden Illinois IL Randolph 157 38.2122 -89.6895 +US 62297 Walsh Illinois IL Randolph 157 38.0203 -89.8297 +US 62419 Calhoun Illinois IL Richland 159 38.6351 -88.0037 +US 62421 Claremont Illinois IL Richland 159 38.7429 -87.9727 +US 62425 Dundas Illinois IL Richland 159 38.8306 -88.0973 +US 62450 Olney Illinois IL Richland 159 38.7334 -88.0809 +US 62452 Parkersburg Illinois IL Richland 159 38.59 -88.0647 +US 62868 Noble Illinois IL Richland 159 38.7119 -88.219 +US 61201 Rock Island Illinois IL Rock Island 161 41.4913 -90.5648 +US 61204 Rock Island Illinois IL Rock Island 161 41.5549 -90.616 +US 61206 Rock Island Illinois IL Rock Island 161 41.5549 -90.616 +US 61232 Andalusia Illinois IL Rock Island 161 41.4401 -90.7428 +US 61236 Barstow Illinois IL Rock Island 161 41.5147 -90.3577 +US 61237 Buffalo Prairie Illinois IL Rock Island 161 41.3368 -90.8522 +US 61239 Carbon Cliff Illinois IL Rock Island 161 41.4861 -90.3875 +US 61240 Coal Valley Illinois IL Rock Island 161 41.4351 -90.4652 +US 61242 Cordova Illinois IL Rock Island 161 41.6928 -90.3071 +US 61244 East Moline Illinois IL Rock Island 161 41.5118 -90.4321 +US 61256 Hampton Illinois IL Rock Island 161 41.5589 -90.4011 +US 61257 Hillsdale Illinois IL Rock Island 161 41.5929 -90.2263 +US 61259 Illinois City Illinois IL Rock Island 161 41.3892 -90.8925 +US 61264 Milan Illinois IL Rock Island 161 41.4262 -90.5739 +US 61265 Moline Illinois IL Rock Island 161 41.4906 -90.498 +US 61266 Moline Illinois IL Rock Island 161 41.5549 -90.616 +US 61275 Port Byron Illinois IL Rock Island 161 41.6013 -90.3263 +US 61278 Rapids City Illinois IL Rock Island 161 41.5859 -90.3432 +US 61279 Reynolds Illinois IL Rock Island 161 41.3277 -90.6384 +US 61282 Silvis Illinois IL Rock Island 161 41.5007 -90.4126 +US 61284 Taylor Ridge Illinois IL Rock Island 161 41.3828 -90.734 +US 61299 Rock Island Illinois IL Rock Island 161 41.5203 -90.5416 +US 62059 Lovejoy Illinois IL St. Clair 163 38.44 -89.9835 +US 62071 National Stock Yards Illinois IL St. Clair 163 38.6516 -90.1639 +US 62201 East Saint Louis Illinois IL St. Clair 163 38.6427 -90.1387 +US 62202 East Saint Louis Illinois IL St. Clair 163 38.6163 -90.1591 +US 62203 East Saint Louis Illinois IL St. Clair 163 38.5992 -90.0744 +US 62204 East Saint Louis Illinois IL St. Clair 163 38.6308 -90.095 +US 62205 East Saint Louis Illinois IL St. Clair 163 38.6149 -90.1275 +US 62206 East Saint Louis Illinois IL St. Clair 163 38.5514 -90.1544 +US 62207 East Saint Louis Illinois IL St. Clair 163 38.587 -90.1278 +US 62208 Fairview Heights Illinois IL St. Clair 163 38.596 -90.0071 +US 62220 Belleville Illinois IL St. Clair 163 38.5127 -89.9847 +US 62221 Belleville Illinois IL St. Clair 163 38.5396 -89.9583 +US 62222 Belleville Illinois IL St. Clair 163 38.44 -89.9835 +US 62223 Belleville Illinois IL St. Clair 163 38.5456 -90.0378 +US 62224 Mascoutah Illinois IL St. Clair 163 38.44 -89.9835 +US 62225 Scott Air Force Base Illinois IL St. Clair 163 38.5432 -89.859 +US 62226 Belleville Illinois IL St. Clair 163 38.5352 -90.0006 +US 62232 Caseyville Illinois IL St. Clair 163 38.6345 -90.0135 +US 62239 Dupo Illinois IL St. Clair 163 38.5257 -90.1874 +US 62240 East Carondelet Illinois IL St. Clair 163 38.5349 -90.2208 +US 62243 Freeburg Illinois IL St. Clair 163 38.408 -89.9181 +US 62254 Lebanon Illinois IL St. Clair 163 38.6053 -89.7992 +US 62255 Lenzburg Illinois IL St. Clair 163 38.295 -89.7922 +US 62257 Marissa Illinois IL St. Clair 163 38.2455 -89.7501 +US 62258 Mascoutah Illinois IL St. Clair 163 38.4745 -89.7877 +US 62260 Millstadt Illinois IL St. Clair 163 38.4443 -90.0888 +US 62264 New Athens Illinois IL St. Clair 163 38.316 -89.8728 +US 62269 O Fallon Illinois IL St. Clair 163 38.5718 -89.8957 +US 62282 Saint Libory Illinois IL St. Clair 163 38.3632 -89.7139 +US 62285 Smithton Illinois IL St. Clair 163 38.4231 -89.9896 +US 62289 Summerfield Illinois IL St. Clair 163 38.5967 -89.7512 +US 62917 Carrier Mills Illinois IL Saline 165 37.6803 -88.6199 +US 62930 Eldorado Illinois IL Saline 165 37.8139 -88.4434 +US 62935 Galatia Illinois IL Saline 165 37.8274 -88.6235 +US 62946 Harrisburg Illinois IL Saline 165 37.7257 -88.544 +US 62965 Muddy Illinois IL Saline 165 37.802 -88.5487 +US 62977 Raleigh Illinois IL Saline 165 37.8256 -88.5324 +US 62987 Stonefort Illinois IL Saline 165 37.6432 -88.6228 +US 62515 Buffalo Illinois IL Sangamon 167 39.8499 -89.3879 +US 62520 Dawson Illinois IL Sangamon 167 39.8563 -89.4603 +US 62530 Divernon Illinois IL Sangamon 167 39.5692 -89.6626 +US 62536 Glenarm Illinois IL Sangamon 167 39.6327 -89.6581 +US 62539 Illiopolis Illinois IL Sangamon 167 39.8499 -89.2513 +US 62545 Mechanicsburg Illinois IL Sangamon 167 39.7778 -89.4064 +US 62558 Pawnee Illinois IL Sangamon 167 39.6086 -89.5678 +US 62561 Riverton Illinois IL Sangamon 167 39.8663 -89.5087 +US 62563 Rochester Illinois IL Sangamon 167 39.7182 -89.5649 +US 62615 Auburn Illinois IL Sangamon 167 39.5918 -89.744 +US 62625 Cantrall Illinois IL Sangamon 167 39.9169 -89.6891 +US 62629 Chatham Illinois IL Sangamon 167 39.6737 -89.7112 +US 62661 Loami Illinois IL Sangamon 167 39.6704 -89.8588 +US 62662 Lowder Illinois IL Sangamon 167 39.7495 -89.606 +US 62670 New Berlin Illinois IL Sangamon 167 39.7681 -89.855 +US 62677 Pleasant Plains Illinois IL Sangamon 167 39.8331 -89.8686 +US 62684 Sherman Illinois IL Sangamon 167 39.9121 -89.5877 +US 62689 Thayer Illinois IL Sangamon 167 39.5394 -89.7621 +US 62693 Williamsville Illinois IL Sangamon 167 39.9304 -89.5342 +US 62701 Springfield Illinois IL Sangamon 167 39.8 -89.6495 +US 62702 Springfield Illinois IL Sangamon 167 39.8317 -89.6465 +US 62703 Springfield Illinois IL Sangamon 167 39.7622 -89.6275 +US 62704 Springfield Illinois IL Sangamon 167 39.7725 -89.6889 +US 62705 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62706 Springfield Illinois IL Sangamon 167 39.7989 -89.6534 +US 62707 Springfield Illinois IL Sangamon 167 39.8544 -89.6544 +US 62708 Springfield Illinois IL Sangamon 167 39.8061 -89.5864 +US 62709 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62711 Springfield Illinois IL Sangamon County 167 39.7655 -89.7293 +US 62712 Springfield Illinois IL Sangamon County 167 39.7533 -89.58 +US 62713 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62715 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62716 Springfield Illinois IL Sangamon 167 39.8482 -89.5364 +US 62718 Springfield Illinois IL Sangamon 167 39.778 -89.6466 +US 62719 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62720 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62721 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62722 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62723 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62726 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62736 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62739 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62746 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62756 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62757 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62761 Springfield Illinois IL Sangamon 167 39.8524 -89.541 +US 62762 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62763 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62764 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62765 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62766 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62767 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62769 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62776 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62777 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62781 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62786 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62791 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62794 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 62796 Springfield Illinois IL Sangamon 167 39.7495 -89.606 +US 61452 Littleton Illinois IL Schuyler 169 40.2339 -90.619 +US 62319 Camden Illinois IL Schuyler 169 40.1511 -90.7544 +US 62344 Huntsville Illinois IL Schuyler 169 40.1544 -90.8531 +US 62624 Browning Illinois IL Schuyler 169 40.1316 -90.5566 +US 62639 Frederick Illinois IL Schuyler 169 40.1316 -90.5566 +US 62681 Rushville Illinois IL Schuyler 169 40.1133 -90.5432 +US 62610 Alsey Illinois IL Scott 171 39.552 -90.3862 +US 62621 Bluffs Illinois IL Scott 171 39.7296 -90.5313 +US 62663 Manchester Illinois IL Scott 171 39.5405 -90.3317 +US 62694 Winchester Illinois IL Scott 171 39.6266 -90.4664 +US 61957 Windsor Illinois IL Shelby 173 39.4302 -88.5857 +US 62422 Cowden Illinois IL Shelby 173 39.2326 -88.8868 +US 62431 Herrick Illinois IL Shelby 173 39.2245 -88.9812 +US 62438 Lakewood Illinois IL Shelby 173 39.3134 -88.8715 +US 62444 Mode Illinois IL Shelby 173 39.4346 -88.8053 +US 62462 Sigel Illinois IL Shelby 173 39.2176 -88.4803 +US 62463 Stewardson Illinois IL Shelby 173 39.272 -88.6319 +US 62465 Strasburg Illinois IL Shelby 173 39.3641 -88.6279 +US 62534 Findlay Illinois IL Shelby 173 39.5193 -88.7468 +US 62550 Moweaqua Illinois IL Shelby 173 39.5751 -88.8895 +US 62553 Oconee Illinois IL Shelby 173 39.2884 -89.0836 +US 62565 Shelbyville Illinois IL Shelby 173 39.458 -88.8058 +US 62571 Tower Hill Illinois IL Shelby 173 39.39 -88.9597 +US 62574 Findlay Illinois IL Shelby County 173 39.4788 -88.8615 +US 61421 Bradford Illinois IL Stark 175 41.1532 -89.6521 +US 61426 Castleton Illinois IL Stark 175 41.1183 -89.7071 +US 61449 La Fayette Illinois IL Stark 175 41.1095 -89.9575 +US 61479 Speer Illinois IL Stark 175 40.9872 -89.652 +US 61483 Toulon Illinois IL Stark 175 41.1009 -89.8606 +US 61491 Wyoming Illinois IL Stark 175 41.0599 -89.7782 +US 61559 Princeville Illinois IL Stark 175 40.9093 -89.7723 +US 61013 Cedarville Illinois IL Stephenson 177 42.3761 -89.6365 +US 61018 Dakota Illinois IL Stephenson 177 42.4031 -89.5468 +US 61019 Davis Illinois IL Stephenson 177 42.4422 -89.4067 +US 61027 Eleroy Illinois IL Stephenson 177 42.332 -89.7612 +US 61032 Freeport Illinois IL Stephenson 177 42.2991 -89.6345 +US 61039 German Valley Illinois IL Stephenson 177 42.2176 -89.4712 +US 61044 Kent Illinois IL Stephenson 177 42.3155 -89.9195 +US 61048 Lena Illinois IL Stephenson 177 42.3791 -89.8253 +US 61050 Mc Connell Illinois IL Stephenson 177 42.4281 -89.7643 +US 61060 Orangeville Illinois IL Stephenson 177 42.4728 -89.6448 +US 61062 Pearl City Illinois IL Stephenson 177 42.261 -89.8393 +US 61067 Ridott Illinois IL Stephenson 177 42.2996 -89.4627 +US 61070 Rock City Illinois IL Stephenson 177 42.4103 -89.4759 +US 61076 Scioto Mills Illinois IL Stephenson 177 42.3554 -89.6679 +US 61089 Winslow Illinois IL Stephenson 177 42.4838 -89.806 +US 61534 Green Valley Illinois IL Tazewell 179 40.4198 -89.6549 +US 61535 Groveland Illinois IL Tazewell 179 40.601 -89.5571 +US 61550 Morton Illinois IL Tazewell 179 40.6148 -89.4604 +US 61554 Pekin Illinois IL Tazewell 179 40.5674 -89.6243 +US 61555 Pekin Illinois IL Tazewell 179 40.5607 -89.6502 +US 61558 Pekin Illinois IL Tazewell 179 40.5545 -89.61 +US 61564 South Pekin Illinois IL Tazewell 179 40.4948 -89.6546 +US 61568 Tremont Illinois IL Tazewell 179 40.5053 -89.4833 +US 61571 Washington Illinois IL Tazewell 179 40.7034 -89.4194 +US 61610 Creve Coeur Illinois IL Tazewell 179 40.6428 -89.5988 +US 61611 East Peoria Illinois IL Tazewell 179 40.6731 -89.5514 +US 61721 Armington Illinois IL Tazewell 179 40.3613 -89.3231 +US 61733 Deer Creek Illinois IL Tazewell 179 40.6224 -89.3323 +US 61734 Delavan Illinois IL Tazewell 179 40.369 -89.5321 +US 61747 Hopedale Illinois IL Tazewell 179 40.4273 -89.4214 +US 61755 Mackinaw Illinois IL Tazewell 179 40.5396 -89.3458 +US 61759 Minier Illinois IL Tazewell 179 40.4359 -89.3165 +US 62905 Alto Pass Illinois IL Union 181 37.5681 -89.3172 +US 62906 Anna Illinois IL Union 181 37.4668 -89.2207 +US 62920 Cobden Illinois IL Union 181 37.5424 -89.2457 +US 62926 Dongola Illinois IL Union 181 37.3712 -89.1349 +US 62952 Jonesboro Illinois IL Union 181 37.4461 -89.2915 +US 62961 Millcreek Illinois IL Union 181 37.3409 -89.2542 +US 62998 Wolf Lake Illinois IL Union 181 37.512 -89.4408 +US 60932 East Lynn Illinois IL Vermilion 183 40.4633 -87.8056 +US 60942 Hoopeston Illinois IL Vermilion 183 40.4639 -87.6662 +US 60960 Rankin Illinois IL Vermilion 183 40.4559 -87.8884 +US 60963 Rossville Illinois IL Vermilion 183 40.3625 -87.6692 +US 61810 Allerton Illinois IL Vermilion 183 39.9188 -87.9312 +US 61811 Alvin Illinois IL Vermilion 183 40.3007 -87.608 +US 61812 Armstrong Illinois IL Vermilion 183 40.2175 -87.8943 +US 61814 Bismarck Illinois IL Vermilion 183 40.2552 -87.6138 +US 61817 Catlin Illinois IL Vermilion 183 40.0699 -87.7113 +US 61831 Collison Illinois IL Vermilion 183 40.2207 -87.7987 +US 61832 Danville Illinois IL Vermilion 183 40.137 -87.6217 +US 61833 Tilton Illinois IL Vermilion 183 40.0964 -87.644 +US 61834 Danville Illinois IL Vermilion 183 40.1602 -87.6729 +US 61841 Fairmount Illinois IL Vermilion 183 40.0373 -87.8365 +US 61844 Fithian Illinois IL Vermilion 183 40.1192 -87.8797 +US 61846 Georgetown Illinois IL Vermilion 183 39.9792 -87.6365 +US 61848 Henning Illinois IL Vermilion 183 40.304 -87.7007 +US 61850 Indianola Illinois IL Vermilion 183 39.9268 -87.7388 +US 61857 Muncie Illinois IL Vermilion 183 40.1165 -87.8447 +US 61858 Oakwood Illinois IL Vermilion 183 40.1167 -87.7825 +US 61865 Potomac Illinois IL Vermilion 183 40.309 -87.8232 +US 61870 Ridge Farm Illinois IL Vermilion 183 39.9155 -87.6346 +US 61876 Sidell Illinois IL Vermilion 183 39.911 -87.8248 +US 61883 Westville Illinois IL Vermilion 183 40.0451 -87.636 +US 62410 Allendale Illinois IL Wabash 185 38.5232 -87.7219 +US 62811 Bellmont Illinois IL Wabash 185 38.3845 -87.9081 +US 62852 Keensburg Illinois IL Wabash 185 38.3514 -87.8661 +US 62855 Lancaster Illinois IL Wabash 185 38.4034 -87.8187 +US 62863 Mount Carmel Illinois IL Wabash 185 38.4147 -87.7911 +US 61417 Berwick Illinois IL Warren 187 40.7799 -90.5059 +US 61423 Cameron Illinois IL Warren 187 40.889 -90.5001 +US 61435 Gerlaw Illinois IL Warren 187 40.9863 -90.5491 +US 61447 Kirkwood Illinois IL Warren 187 40.8638 -90.7457 +US 61453 Little York Illinois IL Warren 187 41.0153 -90.7364 +US 61462 Monmouth Illinois IL Warren 187 40.9107 -90.6448 +US 61473 Roseville Illinois IL Warren 187 40.7238 -90.6514 +US 61478 Smithshire Illinois IL Warren 187 40.7579 -90.7606 +US 62214 Addieville Illinois IL Washington 189 38.3815 -89.5794 +US 62263 Nashville Illinois IL Washington 189 38.3352 -89.3841 +US 62268 Oakdale Illinois IL Washington 189 38.2573 -89.596 +US 62271 Okawville Illinois IL Washington 189 38.4319 -89.523 +US 62803 Hoyleton Illinois IL Washington 189 38.4455 -89.3069 +US 62808 Ashley Illinois IL Washington 189 38.306 -89.2311 +US 62831 Du Bois Illinois IL Washington 189 38.2526 -89.2042 +US 62848 Irvington Illinois IL Washington 189 38.4366 -89.1648 +US 62876 Radom Illinois IL Washington 189 38.2607 -89.1989 +US 62877 Richview Illinois IL Washington 189 38.4082 -89.1756 +US 62446 Mount Erie Illinois IL Wayne 191 38.5222 -88.2185 +US 62809 Barnhill Illinois IL Wayne 191 38.2781 -88.3508 +US 62823 Cisne Illinois IL Wayne 191 38.5138 -88.4045 +US 62837 Fairfield Illinois IL Wayne 191 38.3782 -88.3593 +US 62842 Geff Illinois IL Wayne 191 38.4413 -88.4144 +US 62843 Golden Gate Illinois IL Wayne 191 38.3645 -88.2075 +US 62850 Johnsonville Illinois IL Wayne 191 38.5256 -88.5887 +US 62851 Keenes Illinois IL Wayne 191 38.3691 -88.6481 +US 62878 Rinard Illinois IL Wayne 191 38.5806 -88.4641 +US 62886 Sims Illinois IL Wayne 191 38.3923 -88.5306 +US 62895 Wayne City Illinois IL Wayne 191 38.3328 -88.5833 +US 62820 Burnt Prairie Illinois IL White 193 38.2082 -88.2147 +US 62821 Carmi Illinois IL White 193 38.0808 -88.167 +US 62827 Crossville Illinois IL White 193 38.166 -88.0595 +US 62834 Emma Illinois IL White 193 37.9762 -88.1202 +US 62835 Enfield Illinois IL White 193 38.0927 -88.3325 +US 62844 Grayville Illinois IL White 193 38.2627 -88.0035 +US 62845 Herald Illinois IL White 193 38.0739 -88.1427 +US 62861 Maunie Illinois IL White 193 38.0364 -88.0759 +US 62862 Mill Shoals Illinois IL White 193 38.2447 -88.3338 +US 62869 Norris City Illinois IL White 193 37.9773 -88.3243 +US 62887 Springerton Illinois IL White 193 38.1699 -88.3726 +US 61017 Coleta Illinois IL Whiteside 195 41.903 -89.8043 +US 61037 Galt Illinois IL Whiteside 195 41.7865 -89.761 +US 61071 Rock Falls Illinois IL Whiteside 195 41.7665 -89.6925 +US 61081 Sterling Illinois IL Whiteside 195 41.8055 -89.7054 +US 61230 Albany Illinois IL Whiteside 195 41.7659 -90.2081 +US 61243 Deer Grove Illinois IL Whiteside 195 41.6316 -89.6972 +US 61250 Erie Illinois IL Whiteside 195 41.656 -90.0843 +US 61251 Fenton Illinois IL Whiteside 195 41.7285 -90.0457 +US 61252 Fulton Illinois IL Whiteside 195 41.8522 -90.1507 +US 61261 Lyndon Illinois IL Whiteside 195 41.7199 -89.9169 +US 61270 Morrison Illinois IL Whiteside 195 41.8167 -89.969 +US 61277 Prophetstown Illinois IL Whiteside 195 41.6312 -89.9467 +US 61283 Tampico Illinois IL Whiteside 195 41.6522 -89.7948 +US 60401 Beecher Illinois IL Will 197 41.3444 -87.6115 +US 60403 Crest Hill Illinois IL Will County 197 41.8397 -87.7905 +US 60404 Shorewood Illinois IL Will County 197 41.5076 -88.2169 +US 60408 Braidwood Illinois IL Will 197 41.2657 -88.2231 +US 60410 Channahon Illinois IL Will 197 41.4347 -88.2138 +US 60417 Crete Illinois IL Will 197 41.439 -87.6027 +US 60421 Elwood Illinois IL Will 197 41.426 -88.0864 +US 60423 Frankfort Illinois IL Will 197 41.5094 -87.8248 +US 60428 Markham Illinois IL Will County 197 41.5998 -87.6906 +US 60431 Joliet Illinois IL Will 197 41.4712 -87.9391 +US 60432 Joliet Illinois IL Will 197 41.5378 -88.0572 +US 60433 Joliet Illinois IL Will 197 41.5119 -88.0569 +US 60434 Joliet Illinois IL Will 197 41.5254 -88.0842 +US 60435 Joliet Illinois IL Will 197 41.5454 -88.1299 +US 60436 Joliet Illinois IL Will 197 41.4884 -88.1572 +US 60440 Bolingbrook Illinois IL Will 197 41.6976 -88.0873 +US 60441 Lockport Illinois IL Will 197 41.593 -88.0507 +US 60442 Manhattan Illinois IL Will 197 41.4289 -87.9771 +US 60446 Romeoville Illinois IL Will 197 41.6404 -88.0696 +US 60448 Mokena Illinois IL Will 197 41.5342 -87.8911 +US 60449 Monee Illinois IL Will 197 41.4191 -87.7748 +US 60451 New Lenox Illinois IL Will 197 41.5067 -87.9631 +US 60468 Peotone Illinois IL Will 197 41.3361 -87.7897 +US 60481 Wilmington Illinois IL Will 197 41.284 -88.1231 +US 60484 University Park Illinois IL Will 197 41.4418 -87.7101 5 +US 60487 Tinley Park Illinois IL Will County 197 41.5636 -87.8342 +US 60490 Bolingbrook Illinois IL Will 197 41.679 -88.1403 +US 60491 Homer Glen Illinois IL Will County 197 41.6028 -87.9599 +US 60503 Aurora Illinois IL Will County 197 41.7199 -88.2548 +US 60544 Plainfield Illinois IL Will 197 41.6009 -88.1994 +US 60564 Naperville Illinois IL Will 197 41.704 -88.1952 +US 60585 Plainfield Illinois IL Will County 197 41.6558 -88.2203 +US 60586 Plainfield Illinois IL Will County 197 41.5642 -88.2178 +US 62841 Freeman Spur Illinois IL Williamson 199 37.8031 -89.0092 +US 62915 Cambria Illinois IL Williamson 199 37.7847 -89.1181 +US 62918 Carterville Illinois IL Williamson 199 37.7748 -89.0978 +US 62921 Colp Illinois IL Williamson 199 37.8057 -89.076 +US 62922 Creal Springs Illinois IL Williamson 199 37.6284 -88.8807 +US 62933 Energy Illinois IL Williamson 199 37.7726 -89.025 +US 62948 Herrin Illinois IL Williamson 199 37.8019 -89.0232 +US 62949 Hurst Illinois IL Williamson 199 37.8366 -89.1424 +US 62951 Johnston City Illinois IL Williamson 199 37.8245 -88.9209 +US 62959 Marion Illinois IL Williamson 199 37.7257 -88.9294 +US 62974 Pittsburg Illinois IL Williamson 199 37.8047 -88.8081 +US 61016 Cherry Valley Illinois IL Winnebago 201 42.2206 -88.9619 +US 61024 Durand Illinois IL Winnebago 201 42.4337 -89.3094 +US 61063 Pecatonica Illinois IL Winnebago 201 42.3051 -89.3472 +US 61072 Rockton Illinois IL Winnebago 201 42.4544 -89.0887 +US 61073 Roscoe Illinois IL Winnebago 201 42.4217 -88.9943 +US 61077 Seward Illinois IL Winnebago 201 42.2368 -89.358 +US 61079 Shirland Illinois IL Winnebago 201 42.3254 -89.1705 +US 61080 South Beloit Illinois IL Winnebago 201 42.4837 -89.0298 +US 61088 Winnebago Illinois IL Winnebago 201 42.2727 -89.2373 +US 61101 Rockford Illinois IL Winnebago 201 42.2922 -89.1161 +US 61102 Rockford Illinois IL Winnebago 201 42.2547 -89.1247 +US 61103 Rockford Illinois IL Winnebago 201 42.301 -89.0833 +US 61104 Rockford Illinois IL Winnebago 201 42.2554 -89.0768 +US 61105 Rockford Illinois IL Winnebago 201 42.3254 -89.1705 +US 61106 Rockford Illinois IL Winnebago 201 42.3254 -89.1705 +US 61107 Rockford Illinois IL Winnebago 201 42.2786 -89.0361 +US 61108 Rockford Illinois IL Winnebago 201 42.2514 -89.0235 +US 61109 Rockford Illinois IL Winnebago 201 42.2166 -89.0512 +US 61110 Rockford Illinois IL Winnebago 201 42.3254 -89.1705 +US 61111 Loves Park Illinois IL Winnebago 201 42.3295 -89.0335 +US 61112 Rockford Illinois IL Winnebago 201 42.2456 -88.9704 +US 61114 Rockford Illinois IL Winnebago 201 42.3185 -88.9972 +US 61115 Machesney Park Illinois IL Winnebago 201 42.3545 -89.0397 +US 61125 Rockford Illinois IL Winnebago 201 42.3254 -89.1705 +US 61126 Rockford Illinois IL Winnebago 201 42.3254 -89.1705 +US 61130 Loves Park Illinois IL Winnebago 201 42.3254 -89.1705 +US 61131 Loves Park Illinois IL Winnebago 201 42.3254 -89.1705 +US 61132 Loves Park Illinois IL Winnebago 201 42.3254 -89.1705 +US 61516 Benson Illinois IL Woodford 203 40.8306 -89.1165 +US 61530 Eureka Illinois IL Woodford 203 40.7152 -89.2706 +US 61545 Lowpoint Illinois IL Woodford 203 40.8793 -89.3703 +US 61548 Metamora Illinois IL Woodford 203 40.7844 -89.4309 +US 61561 Roanoke Illinois IL Woodford 203 40.7956 -89.2093 +US 61729 Congerville Illinois IL Woodford 203 40.6208 -89.1994 +US 61738 El Paso Illinois IL Woodford 203 40.7389 -89.012 +US 61742 Goodfield Illinois IL Woodford 203 40.6329 -89.2727 +US 61760 Minonk Illinois IL Woodford 203 40.8985 -89.0349 +US 61771 Secor Illinois IL Woodford 203 40.7224 -89.1271 +US 46711 Berne Indiana IN Adams 001 40.6716 -84.9343 +US 46733 Decatur Indiana IN Adams 001 40.8273 -84.9314 +US 46740 Geneva Indiana IN Adams 001 40.6071 -84.9621 +US 46769 Linn Grove Indiana IN Adams 001 40.7453 -84.9379 +US 46772 Monroe Indiana IN Adams 001 40.7005 -84.8441 +US 46780 Pleasant Mills Indiana IN Adams 001 40.7453 -84.9379 +US 46782 Preble Indiana IN Adams 001 40.832 -85.0054 +US 46704 Arcola Indiana IN Allen 003 41.1038 -85.2925 +US 46741 Grabill Indiana IN Allen 003 41.2108 -84.9406 +US 46743 Harlan Indiana IN Allen 003 41.2285 -84.8386 +US 46745 Hoagland Indiana IN Allen 003 40.9524 -85.0075 +US 46748 Huntertown Indiana IN Allen 003 41.2391 -85.1677 +US 46765 Leo Indiana IN Allen 003 41.2249 -85.0301 +US 46773 Monroeville Indiana IN Allen 003 40.987 -84.8937 +US 46774 New Haven Indiana IN Allen 003 41.0699 -85.0117 +US 46797 Woodburn Indiana IN Allen 003 41.1361 -84.8929 +US 46798 Yoder Indiana IN Allen 003 40.9371 -85.1958 +US 46799 Zanesville Indiana IN Allen 003 40.9188 -85.2824 +US 46801 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46802 Fort Wayne Indiana IN Allen 003 41.0707 -85.1543 +US 46803 Fort Wayne Indiana IN Allen 003 41.0695 -85.1074 +US 46804 Fort Wayne Indiana IN Allen 003 41.0508 -85.256 +US 46805 Fort Wayne Indiana IN Allen 003 41.0977 -85.1189 +US 46806 Fort Wayne Indiana IN Allen 003 41.048 -85.1135 +US 46807 Fort Wayne Indiana IN Allen 003 41.0491 -85.1462 +US 46808 Fort Wayne Indiana IN Allen 003 41.0939 -85.1621 +US 46809 Fort Wayne Indiana IN Allen 003 41.0254 -85.1834 +US 46814 Fort Wayne Indiana IN Allen 003 41.0456 -85.3058 +US 46815 Fort Wayne Indiana IN Allen 003 41.1053 -85.0624 +US 46816 Fort Wayne Indiana IN Allen 003 41.0165 -85.0976 +US 46818 Fort Wayne Indiana IN Allen 003 41.1468 -85.2067 +US 46819 Fort Wayne Indiana IN Allen 003 41.0052 -85.1527 +US 46825 Fort Wayne Indiana IN Allen 003 41.1465 -85.1232 +US 46835 Fort Wayne Indiana IN Allen 003 41.1371 -85.0685 +US 46845 Fort Wayne Indiana IN Allen 003 41.1958 -85.1191 +US 46850 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46851 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46852 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46853 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46854 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46855 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46856 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46857 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46858 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46859 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46860 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46861 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46862 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46863 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46864 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46865 Fort Wayne Indiana IN Allen 003 41.1263 -85.0907 +US 46866 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46867 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46868 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46869 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46885 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46895 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46896 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46897 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46898 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46899 Fort Wayne Indiana IN Allen 003 41.0938 -85.0707 +US 46399 Lowell Indiana IN Bartholomew County 005 41.2947 -87.4132 +US 47201 Columbus Indiana IN Bartholomew 005 39.2055 -85.9317 +US 47202 Columbus Indiana IN Bartholomew 005 39.193 -85.8852 +US 47203 Columbus Indiana IN Bartholomew 005 39.2301 -85.8855 +US 47226 Clifford Indiana IN Bartholomew 005 39.2826 -85.8685 +US 47232 Elizabethtown Indiana IN Bartholomew 005 39.1243 -85.8153 +US 47236 Grammer Indiana IN Bartholomew 005 39.1522 -85.7261 +US 47244 Hartsville Indiana IN Bartholomew 005 39.2186 -85.7176 +US 47246 Hope Indiana IN Bartholomew 005 39.2573 -85.7665 +US 47247 Jonesville Indiana IN Bartholomew 005 39.0593 -85.8886 +US 47280 Taylorsville Indiana IN Bartholomew 005 39.2953 -85.9498 +US 47917 Ambia Indiana IN Benton 007 40.4793 -87.4796 +US 47921 Boswell Indiana IN Benton 007 40.518 -87.3789 +US 47942 Earl Park Indiana IN Benton 007 40.6945 -87.4232 +US 47944 Fowler Indiana IN Benton 007 40.6255 -87.309 +US 47970 Otterbein Indiana IN Benton 007 40.517 -87.1225 +US 47971 Oxford Indiana IN Benton 007 40.5217 -87.2526 +US 47976 Earl Park Indiana IN Benton 007 40.6063 -87.31 +US 47984 Talbot Indiana IN Benton 007 40.6063 -87.31 +US 47986 Templeton Indiana IN Benton 007 40.5055 -87.207 +US 47348 Hartford City Indiana IN Blackford 009 40.4541 -85.3758 +US 47359 Montpelier Indiana IN Blackford 009 40.5577 -85.2513 +US 46052 Lebanon Indiana IN Boone 011 40.0449 -86.4641 +US 46071 Thorntown Indiana IN Boone 011 40.1133 -86.5898 +US 46075 Whitestown Indiana IN Boone 011 40 -86.3507 +US 46077 Zionsville Indiana IN Boone 011 39.9561 -86.2767 +US 46102 Advance Indiana IN Boone 011 39.9956 -86.6198 +US 46147 Jamestown Indiana IN Boone 011 39.9579 -86.6236 +US 46160 Morgantown Indiana IN Brown 013 39.3628 -86.2803 +US 47435 Helmsburg Indiana IN Brown 013 39.1963 -86.2302 +US 47448 Nashville Indiana IN Brown 013 39.2367 -86.222 +US 46913 Bringhurst Indiana IN Carroll 015 40.5163 -86.5204 +US 46915 Burlington Indiana IN Carroll 015 40.4777 -86.3866 +US 46916 Burrows Indiana IN Carroll 015 40.5843 -86.574 +US 46917 Camden Indiana IN Carroll 015 40.5996 -86.5152 +US 46920 Cutler Indiana IN Carroll 015 40.4785 -86.4462 +US 46923 Delphi Indiana IN Carroll 015 40.5734 -86.6788 +US 46929 Flora Indiana IN Carroll 015 40.5445 -86.5016 +US 46977 Rockfield Indiana IN Carroll 015 40.5843 -86.574 +US 47997 Yeoman Indiana IN Carroll 015 40.6677 -86.7236 +US 46932 Galveston Indiana IN Cass 017 40.5862 -86.1972 +US 46942 Lake Cicott Indiana IN Cass 017 40.7361 -86.3734 +US 46944 Landess Indiana IN Cass County 017 40.6108 -85.5611 +US 46947 Logansport Indiana IN Cass 017 40.7604 -86.3599 +US 46950 Lucerne Indiana IN Cass 017 40.8614 -86.4077 +US 46961 New Waverly Indiana IN Cass 017 40.7621 -86.1936 +US 46967 Onward Indiana IN Cass 017 40.6947 -86.1951 +US 46978 Royal Center Indiana IN Cass 017 40.8645 -86.5078 +US 46988 Twelve Mile Indiana IN Cass 017 40.8547 -86.2126 +US 46994 Walton Indiana IN Cass 017 40.6772 -86.2805 +US 46998 Young America Indiana IN Cass 017 40.866 -86.226 +US 47104 Bethlehem Indiana IN Clark 019 38.5399 -85.4218 +US 47106 Borden Indiana IN Clark 019 38.4362 -85.9215 +US 47111 Charlestown Indiana IN Clark 019 38.4568 -85.6606 +US 47126 Henryville Indiana IN Clark 019 38.5398 -85.7734 +US 47129 Clarksville Indiana IN Clark 019 38.311 -85.7645 +US 47130 Jeffersonville Indiana IN Clark 019 38.3078 -85.7359 +US 47131 Jeffersonville Indiana IN Clark 019 38.437 -85.705 +US 47132 Jeffersonville Indiana IN Clark 019 38.2868 -85.7321 +US 47133 Jeffersonville Indiana IN Clark 019 38.2868 -85.7321 +US 47134 Jeffersonville Indiana IN Clark 019 38.2868 -85.7321 +US 47141 Marysville Indiana IN Clark 019 38.5545 -85.6308 +US 47143 Memphis Indiana IN Clark 019 38.4642 -85.7775 +US 47144 Jeffersonville Indiana IN Clark 019 38.2868 -85.7321 +US 47147 Nabb Indiana IN Clark 019 38.6128 -85.5217 +US 47162 New Washington Indiana IN Clark 019 38.5575 -85.4599 +US 47163 Otisco Indiana IN Clark 019 38.5423 -85.6647 +US 47172 Sellersburg Indiana IN Clark 019 38.4046 -85.788 +US 47177 Underwood Indiana IN Clark 019 38.5848 -85.7486 +US 47190 Jeffersonville Indiana IN Clark 019 38.437 -85.705 +US 47199 Jeffersonville Indiana IN Clark 019 38.2868 -85.7321 +US 47833 Bowling Green Indiana IN Clay 021 39.3812 -87.0052 +US 47834 Brazil Indiana IN Clay 021 39.521 -87.1278 +US 47837 Carbon Indiana IN Clay 021 39.5913 -87.1132 +US 47840 Centerpoint Indiana IN Clay 021 39.391 -87.0935 +US 47841 Clay City Indiana IN Clay 021 39.2727 -87.1082 +US 47845 Coalmont Indiana IN Clay 021 39.3875 -87.0904 +US 47846 Cory Indiana IN Clay 021 39.3435 -87.1956 +US 47853 Harmony Indiana IN Clay 021 39.5372 -87.0729 +US 47857 Knightsville Indiana IN Clay 021 39.5269 -87.0869 +US 47868 Poland Indiana IN Clay 021 39.4462 -86.9631 +US 47881 Staunton Indiana IN Clay 021 39.4917 -87.1867 +US 46035 Colfax Indiana IN Clinton 023 40.1956 -86.6593 +US 46039 Forest Indiana IN Clinton 023 40.3757 -86.3201 +US 46041 Frankfort Indiana IN Clinton 023 40.3044 -86.4689 +US 46046 Hillisburg Indiana IN Clinton 023 40.3045 -86.469 +US 46050 Kirklin Indiana IN Clinton 023 40.2031 -86.3324 +US 46057 Michigantown Indiana IN Clinton 023 40.3108 -86.3753 +US 46058 Mulberry Indiana IN Clinton 023 40.3433 -86.6613 +US 46065 Rossville Indiana IN Clinton 023 40.4109 -86.608 +US 46067 Sedalia Indiana IN Clinton 023 40.3045 -86.469 +US 47116 Eckerty Indiana IN Crawford 025 38.3185 -86.6059 +US 47118 English Indiana IN Crawford 025 38.3258 -86.4429 +US 47123 Grantsburg Indiana IN Crawford 025 38.282 -86.4843 +US 47137 Leavenworth Indiana IN Crawford 025 38.1865 -86.3838 +US 47140 Marengo Indiana IN Crawford 025 38.3736 -86.3578 +US 47145 Milltown Indiana IN Crawford 025 38.3445 -86.3003 +US 47174 Sulphur Indiana IN Crawford 025 38.2259 -86.4908 +US 47175 Taswell Indiana IN Crawford 025 38.3463 -86.5387 +US 47501 Washington Indiana IN Daviess 027 38.6536 -87.1707 +US 47519 Cannelburg Indiana IN Daviess 027 38.6973 -87.0918 +US 47529 Elnora Indiana IN Daviess 027 38.8772 -87.085 +US 47558 Montgomery Indiana IN Daviess 027 38.6521 -87.0476 +US 47562 Odon Indiana IN Daviess 027 38.8187 -86.9752 +US 47568 Plainville Indiana IN Daviess 027 38.7915 -87.1578 +US 47001 Aurora Indiana IN Dearborn 029 39.0719 -84.9452 +US 47018 Dillsboro Indiana IN Dearborn 029 38.9962 -85.055 +US 47022 Guilford Indiana IN Dearborn 029 39.2059 -84.9616 +US 47025 Lawrenceburg Indiana IN Dearborn 029 39.1401 -84.8658 +US 47032 Moores Hill Indiana IN Dearborn 029 39.0945 -85.0638 +US 47060 West Harrison Indiana IN Dearborn 029 39.3008 -84.881 +US 47222 Burney Indiana IN Decatur County 031 39.3046 -85.5318 +US 47225 Clarksburg Indiana IN Decatur 031 39.4241 -85.3477 +US 47240 Greensburg Indiana IN Decatur 031 39.2998 -85.4918 +US 47261 Millhousen Indiana IN Decatur 031 39.292 -85.4918 +US 47263 New Point Indiana IN Decatur 031 39.3083 -85.3297 +US 47272 Saint Paul Indiana IN Decatur 031 39.4277 -85.5994 +US 47283 Westport Indiana IN Decatur 031 39.1749 -85.5856 +US 46705 Ashley Indiana IN DeKalb 033 41.5347 -85.0504 +US 46706 Auburn Indiana IN DeKalb 033 41.359 -85.0468 +US 46721 Butler Indiana IN DeKalb 033 41.4287 -84.8787 +US 46730 Corunna Indiana IN DeKalb 033 41.4504 -85.137 +US 46738 Garrett Indiana IN DeKalb 033 41.3482 -85.1347 +US 46785 Saint Joe Indiana IN DeKalb 033 41.324 -84.9043 +US 46788 Spencerville Indiana IN DeKalb 033 41.2696 -84.9398 +US 46793 Waterloo Indiana IN DeKalb 033 41.4402 -85.0221 +US 47302 Muncie Indiana IN Delaware 035 40.1684 -85.3807 +US 47303 Muncie Indiana IN Delaware 035 40.218 -85.379 +US 47304 Muncie Indiana IN Delaware 035 40.2111 -85.4291 +US 47305 Muncie Indiana IN Delaware 035 40.1933 -85.3862 +US 47306 Muncie Indiana IN Delaware 035 40.2023 -85.4082 +US 47307 Muncie Indiana IN Delaware 035 40.1621 -85.4428 +US 47308 Muncie Indiana IN Delaware 035 40.2279 -85.3967 +US 47320 Albany Indiana IN Delaware 035 40.292 -85.258 +US 47334 Daleville Indiana IN Delaware 035 40.1257 -85.511 +US 47338 Eaton Indiana IN Delaware 035 40.3377 -85.3544 +US 47342 Gaston Indiana IN Delaware 035 40.2948 -85.4898 +US 47367 Oakville Indiana IN Delaware 035 40.0792 -85.39 +US 47383 Selma Indiana IN Delaware 035 40.1693 -85.2738 +US 47396 Yorktown Indiana IN Delaware 035 40.1836 -85.496 +US 47513 Birdseye Indiana IN Dubois 037 38.3006 -86.7102 +US 47521 Celestine Indiana IN Dubois 037 38.3878 -86.7568 +US 47527 Dubois Indiana IN Dubois 037 38.4728 -86.7832 +US 47532 Ferdinand Indiana IN Dubois 037 38.2336 -86.8607 +US 47541 Holland Indiana IN Dubois 037 38.2385 -87.0088 +US 47542 Huntingburg Indiana IN Dubois 037 38.2979 -86.9533 +US 47545 Ireland Indiana IN Dubois 037 38.4137 -87.0009 +US 47546 Jasper Indiana IN Dubois 037 38.3604 -86.9295 +US 47547 Jasper Indiana IN Dubois 037 38.3647 -86.8762 +US 47549 Jasper Indiana IN Dubois 037 38.3647 -86.8762 +US 47575 Saint Anthony Indiana IN Dubois 037 38.3211 -86.8234 +US 47580 Schnellville Indiana IN Dubois 037 38.3414 -86.7565 +US 46507 Bristol Indiana IN Elkhart 039 41.7169 -85.8262 +US 46514 Elkhart Indiana IN Elkhart 039 41.7101 -85.9729 +US 46515 Elkhart Indiana IN Elkhart 039 41.6414 -85.9383 +US 46516 Elkhart Indiana IN Elkhart 039 41.6763 -85.9621 +US 46517 Elkhart Indiana IN Elkhart 039 41.6469 -85.9728 +US 46526 Goshen Indiana IN Elkhart 039 41.5848 -85.8581 +US 46527 Goshen Indiana IN Elkhart 039 41.5977 -85.8581 +US 46528 Goshen Indiana IN Elkhart 039 41.6248 -85.8391 +US 46540 Middlebury Indiana IN Elkhart 039 41.6754 -85.7114 +US 46543 Millersburg Indiana IN Elkhart 039 41.5335 -85.7072 +US 46550 Nappanee Indiana IN Elkhart 039 41.4493 -85.9945 +US 46553 New Paris Indiana IN Elkhart 039 41.4917 -85.8338 +US 46573 Wakarusa Indiana IN Elkhart 039 41.5401 -86.0205 +US 46133 Glenwood Indiana IN Fayette 041 39.6124 -85.2735 +US 47322 Bentonville Indiana IN Fayette 041 39.657 -85.168 +US 47331 Connersville Indiana IN Fayette 041 39.6435 -85.1464 +US 47119 Floyds Knobs Indiana IN Floyd 043 38.351 -85.8996 +US 47122 Georgetown Indiana IN Floyd 043 38.3029 -85.9617 +US 47124 Greenville Indiana IN Floyd 043 38.3535 -86.0083 +US 47146 Mount Saint Francis Indiana IN Floyd 043 38.2985 -85.897 +US 47150 New Albany Indiana IN Floyd 043 38.3089 -85.8221 +US 47151 New Albany Indiana IN Floyd 043 38.2985 -85.897 +US 47918 Attica Indiana IN Fountain 045 40.2811 -87.2241 +US 47932 Covington Indiana IN Fountain 045 40.1326 -87.3819 +US 47949 Hillsboro Indiana IN Fountain 045 40.0835 -87.1545 +US 47952 Kingman Indiana IN Fountain 045 40.0174 -87.2569 +US 47958 Mellott Indiana IN Fountain 045 40.1641 -87.1475 +US 47969 Newtown Indiana IN Fountain 045 40.2035 -87.147 +US 47985 Tangier Indiana IN Fountain County 045 39.9206 -87.3416 +US 47987 Veedersburg Indiana IN Fountain 045 40.1186 -87.2602 +US 47988 Wallace Indiana IN Fountain 045 39.9865 -87.1477 +US 47003 West College Corner Indiana IN Franklin 047 39.5159 -84.863 +US 47010 Bath Indiana IN Franklin 047 39.4992 -84.836 +US 47012 Brookville Indiana IN Franklin 047 39.4213 -84.9994 +US 47016 Cedar Grove Indiana IN Franklin 047 39.3459 -84.8924 +US 47024 Laurel Indiana IN Franklin 047 39.4916 -85.208 +US 47030 Metamora Indiana IN Franklin 047 39.4288 -85.1504 +US 47035 New Trenton Indiana IN Franklin 047 39.31 -84.9007 +US 47036 Oldenburg Indiana IN Franklin 047 39.3862 -85.2385 +US 46910 Akron Indiana IN Fulton 049 41.0389 -86.0395 +US 46912 Athens Indiana IN Fulton 049 41.041 -86.2069 +US 46922 Delong Indiana IN Fulton 049 41.041 -86.2069 +US 46931 Fulton Indiana IN Fulton 049 40.9484 -86.2658 +US 46935 Grass Creek Indiana IN Fulton 049 41.041 -86.2069 +US 46939 Kewanna Indiana IN Fulton 049 41.0087 -86.4061 +US 46945 Leiters Ford Indiana IN Fulton 049 41.041 -86.2069 +US 46975 Rochester Indiana IN Fulton 049 41.0655 -86.231 +US 47639 Haubstadt Indiana IN Gibson 051 38.1895 -87.5798 +US 47640 Hazleton Indiana IN Gibson 051 38.4623 -87.4983 +US 47647 Buckskin Indiana IN Gibson 051 38.3495 -87.6518 +US 47648 Fort Branch Indiana IN Gibson 051 38.2471 -87.5682 +US 47649 Francisco Indiana IN Gibson 051 38.333 -87.4536 +US 47654 Mackey Indiana IN Gibson 051 38.3495 -87.6518 +US 47660 Oakland City Indiana IN Gibson 051 38.3361 -87.3519 +US 47665 Owensville Indiana IN Gibson 051 38.2744 -87.7091 +US 47666 Patoka Indiana IN Gibson 051 38.4143 -87.5958 +US 47670 Princeton Indiana IN Gibson 051 38.3525 -87.5691 +US 47671 Princeton Indiana IN Gibson County 051 38.3551 -87.5674 +US 47683 Somerville Indiana IN Gibson 051 38.2811 -87.3773 +US 46928 Fairmount Indiana IN Grant 053 40.4188 -85.6713 +US 46930 Fowlerton Indiana IN Grant 053 40.4099 -85.571 +US 46933 Gas City Indiana IN Grant 053 40.4879 -85.6055 +US 46938 Jonesboro Indiana IN Grant 053 40.4815 -85.6365 +US 46952 Marion Indiana IN Grant 053 40.5743 -85.6741 +US 46953 Marion Indiana IN Grant 053 40.5359 -85.6616 +US 46957 Matthews Indiana IN Grant 053 40.3898 -85.4766 +US 46983 Sims Indiana IN Grant County 053 40.5006 -85.856 +US 46986 Swayzee Indiana IN Grant 053 40.5112 -85.8265 +US 46987 Sweetser Indiana IN Grant 053 40.5647 -85.7656 +US 46989 Upland Indiana IN Grant 053 40.4548 -85.499 +US 46991 Van Buren Indiana IN Grant 053 40.6174 -85.5148 +US 47424 Bloomfield Indiana IN Greene 055 39.0295 -86.8675 +US 47438 Jasonville Indiana IN Greene 055 39.1723 -87.2023 +US 47439 Koleen Indiana IN Greene 055 39.0371 -86.9616 +US 47441 Linton Indiana IN Greene 055 39.0461 -87.1723 +US 47443 Lyons Indiana IN Greene 055 38.9717 -87.1016 +US 47445 Midland Indiana IN Greene 055 39.0371 -86.9616 +US 47449 Newberry Indiana IN Greene 055 38.9229 -87.0081 +US 47453 Owensburg Indiana IN Greene 055 38.9253 -86.7742 +US 47457 Scotland Indiana IN Greene 055 39.0371 -86.9616 +US 47459 Solsberry Indiana IN Greene 055 39.119 -86.7378 +US 47465 Switz City Indiana IN Greene 055 39.0369 -87.0502 +US 47471 Worthington Indiana IN Greene 055 39.123 -86.9991 +US 46030 Arcadia Indiana IN Hamilton 057 40.1776 -86.0409 +US 46031 Atlanta Indiana IN Hamilton 057 40.2103 -86.019 +US 46032 Carmel Indiana IN Hamilton 057 39.9712 -86.1245 +US 46033 Carmel Indiana IN Hamilton 057 39.9744 -86.0829 +US 46034 Cicero Indiana IN Hamilton 057 40.1298 -86.0381 +US 46037 Fishers Indiana IN Hamilton County 057 39.9559 -85.9601 +US 46038 Fishers Indiana IN Hamilton 057 39.9575 -86.023 +US 46060 Noblesville Indiana IN Hamilton 057 40.0563 -86.0163 +US 46061 Noblesville Indiana IN Hamilton 057 40.0725 -86.0523 +US 46062 Noblesville Indiana IN Hamilton County 057 40.0617 -86.0555 +US 46069 Sheridan Indiana IN Hamilton 057 40.1104 -86.2367 +US 46074 Westfield Indiana IN Hamilton 057 40.0489 -86.1499 +US 46082 Carmel Indiana IN Hamilton 057 40.0725 -86.0523 +US 46085 Fishers Indiana IN 057 39.9559 -85.9601 +US 46262 Indianapolis Indiana IN Hamilton County 057 39.8269 -86.2374 +US 46280 Indianapolis Indiana IN Hamilton 057 39.9416 -86.1157 +US 46290 Indianapolis Indiana IN Hamilton 057 39.9347 -86.1633 +US 46040 Fortville Indiana IN Hancock 059 39.9228 -85.8186 +US 46055 Mc Cordsville Indiana IN Hancock 059 39.9018 -85.9095 +US 46117 Charlottesville Indiana IN Hancock 059 39.8388 -85.6258 +US 46129 Finly Indiana IN Hancock 059 39.8215 -85.7652 +US 46140 Greenfield Indiana IN Hancock 059 39.7902 -85.8141 +US 46154 Maxwell Indiana IN Hancock 059 39.8568 -85.7684 +US 46163 New Palestine Indiana IN Hancock 059 39.7233 -85.9052 +US 46186 Wilkinson Indiana IN Hancock 059 39.8957 -85.6144 +US 46187 Wilkinson Indiana IN Hancock County 059 39.8857 -85.6088 +US 47107 Bradford Indiana IN Harrison 061 38.1903 -86.1153 +US 47110 Central Indiana IN Harrison 061 38.097 -86.1723 +US 47112 Corydon Indiana IN Harrison 061 38.2189 -86.1145 +US 47114 Crandall Indiana IN Harrison 061 38.2883 -86.0718 +US 47115 Depauw Indiana IN Harrison 061 38.3361 -86.2109 +US 47117 Elizabeth Indiana IN Harrison 061 38.1244 -85.9589 +US 47135 Laconia Indiana IN Harrison 061 38.0527 -86.0844 +US 47136 Lanesville Indiana IN Harrison 061 38.2448 -85.9593 +US 47142 Mauckport Indiana IN Harrison 061 38.0437 -86.1846 +US 47160 New Middletown Indiana IN Harrison 061 38.1645 -86.051 +US 47161 New Salisbury Indiana IN Harrison 061 38.3399 -86.0887 +US 47164 Palmyra Indiana IN Harrison 061 38.4105 -86.0888 +US 47166 Ramsey Indiana IN Harrison 061 38.3034 -86.169 +US 46103 Amo Indiana IN Hendricks 063 39.6886 -86.6136 +US 46112 Brownsburg Indiana IN Hendricks 063 39.8466 -86.3869 +US 46114 Cartersburg Indiana IN Hendricks 063 39.7624 -86.5104 +US 46118 Clayton Indiana IN Hendricks 063 39.6682 -86.4959 +US 46121 Coatesville Indiana IN Hendricks 063 39.693 -86.6314 +US 46122 Danville Indiana IN Hendricks 063 39.7628 -86.5343 +US 46123 Avon Indiana IN Hendricks 063 39.7629 -86.3996 +US 46149 Lizton Indiana IN Hendricks 063 39.8843 -86.5429 +US 46165 North Salem Indiana IN Hendricks 063 39.8671 -86.6388 +US 46167 Pittsboro Indiana IN Hendricks 063 39.8615 -86.4645 +US 46168 Plainfield Indiana IN Hendricks 063 39.6893 -86.3919 +US 46180 Stilesville Indiana IN Hendricks 063 39.6391 -86.6182 +US 46148 Knightstown Indiana IN Henry 065 39.806 -85.5261 +US 47337 Dunreith Indiana IN Henry 065 39.8031 -85.4371 +US 47344 Greensboro Indiana IN Henry 065 39.8789 -85.464 +US 47351 Kennard Indiana IN Henry 065 39.904 -85.5205 +US 47352 Lewisville Indiana IN Henry 065 39.8283 -85.3621 +US 47356 Middletown Indiana IN Henry 065 40.0475 -85.5368 +US 47360 Mooreland Indiana IN Henry 065 39.9941 -85.2581 +US 47361 Mount Summit Indiana IN Henry 065 40.0042 -85.3851 +US 47362 New Castle Indiana IN Henry 065 39.9208 -85.3663 +US 47366 New Lisbon Indiana IN Henry 065 39.9318 -85.3986 +US 47384 Shirley Indiana IN Henry 065 39.9158 -85.5182 +US 47385 Spiceland Indiana IN Henry 065 39.8271 -85.445 +US 47386 Springport Indiana IN Henry 065 40.0527 -85.3833 +US 47387 Straughn Indiana IN Henry 065 39.8319 -85.2724 +US 47388 Sulphur Springs Indiana IN Henry 065 40.006 -85.4434 +US 46901 Kokomo Indiana IN Howard 067 40.4988 -86.1453 +US 46902 Kokomo Indiana IN Howard 067 40.4509 -86.1352 +US 46903 Kokomo Indiana IN Howard 067 40.4696 -86.1189 +US 46904 Kokomo Indiana IN Howard 067 40.4696 -86.1189 +US 46936 Greentown Indiana IN Howard 067 40.4791 -85.9582 +US 46937 Hemlock Indiana IN Howard 067 40.4187 -86.0181 +US 46965 Oakford Indiana IN Howard 067 40.4127 -86.1015 +US 46979 Russiaville Indiana IN Howard 067 40.4151 -86.2675 +US 46995 West Middleton Indiana IN Howard 067 40.4421 -86.2155 +US 46702 Andrews Indiana IN Huntington 069 40.8618 -85.6067 +US 46713 Bippus Indiana IN Huntington 069 40.8292 -85.4892 +US 46750 Huntington Indiana IN Huntington 069 40.8811 -85.5054 +US 46770 Markle Indiana IN Huntington 069 40.8331 -85.319 +US 46783 Roanoke Indiana IN Huntington 069 40.96 -85.3526 +US 46792 Warren Indiana IN Huntington 069 40.6886 -85.4183 +US 47220 Brownstown Indiana IN Jackson 071 38.8836 -86.0486 +US 47228 Cortland Indiana IN Jackson 071 38.9745 -85.9628 +US 47229 Crothersville Indiana IN Jackson 071 38.8067 -85.847 +US 47235 Freetown Indiana IN Jackson 071 38.9957 -86.1241 +US 47249 Kurtz Indiana IN Jackson 071 38.898 -86.0567 +US 47260 Medora Indiana IN Jackson 071 38.8255 -86.1897 +US 47264 Norman Indiana IN Jackson 071 38.93 -86.2079 +US 47274 Seymour Indiana IN Jackson 071 38.9571 -85.8825 +US 47281 Vallonia Indiana IN Jackson 071 38.8174 -86.069 +US 46310 Demotte Indiana IN Jasper 073 41.1713 -87.2491 +US 46380 Tefft Indiana IN Jasper 073 41.1948 -86.9686 +US 46392 Wheatfield Indiana IN Jasper 073 41.1779 -87.0699 +US 47943 Fair Oaks Indiana IN Jasper 073 41.0769 -87.2088 +US 47977 Remington Indiana IN Jasper 073 40.7667 -87.1599 +US 47978 Rensselaer Indiana IN Jasper 073 40.9948 -87.1037 +US 47326 Bryant Indiana IN Jay 075 40.5446 -84.9117 +US 47336 Dunkirk Indiana IN Jay 075 40.3883 -85.2255 +US 47369 Pennville Indiana IN Jay 075 40.5082 -85.1492 +US 47371 Portland Indiana IN Jay 075 40.4306 -84.9928 +US 47373 Redkey Indiana IN Jay 075 40.3265 -85.162 +US 47381 Salamonia Indiana IN Jay 075 40.3818 -84.8669 +US 47224 Canaan Indiana IN Jefferson 077 38.887 -85.2213 +US 47230 Deputy Indiana IN Jefferson 077 38.7759 -85.6304 +US 47231 Dupont Indiana IN Jefferson 077 38.8905 -85.5092 +US 47243 Hanover Indiana IN Jefferson 077 38.7138 -85.4763 +US 47250 Madison Indiana IN Jefferson 077 38.7649 -85.407 +US 47223 Butlerville Indiana IN Jennings 079 39.0491 -85.4789 +US 47227 Commiskey Indiana IN Jennings 079 38.8526 -85.6434 +US 47245 Hayden Indiana IN Jennings 079 39.0013 -85.6199 +US 47262 Nebraska Indiana IN Jennings 079 39.0013 -85.6199 +US 47265 North Vernon Indiana IN Jennings 079 39.0018 -85.6272 +US 47270 Paris Crossing Indiana IN Jennings 079 38.8558 -85.7487 +US 47273 Scipio Indiana IN Jennings 079 39.0665 -85.7129 +US 47282 Vernon Indiana IN Jennings 079 38.9825 -85.6166 +US 46106 Bargersville Indiana IN Johnson 081 39.5 -86.1797 +US 46124 Edinburgh Indiana IN Johnson 081 39.3626 -85.9707 +US 46131 Franklin Indiana IN Johnson 081 39.4854 -86.0608 +US 46142 Greenwood Indiana IN Johnson 081 39.6224 -86.149 +US 46143 Greenwood Indiana IN Johnson 081 39.596 -86.1309 +US 46162 Needham Indiana IN Johnson 081 39.5605 -85.9656 +US 46164 Nineveh Indiana IN Johnson 081 39.3656 -86.0976 +US 46181 Trafalgar Indiana IN Johnson 081 39.3696 -86.1838 +US 46184 Whiteland Indiana IN Johnson 081 39.5611 -86.0723 +US 47512 Bicknell Indiana IN Knox 083 38.7727 -87.3137 +US 47516 Bruceville Indiana IN Knox 083 38.7563 -87.4313 +US 47524 Decker Indiana IN Knox 083 38.5076 -87.5537 +US 47528 Edwardsport Indiana IN Knox 083 38.8106 -87.2519 +US 47530 Emison Indiana IN Knox County 083 38.8517 -87.4151 +US 47535 Freelandville Indiana IN Knox 083 38.8627 -87.3127 +US 47557 Monroe City Indiana IN Knox 083 38.6001 -87.3641 +US 47561 Oaktown Indiana IN Knox 083 38.8579 -87.3879 +US 47573 Ragsdale Indiana IN Knox 083 38.7441 -87.3214 +US 47578 Sandborn Indiana IN Knox 083 38.8817 -87.2025 +US 47587 Tobinsport Indiana IN Knox County 083 37.8747 -86.6341 +US 47591 Vincennes Indiana IN Knox 083 38.6734 -87.5098 +US 47596 Westphalia Indiana IN Knox 083 38.7916 -87.3318 +US 47597 Wheatland Indiana IN Knox 083 38.6671 -87.3062 +US 46502 Atwood Indiana IN Kosciusko 085 41.254 -85.9697 +US 46508 Burket Indiana IN Kosciusko 085 41.1547 -85.9693 +US 46510 Claypool Indiana IN Kosciusko 085 41.1165 -85.8686 +US 46524 Etna Green Indiana IN Kosciusko 085 41.2918 -86.035 +US 46538 Leesburg Indiana IN Kosciusko 085 41.3266 -85.816 +US 46539 Mentone Indiana IN Kosciusko 085 41.1615 -86.0299 +US 46542 Milford Indiana IN Kosciusko 085 41.4011 -85.8554 +US 46555 North Webster Indiana IN Kosciusko 085 41.3326 -85.7103 +US 46562 Pierceton Indiana IN Kosciusko 085 41.2124 -85.7061 +US 46566 Sidney Indiana IN Kosciusko 085 41.1379 -85.8888 +US 46567 Syracuse Indiana IN Kosciusko 085 41.4065 -85.7184 +US 46580 Warsaw Indiana IN Kosciusko 085 41.2438 -85.8508 +US 46581 Warsaw Indiana IN Kosciusko 085 41.2394 -85.8643 +US 46582 Warsaw Indiana IN Kosciusko 085 41.2842 -85.8547 +US 46590 Winona Lake Indiana IN Kosciusko 085 41.211 -85.8305 +US 46982 Silver Lake Indiana IN Kosciusko 085 41.0743 -85.8792 +US 46565 Shipshewana Indiana IN LaGrange 087 41.6633 -85.5932 +US 46571 Topeka Indiana IN LaGrange 087 41.5634 -85.5317 +US 46746 Howe Indiana IN LaGrange 087 41.7286 -85.4727 +US 46761 Lagrange Indiana IN LaGrange 087 41.652 -85.404 +US 46771 Mongo Indiana IN LaGrange 087 41.6655 -85.2676 +US 46786 South Milford Indiana IN LaGrange 087 41.5369 -85.3192 +US 46789 Stroh Indiana IN LaGrange 087 41.5835 -85.1992 +US 46795 Wolcottville Indiana IN LaGrange 087 41.557 -85.315 +US 46303 Cedar Lake Indiana IN Lake 089 41.3713 -87.4764 +US 46307 Crown Point Indiana IN Lake 089 41.4236 -87.3556 +US 46308 Crown Point Indiana IN Lake 089 41.4615 -87.3728 +US 46311 Dyer Indiana IN Lake 089 41.492 -87.5108 +US 46312 East Chicago Indiana IN Lake 089 41.6349 -87.4627 +US 46319 Griffith Indiana IN Lake 089 41.5335 -87.4228 +US 46320 Hammond Indiana IN Lake 089 41.6099 -87.5079 +US 46321 Munster Indiana IN Lake 089 41.5544 -87.5011 +US 46322 Highland Indiana IN Lake 089 41.55 -87.4569 +US 46323 Hammond Indiana IN Lake 089 41.5878 -87.4532 +US 46324 Hammond Indiana IN Lake 089 41.584 -87.5034 +US 46325 Hammond Indiana IN Lake 089 41.4615 -87.3728 +US 46327 Hammond Indiana IN Lake 089 41.6327 -87.5113 +US 46342 Hobart Indiana IN Lake 089 41.5263 -87.2525 +US 46355 Leroy Indiana IN Lake 089 41.3594 -87.2708 +US 46356 Lowell Indiana IN Lake 089 41.2845 -87.4191 +US 46373 Saint John Indiana IN Lake 089 41.4495 -87.4764 +US 46375 Schererville Indiana IN Lake 089 41.4922 -87.4605 +US 46376 Schneider Indiana IN Lake 089 41.19 -87.4779 +US 46377 Shelby Indiana IN Lake 089 41.1917 -87.3398 +US 46394 Whiting Indiana IN Lake 089 41.6787 -87.5005 +US 46401 Gary Indiana IN Lake 089 41.5907 -87.3199 +US 46402 Gary Indiana IN Lake 089 41.5997 -87.3385 +US 46403 Gary Indiana IN Lake 089 41.6036 -87.259 +US 46404 Gary Indiana IN Lake 089 41.5899 -87.3732 +US 46405 Lake Station Indiana IN Lake 089 41.5686 -87.2622 +US 46406 Gary Indiana IN Lake 089 41.5878 -87.4062 +US 46407 Gary Indiana IN Lake 089 41.5804 -87.335 +US 46408 Gary Indiana IN Lake 089 41.5422 -87.3588 +US 46409 Gary Indiana IN Lake 089 41.5412 -87.3271 +US 46410 Merrillville Indiana IN Lake 089 41.4957 -87.3509 +US 46411 Merrillville Indiana IN Lake 089 41.4615 -87.3728 +US 46340 Hanna Indiana IN LaPorte 091 41.4088 -86.7759 +US 46345 Kingsbury Indiana IN LaPorte 091 41.526 -86.6997 +US 46346 Kingsford Heights Indiana IN LaPorte 091 41.4802 -86.6919 +US 46348 La Crosse Indiana IN LaPorte 091 41.3157 -86.8682 +US 46350 La Porte Indiana IN LaPorte 091 41.5994 -86.7077 +US 46352 La Porte Indiana IN LaPorte 091 41.499 -86.7099 +US 46360 Michigan City Indiana IN LaPorte 091 41.698 -86.8699 +US 46361 Michigan City Indiana IN LaPorte 091 41.7035 -86.9151 +US 46365 Mill Creek Indiana IN LaPorte 091 41.6091 -86.544 +US 46371 Rolling Prairie Indiana IN LaPorte 091 41.7229 -86.5841 +US 46382 Union Mills Indiana IN LaPorte 091 41.4602 -86.8355 +US 46390 Wanatah Indiana IN LaPorte 091 41.3845 -86.8764 +US 46391 Westville Indiana IN LaPorte 091 41.5365 -86.9013 +US 47420 Avoca Indiana IN Lawrence 093 38.9132 -86.5489 +US 47421 Bedford Indiana IN Lawrence 093 38.8729 -86.4871 +US 47430 Fort Ritner Indiana IN Lawrence 093 38.8395 -86.4794 +US 47436 Heltonville Indiana IN Lawrence 093 38.948 -86.3703 +US 47437 Huron Indiana IN Lawrence 093 38.7222 -86.671 +US 47446 Mitchell Indiana IN Lawrence 093 38.7426 -86.4761 +US 47451 Oolitic Indiana IN Lawrence 093 38.8938 -86.5246 +US 47462 Springville Indiana IN Lawrence 093 38.9507 -86.6139 +US 47467 Tunnelton Indiana IN Lawrence 093 38.8395 -86.4794 +US 47470 Williams Indiana IN Lawrence 093 38.7735 -86.6285 +US 46001 Alexandria Indiana IN Madison 095 40.2561 -85.6681 +US 46011 Anderson Indiana IN Madison 095 40.1146 -85.7253 +US 46012 Anderson Indiana IN Madison 095 40.1309 -85.6536 +US 46013 Anderson Indiana IN Madison 095 40.0619 -85.6801 +US 46014 Anderson Indiana IN Madison 095 40.1617 -85.7197 +US 46015 Anderson Indiana IN Madison 095 40.0938 -85.6578 +US 46016 Anderson Indiana IN Madison 095 40.0988 -85.6846 +US 46017 Anderson Indiana IN Madison 095 40.0742 -85.6069 +US 46018 Anderson Indiana IN Madison 095 40.1617 -85.7197 +US 46036 Elwood Indiana IN Madison 095 40.2803 -85.8391 +US 46044 Frankton Indiana IN Madison 095 40.2285 -85.7791 +US 46048 Ingalls Indiana IN Madison 095 39.9573 -85.7981 +US 46051 Lapel Indiana IN Madison 095 40.0854 -85.844 +US 46056 Markleville Indiana IN Madison 095 39.9944 -85.6227 +US 46063 Orestes Indiana IN Madison 095 40.2715 -85.7281 +US 46064 Pendleton Indiana IN Madison 095 39.9792 -85.7946 +US 46070 Summitville Indiana IN Madison 095 40.3398 -85.6403 +US 46107 Beech Grove Indiana IN Marion 097 39.7154 -86.0933 +US 46113 Camby Indiana IN Marion 097 39.6405 -86.3118 +US 46183 West Newton Indiana IN Marion 097 39.6483 -86.2851 +US 46201 Indianapolis Indiana IN Marion 097 39.775 -86.1093 +US 46202 Indianapolis Indiana IN Marion 097 39.7851 -86.1595 +US 46203 Indianapolis Indiana IN Marion 097 39.743 -86.1179 +US 46204 Indianapolis Indiana IN Marion 097 39.772 -86.1535 +US 46205 Indianapolis Indiana IN Marion 097 39.8268 -86.1386 +US 46206 Indianapolis Indiana IN Marion 097 39.7613 -86.1613 +US 46207 Indianapolis Indiana IN Marion 097 39.7673 -86.1606 +US 46208 Indianapolis Indiana IN Marion 097 39.8299 -86.1794 +US 46209 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46211 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46214 Indianapolis Indiana IN Marion 097 39.7924 -86.2875 +US 46216 Indianapolis Indiana IN Marion 097 39.8647 -86.0136 +US 46217 Indianapolis Indiana IN Marion 097 39.6782 -86.1976 +US 46218 Indianapolis Indiana IN Marion 097 39.8082 -86.1014 +US 46219 Indianapolis Indiana IN Marion 097 39.7821 -86.0495 +US 46220 Indianapolis Indiana IN Marion 097 39.8647 -86.1181 +US 46221 Indianapolis Indiana IN Marion 097 39.7509 -86.1924 +US 46222 Indianapolis Indiana IN Marion 097 39.789 -86.2136 +US 46223 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46224 Indianapolis Indiana IN Marion 097 39.794 -86.2707 +US 46225 Indianapolis Indiana IN Marion 097 39.7406 -86.1569 +US 46226 Indianapolis Indiana IN Marion 097 39.8326 -86.0836 +US 46227 Indianapolis Indiana IN Marion 097 39.6789 -86.1302 +US 46228 Indianapolis Indiana IN Marion 097 39.8462 -86.1951 +US 46229 Indianapolis Indiana IN Marion 097 39.7886 -85.9779 +US 46230 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46231 Indianapolis Indiana IN Marion 097 39.7038 -86.3029 +US 46234 Indianapolis Indiana IN Marion 097 39.8088 -86.3163 +US 46235 Indianapolis Indiana IN Marion 097 39.8471 -85.9741 +US 46236 Indianapolis Indiana IN Marion 097 39.8689 -85.9765 +US 46237 Indianapolis Indiana IN Marion 097 39.673 -86.0757 +US 46239 Indianapolis Indiana IN Marion 097 39.7265 -86.0005 +US 46240 Indianapolis Indiana IN Marion 097 39.9069 -86.1238 +US 46241 Indianapolis Indiana IN Marion 097 39.7096 -86.2614 +US 46242 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46244 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46247 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46249 Indianapolis Indiana IN Marion 097 39.859 -86.0061 +US 46250 Indianapolis Indiana IN Marion 097 39.9048 -86.0673 +US 46251 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46253 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46254 Indianapolis Indiana IN Marion 097 39.849 -86.272 +US 46255 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46256 Indianapolis Indiana IN Marion 097 39.8977 -86.0094 +US 46259 Indianapolis Indiana IN Marion 097 39.667 -85.9981 +US 46260 Indianapolis Indiana IN Marion 097 39.8977 -86.1797 +US 46266 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46268 Indianapolis Indiana IN Marion 097 39.8682 -86.2123 +US 46274 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46275 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46277 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46278 Indianapolis Indiana IN Marion 097 39.8726 -86.2768 +US 46282 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46283 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46285 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46291 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46295 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46296 Indianapolis Indiana IN Marion County 097 39.796 -86.1495 +US 46298 Indianapolis Indiana IN Marion 097 39.7795 -86.1328 +US 46501 Argos Indiana IN Marshall 099 41.2308 -86.2506 +US 46504 Bourbon Indiana IN Marshall 099 41.3098 -86.1174 +US 46506 Bremen Indiana IN Marshall 099 41.4467 -86.1932 +US 46511 Culver Indiana IN Marshall 099 41.22 -86.4269 +US 46513 Donaldson Indiana IN Marshall 099 41.3619 -86.4443 +US 46537 Lapaz Indiana IN Marshall 099 41.4599 -86.3102 +US 46563 Plymouth Indiana IN Marshall 099 41.353 -86.3015 +US 46570 Tippecanoe Indiana IN Marshall 099 41.2166 -86.1095 +US 46572 Tyner Indiana IN Marshall 099 41.3255 -86.2606 +US 47522 Crane Indiana IN Martin 101 38.8949 -86.9002 +US 47553 Loogootee Indiana IN Martin 101 38.6629 -86.9137 +US 47581 Shoals Indiana IN Martin 101 38.6791 -86.7761 +US 46911 Amboy Indiana IN Miami 103 40.6105 -85.9497 +US 46914 Bunker Hill Indiana IN Miami 103 40.6423 -86.0961 +US 46919 Converse Indiana IN Miami 103 40.577 -85.8763 +US 46921 Deedsville Indiana IN Miami 103 40.9605 -86.1291 +US 46925 Denham Indiana IN Miami County 103 41.1519 -86.7135 +US 46926 Denver Indiana IN Miami 103 40.867 -86.0752 +US 46951 Macy Indiana IN Miami 103 40.9618 -86.1264 +US 46958 Mexico Indiana IN Miami 103 40.8224 -86.1162 +US 46959 Miami Indiana IN Miami 103 40.6147 -86.1064 +US 46970 Peru Indiana IN Miami 103 40.7492 -86.068 +US 46971 Grissom Arb Indiana IN Miami 103 40.6683 -86.1378 +US 46971 Grissom Afb Indiana IN Miami 103 40.781 -86.0164 +US 47401 Bloomington Indiana IN Monroe 105 39.1401 -86.5083 +US 47402 Bloomington Indiana IN Monroe 105 39.1732 -86.5015 +US 47403 Bloomington Indiana IN Monroe 105 39.1263 -86.5769 +US 47404 Bloomington Indiana IN Monroe 105 39.195 -86.5757 +US 47405 Bloomington Indiana IN Monroe 105 39.1682 -86.5186 +US 47406 Bloomington Indiana IN Monroe 105 39.1745 -86.5183 +US 47407 Bloomington Indiana IN Monroe 105 39.1732 -86.5015 +US 47408 Bloomington Indiana IN Monroe 105 39.2303 -86.4692 +US 47426 Clear Creek Indiana IN Monroe 105 39.1732 -86.5015 +US 47429 Ellettsville Indiana IN Monroe 105 39.2545 -86.6196 +US 47434 Harrodsburg Indiana IN Monroe 105 39.013 -86.5457 +US 47458 Smithville Indiana IN Monroe 105 39.1732 -86.5015 +US 47463 Stanford Indiana IN Monroe 105 39.0859 -86.6689 +US 47464 Stinesville Indiana IN Monroe 105 39.2998 -86.6482 +US 47468 Unionville Indiana IN Monroe 105 39.2514 -86.4189 +US 47490 Bloomington Indiana IN Monroe 105 39.1732 -86.5015 +US 47916 Alamo Indiana IN Montgomery 107 39.9836 -87.0554 +US 47933 Crawfordsville Indiana IN Montgomery 107 40.0325 -86.9074 +US 47934 Crawfordsville Indiana IN Montgomery 107 40.04 -86.8936 +US 47935 Crawfordsville Indiana IN Montgomery 107 40.04 -86.8936 +US 47936 Crawfordsville Indiana IN Montgomery 107 40.04 -86.8936 +US 47937 Crawfordsville Indiana IN Montgomery 107 40.04 -86.8936 +US 47938 Crawfordsville Indiana IN Montgomery 107 40.04 -86.8936 +US 47939 Crawfordsville Indiana IN Montgomery 107 40.04 -86.8936 +US 47940 Darlington Indiana IN Montgomery 107 40.1118 -86.7645 +US 47954 Ladoga Indiana IN Montgomery 107 39.9132 -86.8031 +US 47955 Linden Indiana IN Montgomery 107 40.1833 -86.8905 +US 47965 New Market Indiana IN Montgomery 107 39.9524 -86.9206 +US 47967 New Richmond Indiana IN Montgomery 107 40.1812 -86.9789 +US 47968 New Ross Indiana IN Montgomery 107 39.9883 -86.7528 +US 47989 Waveland Indiana IN Montgomery 107 39.902 -87.0178 +US 47990 Waynetown Indiana IN Montgomery 107 40.0858 -87.0512 +US 47994 Wingate Indiana IN Montgomery 107 40.1666 -87.0664 +US 46111 Brooklyn Indiana IN Morgan 109 39.5396 -86.3701 +US 46125 Eminence Indiana IN Morgan 109 39.5066 -86.6418 +US 46151 Martinsville Indiana IN Morgan 109 39.4776 -86.4668 +US 46157 Monrovia Indiana IN Morgan 109 39.5714 -86.4894 +US 46158 Mooresville Indiana IN Morgan 109 39.5915 -86.3642 +US 46166 Paragon Indiana IN Morgan 109 39.4042 -86.5779 +US 46349 Lake Village Indiana IN Newton 111 41.1387 -87.4454 +US 46372 Roselawn Indiana IN Newton 111 41.1434 -87.322 +US 46379 Sumava Resorts Indiana IN Newton 111 41.1671 -87.4335 +US 46381 Thayer Indiana IN Newton 111 41.1711 -87.3313 +US 47922 Brook Indiana IN Newton 111 40.8655 -87.3527 +US 47948 Goodland Indiana IN Newton 111 40.7669 -87.2999 +US 47951 Kentland Indiana IN Newton 111 40.7877 -87.4471 +US 47963 Morocco Indiana IN Newton 111 40.9645 -87.4187 +US 47964 Mount Ayr Indiana IN Newton 111 40.9521 -87.2986 +US 46701 Albion Indiana IN Noble 113 41.3482 -85.4142 +US 46710 Avilla Indiana IN Noble 113 41.3689 -85.2414 +US 46720 Brimfield Indiana IN Noble 113 41.3953 -85.4235 +US 46732 Cromwell Indiana IN Noble 113 41.3751 -85.6031 +US 46755 Kendallville Indiana IN Noble 113 41.4482 -85.2609 +US 46760 Kimmell Indiana IN Noble 113 41.3631 -85.5187 +US 46763 Laotto Indiana IN Noble 113 41.2991 -85.1901 +US 46767 Ligonier Indiana IN Noble 113 41.4662 -85.5927 +US 46784 Rome City Indiana IN Noble 113 41.4849 -85.3743 +US 46794 Wawaka Indiana IN Noble 113 41.4833 -85.4804 +US 46796 Wolflake Indiana IN Noble 113 41.3361 -85.5002 +US 47040 Rising Sun Indiana IN Ohio 115 38.9567 -84.8807 +US 47432 French Lick Indiana IN Orange 117 38.5324 -86.6196 +US 47452 Orleans Indiana IN Orange 117 38.6535 -86.4532 +US 47454 Paoli Indiana IN Orange 117 38.5507 -86.449 +US 47469 West Baden Springs Indiana IN Orange 117 38.6208 -86.5899 +US 47427 Coal City Indiana IN Owen 119 39.2573 -86.9883 +US 47431 Freedom Indiana IN Owen 119 39.2151 -86.85 +US 47433 Gosport Indiana IN Owen 119 39.345 -86.6583 +US 47455 Patricksburg Indiana IN Owen 119 39.3165 -86.9562 +US 47456 Quincy Indiana IN Owen 119 39.4429 -86.6696 +US 47460 Spencer Indiana IN Owen 119 39.2891 -86.7789 +US 47830 Bellmore Indiana IN Parke 121 39.7791 -87.2218 +US 47832 Bloomingdale Indiana IN Parke 121 39.8348 -87.256 +US 47836 Bridgeton Indiana IN Parke 121 39.7791 -87.2218 +US 47856 Judson Indiana IN Parke 121 39.7791 -87.2218 +US 47859 Marshall Indiana IN Parke 121 39.9062 -87.178 +US 47860 Mecca Indiana IN Parke 121 39.7219 -87.3303 +US 47862 Montezuma Indiana IN Parke 121 39.7961 -87.3607 +US 47872 Rockville Indiana IN Parke 121 39.7682 -87.1978 +US 47874 Rosedale Indiana IN Parke 121 39.6239 -87.3086 +US 47514 Branchville Indiana IN Perry 123 38.1572 -86.5859 +US 47515 Bristow Indiana IN Perry 123 38.1981 -86.6821 +US 47520 Cannelton Indiana IN Perry 123 37.9495 -86.7156 +US 47525 Derby Indiana IN Perry 123 38.0239 -86.577 +US 47551 Leopold Indiana IN Perry 123 38.1011 -86.6044 +US 47555 Magnet Indiana IN Perry County 123 38.0922 -86.4842 +US 47574 Rome Indiana IN Perry 123 37.9372 -86.534 +US 47576 Saint Croix Indiana IN Perry 123 38.1834 -86.6058 +US 47586 Tell City Indiana IN Perry 123 37.9655 -86.7457 +US 47564 Otwell Indiana IN Pike 125 38.4662 -87.0985 +US 47567 Petersburg Indiana IN Pike 125 38.4789 -87.2883 +US 47584 Spurgeon Indiana IN Pike 125 38.2638 -87.2305 +US 47585 Stendal Indiana IN Pike 125 38.2835 -87.1205 +US 47590 Velpen Indiana IN Pike 125 38.368 -87.099 +US 47598 Winslow Indiana IN Pike 125 38.364 -87.2223 +US 46301 Beverly Shores Indiana IN Porter 127 41.6838 -86.9752 +US 46302 Boone Grove Indiana IN Porter 127 41.3542 -87.1304 +US 46304 Chesterton Indiana IN Porter 127 41.6143 -87.047 +US 46341 Hebron Indiana IN Porter 127 41.3155 -87.2088 +US 46347 Kouts Indiana IN Porter 127 41.3091 -87.024 +US 46368 Portage Indiana IN Porter 127 41.5672 -87.1757 +US 46383 Valparaiso Indiana IN Porter 127 41.4547 -87.0656 +US 46384 Valparaiso Indiana IN Porter 127 41.4905 -87.0761 +US 46385 Valparaiso Indiana IN Porter 127 41.4706 -87.0783 +US 46393 Wheeler Indiana IN Porter 127 41.5116 -87.1792 +US 47612 Cynthiana Indiana IN Posey 129 38.193 -87.6992 +US 47616 Griffin Indiana IN Posey 129 38.2069 -87.9166 +US 47620 Mount Vernon Indiana IN Posey 129 37.9506 -87.8569 +US 47631 New Harmony Indiana IN Posey 129 38.1245 -87.9172 +US 47633 Poseyville Indiana IN Posey 129 38.172 -87.8027 +US 47638 Wadesville Indiana IN Posey 129 38.0828 -87.7543 +US 46960 Monterey Indiana IN Pulaski 131 41.1383 -86.5179 +US 46985 Star City Indiana IN Pulaski 131 40.9602 -86.5404 +US 46996 Winamac Indiana IN Pulaski 131 41.0562 -86.6307 +US 47946 Francesville Indiana IN Pulaski 131 40.9709 -86.8553 +US 47957 Medaryville Indiana IN Pulaski 131 41.0897 -86.8808 +US 46105 Bainbridge Indiana IN Putnam 133 39.7407 -86.7711 +US 46120 Cloverdale Indiana IN Putnam 133 39.5434 -86.814 +US 46128 Fillmore Indiana IN Putnam 133 39.6475 -86.7469 +US 46135 Greencastle Indiana IN Putnam 133 39.6495 -86.8686 +US 46170 Putnamville Indiana IN Putnam 133 39.6684 -86.8284 +US 46171 Reelsville Indiana IN Putnam 133 39.5464 -86.95 +US 46172 Roachdale Indiana IN Putnam 133 39.8325 -86.7902 +US 46175 Russellville Indiana IN Putnam 133 39.8366 -86.967 +US 47340 Farmland Indiana IN Randolph 135 40.1945 -85.1254 +US 47354 Losantville Indiana IN Randolph 135 40.0475 -85.2108 +US 47355 Lynn Indiana IN Randolph 135 40.0519 -84.93 +US 47358 Modoc Indiana IN Randolph 135 40.0582 -85.0919 +US 47368 Parker City Indiana IN Randolph 135 40.1938 -85.1963 +US 47380 Ridgeville Indiana IN Randolph 135 40.2804 -85.0371 +US 47382 Saratoga Indiana IN Randolph 135 40.2347 -84.9185 +US 47390 Union City Indiana IN Randolph 135 40.2024 -84.8268 +US 47394 Winchester Indiana IN Randolph 135 40.1696 -85.0044 +US 47006 Batesville Indiana IN Ripley 137 39.3001 -85.2221 +US 47017 Cross Plains Indiana IN Ripley 137 38.949 -85.2122 +US 47021 Friendship Indiana IN Ripley 137 38.9703 -85.1504 +US 47023 Holton Indiana IN Ripley 137 39.0498 -85.3739 +US 47031 Milan Indiana IN Ripley 137 39.1503 -85.1324 +US 47033 Morris Indiana IN Ripley 137 39.2814 -85.1739 +US 47034 Napoleon Indiana IN Ripley 137 39.2048 -85.327 +US 47037 Osgood Indiana IN Ripley 137 39.1573 -85.2938 +US 47039 Pierceville Indiana IN Ripley 137 39.1116 -85.2551 +US 47041 Sunman Indiana IN Ripley 137 39.2623 -85.1159 +US 47042 Versailles Indiana IN Ripley 137 39.0511 -85.2235 +US 46104 Arlington Indiana IN Rush 139 39.6488 -85.5828 +US 46115 Carthage Indiana IN Rush 139 39.7466 -85.5754 +US 46127 Falmouth Indiana IN Rush 139 39.729 -85.3331 +US 46146 Homer Indiana IN Rush 139 39.6199 -85.4655 +US 46150 Manilla Indiana IN Rush 139 39.5757 -85.6354 +US 46155 Mays Indiana IN Rush 139 39.7438 -85.4312 +US 46156 Milroy Indiana IN Rush 139 39.4955 -85.5044 +US 46173 Rushville Indiana IN Rush 139 39.6192 -85.4321 +US 46530 Granger Indiana IN St. Joseph 141 41.7427 -86.1411 +US 46536 Lakeville Indiana IN St. Joseph 141 41.5253 -86.2714 +US 46544 Mishawaka Indiana IN St. Joseph 141 41.6507 -86.1623 +US 46545 Mishawaka Indiana IN St. Joseph 141 41.6835 -86.1682 +US 46546 Mishawaka Indiana IN St. Joseph 141 41.6884 -86.1965 +US 46552 New Carlisle Indiana IN St. Joseph 141 41.7051 -86.4838 +US 46554 North Liberty Indiana IN St. Joseph 141 41.5425 -86.4133 +US 46556 Notre Dame Indiana IN St. Joseph 141 41.5968 -86.293 +US 46561 Osceola Indiana IN St. Joseph 141 41.6695 -86.087 +US 46574 Walkerton Indiana IN St. Joseph 141 41.4457 -86.451 +US 46595 Wyatt Indiana IN St. Joseph 141 41.5181 -86.1652 +US 46601 South Bend Indiana IN St. Joseph 141 41.6727 -86.2535 +US 46604 South Bend Indiana IN St. Joseph 141 41.6642 -86.2218 +US 46612 South Bend Indiana IN St. Joseph 141 41.6285 -86.2346 +US 46613 South Bend Indiana IN St. Joseph 141 41.6546 -86.2479 +US 46614 South Bend Indiana IN St. Joseph 141 41.6255 -86.2433 +US 46615 South Bend Indiana IN St. Joseph 141 41.6741 -86.2104 +US 46616 South Bend Indiana IN St. Joseph 141 41.6919 -86.2647 +US 46617 South Bend Indiana IN St. Joseph 141 41.685 -86.2351 +US 46619 South Bend Indiana IN St. Joseph 141 41.6674 -86.3153 +US 46620 South Bend Indiana IN St. Joseph 141 41.5968 -86.293 +US 46624 South Bend Indiana IN St. Joseph 141 41.7332 -86.2833 +US 46626 South Bend Indiana IN St. Joseph 141 41.6774 -86.2525 +US 46628 South Bend Indiana IN St. Joseph 141 41.7015 -86.2949 +US 46629 South Bend Indiana IN St. Joseph 141 41.6719 -86.2791 +US 46634 South Bend Indiana IN St. Joseph 141 41.5968 -86.293 +US 46635 South Bend Indiana IN St. Joseph 141 41.7168 -86.2078 +US 46637 South Bend Indiana IN St. Joseph 141 41.7299 -86.2407 +US 46660 South Bend Indiana IN St. Joseph 141 41.5968 -86.293 +US 46680 South Bend Indiana IN St. Joseph 141 41.5968 -86.293 +US 46699 South Bend Indiana IN St. Joseph 141 41.5968 -86.293 +US 47102 Austin Indiana IN Scott 143 38.7478 -85.7962 +US 47138 Lexington Indiana IN Scott 143 38.6506 -85.6589 +US 47170 Scottsburg Indiana IN Scott 143 38.6885 -85.7987 +US 46110 Boggstown Indiana IN Shelby 145 39.5666 -85.9141 +US 46126 Fairland Indiana IN Shelby 145 39.6295 -85.8913 +US 46130 Fountaintown Indiana IN Shelby 145 39.6751 -85.7848 +US 46144 Gwynneville Indiana IN Shelby 145 39.6617 -85.6476 +US 46161 Morristown Indiana IN Shelby 145 39.6675 -85.6934 +US 46176 Shelbyville Indiana IN Shelby 145 39.5043 -85.7875 +US 46182 Waldron Indiana IN Shelby 145 39.4688 -85.6644 +US 47234 Flat Rock Indiana IN Shelby 145 39.3774 -85.7679 +US 47523 Dale Indiana IN Spencer 147 38.1706 -87.007 +US 47531 Evanston Indiana IN Spencer 147 38.0224 -86.8364 +US 47536 Fulda Indiana IN Spencer 147 37.9938 -87.017 +US 47537 Gentryville Indiana IN Spencer 147 38.0855 -87.0441 +US 47550 Lamar Indiana IN Spencer 147 38.0429 -86.9497 +US 47552 Lincoln City Indiana IN Spencer 147 38.1242 -86.996 +US 47556 Mariah Hill Indiana IN Spencer 147 38.1664 -86.9172 +US 47577 Saint Meinrad Indiana IN Spencer 147 38.1819 -86.8429 +US 47579 Santa Claus Indiana IN Spencer 147 38.1176 -86.9286 +US 47588 Troy Indiana IN Spencer 147 38.0331 -86.7981 +US 47611 Chrisney Indiana IN Spencer 147 38.006 -87.0704 +US 47615 Grandview Indiana IN Spencer 147 37.9703 -86.9568 +US 47617 Hatfield Indiana IN Spencer 147 37.9036 -87.2499 +US 47634 Richland Indiana IN Spencer 147 37.9136 -87.201 +US 47635 Rockport Indiana IN Spencer 147 37.8858 -87.077 +US 46366 North Judson Indiana IN Starke 149 41.2244 -86.6966 +US 46374 San Pierre Indiana IN Starke 149 41.2111 -86.8725 +US 46531 Grovertown Indiana IN Starke 149 41.3496 -86.5243 +US 46532 Hamlet Indiana IN Starke 149 41.3931 -86.5948 +US 46534 Knox Indiana IN Starke 149 41.2809 -86.6082 +US 46968 Ora Indiana IN Starke 149 41.1756 -86.5543 +US 46703 Angola Indiana IN Steuben 151 41.6563 -85.0198 +US 46737 Fremont Indiana IN Steuben 151 41.7331 -84.9452 +US 46742 Hamilton Indiana IN Steuben 151 41.5566 -84.8951 +US 46744 Helmer Indiana IN Steuben County 151 41.5311 -85.1703 +US 46747 Hudson Indiana IN Steuben 151 41.5771 -85.1132 +US 46776 Orland Indiana IN Steuben 151 41.7309 -85.1465 +US 46779 Pleasant Lake Indiana IN Steuben 151 41.5843 -85.0213 +US 47838 Carlisle Indiana IN Sullivan 153 38.9763 -87.3667 +US 47848 Dugger Indiana IN Sullivan 153 39.0691 -87.2599 +US 47849 Fairbanks Indiana IN Sullivan 153 39.1901 -87.547 +US 47850 Farmersburg Indiana IN Sullivan 153 39.2685 -87.5024 +US 47852 Graysville Indiana IN Sullivan 153 39.0805 -87.4496 +US 47855 Hymera Indiana IN Sullivan 153 39.1833 -87.2994 +US 47861 Merom Indiana IN Sullivan 153 39.0323 -87.5397 +US 47864 New Lebanon Indiana IN Sullivan 153 39.0412 -87.4757 +US 47865 Paxton Indiana IN Sullivan 153 39.0185 -87.389 +US 47879 Shelburn Indiana IN Sullivan 153 39.2099 -87.3612 +US 47882 Sullivan Indiana IN Sullivan 153 39.101 -87.4102 +US 47011 Bennington Indiana IN Switzerland 155 38.876 -85.0719 +US 47019 East Enterprise Indiana IN Switzerland 155 38.8686 -84.926 +US 47020 Florence Indiana IN Switzerland 155 38.8224 -84.9399 +US 47038 Patriot Indiana IN Switzerland 155 38.8537 -84.8515 +US 47043 Vevay Indiana IN Switzerland 155 38.7724 -85.0852 +US 47901 Lafayette Indiana IN Tippecanoe 157 40.4177 -86.8884 +US 47902 Lafayette Indiana IN Tippecanoe 157 40.3887 -86.8949 +US 47903 Lafayette Indiana IN Tippecanoe 157 40.3044 -86.8245 +US 47904 Lafayette Indiana IN Tippecanoe 157 40.4276 -86.8735 +US 47905 Lafayette Indiana IN Tippecanoe 157 40.4001 -86.8602 +US 47906 West Lafayette Indiana IN Tippecanoe 157 40.444 -86.9237 +US 47907 West Lafayette Indiana IN Tippecanoe 157 40.4249 -86.9162 +US 47909 Lafayette Indiana IN Tippecanoe 157 40.3228 -86.8881 +US 47920 Battle Ground Indiana IN Tippecanoe 157 40.5248 -86.8238 +US 47924 Buck Creek Indiana IN Tippecanoe 157 40.4876 -86.7631 +US 47930 Clarks Hill Indiana IN Tippecanoe 157 40.2628 -86.7608 +US 47941 Dayton Indiana IN Tippecanoe 157 40.3761 -86.774 +US 47962 Montmorenci Indiana IN Tippecanoe 157 40.4732 -87.0276 +US 47981 Romney Indiana IN Tippecanoe 157 40.258 -86.9208 +US 47983 Stockwell Indiana IN Tippecanoe 157 40.2845 -86.7724 +US 47992 Westpoint Indiana IN Tippecanoe 157 40.3581 -87.0575 +US 47996 West Lafayette Indiana IN Tippecanoe 157 40.3887 -86.8949 +US 46045 Goldsmith Indiana IN Tipton 159 40.2898 -86.1494 +US 46047 Hobbs Indiana IN Tipton 159 40.2841 -85.9455 +US 46049 Kempton Indiana IN Tipton 159 40.2759 -86.1887 +US 46068 Sharpsville Indiana IN Tipton 159 40.3732 -86.1086 +US 46072 Tipton Indiana IN Tipton 159 40.2817 -86.0433 +US 46076 Windfall Indiana IN Tipton 159 40.3669 -85.9476 +US 47325 Brownsville Indiana IN Union 161 39.6845 -84.9881 +US 47353 Liberty Indiana IN Union 161 39.6126 -84.9089 +US 47618 Inglefield Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47701 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47702 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47703 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47704 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47705 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47706 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47708 Evansville Indiana IN Vanderburgh 163 37.9718 -87.572 +US 47710 Evansville Indiana IN Vanderburgh 163 38.0086 -87.5746 +US 47711 Evansville Indiana IN Vanderburgh 163 38.0617 -87.5548 +US 47712 Evansville Indiana IN Vanderburgh 163 37.929 -87.6604 +US 47713 Evansville Indiana IN Vanderburgh 163 37.9623 -87.5577 +US 47714 Evansville Indiana IN Vanderburgh 163 37.9591 -87.5293 +US 47715 Evansville Indiana IN Vanderburgh 163 37.9678 -87.4855 +US 47716 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47719 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47720 Evansville Indiana IN Vanderburgh 163 38.0599 -87.638 +US 47721 Evansville Indiana IN Vanderburgh 163 37.978 -87.6008 +US 47722 Evansville Indiana IN Vanderburgh 163 37.9702 -87.542 +US 47724 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47725 Evansville Indiana IN Vanderburgh 163 38.1071 -87.5256 +US 47727 Evansville Indiana IN Vanderburgh 163 38.0319 -87.5389 +US 47728 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47730 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47731 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47732 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47733 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47734 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47735 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47736 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47737 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47739 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47740 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47741 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47744 Evansville Indiana IN Vanderburgh 163 37.9775 -87.5973 +US 47747 Evansville Indiana IN Vanderburgh 163 37.9971 -87.575 +US 47750 Evansville Indiana IN Vanderburgh 163 37.9623 -87.5055 +US 47831 Blanford Indiana IN Vermillion 165 39.8778 -87.4436 +US 47842 Clinton Indiana IN Vermillion 165 39.6591 -87.4208 +US 47847 Dana Indiana IN Vermillion 165 39.839 -87.4712 +US 47854 Hillsdale Indiana IN Vermillion 165 39.7712 -87.4041 +US 47875 Saint Bernice Indiana IN Vermillion 165 39.8778 -87.4436 +US 47884 Universal Indiana IN Vermillion 165 39.6221 -87.4548 +US 47928 Cayuga Indiana IN Vermillion 165 39.93 -87.459 +US 47966 Newport Indiana IN Vermillion 165 39.8736 -87.4069 +US 47974 Perrysville Indiana IN Vermillion 165 40.0737 -87.4648 +US 47801 Terre Haute Indiana IN Vigo 167 39.4336 -87.4101 +US 47802 Terre Haute Indiana IN Vigo 167 39.407 -87.402 +US 47803 Terre Haute Indiana IN Vigo 167 39.4657 -87.354 +US 47804 Terre Haute Indiana IN Vigo 167 39.4937 -87.3945 +US 47805 Terre Haute Indiana IN Vigo 167 39.5327 -87.3255 +US 47807 Terre Haute Indiana IN Vigo 167 39.471 -87.4009 +US 47808 Terre Haute Indiana IN Vigo 167 39.4336 -87.4101 +US 47809 Terre Haute Indiana IN Vigo 167 39.471 -87.4111 +US 47811 Terre Haute Indiana IN Vigo 167 39.4336 -87.4101 +US 47812 Terre Haute Indiana IN Vigo 167 39.4336 -87.4101 +US 47813 Terre Haute Indiana IN Vigo 167 39.4336 -87.4101 +US 47814 Terre Haute Indiana IN Vigo 167 39.4336 -87.4101 +US 47851 Fontanet Indiana IN Vigo 167 39.5737 -87.2454 +US 47858 Lewis Indiana IN Vigo 167 39.2733 -87.2637 +US 47863 New Goshen Indiana IN Vigo 167 39.5803 -87.4616 +US 47866 Pimento Indiana IN Vigo 167 39.2929 -87.3355 +US 47869 Prairie Creek Indiana IN Vigo 167 39.4336 -87.4101 +US 47870 Prairieton Indiana IN Vigo 167 39.3712 -87.4759 +US 47871 Riley Indiana IN Vigo 167 39.3886 -87.3014 +US 47876 Saint Mary Of The Woods Indiana IN Vigo 167 39.4336 -87.4101 +US 47877 Sandford Indiana IN Vigo County 167 39.511 -87.4762 +US 47878 Seelyville Indiana IN Vigo 167 39.4928 -87.2665 +US 47880 Shepardsville Indiana IN Vigo 167 39.6006 -87.4196 +US 47885 West Terre Haute Indiana IN Vigo 167 39.4984 -87.4688 +US 46940 La Fontaine Indiana IN Wabash 169 40.6909 -85.6971 +US 46941 Lagro Indiana IN Wabash 169 40.8199 -85.7204 +US 46943 Laketon Indiana IN Wabash 169 40.9743 -85.8375 +US 46946 Liberty Mills Indiana IN Wabash 169 41.0356 -85.7358 +US 46962 North Manchester Indiana IN Wabash 169 40.9986 -85.7842 +US 46974 Roann Indiana IN Wabash 169 40.9482 -85.9301 +US 46980 Servia Indiana IN Wabash 169 40.8489 -85.7925 +US 46984 Somerset Indiana IN Wabash 169 40.6714 -85.8288 +US 46990 Urbana Indiana IN Wabash 169 40.8987 -85.7485 +US 46992 Wabash Indiana IN Wabash 169 40.7909 -85.8321 +US 47975 Pine Village Indiana IN Warren 171 40.4328 -87.2317 +US 47982 State Line Indiana IN Warren 171 40.1967 -87.5265 +US 47991 West Lebanon Indiana IN Warren 171 40.2659 -87.4384 +US 47993 Williamsport Indiana IN Warren 171 40.3142 -87.4039 +US 47601 Boonville Indiana IN Warrick 173 38.0474 -87.262 +US 47610 Chandler Indiana IN Warrick 173 38.0423 -87.3756 +US 47613 Elberfeld Indiana IN Warrick 173 38.2053 -87.4179 +US 47614 Folsomville Indiana IN Warrick 173 38.13 -87.1636 +US 47619 Lynnville Indiana IN Warrick 173 38.1961 -87.2935 +US 47629 Newburgh Indiana IN Warrick 173 38.0624 -87.2452 +US 47630 Newburgh Indiana IN Warrick 173 37.9637 -87.3938 +US 47637 Tennyson Indiana IN Warrick 173 38.1232 -87.1388 +US 47108 Campbellsburg Indiana IN Washington 175 38.669 -86.2358 +US 47120 Fredericksburg Indiana IN Washington 175 38.4821 -86.1783 +US 47125 Hardinsburg Indiana IN Washington 175 38.4626 -86.318 +US 47139 Little York Indiana IN Washington 175 38.6007 -86.0788 +US 47165 Pekin Indiana IN Washington 175 38.4931 -86.017 +US 47167 Salem Indiana IN Washington 175 38.6071 -86.0787 +US 47324 Boston Indiana IN Wayne 177 39.7579 -84.8484 +US 47327 Cambridge City Indiana IN Wayne 177 39.8182 -85.1685 +US 47330 Centerville Indiana IN Wayne 177 39.8081 -85.0032 +US 47335 Dublin Indiana IN Wayne 177 39.8127 -85.2044 +US 47339 Economy Indiana IN Wayne 177 39.961 -85.1023 +US 47341 Fountain City Indiana IN Wayne 177 39.9634 -84.909 +US 47345 Greens Fork Indiana IN Wayne 177 39.8916 -85.0494 +US 47346 Hagerstown Indiana IN Wayne 177 39.9228 -85.1601 +US 47357 Milton Indiana IN Wayne 177 39.7763 -85.1423 +US 47370 Pershing Indiana IN Wayne 177 39.8613 -85.1474 +US 47374 Richmond Indiana IN Wayne 177 39.8324 -84.8936 +US 47375 Richmond Indiana IN Wayne 177 39.8604 -85.016 +US 47392 Webster Indiana IN Wayne 177 39.9119 -84.9351 +US 47393 Williamsburg Indiana IN Wayne 177 39.958 -84.9984 +US 46714 Bluffton Indiana IN Wells 179 40.7368 -85.1622 +US 46731 Craigville Indiana IN Wells 179 40.793 -85.0904 +US 46759 Keystone Indiana IN Wells 179 40.5897 -85.2767 +US 46766 Liberty Center Indiana IN Wells 179 40.7002 -85.2774 +US 46777 Ossian Indiana IN Wells 179 40.8806 -85.157 +US 46778 Petroleum Indiana IN Wells 179 40.6114 -85.1526 +US 46781 Poneto Indiana IN Wells 179 40.6419 -85.2562 +US 46791 Uniondale Indiana IN Wells 179 40.8369 -85.2403 +US 47923 Brookston Indiana IN White 181 40.6011 -86.8753 +US 47925 Buffalo Indiana IN White 181 40.7504 -86.7896 +US 47926 Burnettsville Indiana IN White 181 40.7078 -86.5747 +US 47929 Chalmers Indiana IN White 181 40.6693 -86.8626 +US 47950 Idaville Indiana IN White 181 40.7674 -86.6556 +US 47959 Monon Indiana IN White 181 40.8612 -86.8635 +US 47960 Monticello Indiana IN White 181 40.7626 -86.755 +US 47980 Reynolds Indiana IN White 181 40.7606 -86.8691 +US 47995 Wolcott Indiana IN White 181 40.7516 -87.029 +US 46723 Churubusco Indiana IN Whitley 183 41.229 -85.3244 +US 46725 Columbia City Indiana IN Whitley 183 41.1619 -85.4737 +US 46764 Larwill Indiana IN Whitley 183 41.1646 -85.6139 +US 46787 South Whitley Indiana IN Whitley 183 41.0726 -85.6143 +US 66732 Elsmore Kansas KS Allen 001 37.8035 -95.1546 +US 66742 Gas Kansas KS Allen 001 37.9232 -95.3467 +US 66748 Humboldt Kansas KS Allen 001 37.8045 -95.422 +US 66749 Iola Kansas KS Allen 001 37.8858 -95.3911 +US 66751 La Harpe Kansas KS Allen 001 37.9145 -95.2558 +US 66755 Moran Kansas KS Allen 001 37.9342 -95.1647 +US 66772 Savonburg Kansas KS Allen 001 37.7517 -95.1545 +US 66015 Colony Kansas KS Anderson 003 38.0761 -95.3287 +US 66032 Garnett Kansas KS Anderson 003 38.2859 -95.2594 +US 66033 Greeley Kansas KS Anderson 003 38.3524 -95.1188 +US 66039 Kincaid Kansas KS Anderson 003 38.1104 -95.1886 +US 66091 Welda Kansas KS Anderson 003 38.1686 -95.3096 +US 66093 Westphalia Kansas KS Anderson 003 38.1718 -95.4665 +US 66002 Atchison Kansas KS Atchison 005 39.5594 -95.1304 +US 66016 Cummings Kansas KS Atchison 005 39.483 -95.2863 +US 66023 Effingham Kansas KS Atchison 005 39.5023 -95.4198 +US 66041 Lancaster Kansas KS Atchison 005 39.5952 -95.3036 +US 66058 Muscotah Kansas KS Atchison 005 39.5388 -95.5175 +US 66077 Potter Kansas KS Atchison 005 39.4236 -95.1408 +US 67057 Hardtner Kansas KS Barber 007 37.03 -98.6547 +US 67061 Hazelton Kansas KS Barber 007 37.0984 -98.4003 +US 67065 Isabel Kansas KS Barber 007 37.4485 -98.5351 +US 67070 Kiowa Kansas KS Barber 007 37.0172 -98.4859 +US 67071 Lake City Kansas KS Barber 007 37.3569 -98.8098 +US 67104 Medicine Lodge Kansas KS Barber 007 37.2845 -98.5848 +US 67138 Sharon Kansas KS Barber 007 37.2492 -98.4142 +US 67143 Sun City Kansas KS Barber 007 37.3574 -98.9127 +US 67511 Albert Kansas KS Barton 009 38.4205 -98.9134 +US 67517 Beaver Kansas KS Barton County 009 38.6501 -98.6483 +US 67525 Claflin Kansas KS Barton 009 38.5409 -98.5372 +US 67526 Ellinwood Kansas KS Barton 009 38.3565 -98.5849 +US 67530 Great Bend Kansas KS Barton 009 38.3936 -98.7751 +US 67544 Hoisington Kansas KS Barton 009 38.4789 -98.7565 +US 67562 Odin Kansas KS Barton County 009 38.5501 -98.6416 +US 67564 Olmitz Kansas KS Barton 009 38.5436 -98.8955 +US 67567 Pawnee Rock Kansas KS Barton 009 38.2782 -98.9814 +US 66701 Fort Scott Kansas KS Bourbon 011 37.8216 -94.7148 +US 66716 Bronson Kansas KS Bourbon 011 37.9214 -95.0303 +US 66738 Fulton Kansas KS Bourbon 011 38.0134 -94.7183 +US 66741 Garland Kansas KS Bourbon 011 37.7175 -94.6613 +US 66741 Arcadia Kansas KS Bourbon 011 37.7175 -94.6613 +US 66754 Mapleton Kansas KS Bourbon 011 38.0228 -94.8735 +US 66769 Redfield Kansas KS Bourbon 011 37.8367 -94.8805 +US 66779 Uniontown Kansas KS Bourbon 011 37.8117 -94.9814 +US 66424 Everest Kansas KS Brown 013 39.688 -95.4138 +US 66425 Fairview Kansas KS Brown 013 39.8445 -95.711 +US 66434 Hiawatha Kansas KS Brown 013 39.7914 -95.6004 +US 66435 Willis Kansas KS Brown County 013 39.725 -95.5054 +US 66439 Horton Kansas KS Brown 013 39.6789 -95.5299 +US 66515 Morrill Kansas KS Brown 013 39.9356 -95.712 +US 66527 Powhattan Kansas KS Brown 013 39.7177 -95.6751 +US 66532 Robinson Kansas KS Brown 013 39.8182 -95.4567 +US 66842 Cassoday Kansas KS Butler 015 38.0298 -96.6746 +US 67002 Andover Kansas KS Butler 015 37.6985 -97.1179 +US 67010 Augusta Kansas KS Butler 015 37.6836 -96.9648 +US 67012 Beaumont Kansas KS Butler 015 37.658 -96.5329 +US 67017 Benton Kansas KS Butler 015 37.7946 -97.0971 +US 67039 Douglass Kansas KS Butler 015 37.5195 -96.9948 +US 67041 Elbing Kansas KS Butler 015 38.0545 -97.1284 +US 67042 El Dorado Kansas KS Butler 015 37.8226 -96.8543 +US 67072 Latham Kansas KS Butler 015 37.531 -96.6791 +US 67074 Leon Kansas KS Butler 015 37.6813 -96.7526 +US 67123 Potwin Kansas KS Butler 015 37.9719 -97.0006 +US 67132 Rosalia Kansas KS Butler 015 37.796 -96.6482 +US 67133 Rose Hill Kansas KS Butler 015 37.5784 -97.1173 +US 67144 Towanda Kansas KS Butler 015 37.8005 -96.9918 +US 67154 Whitewater Kansas KS Butler 015 37.9612 -97.1308 +US 66843 Cedar Point Kansas KS Chase 017 38.26 -96.8228 +US 66845 Cottonwood Falls Kansas KS Chase 017 38.3565 -96.5418 +US 66850 Elmdale Kansas KS Chase 017 38.3779 -96.6675 +US 66862 Matfield Green Kansas KS Chase 017 38.1448 -96.5541 +US 66869 Strong City Kansas KS Chase 017 38.4129 -96.5172 +US 67024 Cedar Vale Kansas KS Chautauqua 019 37.1265 -96.4701 +US 67334 Chautauqua Kansas KS Chautauqua 019 37.0262 -96.1783 +US 67355 Niotaze Kansas KS Chautauqua 019 37.037 -96.0121 +US 67360 Peru Kansas KS Chautauqua 019 37.0568 -96.1404 +US 67361 Sedan Kansas KS Chautauqua 019 37.1297 -96.1732 +US 66713 Baxter Springs Kansas KS Cherokee 021 37.0281 -94.7393 +US 66725 Columbus Kansas KS Cherokee 021 37.1699 -94.8899 +US 66728 Crestline Kansas KS Cherokee 021 37.1694 -94.7041 +US 66739 Galena Kansas KS Cherokee 021 37.0632 -94.6557 +US 66770 Riverton Kansas KS Cherokee 021 37.081 -94.7175 +US 66773 Scammon Kansas KS Cherokee 021 37.2809 -94.8092 +US 66778 Treece Kansas KS Cherokee 021 37.0005 -94.8409 +US 66781 Weir Kansas KS Cherokee 021 37.2912 -94.7286 +US 66782 West Mineral Kansas KS Cherokee 021 37.2851 -94.9261 +US 67731 Bird City Kansas KS Cheyenne 023 39.7579 -101.5319 +US 67755 Russell Springs Kansas KS Cheyenne County 023 38.8709 -101.2828 +US 67756 Saint Francis Kansas KS Cheyenne 023 39.6804 -101.9093 +US 67831 Ashland Kansas KS Clark 025 37.1823 -99.759 +US 67840 Englewood Kansas KS Clark 025 37.0658 -99.9878 +US 67865 Minneola Kansas KS Clark 025 37.4425 -100.0088 +US 67432 Clay Center Kansas KS Clay 027 39.3844 -97.1278 +US 67447 Green Kansas KS Clay 027 39.4803 -97.0149 +US 67458 Longford Kansas KS Clay 027 39.1834 -97.2499 +US 67468 Morganville Kansas KS Clay 027 39.4607 -97.2467 +US 67487 Wakefield Kansas KS Clay 027 39.2249 -97.0229 +US 66901 Concordia Kansas KS Cloud 029 39.5516 -97.6568 +US 66931 Ames Kansas KS Cloud County 029 39.5339 -97.5382 +US 66938 Clyde Kansas KS Cloud 029 39.5758 -97.408 +US 66948 Jamestown Kansas KS Cloud 029 39.6021 -97.8631 +US 67414 Ada Kansas KS Cloud County 029 39.1738 -97.8785 +US 67417 Aurora Kansas KS Cloud 029 39.4472 -97.5304 +US 67445 Glasco Kansas KS Cloud 029 39.3621 -97.8418 +US 67466 Miltonvale Kansas KS Cloud 029 39.3481 -97.4579 +US 66839 Burlington Kansas KS Coffey 031 38.2363 -95.7336 +US 66852 Gridley Kansas KS Coffey 031 38.1012 -95.8874 +US 66856 Lebo Kansas KS Coffey 031 38.4161 -95.8222 +US 66857 Le Roy Kansas KS Coffey 031 38.0874 -95.6227 +US 66871 Waverly Kansas KS Coffey 031 38.3782 -95.5982 +US 67029 Coldwater Kansas KS Comanche 033 37.2479 -99.3115 +US 67127 Protection Kansas KS Comanche 033 37.1968 -99.4816 +US 67155 Wilmore Kansas KS Comanche 033 37.3318 -99.1846 +US 67005 Arkansas City Kansas KS Cowley 035 37.0676 -97.0357 +US 67008 Atlanta Kansas KS Cowley 035 37.4343 -96.7661 +US 67019 Burden Kansas KS Cowley 035 37.3209 -96.757 +US 67023 Cambridge Kansas KS Cowley 035 37.3094 -96.717 +US 67038 Dexter Kansas KS Cowley 035 37.1641 -96.6917 +US 67102 Maple City Kansas KS Cowley 035 37.2377 -96.8389 +US 67131 Rock Kansas KS Cowley 035 37.4413 -97.0059 +US 67146 Udall Kansas KS Cowley 035 37.3939 -97.1108 +US 67156 Winfield Kansas KS Cowley 035 37.2416 -96.98 +US 66711 Arcadia Kansas KS Crawford 037 37.6341 -94.6548 +US 66712 Arma Kansas KS Crawford 037 37.5573 -94.6949 +US 66724 Cherokee Kansas KS Crawford 037 37.3694 -94.8424 +US 66734 Farlington Kansas KS Crawford 037 37.6163 -94.8479 +US 66735 Franklin Kansas KS Crawford 037 37.5219 -94.7096 +US 66743 Girard Kansas KS Crawford 037 37.5091 -94.8569 +US 66746 Hepler Kansas KS Crawford 037 37.6576 -94.9892 +US 66753 Mc Cune Kansas KS Crawford 037 37.3468 -95.0376 +US 66756 Mulberry Kansas KS Crawford 037 37.5442 -94.6839 +US 66760 Opolis Kansas KS Crawford 037 37.342 -94.6199 +US 66762 Pittsburg Kansas KS Crawford 037 37.3951 -94.7105 +US 66763 Frontenac Kansas KS Crawford 037 37.4466 -94.6916 +US 66780 Walnut Kansas KS Crawford 037 37.5967 -95.0455 +US 67635 Dresden Kansas KS Decatur 039 39.6094 -100.4112 +US 67643 Jennings Kansas KS Decatur 039 39.6762 -100.2834 +US 67653 Norcatur Kansas KS Decatur 039 39.8447 -100.2007 +US 67749 Oberlin Kansas KS Decatur 039 39.8275 -100.5314 +US 67410 Abilene Kansas KS Dickinson 041 38.9371 -97.2063 +US 67431 Chapman Kansas KS Dickinson 041 38.9722 -97.017 +US 67441 Enterprise Kansas KS Dickinson 041 38.9063 -97.1122 +US 67449 Herington Kansas KS Dickinson 041 38.6767 -96.8941 +US 67451 Hope Kansas KS Dickinson 041 38.6776 -97.1061 +US 67463 Manchester Kansas KS Dickinson County 041 39.0871 -97.3095 +US 67469 Navarre Kansas KS Dickinson County 041 38.8177 -97.1056 +US 67472 Oakhill Kansas KS Dickinson County 041 39.2487 -97.3405 +US 67480 Solomon Kansas KS Dickinson 041 38.9194 -97.3518 +US 67482 Talmage Kansas KS Dickinson 041 39.0269 -97.2597 +US 67492 Woodbine Kansas KS Dickinson 041 38.8131 -96.9619 +US 66008 Bendena Kansas KS Doniphan 043 39.7174 -95.1765 +US 66017 Denton Kansas KS Doniphan 043 39.7154 -95.2744 +US 66024 Elwood Kansas KS Doniphan 043 39.7573 -94.8824 +US 66035 Highland Kansas KS Doniphan 043 39.8608 -95.2583 +US 66087 Troy Kansas KS Doniphan 043 39.7906 -95.1434 +US 66090 Wathena Kansas KS Doniphan 043 39.7625 -94.9255 +US 66094 White Cloud Kansas KS Doniphan 043 39.9627 -95.2982 +US 66006 Baldwin City Kansas KS Douglas 045 38.7953 -95.2276 +US 66025 Eudora Kansas KS Douglas 045 38.933 -95.1022 +US 66044 Lawrence Kansas KS Douglas 045 39.0289 -95.2086 +US 66045 Lawrence Kansas KS Douglas 045 38.959 -95.2499 +US 66046 Lawrence Kansas KS Douglas 045 38.9369 -95.242 +US 66047 Lawrence Kansas KS Douglas 045 38.9407 -95.2779 +US 66049 Lawrence Kansas KS Douglas 045 38.9704 -95.2769 +US 66050 Lecompton Kansas KS Douglas 045 39.0154 -95.4392 +US 67519 Belpre Kansas KS Edwards 047 37.9347 -99.0936 +US 67547 Kinsley Kansas KS Edwards 047 37.9247 -99.4116 +US 67552 Lewis Kansas KS Edwards 047 37.9062 -99.248 +US 67563 Offerle Kansas KS Edwards 047 37.8828 -99.5498 +US 67345 Elk Falls Kansas KS Elk 049 37.3745 -96.1959 +US 67346 Grenola Kansas KS Elk 049 37.3668 -96.4396 +US 67349 Howard Kansas KS Elk 049 37.4809 -96.2563 +US 67352 Longton Kansas KS Elk 049 37.3905 -96.0814 +US 67353 Moline Kansas KS Elk 049 37.3649 -96.3069 +US 67601 Hays Kansas KS Ellis 051 38.8782 -99.3348 +US 67627 Catharine Kansas KS Ellis 051 38.9276 -99.2161 +US 67637 Ellis Kansas KS Ellis 051 38.9471 -99.5285 +US 67660 Pfeifer Kansas KS Ellis 051 38.7153 -99.1718 +US 67667 Schoenchen Kansas KS Ellis 051 38.7128 -99.3322 +US 67671 Victoria Kansas KS Ellis 051 38.8589 -99.1391 +US 67674 Walker Kansas KS Ellis 051 38.8731 -99.0949 +US 67676 Zurich Kansas KS Ellis County 051 39.2215 -99.4554 +US 67439 Ellsworth Kansas KS Ellsworth 053 38.7312 -98.2057 +US 67450 Holyrood Kansas KS Ellsworth 053 38.59 -98.4159 +US 67454 Kanopolis Kansas KS Ellsworth 053 38.7091 -98.1575 +US 67459 Lorraine Kansas KS Ellsworth 053 38.5652 -98.29 +US 67490 Wilson Kansas KS Ellsworth 053 38.8134 -98.4432 +US 67846 Garden City Kansas KS Finney 055 37.9769 -100.8621 +US 67851 Holcomb Kansas KS Finney 055 37.9931 -100.9893 +US 67856 Kalvesta Kansas KS Finney County 055 38.1122 -100.4127 +US 67868 Pierceville Kansas KS Finney 055 37.906 -100.7523 +US 67801 Dodge City Kansas KS Ford 057 37.7569 -100.0241 +US 67834 Bucklin Kansas KS Ford 057 37.553 -99.6325 +US 67842 Ford Kansas KS Ford 057 37.6323 -99.7642 +US 67843 Fort Dodge Kansas KS Ford County 057 37.7303 -99.937 +US 67858 Kingsdown Kansas KS Ford County 057 37.5217 -99.7525 +US 67876 Spearville Kansas KS Ford 057 37.8235 -99.737 +US 67882 Wright Kansas KS Ford 057 37.7676 -99.9238 +US 66042 Lane Kansas KS Franklin 059 38.4347 -95.0804 +US 66067 Ottawa Kansas KS Franklin 059 38.6142 -95.2745 +US 66076 Pomona Kansas KS Franklin 059 38.6153 -95.4489 +US 66078 Princeton Kansas KS Franklin 059 38.4847 -95.2764 +US 66079 Rantoul Kansas KS Franklin 059 38.5666 -95.1234 +US 66080 Richmond Kansas KS Franklin 059 38.4074 -95.2489 +US 66092 Wellsville Kansas KS Franklin 059 38.7137 -95.0916 +US 66095 Williamsburg Kansas KS Franklin 059 38.4902 -95.4226 +US 66441 Junction City Kansas KS Geary 061 39.0299 -96.8396 +US 66442 Fort Riley Kansas KS Geary 061 39.0619 -96.7873 +US 66514 Milford Kansas KS Geary 061 39.1692 -96.91 +US 67736 Gove Kansas KS Gove 063 38.887 -100.4867 +US 67737 Grainfield Kansas KS Gove 063 39.103 -100.468 +US 67738 Grinnell Kansas KS Gove 063 39.0851 -100.6621 +US 67751 Park Kansas KS Gove 063 39.0788 -100.3469 +US 67752 Quinter Kansas KS Gove 063 39.0363 -100.2337 +US 67625 Bogue Kansas KS Graham 065 39.3782 -99.6788 +US 67642 Hill City Kansas KS Graham 065 39.3566 -99.8429 +US 67650 Morland Kansas KS Graham 065 39.3229 -100.0733 +US 67659 Penokee Kansas KS Graham 065 39.3482 -99.9719 +US 67880 Ulysses Kansas KS Grant 067 37.5792 -101.3488 +US 67835 Cimarron Kansas KS Gray 069 37.8127 -100.3438 +US 67837 Copeland Kansas KS Gray 069 37.568 -100.6148 +US 67841 Ensign Kansas KS Gray 069 37.6414 -100.2496 +US 67853 Ingalls Kansas KS Gray 069 37.8293 -100.5143 +US 67867 Montezuma Kansas KS Gray 069 37.6016 -100.4461 +US 67879 Tribune Kansas KS Greeley 071 38.4962 -101.7656 +US 66853 Hamilton Kansas KS Greenwood 073 37.9791 -96.1691 +US 66855 Lamont Kansas KS Greenwood 073 37.8883 -96.2421 +US 66860 Madison Kansas KS Greenwood 073 38.1278 -96.1213 +US 66863 Neal Kansas KS Greenwood 073 37.8329 -96.0818 +US 66870 Virgil Kansas KS Greenwood 073 37.8976 -96.0329 +US 67045 Eureka Kansas KS Greenwood 073 37.8265 -96.2959 +US 67047 Fall River Kansas KS Greenwood 073 37.621 -96.0435 +US 67122 Piedmont Kansas KS Greenwood 073 37.6372 -96.3695 +US 67137 Severy Kansas KS Greenwood 073 37.617 -96.2252 +US 67836 Coolidge Kansas KS Hamilton 075 38.0215 -102.007 +US 67857 Kendall Kansas KS Hamilton 075 37.9997 -101.786 +US 67878 Syracuse Kansas KS Hamilton 075 37.9826 -101.7687 +US 67003 Anthony Kansas KS Harper 077 37.1512 -98.0285 +US 67009 Attica Kansas KS Harper 077 37.2528 -98.2264 +US 67018 Bluff City Kansas KS Harper 077 37.0838 -97.8754 +US 67036 Danville Kansas KS Harper 077 37.2674 -97.8689 +US 67049 Freeport Kansas KS Harper 077 37.1903 -97.8634 +US 67058 Harper Kansas KS Harper 077 37.2909 -98.018 +US 67150 Waldron Kansas KS Harper 077 37.073 -98.2289 +US 67020 Burrton Kansas KS Harvey 079 38.0261 -97.6666 +US 67056 Halstead Kansas KS Harvey 079 38.0064 -97.5118 +US 67062 Hesston Kansas KS Harvey 079 38.136 -97.4495 +US 67114 Newton Kansas KS Harvey 079 38.0451 -97.3435 +US 67117 North Newton Kansas KS Harvey 079 38.0743 -97.3473 +US 67135 Sedgwick Kansas KS Harvey 079 37.9558 -97.4732 +US 67151 Walton Kansas KS Harvey 079 38.1239 -97.2361 +US 67870 Satanta Kansas KS Haskell 081 37.4409 -100.9691 +US 67877 Sublette Kansas KS Haskell 081 37.5221 -100.8208 +US 67849 Hanston Kansas KS Hodgeman 083 38.109 -99.6928 +US 67854 Jetmore Kansas KS Hodgeman 083 38.0738 -99.9327 +US 66416 Circleville Kansas KS Jackson 085 39.5155 -95.8517 +US 66418 Delia Kansas KS Jackson 085 39.2655 -95.9608 +US 66419 Denison Kansas KS Jackson 085 39.354 -95.6127 +US 66436 Holton Kansas KS Jackson 085 39.4436 -95.7525 +US 66440 Hoyt Kansas KS Jackson 085 39.2552 -95.6867 +US 66509 Mayetta Kansas KS Jackson 085 39.3489 -95.6928 +US 66516 Netawaka Kansas KS Jackson 085 39.6063 -95.727 +US 66540 Soldier Kansas KS Jackson 085 39.5013 -95.9652 +US 66552 Whiting Kansas KS Jackson 085 39.5974 -95.6158 +US 66054 Mc Louth Kansas KS Jefferson 087 39.1668 -95.2183 +US 66060 Nortonville Kansas KS Jefferson 087 39.4095 -95.3236 +US 66066 Oskaloosa Kansas KS Jefferson 087 39.2152 -95.3135 +US 66070 Ozawkie Kansas KS Jefferson 087 39.2136 -95.4404 +US 66073 Perry Kansas KS Jefferson 087 39.0875 -95.3731 +US 66088 Valley Falls Kansas KS Jefferson 087 39.3484 -95.467 +US 66097 Winchester Kansas KS Jefferson 087 39.3245 -95.2696 +US 66429 Grantville Kansas KS Jefferson 087 39.0972 -95.5397 +US 66512 Meriden Kansas KS Jefferson 087 39.2038 -95.5476 +US 66936 Burr Oak Kansas KS Jewell 089 39.8932 -98.3499 +US 66941 Esbon Kansas KS Jewell 089 39.7562 -98.4462 +US 66942 Formoso Kansas KS Jewell 089 39.7795 -97.9889 +US 66949 Jewell Kansas KS Jewell 089 39.6719 -98.1472 +US 66956 Mankato Kansas KS Jewell 089 39.7833 -98.2152 +US 66963 Randall Kansas KS Jewell 089 39.6286 -98.0661 +US 66970 Webber Kansas KS Jewell 089 39.9245 -97.9978 +US 66018 De Soto Kansas KS Johnson 091 38.9462 -94.9714 +US 66019 Clearview City Kansas KS Johnson 091 38.946 -95.0037 +US 66021 Edgerton Kansas KS Johnson 091 38.7811 -95.0094 +US 66030 Gardner Kansas KS Johnson 091 38.8075 -94.9157 +US 66031 New Century Kansas KS Johnson 091 38.8249 -94.8992 +US 66051 Olathe Kansas KS Johnson 091 38.8999 -94.832 +US 66061 Olathe Kansas KS Johnson 091 38.8865 -94.8204 +US 66062 Olathe Kansas KS Johnson 091 38.8733 -94.7752 +US 66063 Olathe Kansas KS Johnson 091 38.8999 -94.832 +US 66083 Spring Hill Kansas KS Johnson 091 38.7631 -94.8246 +US 66085 Stilwell Kansas KS Johnson 091 38.7902 -94.6643 +US 66201 Shawnee Mission Kansas KS Johnson 091 39.0078 -94.6795 +US 66202 Shawnee Mission Kansas KS Johnson 091 39.0248 -94.6826 +US 66203 Shawnee Mission Kansas KS Johnson 091 39.0215 -94.7055 +US 66204 Shawnee Mission Kansas KS Johnson 091 38.9928 -94.6771 +US 66205 Shawnee Mission Kansas KS Johnson 091 39.0312 -94.6308 +US 66206 Shawnee Mission Kansas KS Johnson 091 38.958 -94.6193 +US 66207 Shawnee Mission Kansas KS Johnson 091 38.9575 -94.6452 +US 66208 Shawnee Mission Kansas KS Johnson 091 38.9938 -94.634 +US 66209 Shawnee Mission Kansas KS Johnson 091 38.8984 -94.6377 +US 66210 Shawnee Mission Kansas KS Johnson 091 38.9273 -94.7143 +US 66211 Shawnee Mission Kansas KS Johnson 091 38.9248 -94.6379 +US 66212 Shawnee Mission Kansas KS Johnson 091 38.9568 -94.6832 +US 66213 Shawnee Mission Kansas KS Johnson 091 38.8982 -94.7049 +US 66214 Shawnee Mission Kansas KS Johnson 091 38.9649 -94.7209 +US 66215 Shawnee Mission Kansas KS Johnson 091 38.949 -94.7405 +US 66216 Shawnee Mission Kansas KS Johnson 091 39.0147 -94.7414 +US 66217 Shawnee Mission Kansas KS Johnson 091 39.0146 -94.7709 +US 66218 Shawnee Mission Kansas KS Johnson 091 39.014 -94.8108 +US 66219 Shawnee Mission Kansas KS Johnson 091 38.9553 -94.7799 +US 66220 Shawnee Mission Kansas KS Johnson 091 38.9613 -94.8222 +US 66221 Shawnee Mission Kansas KS Johnson 091 38.8636 -94.7103 +US 66222 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66223 Shawnee Mission Kansas KS Johnson 091 38.8619 -94.661 +US 66224 Shawnee Mission Kansas KS Johnson 091 38.8591 -94.6314 +US 66225 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66226 Shawnee Mission Kansas KS Johnson 091 39.0178 -94.8627 +US 66227 Shawnee Mission Kansas KS Johnson 091 38.9747 -94.8681 +US 66250 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66251 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66276 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66279 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66282 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66283 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66285 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 66286 Shawnee Mission Kansas KS Johnson 091 38.8999 -94.832 +US 67838 Deerfield Kansas KS Kearny 093 38.0068 -101.1431 +US 67860 Lakin Kansas KS Kearny 093 37.9382 -101.2713 +US 67035 Cunningham Kansas KS Kingman 095 37.6309 -98.3564 +US 67068 Kingman Kansas KS Kingman 095 37.5964 -98.1304 +US 67111 Murdock Kansas KS Kingman 095 37.6099 -97.9503 +US 67112 Nashville Kansas KS Kingman 095 37.4344 -98.4171 +US 67118 Norwich Kansas KS Kingman 095 37.4501 -97.8662 +US 67128 Rago Kansas KS Kingman 095 37.4398 -98.0772 +US 67142 Spivey Kansas KS Kingman 095 37.441 -98.1751 +US 67159 Zenda Kansas KS Kingman 095 37.4373 -98.2874 +US 67054 Greensburg Kansas KS Kiowa 097 37.6084 -99.3011 +US 67059 Haviland Kansas KS Kiowa 097 37.6096 -99.134 +US 67109 Mullinville Kansas KS Kiowa 097 37.5716 -99.4639 +US 67330 Altamont Kansas KS Labette 099 37.1873 -95.2983 +US 67332 Bartlett Kansas KS Labette 099 37.0601 -95.2115 +US 67336 Chetopa Kansas KS Labette 099 37.0418 -95.0796 +US 67341 Dennis Kansas KS Labette 099 37.3243 -95.4116 +US 67342 Edna Kansas KS Labette 099 37.0561 -95.3442 +US 67354 Mound Valley Kansas KS Labette 099 37.2091 -95.4247 +US 67356 Oswego Kansas KS Labette 099 37.1823 -95.1335 +US 67357 Parsons Kansas KS Labette 099 37.3389 -95.2693 +US 67839 Dighton Kansas KS Lane 101 38.4742 -100.4647 +US 67850 Healy Kansas KS Lane 101 38.5664 -100.6159 +US 67874 Shields Kansas KS Lane County 101 38.6208 -100.4177 +US 66007 Basehor Kansas KS Leavenworth 103 39.1281 -94.957 +US 66020 Easton Kansas KS Leavenworth 103 39.3391 -95.0999 +US 66027 Fort Leavenworth Kansas KS Leavenworth 103 39.3485 -94.9265 +US 66043 Lansing Kansas KS Leavenworth 103 39.2502 -94.8994 +US 66048 Leavenworth Kansas KS Leavenworth 103 39.3015 -94.9339 +US 66052 Linwood Kansas KS Leavenworth 103 39.0206 -94.9914 +US 66086 Tonganoxie Kansas KS Leavenworth 103 39.1026 -95.1051 +US 67418 Barnard Kansas KS Lincoln 105 39.1816 -98.0711 +US 67423 Beverly Kansas KS Lincoln 105 38.9844 -97.9818 +US 67455 Lincoln Kansas KS Lincoln 105 39.1027 -98.2149 +US 67481 Sylvan Grove Kansas KS Lincoln 105 39.0324 -98.373 +US 66010 Blue Mound Kansas KS Linn 107 38.0908 -95.0053 +US 66014 Centerville Kansas KS Linn 107 38.213 -94.9934 +US 66040 La Cygne Kansas KS Linn 107 38.3434 -94.7593 +US 66056 Mound City Kansas KS Linn 107 38.156 -94.8186 +US 66072 Parker Kansas KS Linn 107 38.3303 -94.9871 +US 66075 Pleasanton Kansas KS Linn 107 38.1823 -94.7057 +US 66767 Prescott Kansas KS Linn 107 38.0718 -94.7008 +US 67747 Monument Kansas KS Logan 109 39.079 -101.035 +US 67748 Oakley Kansas KS Logan 109 39.1121 -100.858 +US 67764 Winona Kansas KS Logan 109 39.061 -101.2216 +US 66801 Emporia Kansas KS Lyon 111 38.4184 -96.1871 +US 66830 Admire Kansas KS Lyon 111 38.6393 -96.1017 +US 66833 Allen Kansas KS Lyon 111 38.652 -96.1735 +US 66835 Americus Kansas KS Lyon 111 38.5098 -96.2608 +US 66854 Hartford Kansas KS Lyon 111 38.2833 -95.9997 +US 66864 Neosho Rapids Kansas KS Lyon 111 38.3948 -96.0168 +US 66865 Olpe Kansas KS Lyon 111 38.2578 -96.1891 +US 66868 Reading Kansas KS Lyon 111 38.529 -95.9895 +US 67107 Moundridge Kansas KS McPherson 113 38.206 -97.5088 +US 67428 Canton Kansas KS McPherson 113 38.3858 -97.4291 +US 67443 Galva Kansas KS McPherson 113 38.3824 -97.5359 +US 67456 Lindsborg Kansas KS McPherson 113 38.5761 -97.6739 +US 67460 Mcpherson Kansas KS McPherson 113 38.3763 -97.6702 +US 67464 Marquette Kansas KS McPherson 113 38.556 -97.8381 +US 67476 Roxbury Kansas KS McPherson 113 38.3917 -97.6484 +US 67491 Windom Kansas KS McPherson 113 38.3845 -97.8965 +US 67546 Inman Kansas KS McPherson 113 38.2232 -97.7951 +US 66840 Burns Kansas KS Marion 115 38.1222 -96.8634 +US 66851 Florence Kansas KS Marion 115 38.2415 -96.9346 +US 66858 Lincolnville Kansas KS Marion 115 38.4933 -96.9626 +US 66859 Lost Springs Kansas KS Marion 115 38.5657 -96.9799 +US 66861 Marion Kansas KS Marion 115 38.3554 -97.0204 +US 66866 Peabody Kansas KS Marion 115 38.1737 -97.1184 +US 67053 Goessel Kansas KS Marion 115 38.2468 -97.3463 +US 67063 Hillsboro Kansas KS Marion 115 38.3449 -97.2122 +US 67073 Lehigh Kansas KS Marion 115 38.3771 -97.3043 +US 67438 Durham Kansas KS Marion 115 38.5038 -97.2555 +US 67475 Ramona Kansas KS Marion 115 38.5777 -97.0759 +US 67483 Tampa Kansas KS Marion 115 38.5534 -97.1774 +US 66262 Shawnee Mission Kansas KS Marshall County 117 39.0198 -94.665 +US 66403 Axtell Kansas KS Marshall 117 39.8707 -96.2676 +US 66406 Beattie Kansas KS Marshall 117 39.8988 -96.4286 +US 66411 Blue Rapids Kansas KS Marshall 117 39.675 -96.6359 +US 66412 Bremen Kansas KS Marshall 117 39.8775 -96.7458 +US 66427 Frankfort Kansas KS Marshall 117 39.7333 -96.5223 +US 66433 Marysville Kansas KS Marshall County 117 39.9563 -96.7469 +US 66438 Home Kansas KS Marshall 117 39.8488 -96.5063 +US 66508 Marysville Kansas KS Marshall 117 39.8428 -96.6422 +US 66518 Oketo Kansas KS Marshall 117 39.9598 -96.6235 +US 66541 Summerfield Kansas KS Marshall 117 39.9798 -96.3279 +US 66544 Vermillion Kansas KS Marshall 117 39.6946 -96.278 +US 66545 Vliets Kansas KS Marshall County 117 39.6962 -96.3416 +US 66548 Waterville Kansas KS Marshall 117 39.6971 -96.7498 +US 66555 Marysville Kansas KS Marshall 117 39.7838 -96.5228 +US 67844 Fowler Kansas KS Meade 119 37.3542 -100.1981 +US 67864 Meade Kansas KS Meade 119 37.2821 -100.3364 +US 67869 Plains Kansas KS Meade 119 37.2701 -100.5732 +US 66013 Bucyrus Kansas KS Miami 121 38.7283 -94.6887 +US 66026 Fontana Kansas KS Miami 121 38.4102 -94.8718 +US 66036 Hillsdale Kansas KS Miami 121 38.6581 -94.8521 +US 66053 Louisburg Kansas KS Miami 121 38.6073 -94.6829 +US 66064 Osawatomie Kansas KS Miami 121 38.4888 -94.962 +US 66071 Paola Kansas KS Miami 121 38.572 -94.8937 +US 67420 Beloit Kansas KS Mitchell 123 39.4416 -98.1192 +US 67429 Carlton Kansas KS Mitchell County 123 38.6715 -97.3064 +US 67430 Cawker City Kansas KS Mitchell 123 39.5115 -98.4335 +US 67446 Glen Elder Kansas KS Mitchell 123 39.4958 -98.3155 +US 67452 Hunter Kansas KS Mitchell 123 39.243 -98.4017 +US 67478 Simpson Kansas KS Mitchell 123 39.3851 -97.9328 +US 67485 Tipton Kansas KS Mitchell 123 39.3436 -98.4644 +US 67301 Independence Kansas KS Montgomery 125 37.2292 -95.7165 +US 67333 Caney Kansas KS Montgomery 125 37.0224 -95.9091 +US 67335 Cherryvale Kansas KS Montgomery 125 37.2668 -95.559 +US 67337 Coffeyville Kansas KS Montgomery 125 37.0441 -95.6328 +US 67340 Dearing Kansas KS Montgomery 125 37.0596 -95.7131 +US 67344 Elk City Kansas KS Montgomery 125 37.3146 -95.9135 +US 67347 Havana Kansas KS Montgomery 125 37.0917 -95.9414 +US 67351 Liberty Kansas KS Montgomery 125 37.1576 -95.6017 +US 67363 Sycamore Kansas KS Montgomery 125 37.3281 -95.717 +US 67364 Tyro Kansas KS Montgomery 125 37.037 -95.8237 +US 66838 Burdick Kansas KS Morris 127 38.5674 -96.8396 +US 66846 Council Grove Kansas KS Morris 127 38.6959 -96.5469 +US 66849 Dwight Kansas KS Morris 127 38.8389 -96.5802 +US 66872 White City Kansas KS Morris 127 38.789 -96.7637 +US 66873 Wilsey Kansas KS Morris 127 38.6821 -96.6639 +US 67950 Elkhart Kansas KS Morton 129 37.0154 -101.9012 +US 67953 Richfield Kansas KS Morton 129 37.2834 -101.7004 +US 67954 Rolla Kansas KS Morton 129 37.1089 -101.6447 +US 66404 Baileyville Kansas KS Nemaha 131 39.8816 -96.1801 +US 66408 Bern Kansas KS Nemaha 131 39.9571 -95.961 +US 66415 Centralia Kansas KS Nemaha 131 39.7381 -96.1486 +US 66417 Corning Kansas KS Nemaha 131 39.657 -96.0776 +US 66428 Goff Kansas KS Nemaha 131 39.6654 -95.9574 +US 66522 Oneida Kansas KS Nemaha 131 39.8659 -95.9392 +US 66534 Sabetha Kansas KS Nemaha 131 39.8993 -95.8113 +US 66538 Seneca Kansas KS Nemaha 131 39.8473 -96.0316 +US 66550 Wetmore Kansas KS Nemaha 131 39.6428 -95.8231 +US 66720 Chanute Kansas KS Neosho 133 37.6749 -95.457 +US 66733 Erie Kansas KS Neosho 133 37.6044 -95.2514 +US 66740 Galesburg Kansas KS Neosho 133 37.4724 -95.3707 +US 66771 Saint Paul Kansas KS Neosho 133 37.518 -95.1688 +US 66775 Stark Kansas KS Neosho 133 37.6811 -95.1388 +US 66776 Thayer Kansas KS Neosho 133 37.4527 -95.4671 +US 67515 Arnold Kansas KS Ness 135 38.6091 -100.012 +US 67516 Bazine Kansas KS Ness 135 38.4565 -99.7016 +US 67518 Beeler Kansas KS Ness 135 38.4811 -100.171 +US 67521 Brownell Kansas KS Ness 135 38.6239 -99.7328 +US 67560 Ness City Kansas KS Ness 135 38.4388 -99.9029 +US 67572 Ransom Kansas KS Ness 135 38.64 -99.9267 +US 67584 Utica Kansas KS Ness 135 38.6411 -100.138 +US 67622 Almena Kansas KS Norton 137 39.8891 -99.7042 +US 67629 Clayton Kansas KS Norton 137 39.7843 -99.903 +US 67636 Edmond Kansas KS Norton County 137 39.6745 -99.7528 +US 67645 Lenora Kansas KS Norton 137 39.6105 -100.0028 +US 67652 New Almelo Kansas KS Norton County 137 39.627 -100.1358 +US 67654 Norton Kansas KS Norton 137 39.8407 -99.8878 +US 66413 Burlingame Kansas KS Osage 139 38.7634 -95.84 +US 66414 Carbondale Kansas KS Osage 139 38.8206 -95.6871 +US 66451 Lyndon Kansas KS Osage 139 38.6356 -95.6802 +US 66510 Melvern Kansas KS Osage 139 38.5027 -95.629 +US 66523 Osage City Kansas KS Osage 139 38.6269 -95.8303 +US 66524 Overbrook Kansas KS Osage 139 38.7922 -95.5616 +US 66528 Quenemo Kansas KS Osage 139 38.5785 -95.5362 +US 66537 Scranton Kansas KS Osage 139 38.788 -95.748 +US 66543 Vassar Kansas KS Osage 139 38.6419 -95.6012 +US 67437 Downs Kansas KS Osborne 141 39.5028 -98.5441 +US 67473 Osborne Kansas KS Osborne 141 39.4194 -98.6961 +US 67474 Portis Kansas KS Osborne 141 39.5455 -98.6904 +US 67623 Alton Kansas KS Osborne 141 39.4514 -98.9539 +US 67651 Natoma Kansas KS Osborne 141 39.2013 -98.9829 +US 67422 Bennington Kansas KS Ottawa 143 39.0224 -97.6031 +US 67436 Delphos Kansas KS Ottawa 143 39.2731 -97.7717 +US 67467 Minneapolis Kansas KS Ottawa 143 39.1295 -97.6688 +US 67484 Tescott Kansas KS Ottawa 143 38.9916 -97.8319 +US 67488 Wells Kansas KS Ottawa County 143 39.0506 -97.535 +US 67523 Burdett Kansas KS Pawnee 145 38.2104 -99.5275 +US 67529 Garfield Kansas KS Pawnee 145 38.0649 -99.2374 +US 67550 Larned Kansas KS Pawnee 145 38.1946 -99.101 +US 67574 Rozel Kansas KS Pawnee 145 38.2148 -99.4048 +US 67621 Agra Kansas KS Phillips 147 39.8037 -99.1255 +US 67639 Glade Kansas KS Phillips 147 39.6704 -99.2996 +US 67644 Kirwin Kansas KS Phillips 147 39.6717 -99.1204 +US 67646 Logan Kansas KS Phillips 147 39.6611 -99.5687 +US 67647 Long Island Kansas KS Phillips 147 39.9517 -99.5391 +US 67661 Phillipsburg Kansas KS Phillips 147 39.7623 -99.3328 +US 67664 Prairie View Kansas KS Phillips 147 39.837 -99.5683 +US 67670 Stuttgart Kansas KS Phillips 147 39.7847 -99.3471 +US 66407 Belvue Kansas KS Pottawatomie 149 39.2273 -96.1866 +US 66422 Emmett Kansas KS Pottawatomie 149 39.3048 -96.0593 +US 66426 Fostoria Kansas KS Pottawatomie 149 39.4398 -96.5068 +US 66432 Havensville Kansas KS Pottawatomie 149 39.4942 -96.0769 +US 66450 Louisville Kansas KS Pottawatomie 149 39.2618 -96.3332 +US 66520 Olsburg Kansas KS Pottawatomie 149 39.4125 -96.6002 +US 66521 Onaga Kansas KS Pottawatomie 149 39.4424 -96.3443 +US 66535 Saint George Kansas KS Pottawatomie 149 39.2108 -96.4345 +US 66536 Saint Marys Kansas KS Pottawatomie 149 39.1987 -96.0683 +US 66547 Wamego Kansas KS Pottawatomie 149 39.21 -96.3153 +US 66549 Westmoreland Kansas KS Pottawatomie 149 39.4138 -96.4374 +US 66551 Wheaton Kansas KS Pottawatomie 149 39.4717 -96.2576 +US 67021 Byers Kansas KS Pratt 151 37.7847 -98.9017 +US 67028 Coats Kansas KS Pratt 151 37.5125 -98.8504 +US 67066 Iuka Kansas KS Pratt 151 37.7397 -98.7361 +US 67124 Pratt Kansas KS Pratt 151 37.6502 -98.73 +US 67134 Sawyer Kansas KS Pratt 151 37.5101 -98.6642 +US 67569 Preston Kansas KS Pratt County 151 37.805 -98.4289 +US 67730 Atwood Kansas KS Rawlins 153 39.7926 -101.0318 +US 67739 Herndon Kansas KS Rawlins 153 39.9036 -100.8139 +US 67744 Ludell Kansas KS Rawlins 153 39.863 -100.9604 +US 67745 Mc Donald Kansas KS Rawlins 153 39.7923 -101.3227 +US 67501 Hutchinson Kansas KS Reno 155 38.055 -97.9311 +US 67502 Hutchinson Kansas KS Reno 155 38.1156 -97.8937 +US 67504 Hutchinson Kansas KS Reno 155 37.9532 -98.0859 +US 67505 South Hutchinson Kansas KS Reno 155 38.0282 -97.9431 +US 67510 Abbyville Kansas KS Reno 155 37.9626 -98.2071 +US 67514 Arlington Kansas KS Reno 155 37.8598 -98.159 +US 67522 Buhler Kansas KS Reno 155 38.1309 -97.7691 +US 67543 Haven Kansas KS Reno 155 37.8686 -97.7772 +US 67561 Nickerson Kansas KS Reno 155 38.1412 -98.0674 +US 67566 Partridge Kansas KS Reno 155 37.9671 -98.0798 +US 67568 Plevna Kansas KS Reno 155 37.9658 -98.2988 +US 67570 Pretty Prairie Kansas KS Reno 155 37.7783 -97.9886 +US 67581 Sylvia Kansas KS Reno 155 37.9557 -98.4068 +US 67583 Turon Kansas KS Reno 155 37.8224 -98.3591 +US 67585 Yoder Kansas KS Reno 155 37.9412 -97.8711 +US 66930 Agenda Kansas KS Republic 157 39.7044 -97.4465 +US 66935 Belleville Kansas KS Republic 157 39.8241 -97.629 +US 66939 Courtland Kansas KS Republic 157 39.7851 -97.89 +US 66940 Cuba Kansas KS Republic 157 39.7975 -97.4496 +US 66959 Munden Kansas KS Republic 157 39.9272 -97.5403 +US 66960 Narka Kansas KS Republic 157 39.9582 -97.4243 +US 66961 Norway Kansas KS Republic 157 39.8279 -97.6509 +US 66964 Republic Kansas KS Republic 157 39.9376 -97.8435 +US 66966 Scandia Kansas KS Republic 157 39.7939 -97.7786 +US 67427 Bushton Kansas KS Rice 159 38.5018 -98.4016 +US 67444 Geneseo Kansas KS Rice 159 38.5037 -98.1858 +US 67457 Little River Kansas KS Rice 159 38.4079 -98.0113 +US 67512 Alden Kansas KS Rice 159 38.2343 -98.3112 +US 67524 Chase Kansas KS Rice 159 38.3635 -98.3556 +US 67554 Lyons Kansas KS Rice 159 38.3349 -98.1831 +US 67573 Raymond Kansas KS Rice 159 38.2877 -98.4119 +US 67579 Sterling Kansas KS Rice 159 38.2126 -98.2055 +US 66449 Leonardville Kansas KS Riley 161 39.3652 -96.8312 +US 66502 Manhattan Kansas KS Riley 161 39.1938 -96.5858 +US 66503 Manhattan Kansas KS Riley 161 39.2458 -96.6336 +US 66505 Manhattan Kansas KS Riley 161 39.3049 -96.6753 +US 66506 Manhattan Kansas KS Riley 161 39.196 -96.5839 +US 66517 Ogden Kansas KS Riley 161 39.1153 -96.7101 +US 66531 Riley Kansas KS Riley 161 39.3005 -96.8222 +US 66554 Randolph Kansas KS Riley 161 39.4879 -96.7828 +US 67630 Codell Kansas KS Rooks County 163 39.2277 -99.135 +US 67632 Damar Kansas KS Rooks 163 39.3242 -99.5811 +US 67657 Palco Kansas KS Rooks 163 39.2531 -99.5593 +US 67663 Plainville Kansas KS Rooks 163 39.2308 -99.3008 +US 67669 Stockton Kansas KS Rooks 163 39.4376 -99.2871 +US 67675 Woodston Kansas KS Rooks 163 39.4431 -99.1037 +US 67513 Alexander Kansas KS Rush 165 38.457 -99.5378 +US 67520 Bison Kansas KS Rush 165 38.5193 -99.1986 +US 67548 La Crosse Kansas KS Rush 165 38.5311 -99.3097 +US 67553 Liebenthal Kansas KS Rush 165 38.6557 -99.3203 +US 67556 Mc Cracken Kansas KS Rush 165 38.5957 -99.554 +US 67559 Nekoma Kansas KS Rush 165 38.4372 -99.4234 +US 67565 Otis Kansas KS Rush 165 38.5353 -99.0534 +US 67575 Rush Center Kansas KS Rush 165 38.4533 -99.3079 +US 67582 Timken Kansas KS Rush County 165 38.4391 -99.1932 +US 67626 Bunker Hill Kansas KS Russell 167 38.8357 -98.6783 +US 67634 Dorrance Kansas KS Russell 167 38.8348 -98.5695 +US 67640 Gorham Kansas KS Russell 167 38.8722 -99.0112 +US 67648 Lucas Kansas KS Russell 167 39.0581 -98.5352 +US 67649 Luray Kansas KS Russell 167 39.1039 -98.6851 +US 67658 Paradise Kansas KS Russell 167 39.0756 -98.9207 +US 67665 Russell Kansas KS Russell 167 38.8806 -98.8595 +US 67673 Waldo Kansas KS Russell 167 39.0877 -98.7785 +US 67401 Salina Kansas KS Saline 169 38.8237 -97.6421 +US 67402 Salina Kansas KS Saline 169 38.7836 -97.6504 +US 67416 Assaria Kansas KS Saline 169 38.6676 -97.6203 +US 67425 Brookville Kansas KS Saline 169 38.7858 -97.863 +US 67442 Falun Kansas KS Saline 169 38.6648 -97.7554 +US 67448 Gypsum Kansas KS Saline 169 38.7047 -97.4338 +US 67465 Mentor Kansas KS Saline County 169 38.7398 -97.6044 +US 67470 New Cambria Kansas KS Saline 169 38.896 -97.523 +US 67479 Smolan Kansas KS Saline County 169 38.7179 -97.6869 +US 67871 Scott City Kansas KS Scott 171 38.4823 -100.9064 +US 67001 Andale Kansas KS Sedgwick 173 37.7797 -97.6366 +US 67016 Bentley Kansas KS Sedgwick 173 37.8866 -97.5166 +US 67025 Cheney Kansas KS Sedgwick 173 37.6353 -97.7686 +US 67026 Clearwater Kansas KS Sedgwick 173 37.5076 -97.5082 +US 67030 Colwich Kansas KS Sedgwick 173 37.7782 -97.5405 +US 67037 Derby Kansas KS Sedgwick 173 37.553 -97.2549 +US 67050 Garden Plain Kansas KS Sedgwick 173 37.6767 -97.66 +US 67052 Goddard Kansas KS Sedgwick 173 37.6575 -97.5364 +US 67055 Greenwich Kansas KS Sedgwick 173 37.7833 -97.2054 +US 67060 Haysville Kansas KS Sedgwick 173 37.5647 -97.3553 +US 67067 Kechi Kansas KS Sedgwick 173 37.7934 -97.2737 +US 67101 Maize Kansas KS Sedgwick 173 37.7747 -97.4689 +US 67108 Mount Hope Kansas KS Sedgwick 173 37.8684 -97.6591 +US 67120 Peck Kansas KS Sedgwick 173 37.5054 -97.3408 +US 67147 Valley Center Kansas KS Sedgwick 173 37.8616 -97.2621 +US 67149 Viola Kansas KS Sedgwick 173 37.5696 -97.6306 +US 67201 Wichita Kansas KS Sedgwick 173 37.652 -97.259 +US 67202 Wichita Kansas KS Sedgwick 173 37.6899 -97.3355 +US 67203 Wichita Kansas KS Sedgwick 173 37.7048 -97.3638 +US 67204 Wichita Kansas KS Sedgwick 173 37.7488 -97.3566 +US 67205 Wichita Kansas KS Sedgwick 173 37.7639 -97.4269 +US 67206 Wichita Kansas KS Sedgwick 173 37.7038 -97.2253 +US 67207 Wichita Kansas KS Sedgwick 173 37.671 -97.2179 +US 67208 Wichita Kansas KS Sedgwick 173 37.7024 -97.2811 +US 67209 Wichita Kansas KS Sedgwick 173 37.6779 -97.4235 +US 67210 Wichita Kansas KS Sedgwick 173 37.6379 -97.2613 +US 67211 Wichita Kansas KS Sedgwick 173 37.6662 -97.3165 +US 67212 Wichita Kansas KS Sedgwick 173 37.7007 -97.4383 +US 67213 Wichita Kansas KS Sedgwick 173 37.668 -97.3591 +US 67214 Wichita Kansas KS Sedgwick 173 37.7051 -97.3133 +US 67215 Wichita Kansas KS Sedgwick 173 37.6333 -97.425 +US 67216 Wichita Kansas KS Sedgwick 173 37.6223 -97.3136 +US 67217 Wichita Kansas KS Sedgwick 173 37.6266 -97.3581 +US 67218 Wichita Kansas KS Sedgwick 173 37.669 -97.2802 +US 67219 Wichita Kansas KS Sedgwick 173 37.7719 -97.3175 +US 67220 Wichita Kansas KS Sedgwick 173 37.7667 -97.2805 +US 67221 Mc Connell A F B Kansas KS Sedgwick 173 37.6282 -97.2663 +US 67221 Mcconnell Afb Kansas KS Sedgwick 173 37.6066 -97.2979 +US 67223 Wichita Kansas KS Sedgwick 173 37.7367 -97.499 +US 67226 Wichita Kansas KS Sedgwick 173 37.7379 -97.2479 +US 67227 Wichita Kansas KS Sedgwick 173 37.6281 -97.4916 +US 67228 Wichita Kansas KS Sedgwick 173 37.7742 -97.1711 +US 67230 Wichita Kansas KS Sedgwick 173 37.6808 -97.1558 +US 67231 Wichita Kansas KS Sedgwick 173 37.5567 -97.4102 +US 67232 Wichita Kansas KS Sedgwick 173 37.6395 -97.1714 +US 67233 Wichita Kansas KS Sedgwick 173 37.5425 -97.352 +US 67235 Wichita Kansas KS Sedgwick 173 37.7149 -97.499 +US 67236 Wichita Kansas KS Sedgwick 173 37.5422 -97.2871 +US 67251 Wichita Kansas KS Sedgwick 173 37.6936 -97.4804 +US 67256 Wichita Kansas KS Sedgwick 173 37.6936 -97.4804 +US 67257 Wichita Kansas KS Sedgwick 173 37.6936 -97.4804 +US 67259 Wichita Kansas KS Sedgwick 173 37.6936 -97.4804 +US 67260 Wichita Kansas KS Sedgwick 173 37.7194 -97.2936 +US 67275 Wichita Kansas KS Sedgwick 173 37.6936 -97.4804 +US 67276 Wichita Kansas KS Sedgwick 173 37.6936 -97.4804 +US 67277 Wichita Kansas KS Sedgwick 173 37.6936 -97.4804 +US 67278 Wichita Kansas KS Sedgwick 173 37.6936 -97.4804 +US 67759 Studley Kansas KS Seward County 175 39.2616 -100.2814 +US 67859 Kismet Kansas KS Seward 175 37.2042 -100.7014 +US 67901 Liberal Kansas KS Seward 175 37.0438 -100.9286 +US 67905 Liberal Kansas KS Seward 175 37.0216 -100.938 +US 66402 Auburn Kansas KS Shawnee 177 38.9167 -95.8199 +US 66409 Berryton Kansas KS Shawnee 177 38.9442 -95.5825 +US 66420 Dover Kansas KS Shawnee 177 38.9645 -95.9172 +US 66533 Rossville Kansas KS Shawnee 177 39.1451 -95.9553 +US 66539 Silver Lake Kansas KS Shawnee 177 39.1102 -95.8552 +US 66542 Tecumseh Kansas KS Shawnee 177 39.0217 -95.5379 +US 66546 Wakarusa Kansas KS Shawnee 177 38.9045 -95.7015 +US 66601 Topeka Kansas KS Shawnee 177 38.9881 -95.7807 +US 66603 Topeka Kansas KS Shawnee 177 39.0553 -95.6802 +US 66604 Topeka Kansas KS Shawnee 177 39.0405 -95.7178 +US 66605 Topeka Kansas KS Shawnee 177 39.0151 -95.6439 +US 66606 Topeka Kansas KS Shawnee 177 39.0583 -95.7095 +US 66607 Topeka Kansas KS Shawnee 177 39.0421 -95.6449 +US 66608 Topeka Kansas KS Shawnee 177 39.0858 -95.6867 +US 66609 Topeka Kansas KS Shawnee 177 38.9919 -95.6681 +US 66610 Topeka Kansas KS Shawnee 177 38.9822 -95.7461 +US 66611 Topeka Kansas KS Shawnee 177 39.0142 -95.6981 +US 66612 Topeka Kansas KS Shawnee 177 39.0427 -95.6818 +US 66614 Topeka Kansas KS Shawnee 177 39.0154 -95.7469 +US 66615 Topeka Kansas KS Shawnee 177 39.0446 -95.7906 +US 66616 Topeka Kansas KS Shawnee 177 39.0645 -95.6413 +US 66617 Topeka Kansas KS Shawnee 177 39.1271 -95.6384 +US 66618 Topeka Kansas KS Shawnee 177 39.1329 -95.7023 +US 66619 Topeka Kansas KS Shawnee 177 38.9536 -95.7236 +US 66620 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66621 Topeka Kansas KS Shawnee 177 39.0333 -95.7015 +US 66622 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66624 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66625 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66626 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66628 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66629 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66634 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66636 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66637 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66638 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66642 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66647 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66652 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66653 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66658 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66667 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66675 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66683 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66686 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66692 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 66699 Topeka Kansas KS Shawnee 177 39.0429 -95.7697 +US 67740 Hoxie Kansas KS Sheridan 179 39.3322 -100.4758 +US 67757 Selden Kansas KS Sheridan 179 39.5216 -100.5257 +US 67733 Edson Kansas KS Sherman 181 39.3579 -101.521 +US 67735 Goodland Kansas KS Sherman 181 39.3491 -101.7164 +US 67741 Kanorado Kansas KS Sherman 181 39.3438 -102.0015 +US 66932 Athol Kansas KS Smith 183 39.7719 -98.9077 +US 66951 Kensington Kansas KS Smith 183 39.7692 -99.0308 +US 66952 Lebanon Kansas KS Smith 183 39.8077 -98.556 +US 66967 Smith Center Kansas KS Smith 183 39.8042 -98.7842 +US 67628 Cedar Kansas KS Smith 183 39.6602 -98.9369 +US 67638 Gaylord Kansas KS Smith 183 39.6599 -98.8018 +US 67641 Harlan Kansas KS Smith County 183 39.6103 -98.7833 +US 67545 Hudson Kansas KS Stafford 185 38.1485 -98.6408 +US 67557 Macksville Kansas KS Stafford 185 37.9433 -98.9481 +US 67576 Saint John Kansas KS Stafford 185 38.0309 -98.7647 +US 67577 Seward Kansas KS Stafford County 185 38.2076 -98.7622 +US 67578 Stafford Kansas KS Stafford 185 37.9554 -98.5929 +US 67855 Johnson Kansas KS Stanton 187 37.5694 -101.7194 +US 67862 Manter Kansas KS Stanton 187 37.5451 -101.9109 +US 67951 Hugoton Kansas KS Stevens 189 37.1682 -101.3346 +US 67952 Moscow Kansas KS Stevens 189 37.3172 -101.2427 +US 67004 Argonia Kansas KS Sumner 191 37.284 -97.7557 +US 67013 Belle Plaine Kansas KS Sumner 191 37.4052 -97.2852 +US 67015 Belvidere Kansas KS Sumner County 191 37.4501 -99.0797 +US 67022 Caldwell Kansas KS Sumner 191 37.0452 -97.6247 +US 67031 Conway Springs Kansas KS Sumner 191 37.3903 -97.6284 +US 67032 Caldwell Kansas KS Sumner County 191 37.0644 -97.5251 +US 67051 Geuda Springs Kansas KS Sumner 191 37.0809 -97.1795 +US 67103 Mayfield Kansas KS Sumner 191 37.2518 -97.5416 +US 67105 Milan Kansas KS Sumner 191 37.2578 -97.6521 +US 67106 Milton Kansas KS Sumner 191 37.4401 -97.7592 +US 67110 Mulvane Kansas KS Sumner 191 37.4764 -97.232 +US 67119 Oxford Kansas KS Sumner 191 37.2653 -97.1761 +US 67140 South Haven Kansas KS Sumner 191 37.05 -97.4042 +US 67152 Wellington Kansas KS Sumner 191 37.2778 -97.391 +US 67701 Colby Kansas KS Thomas 193 39.383 -101.0442 +US 67732 Brewster Kansas KS Thomas 193 39.3655 -101.373 +US 67734 Gem Kansas KS Thomas 193 39.4296 -100.8948 +US 67743 Levant Kansas KS Thomas 193 39.3841 -101.2096 +US 67753 Rexford Kansas KS Thomas 193 39.4267 -100.7461 +US 67631 Collyer Kansas KS Trego 195 39.0038 -100.0862 +US 67656 Ogallah Kansas KS Trego 195 38.9144 -99.8729 +US 67672 Wa Keeney Kansas KS Trego 195 39.0114 -99.8818 +US 66401 Alma Kansas KS Wabaunsee 197 39.0092 -96.2923 +US 66423 Eskridge Kansas KS Wabaunsee 197 38.8514 -96.1016 +US 66431 Harveyville Kansas KS Wabaunsee 197 38.8574 -95.9962 +US 66501 Mc Farland Kansas KS Wabaunsee 197 39.0535 -96.2379 +US 66507 Maple Hill Kansas KS Wabaunsee 197 39.0447 -96.0397 +US 66526 Paxico Kansas KS Wabaunsee 197 39.0803 -96.1818 +US 66834 Alta Vista Kansas KS Wabaunsee 197 38.8636 -96.48 +US 67758 Sharon Springs Kansas KS Wallace 199 38.8857 -101.7431 +US 67761 Wallace Kansas KS Wallace 199 38.8747 -101.5735 +US 67762 Weskan Kansas KS Wallace 199 38.8649 -101.9512 +US 66933 Barnes Kansas KS Washington 201 39.6841 -96.8676 +US 66937 Clifton Kansas KS Washington 201 39.6201 -97.2611 +US 66943 Greenleaf Kansas KS Washington 201 39.7061 -96.9775 +US 66944 Haddam Kansas KS Washington 201 39.852 -97.3081 +US 66945 Hanover Kansas KS Washington 201 39.8927 -96.8689 +US 66946 Hollenberg Kansas KS Washington 201 39.96 -96.9735 +US 66953 Linn Kansas KS Washington 201 39.6847 -97.0854 +US 66955 Mahaska Kansas KS Washington 201 39.9845 -97.3453 +US 66958 Morrowville Kansas KS Washington 201 39.8616 -97.1825 +US 66962 Palmer Kansas KS Washington 201 39.6192 -97.1122 +US 66968 Washington Kansas KS Washington 201 39.8223 -97.0484 +US 67861 Leoti Kansas KS Wichita 203 38.4987 -101.3589 +US 67863 Marienthal Kansas KS Wichita 203 38.4837 -101.2839 +US 66710 Altoona Kansas KS Wilson 205 37.5197 -95.6483 +US 66714 Benedict Kansas KS Wilson 205 37.6118 -95.7038 +US 66717 Buffalo Kansas KS Wilson 205 37.7011 -95.7014 +US 66727 Coyville Kansas KS Wilson 205 37.5592 -95.7438 +US 66736 Fredonia Kansas KS Wilson 205 37.5717 -95.7484 +US 66757 Neodesha Kansas KS Wilson 205 37.4257 -95.6765 +US 66759 New Albany Kansas KS Wilson 205 37.569 -95.9379 +US 66758 Neosho Falls Kansas KS Woodson 207 37.9669 -95.5497 +US 66761 Piqua Kansas KS Woodson 207 37.8728 -95.59 +US 66777 Toronto Kansas KS Woodson 207 37.7953 -95.9368 +US 66783 Yates Center Kansas KS Woodson 207 37.8801 -95.7289 +US 66012 Bonner Springs Kansas KS Wyandotte 209 39.0672 -94.9227 +US 66101 Kansas City Kansas KS Wyandotte 209 39.1157 -94.6271 +US 66102 Kansas City Kansas KS Wyandotte 209 39.1132 -94.6693 +US 66103 Kansas City Kansas KS Wyandotte 209 39.0668 -94.6282 +US 66104 Kansas City Kansas KS Wyandotte 209 39.1375 -94.6792 +US 66105 Kansas City Kansas KS Wyandotte 209 39.085 -94.6356 +US 66106 Kansas City Kansas KS Wyandotte 209 39.0694 -94.7178 +US 66109 Kansas City Kansas KS Wyandotte 209 39.1434 -94.7856 +US 66110 Kansas City Kansas KS Wyandotte 209 39.0966 -94.7495 +US 66111 Kansas City Kansas KS Wyandotte 209 39.0803 -94.7806 +US 66112 Kansas City Kansas KS Wyandotte 209 39.116 -94.764 +US 66113 Edwardsville Kansas KS Wyandotte 209 39.0735 -94.7233 +US 66115 Kansas City Kansas KS Wyandotte 209 39.1364 -94.616 +US 66117 Kansas City Kansas KS Wyandotte 209 39.0966 -94.7495 +US 66118 Kansas City Kansas KS Wyandotte 209 39.1011 -94.6144 +US 66119 Kansas City Kansas KS Wyandotte 209 39.0966 -94.7495 +US 66160 Kansas City Kansas KS Wyandotte 209 39.0966 -94.7495 +US 41728 Cinda Kentucky KY Adair County 001 37.0884 -83.298 +US 42715 Breeding Kentucky KY Adair 001 36.9553 -85.4036 +US 42720 Cane Valley Kentucky KY Adair 001 37.1211 -85.3709 +US 42723 Casey Creek Kentucky KY Adair County 001 37.2719 -85.203 +US 42728 Columbia Kentucky KY Adair 001 37.1161 -85.2656 +US 42730 Cundiff Kentucky KY Adair County 001 36.9501 -85.2551 +US 42735 Fairplay Kentucky KY Adair 001 37.0451 -85.2968 +US 42741 Glens Fork Kentucky KY Adair 001 37.007 -85.2487 +US 42742 Gradyville Kentucky KY Adair 001 37.0912 -85.465 +US 42753 Knifley Kentucky KY Adair 001 37.2313 -85.172 +US 42761 Milltown Kentucky KY Adair 001 37.1071 -85.4596 +US 42763 Montpelier Kentucky KY Adair County 001 37.1367 -85.2374 +US 42120 Adolphus Kentucky KY Allen 003 36.6775 -86.2636 +US 42150 Halfway Kentucky KY Allen 003 36.7821 -86.1841 +US 42153 Holland Kentucky KY Allen 003 36.6673 -86.0498 +US 42164 Scottsville Kentucky KY Allen 003 36.7614 -86.1929 +US 40342 Lawrenceburg Kentucky KY Anderson 005 38.0189 -84.9299 +US 42022 Bandana Kentucky KY Ballard 007 37.1459 -88.9455 +US 42024 Barlow Kentucky KY Ballard 007 37.0493 -89.0408 +US 42026 Blandville Kentucky KY Ballard County 007 36.9435 -88.9637 +US 42056 La Center Kentucky KY Ballard 007 37.083 -88.973 +US 42060 Lovelaceville Kentucky KY Ballard 007 36.9637 -88.8364 +US 42087 Wickliffe Kentucky KY Ballard 007 36.968 -89.0177 +US 42123 Austin Kentucky KY Barren 009 36.8124 -85.985 +US 42127 Cave City Kentucky KY Barren 009 37.117 -85.9443 +US 42130 Eighty Eight Kentucky KY Barren 009 36.913 -85.7753 +US 42131 Etoile Kentucky KY Barren 009 36.8134 -85.9173 +US 42141 Glasgow Kentucky KY Barren 009 36.9882 -85.9221 +US 42142 Glasgow Kentucky KY Barren 009 36.9463 -85.9578 +US 42152 Hiseville Kentucky KY Barren 009 37.0988 -85.8165 +US 42156 Lucas Kentucky KY Barren 009 36.8516 -86.0523 +US 42160 Park City Kentucky KY Barren 009 37.0785 -86.0748 +US 40358 Olympia Kentucky KY Bath 011 38.0849 -83.7008 +US 40360 Owingsville Kentucky KY Bath 011 38.1532 -83.7564 +US 40366 Preston Kentucky KY Bath 011 38.0867 -83.7571 +US 40371 Salt Lick Kentucky KY Bath 011 38.104 -83.6316 +US 40374 Sharpsburg Kentucky KY Bath 011 38.2147 -83.8932 +US 40813 Calvin Kentucky KY Bell 013 36.7146 -83.6405 +US 40845 Hulen Kentucky KY Bell 013 36.7714 -83.5551 +US 40856 Miracle Kentucky KY Bell 013 36.7692 -83.7082 +US 40902 Arjay Kentucky KY Bell 013 36.8283 -83.6415 +US 40913 Beverly Kentucky KY Bell 013 36.9442 -83.556 +US 40940 Frakes Kentucky KY Bell 013 36.607 -83.9484 +US 40955 Ingram Kentucky KY Bell 013 36.7692 -83.7082 +US 40958 Kettle Island Kentucky KY Bell 013 36.8093 -83.5892 +US 40965 Middlesboro Kentucky KY Bell 013 36.6172 -83.7231 +US 40977 Pineville Kentucky KY Bell 013 36.7159 -83.7668 +US 40988 Stoney Fork Kentucky KY Bell 013 36.8892 -83.5385 +US 41005 Burlington Kentucky KY Boone 015 39.015 -84.7736 +US 41022 Florence Kentucky KY Boone 015 38.9624 -84.7478 +US 41042 Florence Kentucky KY Boone 015 38.9941 -84.642 +US 41048 Hebron Kentucky KY Boone 015 39.0755 -84.7007 +US 41080 Petersburg Kentucky KY Boone 015 39.0416 -84.8371 +US 41091 Union Kentucky KY Boone 015 38.9435 -84.7274 +US 41092 Verona Kentucky KY Boone 015 38.839 -84.6907 +US 41094 Walton Kentucky KY Boone 015 38.8875 -84.6328 +US 41901 Migrate Kentucky KY Boone County 015 38.0638 -84.5027 +US 40348 Millersburg Kentucky KY Bourbon 017 38.2963 -84.1513 +US 40357 North Middletown Kentucky KY Bourbon 017 38.1464 -84.1077 +US 40361 Paris Kentucky KY Bourbon 017 38.2083 -84.245 +US 40362 Paris Kentucky KY Bourbon 017 38.2194 -84.2059 +US 41101 Ashland Kentucky KY Boyd 019 38.4722 -82.6461 +US 41102 Ashland Kentucky KY Boyd 019 38.4218 -82.7173 +US 41105 Ashland Kentucky KY Boyd 019 38.3703 -82.6948 +US 41114 Ashland Kentucky KY Boyd 019 38.3703 -82.6948 +US 41129 Catlettsburg Kentucky KY Boyd 019 38.3799 -82.6321 +US 41168 Rush Kentucky KY Boyd 019 38.3089 -82.7476 +US 40422 Danville Kentucky KY Boyle 021 37.6465 -84.7747 +US 40423 Danville Kentucky KY Boyle 021 37.6247 -84.8458 +US 40440 Junction City Kentucky KY Boyle 021 37.5822 -84.8028 +US 40452 Mitchellsburg Kentucky KY Boyle 021 37.6033 -84.9492 +US 40464 Parksville Kentucky KY Boyle 021 37.5778 -84.9281 +US 40468 Perryville Kentucky KY Boyle 021 37.6375 -84.9665 +US 41002 Augusta Kentucky KY Bracken 023 38.763 -83.9954 +US 41004 Brooksville Kentucky KY Bracken 023 38.6644 -84.0786 +US 41043 Foster Kentucky KY Bracken 023 38.7506 -84.1566 +US 41044 Germantown Kentucky KY Bracken 023 38.6357 -83.99 +US 41061 Milford Kentucky KY Bracken 023 38.6886 -84.0701 +US 41307 Athol Kentucky KY Breathitt 025 37.515 -83.2643 +US 41310 Bays Kentucky KY Breathitt 025 37.6405 -83.2441 +US 41317 Clayhole Kentucky KY Breathitt 025 37.4476 -83.1892 +US 41339 Jackson Kentucky KY Breathitt 025 37.4868 -83.2913 +US 41340 Lambric Kentucky KY Breathitt County 025 37.5565 -83.0517 +US 41346 Little Kentucky KY Breathitt County 025 37.4322 -83.3824 +US 41348 Lost Creek Kentucky KY Breathitt 025 37.4418 -83.2976 +US 41357 Noctor Kentucky KY Breathitt County 025 37.574 -83.2732 +US 41363 Quicksand Kentucky KY Breathitt County 025 37.5331 -83.3652 +US 41366 Rousseau Kentucky KY Breathitt 025 37.5946 -83.2187 +US 41369 Saldee Kentucky KY Breathitt County 025 37.4558 -83.3733 +US 41370 Sebastians Branch Kentucky KY Breathitt County 025 37.3819 -83.5103 +US 41377 Talbert Kentucky KY Breathitt 025 37.4175 -83.4445 +US 41385 Vancleve Kentucky KY Breathitt 025 37.6477 -83.3806 +US 41390 Whick Kentucky KY Breathitt 025 37.4102 -83.3747 +US 40106 Big Spring Kentucky KY Breckinridge 027 37.7885 -86.2312 +US 40111 Cloverport Kentucky KY Breckinridge 027 37.7731 -86.6282 +US 40114 Constantine Kentucky KY Breckinridge County 027 37.6794 -86.2417 +US 40115 Custer Kentucky KY Breckinridge 027 37.7358 -86.2378 +US 40140 Garfield Kentucky KY Breckinridge 027 37.8023 -86.4148 +US 40143 Hardinsburg Kentucky KY Breckinridge 027 37.7512 -86.4537 +US 40144 Harned Kentucky KY Breckinridge 027 37.8023 -86.4148 +US 40145 Hudson Kentucky KY Breckinridge 027 37.6506 -86.3012 +US 40146 Irvington Kentucky KY Breckinridge 027 37.8762 -86.2965 +US 40152 Mc Daniels Kentucky KY Breckinridge 027 37.6194 -86.4491 +US 40153 Mc Quady Kentucky KY Breckinridge 027 37.8023 -86.4148 +US 40164 Se Ree Kentucky KY Breckinridge 027 37.676 -86.3992 +US 40170 Stephensport Kentucky KY Breckinridge 027 37.9048 -86.524 +US 40171 Union Star Kentucky KY Breckinridge 027 37.9616 -86.4615 +US 40176 Webster Kentucky KY Breckinridge 027 37.9237 -86.3441 +US 40178 Westview Kentucky KY Breckinridge 027 37.6792 -86.4273 +US 40047 Mount Washington Kentucky KY Bullitt 029 38.0452 -85.5586 +US 40109 Brooks Kentucky KY Bullitt 029 38.0546 -85.7713 +US 40110 Clermont Kentucky KY Bullitt 029 37.9346 -85.6555 +US 40129 Hillview Kentucky KY Bullitt County 029 38.0764 -85.6774 +US 40150 Lebanon Junction Kentucky KY Bullitt 029 37.8511 -85.7246 +US 40165 Shepherdsville Kentucky KY Bullitt 029 38.0045 -85.6888 +US 41009 Constance Kentucky KY Bullitt County 029 39.0738 -84.6374 +US 42201 Aberdeen Kentucky KY Butler 031 37.2796 -86.6702 +US 42209 Brooklyn Kentucky KY Butler 031 37.1975 -86.6722 +US 42219 Dunbar Kentucky KY Butler 031 37.1709 -86.7678 +US 42251 Huntsville Kentucky KY Butler 031 37.158 -86.8858 +US 42252 Jetson Kentucky KY Butler 031 37.2483 -86.5093 +US 42261 Morgantown Kentucky KY Butler 031 37.2002 -86.6859 +US 42267 Provo Kentucky KY Butler 031 37.2296 -86.8048 +US 42268 Quality Kentucky KY Butler County 031 37.0882 -86.8229 +US 42273 Rochester Kentucky KY Butler 031 37.2048 -86.8592 +US 42287 Welchs Creek Kentucky KY Butler 031 37.3183 -86.523 +US 42288 Woodbury Kentucky KY Butler 031 37.1975 -86.6722 +US 42411 Fredonia Kentucky KY Caldwell 033 37.213 -88.0112 +US 42445 Princeton Kentucky KY Caldwell 033 37.1151 -87.8632 +US 42020 Almo Kentucky KY Calloway 035 36.6923 -88.2929 +US 42036 Dexter Kentucky KY Calloway 035 36.7155 -88.236 +US 42046 Hamlin Kentucky KY Calloway 035 36.6033 -88.0923 +US 42049 Hazel Kentucky KY Calloway 035 36.5422 -88.3319 +US 42054 Kirksey Kentucky KY Calloway 035 36.6731 -88.4238 +US 42071 Murray Kentucky KY Calloway 035 36.6099 -88.3032 +US 42076 New Concord Kentucky KY Calloway 035 36.55 -88.0955 +US 41001 Alexandria Kentucky KY Campbell 037 38.9406 -84.3943 +US 41007 California Kentucky KY Campbell 037 38.9056 -84.3171 +US 41059 Melbourne Kentucky KY Campbell 037 39.0067 -84.3538 +US 41071 Newport Kentucky KY Campbell 037 39.0563 -84.4787 +US 41072 Newport Kentucky KY Campbell 037 38.9638 -84.3689 +US 41073 Bellevue Kentucky KY Campbell 037 39.1024 -84.4787 +US 41074 Dayton Kentucky KY Campbell 037 39.1114 -84.4712 +US 41075 Fort Thomas Kentucky KY Campbell 037 39.0786 -84.4523 +US 41076 Newport Kentucky KY Campbell 037 39.0262 -84.4408 +US 41085 Silver Grove Kentucky KY Campbell 037 39.0343 -84.3908 +US 41099 Newport Kentucky KY Campbell 037 38.9638 -84.3689 +US 42021 Arlington Kentucky KY Carlisle 039 36.8001 -88.9438 +US 42023 Bardwell Kentucky KY Carlisle 039 36.8634 -89.0209 +US 42035 Cunningham Kentucky KY Carlisle 039 36.8963 -88.8728 +US 42070 Milburn Kentucky KY Carlisle 039 36.8631 -88.996 +US 41008 Carrollton Kentucky KY Carroll 041 38.6696 -85.173 +US 41045 Ghent Kentucky KY Carroll 041 38.7188 -85.0557 +US 41083 Sanders Kentucky KY Carroll 041 38.661 -84.9732 +US 41098 Worthville Kentucky KY Carroll 041 38.6179 -85.0663 +US 41128 Carter Kentucky KY Carter 043 38.4339 -83.1336 +US 41132 Denton Kentucky KY Carter 043 38.2597 -82.8562 +US 41142 Grahn Kentucky KY Carter 043 38.2897 -83.0811 +US 41143 Grayson Kentucky KY Carter 043 38.3249 -83.0007 +US 41146 Hitchins Kentucky KY Carter 043 38.2766 -82.8982 +US 41150 Jacobs Kentucky KY Carter 043 38.2251 -83.2421 +US 41164 Olive Hill Kentucky KY Carter 043 38.3492 -83.178 +US 41173 Soldier Kentucky KY Carter 043 38.262 -83.2847 +US 41181 Willard Kentucky KY Carter 043 38.2045 -82.9076 +US 42516 Bethelridge Kentucky KY Casey 045 37.2425 -84.8999 +US 42528 Dunnville Kentucky KY Casey 045 37.1906 -84.9835 +US 42539 Liberty Kentucky KY Casey 045 37.3146 -84.9719 +US 42541 Middleburg Kentucky KY Casey 045 37.3591 -84.8321 +US 42565 Windsor Kentucky KY Casey 045 37.1568 -84.8799 +US 42566 Yosemite Kentucky KY Casey 045 37.3074 -84.8124 +US 42217 Crofton Kentucky KY Christian 047 37.0344 -87.4891 +US 42221 Fairview Kentucky KY Christian 047 36.8981 -87.4965 +US 42223 Fort Campbell Kentucky KY Christian 047 36.5995 -87.5585 +US 42232 Gracey Kentucky KY Christian 047 36.8564 -87.6545 +US 42236 Herndon Kentucky KY Christian 047 36.7085 -87.6082 +US 42240 Hopkinsville Kentucky KY Christian 047 36.8621 -87.4851 +US 42241 Hopkinsville Kentucky KY Christian 047 36.8981 -87.4965 +US 42254 La Fayette Kentucky KY Christian 047 36.6582 -87.6563 +US 42262 Oak Grove Kentucky KY Christian 047 36.6652 -87.4255 +US 42266 Pembroke Kentucky KY Christian 047 36.7982 -87.3319 +US 40320 Ford Kentucky KY Clark 049 37.9685 -84.1578 +US 40391 Winchester Kentucky KY Clark 049 37.9872 -84.1789 +US 40392 Winchester Kentucky KY Clark 049 37.9685 -84.1578 +US 40914 Big Creek Kentucky KY Clay 051 37.1046 -83.5706 +US 40917 Bluehole Kentucky KY Clay County 051 37.1103 -83.755 +US 40931 Eriline Kentucky KY Clay 051 37.1477 -83.737 +US 40932 Fall Rock Kentucky KY Clay 051 37.1477 -83.737 +US 40941 Garrard Kentucky KY Clay 051 37.1477 -83.737 +US 40944 Goose Rock Kentucky KY Clay 051 37.1477 -83.737 +US 40951 Hima Kentucky KY Clay 051 37.1477 -83.737 +US 40962 Manchester Kentucky KY Clay 051 37.1511 -83.7793 +US 40972 Oneida Kentucky KY Clay 051 37.2677 -83.6555 +US 40978 Manchester Kentucky KY Clay County 051 37.076 -83.6468 +US 40983 Sextons Creek Kentucky KY Clay 051 37.333 -83.7666 +US 42601 Aaron Kentucky KY Clinton County 053 36.8128 -85.1991 +US 42602 Albany Kentucky KY Clinton 053 36.6857 -85.1407 +US 42603 Alpha Kentucky KY Clinton 053 36.7824 -85.0275 +US 42033 Crayne Kentucky KY Crittenden 055 37.3365 -88.0796 +US 42037 Dycusburg Kentucky KY Crittenden 055 37.1579 -88.1836 +US 42064 Marion Kentucky KY Crittenden 055 37.3254 -88.1005 +US 42084 Tolu Kentucky KY Crittenden 055 37.4349 -88.2461 +US 42711 Bakerton Kentucky KY Cumberland 057 36.8712 -85.3317 +US 42714 Bow Kentucky KY Cumberland County 057 36.7081 -85.3019 +US 42717 Burkesville Kentucky KY Cumberland 057 36.8068 -85.397 +US 42731 Dubre Kentucky KY Cumberland 057 36.8421 -85.5396 +US 42752 Kettle Kentucky KY Cumberland County 057 36.6946 -85.4092 +US 42759 Marrowbone Kentucky KY Cumberland 057 36.8306 -85.5015 +US 42768 Peytonsburg Kentucky KY Cumberland County 057 36.6463 -85.3717 +US 42786 Waterview Kentucky KY Cumberland 057 36.8198 -85.4624 +US 42301 Owensboro Kentucky KY Daviess 059 37.7513 -87.1554 +US 42302 Owensboro Kentucky KY Daviess 059 37.7455 -87.1128 +US 42303 Owensboro Kentucky KY Daviess 059 37.7559 -87.0803 +US 42304 Owensboro Kentucky KY Daviess 059 37.7455 -87.1128 +US 42334 Curdsville Kentucky KY Daviess 059 37.7455 -87.1128 +US 42355 Maceo Kentucky KY Daviess 059 37.8436 -86.9999 +US 42356 Maple Mount Kentucky KY Daviess 059 37.6932 -87.3238 +US 42366 Philpot Kentucky KY Daviess 059 37.7183 -86.9372 +US 42373 Saint Joseph Kentucky KY Daviess County 059 37.6943 -87.3251 +US 42375 Stanley Kentucky KY Daviess 059 37.7455 -87.1128 +US 42376 Utica Kentucky KY Daviess 059 37.6206 -87.0591 +US 42377 West Louisville Kentucky KY Daviess 059 37.7455 -87.1128 +US 42378 Whitesville Kentucky KY Daviess 059 37.6834 -86.8699 +US 42163 Rocky Hill Kentucky KY Edmonson 061 37.0943 -86.1432 +US 42207 Bee Spring Kentucky KY Edmonson 061 37.2975 -86.2794 +US 42210 Brownsville Kentucky KY Edmonson 061 37.2229 -86.2923 +US 42257 Lindseyville Kentucky KY Edmonson 061 37.2372 -86.2994 +US 42259 Mammoth Cave Kentucky KY Edmonson 061 37.2802 -86.1688 +US 42275 Roundhill Kentucky KY Edmonson 061 37.256 -86.407 +US 42284 Sunfish Kentucky KY Edmonson County 061 37.2966 -86.3646 +US 42285 Sweeden Kentucky KY Edmonson 061 37.2641 -86.2978 +US 41149 Isonville Kentucky KY Elliott 063 38.0462 -83.0506 +US 41171 Sandy Hook Kentucky KY Elliott 063 38.1316 -83.0797 +US 41177 Stephens Kentucky KY Elliott County 063 38.1131 -82.9868 +US 41211 Sandy Hook Kentucky KY Elliott County 063 38.0838 -82.991 +US 40336 Irvine Kentucky KY Estill 065 37.6858 -83.9862 +US 40415 Cobhill Kentucky KY Estill County 065 37.7472 -83.8335 +US 40471 Pryse Kentucky KY Estill County 065 37.6841 -83.8426 +US 40472 Ravenna Kentucky KY Estill 065 37.6867 -83.9387 +US 40495 Winston Kentucky KY Estill 065 37.7097 -84.0829 +US 40501 Lexington Kentucky KY Fayette 067 38.0378 -84.6165 +US 40502 Lexington Kentucky KY Fayette 067 38.0174 -84.4854 +US 40503 Lexington Kentucky KY Fayette 067 38.001 -84.5282 +US 40504 Lexington Kentucky KY Fayette 067 38.0406 -84.5433 +US 40505 Lexington Kentucky KY Fayette 067 38.0612 -84.4583 +US 40506 Lexington Kentucky KY Fayette 067 38.0287 -84.5075 +US 40507 Lexington Kentucky KY Fayette 067 38.0464 -84.4953 +US 40508 Lexington Kentucky KY Fayette 067 38.0513 -84.499 +US 40509 Lexington Kentucky KY Fayette 067 38.0102 -84.4274 +US 40510 Lexington Kentucky KY Fayette 067 38.0702 -84.591 +US 40511 Lexington Kentucky KY Fayette 067 38.0932 -84.5007 +US 40512 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40513 Lexington Kentucky KY Fayette 067 38.0139 -84.5815 +US 40514 Lexington Kentucky KY Fayette 067 37.9833 -84.5767 +US 40515 Lexington Kentucky KY Fayette 067 37.9651 -84.4708 +US 40516 Lexington Kentucky KY Fayette 067 38.0544 -84.3548 +US 40517 Lexington Kentucky KY Fayette 067 37.9849 -84.4816 +US 40522 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40523 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40524 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40526 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40533 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40536 Lexington Kentucky KY Fayette 067 38.0321 -84.5084 +US 40544 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40546 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40550 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40555 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40574 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40575 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40576 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40577 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40578 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40579 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40580 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40581 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40582 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40583 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40584 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40585 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40586 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40587 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40588 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40589 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40590 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40591 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40592 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40593 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40594 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40595 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40596 Lexington Kentucky KY Fayette 067 38.0283 -84.4715 +US 40598 Lexington Kentucky KY Fayette County 067 38.0771 -84.5296 +US 41037 Elizaville Kentucky KY Fleming 069 38.3481 -83.7186 +US 41039 Ewing Kentucky KY Fleming 069 38.4157 -83.8733 +US 41041 Flemingsburg Kentucky KY Fleming 069 38.428 -83.708 +US 41049 Hillsboro Kentucky KY Fleming 069 38.2929 -83.6697 +US 41065 Muses Mills Kentucky KY Fleming 069 38.3481 -83.7186 +US 41081 Plummers Landing Kentucky KY Fleming 069 38.3481 -83.7186 +US 41093 Wallingford Kentucky KY Fleming 069 38.3374 -83.5625 +US 41601 Allen Kentucky KY Floyd 071 37.6074 -82.7225 +US 41602 Auxier Kentucky KY Floyd 071 37.7158 -82.6959 +US 41603 Banner Kentucky KY Floyd 071 37.5707 -82.6806 +US 41604 Beaver Kentucky KY Floyd 071 37.3774 -82.6869 +US 41605 Betsy Layne Kentucky KY Floyd 071 37.5555 -82.6267 +US 41606 Bevinsville Kentucky KY Floyd 071 37.3465 -82.7403 +US 41607 Blue River Kentucky KY Floyd 071 37.6253 -82.8418 +US 41612 Bypro Kentucky KY Floyd 071 37.3465 -82.7165 +US 41614 Craynor Kentucky KY Floyd County 071 37.408 -82.6935 +US 41615 Dana Kentucky KY Floyd 071 37.5467 -82.6705 +US 41616 David Kentucky KY Floyd 071 37.5767 -82.8708 +US 41619 Drift Kentucky KY Floyd 071 37.4933 -82.7575 +US 41621 Dwale Kentucky KY Floyd 071 37.6246 -82.7227 +US 41622 Eastern Kentucky KY Floyd 071 37.5126 -82.8184 +US 41626 Endicott Kentucky KY Floyd County 071 37.6774 -82.618 +US 41627 Estill Kentucky KY Floyd County 071 37.462 -82.8196 +US 41629 Galveston Kentucky KY Floyd County 071 37.4782 -82.6619 +US 41630 Garrett Kentucky KY Floyd 071 37.4861 -82.8462 +US 41631 Grethel Kentucky KY Floyd 071 37.4576 -82.6645 +US 41633 Halo Kentucky KY Floyd County 071 37.3076 -82.7306 +US 41635 Harold Kentucky KY Floyd 071 37.5807 -82.6774 +US 41636 Hi Hat Kentucky KY Floyd 071 37.3994 -82.7292 +US 41637 Hippo Kentucky KY Floyd County 071 37.5138 -82.8644 +US 41639 Honaker Kentucky KY Floyd County 071 37.5145 -82.668 +US 41640 Hueysville Kentucky KY Floyd 071 37.5087 -82.8518 +US 41641 Hunter Kentucky KY Floyd County 071 37.506 -82.7562 +US 41642 Ivel Kentucky KY Floyd 071 37.5956 -82.6463 +US 41643 Lackey Kentucky KY Floyd 071 37.471 -82.8294 +US 41645 Langley Kentucky KY Floyd 071 37.5381 -82.7976 +US 41647 Mc Dowell Kentucky KY Floyd 071 37.4355 -82.7203 +US 41649 Martin Kentucky KY Floyd 071 37.5708 -82.7819 +US 41650 Melvin Kentucky KY Floyd 071 37.3536 -82.6763 +US 41651 Minnie Kentucky KY Floyd 071 37.4548 -82.7646 +US 41653 Prestonsburg Kentucky KY Floyd 071 37.661 -82.7636 +US 41655 Printer Kentucky KY Floyd 071 37.5055 -82.706 +US 41659 Stanville Kentucky KY Floyd 071 37.5741 -82.6271 +US 41660 Teaberry Kentucky KY Floyd 071 37.422 -82.6405 +US 41663 Tram Kentucky KY Floyd 071 37.5725 -82.6452 +US 41666 Wayland Kentucky KY Floyd 071 37.4367 -82.801 +US 41667 Weeksbury Kentucky KY Floyd 071 37.317 -82.7041 +US 41668 West Prestonsburg Kentucky KY Floyd 071 37.671 -82.761 +US 41669 Wheelwright Kentucky KY Floyd 071 37.3314 -82.7156 +US 41765 Talcum Kentucky KY Floyd County 071 37.3836 -83.0479 +US 40601 Frankfort Kentucky KY Franklin 073 38.2281 -84.8697 +US 40602 Frankfort Kentucky KY Franklin 073 38.2341 -84.8748 +US 40603 Frankfort Kentucky KY Franklin 073 38.2341 -84.8748 +US 40604 Frankfort Kentucky KY Franklin 073 38.2341 -84.8748 +US 40618 Frankfort Kentucky KY Franklin 073 38.2341 -84.8748 +US 40619 Frankfort Kentucky KY Franklin 073 38.2341 -84.8748 +US 40620 Frankfort Kentucky KY Franklin 073 38.2341 -84.8748 +US 40621 Frankfort Kentucky KY Franklin 073 38.2341 -84.8748 +US 40622 Frankfort Kentucky KY Franklin 073 38.2341 -84.8748 +US 42041 Fulton Kentucky KY Fulton 075 36.5475 -88.8749 +US 42050 Hickman Kentucky KY Fulton 075 36.5593 -89.1947 +US 41046 Glencoe Kentucky KY Gallatin 077 38.7229 -84.8116 +US 41086 Sparta Kentucky KY Gallatin 077 38.7256 -84.8813 +US 41095 Warsaw Kentucky KY Gallatin 077 38.7807 -84.8496 +US 40410 Bryantsville Kentucky KY Garrard 079 37.6514 -84.5467 +US 40444 Lancaster Kentucky KY Garrard 079 37.6584 -84.5969 +US 40446 Lancaster Kentucky KY Garrard 079 37.6514 -84.5467 +US 40461 Paint Lick Kentucky KY Garrard 079 37.6092 -84.4269 +US 41010 Corinth Kentucky KY Grant 081 38.5302 -84.5846 +US 41030 Crittenden Kentucky KY Grant 081 38.7741 -84.5982 +US 41035 Dry Ridge Kentucky KY Grant 081 38.7049 -84.6237 +US 41052 Jonesville Kentucky KY Grant 081 38.6587 -84.7507 +US 41054 Mason Kentucky KY Grant 081 38.5932 -84.5786 +US 41097 Williamstown Kentucky KY Grant 081 38.6292 -84.5744 +US 42027 Boaz Kentucky KY Graves 083 36.93 -88.6223 +US 42039 Fancy Farm Kentucky KY Graves 083 36.7767 -88.7918 +US 42040 Farmington Kentucky KY Graves 083 36.6 -88.5186 +US 42051 Hickory Kentucky KY Graves 083 36.8478 -88.6788 +US 42061 Lowes Kentucky KY Graves 083 36.8862 -88.7728 +US 42063 Lynnville Kentucky KY Graves 083 36.7239 -88.652 +US 42066 Mayfield Kentucky KY Graves 083 36.7327 -88.6506 +US 42069 Melber Kentucky KY Graves 083 36.9197 -88.752 +US 42079 Sedalia Kentucky KY Graves 083 36.5748 -88.5815 +US 42082 Symsonia Kentucky KY Graves 083 36.9044 -88.5153 +US 42085 Water Valley Kentucky KY Graves 083 36.5694 -88.8084 +US 42088 Wingo Kentucky KY Graves 083 36.6253 -88.7394 +US 40119 Falls Of Rough Kentucky KY Grayson 085 37.5522 -86.4836 +US 42712 Big Clifty Kentucky KY Grayson 085 37.5278 -86.1395 +US 42721 Caneyville Kentucky KY Grayson 085 37.4222 -86.4702 +US 42726 Clarkson Kentucky KY Grayson 085 37.4336 -86.2083 +US 42754 Leitchfield Kentucky KY Grayson 085 37.4603 -86.3249 +US 42755 Leitchfield Kentucky KY Grayson 085 37.4719 -86.3439 +US 42762 Millwood Kentucky KY Grayson 085 37.4446 -86.4008 +US 42779 Spring Lick Kentucky KY Grayson County 085 37.4446 -86.5565 +US 42780 Steff Kentucky KY Grayson County 085 37.4296 -86.6054 +US 42743 Greensburg Kentucky KY Green 087 37.243 -85.5236 +US 42782 Summersville Kentucky KY Green 087 37.3419 -85.6194 +US 41121 Argillite Kentucky KY Greenup 089 38.4322 -82.8094 +US 41139 Flatwoods Kentucky KY Greenup 089 38.5188 -82.7212 +US 41144 Greenup Kentucky KY Greenup 089 38.5368 -82.9191 +US 41156 Lloyd Kentucky KY Greenup 089 38.5652 -82.9166 +US 41163 Oldtown Kentucky KY Greenup County 089 38.4403 -82.9582 +US 41169 Russell Kentucky KY Greenup 089 38.6074 -82.8271 +US 41174 South Portsmouth Kentucky KY Greenup 089 38.7087 -83.0162 +US 41175 South Shore Kentucky KY Greenup 089 38.7148 -82.9366 +US 41183 Worthington Kentucky KY Greenup 089 38.5511 -82.7396 +US 42348 Hawesville Kentucky KY Hancock 091 37.8503 -86.7638 +US 42351 Lewisport Kentucky KY Hancock 091 37.909 -86.8957 +US 42364 Pellville Kentucky KY Hancock 091 37.8272 -86.8048 +US 42368 Reynolds Station Kentucky KY Hancock 091 37.7403 -86.7414 +US 40121 Fort Knox Kentucky KY Hardin 093 37.8928 -85.9489 +US 40159 Radcliff Kentucky KY Hardin 093 37.7235 -85.9769 +US 40160 Radcliff Kentucky KY Hardin 093 37.8267 -85.9404 +US 40162 Rineyville Kentucky KY Hardin 093 37.7525 -85.9954 +US 40175 Vine Grove Kentucky KY Hardin 093 37.8589 -86.0069 +US 40177 West Point Kentucky KY Hardin 093 37.9954 -85.9545 +US 42701 Elizabethtown Kentucky KY Hardin 093 37.6848 -85.8784 +US 42702 Elizabethtown Kentucky KY Hardin 093 37.7235 -85.9769 +US 42724 Cecilia Kentucky KY Hardin 093 37.669 -86.0545 +US 42732 Eastview Kentucky KY Hardin 093 37.6061 -86.0906 +US 42740 Glendale Kentucky KY Hardin 093 37.6034 -85.8921 +US 42776 Sonora Kentucky KY Hardin 093 37.5221 -85.923 +US 42781 Stephensburg Kentucky KY Hardin County 093 37.63 -86.019 +US 42783 Summit Kentucky KY Hardin 093 37.5671 -86.0853 +US 42784 Upton Kentucky KY Hardin 093 37.4568 -85.9086 +US 42785 Vertrees Kentucky KY Hardin County 093 37.7051 -86.1378 +US 42788 White Mills Kentucky KY Hardin 093 37.5438 -86.0395 +US 40801 Ages Brookside Kentucky KY Harlan 095 36.8654 -83.2879 +US 40806 Baxter Kentucky KY Harlan 095 36.8749 -83.3141 +US 40807 Benham Kentucky KY Harlan 095 36.9712 -82.9553 +US 40808 Big Laurel Kentucky KY Harlan 095 36.9841 -83.2067 +US 40810 Bledsoe Kentucky KY Harlan 095 36.934 -83.3242 +US 40815 Cawood Kentucky KY Harlan 095 36.7812 -83.2914 +US 40818 Coalgood Kentucky KY Harlan 095 36.8202 -83.2445 +US 40819 Coldiron Kentucky KY Harlan 095 36.8201 -83.4707 +US 40820 Cranks Kentucky KY Harlan 095 36.7558 -83.1838 +US 40823 Cumberland Kentucky KY Harlan 095 36.9711 -82.9771 +US 40824 Dayhoit Kentucky KY Harlan 095 36.8356 -83.3753 +US 40825 Dizney Kentucky KY Harlan County 095 36.8029 -83.1373 +US 40828 Evarts Kentucky KY Harlan 095 36.8398 -83.2233 +US 40829 Grays Knob Kentucky KY Harlan 095 36.7974 -83.2645 +US 40830 Gulston Kentucky KY Harlan 095 36.7656 -83.3262 +US 40831 Harlan Kentucky KY Harlan 095 36.7596 -83.3499 +US 40843 Holmes Mill Kentucky KY Harlan 095 36.8757 -82.9943 +US 40846 Keith Kentucky KY Harlan County 095 36.8712 -83.3614 +US 40847 Kenvir Kentucky KY Harlan 095 36.8734 -83.1451 +US 40849 Lejunior Kentucky KY Harlan 095 36.8899 -83.1433 +US 40854 Loyall Kentucky KY Harlan 095 36.8481 -83.353 +US 40855 Lynch Kentucky KY Harlan 095 36.9603 -82.9198 +US 40863 Pathfork Kentucky KY Harlan 095 36.7521 -83.4629 +US 40865 Putney Kentucky KY Harlan 095 36.9039 -83.2381 +US 40867 Smith Kentucky KY Harlan 095 36.7187 -83.3209 +US 40870 Totz Kentucky KY Harlan 095 36.933 -83.1617 +US 40873 Wallins Creek Kentucky KY Harlan 095 36.8165 -83.419 +US 40927 Closplint Kentucky KY Harlan 095 36.8713 -83.0414 +US 40964 Mary Alice Kentucky KY Harlan 095 36.843 -83.1834 +US 41003 Berry Kentucky KY Harrison 097 38.516 -84.3611 +US 41031 Cynthiana Kentucky KY Harrison 097 38.3964 -84.2949 +US 42713 Bonnieville Kentucky KY Hart 099 37.3741 -85.896 +US 42722 Canmer Kentucky KY Hart 099 37.2696 -85.7203 +US 42729 Cub Run Kentucky KY Hart 099 37.3149 -86.0813 +US 42746 Hardyville Kentucky KY Hart 099 37.2249 -85.7542 +US 42749 Horse Cave Kentucky KY Hart 099 37.1849 -85.8785 +US 42765 Munfordville Kentucky KY Hart 099 37.2898 -85.9201 +US 42772 Munfordville Kentucky KY Hart County 099 37.2407 -85.894 +US 42402 Baskett Kentucky KY Henderson 101 37.7789 -87.6012 +US 42406 Corydon Kentucky KY Henderson 101 37.7443 -87.7 +US 42419 Henderson Kentucky KY Henderson 101 37.8072 -87.5991 +US 42420 Henderson Kentucky KY Henderson 101 37.8274 -87.5632 +US 42451 Reed Kentucky KY Henderson 101 37.8588 -87.3704 +US 42452 Robards Kentucky KY Henderson 101 37.6758 -87.5266 +US 42457 Smith Mills Kentucky KY Henderson 101 37.8323 -87.7889 +US 42458 Spottsville Kentucky KY Henderson 101 37.8399 -87.4247 +US 40007 Bethlehem Kentucky KY Henry 103 38.4529 -85.0169 +US 40011 Campbellsburg Kentucky KY Henry 103 38.5231 -85.1611 +US 40019 Eminence Kentucky KY Henry 103 38.3696 -85.1782 +US 40036 Lockport Kentucky KY Henry 103 38.4219 -84.9586 +US 40050 New Castle Kentucky KY Henry 103 38.4374 -85.1756 +US 40055 Pendleton Kentucky KY Henry 103 38.4809 -85.317 +US 40057 Pleasureville Kentucky KY Henry 103 38.4314 -85.0326 +US 40058 Port Royal Kentucky KY Henry 103 38.4941 -85.1242 +US 40068 Smithfield Kentucky KY Henry 103 38.3933 -85.2656 +US 40070 Sulphur Kentucky KY Henry 103 38.4921 -85.252 +US 40075 Turners Station Kentucky KY Henry 103 38.5521 -85.1019 +US 42031 Clinton Kentucky KY Hickman 105 36.6675 -88.9676 +US 42032 Columbus Kentucky KY Hickman 105 36.7555 -89.0983 +US 42408 Dawson Springs Kentucky KY Hopkins 107 37.1964 -87.6821 +US 42410 Earlington Kentucky KY Hopkins 107 37.2743 -87.5131 +US 42413 Hanson Kentucky KY Hopkins 107 37.4382 -87.4751 +US 42431 Madisonville Kentucky KY Hopkins 107 37.3256 -87.4953 +US 42436 Manitou Kentucky KY Hopkins 107 37.4067 -87.5639 +US 42440 Mortons Gap Kentucky KY Hopkins 107 37.249 -87.4615 +US 42441 Nebo Kentucky KY Hopkins 107 37.3683 -87.6865 +US 42442 Nortonville Kentucky KY Hopkins 107 37.1834 -87.4605 +US 42453 Saint Charles Kentucky KY Hopkins 107 37.1604 -87.5697 +US 42464 White Plains Kentucky KY Hopkins 107 37.1788 -87.3644 +US 40402 Annville Kentucky KY Jackson 109 37.3052 -83.9711 +US 40421 Dabolt Kentucky KY Jackson 109 37.416 -83.9936 +US 40434 Gray Hawk Kentucky KY Jackson 109 37.3955 -83.9085 +US 40435 Annville Kentucky KY Jackson County 109 37.364 -83.8751 +US 40441 McKee Kentucky KY Jackson County 109 37.5215 -84.1132 +US 40447 Mc Kee Kentucky KY Jackson 109 37.4338 -84.0251 +US 40467 Peoples Kentucky KY Jackson 109 37.416 -83.9936 +US 40481 Sandgap Kentucky KY Jackson 109 37.4659 -84.0597 +US 40486 Tyner Kentucky KY Jackson 109 37.3693 -83.8619 +US 40488 Waneta Kentucky KY Jackson 109 37.4748 -84.0427 +US 40494 McKee Kentucky KY Jackson County 109 37.5124 -83.9287 +US 40936 Annville Kentucky KY Jackson County 109 37.2193 -83.901 +US 42250 Huff Kentucky KY Jackson County 109 37.2836 -86.3894 +US 40018 Eastwood Kentucky KY Jefferson 111 38.2298 -85.663 +US 40023 Fisherville Kentucky KY Jefferson 111 38.1652 -85.4282 +US 40025 Glenview Kentucky KY Jefferson 111 38.2997 -85.6487 +US 40027 Harrods Creek Kentucky KY Jefferson 111 38.3297 -85.633 +US 40041 Masonic Home Kentucky KY Jefferson 111 38.2536 -85.6622 +US 40059 Prospect Kentucky KY Jefferson 111 38.356 -85.6083 +US 40118 Fairdale Kentucky KY Jefferson 111 38.1087 -85.7549 +US 40201 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40202 Louisville Kentucky KY Jefferson 111 38.2507 -85.7476 +US 40203 Louisville Kentucky KY Jefferson 111 38.2493 -85.7694 +US 40204 Louisville Kentucky KY Jefferson 111 38.2369 -85.7249 +US 40205 Louisville Kentucky KY Jefferson 111 38.2222 -85.6885 +US 40206 Louisville Kentucky KY Jefferson 111 38.2503 -85.7034 +US 40207 Louisville Kentucky KY Jefferson 111 38.2628 -85.6663 +US 40208 Louisville Kentucky KY Jefferson 111 38.22 -85.7648 +US 40209 Louisville Kentucky KY Jefferson 111 38.1901 -85.7519 +US 40210 Louisville Kentucky KY Jefferson 111 38.2306 -85.7905 +US 40211 Louisville Kentucky KY Jefferson 111 38.242 -85.8127 +US 40212 Louisville Kentucky KY Jefferson 111 38.2651 -85.8045 +US 40213 Louisville Kentucky KY Jefferson 111 38.1839 -85.7106 +US 40214 Louisville Kentucky KY Jefferson 111 38.1593 -85.778 +US 40215 Louisville Kentucky KY Jefferson 111 38.1913 -85.7847 +US 40216 Louisville Kentucky KY Jefferson 111 38.1865 -85.8335 +US 40217 Louisville Kentucky KY Jefferson 111 38.2174 -85.7404 +US 40218 Louisville Kentucky KY Jefferson 111 38.189 -85.654 +US 40219 Louisville Kentucky KY Jefferson 111 38.1381 -85.6953 +US 40220 Louisville Kentucky KY Jefferson 111 38.2149 -85.6245 +US 40221 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40222 Louisville Kentucky KY Jefferson 111 38.2674 -85.6237 +US 40223 Louisville Kentucky KY Jefferson 111 38.2651 -85.5582 +US 40224 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40225 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40228 Louisville Kentucky KY Jefferson 111 38.1442 -85.6265 +US 40229 Louisville Kentucky KY Jefferson 111 38.0891 -85.6548 +US 40231 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40232 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40233 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40241 Louisville Kentucky KY Jefferson 111 38.3045 -85.5815 +US 40242 Louisville Kentucky KY Jefferson 111 38.2785 -85.594 +US 40243 Louisville Kentucky KY Jefferson 111 38.2422 -85.5353 +US 40245 Louisville Kentucky KY Jefferson 111 38.2683 -85.4845 +US 40250 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40251 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40252 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40253 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40255 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40256 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40257 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40258 Louisville Kentucky KY Jefferson 111 38.1457 -85.8641 +US 40259 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40261 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40266 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40268 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40269 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40270 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40272 Louisville Kentucky KY Jefferson 111 38.0846 -85.851 +US 40280 Louisville Kentucky KY Jefferson 111 38.2467 -85.6853 +US 40281 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40282 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40283 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40285 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40287 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40289 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40290 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40291 Louisville Kentucky KY Jefferson 111 38.1313 -85.5754 +US 40292 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40293 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40294 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40295 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40296 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40297 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40298 Louisville Kentucky KY Jefferson 111 38.189 -85.6768 +US 40299 Louisville Kentucky KY Jefferson 111 38.1768 -85.5218 +US 40339 Keene Kentucky KY Jessamine 113 37.9504 -84.6569 +US 40340 Nicholasville Kentucky KY Jessamine 113 37.8662 -84.5795 +US 40356 Nicholasville Kentucky KY Jessamine 113 37.8808 -84.5646 +US 40390 Wilmore Kentucky KY Jessamine 113 37.8602 -84.6714 +US 41204 Boons Camp Kentucky KY Johnson 115 37.8216 -82.6704 +US 41215 Denver Kentucky KY Johnson 115 37.772 -82.8651 +US 41216 East Point Kentucky KY Johnson 115 37.7579 -82.8182 +US 41219 Flatgap Kentucky KY Johnson 115 37.9231 -82.9221 +US 41220 Fuget Kentucky KY Johnson County 115 37.9022 -82.9114 +US 41222 Hagerhill Kentucky KY Johnson 115 37.7805 -82.8416 +US 41226 Keaton Kentucky KY Johnson 115 37.968 -82.9561 +US 41228 Leander Kentucky KY Johnson 115 37.7397 -82.8656 +US 41234 Meally Kentucky KY Johnson 115 37.8078 -82.7415 +US 41237 Offutt Kentucky KY Johnson County 115 37.8534 -82.7051 +US 41238 Oil Springs Kentucky KY Johnson 115 37.8128 -82.9391 +US 41240 Paintsville Kentucky KY Johnson 115 37.8242 -82.7945 +US 41254 River Kentucky KY Johnson 115 37.8795 -82.7251 +US 41255 Sitka Kentucky KY Johnson 115 37.8922 -82.8446 +US 41256 Staffordsville Kentucky KY Johnson 115 37.8253 -82.8823 +US 41257 Stambaugh Kentucky KY Johnson 115 37.9166 -82.8034 +US 41258 Swamp Branch Kentucky KY Johnson County 115 37.7486 -82.9113 +US 41260 Thelma Kentucky KY Johnson 115 37.822 -82.7526 +US 41263 Tutor Key Kentucky KY Johnson 115 37.8507 -82.7602 +US 41265 Van Lear Kentucky KY Johnson 115 37.7481 -82.7054 +US 41266 Volga Kentucky KY Johnson County 115 37.8966 -82.9074 +US 41268 West Van Lear Kentucky KY Johnson 115 37.7971 -82.791 +US 41269 Whitehouse Kentucky KY Johnson County 115 37.8979 -82.7768 +US 41271 Williamsport Kentucky KY Johnson 115 37.8313 -82.7264 +US 41274 Wittensville Kentucky KY Johnson 115 37.8703 -82.81 +US 41011 Covington Kentucky KY Kenton 117 39.0708 -84.5212 +US 41012 Covington Kentucky KY Kenton 117 38.9447 -84.5205 +US 41014 Covington Kentucky KY Kenton 117 39.0642 -84.5118 +US 41015 Latonia Kentucky KY Kenton 117 39.0217 -84.4989 +US 41016 Covington Kentucky KY Kenton 117 39.0873 -84.549 +US 41017 Ft Mitchell Kentucky KY Kenton 117 39.03 -84.559 +US 41018 Erlanger Kentucky KY Kenton 117 39.0082 -84.5977 +US 41019 Covington Kentucky KY Kenton 117 38.9447 -84.5205 +US 41051 Independence Kentucky KY Kenton 117 38.9354 -84.5479 +US 41053 Kenton Kentucky KY Kenton 117 38.9447 -84.5205 +US 41063 Morning View Kentucky KY Kenton 117 38.8394 -84.5069 +US 42155 Lamb Kentucky KY Kenton County 117 36.7998 -85.8854 +US 41321 Decoy Kentucky KY Knott County 119 37.4905 -83.029 +US 41725 Carrie Kentucky KY Knott 119 37.3182 -83.069 +US 41740 Emmalena Kentucky KY Knott 119 37.3499 -83.0471 +US 41743 Fisty Kentucky KY Knott 119 37.3064 -83.0904 +US 41759 Sassafras Kentucky KY Knott 119 37.232 -83.0246 +US 41772 Vest Kentucky KY Knott 119 37.4073 -83.0153 +US 41801 Amburgey Kentucky KY Knott County 119 37.2667 -83.0023 +US 41805 Brinkley Kentucky KY Knott County 119 37.2613 -82.9151 +US 41817 Garner Kentucky KY Knott 119 37.3676 -82.9107 +US 41822 Hindman Kentucky KY Knott 119 37.3276 -82.9527 +US 41823 Hollybush Kentucky KY Knott County 119 37.337 -82.8304 +US 41828 Kite Kentucky KY Knott 119 37.3136 -82.7975 +US 41831 Leburn Kentucky KY Knott 119 37.3794 -82.9523 +US 41834 Littcarr Kentucky KY Knott 119 37.2715 -82.9651 +US 41836 Mallie Kentucky KY Knott 119 37.2692 -82.9161 +US 41839 Mousie Kentucky KY Knott 119 37.4331 -82.9018 +US 41843 Pine Top Kentucky KY Knott 119 37.2868 -82.8741 +US 41844 Pippa Passes Kentucky KY Knott 119 37.3491 -82.8742 +US 41847 Redfox Kentucky KY Knott 119 37.2172 -82.9424 +US 41859 Dema Kentucky KY Knott 119 37.3976 -82.7836 +US 41861 Raven Kentucky KY Knott 119 37.4043 -82.8261 +US 41862 Topmost Kentucky KY Knott 119 37.3485 -82.7926 +US 40734 Gray Kentucky KY Knox 121 36.9467 -83.9828 +US 40771 Woodbine Kentucky KY Knox 121 36.8586 -84.0347 +US 40903 Artemus Kentucky KY Knox 121 36.8388 -83.8329 +US 40906 Barbourville Kentucky KY Knox 121 36.8101 -83.8949 +US 40911 Baughman Kentucky KY Knox County 121 36.8647 -83.8003 +US 40915 Bimble Kentucky KY Knox 121 36.8868 -83.8282 +US 40921 Bryants Store Kentucky KY Knox 121 36.7708 -83.9009 +US 40923 Cannon Kentucky KY Knox 121 36.9195 -83.851 +US 40930 Dewitt Kentucky KY Knox 121 36.8713 -83.83 +US 40935 Flat Lick Kentucky KY Knox 121 36.8713 -83.83 +US 40939 Fourmile Kentucky KY Knox 121 36.8713 -83.83 +US 40943 Girdler Kentucky KY Knox 121 36.9691 -83.8539 +US 40946 Green Road Kentucky KY Knox 121 36.8713 -83.83 +US 40949 Heidrick Kentucky KY Knox 121 36.8904 -83.8716 +US 40953 Hinkle Kentucky KY Knox 121 36.9362 -83.8045 +US 40970 Mills Kentucky KY Knox County 121 36.929 -83.6237 +US 40982 Scalf Kentucky KY Knox 121 36.9327 -83.6901 +US 40995 Trosper Kentucky KY Knox 121 36.761 -83.8155 +US 40997 Walker Kentucky KY Knox 121 36.8911 -83.6616 +US 40999 Woollum Kentucky KY Knox 121 37.0097 -83.8472 +US 42716 Buffalo Kentucky KY Larue 123 37.4786 -85.6434 +US 42748 Hodgenville Kentucky KY Larue 123 37.5746 -85.7232 +US 42757 Magnolia Kentucky KY Larue 123 37.4165 -85.7308 +US 42764 Mount Sherman Kentucky KY Larue 123 37.426 -85.6191 +US 42766 Neafus Kentucky KY Larue County 123 37.395 -86.6119 +US 40341 Lamero Kentucky KY Laurel County 125 37.3287 -84.1623 +US 40724 Bush Kentucky KY Laurel 125 37.1521 -84.1408 +US 40729 East Bernstadt Kentucky KY Laurel 125 37.2488 -84.138 +US 40737 Keavy Kentucky KY Laurel 125 37.0156 -84.1436 +US 40740 Lily Kentucky KY Laurel 125 37.0256 -84.0282 +US 40741 London Kentucky KY Laurel 125 37.1549 -84.0961 +US 40742 London Kentucky KY Laurel 125 37.1376 -84.1156 +US 40743 London Kentucky KY Laurel 125 37.1345 -84.0457 +US 40744 London Kentucky KY Laurel 125 37.0995 -84.1131 +US 40745 London Kentucky KY Laurel 125 37.1376 -84.1156 +US 40746 London Kentucky KY Laurel 125 37.1376 -84.1156 +US 40747 London Kentucky KY Laurel 125 37.1376 -84.1156 +US 40748 London Kentucky KY Laurel 125 37.1376 -84.1156 +US 40751 Marydell Kentucky KY Laurel 125 37.1376 -84.1156 +US 40755 Pittsburg Kentucky KY Laurel 125 37.1678 -84.1166 +US 41124 Blaine Kentucky KY Lawrence 127 38.027 -82.8513 +US 41159 Martha Kentucky KY Lawrence 127 38.0152 -82.9558 +US 41160 Mazie Kentucky KY Lawrence 127 38.0741 -82.7447 +US 41180 Webbville Kentucky KY Lawrence 127 38.1634 -82.7897 +US 41201 Adams Kentucky KY Lawrence 127 38.0741 -82.7447 +US 41230 Louisa Kentucky KY Lawrence 127 38.1043 -82.6056 +US 41232 Lowmansville Kentucky KY Lawrence 127 37.9315 -82.7349 +US 41264 Ulysses Kentucky KY Lawrence 127 37.9416 -82.6739 +US 40420 Crystal Kentucky KY Lee County 129 37.6632 -83.8254 +US 41311 Beattyville Kentucky KY Lee 129 37.5999 -83.714 +US 41323 Beattyville Kentucky KY Lee County 129 37.6043 -83.5496 +US 41333 Heidelberg Kentucky KY Lee 129 37.5563 -83.7763 +US 41347 Lone Kentucky KY Lee 129 37.5442 -83.6008 +US 41358 Old Landing Kentucky KY Lee County 129 37.6397 -83.8058 +US 41362 Primrose Kentucky KY Lee 129 37.6033 -83.714 +US 41368 Saint Helens Kentucky KY Lee 129 37.6117 -83.6434 +US 41378 Tallega Kentucky KY Lee County 129 37.5601 -83.5901 +US 41397 Zoe Kentucky KY Lee 129 37.6867 -83.6702 +US 40803 Asher Kentucky KY Leslie 131 37.0114 -83.4553 +US 40816 Chappell Kentucky KY Leslie 131 37.0098 -83.3494 +US 40827 Essie Kentucky KY Leslie 131 37.0547 -83.4561 +US 40840 Helton Kentucky KY Leslie 131 36.9543 -83.4313 +US 40844 Hoskinston Kentucky KY Leslie 131 37.0702 -83.4244 +US 40858 Mozelle Kentucky KY Leslie 131 37.0037 -83.4135 +US 40868 Stinnett Kentucky KY Leslie 131 37.0883 -83.3907 +US 40874 Warbranch Kentucky KY Leslie 131 36.984 -83.4667 +US 40979 Roark Kentucky KY Leslie 131 37.0438 -83.4949 +US 41714 Bear Branch Kentucky KY Leslie 131 37.1939 -83.5035 +US 41730 Confluence Kentucky KY Leslie 131 37.2719 -83.3711 +US 41732 Cutshin Kentucky KY Leslie County 131 37.1073 -83.249 +US 41749 Hyden Kentucky KY Leslie 131 37.1877 -83.4169 +US 41762 Sizerock Kentucky KY Leslie 131 37.2188 -83.5064 +US 41764 Smilax Kentucky KY Leslie 131 37.1214 -83.2539 +US 41766 Thousandsticks Kentucky KY Leslie 131 37.1586 -83.3847 +US 41775 Wendover Kentucky KY Leslie 131 37.1079 -83.3563 +US 41776 Wooton Kentucky KY Leslie 131 37.1671 -83.2913 +US 41777 Yeaddiss Kentucky KY Leslie 131 37.0565 -83.2361 +US 40826 Eolia Kentucky KY Letcher 133 37.0618 -82.7706 +US 40861 Oven Fork Kentucky KY Letcher County 133 37.0408 -82.8181 +US 40862 Partridge Kentucky KY Letcher 133 37.0129 -82.8795 +US 41517 Burdine Kentucky KY Letcher 133 37.1845 -82.6111 +US 41537 Jenkins Kentucky KY Letcher 133 37.1911 -82.6513 +US 41804 Blackey Kentucky KY Letcher 133 37.1551 -82.9956 +US 41810 Cromona Kentucky KY Letcher 133 37.1788 -82.695 +US 41811 Crown Kentucky KY Letcher County 133 37.1591 -82.8474 +US 41812 Deane Kentucky KY Letcher 133 37.2409 -82.7696 +US 41815 Ermine Kentucky KY Letcher 133 37.1615 -82.7974 +US 41819 Gordon Kentucky KY Letcher 133 36.9891 -83.0655 +US 41821 Hallie Kentucky KY Letcher 133 37.0837 -83.0027 +US 41824 Isom Kentucky KY Letcher 133 37.1932 -82.8754 +US 41825 Jackhorn Kentucky KY Letcher 133 37.2246 -82.7228 +US 41826 Jeremiah Kentucky KY Letcher 133 37.1699 -82.9258 +US 41829 Kona Kentucky KY Letcher County 133 37.1663 -82.748 +US 41832 Letcher Kentucky KY Letcher 133 37.1531 -82.9548 +US 41833 Linefork Kentucky KY Letcher 133 37.0233 -82.9878 +US 41835 Mc Roberts Kentucky KY Letcher 133 37.2137 -82.6734 +US 41837 Mayking Kentucky KY Letcher 133 37.1302 -82.7427 +US 41838 Millstone Kentucky KY Letcher 133 37.1766 -82.7517 +US 41840 Neon Kentucky KY Letcher 133 37.1876 -82.711 +US 41845 Premium Kentucky KY Letcher 133 37.1252 -82.9035 +US 41848 Roxana Kentucky KY Letcher 133 37.1102 -82.9407 +US 41849 Seco Kentucky KY Letcher 133 37.1765 -82.7358 +US 41855 Thornton Kentucky KY Letcher 133 37.1906 -82.7851 +US 41858 Whitesburg Kentucky KY Letcher 133 37.1388 -82.855 +US 41127 Camp Dix Kentucky KY Lewis 135 38.6029 -83.3616 +US 41131 Concord Kentucky KY Lewis County 135 38.6861 -83.491 +US 41135 Emerson Kentucky KY Lewis 135 38.3563 -83.2877 +US 41137 Firebrick Kentucky KY Lewis 135 38.6878 -83.0432 +US 41141 Garrison Kentucky KY Lewis 135 38.5869 -83.2 +US 41166 Quincy Kentucky KY Lewis 135 38.6271 -83.1056 +US 41170 Saint Paul Kentucky KY Lewis 135 38.6654 -83.0679 +US 41179 Vanceburg Kentucky KY Lewis 135 38.4699 -83.2702 +US 41189 Tollesboro Kentucky KY Lewis 135 38.5723 -83.5605 +US 40419 Crab Orchard Kentucky KY Lincoln 137 37.4465 -84.4939 +US 40437 Hustonville Kentucky KY Lincoln 137 37.4595 -84.8528 +US 40442 Kings Mountain Kentucky KY Lincoln 137 37.3818 -84.7148 +US 40448 Mc Kinney Kentucky KY Lincoln 137 37.446 -84.6998 +US 40484 Stanford Kentucky KY Lincoln 137 37.5245 -84.6912 +US 40489 Waynesburg Kentucky KY Lincoln 137 37.3499 -84.6655 +US 42028 Burna Kentucky KY Livingston 139 37.2392 -88.3379 +US 42045 Grand Rivers Kentucky KY Livingston 139 37.0762 -88.2647 +US 42047 Hampton Kentucky KY Livingston 139 37.3348 -88.3649 +US 42058 Ledbetter Kentucky KY Livingston 139 37.0611 -88.4665 +US 42059 Lola Kentucky KY Livingston County 139 37.3185 -88.3076 +US 42078 Salem Kentucky KY Livingston 139 37.2553 -88.2711 +US 42081 Smithland Kentucky KY Livingston 139 37.2387 -88.3757 +US 42083 Tiline Kentucky KY Livingston 139 37.1457 -88.285 +US 42202 Adairville Kentucky KY Logan 141 36.6914 -86.8585 +US 42206 Auburn Kentucky KY Logan 141 36.8818 -86.7198 +US 42256 Lewisburg Kentucky KY Logan 141 37.0037 -86.9887 +US 42263 Oakville Kentucky KY Logan County 141 36.7483 -86.8777 +US 42265 Olmstead Kentucky KY Logan 141 36.7595 -86.9804 +US 42276 Russellville Kentucky KY Logan 141 36.8453 -86.8823 +US 42283 South Union Kentucky KY Logan 141 36.8692 -86.6632 +US 42038 Eddyville Kentucky KY Lyon 143 37.0664 -88.0494 +US 42055 Kuttawa Kentucky KY Lyon 143 37.0619 -88.1498 +US 42001 Paducah Kentucky KY McCracken 145 37.0634 -88.6632 +US 42002 Paducah Kentucky KY McCracken 145 37.0855 -88.7125 +US 42003 Paducah Kentucky KY McCracken 145 37.0368 -88.5934 +US 42053 Kevil Kentucky KY McCracken 145 37.0872 -88.8764 +US 42086 West Paducah Kentucky KY McCracken 145 37.0922 -88.7611 +US 42563 Brodhead Kentucky KY McCreary County 147 37.2715 -84.4507 +US 42607 Beulah Heights Kentucky KY McCreary County 147 36.804 -84.4393 +US 42631 Marshes Siding Kentucky KY McCreary 147 36.7773 -84.5025 +US 42634 Parkers Lake Kentucky KY McCreary 147 36.8347 -84.4436 +US 42635 Pine Knot Kentucky KY McCreary 147 36.6807 -84.3984 +US 42638 Revelo Kentucky KY McCreary 147 36.6734 -84.4722 +US 42643 Sawyer Kentucky KY McCreary County 147 36.923 -84.3624 +US 42647 Stearns Kentucky KY McCreary 147 36.7082 -84.5165 +US 42648 Monticello Kentucky KY McCreary County 147 36.8874 -84.8026 +US 42649 Strunk Kentucky KY McCreary 147 36.6191 -84.4308 +US 42653 Whitley City Kentucky KY McCreary 147 36.7217 -84.4676 +US 42322 Beech Grove Kentucky KY McLean 149 37.6151 -87.4069 +US 42327 Calhoun Kentucky KY McLean 149 37.575 -87.2773 +US 42350 Island Kentucky KY McLean 149 37.4471 -87.1692 +US 42352 Livermore Kentucky KY McLean 149 37.5045 -87.1239 +US 42371 Rumsey Kentucky KY McLean 149 37.5076 -87.2806 +US 42372 Sacramento Kentucky KY McLean 149 37.4177 -87.2736 +US 40385 Waco Kentucky KY Madison 151 37.7176 -84.1448 +US 40403 Berea Kentucky KY Madison 151 37.5799 -84.2749 +US 40404 Berea Kentucky KY Madison 151 37.7164 -84.2997 +US 40405 Bighill Kentucky KY Madison 151 37.7164 -84.2997 +US 40430 Annville Kentucky KY Madison County 151 37.3129 -83.896 +US 40475 Richmond Kentucky KY Madison 151 37.7546 -84.2955 +US 40476 Richmond Kentucky KY Madison 151 37.7164 -84.2997 +US 40465 Parrot Kentucky KY Magoffin County 153 37.615 -87.5689 +US 41409 Carver Kentucky KY Magoffin County 153 37.6503 -83.069 +US 41410 Cisco Kentucky KY Magoffin 153 37.6906 -83.0746 +US 41419 Edna Kentucky KY Magoffin 153 37.6906 -83.0746 +US 41422 Elsie Kentucky KY Magoffin 153 37.6906 -83.0746 +US 41426 Falcon Kentucky KY Magoffin 153 37.7843 -83.0109 +US 41427 Flat Fork Kentucky KY Magoffin County 153 37.8376 -83.0285 +US 41433 Gapville Kentucky KY Magoffin 153 37.6906 -83.0746 +US 41441 Hendricks Kentucky KY Magoffin County 153 37.705 -83.0981 +US 41443 Insko Kentucky KY Magoffin County 153 37.7572 -83.3011 +US 41444 Ivyton Kentucky KY Magoffin 153 37.6906 -83.0746 +US 41456 Blaine Kentucky KY Magoffin County 153 37.9204 -83.0365 +US 41464 Royalton Kentucky KY Magoffin 153 37.6763 -83.0225 +US 41465 Salyersville Kentucky KY Magoffin 153 37.7325 -83.0298 +US 41466 Seitz Kentucky KY Magoffin County 153 37.6754 -83.1871 +US 41467 Salyersville Kentucky KY Magoffin County 153 37.8821 -83.049 +US 41565 Speight Kentucky KY Magoffin County 153 37.2625 -82.7165 +US 41632 Gunlock Kentucky KY Magoffin 153 37.5892 -82.9452 +US 41902 Migrate Kentucky KY Magoffin County 153 38.0638 -84.5027 +US 41903 Migrate Kentucky KY Magoffin County 153 38.0638 -84.5027 +US 41904 Migrate Kentucky KY Magoffin County 153 38.0638 -84.5027 +US 41905 Migrate Kentucky KY Magoffin County 153 38.0638 -84.5027 +US 41906 Migrate Kentucky KY Magoffin County 153 38.0638 -84.5027 +US 40009 Bradfordsville Kentucky KY Marion 155 37.4662 -85.1436 +US 40033 Lebanon Kentucky KY Marion 155 37.5658 -85.2668 +US 40037 Loretto Kentucky KY Marion 155 37.6421 -85.4113 +US 40049 Nerinx Kentucky KY Marion 155 37.6603 -85.3932 +US 40060 Raywick Kentucky KY Marion 155 37.538 -85.43 +US 40062 Saint Francis Kentucky KY Marion 155 37.6047 -85.4251 +US 40063 Saint Mary Kentucky KY Marion 155 37.5795 -85.3551 +US 40328 Gravel Switch Kentucky KY Marion 155 37.5758 -85.0824 +US 42025 Benton Kentucky KY Marshall 157 36.8806 -88.3548 +US 42029 Calvert City Kentucky KY Marshall 157 37.0147 -88.3811 +US 42044 Gilbertsville Kentucky KY Marshall 157 36.9655 -88.2667 +US 42048 Hardin Kentucky KY Marshall 157 36.7762 -88.2622 +US 41203 Beauty Kentucky KY Martin 159 37.7611 -82.6223 +US 41214 Debord Kentucky KY Martin 159 37.8001 -82.5594 +US 41224 Inez Kentucky KY Martin 159 37.8754 -82.5337 +US 41225 Job Kentucky KY Martin County 159 37.9453 -82.545 +US 41231 Lovely Kentucky KY Martin 159 37.8074 -82.4109 +US 41250 Pilgrim Kentucky KY Martin 159 37.7379 -82.4523 +US 41261 Warfield Kentucky KY Martin County 159 37.761 -82.459 +US 41262 Tomahawk Kentucky KY Martin 159 37.8251 -82.6457 +US 41267 Warfield Kentucky KY Martin 159 37.875 -82.4386 +US 41034 Dover Kentucky KY Mason 161 38.691 -83.8718 +US 41055 Mayslick Kentucky KY Mason 161 38.522 -83.861 +US 41056 Maysville Kentucky KY Mason 161 38.6207 -83.8067 +US 41062 Minerva Kentucky KY Mason 161 38.7196 -83.9103 +US 41096 Washington Kentucky KY Mason 161 38.6123 -83.808 +US 40104 Battletown Kentucky KY Meade 163 38.0393 -86.2991 +US 40108 Brandenburg Kentucky KY Meade 163 37.9662 -86.1084 +US 40117 Ekron Kentucky KY Meade 163 37.9113 -86.1542 +US 40142 Guston Kentucky KY Meade 163 37.8951 -86.2155 +US 40155 Muldraugh Kentucky KY Meade 163 37.9371 -85.9918 +US 40157 Payneville Kentucky KY Meade 163 38.0301 -86.4082 +US 40161 Rhodelia Kentucky KY Meade 163 38.006 -86.3984 +US 40316 Denniston Kentucky KY Menifee 165 37.9313 -83.5292 +US 40322 Frenchburg Kentucky KY Menifee 165 37.947 -83.6084 +US 40345 Mariba Kentucky KY Menifee County 165 37.918 -83.5579 +US 40346 Means Kentucky KY Menifee 165 37.9807 -83.7447 +US 40387 Wellington Kentucky KY Menifee 165 37.978 -83.4675 +US 40310 Burgin Kentucky KY Mercer 167 37.7548 -84.7499 +US 40330 Harrodsburg Kentucky KY Mercer 167 37.8033 -84.8607 +US 40372 Salvisa Kentucky KY Mercer 167 37.8664 -84.884 +US 42124 Beaumont Kentucky KY Metcalfe 169 36.8705 -85.644 +US 42129 Edmonton Kentucky KY Metcalfe 169 37.0008 -85.6095 +US 42154 Knob Lick Kentucky KY Metcalfe 169 37.0556 -85.6985 +US 42166 Summer Shade Kentucky KY Metcalfe 169 36.8883 -85.7083 +US 42169 Willow Shade Kentucky KY Metcalfe County 169 36.8582 -85.622 +US 42214 Center Kentucky KY Metcalfe 169 37.1177 -85.7038 +US 42133 Fountain Run Kentucky KY Monroe 171 36.72 -85.952 +US 42140 Gamaliel Kentucky KY Monroe 171 36.654 -85.8134 +US 42151 Hestand Kentucky KY Monroe 171 36.6535 -85.5698 +US 42157 Mount Hermon Kentucky KY Monroe 171 36.7723 -85.8195 +US 42167 Tompkinsville Kentucky KY Monroe 171 36.7236 -85.7009 +US 40334 Hope Kentucky KY Montgomery 173 38.0161 -83.7713 +US 40337 Jeffersonville Kentucky KY Montgomery 173 37.964 -83.8558 +US 40353 Mount Sterling Kentucky KY Montgomery 173 38.0548 -83.9388 +US 41125 Bruin Kentucky KY Morgan County 175 38.1877 -83.0187 +US 41352 Mize Kentucky KY Morgan 175 37.8235 -83.3335 +US 41407 Caney Kentucky KY Morgan County 175 37.8098 -83.2917 +US 41408 Cannel City Kentucky KY Morgan 175 37.914 -83.2338 +US 41412 Cottle Kentucky KY Morgan County 175 37.893 -83.2201 +US 41413 Crockett Kentucky KY Morgan 175 37.9705 -83.1252 +US 41417 West Liberty Kentucky KY Morgan County 175 37.9079 -83.1021 +US 41421 Elkfork Kentucky KY Morgan 175 37.9708 -83.1193 +US 41425 Ezel Kentucky KY Morgan 175 37.904 -83.3888 +US 41447 Lenox Kentucky KY Morgan County 175 37.9654 -83.1827 +US 41451 Malone Kentucky KY Morgan 175 37.914 -83.2338 +US 41452 Marshallville Kentucky KY Morgan County 175 37.678 -82.9893 +US 41457 Moon Kentucky KY Morgan County 175 37.9733 -83.0487 +US 41459 Ophir Kentucky KY Morgan 175 37.914 -83.2338 +US 41472 West Liberty Kentucky KY Morgan 175 37.9762 -83.1982 +US 41474 White Oak Kentucky KY Morgan County 175 37.8484 -83.2024 +US 41477 Wrigley Kentucky KY Morgan 175 37.914 -83.2338 +US 42321 Beech Creek Kentucky KY Muhlenberg 177 37.1716 -87.0559 +US 42323 Beechmont Kentucky KY Muhlenberg 177 37.1737 -87.0349 +US 42324 Belton Kentucky KY Muhlenberg 177 37.1511 -86.9774 +US 42325 Bremen Kentucky KY Muhlenberg 177 37.343 -87.233 +US 42326 Browder Kentucky KY Muhlenberg 177 37.1999 -87.0001 +US 42330 Central City Kentucky KY Muhlenberg 177 37.3007 -87.1202 +US 42332 Cleaton Kentucky KY Muhlenberg 177 37.2533 -87.0897 +US 42337 Drakesboro Kentucky KY Muhlenberg 177 37.2136 -87.048 +US 42339 Dunmor Kentucky KY Muhlenberg 177 37.084 -87.0079 +US 42344 Graham Kentucky KY Muhlenberg 177 37.2467 -87.2976 +US 42345 Greenville Kentucky KY Muhlenberg 177 37.2076 -87.1806 +US 42365 Penrod Kentucky KY Muhlenberg 177 37.1126 -86.9941 +US 42367 Powderly Kentucky KY Muhlenberg 177 37.2429 -87.1549 +US 42374 South Carrollton Kentucky KY Muhlenberg 177 37.3536 -87.1658 +US 40004 Bardstown Kentucky KY Nelson 179 37.8083 -85.4613 +US 40008 Bloomfield Kentucky KY Nelson 179 37.908 -85.2862 +US 40012 Chaplin Kentucky KY Nelson 179 37.9025 -85.2015 +US 40013 Coxs Creek Kentucky KY Nelson 179 37.9125 -85.4658 +US 40020 Fairfield Kentucky KY Nelson 179 37.934 -85.3862 +US 40028 Howardstown Kentucky KY Nelson County 179 37.5664 -85.5548 +US 40048 Nazareth Kentucky KY Nelson 179 37.8472 -85.4694 +US 40051 New Haven Kentucky KY Nelson 179 37.6438 -85.547 +US 40052 New Hope Kentucky KY Nelson 179 37.6021 -85.5164 +US 40107 Boston Kentucky KY Nelson 179 37.7408 -85.5948 +US 40311 Carlisle Kentucky KY Nicholas 181 38.3212 -84.0279 +US 40350 Moorefield Kentucky KY Nicholas 181 38.2926 -83.8929 +US 42320 Beaver Dam Kentucky KY Ohio 183 37.387 -86.8729 +US 42328 Centertown Kentucky KY Ohio 183 37.4079 -87.009 +US 42333 Cromwell Kentucky KY Ohio 183 37.3418 -86.77 +US 42338 Dundee Kentucky KY Ohio 183 37.552 -86.7776 +US 42343 Fordsville Kentucky KY Ohio 183 37.6297 -86.7263 +US 42347 Hartford Kentucky KY Ohio 183 37.4785 -86.918 +US 42349 Horse Branch Kentucky KY Ohio 183 37.4234 -86.6987 +US 42354 Mc Henry Kentucky KY Ohio 183 37.3778 -86.9298 +US 42358 Narrows Kentucky KY Ohio County 183 37.5752 -86.6884 +US 42361 Olaton Kentucky KY Ohio 183 37.5181 -86.7182 +US 42369 Rockport Kentucky KY Ohio 183 37.3554 -87.0065 +US 42370 Rosine Kentucky KY Ohio 183 37.449 -86.7389 +US 40010 Buckner Kentucky KY Oldham 185 38.3735 -85.4507 +US 40014 Crestwood Kentucky KY Oldham 185 38.3326 -85.461 +US 40026 Goshen Kentucky KY Oldham 185 38.4113 -85.5708 +US 40031 La Grange Kentucky KY Oldham 185 38.4029 -85.3928 +US 40032 La Grange Kentucky KY Oldham 185 38.4046 -85.4605 +US 40056 Pewee Valley Kentucky KY Oldham 185 38.3039 -85.4834 +US 40077 Westport Kentucky KY Oldham 185 38.4921 -85.4524 +US 40327 Gratz Kentucky KY Owen County 187 38.4781 -84.9429 +US 40355 New Liberty Kentucky KY Owen 187 38.6277 -84.8756 +US 40359 Owenton Kentucky KY Owen 187 38.4986 -84.8086 +US 40363 Perry Park Kentucky KY Owen 187 38.5218 -85.0139 +US 41314 Booneville Kentucky KY Owsley 189 37.4965 -83.6574 +US 41331 Haddix Kentucky KY Owsley County 189 37.4922 -83.3762 +US 41338 Island City Kentucky KY Owsley 189 37.3986 -83.7049 +US 41344 Lerose Kentucky KY Owsley 189 37.3986 -83.7049 +US 41351 Mistletoe Kentucky KY Owsley 189 37.3986 -83.7049 +US 41364 Ricetown Kentucky KY Owsley 189 37.3871 -83.6752 +US 41386 Vincent Kentucky KY Owsley 189 37.3986 -83.7049 +US 41006 Butler Kentucky KY Pendleton 191 38.8013 -84.3446 +US 41033 De Mossville Kentucky KY Pendleton 191 38.7623 -84.4859 +US 41040 Falmouth Kentucky KY Pendleton 191 38.6643 -84.3451 +US 40981 Saul Kentucky KY Perry 193 37.3313 -83.387 +US 41367 Rowdy Kentucky KY Perry 193 37.397 -83.227 +US 41701 Hazard Kentucky KY Perry 193 37.2983 -83.1912 +US 41702 Hazard Kentucky KY Perry 193 37.3201 -83.2065 +US 41710 Vicco Kentucky KY Perry County 193 37.2287 -83.0732 +US 41712 Ary Kentucky KY Perry 193 37.3638 -83.1546 +US 41713 Avawam Kentucky KY Perry 193 37.2254 -83.2736 +US 41719 Bonnyman Kentucky KY Perry 193 37.2983 -83.2544 +US 41720 Browns Fork Kentucky KY Perry County 193 37.2333 -83.2303 +US 41721 Buckhorn Kentucky KY Perry 193 37.301 -83.4936 +US 41722 Bulan Kentucky KY Perry 193 37.315 -83.1561 +US 41723 Busy Kentucky KY Perry 193 37.2632 -83.3007 +US 41727 Chavies Kentucky KY Perry 193 37.2778 -83.2627 +US 41729 Combs Kentucky KY Perry 193 37.2649 -83.2174 +US 41731 Cornettsville Kentucky KY Perry 193 37.1408 -83.0889 +US 41733 Daisy Kentucky KY Perry County 193 37.1159 -83.0951 +US 41735 Delphia Kentucky KY Perry 193 37.0233 -83.0956 +US 41736 Dice Kentucky KY Perry 193 37.3758 -83.2419 +US 41739 Dwarf Kentucky KY Perry 193 37.3394 -83.1303 +US 41745 Gays Creek Kentucky KY Perry 193 37.3353 -83.4347 +US 41746 Happy Kentucky KY Perry 193 37.2101 -83.0917 +US 41747 Hardburly Kentucky KY Perry 193 37.3002 -83.1225 +US 41751 Jeff Kentucky KY Perry 193 37.2184 -83.1427 +US 41754 Krypton Kentucky KY Perry 193 37.3003 -83.3219 +US 41756 Leatherwood Kentucky KY Perry County 193 37.0357 -83.1499 +US 41760 Scuddy Kentucky KY Perry 193 37.1971 -83.0817 +US 41763 Slemp Kentucky KY Perry 193 37.0705 -83.1136 +US 41771 Hazard Kentucky KY Perry County 193 37.2776 -83.2549 +US 41773 Vicco Kentucky KY Perry 193 37.202 -83.0658 +US 41774 Viper Kentucky KY Perry 193 37.1585 -83.1405 +US 41778 Yerkes Kentucky KY Perry 193 37.283 -83.3212 +US 41406 Buskirk Kentucky KY Pike County 195 37.6194 -82.1689 +US 41501 Pikeville Kentucky KY Pike 195 37.5161 -82.5173 +US 41502 Pikeville Kentucky KY Pike 195 37.4816 -82.5505 +US 41503 South Williamson Kentucky KY Pike 195 37.667 -82.2886 +US 41512 Ashcamp Kentucky KY Pike 195 37.2589 -82.4613 +US 41513 Belcher Kentucky KY Pike 195 37.3478 -82.3406 +US 41514 Belfry Kentucky KY Pike 195 37.6401 -82.2573 +US 41519 Canada Kentucky KY Pike 195 37.5899 -82.3308 +US 41520 Dorton Kentucky KY Pike 195 37.279 -82.5773 +US 41522 Elkhorn City Kentucky KY Pike 195 37.3109 -82.4091 +US 41524 Fedscreek Kentucky KY Pike 195 37.4266 -82.2562 +US 41526 Fords Branch Kentucky KY Pike 195 37.4372 -82.5185 +US 41527 Forest Hills Kentucky KY Pike 195 37.6432 -82.2991 +US 41528 Freeburn Kentucky KY Pike 195 37.5512 -82.1434 +US 41529 Goody Kentucky KY Pike County 195 37.6818 -82.313 +US 41531 Hardy Kentucky KY Pike 195 37.5928 -82.2328 +US 41534 Hellier Kentucky KY Pike 195 37.2819 -82.4808 +US 41535 Huddy Kentucky KY Pike 195 37.5964 -82.2797 +US 41536 Jamboree Kentucky KY Pike County 195 37.484 -82.0893 +US 41538 Jonancy Kentucky KY Pike 195 37.4706 -82.3488 +US 41539 Kimper Kentucky KY Pike 195 37.5068 -82.3271 +US 41540 Lick Creek Kentucky KY Pike 195 37.3592 -82.3092 +US 41542 Lookout Kentucky KY Pike 195 37.3148 -82.465 +US 41543 Mc Andrews Kentucky KY Pike 195 37.5624 -82.2803 +US 41544 Mc Carr Kentucky KY Pike 195 37.5969 -82.1674 +US 41545 McCombs Kentucky KY Pike County 195 37.5934 -82.5482 +US 41546 Mc Veigh Kentucky KY Pike 195 37.5198 -82.3013 +US 41547 Majestic Kentucky KY Pike 195 37.5311 -82.0916 +US 41548 Mouthcard Kentucky KY Pike 195 37.3815 -82.2727 +US 41549 Myra Kentucky KY Pike 195 37.4706 -82.3488 +US 41550 Nelse Kentucky KY Pike County 195 37.4037 -82.4401 +US 41551 Paw Paw Kentucky KY Pike County 195 37.4356 -82.1349 +US 41553 Phelps Kentucky KY Pike 195 37.4987 -82.1584 +US 41554 Phyllis Kentucky KY Pike 195 37.4484 -82.2985 +US 41555 Pinsonfork Kentucky KY Pike 195 37.5466 -82.2621 +US 41557 Raccoon Kentucky KY Pike 195 37.4935 -82.4221 +US 41558 Ransom Kentucky KY Pike 195 37.5426 -82.2085 +US 41559 Regina Kentucky KY Pike 195 37.3744 -82.3831 +US 41560 Robinson Creek Kentucky KY Pike 195 37.3799 -82.5616 +US 41561 Rockhouse Kentucky KY Pike 195 37.3316 -82.4626 +US 41562 Shelbiana Kentucky KY Pike 195 37.4063 -82.4673 +US 41563 Shelby Gap Kentucky KY Pike 195 37.2311 -82.5286 +US 41564 Sidney Kentucky KY Pike 195 37.6076 -82.3648 +US 41566 Steele Kentucky KY Pike 195 37.4029 -82.2071 +US 41567 Stone Kentucky KY Pike 195 37.5606 -82.289 +US 41568 Stopover Kentucky KY Pike 195 37.5093 -82.0784 +US 41569 Toler Kentucky KY Pike 195 37.6083 -82.2867 +US 41570 Turkey Creek Kentucky KY Pike County 195 37.6522 -82.3209 +US 41571 Varney Kentucky KY Pike 195 37.6275 -82.4356 +US 41572 Virgie Kentucky KY Pike 195 37.3197 -82.6114 +US 40309 Bowen Kentucky KY Powell County 197 37.841 -83.7718 +US 40312 Clay City Kentucky KY Powell 197 37.8524 -83.9309 +US 40376 Slade Kentucky KY Powell 197 37.7815 -83.6946 +US 40380 Stanton Kentucky KY Powell 197 37.8223 -83.7853 +US 40426 Dreyfus Kentucky KY Pulaski County 199 37.6186 -84.1624 +US 42501 Somerset Kentucky KY Pulaski 199 37.1029 -84.5443 +US 42502 Somerset Kentucky KY Pulaski 199 37.0932 -84.4277 +US 42503 Somerset Kentucky KY Pulaski 199 37.1566 -84.5248 +US 42518 Bronston Kentucky KY Pulaski 199 36.9525 -84.6314 +US 42519 Burnside Kentucky KY Pulaski 199 36.9393 -84.5357 +US 42532 Faubush Kentucky KY Pulaski County 199 37.0632 -84.8604 +US 42533 Ferguson Kentucky KY Pulaski 199 37.0677 -84.5927 +US 42536 Ingle Kentucky KY Pulaski County 199 37.0815 -84.8656 +US 42544 Nancy Kentucky KY Pulaski 199 37.0631 -84.7192 +US 42553 Science Hill Kentucky KY Pulaski 199 37.1683 -84.6487 +US 42554 Shopville Kentucky KY Pulaski County 199 37.1703 -84.4279 +US 42558 Tateville Kentucky KY Pulaski 199 36.9492 -84.5815 +US 42564 West Somerset Kentucky KY Pulaski 199 37.1114 -84.5929 +US 42567 Eubank Kentucky KY Pulaski 199 37.2642 -84.6066 +US 42618 Burnside Kentucky KY Pulaski County 199 36.9562 -84.7049 +US 41064 Mount Olivet Kentucky KY Robertson 201 38.5218 -84.048 +US 40409 Brodhead Kentucky KY Rockcastle 203 37.3815 -84.4336 +US 40417 Conway Kentucky KY Rockcastle County 203 37.4799 -84.3081 +US 40445 Livingston Kentucky KY Rockcastle 203 37.3074 -84.2318 +US 40456 Mount Vernon Kentucky KY Rockcastle 203 37.3983 -84.3379 +US 40460 Orlando Kentucky KY Rockcastle 203 37.3734 -84.2528 +US 40473 Renfro Valley Kentucky KY Rockcastle 203 37.3458 -84.3161 +US 40492 Wildie Kentucky KY Rockcastle 203 37.3458 -84.3161 +US 40313 Clearfield Kentucky KY Rowan 205 38.1287 -83.4425 +US 40317 Elliottville Kentucky KY Rowan 205 38.1765 -83.2682 +US 40319 Farmers Kentucky KY Rowan 205 38.1403 -83.5337 +US 40329 Haldeman Kentucky KY Rowan 205 38.2067 -83.4172 +US 40351 Morehead Kentucky KY Rowan 205 38.199 -83.4436 +US 42629 Jamestown Kentucky KY Russell 207 36.968 -85.0968 +US 42642 Russell Springs Kentucky KY Russell 207 37.0551 -85.0375 +US 40324 Georgetown Kentucky KY Scott 209 38.2117 -84.5562 +US 40370 Sadieville Kentucky KY Scott 209 38.3908 -84.5384 +US 40379 Stamping Ground Kentucky KY Scott 209 38.2888 -84.6818 +US 40003 Bagdad Kentucky KY Shelby 211 38.2608 -85.0651 +US 40022 Finchville Kentucky KY Shelby 211 38.1561 -85.3476 +US 40065 Shelbyville Kentucky KY Shelby 211 38.2162 -85.2243 +US 40066 Shelbyville Kentucky KY Shelby 211 38.1973 -85.2122 +US 40067 Simpsonville Kentucky KY Shelby 211 38.2312 -85.3548 +US 40076 Waddy Kentucky KY Shelby 211 38.1054 -85.1288 +US 42134 Franklin Kentucky KY Simpson 213 36.7254 -86.57 +US 42135 Franklin Kentucky KY Simpson 213 36.7582 -86.582 +US 40017 Defoe Kentucky KY Spencer County 215 38.3408 -85.0544 +US 40046 Mount Eden Kentucky KY Spencer 215 38.0352 -85.1641 +US 40071 Taylorsville Kentucky KY Spencer 215 38.0471 -85.3829 +US 42718 Campbellsville Kentucky KY Taylor 217 37.3466 -85.3508 +US 42719 Campbellsville Kentucky KY Taylor 217 37.3379 -85.3304 +US 42733 Elk Horn Kentucky KY Taylor 217 37.3393 -85.1918 +US 42736 Finley Kentucky KY Taylor County 217 37.4581 -85.3572 +US 42758 Mannsville Kentucky KY Taylor 217 37.3604 -85.198 +US 42203 Allegre Kentucky KY Todd 219 36.9292 -87.2193 +US 42204 Allensville Kentucky KY Todd 219 36.7207 -87.1041 +US 42216 Clifty Kentucky KY Todd 219 37.0045 -87.1521 +US 42220 Elkton Kentucky KY Todd 219 36.9094 -87.1678 +US 42234 Guthrie Kentucky KY Todd 219 36.7149 -87.1502 +US 42280 Sharon Grove Kentucky KY Todd 219 36.9278 -87.1003 +US 42286 Trenton Kentucky KY Todd 219 36.7314 -87.2611 +US 42211 Cadiz Kentucky KY Trigg 221 36.802 -87.8286 +US 42215 Cerulean Kentucky KY Trigg 221 36.9496 -87.6648 +US 42555 Sloans Valley Kentucky KY Trigg County 221 36.9686 -84.3749 +US 40006 Bedford Kentucky KY Trimble 223 38.5864 -85.3133 +US 40045 Milton Kentucky KY Trimble 223 38.6925 -85.3659 +US 42437 Morganfield Kentucky KY Union 225 37.6869 -87.9439 +US 42459 Sturgis Kentucky KY Union 225 37.5487 -87.9965 +US 42460 Sullivan Kentucky KY Union 225 37.494 -87.9328 +US 42461 Uniontown Kentucky KY Union 225 37.7677 -87.9263 +US 42462 Waverly Kentucky KY Union 225 37.743 -87.8067 +US 42101 Bowling Green Kentucky KY Warren 227 37.0174 -86.4518 +US 42102 Bowling Green Kentucky KY Warren 227 36.9223 -86.387 +US 42103 Bowling Green Kentucky KY Warren 227 36.9663 -86.3933 +US 42104 Bowling Green Kentucky KY Warren 227 36.9375 -86.4481 +US 42122 Alvaton Kentucky KY Warren 227 36.863 -86.3632 +US 42128 Drake Kentucky KY Warren 227 36.9834 -86.394 +US 42159 Oakland Kentucky KY Warren 227 36.9985 -86.2501 +US 42170 Woodburn Kentucky KY Warren 227 36.8557 -86.5623 +US 42171 Smiths Grove Kentucky KY Warren 227 37.0581 -86.1938 +US 42235 Hadley Kentucky KY Warren 227 36.9834 -86.394 +US 42270 Richardsville Kentucky KY Warren 227 36.9834 -86.394 +US 42274 Rockfield Kentucky KY Warren 227 36.9241 -86.5979 +US 40040 Mackville Kentucky KY Washington 229 37.7568 -85.059 +US 40061 Saint Catharine Kentucky KY Washington 229 37.774 -85.2011 +US 40069 Springfield Kentucky KY Washington 229 37.7342 -85.2107 +US 40078 Willisburg Kentucky KY Washington 229 37.8373 -85.1362 +US 42611 Coopersville Kentucky KY Wayne County 231 36.7171 -84.731 +US 42613 Delta Kentucky KY Wayne County 231 36.8017 -84.684 +US 42632 Mill Springs Kentucky KY Wayne 231 36.8004 -84.8183 +US 42633 Monticello Kentucky KY Wayne 231 36.8674 -84.8254 +US 42640 Rockybranch Kentucky KY Wayne County 231 36.6658 -84.8066 +US 42655 Windy Kentucky KY Wayne County 231 36.7755 -84.958 +US 42403 Blackford Kentucky KY Webster 233 37.446 -87.9334 +US 42404 Clay Kentucky KY Webster 233 37.4756 -87.8368 +US 42409 Dixon Kentucky KY Webster 233 37.5106 -87.7019 +US 42444 Poole Kentucky KY Webster 233 37.641 -87.6439 +US 42450 Providence Kentucky KY Webster 233 37.405 -87.7505 +US 42455 Sebree Kentucky KY Webster 233 37.5889 -87.5255 +US 42456 Slaughters Kentucky KY Webster 233 37.5054 -87.5053 +US 42463 Wheatcroft Kentucky KY Webster 233 37.488 -87.8661 +US 40701 Corbin Kentucky KY Whitley 235 36.9344 -84.1021 +US 40702 Corbin Kentucky KY Whitley 235 36.9374 -84.1031 +US 40730 Emlyn Kentucky KY Whitley 235 36.7039 -84.1415 +US 40754 Nevisdale Kentucky KY Whitley 235 36.7803 -84.1168 +US 40759 Rockholds Kentucky KY Whitley 235 36.8242 -84.104 +US 40763 Siler Kentucky KY Whitley 235 36.7025 -83.955 +US 40769 Williamsburg Kentucky KY Whitley 235 36.747 -84.1394 +US 40365 Pomeroyton Kentucky KY Wolfe County 237 37.872 -83.5298 +US 41301 Campton Kentucky KY Wolfe 237 37.7287 -83.494 +US 41306 Altro Kentucky KY Wolfe County 237 37.3563 -83.3957 +US 41313 Bethany Kentucky KY Wolfe 237 37.7405 -83.4754 +US 41315 Burkhart Kentucky KY Wolfe County 237 37.6965 -83.2735 +US 41327 Gillmore Kentucky KY Wolfe County 237 37.6972 -83.348 +US 41328 Green Hall Kentucky KY Wolfe County 237 37.3696 -83.7814 +US 41332 Hazel Green Kentucky KY Wolfe 237 37.7981 -83.421 +US 41342 Lee City Kentucky KY Wolfe 237 37.7405 -83.4754 +US 41343 Leeco Kentucky KY Wolfe County 237 37.6989 -83.6928 +US 41360 Pine Ridge Kentucky KY Wolfe 237 37.7749 -83.6321 +US 41365 Rogers Kentucky KY Wolfe 237 37.7093 -83.6314 +US 41396 Zachariah Kentucky KY Wolfe County 237 37.6813 -83.6658 +US 40347 Midway Kentucky KY Woodford 239 38.1487 -84.6928 +US 40383 Versailles Kentucky KY Woodford 239 38.0413 -84.7287 +US 40384 Versailles Kentucky KY Woodford 239 38.0213 -84.7455 +US 40386 Versailles Kentucky KY Woodford 239 38.0213 -84.7455 +US 70516 Branch Louisiana LA Acadia 001 30.3446 -92.3459 +US 70525 Church Point Louisiana LA Acadia 001 30.4013 -92.224 +US 70526 Crowley Louisiana LA Acadia 001 30.2148 -92.3777 +US 70527 Crowley Louisiana LA Acadia 001 30.2284 -92.3018 +US 70531 Egan Louisiana LA Acadia 001 30.251 -92.5002 +US 70534 Estherwood Louisiana LA Acadia 001 30.1842 -92.4472 +US 70537 Evangeline Louisiana LA Acadia 001 30.2683 -92.5532 +US 70543 Iota Louisiana LA Acadia 001 30.3001 -92.5322 +US 70556 Mermentau Louisiana LA Acadia 001 30.1861 -92.5722 +US 70559 Morse Louisiana LA Acadia 001 30.1298 -92.4767 +US 70578 Rayne Louisiana LA Acadia 001 30.2045 -92.2486 +US 70638 Elizabeth Louisiana LA Allen 003 30.8547 -92.7815 +US 70644 Grant Louisiana LA Allen 003 30.7962 -92.9517 +US 70648 Kinder Louisiana LA Allen 003 30.4607 -92.8693 +US 70651 Leblanc Louisiana LA Allen 003 30.5648 -92.9583 +US 70654 Mittie Louisiana LA Allen 003 30.7144 -92.9068 +US 70655 Oberlin Louisiana LA Allen 003 30.6162 -92.7527 +US 70658 Reeves Louisiana LA Allen 003 30.4967 -93.0368 +US 71463 Oakdale Louisiana LA Allen 003 30.8172 -92.664 +US 70346 Donaldsonville Louisiana LA Ascension 005 30.1018 -90.997 +US 70376 Modeste Louisiana LA Ascension 005 30.2047 -90.8695 +US 70707 Gonzales Louisiana LA Ascension 005 30.2047 -90.8695 +US 70718 Brittany Louisiana LA Ascension 005 30.201 -90.8689 +US 70725 Darrow Louisiana LA Ascension 005 30.13 -90.9651 +US 70728 Duplessis Louisiana LA Ascension 005 30.2954 -90.9458 +US 70734 Geismar Louisiana LA Ascension 005 30.2363 -90.9758 +US 70737 Gonzales Louisiana LA Ascension 005 30.2473 -90.918 +US 70738 Burnside Louisiana LA Ascension 005 30.2047 -90.8695 +US 70769 Prairieville Louisiana LA Ascension 005 30.3073 -90.9405 +US 70774 Saint Amant Louisiana LA Ascension 005 30.2385 -90.8435 +US 70778 Sorrento Louisiana LA Ascension 005 30.1854 -90.8631 +US 70339 Pierre Part Louisiana LA Assumption 007 29.9476 -91.1885 +US 70341 Belle Rose Louisiana LA Assumption 007 30.026 -91.0444 +US 70372 Labadieville Louisiana LA Assumption 007 29.8345 -90.9613 +US 70390 Napoleonville Louisiana LA Assumption 007 29.9288 -91.0266 +US 70391 Paincourtville Louisiana LA Assumption 007 29.9902 -91.0588 +US 70393 Plattenville Louisiana LA Assumption 007 29.9974 -91.0232 +US 71318 Big Bend Louisiana LA Avoyelles Parish 009 31.0868 -91.8317 +US 71320 Bordelonville Louisiana LA Avoyelles 009 31.1806 -91.7718 +US 71322 Bunkie Louisiana LA Avoyelles 009 30.8641 -92.1466 +US 71323 Center Point Louisiana LA Avoyelles 009 31.2631 -92.1879 +US 71327 Cottonport Louisiana LA Avoyelles 009 30.9862 -92.0581 +US 71329 Dupont Louisiana LA Avoyelles 009 31.0959 -91.979 +US 71331 Effie Louisiana LA Avoyelles 009 31.2275 -92.0967 +US 71333 Evergreen Louisiana LA Avoyelles 009 30.9161 -92.067 +US 71339 Hamburg Louisiana LA Avoyelles 009 31.0376 -91.9042 +US 71341 Hessmer Louisiana LA Avoyelles 009 31.0534 -92.1399 +US 71350 Mansura Louisiana LA Avoyelles 009 31.0615 -92.0543 +US 71351 Marksville Louisiana LA Avoyelles 009 31.1396 -92.0831 +US 71355 Moreauville Louisiana LA Avoyelles 009 31.0988 -91.8748 +US 71362 Plaucheville Louisiana LA Avoyelles 009 30.9365 -91.9847 +US 71369 Simmesport Louisiana LA Avoyelles 009 30.9771 -91.8259 +US 71372 Vick Louisiana LA Avoyelles Parish 009 31.2708 -92.0653 +US 70634 Deridder Louisiana LA Beauregard 011 30.8287 -93.2685 +US 70637 Dry Creek Louisiana LA Beauregard 011 30.6859 -92.9843 +US 70652 Longville Louisiana LA Beauregard 011 30.58 -93.2548 +US 70653 Merryville Louisiana LA Beauregard 011 30.6716 -93.5613 +US 70657 Ragley Louisiana LA Beauregard 011 30.4703 -93.2337 +US 70660 Singer Louisiana LA Beauregard 011 30.5329 -93.465 +US 70662 Sugartown Louisiana LA Beauregard 011 30.8277 -93.017 +US 71001 Arcadia Louisiana LA Bienville 013 32.5556 -92.9245 +US 71008 Bienville Louisiana LA Bienville 013 32.2523 -92.9084 +US 71016 Castor Louisiana LA Bienville 013 32.2452 -93.0936 +US 71028 Gibsland Louisiana LA Bienville 013 32.5299 -93.0706 +US 71045 Jamestown Louisiana LA Bienville 013 32.3613 -93.1848 +US 71068 Ringgold Louisiana LA Bienville 013 32.3263 -93.2982 +US 71070 Saline Louisiana LA Bienville 013 32.197 -92.917 +US 71080 Taylor Louisiana LA Bienville 013 32.366 -93.1011 +US 71006 Benton Louisiana LA Bossier 015 32.6976 -93.691 +US 71037 Haughton Louisiana LA Bossier 015 32.5507 -93.5657 +US 71051 Elm Grove Louisiana LA Bossier 015 32.3886 -93.5026 +US 71064 Plain Dealing Louisiana LA Bossier 015 32.9074 -93.6905 +US 71067 Princeton Louisiana LA Bossier 015 32.5791 -93.5226 +US 71110 Barksdale Afb Louisiana LA Bossier 015 32.5137 -93.6404 +US 71111 Bossier City Louisiana LA Bossier 015 32.5449 -93.7038 +US 71112 Bossier City Louisiana LA Bossier 015 32.486 -93.6767 +US 71113 Bossier City Louisiana LA Bossier 015 32.6276 -93.609 +US 71171 Bossier City Louisiana LA Bossier 015 32.6276 -93.609 +US 71172 Bossier City Louisiana LA Bossier 015 32.6276 -93.609 +US 71004 Belcher Louisiana LA Caddo 017 32.7544 -93.8508 +US 71007 Bethany Louisiana LA Caddo 017 32.3662 -94.0034 +US 71009 Blanchard Louisiana LA Caddo 017 32.5719 -93.8871 +US 71029 Gilliam Louisiana LA Caddo 017 32.8251 -93.8293 +US 71033 Greenwood Louisiana LA Caddo 017 32.4579 -93.9717 +US 71043 Hosston Louisiana LA Caddo 017 32.8967 -93.8834 +US 71044 Ida Louisiana LA Caddo 017 32.9934 -93.9022 +US 71047 Keithville Louisiana LA Caddo 017 32.3161 -93.8881 +US 71059 Mira Louisiana LA Caddo Parish 017 32.9225 -93.9188 +US 71060 Mooringsport Louisiana LA Caddo 017 32.6626 -93.973 +US 71061 Oil City Louisiana LA Caddo 017 32.7451 -93.9838 +US 71069 Rodessa Louisiana LA Caddo 017 32.9701 -93.9885 +US 71082 Vivian Louisiana LA Caddo 017 32.8423 -93.9504 +US 71101 Shreveport Louisiana LA Caddo 017 32.5037 -93.7487 +US 71102 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71103 Shreveport Louisiana LA Caddo 017 32.4945 -93.7727 +US 71104 Shreveport Louisiana LA Caddo 017 32.483 -93.7349 +US 71105 Shreveport Louisiana LA Caddo 017 32.4589 -93.7143 +US 71106 Shreveport Louisiana LA Caddo 017 32.3912 -93.7116 +US 71107 Shreveport Louisiana LA Caddo 017 32.6016 -93.8738 +US 71108 Shreveport Louisiana LA Caddo 017 32.4486 -93.7814 +US 71109 Shreveport Louisiana LA Caddo 017 32.474 -93.8013 +US 71115 Shreveport Louisiana LA Caddo 017 32.3401 -93.6092 +US 71118 Shreveport Louisiana LA Caddo 017 32.3977 -93.8025 +US 71119 Shreveport Louisiana LA Caddo 017 32.4771 -93.8726 +US 71120 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71129 Shreveport Louisiana LA Caddo 017 32.4141 -93.8742 +US 71130 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71133 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71134 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71135 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71136 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71137 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71138 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71148 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71149 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71150 Shreveport Louisiana LA Caddo Parish 017 32.5056 -93.7434 +US 71151 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71152 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71153 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71154 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71156 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71161 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71162 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71163 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71164 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71165 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 71166 Shreveport Louisiana LA Caddo 017 32.6076 -93.7526 +US 70601 Lake Charles Louisiana LA Calcasieu 019 30.2285 -93.188 +US 70602 Lake Charles Louisiana LA Calcasieu 019 30.2642 -93.3265 +US 70605 Lake Charles Louisiana LA Calcasieu 019 30.1693 -93.2218 +US 70606 Lake Charles Louisiana LA Calcasieu 019 30.2642 -93.3265 +US 70607 Lake Charles Louisiana LA Calcasieu 019 30.1244 -93.1835 +US 70609 Lake Charles Louisiana LA Calcasieu 019 30.2642 -93.3265 +US 70611 Lake Charles Louisiana LA Calcasieu 019 30.322 -93.2111 +US 70612 Lake Charles Louisiana LA Calcasieu 019 30.2642 -93.3265 +US 70615 Lake Charles Louisiana LA Calcasieu 019 30.2585 -93.1146 +US 70616 Lake Charles Louisiana LA Calcasieu 019 30.2642 -93.3265 +US 70629 Lake Charles Louisiana LA Calcasieu 019 30.2642 -93.3265 +US 70630 Bell City Louisiana LA Calcasieu 019 30.1054 -93.0372 +US 70633 Dequincy Louisiana LA Calcasieu 019 30.4211 -93.4151 +US 70646 Hayes Louisiana LA Calcasieu 019 30.097 -92.9146 +US 70647 Iowa Louisiana LA Calcasieu 019 30.2219 -93.0259 +US 70661 Starks Louisiana LA Calcasieu 019 30.3085 -93.6615 +US 70663 Sulphur Louisiana LA Calcasieu 019 30.219 -93.3639 +US 70664 Sulphur Louisiana LA Calcasieu 019 30.2642 -93.3265 +US 70665 Sulphur Louisiana LA Calcasieu 019 30.2009 -93.4437 +US 70668 Vinton Louisiana LA Calcasieu 019 30.2015 -93.5728 +US 70669 Westlake Louisiana LA Calcasieu 019 30.2613 -93.2688 +US 71415 Clarks Louisiana LA Caldwell 021 32.0344 -92.1381 +US 71418 Columbia Louisiana LA Caldwell 021 32.1022 -92.1177 +US 71435 Grayson Louisiana LA Caldwell 021 32.067 -92.1698 +US 71436 Hebert Louisiana LA Caldwell Parish 021 32.188 -91.9881 +US 71441 Kelly Louisiana LA Caldwell 021 31.9648 -92.1825 +US 70631 Cameron Louisiana LA Cameron 023 29.7911 -93.438 +US 70632 Creole Louisiana LA Cameron 023 29.8646 -93.0033 +US 70643 Grand Chenier Louisiana LA Cameron 023 29.7644 -92.9261 +US 70645 Hackberry Louisiana LA Cameron 023 29.9822 -93.375 +US 71340 Harrisonburg Louisiana LA Catahoula 025 31.7779 -91.8133 +US 71343 Jonesville Louisiana LA Catahoula 025 31.6862 -91.8678 +US 71363 Rhinehart Louisiana LA Catahoula 025 31.5963 -91.7794 +US 71368 Sicily Island Louisiana LA Catahoula 025 31.8507 -91.6807 +US 71401 Aimwell Louisiana LA Catahoula 025 31.7619 -91.9925 +US 71425 Enterprise Louisiana LA Catahoula 025 31.9064 -91.8751 +US 71003 Athens Louisiana LA Claiborne 027 32.6451 -93.0239 +US 71038 Haynesville Louisiana LA Claiborne 027 32.9278 -93.0691 +US 71040 Homer Louisiana LA Claiborne 027 32.7749 -93.0288 +US 71048 Lisbon Louisiana LA Claiborne 027 32.8452 -92.8878 +US 71079 Summerfield Louisiana LA Claiborne 027 32.9238 -92.8215 +US 71316 Acme Louisiana LA Concordia 029 31.3016 -91.8216 +US 71326 Clayton Louisiana LA Concordia 029 31.7158 -91.5163 +US 71334 Ferriday Louisiana LA Concordia 029 31.6602 -91.5502 +US 71344 Larto Louisiana LA Concordia Parish 029 31.4054 -91.9042 +US 71354 Monterey Louisiana LA Concordia 029 31.3474 -91.7246 +US 71373 Vidalia Louisiana LA Concordia 029 31.5782 -91.4695 +US 71377 Wildsville Louisiana LA Concordia 029 31.6094 -91.7808 +US 71027 Frierson Louisiana LA De Soto 031 32.245 -93.6915 +US 71030 Gloster Louisiana LA De Soto 031 32.1858 -93.801 +US 71032 Grand Cane Louisiana LA De Soto 031 32.105 -93.7941 +US 71046 Keatchie Louisiana LA De Soto 031 32.1622 -93.951 +US 71049 Logansport Louisiana LA De Soto 031 31.9943 -93.9627 +US 71050 Longstreet Louisiana LA De Soto 031 32.1175 -93.9138 +US 71052 Mansfield Louisiana LA De Soto 031 32.0239 -93.698 +US 71063 Pelican Louisiana LA De Soto 031 31.8966 -93.5634 +US 71078 Stonewall Louisiana LA De Soto 031 32.2848 -93.8003 +US 70704 Baker Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70714 Baker Louisiana LA East Baton Rouge 033 30.5814 -91.1429 +US 70739 Greenwell Springs Louisiana LA East Baton Rouge 033 30.5984 -90.9705 +US 70770 Pride Louisiana LA East Baton Rouge 033 30.6133 -90.9943 +US 70791 Zachary Louisiana LA East Baton Rouge 033 30.6561 -91.1358 +US 70801 Baton Rouge Louisiana LA East Baton Rouge 033 30.4492 -91.1856 +US 70802 Baton Rouge Louisiana LA East Baton Rouge 033 30.4438 -91.1775 +US 70803 Baton Rouge Louisiana LA East Baton Rouge 033 30.405 -91.1868 +US 70804 Baton Rouge Louisiana LA East Baton Rouge 033 30.3863 -91.1339 +US 70805 Baton Rouge Louisiana LA East Baton Rouge 033 30.486 -91.1481 +US 70806 Baton Rouge Louisiana LA East Baton Rouge 033 30.4485 -91.13 +US 70807 Baton Rouge Louisiana LA East Baton Rouge 033 30.5768 -91.2246 +US 70808 Baton Rouge Louisiana LA East Baton Rouge 033 30.4066 -91.1468 +US 70809 Baton Rouge Louisiana LA East Baton Rouge 033 30.4089 -91.0842 +US 70810 Baton Rouge Louisiana LA East Baton Rouge 033 30.3633 -91.0919 +US 70811 Baton Rouge Louisiana LA East Baton Rouge 033 30.5317 -91.1167 +US 70812 Baton Rouge Louisiana LA East Baton Rouge 033 30.5052 -91.1181 +US 70813 Baton Rouge Louisiana LA East Baton Rouge 033 30.5201 -91.1949 +US 70814 Baton Rouge Louisiana LA East Baton Rouge 033 30.4848 -91.0689 +US 70815 Baton Rouge Louisiana LA East Baton Rouge 033 30.4558 -91.0596 +US 70816 Baton Rouge Louisiana LA East Baton Rouge 033 30.4273 -91.0356 +US 70817 Baton Rouge Louisiana LA East Baton Rouge 033 30.3904 -91.0021 +US 70818 Baton Rouge Louisiana LA East Baton Rouge 033 30.5408 -91.05 +US 70819 Baton Rouge Louisiana LA East Baton Rouge 033 30.4668 -91.0156 +US 70820 Baton Rouge Louisiana LA East Baton Rouge 033 30.3795 -91.1671 +US 70821 Baton Rouge Louisiana LA East Baton Rouge 033 30.4613 -91.0447 +US 70822 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70823 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70825 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70826 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70827 Baton Rouge Louisiana LA East Baton Rouge 033 30.4338 -91.0825 +US 70831 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70833 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70835 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70836 Baton Rouge Louisiana LA East Baton Rouge 033 30.392 -91.0892 +US 70837 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70873 Baton Rouge Louisiana LA East Baton Rouge Parish 033 30.5305 -91.1163 +US 70874 Baton Rouge Louisiana LA East Baton Rouge 033 30.5902 -91.2054 +US 70879 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70883 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70884 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70891 Baton Rouge Louisiana LA East Baton Rouge Parish 033 30.4492 -91.1547 +US 70892 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70893 Baton Rouge Louisiana LA East Baton Rouge 033 30.413 -91.1715 +US 70894 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70895 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70896 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 70898 Baton Rouge Louisiana LA East Baton Rouge 033 30.5159 -91.0804 +US 71254 Lake Providence Louisiana LA East Carroll 035 32.8071 -91.1906 +US 71276 Sondheimer Louisiana LA East Carroll 035 32.5756 -91.1496 +US 71286 Transylvania Louisiana LA East Carroll 035 32.6705 -91.2288 +US 70722 Clinton Louisiana LA East Feliciana 037 30.8249 -90.9331 +US 70730 Ethel Louisiana LA East Feliciana 037 30.8131 -91.11 +US 70748 Jackson Louisiana LA East Feliciana 037 30.8087 -91.1987 +US 70761 Norwood Louisiana LA East Feliciana 037 30.9518 -91.0629 +US 70777 Slaughter Louisiana LA East Feliciana 037 30.7383 -91.07 +US 70789 Wilson Louisiana LA East Feliciana 037 30.9473 -91.0655 +US 70515 Basile Louisiana LA Evangeline 039 30.4978 -92.5736 +US 70524 Chataignier Louisiana LA Evangeline 039 30.5709 -92.3202 +US 70554 Mamou Louisiana LA Evangeline 039 30.6496 -92.4196 +US 70576 Pine Prairie Louisiana LA Evangeline 039 30.7831 -92.4163 +US 70580 Reddell Louisiana LA Evangeline 039 30.675 -92.4265 +US 70585 Turkey Creek Louisiana LA Evangeline 039 30.8707 -92.404 +US 70586 Ville Platte Louisiana LA Evangeline 039 30.6924 -92.2737 +US 71367 Saint Landry Louisiana LA Evangeline 039 30.8998 -92.2964 +US 71219 Baskin Louisiana LA Franklin 041 32.2897 -91.7132 +US 71230 Crowville Louisiana LA Franklin 041 32.1389 -91.6919 +US 71239 Extension Louisiana LA Franklin Parish 041 31.9471 -91.8011 +US 71243 Fort Necessity Louisiana LA Franklin 041 32.0434 -91.8257 +US 71249 Jigger Louisiana LA Franklin 041 32.1389 -91.6919 +US 71295 Winnsboro Louisiana LA Franklin 041 32.1592 -91.7108 +US 71324 Chase Louisiana LA Franklin 041 32.1389 -91.6919 +US 71336 Gilbert Louisiana LA Franklin 041 32.0349 -91.592 +US 71378 Wisner Louisiana LA Franklin 041 31.9913 -91.6768 +US 71407 Bentley Louisiana LA Grant 043 31.5187 -92.4807 +US 71417 Colfax Louisiana LA Grant 043 31.5079 -92.6568 +US 71423 Dry Prong Louisiana LA Grant 043 31.5979 -92.5665 +US 71432 Georgetown Louisiana LA Grant 043 31.745 -92.3952 +US 71454 Montgomery Louisiana LA Grant 043 31.6674 -92.8412 +US 71467 Pollock Louisiana LA Grant 043 31.5 -92.4005 +US 71481 Verda Louisiana LA Grant 043 31.5925 -92.5848 +US 70513 Avery Island Louisiana LA Iberia 045 29.8981 -91.9062 +US 70544 Jeanerette Louisiana LA Iberia 045 29.9032 -91.6544 +US 70552 Loreauville Louisiana LA Iberia 045 30.0683 -91.6596 +US 70560 New Iberia Louisiana LA Iberia 045 30.001 -91.82 +US 70562 New Iberia Louisiana LA Iberia 045 29.7399 -91.6331 +US 70563 New Iberia Louisiana LA Iberia 045 30.0245 -91.7496 +US 70569 Lydia Louisiana LA Iberia 045 29.9096 -91.8126 +US 70716 Bayou Goula Louisiana LA Iberville 047 30.2614 -91.3603 +US 70721 Carville Louisiana LA Iberville 047 30.2184 -91.0925 +US 70740 Grosse Tete Louisiana LA Iberville 047 30.3879 -91.4383 +US 70757 Maringouin Louisiana LA Iberville 047 30.4626 -91.5099 +US 70764 Plaquemine Louisiana LA Iberville 047 30.2684 -91.2524 +US 70765 Plaquemine Louisiana LA Iberville 047 30.2614 -91.3603 +US 70772 Rosedale Louisiana LA Iberville 047 30.4408 -91.4562 +US 70776 Saint Gabriel Louisiana LA Iberville 047 30.2528 -91.0857 +US 70780 Sunshine Louisiana LA Iberville 047 30.2982 -91.1799 +US 70788 White Castle Louisiana LA Iberville 047 30.1545 -91.1773 +US 71226 Chatham Louisiana LA Jackson 049 32.2922 -92.4374 +US 71238 Eros Louisiana LA Jackson 049 32.3988 -92.3479 +US 71247 Hodge Louisiana LA Jackson 049 32.2632 -92.735 +US 71251 Jonesboro Louisiana LA Jackson 049 32.2483 -92.6944 +US 71268 Quitman Louisiana LA Jackson 049 32.3564 -92.7085 +US 70001 Metairie Louisiana LA Jefferson 051 29.9871 -90.1695 +US 70002 Metairie Louisiana LA Jefferson 051 30.0098 -90.163 +US 70003 Metairie Louisiana LA Jefferson 051 29.9975 -90.2146 +US 70004 Metairie Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70005 Metairie Louisiana LA Jefferson 051 30.0005 -90.1331 +US 70006 Metairie Louisiana LA Jefferson 051 30.0129 -90.1915 +US 70009 Metairie Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70010 Metairie Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70011 Metairie Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70033 Metairie Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70036 Barataria Louisiana LA Jefferson 051 29.6964 -90.1122 +US 70053 Gretna Louisiana LA Jefferson 051 29.9108 -90.0531 +US 70054 Gretna Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70055 Metairie Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70056 Gretna Louisiana LA Jefferson 051 29.8872 -90.0331 +US 70058 Harvey Louisiana LA Jefferson 051 29.8725 -90.0673 +US 70059 Harvey Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70060 Metairie Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70062 Kenner Louisiana LA Jefferson 051 29.9912 -90.2479 +US 70063 Kenner Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70064 Kenner Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70065 Kenner Louisiana LA Jefferson 051 30.0252 -90.2522 +US 70067 Lafitte Louisiana LA Jefferson 051 29.7143 -90.1052 +US 70072 Marrero Louisiana LA Jefferson 051 29.8598 -90.1105 +US 70073 Marrero Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70094 Westwego Louisiana LA Jefferson 051 29.8973 -90.2033 +US 70096 Westwego Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70097 Kenner Louisiana LA Jefferson Parish 051 29.9565 -90.2635 +US 70121 New Orleans Louisiana LA Jefferson 051 29.9614 -90.1577 +US 70123 New Orleans Louisiana LA Jefferson 051 29.9511 -90.206 +US 70141 New Orleans Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70181 New Orleans Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70183 New Orleans Louisiana LA Jefferson 051 29.6779 -90.0901 +US 70358 Grand Isle Louisiana LA Jefferson 051 29.2297 -90.0088 +US 70532 Elton Louisiana LA Jefferson Davis 053 30.4715 -92.6996 +US 70546 Jennings Louisiana LA Jefferson Davis 053 30.2201 -92.6574 +US 70549 Lake Arthur Louisiana LA Jefferson Davis 053 30.091 -92.6825 +US 70581 Roanoke Louisiana LA Jefferson Davis 053 30.2464 -92.7421 +US 70591 Welsh Louisiana LA Jefferson Davis 053 30.2363 -92.819 +US 70640 Fenton Louisiana LA Jefferson Davis 053 30.3655 -92.9122 +US 70650 Lacassine Louisiana LA Jefferson Davis 053 30.2374 -92.9232 +US 70501 Lafayette Louisiana LA Lafayette 055 30.2361 -92.0083 +US 70502 Lafayette Louisiana LA Lafayette 055 30.3198 -92.027 +US 70503 Lafayette Louisiana LA Lafayette 055 30.1843 -92.0497 +US 70504 Lafayette Louisiana LA Lafayette 055 30.2139 -92.0187 +US 70505 Lafayette Louisiana LA Lafayette 055 30.2023 -92.0188 +US 70506 Lafayette Louisiana LA Lafayette 055 30.2077 -92.0656 +US 70507 Lafayette Louisiana LA Lafayette 055 30.2813 -92.016 +US 70508 Lafayette Louisiana LA Lafayette 055 30.1582 -92.0236 +US 70509 Lafayette Louisiana LA Lafayette 055 30.1565 -92 +US 70518 Broussard Louisiana LA Lafayette 055 30.1219 -91.9502 +US 70520 Carencro Louisiana LA Lafayette 055 30.3244 -92.0423 +US 70529 Duson Louisiana LA Lafayette 055 30.1912 -92.1525 +US 70558 Milton Louisiana LA Lafayette 055 30.0988 -92.0648 +US 70583 Scott Louisiana LA Lafayette 055 30.2504 -92.0981 +US 70592 Youngsville Louisiana LA Lafayette 055 30.0975 -92.0096 +US 70593 Lafayette Louisiana LA Lafayette 055 30.2081 -92.0951 +US 70595 Lafayette Louisiana LA Lafayette Parish 055 30.2259 -92.0218 +US 70596 Lafayette Louisiana LA Lafayette 055 30.2081 -92.0951 +US 70598 Lafayette Louisiana LA Lafayette 055 30.2081 -92.0951 +US 70301 Thibodaux Louisiana LA Lafourche 057 29.7992 -90.8096 +US 70302 Thibodaux Louisiana LA Lafourche 057 29.4587 -90.5028 +US 70310 Thibodaux Louisiana LA Lafourche 057 29.8033 -90.8169 +US 70345 Cut Off Louisiana LA Lafourche 057 29.5232 -90.3393 +US 70354 Galliano Louisiana LA Lafourche 057 29.4311 -90.2981 +US 70355 Gheens Louisiana LA Lafourche 057 29.7076 -90.4849 +US 70357 Golden Meadow Louisiana LA Lafourche 057 29.3821 -90.2639 +US 70371 Kraemer Louisiana LA Lafourche 057 29.8652 -90.5962 +US 70373 Larose Louisiana LA Lafourche 057 29.5177 -90.456 +US 70374 Lockport Louisiana LA Lafourche 057 29.6155 -90.4442 +US 70375 Mathews Louisiana LA Lafourche 057 29.6938 -90.5496 +US 70394 Raceland Louisiana LA Lafourche 057 29.7178 -90.5999 +US 71342 Jena Louisiana LA La Salle 059 31.6748 -92.1137 +US 71371 Trout Louisiana LA La Salle 059 31.6531 -92.1993 +US 71465 Olla Louisiana LA La Salle 059 31.8734 -92.2214 +US 71479 Tullos Louisiana LA La Salle 059 31.8569 -92.374 +US 71480 Urania Louisiana LA La Salle 059 31.865 -92.2915 +US 71227 Choudrant Louisiana LA Lincoln 061 32.5556 -92.5224 +US 71235 Dubach Louisiana LA Lincoln 061 32.6949 -92.6785 +US 71245 Grambling Louisiana LA Lincoln 061 32.5244 -92.7158 +US 71270 Ruston Louisiana LA Lincoln 061 32.5308 -92.6439 +US 71272 Ruston Louisiana LA Lincoln 061 32.5258 -92.6493 +US 71273 Ruston Louisiana LA Lincoln 061 32.6065 -92.6484 +US 71275 Simsboro Louisiana LA Lincoln 061 32.5384 -92.7995 +US 70449 Maurepas Louisiana LA Livingston 063 30.2716 -90.7043 +US 70462 Springfield Louisiana LA Livingston 063 30.4157 -90.5775 +US 70706 Denham Springs Louisiana LA Livingston 063 30.6085 -90.9038 +US 70711 Albany Louisiana LA Livingston 063 30.5149 -90.5964 +US 70726 Denham Springs Louisiana LA Livingston 063 30.459 -90.9027 +US 70727 Denham Springs Louisiana LA Livingston 063 30.3375 -90.8434 +US 70733 French Settlement Louisiana LA Livingston 063 30.3136 -90.7788 +US 70744 Holden Louisiana LA Livingston 063 30.5556 -90.6652 +US 70754 Livingston Louisiana LA Livingston 063 30.4741 -90.7673 +US 70785 Walker Louisiana LA Livingston 063 30.5247 -90.8557 +US 70786 Watson Louisiana LA Livingston 063 30.5502 -90.9582 +US 71233 Delta Louisiana LA Madison 065 32.3416 -91.2165 +US 71282 Tallulah Louisiana LA Madison 065 32.4326 -91.0645 +US 71284 Tallulah Louisiana LA Madison 065 32.3416 -91.2165 +US 71220 Bastrop Louisiana LA Morehouse 067 32.7894 -91.9078 +US 71221 Bastrop Louisiana LA Morehouse 067 32.8239 -91.8435 +US 71223 Bonita Louisiana LA Morehouse 067 32.9123 -91.6822 +US 71229 Collinston Louisiana LA Morehouse 067 32.6971 -91.8634 +US 71250 Jones Louisiana LA Morehouse 067 32.9663 -91.5965 +US 71261 Mer Rouge Louisiana LA Morehouse 067 32.7718 -91.7716 +US 71264 Oak Ridge Louisiana LA Morehouse 067 32.6243 -91.7618 +US 71002 Ashland Louisiana LA Natchitoches 069 32.1378 -93.0906 +US 71031 Goldonna Louisiana LA Natchitoches 069 32 -92.9611 +US 71066 Powhatan Louisiana LA Natchitoches 069 31.8741 -93.1966 +US 71411 Campti Louisiana LA Natchitoches 069 31.8959 -93.0936 +US 71414 Clarence Louisiana LA Natchitoches 069 31.8158 -93.0171 +US 71416 Cloutierville Louisiana LA Natchitoches 069 31.5583 -92.9211 +US 71428 Flora Louisiana LA Natchitoches 069 31.6124 -93.098 +US 71434 Gorum Louisiana LA Natchitoches 069 31.4662 -92.9419 +US 71445 Leander Louisiana LA Natchitoches Parish 069 31.1106 -92.8769 +US 71450 Marthaville Louisiana LA Natchitoches 069 31.7726 -93.3954 +US 71451 Melder Louisiana LA Natchitoches Parish 069 31.1158 -92.6496 +US 71452 Melrose Louisiana LA Natchitoches 069 31.6104 -92.9745 +US 71455 Mora Louisiana LA Natchitoches 069 31.4016 -92.974 +US 71456 Natchez Louisiana LA Natchitoches 069 31.6615 -93.0241 +US 71457 Natchitoches Louisiana LA Natchitoches 069 31.7617 -93.0916 +US 71458 Natchitoches Louisiana LA Natchitoches 069 31.7476 -93.0791 +US 71468 Provencal Louisiana LA Natchitoches 069 31.5157 -93.1488 +US 71469 Robeline Louisiana LA Natchitoches 069 31.7715 -93.321 +US 71497 Natchitoches Louisiana LA Natchitoches 069 31.7476 -93.0791 +US 70112 New Orleans Louisiana LA Orleans 071 29.9605 -90.0753 +US 70113 New Orleans Louisiana LA Orleans 071 29.9405 -90.0848 +US 70114 New Orleans Louisiana LA Orleans 071 29.9379 -90.0331 +US 70115 New Orleans Louisiana LA Orleans 071 29.9289 -90.1005 +US 70116 New Orleans Louisiana LA Orleans 071 29.9686 -90.0646 +US 70117 New Orleans Louisiana LA Orleans 071 29.9703 -90.0312 +US 70118 New Orleans Louisiana LA Orleans 071 29.9504 -90.1236 +US 70119 New Orleans Louisiana LA Orleans 071 29.9746 -90.0852 +US 70122 New Orleans Louisiana LA Orleans 071 30.0056 -90.0644 +US 70124 New Orleans Louisiana LA Orleans 071 30.0071 -90.1094 +US 70125 New Orleans Louisiana LA Orleans 071 29.9512 -90.1028 +US 70126 New Orleans Louisiana LA Orleans 071 29.9987 -90.0446 +US 70127 New Orleans Louisiana LA Orleans 071 30.0313 -89.9758 +US 70128 New Orleans Louisiana LA Orleans 071 30.0487 -89.9585 +US 70129 New Orleans Louisiana LA Orleans 071 30.0877 -89.8462 +US 70130 New Orleans Louisiana LA Orleans 071 29.9324 -90.0739 +US 70131 New Orleans Louisiana LA Orleans 071 29.9168 -89.996 +US 70139 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70140 New Orleans Louisiana LA Orleans 071 29.9561 -90.0783 +US 70142 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70143 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70145 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70146 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70148 New Orleans Louisiana LA Orleans 071 30.0309 -90.068 +US 70149 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70150 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70151 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70152 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70153 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70154 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70156 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70157 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70158 New Orleans Louisiana LA Orleans 071 29.9229 -90.0709 +US 70159 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70160 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70161 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70162 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70163 New Orleans Louisiana LA Orleans 071 29.95 -90.0755 +US 70164 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70165 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70166 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70167 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70170 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70172 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70174 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70175 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70176 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70177 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70178 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70179 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70182 New Orleans Louisiana LA Orleans 071 30.0676 -89.816 +US 70184 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70185 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70186 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70187 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70189 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70190 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 70195 New Orleans Louisiana LA Orleans 071 30.033 -89.8826 +US 71201 Monroe Louisiana LA Ouachita 073 32.5286 -92.1061 +US 71202 Monroe Louisiana LA Ouachita 073 32.3868 -92.0722 +US 71203 Monroe Louisiana LA Ouachita 073 32.553 -92.0422 +US 71207 Monroe Louisiana LA Ouachita 073 32.4908 -92.1594 +US 71208 Monroe Louisiana LA Ouachita 073 32.4968 -92.0756 +US 71209 Monroe Louisiana LA Ouachita 073 32.5277 -92.0756 +US 71210 Monroe Louisiana LA Ouachita 073 32.4908 -92.1594 +US 71211 Monroe Louisiana LA Ouachita 073 32.4908 -92.1594 +US 71212 Monroe Louisiana LA Ouachita 073 32.5286 -92.0727 +US 71213 Monroe Louisiana LA Ouachita 073 32.4908 -92.1594 +US 71217 Monroe Louisiana LA Ouachita Parish 073 32.5116 -92.0849 +US 71225 Calhoun Louisiana LA Ouachita 073 32.5248 -92.3299 +US 71240 Fairbanks Louisiana LA Ouachita 073 32.4908 -92.1594 +US 71280 Sterlington Louisiana LA Ouachita 073 32.7119 -92.0981 +US 71281 Swartz Louisiana LA Ouachita 073 32.4908 -92.1594 +US 71291 West Monroe Louisiana LA Ouachita 073 32.5317 -92.176 +US 71292 West Monroe Louisiana LA Ouachita 073 32.4566 -92.1854 +US 71294 West Monroe Louisiana LA Ouachita 073 32.4908 -92.1594 +US 70037 Belle Chasse Louisiana LA Plaquemines 075 29.8345 -90.0042 +US 70038 Boothville Louisiana LA Plaquemines 075 29.3079 -89.3814 +US 70040 Braithwaite Louisiana LA Plaquemines 075 29.7361 -89.9197 +US 70041 Buras Louisiana LA Plaquemines 075 29.3728 -89.5346 +US 70042 Carlisle Louisiana LA Plaquemines 075 29.3801 -89.4775 +US 70046 Davant Louisiana LA Plaquemines 075 29.6183 -89.8726 +US 70050 Empire Louisiana LA Plaquemines 075 29.3814 -89.5926 +US 70081 Pilottown Louisiana LA Plaquemines 075 29.2851 -89.364 +US 70082 Pointe A La Hache Louisiana LA Plaquemines 075 29.542 -89.7512 +US 70083 Port Sulphur Louisiana LA Plaquemines 075 29.47 -89.6847 +US 70091 Venice Louisiana LA Plaquemines 075 29.2659 -89.3761 +US 70093 Belle Chasse Louisiana LA Plaquemines Parish 075 29.5341 -89.7945 +US 70715 Batchelor Louisiana LA Pointe Coupee 077 30.8298 -91.6944 +US 70717 Blanks Louisiana LA Pointe Coupee 077 30.5439 -91.58 +US 70732 Fordoche Louisiana LA Pointe Coupee 077 30.6576 -91.6264 +US 70736 Glynn Louisiana LA Pointe Coupee 077 30.6376 -91.3423 +US 70747 Innis Louisiana LA Pointe Coupee 077 30.8736 -91.6766 +US 70749 Jarreau Louisiana LA Pointe Coupee 077 30.6326 -91.4332 +US 70751 Labarre Louisiana LA Pointe Coupee 077 30.7513 -91.5663 +US 70752 Lakeland Louisiana LA Pointe Coupee 077 30.5799 -91.4217 +US 70753 Lettsworth Louisiana LA Pointe Coupee 077 30.9324 -91.7403 +US 70755 Livonia Louisiana LA Pointe Coupee 077 30.5524 -91.5332 +US 70756 Lottie Louisiana LA Pointe Coupee 077 30.5765 -91.6278 +US 70759 Morganza Louisiana LA Pointe Coupee 077 30.7245 -91.5959 +US 70760 New Roads Louisiana LA Pointe Coupee 077 30.7014 -91.4421 +US 70762 Oscar Louisiana LA Pointe Coupee 077 30.5983 -91.4577 +US 70773 Rougon Louisiana LA Pointe Coupee 077 30.6035 -91.3813 +US 70781 Torbert Louisiana LA Pointe Coupee 077 30.5617 -91.4877 +US 70783 Ventress Louisiana LA Pointe Coupee 077 30.6814 -91.4033 +US 71301 Alexandria Louisiana LA Rapides 079 31.2885 -92.4633 +US 71302 Alexandria Louisiana LA Rapides 079 31.2683 -92.4242 +US 71303 Alexandria Louisiana LA Rapides 079 31.3048 -92.5089 +US 71306 Alexandria Louisiana LA Rapides 079 31.0756 -92.4461 +US 71307 Alexandria Louisiana LA Rapides 079 31.2034 -92.5269 +US 71309 Alexandria Louisiana LA Rapides 079 31.3047 -92.6196 +US 71315 Alexandria Louisiana LA Rapides 079 31.1397 -92.3984 +US 71325 Cheneyville Louisiana LA Rapides 079 31.0201 -92.2951 +US 71328 Deville Louisiana LA Rapides 079 31.3587 -92.2233 +US 71330 Echo Louisiana LA Rapides 079 31.1093 -92.2395 +US 71346 Lecompte Louisiana LA Rapides 079 31.106 -92.389 +US 71348 Libuse Louisiana LA Rapides 079 31.2034 -92.5269 +US 71359 Pineville Louisiana LA Rapides 079 31.2034 -92.5269 +US 71360 Pineville Louisiana LA Rapides 079 31.2232 -92.3203 +US 71361 Pineville Louisiana LA Rapides 079 31.3692 -92.4198 +US 71365 Ruby Louisiana LA Rapides 079 31.2034 -92.5269 +US 71405 Ball Louisiana LA Rapides 079 31.4151 -92.3945 +US 71409 Boyce Louisiana LA Rapides 079 31.3216 -92.6867 +US 71424 Elmer Louisiana LA Rapides 079 31.1465 -92.7171 +US 71427 Flatwoods Louisiana LA Rapides 079 31.3849 -92.8812 +US 71430 Forest Hill Louisiana LA Rapides 079 31.0243 -92.5108 +US 71431 Gardner Louisiana LA Rapides 079 31.2587 -92.6775 +US 71433 Glenmora Louisiana LA Rapides 079 31.0262 -92.616 +US 71438 Hineston Louisiana LA Rapides 079 31.1669 -92.7375 +US 71447 Lena Louisiana LA Rapides 079 31.4207 -92.8312 +US 71448 Longleaf Louisiana LA Rapides 079 31.2034 -92.5269 +US 71466 Otis Louisiana LA Rapides 079 31.2077 -92.7392 +US 71472 Sieper Louisiana LA Rapides 079 31.1976 -92.7858 +US 71477 Tioga Louisiana LA Rapides 079 31.3999 -92.6042 +US 71485 Woodworth Louisiana LA Rapides 079 31.1635 -92.5322 +US 71014 Bryceland Louisiana LA Red River Parish 081 32.4507 -92.979 +US 71019 Coushatta Louisiana LA Red River 081 32.0231 -93.2648 +US 71025 East Point Louisiana LA Red River 081 32.0624 -93.3679 +US 71034 Hall Summit Louisiana LA Red River 081 32.1752 -93.3047 +US 71036 Harmon Louisiana LA Red River 081 32.0624 -93.3679 +US 71218 Archibald Louisiana LA Richland 083 32.3632 -91.7693 +US 71232 Delhi Louisiana LA Richland 083 32.3929 -91.4714 +US 71259 Mangham Louisiana LA Richland 083 32.3331 -91.7976 +US 71269 Rayville Louisiana LA Richland 083 32.4456 -91.7433 +US 71279 Start Louisiana LA Richland 083 32.4919 -91.8563 +US 71065 Pleasant Hill Louisiana LA Sabine 085 31.8086 -93.5136 +US 71406 Belmont Louisiana LA Sabine 085 31.71 -93.4959 +US 71412 Chopin Louisiana LA Sabine Parish 085 31.5419 -92.9497 +US 71419 Converse Louisiana LA Sabine 085 31.7339 -93.6902 +US 71426 Fisher Louisiana LA Sabine 085 31.4937 -93.4602 +US 71429 Florien Louisiana LA Sabine 085 31.4275 -93.5179 +US 71449 Many Louisiana LA Sabine 085 31.5851 -93.4641 +US 71460 Negreet Louisiana LA Sabine 085 31.4489 -93.6212 +US 71462 Noble Louisiana LA Sabine 085 31.6938 -93.7167 +US 71486 Zwolle Louisiana LA Sabine 085 31.6138 -93.6636 +US 70032 Arabi Louisiana LA St. Bernard 087 29.9612 -89.9965 +US 70043 Chalmette Louisiana LA St. Bernard 087 29.9466 -89.9611 +US 70044 Chalmette Louisiana LA St. Bernard 087 29.9676 -89.9514 +US 70075 Meraux Louisiana LA St. Bernard 087 29.9335 -89.9214 +US 70085 Saint Bernard Louisiana LA St. Bernard 087 29.8611 -89.8364 +US 70092 Violet Louisiana LA St. Bernard 087 29.9043 -89.896 +US 70030 Des Allemands Louisiana LA St. Charles 089 29.8134 -90.4407 +US 70031 Ama Louisiana LA St. Charles 089 29.9435 -90.2925 +US 70039 Boutte Louisiana LA St. Charles 089 29.8973 -90.3934 +US 70047 Destrehan Louisiana LA St. Charles 089 29.9642 -90.3682 +US 70057 Hahnville Louisiana LA St. Charles 089 29.9668 -90.4082 +US 70066 Killona Louisiana LA St. Charles 089 29.9988 -90.4869 +US 70070 Luling Louisiana LA St. Charles 089 29.9251 -90.3693 +US 70078 New Sarpy Louisiana LA St. Charles 089 29.9817 -90.3859 +US 70079 Norco Louisiana LA St. Charles 089 30.0057 -90.4198 +US 70080 Paradis Louisiana LA St. Charles 089 29.877 -90.4352 +US 70087 Saint Rose Louisiana LA St. Charles 089 29.9581 -90.3124 +US 70441 Greensburg Louisiana LA St. Helena 091 30.8647 -90.7256 +US 70453 Pine Grove Louisiana LA St. Helena 091 30.7032 -90.7672 +US 70052 Gramercy Louisiana LA St. James 093 30.0527 -90.6902 +US 70071 Lutcher Louisiana LA St. James 093 30.0447 -90.7008 +US 70086 Saint James Louisiana LA St. James 093 30.0276 -90.8605 +US 70090 Vacherie Louisiana LA St. James 093 29.9694 -90.7097 +US 70723 Convent Louisiana LA St. James 093 30.0496 -90.8458 +US 70743 Hester Louisiana LA St. James 093 30.0206 -90.7814 +US 70763 Paulina Louisiana LA St. James 093 30.0352 -90.7374 +US 70792 Uncle Sam Louisiana LA St. James 093 30.0279 -90.8028 +US 70049 Edgard Louisiana LA St. John the Baptist 095 30.0319 -90.5817 +US 70051 Garyville Louisiana LA St. John the Baptist 095 30.0535 -90.6201 +US 70068 La Place Louisiana LA St. John the Baptist 095 30.0777 -90.4895 +US 70069 La Place Louisiana LA St. John the Baptist 095 30.0912 -90.4832 +US 70076 Mount Airy Louisiana LA St. John the Baptist 095 30.0575 -90.6369 +US 70084 Reserve Louisiana LA St. John the Baptist 095 30.0603 -90.5518 +US 70512 Arnaudville Louisiana LA St. Landry 097 30.3981 -91.9263 +US 70535 Eunice Louisiana LA St. Landry 097 30.5116 -92.3985 +US 70541 Grand Coteau Louisiana LA St. Landry 097 30.4201 -92.0462 +US 70550 Lawtell Louisiana LA St. Landry 097 30.5165 -92.1841 +US 70551 Leonville Louisiana LA St. Landry 097 30.4752 -91.9737 +US 70570 Opelousas Louisiana LA St. Landry 097 30.5144 -92.0897 +US 70571 Opelousas Louisiana LA St. Landry 097 30.5744 -92.0861 +US 70577 Port Barre Louisiana LA St. Landry 097 30.5478 -91.9286 +US 70584 Sunset Louisiana LA St. Landry 097 30.3884 -92.0934 +US 70589 Washington Louisiana LA St. Landry 097 30.6839 -92.0252 +US 70750 Krotz Springs Louisiana LA St. Landry 097 30.5379 -91.7563 +US 71345 Lebeau Louisiana LA St. Landry 097 30.7292 -91.9755 +US 71353 Melville Louisiana LA St. Landry 097 30.6626 -91.7565 +US 71356 Morrow Louisiana LA St. Landry 097 30.8299 -92.0426 +US 71358 Palmetto Louisiana LA St. Landry 097 30.7065 -91.9114 +US 70517 Breaux Bridge Louisiana LA St. Martin 099 30.2948 -91.8296 +US 70519 Cade Louisiana LA St. Martin 099 30.0797 -91.9114 +US 70521 Cecilia Louisiana LA St. Martin 099 30.3364 -91.8492 +US 70582 Saint Martinville Louisiana LA St. Martin 099 30.2237 -91.7794 +US 70340 Amelia Louisiana LA St. Mary 101 29.6884 -91.2208 +US 70342 Berwick Louisiana LA St. Mary 101 29.6929 -91.2518 +US 70380 Morgan City Louisiana LA St. Mary 101 29.6977 -91.2654 +US 70381 Morgan City Louisiana LA St. Mary 101 29.6946 -91.2593 +US 70392 Patterson Louisiana LA St. Mary 101 29.6967 -91.2812 +US 70514 Baldwin Louisiana LA St. Mary 101 29.8488 -91.5458 +US 70522 Centerville Louisiana LA St. Mary 101 29.7523 -91.4397 +US 70523 Charenton Louisiana LA St. Mary 101 29.8796 -91.5337 +US 70538 Franklin Louisiana LA St. Mary 101 29.7857 -91.5026 +US 70540 Garden City Louisiana LA St. Mary 101 29.7633 -91.467 +US 70420 Abita Springs Louisiana LA St. Tammany 103 30.4837 -90.0041 +US 70431 Bush Louisiana LA St. Tammany 103 30.6134 -89.9557 +US 70433 Covington Louisiana LA St. Tammany 103 30.4876 -90.0959 +US 70434 Covington Louisiana LA St. Tammany 103 30.4928 -90.1257 +US 70435 Covington Louisiana LA St. Tammany 103 30.5661 -90.1098 +US 70437 Folsom Louisiana LA St. Tammany 103 30.6145 -90.1879 +US 70445 Lacombe Louisiana LA St. Tammany 103 30.322 -89.9297 +US 70447 Madisonville Louisiana LA St. Tammany 103 30.4287 -90.1773 +US 70448 Mandeville Louisiana LA St. Tammany 103 30.3666 -90.0487 +US 70452 Pearl River Louisiana LA St. Tammany 103 30.3944 -89.7732 +US 70457 Saint Benedict Louisiana LA St. Tammany 103 30.4255 -89.8813 +US 70458 Slidell Louisiana LA St. Tammany 103 30.2784 -89.7712 +US 70459 Slidell Louisiana LA St. Tammany 103 30.4255 -89.8813 +US 70460 Slidell Louisiana LA St. Tammany 103 30.2916 -89.8129 +US 70461 Slidell Louisiana LA St. Tammany 103 30.2726 -89.729 +US 70463 Sun Louisiana LA St. Tammany 103 30.6571 -89.9079 +US 70464 Talisheek Louisiana LA St. Tammany 103 30.5347 -89.8859 +US 70469 Slidell Louisiana LA St. Tammany 103 30.4255 -89.8813 +US 70470 Mandeville Louisiana LA St. Tammany 103 30.4255 -89.8813 +US 70471 Mandeville Louisiana LA St. Tammany 103 30.4207 -90.0589 +US 70401 Hammond Louisiana LA Tangipahoa 105 30.5191 -90.4879 +US 70402 Hammond Louisiana LA Tangipahoa 105 30.514 -90.4804 +US 70403 Hammond Louisiana LA Tangipahoa 105 30.4911 -90.4697 +US 70404 Hammond Louisiana LA Tangipahoa 105 30.5051 -90.4225 +US 70421 Akers Louisiana LA Tangipahoa 105 30.6124 -90.4053 +US 70422 Amite Louisiana LA Tangipahoa 105 30.7182 -90.5705 +US 70436 Fluker Louisiana LA Tangipahoa 105 30.8128 -90.5207 +US 70442 Husser Louisiana LA Tangipahoa 105 30.692 -90.339 +US 70443 Independence Louisiana LA Tangipahoa 105 30.6351 -90.5277 +US 70444 Kentwood Louisiana LA Tangipahoa 105 30.8892 -90.4728 +US 70446 Loranger Louisiana LA Tangipahoa 105 30.5884 -90.3567 +US 70451 Natalbany Louisiana LA Tangipahoa 105 30.5519 -90.4859 +US 70454 Ponchatoula Louisiana LA Tangipahoa 105 30.4406 -90.4422 +US 70455 Robert Louisiana LA Tangipahoa 105 30.5063 -90.3352 +US 70456 Roseland Louisiana LA Tangipahoa 105 30.7717 -90.5243 +US 70465 Tangipahoa Louisiana LA Tangipahoa 105 30.8764 -90.5089 +US 70466 Tickfaw Louisiana LA Tangipahoa 105 30.5668 -90.482 +US 71357 Newellton Louisiana LA Tensas 107 32.0656 -91.2578 +US 71366 Saint Joseph Louisiana LA Tensas 107 31.9248 -91.2784 +US 71375 Waterproof Louisiana LA Tensas 107 31.8076 -91.3872 +US 70343 Bourg Louisiana LA Terrebonne 109 29.5485 -90.6087 +US 70344 Chauvin Louisiana LA Terrebonne 109 29.4634 -90.598 +US 70352 Donner Louisiana LA Terrebonne 109 29.6964 -90.9444 +US 70353 Dulac Louisiana LA Terrebonne 109 29.3695 -90.697 +US 70356 Gibson Louisiana LA Terrebonne 109 29.6625 -90.9776 +US 70359 Gray Louisiana LA Terrebonne 109 29.6903 -90.7807 +US 70360 Houma Louisiana LA Terrebonne 109 29.5943 -90.7548 +US 70361 Houma Louisiana LA Terrebonne 109 29.3821 -90.8656 +US 70363 Houma Louisiana LA Terrebonne 109 29.5601 -90.6917 +US 70364 Houma Louisiana LA Terrebonne 109 29.6299 -90.7268 +US 70377 Montegut Louisiana LA Terrebonne 109 29.4744 -90.544 +US 70395 Schriever Louisiana LA Terrebonne 109 29.7123 -90.8513 +US 70397 Theriot Louisiana LA Terrebonne 109 29.4516 -90.7651 +US 71222 Bernice Louisiana LA Union 111 32.821 -92.6263 +US 71234 Downsville Louisiana LA Union 111 32.6525 -92.3745 +US 71241 Farmerville Louisiana LA Union 111 32.7534 -92.318 +US 71256 Lillie Louisiana LA Union 111 32.9529 -92.6858 +US 71260 Marion Louisiana LA Union 111 32.8716 -92.2862 +US 71277 Spearsville Louisiana LA Union 111 32.955 -92.587 +US 71421 Derry Louisiana LA Union Parish 111 31.6091 -92.9739 +US 70510 Abbeville Louisiana LA Vermilion 113 29.9466 -92.2416 +US 70511 Abbeville Louisiana LA Vermilion 113 30.0324 -92.1767 +US 70528 Delcambre Louisiana LA Vermilion 113 29.9474 -91.9889 +US 70533 Erath Louisiana LA Vermilion 113 29.9522 -92.0343 +US 70542 Gueydan Louisiana LA Vermilion 113 30.0255 -92.5338 +US 70548 Kaplan Louisiana LA Vermilion 113 29.9771 -92.3025 +US 70555 Maurice Louisiana LA Vermilion 113 30.0722 -92.107 +US 70575 Perry Louisiana LA Vermilion 113 29.8665 -92.159 +US 70639 Evans Louisiana LA Vernon 115 30.9684 -93.5203 +US 70642 Fullerton Louisiana LA Vernon 115 31.112 -93.2009 +US 70656 Pitkin Louisiana LA Vernon 115 30.933 -92.9548 +US 70659 Rosepine Louisiana LA Vernon 115 30.9243 -93.2749 +US 71403 Anacoco Louisiana LA Vernon 115 31.2149 -93.3829 +US 71439 Hornbeck Louisiana LA Vernon 115 31.3226 -93.3683 +US 71443 Kurthwood Louisiana LA Vernon 115 31.1019 -93.3612 +US 71444 Lacamp Louisiana LA Vernon 115 31.1202 -93.1049 +US 71446 Leesville Louisiana LA Vernon 115 31.1256 -93.1736 +US 71459 Leesville Louisiana LA Vernon 115 31.0772 -93.1896 +US 71461 Newllano Louisiana LA Vernon 115 31.1158 -93.2811 +US 71474 Simpson Louisiana LA Vernon 115 31.257 -93.017 +US 71475 Slagle Louisiana LA Vernon 115 31.112 -93.2009 +US 71496 Leesville Louisiana LA Vernon 115 31.1103 -93.29 +US 70426 Angie Louisiana LA Washington 117 30.9224 -89.8567 +US 70427 Bogalusa Louisiana LA Washington 117 30.7733 -89.8653 +US 70429 Bogalusa Louisiana LA Washington 117 30.835 -90.0371 +US 70438 Franklinton Louisiana LA Washington 117 30.8577 -90.1155 +US 70450 Mount Hermon Louisiana LA Washington 117 30.9536 -90.2769 +US 70467 Angie Louisiana LA Washington 117 30.9017 -89.8207 +US 71018 Cotton Valley Louisiana LA Webster 119 32.819 -93.4259 +US 71021 Cullen Louisiana LA Webster 119 32.9721 -93.4492 +US 71023 Doyline Louisiana LA Webster 119 32.49 -93.3996 +US 71024 Dubberly Louisiana LA Webster 119 32.5192 -93.2142 +US 71039 Heflin Louisiana LA Webster 119 32.447 -93.2852 +US 71055 Minden Louisiana LA Webster 119 32.6323 -93.2886 +US 71058 Minden Louisiana LA Webster 119 32.5769 -93.2507 +US 71071 Sarepta Louisiana LA Webster 119 32.9434 -93.4404 +US 71072 Shongaloo Louisiana LA Webster 119 32.9713 -93.2963 +US 71073 Sibley Louisiana LA Webster 119 32.5095 -93.3009 +US 71075 Springhill Louisiana LA Webster 119 33.0005 -93.4596 +US 70710 Addis Louisiana LA West Baton Rouge 121 30.3557 -91.2613 +US 70719 Brusly Louisiana LA West Baton Rouge 121 30.3877 -91.2526 +US 70720 Bueche Louisiana LA West Baton Rouge 121 30.5749 -91.3383 +US 70729 Erwinville Louisiana LA West Baton Rouge 121 30.548 -91.4187 +US 70767 Port Allen Louisiana LA West Baton Rouge 121 30.472 -91.2541 +US 71237 Epps Louisiana LA West Carroll 123 32.6161 -91.4913 +US 71242 Forest Louisiana LA West Carroll 123 32.8239 -91.3989 +US 71253 Kilbourne Louisiana LA West Carroll 123 32.9946 -91.3162 +US 71263 Oak Grove Louisiana LA West Carroll 123 32.8731 -91.4302 +US 71266 Pioneer Louisiana LA West Carroll 123 32.7154 -91.4648 +US 70712 Angola Louisiana LA West Feliciana 125 30.9656 -91.5979 +US 70775 Saint Francisville Louisiana LA West Feliciana 125 30.8694 -91.4186 +US 70782 Tunica Louisiana LA West Feliciana 125 30.9601 -91.5396 +US 70784 Wakefield Louisiana LA West Feliciana 125 30.9175 -91.3581 +US 70787 Weyanoke Louisiana LA West Feliciana 125 30.9362 -91.4562 +US 71404 Atlanta Louisiana LA Winn 127 31.776 -92.7958 +US 71410 Calvin Louisiana LA Winn 127 31.9613 -92.7924 +US 71422 Dodson Louisiana LA Winn 127 32.0701 -92.6783 +US 71440 Joyce Louisiana LA Winn 127 31.9512 -92.5659 +US 71471 Saint Maurice Louisiana LA Winn 127 31.7497 -92.928 +US 71473 Sikes Louisiana LA Winn 127 32.0686 -92.4429 +US 71483 Winnfield Louisiana LA Winn 127 31.9214 -92.6366 +US 02532 Buzzards Bay Massachusetts MA Barnstable 001 41.7455 -70.5905 +US 02534 Cataumet Massachusetts MA Barnstable 001 41.6694 -70.6234 +US 02536 East Falmouth Massachusetts MA Barnstable 001 41.5968 -70.5671 +US 02537 East Sandwich Massachusetts MA Barnstable 001 41.7283 -70.44 +US 02540 Falmouth Massachusetts MA Barnstable 001 41.5648 -70.6217 +US 02541 Falmouth Massachusetts MA Barnstable 001 41.7993 -70.3087 +US 02542 Buzzards Bay Massachusetts MA Barnstable 001 41.6531 -70.5537 +US 02543 Woods Hole Massachusetts MA Barnstable 001 41.5263 -70.6643 +US 02553 Monument Beach Massachusetts MA Barnstable 001 41.6734 -70.608 +US 02556 North Falmouth Massachusetts MA Barnstable 001 41.6417 -70.623 +US 02559 Pocasset Massachusetts MA Barnstable 001 41.6881 -70.6105 +US 02561 Sagamore Massachusetts MA Barnstable 001 41.7703 -70.5337 +US 02562 Sagamore Beach Massachusetts MA Barnstable 001 41.7933 -70.5196 +US 02563 Sandwich Massachusetts MA Barnstable 001 41.7113 -70.4775 +US 02565 Silver Beach Massachusetts MA Barnstable 001 41.7993 -70.3087 +US 02574 West Falmouth Massachusetts MA Barnstable 001 41.6039 -70.6382 +US 02601 Hyannis Massachusetts MA Barnstable 001 41.6601 -70.2967 +US 02630 Barnstable Massachusetts MA Barnstable 001 41.6983 -70.3001 +US 02631 Brewster Massachusetts MA Barnstable 001 41.7492 -70.0699 +US 02632 Centerville Massachusetts MA Barnstable 001 41.6606 -70.3532 +US 02633 Chatham Massachusetts MA Barnstable 001 41.6889 -69.9722 +US 02634 Centerville Massachusetts MA Barnstable 001 41.7993 -70.3087 +US 02635 Cotuit Massachusetts MA Barnstable 001 41.6243 -70.4364 +US 02636 Centerville Massachusetts MA Barnstable 001 41.7993 -70.3087 +US 02637 Cummaquid Massachusetts MA Barnstable 001 41.7014 -70.2772 +US 02638 Dennis Massachusetts MA Barnstable 001 41.7322 -70.1911 +US 02639 Dennis Port Massachusetts MA Barnstable 001 41.6649 -70.1327 +US 02641 East Dennis Massachusetts MA Barnstable 001 41.7347 -70.2047 +US 02642 Eastham Massachusetts MA Barnstable 001 41.8408 -69.9849 +US 02643 East Orleans Massachusetts MA Barnstable 001 41.7843 -69.962 +US 02644 Forestdale Massachusetts MA Barnstable 001 41.6827 -70.5143 +US 02645 Harwich Massachusetts MA Barnstable 001 41.7008 -70.0579 +US 02646 Harwich Port Massachusetts MA Barnstable 001 41.6703 -70.0722 +US 02647 Hyannis Port Massachusetts MA Barnstable 001 41.635 -70.3063 +US 02648 Marstons Mills Massachusetts MA Barnstable 001 41.6703 -70.4163 +US 02649 Mashpee Massachusetts MA Barnstable 001 41.6181 -70.4854 +US 02650 North Chatham Massachusetts MA Barnstable 001 41.703 -69.9666 +US 02651 North Eastham Massachusetts MA Barnstable 001 41.8243 -69.9818 +US 02652 North Truro Massachusetts MA Barnstable 001 42.0338 -70.0875 +US 02653 Orleans Massachusetts MA Barnstable 001 41.7792 -69.9822 +US 02655 Osterville Massachusetts MA Barnstable 001 41.63 -70.3837 +US 02657 Provincetown Massachusetts MA Barnstable 001 42.0534 -70.1865 +US 02659 South Chatham Massachusetts MA Barnstable 001 41.6801 -70.0241 +US 02660 South Dennis Massachusetts MA Barnstable 001 41.7097 -70.1585 +US 02661 South Harwich Massachusetts MA Barnstable 001 41.6862 -70.0329 +US 02662 South Orleans Massachusetts MA Barnstable 001 41.7567 -69.9841 +US 02663 South Wellfleet Massachusetts MA Barnstable 001 41.8005 -70.0768 +US 02664 South Yarmouth Massachusetts MA Barnstable 001 41.6739 -70.1949 +US 02666 Truro Massachusetts MA Barnstable 001 41.9988 -70.0564 +US 02667 Wellfleet Massachusetts MA Barnstable 001 41.9289 -70.0186 +US 02668 West Barnstable Massachusetts MA Barnstable 001 41.7002 -70.372 +US 02669 West Chatham Massachusetts MA Barnstable 001 41.6987 -70.0049 +US 02670 West Dennis Massachusetts MA Barnstable 001 41.6626 -70.1681 +US 02671 West Harwich Massachusetts MA Barnstable 001 41.6694 -70.1135 +US 02672 West Hyannisport Massachusetts MA Barnstable 001 41.6356 -70.3233 +US 02673 West Yarmouth Massachusetts MA Barnstable 001 41.6614 -70.2363 +US 02675 Yarmouth Port Massachusetts MA Barnstable 001 41.7051 -70.227 +US 01029 East Otis Massachusetts MA Berkshire 003 42.1909 -73.0517 +US 01201 Pittsfield Massachusetts MA Berkshire 003 42.4531 -73.2471 +US 01202 Pittsfield Massachusetts MA Berkshire 003 42.3929 -73.2285 +US 01203 Pittsfield Massachusetts MA Berkshire 003 42.3929 -73.2285 +US 01220 Adams Massachusetts MA Berkshire 003 42.6223 -73.1172 +US 01222 Ashley Falls Massachusetts MA Berkshire 003 42.0596 -73.3202 +US 01223 Becket Massachusetts MA Berkshire 003 42.3594 -73.1203 +US 01224 Berkshire Massachusetts MA Berkshire 003 42.5065 -73.1975 +US 01225 Cheshire Massachusetts MA Berkshire 003 42.5611 -73.158 +US 01226 Dalton Massachusetts MA Berkshire 003 42.475 -73.1603 +US 01227 Dalton Massachusetts MA Berkshire 003 42.5161 -73.0929 +US 01229 Glendale Massachusetts MA Berkshire 003 42.2793 -73.3435 +US 01230 Great Barrington Massachusetts MA Berkshire 003 42.1959 -73.3607 +US 01235 Hinsdale Massachusetts MA Berkshire 003 42.4298 -73.0724 +US 01236 Housatonic Massachusetts MA Berkshire 003 42.2653 -73.3745 +US 01237 Lanesboro Massachusetts MA Berkshire 003 42.5497 -73.2626 +US 01238 Lee Massachusetts MA Berkshire 003 42.299 -73.2317 +US 01240 Lenox Massachusetts MA Berkshire 003 42.3642 -73.2713 +US 01242 Lenox Dale Massachusetts MA Berkshire 003 42.3386 -73.2509 +US 01244 Mill River Massachusetts MA Berkshire 003 42.1228 -73.254 +US 01245 Monterey Massachusetts MA Berkshire 003 42.1867 -73.2065 +US 01247 North Adams Massachusetts MA Berkshire 003 42.6955 -73.08 +US 01252 North Egremont Massachusetts MA Berkshire 003 42.1986 -73.4462 +US 01253 Otis Massachusetts MA Berkshire 003 42.1899 -73.0821 +US 01254 Richmond Massachusetts MA Berkshire 003 42.3784 -73.3645 +US 01255 Sandisfield Massachusetts MA Berkshire 003 42.1094 -73.1163 +US 01256 Savoy Massachusetts MA Berkshire 003 42.577 -73.0233 +US 01257 Sheffield Massachusetts MA Berkshire 003 42.1001 -73.3611 +US 01258 South Egremont Massachusetts MA Berkshire 003 42.1012 -73.4566 +US 01259 Southfield Massachusetts MA Berkshire 003 42.078 -73.2609 +US 01260 South Lee Massachusetts MA Berkshire 003 42.2866 -73.3133 +US 01262 Stockbridge Massachusetts MA Berkshire 003 42.301 -73.3223 +US 01263 Stockbridge Massachusetts MA Berkshire 003 42.3929 -73.2285 +US 01264 Tyringham Massachusetts MA Berkshire 003 42.22 -73.1979 +US 01266 West Stockbridge Massachusetts MA Berkshire 003 42.3348 -73.3825 +US 01267 Williamstown Massachusetts MA Berkshire 003 42.7089 -73.2036 +US 01270 Windsor Massachusetts MA Berkshire 003 42.515 -73.0412 +US 01343 Drury Massachusetts MA Berkshire 003 42.6427 -72.9862 +US 02031 East Mansfield Massachusetts MA Bristol 005 41.9988 -71.2009 +US 02048 Mansfield Massachusetts MA Bristol 005 42.0212 -71.2178 +US 02334 Easton Massachusetts MA Bristol 005 42.0235 -71.1324 +US 02356 North Easton Massachusetts MA Bristol 005 42.059 -71.1123 +US 02357 North Easton Massachusetts MA Bristol 005 42.0645 -71.0871 +US 02375 South Easton Massachusetts MA Bristol 005 42.0257 -71.0988 +US 02702 Assonet Massachusetts MA Bristol 005 41.7975 -71.0607 +US 02703 Attleboro Massachusetts MA Bristol 005 41.9296 -71.3009 +US 02712 Chartley Massachusetts MA Bristol 005 41.7562 -71.0671 +US 02714 Dartmouth Massachusetts MA Bristol 005 41.7562 -71.0671 +US 02715 Dighton Massachusetts MA Bristol 005 41.8125 -71.1427 +US 02717 East Freetown Massachusetts MA Bristol 005 41.7635 -70.9677 +US 02718 East Taunton Massachusetts MA Bristol 005 41.8736 -71.0192 +US 02719 Fairhaven Massachusetts MA Bristol 005 41.6409 -70.8896 +US 02720 Fall River Massachusetts MA Bristol 005 41.7182 -71.14 +US 02721 Fall River Massachusetts MA Bristol 005 41.6883 -71.1574 +US 02722 Fall River Massachusetts MA Bristol 005 41.7562 -71.0671 +US 02723 Fall River Massachusetts MA Bristol 005 41.6926 -71.1332 +US 02724 Fall River Massachusetts MA Bristol 005 41.685 -71.1748 +US 02725 Somerset Massachusetts MA Bristol 005 41.7223 -71.178 +US 02726 Somerset Massachusetts MA Bristol 005 41.756 -71.1492 +US 02740 New Bedford Massachusetts MA Bristol 005 41.6347 -70.9372 +US 02741 New Bedford Massachusetts MA Bristol 005 41.7562 -71.0671 +US 02742 New Bedford Massachusetts MA Bristol 005 41.6196 -70.9563 +US 02743 Acushnet Massachusetts MA Bristol 005 41.6997 -70.9087 +US 02744 New Bedford Massachusetts MA Bristol 005 41.6127 -70.9167 +US 02745 New Bedford Massachusetts MA Bristol 005 41.6913 -70.9355 +US 02746 New Bedford Massachusetts MA Bristol 005 41.66 -70.9324 +US 02747 North Dartmouth Massachusetts MA Bristol 005 41.6338 -70.9958 +US 02748 South Dartmouth Massachusetts MA Bristol 005 41.5665 -70.9843 +US 02754 North Dighton Massachusetts MA Bristol County 005 41.8644 -71.123 +US 02760 North Attleboro Massachusetts MA Bristol 005 41.9775 -71.3298 +US 02761 North Attleboro Massachusetts MA Bristol 005 41.7562 -71.0671 +US 02763 Attleboro Falls Massachusetts MA Bristol 005 41.9726 -71.3082 +US 02764 North Dighton Massachusetts MA Bristol 005 41.8529 -71.1485 +US 02766 Norton Massachusetts MA Bristol 005 41.9718 -71.1894 +US 02767 Raynham Massachusetts MA Bristol 005 41.9324 -71.0469 +US 02768 Raynham Center Massachusetts MA Bristol 005 41.7562 -71.0671 +US 02769 Rehoboth Massachusetts MA Bristol 005 41.8515 -71.2545 +US 02771 Seekonk Massachusetts MA Bristol 005 41.8378 -71.3224 +US 02777 Swansea Massachusetts MA Bristol 005 41.7473 -71.2122 +US 02779 Berkley Massachusetts MA Bristol 005 41.8353 -71.0765 +US 02780 Taunton Massachusetts MA Bristol 005 41.905 -71.1026 +US 02783 Taunton Massachusetts MA Bristol 005 41.7562 -71.0671 +US 02790 Westport Massachusetts MA Bristol 005 41.6211 -71.089 +US 02791 Westport Point Massachusetts MA Bristol 005 41.5191 -71.0851 +US 02535 Chilmark Massachusetts MA Dukes 007 41.3575 -70.7416 +US 02539 Edgartown Massachusetts MA Dukes 007 41.3889 -70.5339 +US 02552 Menemsha Massachusetts MA Dukes 007 41.3798 -70.6431 +US 02557 Oak Bluffs Massachusetts MA Dukes 007 41.4174 -70.56 +US 02568 Vineyard Haven Massachusetts MA Dukes 007 41.45 -70.5937 +US 02573 Vineyard Haven Massachusetts MA Dukes 007 41.3798 -70.6431 +US 02575 West Tisbury Massachusetts MA Dukes 007 41.4213 -70.6428 +US 02713 Cuttyhunk Massachusetts MA Dukes 007 41.4218 -70.9313 +US 01810 Andover Massachusetts MA Essex 009 42.6496 -71.1565 +US 01812 Andover Massachusetts MA Essex 009 42.6472 -71.1842 +US 01830 Haverhill Massachusetts MA Essex 009 42.7856 -71.0721 +US 01831 Haverhill Massachusetts MA Essex 009 42.7711 -71.1221 +US 01832 Haverhill Massachusetts MA Essex 009 42.7792 -71.1095 +US 01833 Georgetown Massachusetts MA Essex 009 42.7281 -70.9822 +US 01834 Groveland Massachusetts MA Essex 009 42.753 -71.027 +US 01835 Haverhill Massachusetts MA Essex 009 42.7528 -71.0843 +US 01840 Lawrence Massachusetts MA Essex 009 42.708 -71.1638 +US 01841 Lawrence Massachusetts MA Essex 009 42.7115 -71.167 +US 01842 Lawrence Massachusetts MA Essex 009 42.6354 -70.8791 +US 01843 Lawrence Massachusetts MA Essex 009 42.6911 -71.1605 +US 01844 Methuen Massachusetts MA Essex 009 42.728 -71.181 +US 01845 North Andover Massachusetts MA Essex 009 42.6826 -71.109 +US 01860 Merrimac Massachusetts MA Essex 009 42.8346 -71.0047 +US 01885 West Boxford Massachusetts MA Essex 009 42.6354 -70.8791 +US 01899 Andover Massachusetts MA Essex 009 42.6354 -70.8791 +US 01901 Lynn Massachusetts MA Essex 009 42.4612 -70.9467 +US 01902 Lynn Massachusetts MA Essex 009 42.4698 -70.942 +US 01903 Lynn Massachusetts MA Essex 009 42.6354 -70.8791 +US 01904 Lynn Massachusetts MA Essex 009 42.4889 -70.9647 +US 01905 Lynn Massachusetts MA Essex 009 42.4694 -70.9728 +US 01906 Saugus Massachusetts MA Essex 009 42.4633 -71.0111 +US 01907 Swampscott Massachusetts MA Essex 009 42.4746 -70.9098 +US 01908 Nahant Massachusetts MA Essex 009 42.4261 -70.9277 +US 01910 Lynn Massachusetts MA Essex 009 42.4548 -70.9747 +US 01913 Amesbury Massachusetts MA Essex 009 42.8559 -70.9367 +US 01915 Beverly Massachusetts MA Essex 009 42.5608 -70.8759 +US 01921 Boxford Massachusetts MA Essex 009 42.6797 -71.0114 +US 01922 Byfield Massachusetts MA Essex 009 42.7568 -70.9351 +US 01923 Danvers Massachusetts MA Essex 009 42.5694 -70.9425 +US 01929 Essex Massachusetts MA Essex 009 42.6286 -70.7828 +US 01930 Gloucester Massachusetts MA Essex 009 42.6208 -70.6721 +US 01931 Gloucester Massachusetts MA Essex 009 42.6354 -70.8791 +US 01936 Hamilton Massachusetts MA Essex 009 42.6354 -70.8791 +US 01937 Hathorne Massachusetts MA Essex 009 42.6354 -70.8791 +US 01938 Ipswich Massachusetts MA Essex 009 42.6809 -70.8494 +US 01940 Lynnfield Massachusetts MA Essex 009 42.5327 -71.0339 +US 01944 Manchester Massachusetts MA Essex 009 42.5796 -70.7674 +US 01945 Marblehead Massachusetts MA Essex 009 42.4984 -70.8653 +US 01947 Salem Massachusetts MA Essex 009 42.6428 -70.8736 +US 01949 Middleton Massachusetts MA Essex 009 42.5942 -71.013 +US 01950 Newburyport Massachusetts MA Essex 009 42.813 -70.8847 +US 01951 Newbury Massachusetts MA Essex 009 42.7835 -70.8474 +US 01952 Salisbury Massachusetts MA Essex 009 42.8507 -70.8588 +US 01960 Peabody Massachusetts MA Essex 009 42.5326 -70.9612 +US 01961 Peabody Massachusetts MA Essex 009 42.6354 -70.8791 +US 01964 Peabody Massachusetts MA Essex County 009 42.5357 -70.9478 +US 01965 Prides Crossing Massachusetts MA Essex 009 42.5581 -70.8257 +US 01966 Rockport Massachusetts MA Essex 009 42.658 -70.6194 +US 01969 Rowley Massachusetts MA Essex 009 42.7138 -70.907 +US 01970 Salem Massachusetts MA Essex 009 42.5151 -70.9003 +US 01971 Salem Massachusetts MA Essex 009 42.6354 -70.8791 +US 01982 South Hamilton Massachusetts MA Essex 009 42.6185 -70.8561 +US 01983 Topsfield Massachusetts MA Essex 009 42.6415 -70.9488 +US 01984 Wenham Massachusetts MA Essex 009 42.6017 -70.8786 +US 01985 West Newbury Massachusetts MA Essex 009 42.7949 -70.9778 +US 05501 Andover Massachusetts MA Essex 009 42.6472 -71.1842 +US 05544 Andover Massachusetts MA Essex 009 42.6472 -71.1842 +US 01054 Leverett Massachusetts MA Franklin 011 42.4682 -72.4993 +US 01072 Shutesbury Massachusetts MA Franklin 011 42.482 -72.4213 +US 01093 Whately Massachusetts MA Franklin 011 42.4427 -72.6525 +US 01301 Greenfield Massachusetts MA Franklin 011 42.6013 -72.6236 +US 01302 Greenfield Massachusetts MA Franklin 011 42.5222 -72.6242 +US 01330 Ashfield Massachusetts MA Franklin 011 42.5232 -72.811 +US 01337 Bernardston Massachusetts MA Franklin 011 42.6952 -72.5772 +US 01338 Buckland Massachusetts MA Franklin 011 42.5736 -72.8213 +US 01339 Charlemont Massachusetts MA Franklin 011 42.608 -72.8901 +US 01340 Colrain Massachusetts MA Franklin 011 42.679 -72.7265 +US 01341 Conway Massachusetts MA Franklin 011 42.5138 -72.7025 +US 01342 Deerfield Massachusetts MA Franklin 011 42.5406 -72.6072 +US 01344 Erving Massachusetts MA Franklin 011 42.6076 -72.4292 +US 01346 Heath Massachusetts MA Franklin 011 42.6853 -72.8391 +US 01347 Lake Pleasant Massachusetts MA Franklin 011 42.5566 -72.5181 +US 01349 Turners Falls Massachusetts MA Franklin 011 42.5725 -72.4832 +US 01350 Monroe Bridge Massachusetts MA Franklin 011 42.7215 -72.9762 +US 01351 Montague Massachusetts MA Franklin 011 42.5429 -72.5328 +US 01354 Northfield Massachusetts MA Franklin 011 42.6337 -72.5111 +US 01355 New Salem Massachusetts MA Franklin 011 42.5146 -72.3062 +US 01360 Northfield Massachusetts MA Franklin 011 42.6887 -72.451 +US 01364 Orange Massachusetts MA Franklin 011 42.6129 -72.2924 +US 01367 Rowe Massachusetts MA Franklin 011 42.6953 -72.9258 +US 01369 Shattuckville Massachusetts MA Franklin 011 42.5222 -72.6242 +US 01370 Shelburne Falls Massachusetts MA Franklin 011 42.6022 -72.7391 +US 01373 South Deerfield Massachusetts MA Franklin 011 42.4756 -72.6153 +US 01375 Sunderland Massachusetts MA Franklin 011 42.4539 -72.5676 +US 01376 Turners Falls Massachusetts MA Franklin 011 42.5954 -72.5557 +US 01378 Warwick Massachusetts MA Franklin 011 42.6671 -72.3397 +US 01379 Wendell Massachusetts MA Franklin 011 42.5656 -72.4009 +US 01380 Wendell Depot Massachusetts MA Franklin 011 42.5534 -72.3927 +US 01001 Agawam Massachusetts MA Hampden 013 42.0702 -72.6227 +US 01008 Blandford Massachusetts MA Hampden 013 42.1829 -72.9361 +US 01009 Bondsville Massachusetts MA Hampden 013 42.2061 -72.3405 +US 01010 Brimfield Massachusetts MA Hampden 013 42.1165 -72.1885 +US 01011 Chester Massachusetts MA Hampden 013 42.2794 -72.9888 +US 01013 Chicopee Massachusetts MA Hampden 013 42.1596 -72.6082 +US 01014 Chicopee Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01020 Chicopee Massachusetts MA Hampden 013 42.1764 -72.5761 +US 01021 Chicopee Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01022 Chicopee Massachusetts MA Hampden 013 42.1934 -72.5544 +US 01028 East Longmeadow Massachusetts MA Hampden 013 42.0672 -72.5056 +US 01030 Feeding Hills Massachusetts MA Hampden 013 42.0718 -72.6751 +US 01034 Granville Massachusetts MA Hampden 013 42.1127 -72.952 +US 01036 Hampden Massachusetts MA Hampden 013 42.0648 -72.4318 +US 01040 Holyoke Massachusetts MA Hampden 013 42.202 -72.6262 +US 01041 Holyoke Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01056 Ludlow Massachusetts MA Hampden 013 42.1728 -72.471 +US 01057 Monson Massachusetts MA Hampden 013 42.101 -72.3196 +US 01069 Palmer Massachusetts MA Hampden 013 42.1762 -72.3288 +US 01071 Russell Massachusetts MA Hampden 013 42.1471 -72.8403 +US 01077 Southwick Massachusetts MA Hampden 013 42.0511 -72.7706 +US 01079 Thorndike Massachusetts MA Hampden 013 42.1929 -72.3296 +US 01080 Three Rivers Massachusetts MA Hampden 013 42.1819 -72.3624 +US 01081 Wales Massachusetts MA Hampden 013 42.0627 -72.2046 +US 01085 Westfield Massachusetts MA Hampden 013 42.1537 -72.7698 +US 01086 Westfield Massachusetts MA Hampden 013 42.1734 -72.848 +US 01089 West Springfield Massachusetts MA Hampden 013 42.1151 -72.6411 +US 01090 West Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01095 Wilbraham Massachusetts MA Hampden 013 42.1245 -72.4464 +US 01097 Woronoco Massachusetts MA Hampden 013 42.1617 -72.8459 +US 01101 Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01102 Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01103 Springfield Massachusetts MA Hampden 013 42.1029 -72.5887 +US 01104 Springfield Massachusetts MA Hampden 013 42.1288 -72.5778 +US 01105 Springfield Massachusetts MA Hampden 013 42.0999 -72.5783 +US 01106 Longmeadow Massachusetts MA Hampden 013 42.0507 -72.5676 +US 01107 Springfield Massachusetts MA Hampden 013 42.1179 -72.6065 +US 01108 Springfield Massachusetts MA Hampden 013 42.0853 -72.5584 +US 01109 Springfield Massachusetts MA Hampden 013 42.1145 -72.5543 +US 01111 Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01114 Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01115 Springfield Massachusetts MA Hampden 013 42.1029 -72.5916 +US 01116 Longmeadow Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01118 Springfield Massachusetts MA Hampden 013 42.0929 -72.5274 +US 01119 Springfield Massachusetts MA Hampden 013 42.1247 -72.5121 +US 01128 Springfield Massachusetts MA Hampden 013 42.0944 -72.4889 +US 01129 Springfield Massachusetts MA Hampden 013 42.1223 -72.4876 +US 01133 Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01138 Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01139 Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01144 Springfield Massachusetts MA Hampden 013 42.1018 -72.5915 +US 01151 Indian Orchard Massachusetts MA Hampden 013 42.1532 -72.505 +US 01152 Springfield Massachusetts MA Hampden 013 42.1707 -72.6048 +US 01195 Springfield Massachusetts MA Hampden County 013 42.1029 -72.5921 +US 01199 Springfield Massachusetts MA Hampden 013 42.1199 -72.605 +US 01521 Holland Massachusetts MA Hampden 013 42.0403 -72.1544 +US 01539 Oakdale Massachusetts MA Hampden County 013 42.3581 -71.7832 +US 01002 Amherst Massachusetts MA Hampshire 015 42.3671 -72.4646 +US 01003 Amherst Massachusetts MA Hampshire 015 42.3919 -72.5248 +US 01004 Amherst Massachusetts MA Hampshire 015 42.3845 -72.5132 +US 01007 Belchertown Massachusetts MA Hampshire 015 42.2751 -72.411 +US 01012 Chesterfield Massachusetts MA Hampshire 015 42.3923 -72.8256 +US 01026 Cummington Massachusetts MA Hampshire 015 42.4633 -72.9202 +US 01027 Easthampton Massachusetts MA Hampshire 015 42.3683 -72.7688 +US 01032 Goshen Massachusetts MA Hampshire 015 42.4662 -72.8441 +US 01033 Granby Massachusetts MA Hampshire 015 42.2557 -72.52 +US 01035 Hadley Massachusetts MA Hampshire 015 42.3606 -72.5715 +US 01038 Hatfield Massachusetts MA Hampshire 015 42.3844 -72.6167 +US 01039 Haydenville Massachusetts MA Hampshire 015 42.3818 -72.7032 +US 01050 Huntington Massachusetts MA Hampshire 015 42.2653 -72.8733 +US 01053 Leeds Massachusetts MA Hampshire 015 42.3543 -72.7034 +US 01059 North Amherst Massachusetts MA Hampshire 015 42.3696 -72.636 +US 01060 Northampton Massachusetts MA Hampshire 015 42.3223 -72.6313 +US 01061 Northampton Massachusetts MA Hampshire 015 42.3696 -72.636 +US 01062 Florence Massachusetts MA Hampshire 015 42.3219 -72.6928 +US 01063 Northampton Massachusetts MA Hampshire 015 42.3179 -72.6402 +US 01066 North Hatfield Massachusetts MA Hampshire 015 42.4067 -72.6339 +US 01070 Plainfield Massachusetts MA Hampshire 015 42.5144 -72.9183 +US 01073 Southampton Massachusetts MA Hampshire 015 42.2247 -72.7194 +US 01075 South Hadley Massachusetts MA Hampshire 015 42.2375 -72.5811 +US 01082 Ware Massachusetts MA Hampshire 015 42.2618 -72.2583 +US 01084 West Chesterfield Massachusetts MA Hampshire 015 42.3903 -72.8709 +US 01088 West Hatfield Massachusetts MA Hampshire 015 42.3906 -72.6469 +US 01096 Williamsburg Massachusetts MA Hampshire 015 42.4085 -72.778 +US 01098 Worthington Massachusetts MA Hampshire 015 42.3843 -72.9314 +US 01243 Middlefield Massachusetts MA Hampshire 015 42.3561 -73.0104 +US 01431 Ashby Massachusetts MA Middlesex 017 42.6745 -71.8174 +US 01432 Ayer Massachusetts MA Middlesex 017 42.5591 -71.5788 +US 01450 Groton Massachusetts MA Middlesex 017 42.6124 -71.5584 +US 01460 Littleton Massachusetts MA Middlesex 017 42.5401 -71.4877 +US 01463 Pepperell Massachusetts MA Middlesex 017 42.6689 -71.5934 +US 01464 Shirley Massachusetts MA Middlesex 017 42.5734 -71.6483 +US 01466 Ashburnham Massachusetts MA Middlesex County 017 42.6116 -71.9295 +US 01469 Townsend Massachusetts MA Middlesex 017 42.6525 -71.6896 +US 01470 Groton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01471 Groton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01472 West Groton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01474 West Townsend Massachusetts MA Middlesex 017 42.6678 -71.7522 +US 01701 Framingham Massachusetts MA Middlesex 017 42.3007 -71.4255 +US 01702 Framingham Massachusetts MA Middlesex 017 42.2822 -71.4339 +US 01703 Framingham Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01704 Framingham Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01705 Framingham Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01718 Village Of Nagog Woods Massachusetts MA Middlesex 017 42.5198 -71.4293 +US 01719 Boxborough Massachusetts MA Middlesex 017 42.4884 -71.5178 +US 01720 Acton Massachusetts MA Middlesex 017 42.4751 -71.4483 +US 01721 Ashland Massachusetts MA Middlesex 017 42.2539 -71.4583 +US 01730 Bedford Massachusetts MA Middlesex 017 42.4843 -71.2768 +US 01731 Hanscom Afb Massachusetts MA Middlesex 017 42.4567 -71.2795 +US 01741 Carlisle Massachusetts MA Middlesex 017 42.5286 -71.3519 +US 01742 Concord Massachusetts MA Middlesex 017 42.4567 -71.3747 +US 01746 Holliston Massachusetts MA Middlesex 017 42.2026 -71.4361 +US 01748 Hopkinton Massachusetts MA Middlesex 017 42.219 -71.5302 +US 01749 Hudson Massachusetts MA Middlesex 017 42.3918 -71.5609 +US 01752 Marlborough Massachusetts MA Middlesex 017 42.3509 -71.5434 +US 01754 Maynard Massachusetts MA Middlesex 017 42.4321 -71.455 +US 01760 Natick Massachusetts MA Middlesex 017 42.2875 -71.3574 +US 01770 Sherborn Massachusetts MA Middlesex 017 42.2331 -71.3787 +US 01773 Lincoln Massachusetts MA Middlesex 017 42.4217 -71.3137 +US 01775 Stow Massachusetts MA Middlesex 017 42.4308 -71.515 +US 01776 Sudbury Massachusetts MA Middlesex 017 42.3837 -71.4282 +US 01778 Wayland Massachusetts MA Middlesex 017 42.3486 -71.3588 +US 01784 Woodville Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01801 Woburn Massachusetts MA Middlesex 017 42.4829 -71.1574 +US 01803 Burlington Massachusetts MA Middlesex 017 42.5089 -71.2004 +US 01805 Burlington Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01806 Woburn Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01807 Woburn Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01808 Woburn Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01813 Woburn Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01814 Reading Massachusetts MA Middlesex County 017 42.506 -71.1263 +US 01815 Woburn Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01821 Billerica Massachusetts MA Middlesex 017 42.5519 -71.2518 +US 01822 Billerica Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01824 Chelmsford Massachusetts MA Middlesex 017 42.5911 -71.3556 +US 01826 Dracut Massachusetts MA Middlesex 017 42.6764 -71.3186 +US 01827 Dunstable Massachusetts MA Middlesex 017 42.6739 -71.4952 +US 01850 Lowell Massachusetts MA Middlesex 017 42.656 -71.3051 +US 01851 Lowell Massachusetts MA Middlesex 017 42.6315 -71.3329 +US 01852 Lowell Massachusetts MA Middlesex 017 42.6344 -71.2983 +US 01853 Lowell Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01854 Lowell Massachusetts MA Middlesex 017 42.6493 -71.3355 +US 01862 North Billerica Massachusetts MA Middlesex 017 42.5757 -71.2902 +US 01863 North Chelmsford Massachusetts MA Middlesex 017 42.6347 -71.3908 +US 01864 North Reading Massachusetts MA Middlesex 017 42.5819 -71.0947 +US 01865 Nutting Lake Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01866 Pinehurst Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01867 Reading Massachusetts MA Middlesex 017 42.528 -71.109 +US 01876 Tewksbury Massachusetts MA Middlesex 017 42.6028 -71.2232 +US 01879 Tyngsboro Massachusetts MA Middlesex 017 42.6724 -71.4158 +US 01880 Wakefield Massachusetts MA Middlesex 017 42.5009 -71.0685 +US 01886 Westford Massachusetts MA Middlesex 017 42.5864 -71.4401 +US 01887 Wilmington Massachusetts MA Middlesex 017 42.5581 -71.1723 +US 01888 Woburn Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 01889 North Reading Massachusetts MA Middlesex 017 42.5716 -71.1096 +US 01890 Winchester Massachusetts MA Middlesex 017 42.453 -71.1441 +US 02138 Cambridge Massachusetts MA Middlesex 017 42.377 -71.1256 +US 02139 Cambridge Massachusetts MA Middlesex 017 42.3647 -71.1042 +US 02140 Cambridge Massachusetts MA Middlesex 017 42.3932 -71.1338 +US 02141 Cambridge Massachusetts MA Middlesex 017 42.3687 -71.0836 +US 02142 Cambridge Massachusetts MA Middlesex 017 42.362 -71.083 +US 02143 Somerville Massachusetts MA Middlesex 017 42.3829 -71.1028 +US 02144 Somerville Massachusetts MA Middlesex 017 42.4003 -71.1221 +US 02145 Somerville Massachusetts MA Middlesex 017 42.3907 -71.0929 +US 02148 Malden Massachusetts MA Middlesex 017 42.4291 -71.0605 +US 02149 Everett Massachusetts MA Middlesex 017 42.4112 -71.0514 +US 02153 Medford Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02154 Waltham Massachusetts MA Middlesex 017 42.3889 -71.2398 +US 02155 Medford Massachusetts MA Middlesex 017 42.4173 -71.1087 +US 02156 West Medford Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02158 Newton Massachusetts MA Middlesex 017 42.3537 -71.1881 +US 02159 Newton Massachusetts MA Middlesex 017 42.3161 -71.1912 +US 02160 Newton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02161 Newton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02162 Newton Massachusetts MA Middlesex 017 42.3319 -71.2541 +US 02164 Newton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02165 Newton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02166 Auburndale Massachusetts MA Middlesex 017 42.3461 -71.2431 +US 02167 Chestnut Hill Massachusetts MA Middlesex 017 42.3208 -71.1698 +US 02168 Waban Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02172 Watertown Massachusetts MA Middlesex 017 42.3726 -71.178 +US 02173 Lexington Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02174 Arlington Massachusetts MA Middlesex 017 42.4177 -71.1671 +US 02175 Arlington Heights Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02176 Melrose Massachusetts MA Middlesex 017 42.4581 -71.0632 +US 02177 Melrose Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02178 Belmont Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02179 Waverley Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02180 Stoneham Massachusetts MA Middlesex 017 42.4828 -71.0978 +US 02193 Weston Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02195 Newton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02212 Boston Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02238 Cambridge Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02239 Cambridge Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02254 Waltham Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02258 Newton Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02272 Watertown Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02277 Watertown Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02420 Lexington Massachusetts MA Middlesex 017 42.4563 -71.2167 +US 02421 Lexington Massachusetts MA Middlesex 017 42.4426 -71.2265 +US 02451 Waltham Massachusetts MA Middlesex 017 42.3986 -71.2451 +US 02452 Waltham Massachusetts MA Middlesex 017 42.3943 -71.218 +US 02453 Waltham Massachusetts MA Middlesex 017 42.3654 -71.2317 +US 02454 Waltham Massachusetts MA Middlesex 017 42.3567 -71.2505 +US 02455 North Waltham Massachusetts MA Middlesex County 017 42.3621 -71.2055 +US 02456 New Town Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02458 Newton Massachusetts MA Middlesex 017 42.3528 -71.1875 +US 02459 Newton Center Massachusetts MA Middlesex 017 42.3341 -71.1833 +US 02460 Newtonville Massachusetts MA Middlesex 017 42.352 -71.2084 +US 02461 Newton Highlands Massachusetts MA Middlesex 017 42.3168 -71.2084 +US 02462 Newton Lower Falls Massachusetts MA Middlesex 017 42.3299 -71.2562 +US 02464 Newton Upper Falls Massachusetts MA Middlesex 017 42.3129 -71.2195 +US 02465 West Newton Massachusetts MA Middlesex 017 42.3492 -71.2267 +US 02466 Auburndale Massachusetts MA Middlesex 017 42.3441 -71.248 +US 02467 Chestnut Hill Massachusetts MA Middlesex 017 42.3164 -71.1612 +US 02468 Waban Massachusetts MA Middlesex 017 42.3271 -71.2315 +US 02471 Watertown Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02472 Watertown Massachusetts MA Middlesex 017 42.37 -71.1773 +US 02474 Arlington Massachusetts MA Middlesex 017 42.4202 -71.1565 +US 02475 Arlington Heights Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02476 Arlington Massachusetts MA Middlesex 017 42.4162 -71.1752 +US 02477 Watertown Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02478 Belmont Massachusetts MA Middlesex 017 42.4128 -71.2044 +US 02479 Waverley Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02493 Weston Massachusetts MA Middlesex 017 42.3589 -71.3001 +US 02495 Nonantum Massachusetts MA Middlesex 017 42.4464 -71.4594 +US 02554 Nantucket Massachusetts MA Nantucket 019 41.2725 -70.0932 +US 02564 Siasconset Massachusetts MA Nantucket 019 41.2739 -70.0155 +US 02584 Nantucket Massachusetts MA Nantucket 019 41.2778 -70.046 +US 02019 Bellingham Massachusetts MA Norfolk 021 42.0746 -71.4768 +US 02021 Canton Massachusetts MA Norfolk 021 42.1645 -71.1355 +US 02025 Cohasset Massachusetts MA Norfolk 021 42.2395 -70.8128 +US 02026 Dedham Massachusetts MA Norfolk 021 42.2437 -71.1637 +US 02027 Dedham Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02030 Dover Massachusetts MA Norfolk 021 42.2362 -71.2854 +US 02032 East Walpole Massachusetts MA Norfolk 021 42.1532 -71.2179 +US 02035 Foxboro Massachusetts MA Norfolk 021 42.0649 -71.2441 +US 02038 Franklin Massachusetts MA Norfolk 021 42.0935 -71.4058 +US 02052 Medfield Massachusetts MA Norfolk 021 42.1845 -71.3048 +US 02053 Medway Massachusetts MA Norfolk 021 42.1514 -71.4217 +US 02054 Millis Massachusetts MA Norfolk 021 42.1669 -71.3607 +US 02056 Norfolk Massachusetts MA Norfolk 021 42.1177 -71.3269 +US 02062 Norwood Massachusetts MA Norfolk 021 42.1868 -71.2033 +US 02067 Sharon Massachusetts MA Norfolk 021 42.1094 -71.1759 +US 02070 Sheldonville Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02071 South Walpole Massachusetts MA Norfolk 021 42.0992 -71.2752 +US 02072 Stoughton Massachusetts MA Norfolk 021 42.1253 -71.1074 +US 02081 Walpole Massachusetts MA Norfolk 021 42.1444 -71.2544 +US 02090 Westwood Massachusetts MA Norfolk 021 42.2148 -71.2104 +US 02093 Wrentham Massachusetts MA Norfolk 021 42.0617 -71.3396 +US 02146 Brookline Massachusetts MA Norfolk 021 42.3082 -71.0887 +US 02147 Brookline Village Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02157 Babson Park Massachusetts MA Norfolk 021 42.1739 -71.1855 +US 02169 Quincy Massachusetts MA Norfolk 021 42.2491 -70.9978 +US 02170 Quincy Massachusetts MA Norfolk 021 42.2671 -71.0186 +US 02171 Quincy Massachusetts MA Norfolk 021 42.2825 -71.0241 +US 02181 Wellesley Massachusetts MA Norfolk 021 42.3006 -71.2788 +US 02184 Braintree Massachusetts MA Norfolk 021 42.2093 -70.9963 +US 02185 Braintree Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02186 Milton Massachusetts MA Norfolk 021 42.2537 -71.0771 +US 02187 Milton Village Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02188 Weymouth Massachusetts MA Norfolk 021 42.2113 -70.9582 +US 02189 Weymouth Massachusetts MA Norfolk 021 42.2116 -70.9317 +US 02190 Weymouth Massachusetts MA Norfolk 021 42.1728 -70.9487 +US 02191 Weymouth Massachusetts MA Norfolk 021 42.2436 -70.9443 +US 02192 Needham Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02194 Needham Massachusetts MA Norfolk 021 42.2925 -71.2258 +US 02269 Quincy Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02322 Avon Massachusetts MA Norfolk 021 42.1258 -71.0437 +US 02343 Holbrook Massachusetts MA Norfolk 021 42.1464 -71.0083 +US 02363 Plymouth Massachusetts MA Norfolk County 021 41.9236 -70.6569 +US 02368 Randolph Massachusetts MA Norfolk 021 42.1736 -71.0514 +US 02445 Brookline Massachusetts MA Norfolk 021 42.3259 -71.1341 +US 02446 Brookline Massachusetts MA Norfolk 021 42.3431 -71.123 +US 02447 Brookline Village Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02457 Babson Park Massachusetts MA Norfolk 021 42.18 -71.0892 +US 02481 Wellesley Hills Massachusetts MA Norfolk 021 42.3106 -71.2747 +US 02482 Wellesley Massachusetts MA Norfolk 021 42.2945 -71.2992 +US 02492 Needham Massachusetts MA Norfolk 021 42.2798 -71.2501 +US 02494 Needham Massachusetts MA Norfolk 021 42.2997 -71.2321 +US 02762 Plainville Massachusetts MA Norfolk 021 42.0124 -71.3275 +US 02018 Accord Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02020 Brant Rock Massachusetts MA Plymouth 023 42.0818 -70.6439 +US 02040 Greenbush Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02041 Green Harbor Massachusetts MA Plymouth 023 42.0696 -70.6491 +US 02043 Hingham Massachusetts MA Plymouth 023 42.2245 -70.8911 +US 02044 Hingham Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02045 Hull Massachusetts MA Plymouth 023 42.2853 -70.8754 +US 02047 Humarock Massachusetts MA Plymouth 023 42.1428 -70.6935 +US 02050 Marshfield Massachusetts MA Plymouth 023 42.1062 -70.6993 +US 02051 Marshfield Hills Massachusetts MA Plymouth 023 42.1512 -70.7341 +US 02055 Minot Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02059 North Marshfield Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02060 North Scituate Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02061 Norwell Massachusetts MA Plymouth 023 42.1596 -70.8217 +US 02065 Ocean Bluff Massachusetts MA Plymouth 023 42.0972 -70.6516 +US 02066 Scituate Massachusetts MA Plymouth 023 42.2032 -70.7525 +US 02301 Brockton Massachusetts MA Plymouth 023 42.0794 -71.04 +US 02302 Brockton Massachusetts MA Plymouth 023 42.0847 -71.0002 +US 02303 Brockton Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02304 Brockton Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02305 Brockton Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02324 Bridgewater Massachusetts MA Plymouth 023 41.9773 -70.9723 +US 02325 Bridgewater Massachusetts MA Plymouth 023 41.9873 -70.9728 +US 02327 Bryantville Massachusetts MA Plymouth 023 42.0407 -70.8272 +US 02330 Carver Massachusetts MA Plymouth 023 41.8883 -70.7678 +US 02331 Duxbury Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02332 Duxbury Massachusetts MA Plymouth 023 42.0399 -70.7163 +US 02333 East Bridgewater Massachusetts MA Plymouth 023 42.0315 -70.945 +US 02337 Elmwood Massachusetts MA Plymouth 023 42.0222 -70.9316 +US 02338 Halifax Massachusetts MA Plymouth 023 42.0002 -70.8448 +US 02339 Hanover Massachusetts MA Plymouth 023 42.1214 -70.857 +US 02340 Hanover Massachusetts MA Plymouth County 023 42.1137 -70.8161 +US 02341 Hanson Massachusetts MA Plymouth 023 42.0616 -70.8651 +US 02344 Middleboro Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02345 Manomet Massachusetts MA Plymouth 023 41.8882 -70.581 +US 02346 Middleboro Massachusetts MA Plymouth 023 41.8884 -70.893 +US 02347 Lakeville Massachusetts MA Plymouth 023 41.8374 -70.9582 +US 02348 Middleboro Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02349 Middleboro Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02350 Monponsett Massachusetts MA Plymouth 023 42.0185 -70.8475 +US 02351 Abington Massachusetts MA Plymouth 023 42.1167 -70.9543 +US 02355 North Carver Massachusetts MA Plymouth 023 41.9169 -70.8013 +US 02358 North Pembroke Massachusetts MA Plymouth 023 41.9535 -70.7131 +US 02359 Pembroke Massachusetts MA Plymouth 023 42.0621 -70.8044 +US 02360 Plymouth Massachusetts MA Plymouth 023 41.9104 -70.642 +US 02361 Plymouth Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02362 Plymouth Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02364 Kingston Massachusetts MA Plymouth 023 41.995 -70.741 +US 02366 South Carver Massachusetts MA Plymouth 023 41.8501 -70.7044 +US 02367 Plympton Massachusetts MA Plymouth 023 41.9655 -70.8046 +US 02370 Rockland Massachusetts MA Plymouth 023 42.1293 -70.9133 +US 02379 West Bridgewater Massachusetts MA Plymouth 023 42.0255 -71.0161 +US 02381 White Horse Beach Massachusetts MA Plymouth 023 41.9316 -70.5611 +US 02382 Whitman Massachusetts MA Plymouth 023 42.0816 -70.9381 +US 02401 Brockton Massachusetts MA Plymouth 023 42.0794 -71.0346 +US 02402 Brockton Massachusetts MA Plymouth 023 42.0863 -70.9993 +US 02403 Brockton Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02404 Brockton Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02405 Brockton Massachusetts MA Plymouth 023 41.9705 -70.7014 +US 02411 Brockton Massachusetts MA Plymouth County 023 42.0833 -71.0186 +US 02499 Brockton Massachusetts MA Plymouth County 023 42.0811 -71.0255 +US 02538 East Wareham Massachusetts MA Plymouth 023 41.7682 -70.6532 +US 02558 Onset Massachusetts MA Plymouth 023 41.7476 -70.6582 +US 02571 Wareham Massachusetts MA Plymouth 023 41.7541 -70.7116 +US 02576 West Wareham Massachusetts MA Plymouth 023 41.7796 -70.7642 +US 02738 Marion Massachusetts MA Plymouth 023 41.7095 -70.7613 +US 02739 Mattapoisett Massachusetts MA Plymouth 023 41.6618 -70.8164 +US 02770 Rochester Massachusetts MA Plymouth 023 41.7591 -70.8523 +US 02101 Boston Massachusetts MA Suffolk 025 42.3706 -71.027 +US 02102 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02103 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02104 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02105 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02106 Boston Massachusetts MA Suffolk 025 42.3543 -71.0734 +US 02107 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02108 Boston Massachusetts MA Suffolk 025 42.3576 -71.0684 +US 02109 Boston Massachusetts MA Suffolk 025 42.36 -71.0545 +US 02110 Boston Massachusetts MA Suffolk 025 42.3576 -71.0514 +US 02111 Boston Massachusetts MA Suffolk 025 42.3503 -71.0629 +US 02112 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02113 Boston Massachusetts MA Suffolk 025 42.3657 -71.056 +US 02114 Boston Massachusetts MA Suffolk 025 42.3611 -71.0682 +US 02115 Boston Massachusetts MA Suffolk 025 42.3427 -71.0922 +US 02116 Boston Massachusetts MA Suffolk 025 42.3492 -71.0768 +US 02117 Boston Massachusetts MA Suffolk 025 42.3585 -71.058 +US 02118 Boston Massachusetts MA Suffolk 025 42.3362 -71.0729 +US 02119 Boston Massachusetts MA Suffolk 025 42.3231 -71.0846 +US 02120 Boston Massachusetts MA Suffolk 025 42.3325 -71.0964 +US 02121 Boston Massachusetts MA Suffolk 025 42.3071 -71.0816 +US 02122 Boston Massachusetts MA Suffolk 025 42.2966 -71.0552 +US 02123 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02124 Boston Massachusetts MA Suffolk 025 42.2868 -71.071 +US 02125 Boston Massachusetts MA Suffolk 025 42.3148 -71.0672 +US 02126 Mattapan Massachusetts MA Suffolk 025 42.2739 -71.0939 +US 02127 Boston Massachusetts MA Suffolk 025 42.3347 -71.0375 +US 02128 Boston Massachusetts MA Suffolk 025 42.3642 -71.0257 +US 02129 Charlestown Massachusetts MA Suffolk 025 42.3778 -71.0627 +US 02130 Jamaica Plain Massachusetts MA Suffolk 025 42.3126 -71.1115 +US 02131 Roslindale Massachusetts MA Suffolk 025 42.2836 -71.1295 +US 02132 West Roxbury Massachusetts MA Suffolk 025 42.2787 -71.1589 +US 02133 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02134 Allston Massachusetts MA Suffolk 025 42.3535 -71.1329 +US 02135 Brighton Massachusetts MA Suffolk 025 42.3478 -71.1566 +US 02136 Hyde Park Massachusetts MA Suffolk 025 42.254 -71.1261 +US 02137 Readville Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02150 Chelsea Massachusetts MA Suffolk 025 42.3963 -71.0325 +US 02151 Revere Massachusetts MA Suffolk 025 42.4138 -71.0052 +US 02152 Winthrop Massachusetts MA Suffolk 025 42.3763 -70.98 +US 02163 Boston Massachusetts MA Suffolk 025 42.3253 -71.1122 +US 02196 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02199 Boston Massachusetts MA Suffolk 025 42.3479 -71.0825 +US 02201 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02202 Boston Massachusetts MA Suffolk 025 42.3611 -71.0618 +US 02203 Boston Massachusetts MA Suffolk 025 42.3615 -71.0604 +US 02204 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02205 Boston Massachusetts MA Suffolk 025 42.3503 -71.0539 +US 02206 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02207 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02208 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02209 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02210 Boston Massachusetts MA Suffolk 025 42.3489 -71.0465 +US 02211 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02215 Boston Massachusetts MA Suffolk 025 42.3471 -71.1027 +US 02216 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02217 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02222 Boston Massachusetts MA Suffolk 025 42.3644 -71.0633 +US 02228 East Boston Massachusetts MA Suffolk County 025 42.347 -71.0886 +US 02241 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02266 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02283 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02284 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02293 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02295 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02297 Boston Massachusetts MA Suffolk 025 42.3389 -70.9196 +US 02298 Boston Massachusetts MA Suffolk County 025 42.3823 -71.0323 +US 01005 Barre Massachusetts MA Worcester 027 42.4097 -72.1084 +US 01031 Gilbertville Massachusetts MA Worcester 027 42.3322 -72.1986 +US 01037 Hardwick Massachusetts MA Worcester 027 42.3479 -72.2253 +US 01068 Oakham Massachusetts MA Worcester 027 42.348 -72.0513 +US 01074 South Barre Massachusetts MA Worcester 027 42.376 -72.1494 +US 01083 Warren Massachusetts MA Worcester 027 42.204 -72.1994 +US 01092 West Warren Massachusetts MA Worcester 027 42.2029 -72.229 +US 01094 Wheelwright Massachusetts MA Worcester 027 42.3582 -72.1408 +US 01331 Athol Massachusetts MA Worcester 027 42.5473 -72.1839 +US 01366 Petersham Massachusetts MA Worcester 027 42.4898 -72.1893 +US 01368 Royalston Massachusetts MA Worcester 027 42.6722 -72.1964 +US 01420 Fitchburg Massachusetts MA Worcester 027 42.5796 -71.8031 +US 01430 Ashburnham Massachusetts MA Worcester 027 42.6496 -71.9267 +US 01433 Ft Devens Massachusetts MA Worcester County 027 42.5336 -71.6215 +US 01434 Devens Massachusetts MA Worcester County 027 42.5385 -71.6115 +US 01436 Baldwinville Massachusetts MA Worcester 027 42.5936 -72.0646 +US 01438 East Templeton Massachusetts MA Worcester 027 42.5517 -72.0294 +US 01440 Gardner Massachusetts MA Worcester 027 42.574 -71.9898 +US 01441 Gardner Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01451 Harvard Massachusetts MA Worcester 027 42.4986 -71.5753 +US 01452 Hubbardston Massachusetts MA Worcester 027 42.4865 -72.0012 +US 01453 Leominster Massachusetts MA Worcester 027 42.5274 -71.7563 +US 01462 Lunenburg Massachusetts MA Worcester 027 42.5884 -71.7266 +US 01467 Still River Massachusetts MA Worcester 027 42.4871 -71.6131 +US 01468 Templeton Massachusetts MA Worcester 027 42.546 -72.065 +US 01473 Westminster Massachusetts MA Worcester 027 42.5483 -71.9096 +US 01475 Winchendon Massachusetts MA Worcester 027 42.6789 -72.0475 +US 01477 Winchendon Springs Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01501 Auburn Massachusetts MA Worcester 027 42.2055 -71.8391 +US 01503 Berlin Massachusetts MA Worcester 027 42.3844 -71.6356 +US 01504 Blackstone Massachusetts MA Worcester 027 42.0287 -71.5269 +US 01505 Boylston Massachusetts MA Worcester 027 42.3377 -71.731 +US 01506 Brookfield Massachusetts MA Worcester 027 42.1991 -72.0989 +US 01507 Charlton Massachusetts MA Worcester 027 42.1379 -71.9664 +US 01508 Charlton City Massachusetts MA Worcester 027 42.1097 -72.0795 +US 01509 Charlton Depot Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01510 Clinton Massachusetts MA Worcester 027 42.4181 -71.6828 +US 01515 East Brookfield Massachusetts MA Worcester 027 42.2193 -72.0481 +US 01516 Douglas Massachusetts MA Worcester 027 42.0528 -71.7509 +US 01517 East Princeton Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01518 Fiskdale Massachusetts MA Worcester 027 42.1228 -72.1178 +US 01519 Grafton Massachusetts MA Worcester 027 42.2004 -71.6868 +US 01520 Holden Massachusetts MA Worcester 027 42.342 -71.8414 +US 01522 Jefferson Massachusetts MA Worcester 027 42.3755 -71.8706 +US 01523 Lancaster Massachusetts MA Worcester 027 42.451 -71.6868 +US 01524 Leicester Massachusetts MA Worcester 027 42.237 -71.9188 +US 01525 Linwood Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01526 Manchaug Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01527 Millbury Massachusetts MA Worcester 027 42.1968 -71.7644 +US 01529 Millville Massachusetts MA Worcester 027 42.0331 -71.5798 +US 01531 New Braintree Massachusetts MA Worcester 027 42.3198 -72.1306 +US 01532 Northborough Massachusetts MA Worcester 027 42.3182 -71.6464 +US 01534 Northbridge Massachusetts MA Worcester 027 42.1494 -71.6564 +US 01535 North Brookfield Massachusetts MA Worcester 027 42.2665 -72.0821 +US 01536 North Grafton Massachusetts MA Worcester 027 42.2297 -71.7037 +US 01537 North Oxford Massachusetts MA Worcester 027 42.1655 -71.886 +US 01538 North Uxbridge Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01540 Oxford Massachusetts MA Worcester 027 42.1129 -71.8687 +US 01541 Princeton Massachusetts MA Worcester 027 42.4508 -71.8762 +US 01542 Rochdale Massachusetts MA Worcester 027 42.1997 -71.9069 +US 01543 Rutland Massachusetts MA Worcester 027 42.3762 -71.949 +US 01545 Shrewsbury Massachusetts MA Worcester 027 42.2848 -71.7205 +US 01546 Shrewsbury Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01550 Southbridge Massachusetts MA Worcester 027 42.075 -72.0353 +US 01560 South Grafton Massachusetts MA Worcester 027 42.176 -71.6927 +US 01561 South Lancaster Massachusetts MA Worcester 027 42.4435 -71.6861 +US 01562 Spencer Massachusetts MA Worcester 027 42.2441 -71.9906 +US 01564 Sterling Massachusetts MA Worcester 027 42.4354 -71.7752 +US 01566 Sturbridge Massachusetts MA Worcester 027 42.1126 -72.0842 +US 01568 Upton Massachusetts MA Worcester 027 42.1756 -71.6032 +US 01569 Uxbridge Massachusetts MA Worcester 027 42.0744 -71.6329 +US 01570 Webster Massachusetts MA Worcester 027 42.0521 -71.8486 +US 01571 Dudley Massachusetts MA Worcester 027 42.0489 -71.8932 +US 01580 Westborough Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01581 Westborough Massachusetts MA Worcester 027 42.2679 -71.6176 +US 01582 Westborough Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01583 West Boylston Massachusetts MA Worcester 027 42.3584 -71.7838 +US 01585 West Brookfield Massachusetts MA Worcester 027 42.2441 -72.1511 +US 01586 West Millbury Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01587 Upton Massachusetts MA Worcester County 027 42.1702 -71.6259 +US 01588 Whitinsville Massachusetts MA Worcester 027 42.1153 -71.6644 +US 01590 Sutton Massachusetts MA Worcester 027 42.1266 -71.7552 +US 01601 Worcester Massachusetts MA Worcester 027 42.2653 -71.8794 +US 01602 Worcester Massachusetts MA Worcester 027 42.2703 -71.8417 +US 01603 Worcester Massachusetts MA Worcester 027 42.245 -71.838 +US 01604 Worcester Massachusetts MA Worcester 027 42.2541 -71.7746 +US 01605 Worcester Massachusetts MA Worcester 027 42.2894 -71.7888 +US 01606 Worcester Massachusetts MA Worcester 027 42.311 -71.7958 +US 01607 Worcester Massachusetts MA Worcester 027 42.2303 -71.7938 +US 01608 Worcester Massachusetts MA Worcester 027 42.2624 -71.8003 +US 01609 Worcester Massachusetts MA Worcester 027 42.2826 -71.8277 +US 01610 Worcester Massachusetts MA Worcester 027 42.2492 -71.8108 +US 01611 Cherry Valley Massachusetts MA Worcester 027 42.2373 -71.875 +US 01612 Paxton Massachusetts MA Worcester 027 42.3066 -71.9202 +US 01613 Worcester Massachusetts MA Worcester 027 42.2933 -71.802 +US 01614 Worcester Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01615 Worcester Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01653 Worcester Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01654 Worcester Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01655 Worcester Massachusetts MA Worcester 027 42.3648 -71.8969 +US 01740 Bolton Massachusetts MA Worcester 027 42.4365 -71.6076 +US 01745 Fayville Massachusetts MA Worcester 027 42.2934 -71.5028 +US 01747 Hopedale Massachusetts MA Worcester 027 42.1268 -71.5376 +US 01756 Mendon Massachusetts MA Worcester 027 42.0967 -71.5499 +US 01757 Milford Massachusetts MA Worcester 027 42.1511 -71.5274 +US 01772 Southborough Massachusetts MA Worcester 027 42.2939 -71.532 +US 21501 Cumberland Maryland MD Allegany 001 39.5807 -78.6906 +US 21502 Cumberland Maryland MD Allegany 001 39.5992 -78.8444 +US 21503 Cumberland Maryland MD Allegany 001 39.5807 -78.6906 +US 21504 Cumberland Maryland MD Allegany 001 39.5807 -78.6906 +US 21505 Cumberland Maryland MD Allegany 001 39.594 -78.8434 +US 21521 Barton Maryland MD Allegany 001 39.5331 -79.0281 +US 21524 Corriganville Maryland MD Allegany 001 39.6967 -78.8031 +US 21528 Eckhart Mines Maryland MD Allegany 001 39.6528 -78.9014 +US 21529 Ellerslie Maryland MD Allegany 001 39.7083 -78.7774 +US 21530 Flintstone Maryland MD Allegany 001 39.6993 -78.5739 +US 21532 Frostburg Maryland MD Allegany 001 39.6494 -78.9306 +US 21539 Lonaconing Maryland MD Allegany 001 39.5757 -78.9915 +US 21540 Luke Maryland MD Allegany 001 39.4774 -79.0594 +US 21542 Midland Maryland MD Allegany 001 39.5951 -78.9431 +US 21543 Midlothian Maryland MD Allegany 001 39.6339 -78.9604 +US 21545 Mount Savage Maryland MD Allegany 001 39.6991 -78.8739 +US 21546 Nikep Maryland MD Allegany County 001 39.5506 -78.9975 +US 21555 Oldtown Maryland MD Allegany 001 39.5846 -78.6044 +US 21556 Pinto Maryland MD Allegany 001 39.5725 -78.844 +US 21557 Rawlings Maryland MD Allegany 001 39.5214 -78.9062 +US 21560 Spring Gap Maryland MD Allegany 001 39.601 -78.6871 +US 21562 Westernport Maryland MD Allegany 001 39.4905 -79.014 +US 21766 Little Orleans Maryland MD Allegany 001 39.6876 -78.3781 +US 20711 Lothian Maryland MD Anne Arundel 003 38.8029 -76.6628 +US 20724 Laurel Maryland MD Anne Arundel 003 39.0958 -76.8155 +US 20733 Churchton Maryland MD Anne Arundel 003 38.8018 -76.5248 +US 20751 Deale Maryland MD Anne Arundel 003 38.7829 -76.5515 +US 20755 Fort George G Meade Maryland MD Anne Arundel 003 39.1059 -76.7467 +US 20758 Friendship Maryland MD Anne Arundel 003 38.7361 -76.5835 +US 20764 Shady Side Maryland MD Anne Arundel 003 38.8368 -76.5109 +US 20765 Galesville Maryland MD Anne Arundel 003 38.8446 -76.5456 +US 20776 Harwood Maryland MD Anne Arundel 003 38.8582 -76.6145 +US 20778 West River Maryland MD Anne Arundel 003 38.8252 -76.5391 +US 20779 Tracys Landing Maryland MD Anne Arundel 003 38.7671 -76.5752 +US 21012 Arnold Maryland MD Anne Arundel 003 39.0476 -76.4941 +US 21032 Crownsville Maryland MD Anne Arundel 003 39.0489 -76.5935 +US 21035 Davidsonville Maryland MD Anne Arundel 003 38.9374 -76.6375 +US 21037 Edgewater Maryland MD Anne Arundel 003 38.9149 -76.5424 +US 21054 Gambrills Maryland MD Anne Arundel 003 39.0407 -76.6819 +US 21056 Gibson Island Maryland MD Anne Arundel 003 39.0751 -76.4324 +US 21060 Glen Burnie Maryland MD Anne Arundel 003 39.1702 -76.5798 +US 21061 Glen Burnie Maryland MD Anne Arundel 003 39.1618 -76.6297 +US 21062 Glen Burnie Maryland MD Anne Arundel 003 38.9742 -76.5949 +US 21076 Hanover Maryland MD Anne Arundel 003 39.1551 -76.7215 +US 21077 Harmans Maryland MD Anne Arundel 003 39.1561 -76.6977 +US 21090 Linthicum Heights Maryland MD Anne Arundel 003 39.2092 -76.6681 +US 21098 Hanover Maryland MD Anne Arundel 003 38.9742 -76.5949 +US 21106 Mayo Maryland MD Anne Arundel 003 38.9715 -76.5809 +US 21108 Millersville Maryland MD Anne Arundel 003 39.1041 -76.619 +US 21113 Odenton Maryland MD Anne Arundel 003 39.0762 -76.6996 +US 21114 Crofton Maryland MD Anne Arundel 003 39.0112 -76.6802 +US 21122 Pasadena Maryland MD Anne Arundel 003 39.1206 -76.495 +US 21123 Pasadena Maryland MD Anne Arundel 003 38.9742 -76.5949 +US 21140 Riva Maryland MD Anne Arundel 003 38.9504 -76.5854 +US 21144 Severn Maryland MD Anne Arundel 003 39.1275 -76.698 +US 21146 Severna Park Maryland MD Anne Arundel 003 39.0811 -76.5577 +US 21225 Brooklyn Maryland MD Anne Arundel 003 39.2259 -76.6153 +US 21226 Curtis Bay Maryland MD Anne Arundel 003 39.2109 -76.5597 +US 21240 Baltimore Maryland MD Anne Arundel 003 39.1753 -76.6732 +US 21401 Annapolis Maryland MD Anne Arundel 003 38.9898 -76.5501 +US 21402 Annapolis Maryland MD Anne Arundel 003 38.9871 -76.4715 +US 21403 Annapolis Maryland MD Anne Arundel 003 38.9524 -76.491 +US 21404 Annapolis Maryland MD Anne Arundel 003 38.9742 -76.5949 +US 21405 Annapolis Maryland MD Anne Arundel 003 39.0305 -76.5515 +US 21409 Annapolis Maryland MD Anne Arundel County 003 39.0416 -76.4377 +US 21411 Annapolis Maryland MD Anne Arundel 003 38.9742 -76.5949 +US 21412 Annapolis Maryland MD Anne Arundel 003 38.9742 -76.5949 +US 21013 Baldwin Maryland MD Baltimore 005 39.5194 -76.4927 +US 21020 Boring Maryland MD Baltimore 005 39.5213 -76.8047 +US 21021 Bradshaw Maryland MD Baltimore County 005 39.4273 -76.3922 +US 21022 Brooklandville Maryland MD Baltimore 005 39.3979 -76.6717 +US 21023 Butler Maryland MD Baltimore 005 39.533 -76.7432 +US 21027 Chase Maryland MD Baltimore 005 39.439 -76.5921 +US 21030 Cockeysville Maryland MD Baltimore 005 39.4919 -76.6677 +US 21031 Hunt Valley Maryland MD Baltimore 005 39.4805 -76.6553 +US 21051 Fork Maryland MD Baltimore 005 39.4731 -76.4484 +US 21052 Fort Howard Maryland MD Baltimore 005 39.207 -76.4456 +US 21053 Freeland Maryland MD Baltimore 005 39.694 -76.7223 +US 21055 Garrison Maryland MD Baltimore 005 39.439 -76.5921 +US 21057 Glen Arm Maryland MD Baltimore 005 39.4575 -76.5153 +US 21065 Hunt Valley Maryland MD Baltimore County 005 39.4883 -76.6538 +US 21071 Glyndon Maryland MD Baltimore 005 39.5157 -76.7661 +US 21082 Hydes Maryland MD Baltimore 005 39.474 -76.4695 +US 21087 Kingsville Maryland MD Baltimore 005 39.4558 -76.4147 +US 21092 Long Green Maryland MD Baltimore 005 39.439 -76.5921 +US 21093 Lutherville Timonium Maryland MD Baltimore 005 39.4332 -76.6546 +US 21094 Lutherville Timonium Maryland MD Baltimore 005 39.439 -76.5921 +US 21105 Maryland Line Maryland MD Baltimore 005 39.7114 -76.6595 +US 21111 Monkton Maryland MD Baltimore 005 39.5662 -76.5979 +US 21117 Owings Mills Maryland MD Baltimore 005 39.4269 -76.7769 +US 21120 Parkton Maryland MD Baltimore 005 39.6422 -76.6737 +US 21128 Perry Hall Maryland MD Baltimore 005 39.401 -76.451 +US 21131 Phoenix Maryland MD Baltimore 005 39.4833 -76.5776 +US 21133 Randallstown Maryland MD Baltimore 005 39.3746 -76.8002 +US 21136 Reisterstown Maryland MD Baltimore 005 39.46 -76.8135 +US 21139 Riderwood Maryland MD Baltimore 005 39.439 -76.5921 +US 21152 Sparks Glencoe Maryland MD Baltimore 005 39.5483 -76.6819 +US 21153 Stevenson Maryland MD Baltimore 005 39.4129 -76.7303 +US 21155 Upperco Maryland MD Baltimore 005 39.5676 -76.7972 +US 21156 Upper Falls Maryland MD Baltimore 005 39.4372 -76.3966 +US 21162 White Marsh Maryland MD Baltimore 005 39.3923 -76.4132 +US 21163 Woodstock Maryland MD Baltimore 005 39.3498 -76.8456 +US 21204 Towson Maryland MD Baltimore 005 39.4072 -76.6038 +US 21207 Gwynn Oak Maryland MD Baltimore 005 39.3296 -76.7341 +US 21208 Pikesville Maryland MD Baltimore 005 39.3764 -76.729 +US 21219 Sparrows Point Maryland MD Baltimore 005 39.2296 -76.4455 +US 21220 Middle River Maryland MD Baltimore 005 39.3401 -76.4153 +US 21221 Essex Maryland MD Baltimore 005 39.3086 -76.4533 +US 21222 Dundalk Maryland MD Baltimore 005 39.2655 -76.4935 +US 21227 Halethorpe Maryland MD Baltimore 005 39.2309 -76.6969 +US 21228 Catonsville Maryland MD Baltimore 005 39.2782 -76.7401 +US 21234 Parkville Maryland MD Baltimore 005 39.3876 -76.5418 +US 21236 Nottingham Maryland MD Baltimore 005 39.3914 -76.4871 +US 21237 Rosedale Maryland MD Baltimore 005 39.3361 -76.5014 +US 21244 Windsor Mill Maryland MD Baltimore 005 39.3331 -76.7849 +US 21250 Baltimore Maryland MD Baltimore 005 39.2582 -76.7131 +US 21251 Baltimore Maryland MD Baltimore 005 39.439 -76.5921 +US 21252 Baltimore Maryland MD Baltimore 005 39.3888 -76.6133 +US 21282 Baltimore Maryland MD Baltimore 005 39.439 -76.5921 +US 21284 Baltimore Maryland MD Baltimore 005 39.439 -76.5921 +US 21285 Baltimore Maryland MD Baltimore 005 39.439 -76.5921 +US 21286 Towson Maryland MD Baltimore 005 39.4143 -76.5761 +US 20610 Barstow Maryland MD Calvert 009 38.4447 -76.533 +US 20615 Broomes Island Maryland MD Calvert 009 38.418 -76.5478 +US 20629 Dowell Maryland MD Calvert 009 38.3364 -76.4524 +US 20639 Huntingtown Maryland MD Calvert 009 38.6095 -76.6003 +US 20657 Lusby Maryland MD Calvert 009 38.3661 -76.4346 +US 20676 Port Republic Maryland MD Calvert 009 38.4952 -76.5349 +US 20678 Prince Frederick Maryland MD Calvert 009 38.5336 -76.5955 +US 20685 Saint Leonard Maryland MD Calvert 009 38.4501 -76.511 +US 20688 Solomons Maryland MD Calvert 009 38.3293 -76.4651 +US 20689 Sunderland Maryland MD Calvert 009 38.649 -76.5767 +US 20714 North Beach Maryland MD Calvert 009 38.7119 -76.5367 +US 20732 Chesapeake Beach Maryland MD Calvert 009 38.6698 -76.5376 +US 20736 Owings Maryland MD Calvert 009 38.6955 -76.6061 +US 20754 Dunkirk Maryland MD Calvert 009 38.7408 -76.6427 +US 21609 Bethlehem Maryland MD Caroline 011 38.7406 -75.9587 +US 21629 Denton Maryland MD Caroline 011 38.8595 -75.8357 +US 21632 Federalsburg Maryland MD Caroline 011 38.7147 -75.7754 +US 21636 Goldsboro Maryland MD Caroline 011 39.023 -75.7926 +US 21639 Greensboro Maryland MD Caroline 011 38.9616 -75.8059 +US 21640 Henderson Maryland MD Caroline 011 39.0672 -75.7948 +US 21641 Hillsboro Maryland MD Caroline 011 38.9206 -75.9388 +US 21649 Marydel Maryland MD Caroline 011 39.1082 -75.7622 +US 21655 Preston Maryland MD Caroline 011 38.7465 -75.9163 +US 21660 Ridgely Maryland MD Caroline 011 38.9568 -75.8848 +US 21670 Templeville Maryland MD Caroline 011 38.8893 -75.8612 +US 21681 Ridgely Maryland MD Caroline 011 38.8893 -75.8612 +US 21682 Ridgely Maryland MD Caroline 011 38.8893 -75.8612 +US 21683 Ridgely Maryland MD Caroline 011 38.8893 -75.8612 +US 21684 Ridgely Maryland MD Caroline 011 38.8893 -75.8612 +US 21685 Ridgely Maryland MD Caroline 011 38.8893 -75.8612 +US 21686 Ridgely Maryland MD Caroline 011 38.8893 -75.8612 +US 21687 Ridgely Maryland MD Caroline 011 38.8893 -75.8612 +US 21688 Ridgely Maryland MD Caroline 011 38.8893 -75.8612 +US 21048 Finksburg Maryland MD Carroll 013 39.4991 -76.9101 +US 21074 Hampstead Maryland MD Carroll 013 39.6146 -76.8644 +US 21080 Henryton Maryland MD Carroll 013 39.5347 -77.0493 +US 21088 Lineboro Maryland MD Carroll 013 39.5347 -77.0493 +US 21102 Manchester Maryland MD Carroll 013 39.6747 -76.8941 +US 21104 Marriottsville Maryland MD Carroll 013 39.3342 -76.9132 +US 21107 Millers Maryland MD Carroll County 013 39.6856 -76.8155 +US 21157 Westminster Maryland MD Carroll 013 39.5642 -76.9807 +US 21158 Westminster Maryland MD Carroll 013 39.607 -77.0294 +US 21725 Detour Maryland MD Carroll County 013 39.6147 -77.2483 +US 21757 Keymar Maryland MD Carroll 013 39.5656 -77.2817 +US 21764 Linwood Maryland MD Carroll 013 39.5347 -77.0493 +US 21776 New Windsor Maryland MD Carroll 013 39.5162 -77.1034 +US 21784 Sykesville Maryland MD Carroll 013 39.4567 -76.9696 +US 21787 Taneytown Maryland MD Carroll 013 39.6658 -77.1691 +US 21791 Union Bridge Maryland MD Carroll 013 39.5799 -77.1319 +US 21797 Woodbine Maryland MD Carroll 013 39.3464 -77.0647 +US 21901 North East Maryland MD Cecil 015 39.6045 -75.9538 +US 21902 Perry Point Maryland MD Cecil 015 39.553 -76.0725 +US 21903 Perryville Maryland MD Cecil 015 39.5649 -76.0592 +US 21904 Port Deposit Maryland MD Cecil 015 39.6151 -76.0633 +US 21911 Rising Sun Maryland MD Cecil 015 39.6882 -76.0492 +US 21912 Warwick Maryland MD Cecil 015 39.4283 -75.7996 +US 21913 Cecilton Maryland MD Cecil 015 39.4015 -75.8654 +US 21914 Charlestown Maryland MD Cecil 015 39.5729 -75.9795 +US 21915 Chesapeake City Maryland MD Cecil 015 39.5133 -75.8406 +US 21916 Childs Maryland MD Cecil 015 39.5415 -76 +US 21917 Colora Maryland MD Cecil 015 39.6695 -76.0934 +US 21918 Conowingo Maryland MD Cecil 015 39.6778 -76.1572 +US 21919 Earleville Maryland MD Cecil 015 39.4271 -75.9403 +US 21920 Elk Mills Maryland MD Cecil 015 39.658 -75.8282 +US 21921 Elkton Maryland MD Cecil 015 39.6264 -75.8458 +US 21922 Elkton Maryland MD Cecil 015 39.5936 -75.9473 +US 21930 Georgetown Maryland MD Cecil 015 39.3662 -75.8845 +US 20601 Waldorf Maryland MD Charles 017 38.6371 -76.8778 +US 20602 Waldorf Maryland MD Charles 017 38.584 -76.8942 +US 20603 Waldorf Maryland MD Charles 017 38.6294 -76.9769 +US 20604 Waldorf Maryland MD Charles 017 38.5095 -76.9817 +US 20611 Bel Alton Maryland MD Charles 017 38.4731 -76.9789 +US 20612 Benedict Maryland MD Charles 017 38.5087 -76.6873 +US 20616 Bryans Road Maryland MD Charles 017 38.6415 -77.0766 +US 20617 Bryantown Maryland MD Charles 017 38.5426 -76.8465 +US 20625 Cobb Island Maryland MD Charles 017 38.262 -76.8502 +US 20632 Faulkner Maryland MD Charles 017 38.4382 -76.9729 +US 20637 Hughesville Maryland MD Charles 017 38.5207 -76.7817 +US 20640 Indian Head Maryland MD Charles 017 38.454 -77.0528 +US 20643 Ironsides Maryland MD Charles 017 38.5039 -77.1483 +US 20645 Issue Maryland MD Charles 017 38.2926 -76.9059 +US 20646 La Plata Maryland MD Charles 017 38.5257 -76.9865 +US 20658 Marbury Maryland MD Charles 017 38.5633 -77.1596 +US 20661 Mount Victoria Maryland MD Charles 017 38.3436 -76.8846 +US 20662 Nanjemoy Maryland MD Charles 017 38.4462 -77.1983 +US 20664 Newburg Maryland MD Charles 017 38.3298 -76.9175 +US 20675 Pomfret Maryland MD Charles 017 38.5855 -77.0093 +US 20677 Port Tobacco Maryland MD Charles 017 38.4994 -77.0419 +US 20682 Rock Point Maryland MD Charles 017 38.2836 -76.8481 +US 20693 Welcome Maryland MD Charles 017 38.4672 -77.095 +US 20695 White Plains Maryland MD Charles 017 38.5974 -76.9903 +US 21613 Cambridge Maryland MD Dorchester 019 38.5643 -76.0874 +US 21622 Church Creek Maryland MD Dorchester 019 38.4278 -76.1696 +US 21626 Crapo Maryland MD Dorchester 019 38.3295 -76.1142 +US 21627 Crocheron Maryland MD Dorchester 019 38.2426 -76.0531 +US 21631 East New Market Maryland MD Dorchester 019 38.5921 -75.9568 +US 21634 Fishing Creek Maryland MD Dorchester 019 38.2987 -76.2035 +US 21637 Golts Maryland MD Dorchester County 019 39.3556 -75.8055 +US 21643 Hurlock Maryland MD Dorchester 019 38.6438 -75.863 +US 21648 Madison Maryland MD Dorchester 019 38.4782 -76.2412 +US 21659 Rhodesdale Maryland MD Dorchester 019 38.603 -75.7749 +US 21664 Secretary Maryland MD Dorchester 019 38.601 -75.9474 +US 21669 Taylors Island Maryland MD Dorchester 019 38.4631 -76.2964 +US 21672 Toddville Maryland MD Dorchester 019 38.2726 -76.0596 +US 21675 Wingate Maryland MD Dorchester 019 38.2899 -76.0863 +US 21677 Woolford Maryland MD Dorchester 019 38.4997 -76.2025 +US 21835 Linkwood Maryland MD Dorchester 019 38.5403 -75.963 +US 21869 Vienna Maryland MD Dorchester 019 38.4774 -75.8729 +US 21701 Frederick Maryland MD Frederick 021 39.4461 -77.335 +US 21702 Frederick Maryland MD Frederick 021 39.4926 -77.4612 +US 21703 Frederick Maryland MD Frederick 021 39.3647 -77.4636 +US 21704 Frederick Maryland MD Frederick 021 39.3455 -77.3832 +US 21705 Frederick Maryland MD Frederick 021 39.47 -77.3921 +US 21709 Frederick Maryland MD Frederick 021 39.47 -77.3921 +US 21710 Adamstown Maryland MD Frederick 021 39.291 -77.4552 +US 21714 Braddock Heights Maryland MD Frederick 021 39.4203 -77.5051 +US 21716 Brunswick Maryland MD Frederick 021 39.3164 -77.623 +US 21717 Buckeystown Maryland MD Frederick 021 39.3309 -77.4274 +US 21718 Burkittsville Maryland MD Frederick 021 39.3923 -77.6275 +US 21727 Emmitsburg Maryland MD Frederick 021 39.694 -77.3357 +US 21735 Burkittsville Maryland MD Frederick County 021 39.3819 -77.6592 +US 21754 Ijamsville Maryland MD Frederick 021 39.3267 -77.2964 +US 21755 Jefferson Maryland MD Frederick 021 39.3653 -77.5441 +US 21758 Knoxville Maryland MD Frederick 021 39.3479 -77.6513 +US 21759 Ladiesburg Maryland MD Frederick 021 39.5694 -77.2905 +US 21762 Libertytown Maryland MD Frederick 021 39.4822 -77.2468 +US 21769 Middletown Maryland MD Frederick 021 39.4416 -77.5502 +US 21770 Monrovia Maryland MD Frederick 021 39.3512 -77.2494 +US 21771 Mount Airy Maryland MD Frederick 021 39.3881 -77.1723 +US 21773 Myersville Maryland MD Frederick 021 39.5282 -77.5513 +US 21774 New Market Maryland MD Frederick 021 39.4096 -77.2759 +US 21775 New Midway Maryland MD Frederick 021 39.5645 -77.2947 +US 21777 Point Of Rocks Maryland MD Frederick 021 39.2791 -77.5328 +US 21778 Rocky Ridge Maryland MD Frederick 021 39.6057 -77.3296 +US 21780 Sabillasville Maryland MD Frederick 021 39.6828 -77.4693 +US 21788 Thurmont Maryland MD Frederick 021 39.6109 -77.3989 +US 21790 Tuscarora Maryland MD Frederick 021 39.2667 -77.5101 +US 21792 Unionville Maryland MD Frederick 021 39.47 -77.3921 +US 21793 Walkersville Maryland MD Frederick 021 39.4787 -77.3484 +US 21798 Woodsboro Maryland MD Frederick 021 39.5311 -77.2972 +US 21520 Accident Maryland MD Garrett 023 39.6355 -79.3085 +US 21522 Bittinger Maryland MD Garrett 023 39.6017 -79.2337 +US 21523 Bloomington Maryland MD Garrett 023 39.4861 -79.083 +US 21531 Friendsville Maryland MD Garrett 023 39.6665 -79.4219 +US 21536 Grantsville Maryland MD Garrett 023 39.6551 -79.1241 +US 21538 Kitzmiller Maryland MD Garrett 023 39.4169 -79.2222 +US 21541 Mc Henry Maryland MD Garrett 023 39.5656 -79.3823 +US 21550 Oakland Maryland MD Garrett 023 39.4339 -79.3167 +US 21561 Swanton Maryland MD Garrett 023 39.4764 -79.2402 +US 21001 Aberdeen Maryland MD Harford 025 39.5109 -76.1805 +US 21005 Aberdeen Proving Ground Maryland MD Harford 025 39.4771 -76.1208 +US 21009 Abingdon Maryland MD Harford 025 39.4744 -76.2997 +US 21010 Gunpowder Maryland MD Harford 025 39.3982 -76.2743 +US 21014 Bel Air Maryland MD Harford 025 39.5394 -76.3564 +US 21015 Bel Air Maryland MD Harford 025 39.5303 -76.3153 +US 21017 Belcamp Maryland MD Harford 025 39.4756 -76.242 +US 21018 Benson Maryland MD Harford 025 39.5093 -76.3851 +US 21024 Cardiff Maryland MD Harford County 025 39.7172 -76.3378 +US 21028 Churchville Maryland MD Harford 025 39.5648 -76.249 +US 21034 Darlington Maryland MD Harford 025 39.654 -76.2278 +US 21040 Edgewood Maryland MD Harford 025 39.4277 -76.3055 +US 21047 Fallston Maryland MD Harford 025 39.527 -76.4328 +US 21050 Forest Hill Maryland MD Harford 025 39.5755 -76.4008 +US 21078 Havre De Grace Maryland MD Harford 025 39.5523 -76.1171 +US 21084 Jarrettsville Maryland MD Harford 025 39.6162 -76.4684 +US 21085 Joppa Maryland MD Harford 025 39.4242 -76.3541 +US 21101 Magnolia Maryland MD Harford County 025 39.4047 -76.3248 +US 21130 Perryman Maryland MD Harford 025 39.4716 -76.2117 +US 21132 Pylesville Maryland MD Harford 025 39.6959 -76.4113 +US 21154 Street Maryland MD Harford 025 39.6574 -76.3713 +US 21160 Whiteford Maryland MD Harford 025 39.7077 -76.316 +US 21161 White Hall Maryland MD Harford 025 39.6618 -76.5666 +US 20701 Annapolis Junction Maryland MD Howard 027 39.1332 -76.7988 +US 20723 Laurel Maryland MD Howard 027 39.1208 -76.8435 +US 20759 Fulton Maryland MD Howard 027 39.1502 -76.93 +US 20763 Savage Maryland MD Howard 027 39.138 -76.8218 +US 20777 Highland Maryland MD Howard 027 39.1843 -76.9686 +US 20794 Jessup Maryland MD Howard 027 39.1484 -76.7922 +US 21029 Clarksville Maryland MD Howard 027 39.2125 -76.9515 +US 21036 Dayton Maryland MD Howard 027 39.2339 -76.9968 +US 21041 Ellicott City Maryland MD Howard 027 39.2364 -76.9419 +US 21042 Ellicott City Maryland MD Howard 027 39.2726 -76.8614 +US 21043 Ellicott City Maryland MD Howard 027 39.2548 -76.8001 +US 21044 Columbia Maryland MD Howard 027 39.2141 -76.8788 +US 21045 Columbia Maryland MD Howard 027 39.2051 -76.8322 +US 21046 Columbia Maryland MD Howard 027 39.1702 -76.8538 +US 21075 Elkridge Maryland MD Howard 027 39.2058 -76.7531 +US 21150 Simpsonville Maryland MD Howard 027 39.2364 -76.9419 +US 21723 Cooksville Maryland MD Howard 027 39.3211 -77.0051 +US 21737 Glenelg Maryland MD Howard 027 39.2546 -77.0198 +US 21738 Glenwood Maryland MD Howard 027 39.2795 -77.0148 +US 21765 Lisbon Maryland MD Howard 027 39.3378 -77.072 +US 21794 West Friendship Maryland MD Howard 027 39.2934 -76.966 +US 21610 Betterton Maryland MD Kent 029 39.3655 -76.0639 +US 21620 Chestertown Maryland MD Kent 029 39.2125 -76.0802 +US 21635 Galena Maryland MD Kent 029 39.3374 -75.8717 +US 21645 Kennedyville Maryland MD Kent 029 39.2978 -75.9818 +US 21646 Betterton Maryland MD Kent County 029 39.2952 -76.0628 +US 21650 Massey Maryland MD Kent 029 39.3126 -75.8215 +US 21651 Millington Maryland MD Kent 029 39.2743 -75.8951 +US 21661 Rock Hall Maryland MD Kent 029 39.1344 -76.2305 +US 21667 Still Pond Maryland MD Kent 029 39.3399 -76.0474 +US 21678 Worton Maryland MD Kent 029 39.2963 -76.1008 +US 20800 Suburb Maryland Fac Maryland MD Montgomery County 031 39.0984 -77.1578 +US 20810 Bethesda Maryland MD Montgomery County 031 38.9806 -77.1008 +US 20811 Bethesda Maryland MD Montgomery County 031 38.9806 -77.1008 +US 20812 Glen Echo Maryland MD Montgomery 031 38.9693 -77.1435 +US 20813 Bethesda Maryland MD Montgomery 031 39.144 -77.2076 +US 20814 Bethesda Maryland MD Montgomery 031 39.0003 -77.1022 +US 20815 Chevy Chase Maryland MD Montgomery 031 38.978 -77.082 +US 20816 Bethesda Maryland MD Montgomery 031 38.9585 -77.1153 +US 20817 Bethesda Maryland MD Montgomery 031 38.9896 -77.1538 +US 20818 Cabin John Maryland MD Montgomery 031 38.9743 -77.1591 +US 20824 Bethesda Maryland MD Montgomery 031 39.144 -77.2076 +US 20825 Chevy Chase Maryland MD Montgomery 031 39.144 -77.2076 +US 20827 Bethesda Maryland MD Montgomery 031 39.144 -77.2076 +US 20830 Olney Maryland MD Montgomery 031 39.1552 -77.0667 +US 20832 Olney Maryland MD Montgomery 031 39.1526 -77.0749 +US 20833 Brookeville Maryland MD Montgomery 031 39.1871 -77.0603 +US 20837 Poolesville Maryland MD Montgomery 031 39.1386 -77.4067 +US 20838 Barnesville Maryland MD Montgomery 031 39.2233 -77.3764 +US 20839 Beallsville Maryland MD Montgomery 031 39.1671 -77.4144 +US 20841 Boyds Maryland MD Montgomery 031 39.21 -77.3167 +US 20842 Dickerson Maryland MD Montgomery 031 39.2126 -77.4199 +US 20847 Rockville Maryland MD Montgomery 031 39.144 -77.2076 +US 20848 Rockville Maryland MD Montgomery 031 39.144 -77.2076 +US 20849 Rockville Maryland MD Montgomery 031 39.144 -77.2076 +US 20850 Rockville Maryland MD Montgomery 031 39.087 -77.168 +US 20851 Rockville Maryland MD Montgomery 031 39.0763 -77.1234 +US 20852 Rockville Maryland MD Montgomery 031 39.0496 -77.1204 +US 20853 Rockville Maryland MD Montgomery 031 39.0887 -77.095 +US 20854 Potomac Maryland MD Montgomery 031 39.0388 -77.1922 +US 20855 Derwood Maryland MD Montgomery 031 39.1345 -77.1477 +US 20857 Rockville Maryland MD Montgomery 031 39.144 -77.2076 +US 20859 Potomac Maryland MD Montgomery 031 39.144 -77.2076 +US 20860 Sandy Spring Maryland MD Montgomery 031 39.1503 -77.0291 +US 20861 Ashton Maryland MD Montgomery 031 39.151 -76.9924 +US 20862 Brinklow Maryland MD Montgomery 031 39.1838 -77.0163 +US 20866 Burtonsville Maryland MD Montgomery 031 39.0922 -76.9339 +US 20868 Spencerville Maryland MD Montgomery 031 39.1223 -76.9722 +US 20871 Clarksburg Maryland MD Montgomery 031 39.2637 -77.2736 +US 20872 Damascus Maryland MD Montgomery 031 39.2761 -77.2131 +US 20874 Germantown Maryland MD Montgomery 031 39.1355 -77.2822 +US 20875 Germantown Maryland MD Montgomery 031 39.144 -77.2076 +US 20876 Germantown Maryland MD Montgomery 031 39.188 -77.2358 +US 20877 Gaithersburg Maryland MD Montgomery 031 39.1419 -77.189 +US 20878 Gaithersburg Maryland MD Montgomery 031 39.1125 -77.2515 +US 20879 Gaithersburg Maryland MD Montgomery 031 39.173 -77.1855 +US 20880 Washington Grove Maryland MD Montgomery 031 39.1388 -77.1726 +US 20882 Gaithersburg Maryland MD Montgomery 031 39.2335 -77.1458 +US 20883 Gaithersburg Maryland MD Montgomery County 031 39.0883 -77.1568 +US 20884 Gaithersburg Maryland MD Montgomery 031 39.144 -77.2076 +US 20885 Gaithersburg Maryland MD Montgomery 031 39.1874 -77.2028 +US 20886 Montgomery Village Maryland MD Montgomery 031 39.1757 -77.1873 +US 20889 Bethesda Maryland MD Montgomery 031 39.144 -77.2076 +US 20890 Suburb Maryland Fac Maryland MD Montgomery County 031 39.0984 -77.1578 +US 20891 Kensington Maryland MD Montgomery 031 39.144 -77.2076 +US 20892 Bethesda Maryland MD Montgomery 031 39.0024 -77.1034 +US 20894 Bethesda Maryland MD Montgomery 031 39.144 -77.2076 +US 20895 Kensington Maryland MD Montgomery 031 39.0298 -77.0793 +US 20896 Garrett Park Maryland MD Montgomery 031 39.0365 -77.0931 +US 20897 Suburb Maryland Fac Maryland MD Montgomery 031 39.144 -77.2076 +US 20898 Gaithersburg Maryland MD Montgomery 031 39.144 -77.2076 +US 20899 Gaithersburg Maryland MD Montgomery 031 39.1403 -77.222 +US 20900 Silver Spring Maryland MD Montgomery County 031 39.0017 -77.0366 +US 20901 Silver Spring Maryland MD Montgomery 031 39.0191 -77.0076 +US 20902 Silver Spring Maryland MD Montgomery 031 39.04 -77.0444 +US 20903 Silver Spring Maryland MD Montgomery 031 39.0095 -76.9846 +US 20904 Silver Spring Maryland MD Montgomery 031 39.0668 -76.9969 +US 20905 Silver Spring Maryland MD Montgomery 031 39.1148 -77.0059 +US 20906 Silver Spring Maryland MD Montgomery 031 39.084 -77.0613 +US 20907 Silver Spring Maryland MD Montgomery 031 39.144 -77.2076 +US 20908 Silver Spring Maryland MD Montgomery 031 39.144 -77.2076 +US 20910 Silver Spring Maryland MD Montgomery 031 38.9982 -77.0338 +US 20911 Silver Spring Maryland MD Montgomery 031 39.144 -77.2076 +US 20912 Takoma Park Maryland MD Montgomery 031 38.9832 -77.0007 +US 20914 Silver Spring Maryland MD Montgomery 031 39.144 -77.2076 +US 20915 Silver Spring Maryland MD Montgomery 031 39.144 -77.2076 +US 20916 Silver Spring Maryland MD Montgomery 031 39.144 -77.2076 +US 20918 Silver Spring Maryland MD Montgomery 031 39.144 -77.2076 +US 20990 Silver Spring Maryland MD Montgomery County 031 38.9905 -77.0262 +US 20993 Silver Spring Maryland MD Montgomery County 031 39.0336 -76.9861 +US 20997 Silver Spring Maryland MD Montgomery 031 39.144 -77.2076 +US 20607 Accokeek Maryland MD Prince George's 033 38.672 -77.0162 +US 20608 Aquasco Maryland MD Prince George's 033 38.5825 -76.7149 +US 20613 Brandywine Maryland MD Prince George's 033 38.6922 -76.832 +US 20623 Cheltenham Maryland MD Prince George's 033 38.7531 -76.8369 +US 20697 Southern Md Facility Maryland MD Prince George's 033 38.8336 -76.8777 +US 20703 Lanham Maryland MD Prince George's 033 38.8336 -76.8777 +US 20704 Beltsville Maryland MD Prince George's 033 38.8336 -76.8777 +US 20705 Beltsville Maryland MD Prince George's 033 39.0455 -76.9242 +US 20706 Lanham Maryland MD Prince George's 033 38.9675 -76.8551 +US 20707 Laurel Maryland MD Prince George's 033 39.1077 -76.872 +US 20708 Laurel Maryland MD Prince George's 033 39.0499 -76.8345 +US 20709 Laurel Maryland MD Prince George's 033 38.8336 -76.8777 +US 20710 Bladensburg Maryland MD Prince George's 033 38.9421 -76.9261 +US 20712 Mount Rainier Maryland MD Prince George's 033 38.9431 -76.9652 +US 20715 Bowie Maryland MD Prince George's 033 38.9797 -76.7435 +US 20716 Bowie Maryland MD Prince George's 033 38.9263 -76.7098 +US 20717 Bowie Maryland MD Prince George's 033 38.8336 -76.8777 +US 20718 Bowie Maryland MD Prince George's 033 38.8336 -76.8777 +US 20719 Bowie Maryland MD Prince George's 033 38.8336 -76.8777 +US 20720 Bowie Maryland MD Prince George's 033 38.9885 -76.791 +US 20721 Bowie Maryland MD Prince George's 033 38.9194 -76.7871 +US 20722 Brentwood Maryland MD Prince George's 033 38.9407 -76.9531 +US 20725 Laurel Maryland MD Prince George's 033 38.8336 -76.8777 +US 20726 Laurel Maryland MD Prince George's 033 38.8336 -76.8777 +US 20731 Capitol Heights Maryland MD Prince George's 033 38.8336 -76.8777 +US 20735 Clinton Maryland MD Prince George's 033 38.7549 -76.9026 +US 20737 Riverdale Maryland MD Prince George's 033 38.9601 -76.9147 +US 20738 Riverdale Maryland MD Prince George's 033 38.8336 -76.8777 +US 20740 College Park Maryland MD Prince George's 033 38.9963 -76.9299 +US 20741 College Park Maryland MD Prince George's 033 38.8336 -76.8777 +US 20742 College Park Maryland MD Prince George's 033 38.9896 -76.9457 +US 20743 Capitol Heights Maryland MD Prince George's 033 38.8897 -76.8925 +US 20744 Fort Washington Maryland MD Prince George's 033 38.7587 -76.9835 +US 20745 Oxon Hill Maryland MD Prince George's 033 38.8108 -76.9898 +US 20746 Suitland Maryland MD Prince George's 033 38.8425 -76.9222 +US 20747 District Heights Maryland MD Prince George's 033 38.8539 -76.8891 +US 20748 Temple Hills Maryland MD Prince George's 033 38.8222 -76.9478 +US 20749 Fort Washington Maryland MD Prince George's 033 38.8336 -76.8777 +US 20750 Oxon Hill Maryland MD Prince George's 033 38.8336 -76.8777 +US 20752 Suitland Maryland MD Prince George's 033 38.8336 -76.8777 +US 20753 District Heights Maryland MD Prince George's 033 38.8336 -76.8777 +US 20757 Temple Hills Maryland MD Prince George's 033 38.8336 -76.8777 +US 20762 Andrews Air Force Base Maryland MD Prince George's 033 38.8062 -76.8756 +US 20768 Greenbelt Maryland MD Prince George's 033 38.8336 -76.8777 +US 20769 Glenn Dale Maryland MD Prince George's 033 38.9766 -76.8053 +US 20770 Greenbelt Maryland MD Prince George's 033 38.9996 -76.884 +US 20771 Greenbelt Maryland MD Prince George's 033 38.8336 -76.8777 +US 20772 Upper Marlboro Maryland MD Prince George's 033 38.8377 -76.798 +US 20773 Upper Marlboro Maryland MD Prince George's 033 38.8336 -76.8777 +US 20774 Upper Marlboro Maryland MD Prince George's 033 38.8682 -76.8156 +US 20775 Upper Marlboro Maryland MD Prince George's 033 38.8336 -76.8777 +US 20780 Hyattsville Maryland MD Prince George's County 033 38.9558 -76.9457 +US 20781 Hyattsville Maryland MD Prince George's 033 38.9506 -76.9347 +US 20782 Hyattsville Maryland MD Prince George's 033 38.9647 -76.9649 +US 20783 Hyattsville Maryland MD Prince George's 033 39.0005 -76.9723 +US 20784 Hyattsville Maryland MD Prince George's 033 38.9513 -76.8958 +US 20785 Hyattsville Maryland MD Prince George's 033 38.9223 -76.8755 +US 20787 Hyattsville Maryland MD Prince George's 033 38.9871 -76.9824 +US 20788 Hyattsville Maryland MD Prince George's 033 38.9694 -76.9509 +US 20789 Hyattsville Maryland MD Prince George's County 033 38.9385 -76.9109 +US 20790 Capitol Heights Maryland MD Prince George's 033 38.8336 -76.8777 +US 20791 Capitol Heights Maryland MD Prince George's 033 38.8336 -76.8777 +US 20792 Upper Marlboro Maryland MD Prince Georges 033 38.8158 -76.75 +US 20797 Southern Md Facility Maryland MD Prince George's 033 38.8336 -76.8777 +US 20799 Capitol Heights Maryland MD Prince George's 033 38.8336 -76.8777 +US 20913 Takoma Park Maryland MD Prince George's 033 38.8336 -76.8777 +US 21607 Barclay Maryland MD Queen Anne's 035 39.1299 -75.8601 +US 21617 Centreville Maryland MD Queen Anne's 035 39.0564 -76.045 +US 21619 Chester Maryland MD Queen Anne's 035 38.9583 -76.2842 +US 21623 Church Hill Maryland MD Queen Anne's 035 39.146 -75.988 +US 21628 Crumpton Maryland MD Queen Anne's 035 39.233 -75.9195 +US 21638 Grasonville Maryland MD Queen Anne's 035 38.9456 -76.1997 +US 21644 Ingleside Maryland MD Queen Anne's 035 39.1182 -75.8769 +US 21656 Price Maryland MD Queen Anne's 035 39.0346 -76.0921 +US 21657 Queen Anne Maryland MD Queen Anne's 035 38.9456 -75.9777 +US 21658 Queenstown Maryland MD Queen Anne's 035 39.0025 -76.1424 +US 21666 Stevensville Maryland MD Queen Anne's 035 38.9394 -76.3371 +US 21668 Sudlersville Maryland MD Queen Anne's 035 39.1823 -75.85 +US 21690 Chestertown Maryland MD Queen Anne's 035 39.0346 -76.0921 +US 20606 Abell Maryland MD St. Mary's 037 38.2471 -76.7481 +US 20609 Avenue Maryland MD St. Mary's 037 38.2826 -76.7466 +US 20618 Bushwood Maryland MD St. Mary's 037 38.2844 -76.7929 +US 20619 California Maryland MD St. Mary's 037 38.3006 -76.5312 +US 20620 Callaway Maryland MD St. Mary's 037 38.2275 -76.521 +US 20621 Chaptico Maryland MD St. Mary's 037 38.351 -76.7833 +US 20622 Charlotte Hall Maryland MD St. Mary's 037 38.475 -76.8038 +US 20624 Clements Maryland MD St. Mary's 037 38.3407 -76.7264 +US 20626 Coltons Point Maryland MD St. Mary's 037 38.237 -76.7646 +US 20627 Compton Maryland MD St. Mary's 037 38.2768 -76.704 +US 20628 Dameron Maryland MD St. Mary's 037 38.1533 -76.3575 +US 20630 Drayden Maryland MD St. Mary's 037 38.1719 -76.4731 +US 20634 Great Mills Maryland MD St. Mary's 037 38.2674 -76.4954 +US 20635 Helen Maryland MD St. Mary's 037 38.3121 -76.6077 +US 20636 Hollywood Maryland MD St. Mary's 037 38.3524 -76.5626 +US 20650 Leonardtown Maryland MD St. Mary's 037 38.2774 -76.638 +US 20653 Lexington Park Maryland MD St. Mary's 037 38.2495 -76.4529 +US 20656 Loveville Maryland MD St. Mary's 037 38.3593 -76.6833 +US 20659 Mechanicsville Maryland MD St. Mary's 037 38.4293 -76.7254 +US 20660 Morganza Maryland MD St. Mary's 037 38.364 -76.6941 +US 20667 Park Hall Maryland MD St. Mary's 037 38.2177 -76.4429 +US 20670 Patuxent River Maryland MD St. Mary's 037 38.2791 -76.4381 +US 20674 Piney Point Maryland MD St. Mary's 037 38.1397 -76.5047 +US 20680 Ridge Maryland MD St. Mary's 037 38.1169 -76.3711 +US 20684 Saint Inigoes Maryland MD St. Mary's 037 38.1441 -76.4083 +US 20686 Saint Marys City Maryland MD St. Mary's 037 38.1888 -76.4207 +US 20687 Scotland Maryland MD St. Mary's 037 38.0828 -76.3477 +US 20690 Tall Timbers Maryland MD St. Mary's 037 38.1653 -76.5399 +US 20692 Valley Lee Maryland MD St. Mary's 037 38.1899 -76.5087 +US 21816 Chance Maryland MD Somerset County 039 38.1785 -75.9392 +US 21817 Crisfield Maryland MD Somerset 039 37.9845 -75.8429 +US 21820 Dames Quarter Maryland MD Somerset County 039 38.1906 -75.9001 +US 21821 Deal Island Maryland MD Somerset 039 38.1533 -75.9496 +US 21824 Ewell Maryland MD Somerset 039 37.9938 -76.0351 +US 21836 Manokin Maryland MD Somerset 039 38.0733 -75.7344 +US 21838 Marion Station Maryland MD Somerset 039 38.0266 -75.7579 +US 21853 Princess Anne Maryland MD Somerset 039 38.1919 -75.7072 +US 21857 Rehobeth Maryland MD Somerset 039 38.0927 -75.8882 +US 21866 Tylerton Maryland MD Somerset 039 37.9666 -76.0235 +US 21867 Upper Fairmount Maryland MD Somerset 039 38.1005 -75.8223 +US 21868 Upper Hill Maryland MD Somerset County 039 38.1117 -75.7906 +US 21870 Wenona Maryland MD Somerset 039 38.0927 -75.8882 +US 21871 Westover Maryland MD Somerset 039 38.101 -75.7406 +US 21890 Westover Maryland MD Somerset 039 38.0927 -75.8882 +US 21601 Easton Maryland MD Talbot 041 38.7768 -76.0758 +US 21606 Easton Maryland MD Talbot 041 38.7585 -76.1802 +US 21612 Bozman Maryland MD Talbot 041 38.7515 -76.2764 +US 21624 Claiborne Maryland MD Talbot 041 38.8368 -76.2714 +US 21625 Cordova Maryland MD Talbot 041 38.8704 -76.0029 +US 21647 Mcdaniel Maryland MD Talbot 041 38.8192 -76.2806 +US 21652 Neavitt Maryland MD Talbot 041 38.7951 -76.1528 +US 21653 Newcomb Maryland MD Talbot 041 38.7518 -76.178 +US 21654 Oxford Maryland MD Talbot 041 38.6864 -76.1538 +US 21662 Royal Oak Maryland MD Talbot 041 38.714 -76.2097 +US 21663 Saint Michaels Maryland MD Talbot 041 38.783 -76.2215 +US 21665 Sherwood Maryland MD Talbot 041 38.7374 -76.3278 +US 21671 Tilghman Maryland MD Talbot 041 38.7063 -76.3377 +US 21673 Trappe Maryland MD Talbot 041 38.6647 -76.0507 +US 21676 Wittman Maryland MD Talbot 041 38.7846 -76.3001 +US 21679 Wye Mills Maryland MD Talbot 041 38.9281 -76.0814 +US 21711 Big Pool Maryland MD Washington 043 39.6457 -78.0104 +US 21713 Boonsboro Maryland MD Washington 043 39.552 -77.6957 +US 21715 Brownsville Maryland MD Washington 043 39.3869 -77.658 +US 21719 Cascade Maryland MD Washington 043 39.6958 -77.4955 +US 21720 Cavetown Maryland MD Washington 043 39.6473 -77.5842 +US 21721 Chewsville Maryland MD Washington 043 39.6425 -77.6372 +US 21722 Clear Spring Maryland MD Washington 043 39.6658 -77.9064 +US 21733 Fairplay Maryland MD Washington 043 39.5594 -77.7604 +US 21734 Funkstown Maryland MD Washington 043 39.606 -77.7072 +US 21736 Gapland Maryland MD Washington 043 39.5207 -77.9162 +US 21740 Hagerstown Maryland MD Washington 043 39.632 -77.7372 +US 21741 Hagerstown Maryland MD Washington 043 39.6939 -77.7421 +US 21742 Hagerstown Maryland MD Washington 043 39.6573 -77.6921 +US 21746 Hagerstown Maryland MD Washington 043 39.5638 -77.7206 +US 21747 Hagerstown Maryland MD Washington 043 39.5207 -77.9162 +US 21748 Hagerstown Maryland MD Washington 043 39.5207 -77.9162 +US 21749 Hagerstown Maryland MD Washington 043 39.5207 -77.9162 +US 21750 Hancock Maryland MD Washington 043 39.6991 -78.1762 +US 21756 Keedysville Maryland MD Washington 043 39.4563 -77.6944 +US 21767 Maugansville Maryland MD Washington 043 39.6996 -77.7499 +US 21779 Rohrersville Maryland MD Washington 043 39.4431 -77.658 +US 21781 Saint James Maryland MD Washington 043 39.5699 -77.7607 +US 21782 Sharpsburg Maryland MD Washington 043 39.4424 -77.7511 +US 21783 Smithsburg Maryland MD Washington 043 39.647 -77.5706 +US 21795 Williamsport Maryland MD Washington 043 39.593 -77.8087 +US 21801 Salisbury Maryland MD Wicomico 045 38.3824 -75.6336 +US 21802 Salisbury Maryland MD Wicomico 045 38.3884 -75.6276 +US 21803 Salisbury Maryland MD Wicomico 045 38.3884 -75.6276 +US 21804 Salisbury Maryland MD Wicomico 045 38.3508 -75.5338 +US 21810 Allen Maryland MD Wicomico 045 38.3884 -75.6276 +US 21814 Bivalve Maryland MD Wicomico 045 38.2953 -75.8914 +US 21826 Fruitland Maryland MD Wicomico 045 38.3225 -75.6228 +US 21830 Hebron Maryland MD Wicomico 045 38.4026 -75.6963 +US 21837 Mardela Springs Maryland MD Wicomico 045 38.4864 -75.7414 +US 21840 Nanticoke Maryland MD Wicomico 045 38.2672 -75.9021 +US 21849 Parsonsburg Maryland MD Wicomico 045 38.3914 -75.4737 +US 21850 Pittsville Maryland MD Wicomico 045 38.3755 -75.4076 +US 21852 Powellville Maryland MD Wicomico 045 38.3884 -75.6276 +US 21856 Quantico Maryland MD Wicomico 045 38.3339 -75.7851 +US 21861 Sharptown Maryland MD Wicomico 045 38.5389 -75.7192 +US 21865 Tyaskin Maryland MD Wicomico 045 38.2833 -75.8465 +US 21874 Willards Maryland MD Wicomico 045 38.3939 -75.3552 +US 21875 Delmar Maryland MD Wicomico 045 38.4445 -75.5583 +US 21811 Berlin Maryland MD Worcester 047 38.3475 -75.1866 +US 21813 Bishopville Maryland MD Worcester 047 38.4296 -75.1855 +US 21822 Eden Maryland MD Worcester 047 38.217 -75.5505 +US 21829 Girdletree Maryland MD Worcester 047 38.0958 -75.3902 +US 21841 Newark Maryland MD Worcester 047 38.2489 -75.2893 +US 21842 Ocean City Maryland MD Worcester 047 38.3811 -75.1138 +US 21843 Ocean City Maryland MD Worcester 047 38.2231 -75.3241 +US 21851 Pocomoke City Maryland MD Worcester 047 38.0714 -75.555 +US 21862 Showell Maryland MD Worcester 047 38.4003 -75.2166 +US 21863 Snow Hill Maryland MD Worcester 047 38.1868 -75.405 +US 21864 Stockton Maryland MD Worcester 047 38.0452 -75.4108 +US 21872 Whaleyville Maryland MD Worcester 047 38.4121 -75.2811 +US 21201 Baltimore Maryland MD Baltimore (city) 510 39.2946 -76.6252 +US 21202 Baltimore Maryland MD Baltimore (city) 510 39.2998 -76.6075 +US 21203 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21205 Baltimore Maryland MD Baltimore (city) 510 39.3009 -76.5799 +US 21206 Baltimore Maryland MD Baltimore (city) 510 39.3365 -76.5411 +US 21209 Baltimore Maryland MD Baltimore (city) 510 39.3716 -76.6744 +US 21210 Baltimore Maryland MD Baltimore (city) 510 39.3507 -76.6321 +US 21211 Baltimore Maryland MD Baltimore (city) 510 39.3316 -76.6336 +US 21212 Baltimore Maryland MD Baltimore (city) 510 39.3626 -76.61 +US 21213 Baltimore Maryland MD Baltimore (city) 510 39.3127 -76.581 +US 21214 Baltimore Maryland MD Baltimore (city) 510 39.3521 -76.5644 +US 21215 Baltimore Maryland MD Baltimore (city) 510 39.3446 -76.6794 +US 21216 Baltimore Maryland MD Baltimore (city) 510 39.3093 -76.6699 +US 21217 Baltimore Maryland MD Baltimore (city) 510 39.3064 -76.6393 +US 21218 Baltimore Maryland MD Baltimore (city) 510 39.3265 -76.6048 +US 21223 Baltimore Maryland MD Baltimore (city) 510 39.287 -76.6476 +US 21224 Baltimore Maryland MD Baltimore (city) 510 39.2876 -76.5568 +US 21229 Baltimore Maryland MD Baltimore (city) 510 39.2856 -76.6899 +US 21230 Baltimore Maryland MD Baltimore (city) 510 39.2645 -76.6224 +US 21231 Baltimore Maryland MD Baltimore (city) 510 39.2892 -76.59 +US 21233 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21235 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21239 Baltimore Maryland MD Baltimore (city) 510 39.361 -76.5891 +US 21241 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21260 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21263 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21264 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21265 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21268 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21270 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21273 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21274 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21275 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21276 Baltimore Maryland MD City of Baltimore 510 39.291 -76.6054 +US 21278 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21279 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21280 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21281 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21283 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21287 Baltimore Maryland MD Baltimore (city) 510 39.2975 -76.5927 +US 21288 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21289 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21290 Baltimore Maryland MD Baltimore (city) 510 39.2933 -76.6238 +US 21297 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 21298 Baltimore Maryland MD Baltimore (city) 510 39.2847 -76.6205 +US 04210 Auburn Maine ME Androscoggin 001 44.0948 -70.239 +US 04211 Auburn Maine ME Androscoggin 001 44.197 -70.2395 +US 04212 Auburn Maine ME Androscoggin 001 44.197 -70.2395 +US 04222 Durham Maine ME Androscoggin 001 43.9684 -70.1846 +US 04223 Danville Maine ME Androscoggin 001 44.0239 -70.2857 +US 04228 East Livermore Maine ME Androscoggin 001 44.3994 -70.1303 +US 04230 East Poland Maine ME Androscoggin 001 44.0627 -70.327 +US 04236 Greene Maine ME Androscoggin 001 44.1891 -70.1455 +US 04240 Lewiston Maine ME Androscoggin 001 44.0985 -70.1916 +US 04241 Lewiston Maine ME Androscoggin 001 44.197 -70.2395 +US 04243 Lewiston Maine ME Androscoggin 001 44.197 -70.2395 +US 04250 Lisbon Maine ME Androscoggin 001 44.0255 -70.1139 +US 04251 Lisbon Center Maine ME Androscoggin County 001 44.0197 -70.0936 +US 04252 Lisbon Falls Maine ME Androscoggin 001 43.9978 -70.0734 +US 04253 Livermore Maine ME Androscoggin 001 44.4079 -70.215 +US 04254 Livermore Falls Maine ME Androscoggin 001 44.4325 -70.1427 +US 04256 Mechanic Falls Maine ME Androscoggin 001 44.1 -70.3682 +US 04258 Minot Maine ME Androscoggin 001 44.1461 -70.3399 +US 04263 Leeds Maine ME Androscoggin 001 44.2834 -70.1253 +US 04266 North Turner Maine ME Androscoggin 001 44.358 -70.2558 +US 04273 Poland Maine ME Androscoggin County 001 44.0631 -70.4147 +US 04274 Poland Maine ME Androscoggin 001 44.0474 -70.3899 +US 04280 Sabattus Maine ME Androscoggin 001 44.1133 -70.0748 +US 04282 Turner Maine ME Androscoggin 001 44.2557 -70.2494 +US 04283 Turner Center Maine ME Androscoggin 001 44.197 -70.2395 +US 04288 West Minot Maine ME Androscoggin 001 44.197 -70.2395 +US 04291 West Poland Maine ME Androscoggin 001 44.0409 -70.453 +US 04471 Orient Maine ME Aroostook 003 45.8911 -67.8471 +US 04497 Wytopitlock Maine ME Aroostook 003 45.6645 -68.1055 +US 04730 Houlton Maine ME Aroostook 003 46.1189 -67.863 +US 04732 Ashland Maine ME Aroostook 003 46.6184 -68.3876 +US 04733 Benedicta Maine ME Aroostook 003 45.8125 -68.4089 +US 04734 Blaine Maine ME Aroostook 003 46.5162 -68.8868 +US 04735 Bridgewater Maine ME Aroostook 003 46.4222 -67.8415 +US 04736 Caribou Maine ME Aroostook 003 46.8706 -68.0204 +US 04737 Clayton Lake Maine ME Aroostook 003 46.5162 -68.8868 +US 04738 Crouseville Maine ME Aroostook 003 46.5162 -68.8868 +US 04739 Eagle Lake Maine ME Aroostook 003 47.01 -68.691 +US 04740 Easton Maine ME Aroostook 003 46.6357 -67.9018 +US 04741 Estcourt Station Maine ME Aroostook 003 46.5162 -68.8868 +US 04742 Fort Fairfield Maine ME Aroostook 003 46.7623 -67.8402 +US 04743 Fort Kent Maine ME Aroostook 003 47.0565 -68.2559 +US 04744 Fort Kent Mills Maine ME Aroostook 003 46.5162 -68.8868 +US 04745 Frenchville Maine ME Aroostook 003 47.2826 -68.3917 +US 04746 Grand Isle Maine ME Aroostook 003 47.3044 -68.1542 +US 04747 Island Falls Maine ME Aroostook 003 46.0169 -68.2667 +US 04750 Limestone Maine ME Aroostook 003 46.9248 -67.8451 +US 04751 Limestone Maine ME Aroostook 003 46.8929 -67.9643 +US 04756 Madawaska Maine ME Aroostook 003 47.3294 -68.3328 +US 04757 Mapleton Maine ME Aroostook 003 46.6746 -68.1536 +US 04758 Mars Hill Maine ME Aroostook 003 46.5223 -67.863 +US 04759 Masardis Maine ME Aroostook 003 46.5162 -68.8868 +US 04760 Monticello Maine ME Aroostook 003 46.3007 -67.8414 +US 04761 New Limerick Maine ME Aroostook 003 46.1004 -68.0034 +US 04762 New Sweden Maine ME Aroostook 003 46.9559 -68.1154 +US 04763 Oakfield Maine ME Aroostook 003 46.1088 -68.1298 +US 04764 Oxbow Maine ME Aroostook 003 46.402 -68.5218 +US 04766 Perham Maine ME Aroostook 003 46.8816 -68.2391 +US 04768 Portage Maine ME Aroostook 003 46.7753 -68.4877 +US 04769 Presque Isle Maine ME Aroostook 003 46.6842 -68.0118 +US 04770 Quimby Maine ME Aroostook 003 46.5162 -68.8868 +US 04772 Saint Agatha Maine ME Aroostook 003 47.2387 -68.3232 +US 04773 Saint David Maine ME Aroostook 003 47.3343 -68.2314 +US 04774 Saint Francis Maine ME Aroostook 003 47.1407 -68.9503 +US 04775 Sheridan Maine ME Aroostook 003 46.5162 -68.8868 +US 04776 Sherman Mills Maine ME Aroostook 003 45.8777 -68.3696 +US 04779 Sinclair Maine ME Aroostook 003 47.1222 -68.323 +US 04780 Smyrna Mills Maine ME Aroostook 003 46.1464 -68.2064 +US 04781 Soldier Pond Maine ME Aroostook 003 47.1515 -68.5981 +US 04783 Stockholm Maine ME Aroostook 003 47.0643 -68.2086 +US 04784 Upper Frenchville Maine ME Aroostook County 003 47.28 -68.4248 +US 04785 Van Buren Maine ME Aroostook 003 47.1589 -67.9459 +US 04786 Washburn Maine ME Aroostook 003 46.7883 -68.1338 +US 04787 Westfield Maine ME Aroostook 003 46.5945 -67.9302 +US 04788 Winterville Maine ME Aroostook 003 46.5162 -68.8868 +US 04003 Bailey Island Maine ME Cumberland 005 43.7341 -69.9952 +US 04009 Bridgton Maine ME Cumberland 005 44.052 -70.7241 +US 04011 Brunswick Maine ME Cumberland 005 43.8973 -69.9779 +US 04013 Bustins Island Maine ME Cumberland 005 44.4081 -70.4707 +US 04015 Casco Maine ME Cumberland 005 43.9596 -70.526 +US 04017 Chebeague Island Maine ME Cumberland 005 43.7354 -70.1169 +US 04019 Cliff Island Maine ME Cumberland 005 43.6955 -70.1071 +US 04021 Cumberland Center Maine ME Cumberland 005 43.7974 -70.2649 +US 04024 East Baldwin Maine ME Cumberland 005 43.8646 -70.6922 +US 04029 Sebago Maine ME Cumberland 005 43.9017 -70.6878 +US 04032 Freeport Maine ME Cumberland 005 43.857 -70.1031 +US 04033 Freeport Maine ME Cumberland 005 43.857 -70.1031 +US 04034 Freeport Maine ME Cumberland 005 43.857 -70.1031 +US 04038 Gorham Maine ME Cumberland 005 43.6843 -70.468 +US 04039 Gray Maine ME Cumberland 005 43.8942 -70.3429 +US 04040 Harrison Maine ME Cumberland 005 44.1071 -70.6539 +US 04050 Long Island Maine ME Cumberland 005 43.692 -70.1551 +US 04053 Merepoint Maine ME Cumberland 005 44.4081 -70.4707 +US 04055 Naples Maine ME Cumberland 005 43.9681 -70.5988 +US 04057 North Bridgton Maine ME Cumberland 005 44.4081 -70.4707 +US 04058 North Fryeburg Maine ME Cumberland County 005 44.1341 -70.9821 +US 04062 Windham Maine ME Cumberland 005 43.7958 -70.4143 +US 04066 Orrs Island Maine ME Cumberland 005 43.7727 -69.9668 +US 04067 Pejepscot Maine ME Cumberland County 005 43.9627 -69.9731 +US 04069 Pownal Maine ME Cumberland 005 43.89 -70.1955 +US 04070 Scarborough Maine ME Cumberland 005 43.577 -70.2736 +US 04071 Raymond Maine ME Cumberland 005 43.9219 -70.4498 +US 04074 Scarborough Maine ME Cumberland 005 43.5835 -70.3457 +US 04075 Sebago Lake Maine ME Cumberland 005 43.7961 -70.5522 +US 04077 South Casco Maine ME Cumberland 005 43.91 -70.5245 +US 04078 South Freeport Maine ME Cumberland 005 43.8208 -70.1208 +US 04079 Harpswell Maine ME Cumberland 005 43.7811 -69.9955 +US 04082 South Windham Maine ME Cumberland 005 44.4081 -70.4707 +US 04084 Standish Maine ME Cumberland 005 43.8142 -70.4807 +US 04085 Steep Falls Maine ME Cumberland 005 43.7719 -70.6396 +US 04091 West Baldwin Maine ME Cumberland 005 43.8299 -70.749 +US 04092 Westbrook Maine ME Cumberland 005 43.6843 -70.358 +US 04096 Yarmouth Maine ME Cumberland 005 43.8009 -70.175 +US 04097 North Yarmouth Maine ME Cumberland 005 43.838 -70.2001 +US 04098 Westbrook Maine ME Cumberland 005 44.4081 -70.4707 +US 04101 Portland Maine ME Cumberland 005 43.6606 -70.2589 +US 04102 Portland Maine ME Cumberland 005 43.6602 -70.2898 +US 04103 Portland Maine ME Cumberland 005 43.6876 -70.2876 +US 04104 Portland Maine ME Cumberland 005 43.8465 -70.4648 +US 04105 Falmouth Maine ME Cumberland 005 43.734 -70.2625 +US 04106 South Portland Maine ME Cumberland 005 43.6318 -70.2709 +US 04107 Cape Elizabeth Maine ME Cumberland 005 43.6017 -70.2301 +US 04108 Peaks Island Maine ME Cumberland 005 43.6589 -70.194 +US 04109 Portland Maine ME Cumberland 005 43.6783 -70.1987 +US 04110 Cumberland Foreside Maine ME Cumberland 005 43.759 -70.1993 +US 04112 Portland Maine ME Cumberland 005 44.4081 -70.4707 +US 04116 South Portland Maine ME Cumberland 005 44.4081 -70.4707 +US 04122 Portland Maine ME Cumberland 005 44.4081 -70.4707 +US 04123 Portland Maine ME Cumberland 005 44.4081 -70.4707 +US 04124 Portland Maine ME Cumberland 005 44.4081 -70.4707 +US 04260 New Gloucester Maine ME Cumberland 005 43.9608 -70.2974 +US 04225 Dryden Maine ME Franklin 007 44.6027 -70.2265 +US 04227 East Dixfield Maine ME Franklin 007 44.5791 -70.3263 +US 04234 East Wilton Maine ME Franklin 007 44.6175 -70.182 +US 04235 Frye Maine ME Franklin County 007 44.5995 -70.5653 +US 04239 Jay Maine ME Franklin 007 44.516 -70.2099 +US 04262 North Jay Maine ME Franklin 007 45.0634 -70.3816 +US 04285 Weld Maine ME Franklin 007 44.7016 -70.4249 +US 04294 Wilton Maine ME Franklin 007 44.5911 -70.2961 +US 04361 Weeks Mills Maine ME Franklin County 007 44.4065 -69.5423 +US 04749 Lille Maine ME Franklin County 007 47.2636 -68.1104 +US 04936 Eustis Maine ME Franklin 007 45.3356 -70.6283 +US 04938 Farmington Maine ME Franklin 007 44.6653 -70.1329 +US 04940 Farmington Falls Maine ME Franklin 007 44.6226 -70.0752 +US 04947 Kingfield Maine ME Franklin 007 44.9854 -70.1832 +US 04955 New Sharon Maine ME Franklin 007 44.6458 -70.0139 +US 04956 New Vineyard Maine ME Franklin 007 44.7967 -70.122 +US 04964 Oquossoc Maine ME Franklin 007 45.0634 -70.3816 +US 04966 Phillips Maine ME Franklin 007 44.8375 -70.3601 +US 04970 Rangeley Maine ME Franklin 007 44.9631 -70.6658 +US 04982 Stratton Maine ME Franklin 007 45.1116 -70.423 +US 04983 Strong Maine ME Franklin 007 44.8224 -70.2221 +US 04984 Temple Maine ME Franklin 007 44.6954 -70.2426 +US 04992 West Farmington Maine ME Franklin 007 44.6628 -70.153 +US 04408 Aurora Maine ME Hancock 009 44.8861 -68.2959 +US 04416 Bucksport Maine ME Hancock 009 44.6015 -68.7768 +US 04420 Castine Maine ME Hancock 009 44.413 -68.798 +US 04421 Castine Maine ME Hancock 009 44.4156 -68.7929 +US 04431 East Orland Maine ME Hancock 009 44.5612 -68.6647 +US 04472 Orland Maine ME Hancock 009 44.5458 -68.7313 +US 04476 Penobscot Maine ME Hancock 009 44.4344 -68.7574 +US 04605 Ellsworth Maine ME Hancock 009 44.5548 -68.4121 +US 04607 Gouldsboro Maine ME Hancock 009 44.4731 -68.0899 +US 04608 Atlantic Maine ME Hancock County 009 44.1716 -68.4245 +US 04609 Bar Harbor Maine ME Hancock 009 44.3738 -68.2448 +US 04612 Bernard Maine ME Hancock 009 44.2415 -68.358 +US 04613 Birch Harbor Maine ME Hancock 009 44.3842 -68.0317 +US 04614 Blue Hill Maine ME Hancock 009 44.4343 -68.5885 +US 04615 Blue Hill Falls Maine ME Hancock 009 44.6419 -68.3915 +US 04616 Brooklin Maine ME Hancock 009 44.2541 -68.5565 +US 04617 Brooksville Maine ME Hancock 009 44.3756 -68.7313 +US 04624 Corea Maine ME Hancock 009 44.4053 -67.985 +US 04625 Cranberry Isles Maine ME Hancock 009 44.6419 -68.3915 +US 04627 Deer Isle Maine ME Hancock 009 44.234 -68.6448 +US 04629 East Blue Hill Maine ME Hancock 009 44.6419 -68.3915 +US 04634 Franklin Maine ME Hancock 009 44.6087 -68.2417 +US 04635 Frenchboro Maine ME Hancock 009 44.6419 -68.3915 +US 04640 Hancock Maine ME Hancock 009 44.5046 -68.2402 +US 04642 Harborside Maine ME Hancock 009 44.334 -68.8042 +US 04644 Hulls Cove Maine ME Hancock 009 44.6419 -68.3915 +US 04646 Islesford Maine ME Hancock 009 44.6419 -68.3915 +US 04650 Little Deer Isle Maine ME Hancock 009 44.2847 -68.7058 +US 04653 Bass Harbor Maine ME Hancock 009 44.6419 -68.3915 +US 04656 Manset Maine ME Hancock 009 44.6419 -68.3915 +US 04659 Minturn Maine ME Hancock County 009 44.1375 -68.4353 +US 04660 Mount Desert Maine ME Hancock 009 44.3347 -68.3087 +US 04661 North Brooklin Maine ME Hancock County 009 44.3032 -68.5727 +US 04662 Northeast Harbor Maine ME Hancock 009 44.2941 -68.2849 +US 04664 Sullivan Maine ME Hancock 009 44.5458 -68.1279 +US 04665 Otter Creek Maine ME Hancock 009 44.6419 -68.3915 +US 04669 Prospect Harbor Maine ME Hancock 009 44.411 -68.0141 +US 04672 Salsbury Cove Maine ME Hancock 009 44.4135 -68.2518 +US 04673 Sargentville Maine ME Hancock 009 44.3136 -68.6863 +US 04674 Seal Cove Maine ME Hancock 009 44.6419 -68.3915 +US 04675 Seal Harbor Maine ME Hancock 009 44.299 -68.2463 +US 04676 Sedgwick Maine ME Hancock 009 44.3355 -68.6377 +US 04677 Sorrento Maine ME Hancock 009 44.4907 -68.1787 +US 04678 South Gouldsboro Maine ME Hancock County 009 44.4716 -68.0304 +US 04679 Southwest Harbor Maine ME Hancock 009 44.2823 -68.3265 +US 04681 Stonington Maine ME Hancock 009 44.1752 -68.6746 +US 04683 Sunset Maine ME Hancock 009 44.6419 -68.3915 +US 04684 Surry Maine ME Hancock 009 44.4883 -68.5063 +US 04685 Swans Island Maine ME Hancock 009 44.2131 -68.3965 +US 04690 West Tremont Maine ME Hancock 009 44.6419 -68.3915 +US 04693 Winter Harbor Maine ME Hancock 009 44.39 -68.0843 +US 04259 Monmouth Maine ME Kennebec 011 44.2208 -70.0263 +US 04265 North Monmouth Maine ME Kennebec 011 44.2753 -70.0367 +US 04284 Wayne Maine ME Kennebec 011 44.3493 -70.0712 +US 04330 Augusta Maine ME Kennebec 011 44.3232 -69.7665 +US 04332 Augusta Maine ME Kennebec 011 44.4141 -69.7519 +US 04333 Augusta Maine ME Kennebec 011 44.4141 -69.7519 +US 04336 Augusta Maine ME Kennebec 011 44.3157 -69.818 +US 04338 Augusta Maine ME Kennebec 011 44.4141 -69.7519 +US 04343 East Winthrop Maine ME Kennebec 011 44.4141 -69.7519 +US 04344 Farmingdale Maine ME Kennebec 011 44.2523 -69.7913 +US 04345 Gardiner Maine ME Kennebec 011 44.207 -69.7858 +US 04346 Randolph Maine ME Kennebec 011 44.2347 -69.7506 +US 04347 Hallowell Maine ME Kennebec 011 44.2864 -69.8057 +US 04349 Kents Hill Maine ME Kennebec 011 44.4383 -70.0748 +US 04350 Litchfield Maine ME Kennebec 011 44.1634 -69.9581 +US 04351 Manchester Maine ME Kennebec 011 44.358 -69.867 +US 04352 Mount Vernon Maine ME Kennebec 011 44.4993 -69.9903 +US 04355 Readfield Maine ME Kennebec 011 44.4032 -69.9506 +US 04358 South China Maine ME Kennebec 011 44.3953 -69.5804 +US 04359 South Gardiner Maine ME Kennebec 011 44.1833 -69.7772 +US 04360 Vienna Maine ME Kennebec 011 44.5475 -70.003 +US 04363 Windsor Maine ME Kennebec 011 44.3009 -69.5806 +US 04364 Winthrop Maine ME Kennebec 011 44.3229 -69.9576 +US 04901 Waterville Maine ME Kennebec 011 44.5543 -69.6178 +US 04903 Waterville Maine ME Kennebec 011 44.5492 -69.7132 +US 04910 Albion Maine ME Kennebec 011 44.5355 -69.4683 +US 04917 Belgrade Maine ME Kennebec 011 44.4688 -69.8606 +US 04918 Belgrade Lakes Maine ME Kennebec 011 44.4141 -69.7519 +US 04926 China Maine ME Kennebec 011 44.3912 -69.5383 +US 04927 Clinton Maine ME Kennebec 011 44.644 -69.5284 +US 04935 East Vassalboro Maine ME Kennebec 011 44.4141 -69.7519 +US 04962 North Vassalboro Maine ME Kennebec 011 44.4777 -69.5781 +US 04963 Oakland Maine ME Kennebec 011 44.5173 -69.7401 +US 04989 Vassalboro Maine ME Kennebec 011 44.4405 -69.6519 +US 04547 Friendship Maine ME Knox 013 43.9807 -69.3349 +US 04563 Cushing Maine ME Knox 013 43.9867 -69.2721 +US 04574 Washington Maine ME Knox 013 44.2693 -69.3842 +US 04645 Isle Au Haut Maine ME Knox 013 44.0561 -68.6206 +US 04841 Rockland Maine ME Knox 013 44.1123 -69.1139 +US 04843 Camden Maine ME Knox 013 44.2137 -69.0767 +US 04846 Glen Cove Maine ME Knox 013 44.131 -69.0911 +US 04847 Hope Maine ME Knox 013 44.2589 -69.1467 +US 04851 Matinicus Maine ME Knox 013 44.0322 -69.148 +US 04853 North Haven Maine ME Knox 013 44.1436 -68.8667 +US 04854 Owls Head Maine ME Knox 013 44.0732 -69.0894 +US 04855 Port Clyde Maine ME Knox 013 44.0322 -69.148 +US 04856 Rockport Maine ME Knox 013 44.1888 -69.0901 +US 04857 Saint George Maine ME Knox 013 43.9987 -69.202 +US 04858 South Thomaston Maine ME Knox 013 44.0378 -69.1359 +US 04859 Spruce Head Maine ME Knox 013 44.0104 -69.1707 +US 04860 Tenants Harbor Maine ME Knox 013 43.9555 -69.2315 +US 04861 Thomaston Maine ME Knox 013 44.0846 -69.1888 +US 04862 Union Maine ME Knox 013 44.2619 -69.2771 +US 04863 Vinalhaven Maine ME Knox 013 44.0397 -68.8368 +US 04864 Warren Maine ME Knox 013 44.1271 -69.2479 +US 04865 West Rockport Maine ME Knox 013 44.1924 -69.1211 +US 04341 Coopers Mills Maine ME Lincoln 015 44.2588 -69.551 +US 04342 Dresden Maine ME Lincoln 015 44.0785 -69.7457 +US 04348 Jefferson Maine ME Lincoln 015 44.2204 -69.5133 +US 04353 Whitefield Maine ME Lincoln 015 44.1884 -69.5751 +US 04535 Alna Maine ME Lincoln 015 44.0878 -69.6344 +US 04536 Bayville Maine ME Lincoln 015 44.0213 -69.5233 +US 04537 Boothbay Maine ME Lincoln 015 43.8945 -69.6273 +US 04538 Boothbay Harbor Maine ME Lincoln 015 43.8518 -69.6278 +US 04539 Bristol Maine ME Lincoln 015 43.9519 -69.4954 +US 04541 Chamberlain Maine ME Lincoln 015 43.8843 -69.4792 +US 04543 Damariscotta Maine ME Lincoln 015 44.0293 -69.5042 +US 04544 East Boothbay Maine ME Lincoln 015 43.8262 -69.5939 +US 04549 Isle Of Springs Maine ME Lincoln 015 44.0213 -69.5233 +US 04551 Bremen Maine ME Lincoln 015 44.0104 -69.4402 +US 04552 Newagen Maine ME Lincoln 015 44.0213 -69.5233 +US 04553 Newcastle Maine ME Lincoln 015 44.0499 -69.5331 +US 04554 New Harbor Maine ME Lincoln 015 43.8605 -69.5079 +US 04555 Nobleboro Maine ME Lincoln 015 44.0943 -69.4828 +US 04556 Edgecomb Maine ME Lincoln 015 43.9792 -69.6197 +US 04558 Pemaquid Maine ME Lincoln 015 43.8924 -69.5289 +US 04564 Round Pond Maine ME Lincoln 015 43.925 -69.4662 +US 04568 South Bristol Maine ME Lincoln 015 43.8677 -69.5614 +US 04570 Squirrel Island Maine ME Lincoln 015 44.0213 -69.5233 +US 04571 Trevett Maine ME Lincoln 015 43.8826 -69.6801 +US 04572 Waldoboro Maine ME Lincoln 015 44.1046 -69.3745 +US 04573 Walpole Maine ME Lincoln 015 43.9462 -69.5516 +US 04575 West Boothbay Harbor Maine ME Lincoln 015 43.8545 -69.6608 +US 04576 Southport Maine ME Lincoln 015 43.8199 -69.6626 +US 04578 Wiscasset Maine ME Lincoln 015 44.0074 -69.6826 +US 04638 Grove Maine ME Lincoln County 015 45 -67.4328 +US 04852 Monhegan Maine ME Lincoln 015 43.7642 -69.3164 +US 04010 Brownfield Maine ME Oxford 017 43.9713 -70.9032 +US 04016 Center Lovell Maine ME Oxford 017 44.181 -70.8917 +US 04022 Denmark Maine ME Oxford 017 43.9755 -70.7924 +US 04037 Fryeburg Maine ME Oxford 017 44.0313 -70.9668 +US 04041 Hiram Maine ME Oxford 017 43.8622 -70.8531 +US 04051 Lovell Maine ME Oxford 017 44.1614 -70.93 +US 04068 Porter Maine ME Oxford 017 43.8262 -70.9243 +US 04080 South Hiram Maine ME Oxford County 017 43.8772 -70.8351 +US 04081 South Waterford Maine ME Oxford 017 44.5662 -70.6616 +US 04088 Waterford Maine ME Oxford 017 44.1931 -70.7163 +US 04216 Andover Maine ME Oxford 017 44.6637 -70.7967 +US 04217 Bethel Maine ME Oxford 017 44.4162 -70.8037 +US 04219 Bryant Pond Maine ME Oxford 017 44.3957 -70.6435 +US 04220 Buckfield Maine ME Oxford 017 44.2877 -70.3683 +US 04221 Canton Maine ME Oxford 017 44.4602 -70.2998 +US 04224 Dixfield Maine ME Oxford 017 44.5548 -70.4241 +US 04226 East Andover Maine ME Oxford 017 44.6084 -70.6993 +US 04231 Stoneham Maine ME Oxford 017 44.2641 -70.8875 +US 04233 East Waterford Maine ME Oxford County 017 44.2076 -70.7205 +US 04237 Hanover Maine ME Oxford 017 44.4959 -70.7167 +US 04238 Hebron Maine ME Oxford 017 44.2021 -70.3754 +US 04255 Locke Mills Maine ME Oxford 017 44.4016 -70.7088 +US 04257 Mexico Maine ME Oxford 017 44.5628 -70.5358 +US 04261 Newry Maine ME Oxford 017 44.6895 -71.0112 +US 04267 North Waterford Maine ME Oxford 017 44.5662 -70.6616 +US 04268 Norway Maine ME Oxford 017 44.2127 -70.5601 +US 04270 Oxford Maine ME Oxford 017 44.1118 -70.5098 +US 04271 Paris Maine ME Oxford 017 44.2641 -70.4985 +US 04275 Roxbury Maine ME Oxford 017 44.6566 -70.6092 +US 04276 Rumford Maine ME Oxford 017 44.5434 -70.5645 +US 04278 Rumford Center Maine ME Oxford 017 44.377 -70.568 +US 04279 Rumford Point Maine ME Oxford County 017 44.557 -70.7019 +US 04281 South Paris Maine ME Oxford 017 44.2167 -70.5012 +US 04286 West Bethel Maine ME Oxford 017 44.4021 -70.8601 +US 04289 West Paris Maine ME Oxford 017 44.3253 -70.5732 +US 04290 Peru Maine ME Oxford 017 44.4944 -70.4435 +US 04292 Sumner Maine ME Oxford 017 44.374 -70.4469 +US 04401 Bangor Maine ME Penobscot 019 44.8242 -68.7918 +US 04402 Bangor Maine ME Penobscot 019 45.5199 -68.6474 +US 04410 Bradford Maine ME Penobscot 019 45.0855 -68.9235 +US 04411 Bradley Maine ME Penobscot 019 44.9015 -68.6263 +US 04412 Brewer Maine ME Penobscot 019 44.7874 -68.7539 +US 04417 Burlington Maine ME Penobscot 019 45.2349 -68.379 +US 04418 Cardville Maine ME Penobscot 019 45.0776 -68.6033 +US 04419 Carmel Maine ME Penobscot 019 44.8053 -68.9942 +US 04422 Charleston Maine ME Penobscot 019 45.067 -69.0869 +US 04423 Costigan Maine ME Penobscot 019 45.0395 -68.5292 +US 04427 Corinth Maine ME Penobscot 019 44.9805 -69.0109 +US 04428 Eddington Maine ME Penobscot 019 44.7917 -68.5777 +US 04429 Holden Maine ME Penobscot 019 44.7208 -68.6165 +US 04430 East Millinocket Maine ME Penobscot 019 45.63 -68.5728 +US 04433 Enfield Maine ME Penobscot County 019 45.2656 -68.5905 +US 04434 Etna Maine ME Penobscot 019 44.7932 -69.1322 +US 04435 Exeter Maine ME Penobscot 019 44.9679 -69.1079 +US 04444 Hampden Maine ME Penobscot 019 44.7411 -68.8731 +US 04448 Howland Maine ME Penobscot 019 45.2456 -68.6666 +US 04449 Hudson Maine ME Penobscot 019 44.9914 -68.8878 +US 04450 Kenduskeag Maine ME Penobscot 019 44.9183 -68.9342 +US 04451 Kingman Maine ME Penobscot 019 45.5984 -68.2366 +US 04453 Lagrange Maine ME Penobscot 019 45.1789 -68.8345 +US 04455 Lee Maine ME Penobscot 019 45.3635 -68.2909 +US 04456 Levant Maine ME Penobscot 019 44.8843 -68.9837 +US 04457 Lincoln Maine ME Penobscot 019 45.3508 -68.5077 +US 04459 Mattawamkeag Maine ME Penobscot 019 45.5264 -68.352 +US 04460 Medway Maine ME Penobscot 019 45.607 -68.5227 +US 04461 Milford Maine ME Penobscot 019 44.9393 -68.6296 +US 04462 Millinocket Maine ME Penobscot 019 45.6596 -68.7101 +US 04467 Olamon Maine ME Penobscot 019 45.5199 -68.6474 +US 04468 Old Town Maine ME Penobscot 019 44.943 -68.675 +US 04469 Orono Maine ME Penobscot 019 45.0028 -68.6334 +US 04473 Orono Maine ME Penobscot 019 44.8865 -68.7172 +US 04474 Orrington Maine ME Penobscot 019 44.7263 -68.7876 +US 04475 Passadumkeag Maine ME Penobscot 019 45.1815 -68.5871 +US 04487 Springfield Maine ME Penobscot 019 45.4264 -68.1108 +US 04488 Stetson Maine ME Penobscot 019 44.8843 -69.1069 +US 04489 Stillwater Maine ME Penobscot 019 44.9224 -68.6868 +US 04493 West Enfield Maine ME Penobscot 019 45.2378 -68.5338 +US 04495 Winn Maine ME Penobscot 019 45.4568 -68.3575 +US 04765 Patten Maine ME Penobscot 019 46.0132 -68.4647 +US 04777 Sherman Station Maine ME Penobscot 019 45.8859 -68.4618 +US 04782 Stacyville Maine ME Penobscot 019 45.5199 -68.6474 +US 04928 Corinna Maine ME Penobscot 019 44.926 -69.2323 +US 04930 Dexter Maine ME Penobscot 019 45.0203 -69.2797 +US 04932 Dixmont Maine ME Penobscot 019 44.6991 -69.1025 +US 04933 East Newport Maine ME Penobscot 019 45.5199 -68.6474 +US 04939 Garland Maine ME Penobscot 019 45.0149 -69.157 +US 04953 Newport Maine ME Penobscot 019 44.8393 -69.2675 +US 04969 Plymouth Maine ME Penobscot 019 44.7699 -69.2266 +US 04406 Abbot Maine ME Piscataquis 021 45.2345 -69.5699 +US 04414 Brownville Maine ME Piscataquis 021 45.3412 -69.0423 +US 04415 Brownville Junction Maine ME Piscataquis 021 45.3512 -69.0581 +US 04426 Dover Foxcroft Maine ME Piscataquis 021 45.1877 -69.2045 +US 04441 Greenville Maine ME Piscataquis 021 45.4716 -69.5844 +US 04442 Greenville Junction Maine ME Piscataquis 021 45.4796 -69.6939 +US 04443 Guilford Maine ME Piscataquis 021 45.1735 -69.3975 +US 04446 Haynesville Maine ME Piscataquis County 021 45.8311 -67.9882 +US 04463 Milo Maine ME Piscataquis 021 45.2446 -68.976 +US 04464 Monson Maine ME Piscataquis 021 45.2981 -69.488 +US 04479 Sangerville Maine ME Piscataquis 021 45.1406 -69.3218 +US 04481 Sebec Maine ME Piscataquis 021 45.2465 -69.1021 +US 04482 Sebec Lake Maine ME Piscataquis County 021 45.2997 -69.3389 +US 04485 Shirley Mills Maine ME Piscataquis 021 45.3609 -69.6202 +US 04008 Bowdoinham Maine ME Sagadahoc 023 44.0368 -69.9188 +US 04086 Topsham Maine ME Sagadahoc 023 43.9814 -69.9378 +US 04287 Bowdoin Maine ME Sagadahoc 023 44.0575 -69.9656 +US 04357 Richmond Maine ME Sagadahoc 023 44.1042 -69.8211 +US 04530 Bath Maine ME Sagadahoc 023 43.9062 -69.8266 +US 04548 Georgetown Maine ME Sagadahoc 023 43.8054 -69.7453 +US 04562 Phippsburg Maine ME Sagadahoc 023 43.7688 -69.815 +US 04565 Sebasco Estates Maine ME Sagadahoc 023 43.7733 -69.8635 +US 04567 Small Point Maine ME Sagadahoc 023 43.9009 -69.8595 +US 04579 Woolwich Maine ME Sagadahoc 023 43.9503 -69.7891 +US 04458 Lincoln Center Maine ME Somerset County 025 45.4235 -68.4552 +US 04478 Rockwood Maine ME Somerset 025 45.8641 -69.8768 +US 04911 Anson Maine ME Somerset 025 44.7831 -69.9309 +US 04912 Athens Maine ME Somerset 025 44.9388 -69.6695 +US 04920 Bingham Maine ME Somerset 025 45.0682 -69.8857 +US 04923 Cambridge Maine ME Somerset 025 45.0513 -69.4419 +US 04924 Canaan Maine ME Somerset 025 44.745 -69.5498 +US 04925 Caratunk Maine ME Somerset 025 45.241 -69.9386 +US 04929 Detroit Maine ME Somerset 025 44.7615 -69.3227 +US 04937 Fairfield Maine ME Somerset 025 44.6463 -69.6802 +US 04942 Harmony Maine ME Somerset 025 44.973 -69.5481 +US 04943 Hartland Maine ME Somerset 025 44.8782 -69.4718 +US 04944 Hinckley Maine ME Somerset 025 44.6847 -69.6425 +US 04945 Jackman Maine ME Somerset 025 45.6351 -70.2492 +US 04950 Madison Maine ME Somerset 025 44.8096 -69.8449 +US 04954 New Portland Maine ME Somerset 025 45.5757 -69.9098 +US 04957 Norridgewock Maine ME Somerset 025 44.6899 -69.8306 +US 04958 North Anson Maine ME Somerset 025 44.8797 -69.9119 +US 04961 North New Portland Maine ME Somerset 025 45.133 -70.1347 +US 04965 Palmyra Maine ME Somerset 025 44.8576 -69.3811 +US 04967 Pittsfield Maine ME Somerset 025 44.7871 -69.4022 +US 04971 Saint Albans Maine ME Somerset 025 44.9293 -69.3992 +US 04975 Shawmut Maine ME Somerset 025 44.6245 -69.5869 +US 04976 Skowhegan Maine ME Somerset 025 44.7772 -69.6976 +US 04978 Smithfield Maine ME Somerset 025 44.6301 -69.8075 +US 04979 Solon Maine ME Somerset 025 44.9676 -69.833 +US 04985 West Forks Maine ME Somerset 025 45.3839 -69.9841 +US 04354 Palermo Maine ME Waldo 027 44.3843 -69.4334 +US 04438 Frankfort Maine ME Waldo 027 44.5979 -68.934 +US 04496 Winterport Maine ME Waldo 027 44.6552 -68.8862 +US 04848 Islesboro Maine ME Waldo 027 44.3082 -68.9073 +US 04849 Lincolnville Maine ME Waldo 027 44.3048 -69.0824 +US 04850 Lincolnville Center Maine ME Waldo 027 44.4787 -69.1496 +US 04915 Belfast Maine ME Waldo 027 44.4354 -69.0148 +US 04921 Brooks Maine ME Waldo 027 44.5678 -69.1404 +US 04922 Burnham Maine ME Waldo 027 44.6848 -69.38 +US 04941 Freedom Maine ME Waldo 027 44.4633 -69.319 +US 04949 Liberty Maine ME Waldo 027 44.3741 -69.3306 +US 04951 Monroe Maine ME Waldo 027 44.5927 -69.0317 +US 04952 Morrill Maine ME Waldo 027 44.4107 -69.1471 +US 04972 Sandy Point Maine ME Waldo 027 44.4787 -69.1496 +US 04973 Searsmont Maine ME Waldo 027 44.377 -69.2196 +US 04974 Searsport Maine ME Waldo 027 44.4877 -68.9311 +US 04981 Stockton Springs Maine ME Waldo 027 44.5141 -68.856 +US 04986 Thorndike Maine ME Waldo 027 44.5744 -69.2487 +US 04987 Troy Maine ME Waldo 027 44.6757 -69.2549 +US 04988 Unity Maine ME Waldo 027 44.6007 -69.3328 +US 04413 Brookton Maine ME Washington 029 45.5507 -67.7436 +US 04424 Danforth Maine ME Washington 029 45.6687 -67.8688 +US 04454 Lambert Lake Maine ME Washington 029 45.003 -67.4955 +US 04490 Topsfield Maine ME Washington 029 45.4304 -67.7473 +US 04491 Vanceboro Maine ME Washington 029 45.5702 -67.4694 +US 04492 Waite Maine ME Washington 029 45.3492 -67.678 +US 04606 Addison Maine ME Washington 029 44.583 -67.7146 +US 04611 Beals Maine ME Washington 029 44.513 -67.6056 +US 04618 Bucks Harbor Maine ME Washington County 029 44.6272 -67.396 +US 04619 Calais Maine ME Washington 029 45.1715 -67.2641 +US 04622 Cherryfield Maine ME Washington 029 44.6228 -67.9436 +US 04623 Columbia Falls Maine ME Washington 029 44.6699 -67.7534 +US 04626 Cutler Maine ME Washington 029 44.6753 -67.2499 +US 04628 Dennysville Maine ME Washington 029 44.8961 -67.2244 +US 04630 East Machias Maine ME Washington 029 44.7424 -67.3821 +US 04631 Eastport Maine ME Washington 029 44.92 -67.0074 +US 04637 Grand Lake Stream Maine ME Washington 029 45.1856 -67.601 +US 04643 Harrington Maine ME Washington 029 44.6122 -67.8147 +US 04648 Jonesboro Maine ME Washington 029 44.6582 -67.5777 +US 04649 Jonesport Maine ME Washington 029 44.5509 -67.6044 +US 04652 Lubec Maine ME Washington 029 44.9043 -67.0408 +US 04654 Machias Maine ME Washington 029 44.7215 -67.482 +US 04655 Machiasport Maine ME Washington 029 44.682 -67.4073 +US 04657 Meddybemps Maine ME Washington 029 45.0193 -67.3829 +US 04658 Milbridge Maine ME Washington 029 44.5366 -67.8844 +US 04666 Pembroke Maine ME Washington 029 44.9654 -67.2002 +US 04667 Perry Maine ME Washington 029 44.9888 -67.0929 +US 04668 Princeton Maine ME Washington 029 45.2131 -67.6008 +US 04671 Robbinston Maine ME Washington 029 45.067 -67.1433 +US 04680 Steuben Maine ME Washington 029 44.4971 -67.9503 +US 04686 Wesley Maine ME Washington 029 44.9854 -67.6991 +US 04691 Whiting Maine ME Washington 029 44.7622 -67.2515 +US 04692 Whitneyville Maine ME Washington County 029 44.7216 -67.5222 +US 04694 Baileyville Maine ME Washington 029 45.1035 -67.4722 +US 03901 Berwick Maine ME York 031 43.2899 -70.855 +US 03902 Cape Neddick Maine ME York 031 43.2133 -70.6397 +US 03903 Eliot Maine ME York 031 43.1309 -70.7822 +US 03904 Kittery Maine ME York 031 43.0921 -70.7429 +US 03905 Kittery Point Maine ME York 031 43.0976 -70.7121 +US 03906 North Berwick Maine ME York 031 43.3254 -70.7212 +US 03907 Ogunquit Maine ME York 031 43.2541 -70.6094 +US 03908 South Berwick Maine ME York 031 43.2292 -70.7859 +US 03909 York Maine ME York 031 43.1544 -70.6578 +US 03910 York Beach Maine ME York 031 43.2117 -70.732 +US 03911 York Harbor Maine ME York 031 43.1555 -70.6357 +US 04001 Acton Maine ME York 031 43.5494 -70.9307 +US 04002 Alfred Maine ME York 031 43.4875 -70.6961 +US 04004 Bar Mills Maine ME York 031 43.3657 -70.6044 +US 04005 Biddeford Maine ME York 031 43.4935 -70.4883 +US 04006 Biddeford Pool Maine ME York 031 43.436 -70.3598 +US 04007 Biddeford Maine ME York 031 43.4581 -70.5053 +US 04014 Cape Porpoise Maine ME York 031 43.3657 -70.6044 +US 04020 Cornish Maine ME York 031 43.7796 -70.7784 +US 04027 Lebanon Maine ME York 031 43.4597 -70.9152 +US 04028 East Parsonfield Maine ME York 031 43.7324 -70.8451 +US 04030 East Waterboro Maine ME York 031 43.5995 -70.6906 +US 04042 Hollis Center Maine ME York 031 43.5946 -70.6051 +US 04043 Kennebunk Maine ME York 031 43.3881 -70.5478 +US 04046 Kennebunkport Maine ME York 031 43.3923 -70.4729 +US 04047 Parsonsfield Maine ME York 031 43.745 -70.9092 +US 04048 Limerick Maine ME York 031 43.6963 -70.7866 +US 04049 Limington Maine ME York 031 43.726 -70.6752 +US 04054 Moody Maine ME York 031 43.2763 -70.5978 +US 04056 Newfield Maine ME York 031 43.6584 -70.8689 +US 04060 North Shapleigh Maine ME York County 031 43.5837 -70.8754 +US 04061 North Waterboro Maine ME York 031 43.64 -70.7298 +US 04063 Ocean Park Maine ME York 031 43.5049 -70.3857 +US 04064 Old Orchard Beach Maine ME York 031 43.5254 -70.3883 +US 04072 Saco Maine ME York 031 43.5209 -70.4546 +US 04073 Sanford Maine ME York 031 43.4285 -70.7585 +US 04076 Shapleigh Maine ME York 031 43.5674 -70.8286 +US 04083 Springvale Maine ME York 031 43.4715 -70.8064 +US 04087 Waterboro Maine ME York 031 43.5661 -70.7431 +US 04090 Wells Maine ME York 031 43.3144 -70.5969 +US 04093 West Buxton Maine ME York 031 43.6428 -70.5376 +US 04094 West Kennebunk Maine ME York 031 43.4061 -70.5733 +US 04095 West Newfield Maine ME York 031 43.601 -70.9027 +US 96960 Marshall Islands MH 7.1128 171.237 +US 96970 Ebeye MH 8.786 167.7365 +US 48705 Barton City Michigan MI Alcona 001 44.702 -83.5994 +US 48721 Black River Michigan MI Alcona 001 44.8138 -83.3407 +US 48728 Curran Michigan MI Alcona 001 44.7336 -83.832 +US 48737 Glennie Michigan MI Alcona 001 44.5582 -83.6899 +US 48738 Greenbush Michigan MI Alcona 001 44.548 -83.3269 +US 48740 Harrisville Michigan MI Alcona 001 44.6546 -83.3424 +US 48742 Lincoln Michigan MI Alcona 001 44.7111 -83.3947 +US 48745 Mikado Michigan MI Alcona 001 44.5833 -83.4355 +US 48762 Spruce Michigan MI Alcona 001 44.8224 -83.5044 +US 49806 Au Train Michigan MI Alger 003 46.4446 -86.9115 +US 49816 Chatham Michigan MI Alger 003 46.337 -86.9936 +US 49822 Deerton Michigan MI Alger 003 46.427 -87.0497 +US 49825 Eben Junction Michigan MI Alger 003 46.3299 -87.0138 +US 49826 Rumely Michigan MI Alger 003 46.3481 -87.0436 +US 49839 Grand Marais Michigan MI Alger 003 46.6529 -85.9836 +US 49843 K I Sawyer A F B Michigan MI Alger County 003 46.3289 -87.363 +US 49862 Munising Michigan MI Alger 003 46.3994 -86.6983 +US 49884 Shingleton Michigan MI Alger 003 46.3512 -86.4823 +US 49890 Traunik Michigan MI Alger County 003 46.2571 -86.986 +US 49891 Trenary Michigan MI Alger 003 46.1947 -86.9502 +US 49895 Wetmore Michigan MI Alger 003 46.3535 -86.6345 +US 49010 Allegan Michigan MI Allegan 005 42.5256 -85.8661 +US 49070 Martin Michigan MI Allegan 005 42.5483 -85.6106 +US 49078 Otsego Michigan MI Allegan 005 42.4723 -85.7035 +US 49080 Plainwell Michigan MI Allegan 005 42.4544 -85.5994 +US 49311 Bradley Michigan MI Allegan 005 42.633 -85.643 +US 49314 Burnips Michigan MI Allegan 005 42.7312 -85.8404 +US 49323 Dorr Michigan MI Allegan 005 42.7231 -85.7628 +US 49328 Hopkins Michigan MI Allegan 005 42.6421 -85.7322 +US 49335 Moline Michigan MI Allegan 005 42.737 -85.6635 +US 49344 Shelbyville Michigan MI Allegan 005 42.5936 -85.6282 +US 49348 Wayland Michigan MI Allegan 005 42.6643 -85.6191 +US 49406 Douglas Michigan MI Allegan 005 42.6369 -86.2022 +US 49408 Fennville Michigan MI Allegan 005 42.5777 -86.1249 +US 49416 Glenn Michigan MI Allegan 005 42.6305 -86.072 +US 49419 Hamilton Michigan MI Allegan 005 42.6881 -85.9747 +US 49447 New Richmond Michigan MI Allegan County 005 42.6624 -86.038 +US 49450 Pullman Michigan MI Allegan 005 42.4651 -86.0799 +US 49453 Saugatuck Michigan MI Allegan 005 42.6456 -86.1655 +US 49707 Alpena Michigan MI Alpena 007 45.079 -83.4602 +US 49744 Herron Michigan MI Alpena 007 45.0124 -83.6535 +US 49747 Hubbard Lake Michigan MI Alpena 007 44.8947 -83.6059 +US 49753 Lachine Michigan MI Alpena 007 45.0429 -83.7491 +US 49766 Ossineke Michigan MI Alpena 007 44.9104 -83.4592 +US 49611 Alba Michigan MI Antrim 009 44.9737 -84.9745 +US 49612 Alden Michigan MI Antrim 009 44.8779 -85.2241 +US 49615 Bellaire Michigan MI Antrim 009 44.9765 -85.2265 +US 49622 Central Lake Michigan MI Antrim 009 45.0748 -85.2673 +US 49627 Eastport Michigan MI Antrim 009 45.0881 -85.3219 +US 49629 Elk Rapids Michigan MI Antrim 009 44.8955 -85.4082 +US 49648 Kewadin Michigan MI Antrim 009 45.0126 -85.3539 +US 49659 Mancelona Michigan MI Antrim 009 44.9116 -85.0634 +US 49729 Ellsworth Michigan MI Antrim 009 45.1599 -85.2633 +US 48658 Standish Michigan MI Arenac 011 43.9733 -83.9433 +US 48659 Sterling Michigan MI Arenac 011 44.0669 -84.0505 +US 48703 Au Gres Michigan MI Arenac 011 44.0338 -83.702 +US 48749 Omer Michigan MI Arenac 011 44.0499 -83.843 +US 48765 Turner Michigan MI Arenac 011 44.1105 -83.7019 +US 48766 Twining Michigan MI Arenac 011 44.1293 -83.8491 +US 49908 Baraga Michigan MI Baraga 013 46.8048 -88.5758 +US 49919 Covington Michigan MI Baraga 013 46.5265 -88.5846 +US 49946 Lanse Michigan MI Baraga 013 46.7704 -88.421 +US 49962 Skanee Michigan MI Baraga 013 46.8747 -88.1732 +US 49970 Watton Michigan MI Baraga 013 46.5413 -88.6049 +US 48897 Woodland Michigan MI Barry 015 42.7057 -85.1326 +US 49035 Cloverdale Michigan MI Barry 015 42.5951 -85.3086 +US 49046 Delton Michigan MI Barry 015 42.5141 -85.4067 +US 49050 Dowling Michigan MI Barry 015 42.5015 -85.2495 +US 49058 Hastings Michigan MI Barry 015 42.643 -85.2937 +US 49060 Hickory Corners Michigan MI Barry 015 42.4237 -85.3998 +US 49073 Nashville Michigan MI Barry 015 42.5937 -85.122 +US 49325 Freeport Michigan MI Barry 015 42.7297 -85.2791 +US 49333 Middleville Michigan MI Barry 015 42.6932 -85.4759 +US 48611 Auburn Michigan MI Bay 017 43.608 -84.1027 +US 48613 Bentley Michigan MI Bay 017 43.9267 -84.1053 +US 48631 Kawkawlin Michigan MI Bay 017 43.6794 -83.9927 +US 48634 Linwood Michigan MI Bay 017 43.7714 -84.0513 +US 48650 Pinconning Michigan MI Bay 017 43.8491 -84.0082 +US 48706 Bay City Michigan MI Bay 017 43.6088 -83.953 +US 48707 Bay City Michigan MI Bay 017 43.7378 -83.9333 +US 48708 Bay City Michigan MI Bay 017 43.5821 -83.8781 +US 48710 University Center Michigan MI Bay 017 43.5566 -83.9943 +US 48732 Essexville Michigan MI Bay 017 43.6069 -83.8217 +US 48747 Munger Michigan MI Bay 017 43.5286 -83.7672 +US 49616 Benzonia Michigan MI Benzie 019 44.5955 -86.0961 +US 49617 Beulah Michigan MI Benzie 019 44.6306 -86.0025 +US 49628 Elberta Michigan MI Benzie 019 44.5995 -86.2141 +US 49635 Frankfort Michigan MI Benzie 019 44.6311 -86.2212 +US 49640 Honor Michigan MI Benzie 019 44.6954 -86.0376 +US 49650 Lake Ann Michigan MI Benzie 019 44.7317 -85.8528 +US 49683 Thompsonville Michigan MI Benzie 019 44.5198 -85.946 +US 49022 Benton Harbor Michigan MI Berrien 021 42.1086 -86.4234 +US 49023 Benton Harbor Michigan MI Berrien 021 42.0016 -86.7153 +US 49038 Coloma Michigan MI Berrien 021 42.203 -86.3225 +US 49039 Hagar Shores Michigan MI Berrien 021 42.2248 -86.3723 +US 49084 Riverside Michigan MI Berrien 021 42.178 -86.3856 +US 49085 Saint Joseph Michigan MI Berrien 021 42.064 -86.4783 +US 49098 Watervliet Michigan MI Berrien 021 42.1938 -86.2604 +US 49101 Baroda Michigan MI Berrien 021 41.9488 -86.4913 +US 49102 Berrien Center Michigan MI Berrien 021 41.9484 -86.285 +US 49103 Berrien Springs Michigan MI Berrien 021 41.948 -86.354 +US 49104 Berrien Springs Michigan MI Berrien 021 42.0016 -86.7153 +US 49106 Bridgman Michigan MI Berrien 021 41.9362 -86.5543 +US 49107 Buchanan Michigan MI Berrien 021 41.8327 -86.3708 +US 49111 Eau Claire Michigan MI Berrien 021 42.0151 -86.2972 +US 49113 Galien Michigan MI Berrien 021 41.8198 -86.5035 +US 49115 Harbert Michigan MI Berrien 021 41.8771 -86.6302 +US 49116 Lakeside Michigan MI Berrien 021 41.8485 -86.6694 +US 49117 New Buffalo Michigan MI Berrien 021 41.7927 -86.746 +US 49119 New Troy Michigan MI Berrien 021 41.8744 -86.549 +US 49120 Niles Michigan MI Berrien 021 41.8202 -86.2368 +US 49121 Niles Michigan MI Berrien 021 42.0016 -86.7153 +US 49125 Sawyer Michigan MI Berrien 021 41.8829 -86.5885 +US 49126 Sodus Michigan MI Berrien 021 42.0521 -86.3921 +US 49127 Stevensville Michigan MI Berrien 021 42.022 -86.5119 +US 49128 Three Oaks Michigan MI Berrien 021 41.815 -86.6154 +US 49129 Union Pier Michigan MI Berrien 021 41.8255 -86.6911 +US 49028 Bronson Michigan MI Branch 023 41.8643 -85.1838 +US 49036 Coldwater Michigan MI Branch 023 41.9255 -85.0057 +US 49082 Quincy Michigan MI Branch 023 41.9707 -84.8493 +US 49089 Sherwood Michigan MI Branch 023 42.0107 -85.2408 +US 49094 Union City Michigan MI Branch 023 42.0551 -85.1356 +US 49255 Montgomery Michigan MI Branch 023 41.7928 -84.8496 +US 49011 Athens Michigan MI Calhoun 025 42.103 -85.2317 +US 49014 Battle Creek Michigan MI Calhoun 025 42.303 -85.1304 +US 49015 Battle Creek Michigan MI Calhoun 025 42.3028 -85.2128 +US 49016 Battle Creek Michigan MI Calhoun 025 42.2464 -85.0045 +US 49017 Battle Creek Michigan MI Calhoun 025 42.3322 -85.1811 +US 49018 Battle Creek Michigan MI Calhoun 025 42.2464 -85.0045 +US 49020 Bedford Michigan MI Calhoun 025 42.2464 -85.0045 +US 49029 Burlington Michigan MI Calhoun 025 42.1239 -85.105 +US 49033 Ceresco Michigan MI Calhoun 025 42.2127 -85.1128 +US 49037 Battle Creek Michigan MI Calhoun County 025 42.3453 -85.2178 +US 49051 East Leroy Michigan MI Calhoun 025 42.1961 -85.2311 +US 49068 Marshall Michigan MI Calhoun 025 42.272 -84.9583 +US 49069 Marshall Michigan MI Calhoun 025 42.2045 -84.9499 +US 49092 Tekonsha Michigan MI Calhoun 025 42.0863 -84.9926 +US 49224 Albion Michigan MI Calhoun 025 42.2581 -84.7561 +US 49245 Homer Michigan MI Calhoun 025 42.1416 -84.8157 +US 49031 Cassopolis Michigan MI Cass 027 41.8968 -85.9923 +US 49047 Dowagiac Michigan MI Cass 027 41.991 -86.1168 +US 49061 Jones Michigan MI Cass 027 41.9129 -85.8341 +US 49067 Marcellus Michigan MI Cass 027 42.0275 -85.7988 +US 49095 Vandalia Michigan MI Cass 027 41.8955 -85.8755 +US 49112 Edwardsburg Michigan MI Cass 027 41.7913 -86.0263 +US 49130 Union Michigan MI Cass 027 41.7827 -85.8529 +US 49711 Bay Shore Michigan MI Charlevoix 029 45.5234 -85.332 +US 49712 Boyne City Michigan MI Charlevoix 029 45.2052 -85.0183 +US 49713 Boyne Falls Michigan MI Charlevoix 029 45.2116 -84.8916 +US 49720 Charlevoix Michigan MI Charlevoix 029 45.2654 -85.2297 +US 49727 East Jordan Michigan MI Charlevoix 029 45.1539 -85.1387 +US 49782 Beaver Island Michigan MI Charlevoix 029 45.6684 -85.5473 +US 49796 Walloon Lake Michigan MI Charlevoix 029 45.2454 -84.9382 +US 49701 Mackinaw City Michigan MI Cheboygan 031 45.753 -84.6917 +US 49705 Afton Michigan MI Cheboygan 031 45.3637 -84.4695 +US 49716 Brutus Michigan MI Cheboygan 031 45.5068 -84.7467 +US 49717 Burt Lake Michigan MI Cheboygan 031 45.4307 -84.6912 +US 49721 Cheboygan Michigan MI Cheboygan 031 45.608 -84.4867 +US 49749 Indian River Michigan MI Cheboygan 031 45.427 -84.5956 +US 49761 Mullett Lake Michigan MI Cheboygan 031 45.5595 -84.5221 +US 49791 Topinabee Michigan MI Cheboygan 031 45.4838 -84.5936 +US 49792 Tower Michigan MI Cheboygan 031 45.3588 -84.2953 +US 49799 Wolverine Michigan MI Cheboygan 031 45.2861 -84.6065 +US 49710 Barbeau Michigan MI Chippewa 033 46.2848 -84.2173 +US 49715 Brimley Michigan MI Chippewa 033 46.3891 -84.6981 +US 49724 Dafter Michigan MI Chippewa 033 46.327 -84.3878 +US 49725 De Tour Village Michigan MI Chippewa 033 45.9939 -83.9396 +US 49726 Drummond Island Michigan MI Chippewa 033 46.0055 -83.7367 +US 49728 Eckerman Michigan MI Chippewa 033 46.4088 -85.0136 +US 49736 Goetzville Michigan MI Chippewa 033 46.079 -84.145 +US 49748 Hulbert Michigan MI Chippewa 033 46.3908 -85.1764 +US 49752 Kinross Michigan MI Chippewa 033 46.2596 -84.6473 +US 49768 Paradise Michigan MI Chippewa 033 46.5951 -85.0973 +US 49774 Pickford Michigan MI Chippewa 033 46.1559 -84.3663 +US 49778 Brimley Michigan MI Chippewa 033 46.4108 -84.3365 +US 49780 Rudyard Michigan MI Chippewa 033 46.2585 -84.8004 +US 49783 Sault Sainte Marie Michigan MI Chippewa 033 46.4151 -84.2854 +US 49784 Kincheloe Michigan MI Chippewa 033 46.4108 -84.3365 +US 49785 Kincheloe Michigan MI Chippewa 033 46.1815 -84.4054 +US 49786 Kincheloe Michigan MI Chippewa 033 46.4108 -84.3365 +US 49788 Kincheloe Michigan MI Chippewa 033 46.2627 -84.4626 +US 49789 Stalwart Michigan MI Chippewa County 033 46.1389 -84.1559 +US 49790 Strongs Michigan MI Chippewa 033 46.3874 -84.9668 +US 49793 Trout Lake Michigan MI Chippewa 033 46.2159 -85.0068 +US 48617 Clare Michigan MI Clare 035 43.8223 -84.7635 +US 48622 Farwell Michigan MI Clare 035 43.8342 -84.8754 +US 48625 Harrison Michigan MI Clare 035 44.0285 -84.7729 +US 48632 Lake Michigan MI Clare 035 43.8575 -85.0219 +US 48633 Lake George Michigan MI Clare 035 43.9583 -84.9193 +US 48808 Bath Michigan MI Clinton 037 42.8206 -84.4545 +US 48820 Dewitt Michigan MI Clinton 037 42.8428 -84.5797 +US 48822 Eagle Michigan MI Clinton 037 42.8263 -84.759 +US 48831 Elsie Michigan MI Clinton 037 43.0814 -84.4456 +US 48833 Eureka Michigan MI Clinton 037 42.9442 -84.6007 +US 48835 Fowler Michigan MI Clinton 037 42.9941 -84.76 +US 48853 Maple Rapids Michigan MI Clinton 037 43.0992 -84.6898 +US 48866 Ovid Michigan MI Clinton 037 42.9969 -84.3649 +US 48879 Saint Johns Michigan MI Clinton 037 43.0059 -84.5719 +US 48894 Westphalia Michigan MI Clinton 037 42.9328 -84.8083 +US 49733 Frederic Michigan MI Crawford 039 44.8382 -84.6824 +US 49738 Grayling Michigan MI Crawford 039 44.671 -84.6913 +US 49739 Grayling Michigan MI Crawford 039 44.683 -84.6104 +US 49807 Bark River Michigan MI Delta 041 45.6956 -87.2073 +US 49818 Cornell Michigan MI Delta 041 45.9104 -87.2237 +US 49829 Escanaba Michigan MI Delta 041 45.7659 -87.089 +US 49835 Garden Michigan MI Delta 041 45.7549 -86.5776 +US 49837 Gladstone Michigan MI Delta 041 45.8813 -87.1152 +US 49864 Nahma Michigan MI Delta 041 45.8424 -86.6558 +US 49872 Perkins Michigan MI Delta 041 45.9925 -87.0792 +US 49878 Rapid River Michigan MI Delta 041 45.9107 -86.8845 +US 49880 Rock Michigan MI Delta 041 46.0503 -87.1331 +US 49894 Wells Michigan MI Delta 041 45.7849 -87.0734 +US 49801 Iron Mountain Michigan MI Dickinson 043 45.8219 -88.0683 +US 49802 Kingsford Michigan MI Dickinson 043 45.8006 -88.0773 +US 49815 Channing Michigan MI Dickinson 043 46.1546 -88.0772 +US 49831 Felch Michigan MI Dickinson 043 46.0226 -87.7939 +US 49834 Foster City Michigan MI Dickinson 043 45.9438 -87.7584 +US 49852 Loretto Michigan MI Dickinson 043 45.8275 -87.7764 +US 49870 Norway Michigan MI Dickinson 043 45.7862 -87.9047 +US 49876 Quinnesec Michigan MI Dickinson 043 45.7999 -87.9922 +US 49877 Ralph Michigan MI Dickinson 043 46.1297 -87.7367 +US 49881 Sagola Michigan MI Dickinson 043 46.0813 -88.0676 +US 49892 Vulcan Michigan MI Dickinson 043 45.7623 -87.8168 +US 48813 Charlotte Michigan MI Eaton 045 42.5702 -84.8352 +US 48821 Dimondale Michigan MI Eaton 045 42.6501 -84.6486 +US 48827 Eaton Rapids Michigan MI Eaton 045 42.5166 -84.6565 +US 48837 Grand Ledge Michigan MI Eaton 045 42.7529 -84.7373 +US 48861 Mulliken Michigan MI Eaton 045 42.7377 -84.8979 +US 48876 Potterville Michigan MI Eaton 045 42.6398 -84.7346 +US 48890 Sunfield Michigan MI Eaton 045 42.7693 -84.9813 +US 48907 Lansing Michigan MI Eaton 045 42.5961 -84.8382 +US 48908 Lansing Michigan MI Eaton 045 42.5961 -84.8382 +US 48917 Lansing Michigan MI Eaton 045 42.7376 -84.6244 +US 49021 Bellevue Michigan MI Eaton 045 42.4525 -85.0489 +US 49076 Olivet Michigan MI Eaton 045 42.4459 -84.8973 +US 49096 Vermontville Michigan MI Eaton 045 42.6392 -85.011 +US 49706 Alanson Michigan MI Emmet 047 45.4405 -84.7924 +US 49718 Carp Lake Michigan MI Emmet 047 45.7424 -84.7735 +US 49722 Conway Michigan MI Emmet 047 45.4236 -84.8524 +US 49723 Cross Village Michigan MI Emmet 047 45.6254 -85.0419 +US 49737 Good Hart Michigan MI Emmet 047 45.5802 -85.1137 +US 49740 Harbor Springs Michigan MI Emmet 047 45.5251 -85.0062 +US 49755 Levering Michigan MI Emmet 047 45.6377 -84.7986 +US 49764 Oden Michigan MI Emmet 047 45.4803 -84.8146 +US 49769 Pellston Michigan MI Emmet 047 45.5703 -84.8425 +US 49770 Petoskey Michigan MI Emmet 047 45.3559 -84.9133 +US 48411 Atlas Michigan MI Genesee 049 42.94 -83.5369 +US 48420 Clio Michigan MI Genesee 049 43.1779 -83.7249 +US 48423 Davison Michigan MI Genesee 049 43.0348 -83.5268 +US 48430 Fenton Michigan MI Genesee 049 42.7851 -83.7294 +US 48433 Flushing Michigan MI Genesee 049 43.072 -83.8424 +US 48436 Gaines Michigan MI Genesee 049 42.8813 -83.8855 +US 48437 Genesee Michigan MI Genesee 049 43.1123 -83.6154 +US 48438 Goodrich Michigan MI Genesee 049 42.9147 -83.4845 +US 48439 Grand Blanc Michigan MI Genesee 049 42.9282 -83.6264 +US 48449 Lennon Michigan MI Genesee 049 42.9693 -83.9279 +US 48451 Linden Michigan MI Genesee 049 42.8104 -83.7993 +US 48457 Montrose Michigan MI Genesee 049 43.1754 -83.8824 +US 48458 Mount Morris Michigan MI Genesee 049 43.116 -83.6895 +US 48463 Otisville Michigan MI Genesee 049 43.1706 -83.5172 +US 48473 Swartz Creek Michigan MI Genesee 049 42.9468 -83.817 +US 48480 Grand Blanc Michigan MI Genesee County 049 42.918 -83.617 +US 48501 Flint Michigan MI Genesee 049 42.9659 -83.7808 +US 48502 Flint Michigan MI Genesee 049 43.0151 -83.6948 +US 48503 Flint Michigan MI Genesee 049 43.0128 -83.6914 +US 48504 Flint Michigan MI Genesee 049 43.0573 -83.7498 +US 48505 Flint Michigan MI Genesee 049 43.0634 -83.7001 +US 48506 Flint Michigan MI Genesee 049 43.0653 -83.631 +US 48507 Flint Michigan MI Genesee 049 42.9821 -83.734 +US 48509 Burton Michigan MI Genesee 049 43.0259 -83.6041 +US 48519 Burton Michigan MI Genesee 049 42.9859 -83.6135 +US 48529 Burton Michigan MI Genesee 049 42.9744 -83.6629 +US 48531 Flint Michigan MI Genesee 049 43.002 -83.6925 +US 48532 Flint Michigan MI Genesee 049 43.0111 -83.803 +US 48550 Flint Michigan MI Genesee 049 43.0349 -83.6887 +US 48551 Flint Michigan MI Genesee 049 42.979 -83.7131 +US 48552 Flint Michigan MI Genesee 049 42.9779 -83.7131 +US 48553 Flint Michigan MI Genesee 049 42.9736 -83.7203 +US 48554 Flint Michigan MI Genesee 049 42.9722 -83.7946 +US 48555 Flint Michigan MI Genesee 049 43.0113 -83.7108 +US 48556 Flint Michigan MI Genesee 049 43.0327 -83.6463 +US 48557 Flint Michigan MI Genesee 049 43.0806 -83.7837 +US 48559 Flint Michigan MI Genesee 049 43.002 -83.6925 +US 48612 Beaverton Michigan MI Gladwin 051 43.8866 -84.4241 +US 48624 Gladwin Michigan MI Gladwin 051 44.0296 -84.4968 +US 48638 Saginaw Michigan MI Gladwin County 051 43.4343 -84.0091 +US 48652 Rhodes Michigan MI Gladwin 051 43.8517 -84.2134 +US 49911 Bessemer Michigan MI Gogebic 053 46.4802 -90.0515 +US 49938 Ironwood Michigan MI Gogebic 053 46.4638 -90.1588 +US 49947 Marenisco Michigan MI Gogebic 053 46.3551 -89.6774 +US 49959 Ramsay Michigan MI Gogebic 053 46.4727 -89.9976 +US 49968 Wakefield Michigan MI Gogebic 053 46.4752 -89.9424 +US 49969 Watersmeet Michigan MI Gogebic 053 46.2542 -89.2108 +US 49610 Acme Michigan MI Grand Traverse 055 44.7894 -85.4884 +US 49633 Fife Lake Michigan MI Grand Traverse 055 44.5721 -85.2531 +US 49637 Grawn Michigan MI Grand Traverse 055 44.6428 -85.7113 +US 49643 Interlochen Michigan MI Grand Traverse 055 44.6518 -85.8022 +US 49649 Kingsley Michigan MI Grand Traverse 055 44.5756 -85.5262 +US 49666 Mayfield Michigan MI Grand Traverse 055 44.625 -85.5425 +US 49673 Old Mission Michigan MI Grand Traverse 055 44.9559 -85.49 +US 49684 Traverse City Michigan MI Grand Traverse 055 44.694 -85.6763 +US 49685 Traverse City Michigan MI Grand Traverse 055 44.8162 -85.5751 +US 49686 Traverse City Michigan MI Grand Traverse 055 44.7849 -85.4907 +US 49690 Williamsburg Michigan MI Grand Traverse 055 44.802 -85.4347 +US 49696 Traverse City Michigan MI Grand Traverse 055 44.8162 -85.5751 +US 48615 Breckenridge Michigan MI Gratiot 057 43.3935 -84.5023 +US 48662 Wheeler Michigan MI Gratiot 057 43.3962 -84.4243 +US 48801 Alma Michigan MI Gratiot 057 43.3809 -84.6635 +US 48802 Alma Michigan MI Gratiot 057 43.3893 -84.6667 +US 48806 Ashley Michigan MI Gratiot 057 43.1891 -84.488 +US 48807 Bannister Michigan MI Gratiot 057 43.1615 -84.3597 +US 48830 Elm Hall Michigan MI Gratiot 057 43.3639 -84.8362 +US 48832 Elwell Michigan MI Gratiot 057 43.4106 -84.7631 +US 48847 Ithaca Michigan MI Gratiot 057 43.2828 -84.6088 +US 48856 Middleton Michigan MI Gratiot 057 43.1689 -84.7552 +US 48862 North Star Michigan MI Gratiot 057 43.3565 -84.4971 +US 48871 Perrinton Michigan MI Gratiot 057 43.1649 -84.666 +US 48874 Pompeii Michigan MI Gratiot 057 43.1863 -84.6017 +US 48877 Riverdale Michigan MI Gratiot 057 43.4017 -84.8429 +US 48880 Saint Louis Michigan MI Gratiot 057 43.4278 -84.5952 +US 48889 Sumner Michigan MI Gratiot 057 43.3091 -84.7907 +US 49227 Allen Michigan MI Hillsdale 059 41.9264 -84.7608 +US 49232 Camden Michigan MI Hillsdale 059 41.7361 -84.7245 +US 49239 Frontier Michigan MI Hillsdale 059 41.7825 -84.6047 +US 49242 Hillsdale Michigan MI Hillsdale 059 41.924 -84.6208 +US 49249 Jerome Michigan MI Hillsdale 059 42.0484 -84.4455 +US 49250 Jonesville Michigan MI Hillsdale 059 41.9798 -84.6451 +US 49252 Litchfield Michigan MI Hillsdale 059 42.0369 -84.7673 +US 49257 Moscow Michigan MI Hillsdale 059 42.0548 -84.5039 +US 49258 Mosherville Michigan MI Hillsdale 059 41.8848 -84.5935 +US 49262 North Adams Michigan MI Hillsdale 059 41.9715 -84.5208 +US 49266 Osseo Michigan MI Hillsdale 059 41.8384 -84.5974 +US 49271 Pittsford Michigan MI Hillsdale 059 41.8963 -84.444 +US 49273 Prattville Michigan MI Hillsdale County 059 41.7821 -84.3914 +US 49274 Reading Michigan MI Hillsdale 059 41.8442 -84.7648 +US 49281 Somerset Michigan MI Hillsdale 059 42.023 -84.3794 +US 49282 Somerset Center Michigan MI Hillsdale 059 42.0388 -84.406 +US 49288 Waldron Michigan MI Hillsdale 059 41.7386 -84.4496 +US 49905 Atlantic Mine Michigan MI Houghton 061 47.0937 -88.6613 +US 49913 Calumet Michigan MI Houghton 061 47.2439 -88.4588 +US 49916 Chassell Michigan MI Houghton 061 47.002 -88.5546 +US 49917 Copper City Michigan MI Houghton 061 47.2842 -88.3875 +US 49921 Dodgeville Michigan MI Houghton 061 47.0914 -88.5809 +US 49922 Dollar Bay Michigan MI Houghton 061 47.1203 -88.4613 +US 49930 Hancock Michigan MI Houghton 061 47.1367 -88.5654 +US 49931 Houghton Michigan MI Houghton 061 47.1158 -88.558 +US 49934 Hubbell Michigan MI Houghton 061 47.1671 -88.4668 +US 49942 Kearsarge Michigan MI Houghton 061 47.2694 -88.4184 +US 49945 Lake Linden Michigan MI Houghton 061 47.1784 -88.2973 +US 49952 Nisula Michigan MI Houghton 061 46.7748 -88.8799 +US 49955 Painesdale Michigan MI Houghton 061 47.0404 -88.6704 +US 49958 Pelkie Michigan MI Houghton 061 46.7949 -88.6251 +US 49961 Sidnaw Michigan MI Houghton 061 46.5015 -88.7972 +US 49963 South Range Michigan MI Houghton 061 47.0719 -88.652 +US 49965 Toivola Michigan MI Houghton 061 46.9109 -88.8532 +US 48413 Bad Axe Michigan MI Huron 063 43.8067 -83.0054 +US 48432 Filion Michigan MI Huron 063 43.9014 -82.9825 +US 48441 Harbor Beach Michigan MI Huron 063 43.8312 -82.6886 +US 48445 Kinde Michigan MI Huron 063 43.948 -82.9755 +US 48467 Port Austin Michigan MI Huron 063 44.0223 -82.9984 +US 48468 Port Hope Michigan MI Huron 063 43.928 -82.7529 +US 48470 Ruth Michigan MI Huron 063 43.7404 -82.7414 +US 48475 Ubly Michigan MI Huron 063 43.6896 -82.964 +US 48720 Bay Port Michigan MI Huron 063 43.8377 -83.3525 +US 48725 Caseville Michigan MI Huron 063 43.9429 -83.2659 +US 48731 Elkton Michigan MI Huron 063 43.8344 -83.1786 +US 48754 Owendale Michigan MI Huron 063 43.7206 -83.2307 +US 48755 Pigeon Michigan MI Huron 063 43.8179 -83.2755 +US 48759 Sebewaing Michigan MI Huron 063 43.7289 -83.4366 +US 48805 Okemos Michigan MI Ingham 065 42.5992 -84.372 +US 48819 Dansville Michigan MI Ingham 065 42.5505 -84.2939 +US 48823 East Lansing Michigan MI Ingham 065 42.7388 -84.4764 +US 48824 East Lansing Michigan MI Ingham 065 42.7283 -84.4882 +US 48825 East Lansing Michigan MI Ingham 065 42.7238 -84.4648 +US 48826 East Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 48840 Haslett Michigan MI Ingham 065 42.7531 -84.3989 +US 48842 Holt Michigan MI Ingham 065 42.6394 -84.5242 +US 48854 Mason Michigan MI Ingham 065 42.5796 -84.4561 +US 48864 Okemos Michigan MI Ingham 065 42.7053 -84.4187 +US 48892 Webberville Michigan MI Ingham 065 42.663 -84.1701 +US 48895 Williamston Michigan MI Ingham 065 42.6967 -84.2926 +US 48900 Lansing Michigan MI Ingham County 065 42.7039 -84.6228 +US 48901 Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 48906 Lansing Michigan MI Ingham 065 42.7635 -84.558 +US 48909 Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 48910 Lansing Michigan MI Ingham 065 42.7008 -84.549 +US 48911 Lansing Michigan MI Ingham 065 42.6797 -84.5772 +US 48912 Lansing Michigan MI Ingham 065 42.7371 -84.5244 +US 48913 Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 48915 Lansing Michigan MI Ingham 065 42.7391 -84.5704 +US 48916 Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 48918 Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 48919 Lansing Michigan MI Ingham 065 42.7286 -84.5517 +US 48921 Lansing Michigan MI Ingham 065 42.7237 -84.5556 +US 48922 Lansing Michigan MI Ingham 065 42.7325 -84.5587 +US 48924 Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 48929 Lansing Michigan MI Ingham 065 42.7325 -84.5587 +US 48930 Lansing Michigan MI Ingham 065 42.7325 -84.5587 +US 48933 Lansing Michigan MI Ingham 065 42.7334 -84.5571 +US 48937 Lansing Michigan MI Ingham 065 42.7487 -84.559 +US 48950 Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 48951 Lansing Michigan MI Ingham County 065 42.7035 -84.5365 +US 48956 Lansing Michigan MI Ingham 065 42.7325 -84.5587 +US 48980 Lansing Michigan MI Ingham 065 42.5992 -84.372 +US 49251 Leslie Michigan MI Ingham 065 42.4603 -84.4207 +US 49264 Onondaga Michigan MI Ingham 065 42.4487 -84.5535 +US 49285 Stockbridge Michigan MI Ingham 065 42.4604 -84.1752 +US 48809 Belding Michigan MI Ionia 067 43.0885 -85.2313 +US 48815 Clarksville Michigan MI Ionia 067 42.8302 -85.2494 +US 48845 Hubbardston Michigan MI Ionia 067 43.0828 -84.8173 +US 48846 Ionia Michigan MI Ionia 067 42.9859 -85.071 +US 48849 Lake Odessa Michigan MI Ionia 067 42.7863 -85.1357 +US 48851 Lyons Michigan MI Ionia 067 42.9634 -84.9209 +US 48860 Muir Michigan MI Ionia 067 43.0439 -84.9391 +US 48865 Orleans Michigan MI Ionia 067 43.0895 -85.1165 +US 48870 Palo Michigan MI Ionia 067 43.1136 -85.0077 +US 48873 Pewamo Michigan MI Ionia 067 43.0007 -84.8492 +US 48875 Portland Michigan MI Ionia 067 42.8624 -84.9139 +US 48881 Saranac Michigan MI Ionia 067 42.9357 -85.203 +US 48887 Smyrna Michigan MI Ionia 067 42.9449 -85.0747 +US 48730 East Tawas Michigan MI Iosco 069 44.3008 -83.4776 +US 48739 Hale Michigan MI Iosco 069 44.3819 -83.8359 +US 48743 Long Lake Michigan MI Iosco 069 44.4416 -83.8516 +US 48748 National City Michigan MI Iosco 069 44.3137 -83.6839 +US 48750 Oscoda Michigan MI Iosco 069 44.4465 -83.3619 +US 48753 Oscoda Michigan MI Iosco County 069 44.4418 -83.36 +US 48763 Tawas City Michigan MI Iosco 069 44.2675 -83.5449 +US 48764 Tawas City Michigan MI Iosco 069 44.2665 -83.5192 +US 48770 Whittemore Michigan MI Iosco 069 44.2325 -83.8068 +US 49902 Alpha Michigan MI Iron 071 46.031 -88.3771 +US 49903 Amasa Michigan MI Iron 071 46.2494 -88.4176 +US 49915 Caspian Michigan MI Iron 071 46.0657 -88.631 +US 49920 Crystal Falls Michigan MI Iron 071 46.1093 -88.3505 +US 49927 Gaastra Michigan MI Iron 071 46.0526 -88.5917 +US 49935 Iron River Michigan MI Iron 071 46.093 -88.646 +US 49943 Kenton Michigan MI Iron County 071 46.5046 -88.8273 +US 49964 Stambaugh Michigan MI Iron 071 46.0797 -88.629 +US 48804 Mount Pleasant Michigan MI Isabella 073 43.6406 -84.8474 +US 48858 Mount Pleasant Michigan MI Isabella 073 43.6013 -84.7736 +US 48859 Mount Pleasant Michigan MI Isabella 073 43.5647 -84.8473 +US 48878 Rosebush Michigan MI Isabella 073 43.6843 -84.7833 +US 48883 Shepherd Michigan MI Isabella 073 43.5657 -84.5873 +US 48893 Weidman Michigan MI Isabella 073 43.6453 -85.0046 +US 48896 Winn Michigan MI Isabella 073 43.5308 -84.9063 +US 49310 Blanchard Michigan MI Isabella 073 43.5228 -85.0589 +US 49201 Jackson Michigan MI Jackson 075 42.2545 -84.3875 +US 49202 Jackson Michigan MI Jackson 075 42.2634 -84.4083 +US 49203 Jackson Michigan MI Jackson 075 42.229 -84.4132 +US 49204 Jackson Michigan MI Jackson 075 42.2528 -84.2138 +US 49230 Brooklyn Michigan MI Jackson 075 42.1044 -84.2414 +US 49234 Clarklake Michigan MI Jackson 075 42.1235 -84.3521 +US 49237 Concord Michigan MI Jackson 075 42.1875 -84.6529 +US 49240 Grass Lake Michigan MI Jackson 075 42.2711 -84.194 +US 49241 Hanover Michigan MI Jackson 075 42.1025 -84.5848 +US 49246 Horton Michigan MI Jackson 075 42.1191 -84.4976 +US 49254 Michigan Center Michigan MI Jackson 075 42.2271 -84.3161 +US 49259 Munith Michigan MI Jackson 075 42.3703 -84.2485 +US 49261 Napoleon Michigan MI Jackson 075 42.1643 -84.2458 +US 49263 Norvell Michigan MI Jackson 075 42.1582 -84.1838 +US 49269 Parma Michigan MI Jackson 075 42.2739 -84.5999 +US 49272 Pleasant Lake Michigan MI Jackson 075 42.3903 -84.3428 +US 49277 Rives Junction Michigan MI Jackson 075 42.3887 -84.4589 +US 49283 Spring Arbor Michigan MI Jackson 075 42.2069 -84.5501 +US 49284 Springport Michigan MI Jackson 075 42.3805 -84.7039 +US 49001 Kalamazoo Michigan MI Kalamazoo 077 42.2736 -85.5457 +US 49002 Portage Michigan MI Kalamazoo 077 42.1938 -85.5639 +US 49003 Kalamazoo Michigan MI Kalamazoo 077 42.2454 -85.5299 +US 49004 Kalamazoo Michigan MI Kalamazoo 077 42.3518 -85.5621 +US 49005 Kalamazoo Michigan MI Kalamazoo 077 42.323 -85.4932 +US 49006 Kalamazoo Michigan MI Kalamazoo 077 42.2922 -85.633 +US 49007 Kalamazoo Michigan MI Kalamazoo 077 42.3024 -85.5882 +US 49008 Kalamazoo Michigan MI Kalamazoo 077 42.2624 -85.6096 +US 49009 Kalamazoo Michigan MI Kalamazoo 077 42.2809 -85.6863 +US 49012 Augusta Michigan MI Kalamazoo 077 42.3563 -85.354 +US 49019 Kalamazoo Michigan MI Kalamazoo 077 42.2454 -85.5299 +US 49024 Portage Michigan MI Kalamazoo 077 42.1974 -85.6194 +US 49034 Climax Michigan MI Kalamazoo 077 42.234 -85.3238 +US 49041 Comstock Michigan MI Kalamazoo 077 42.2454 -85.5299 +US 49048 Kalamazoo Michigan MI Kalamazoo 077 42.3189 -85.5152 +US 49052 Fulton Michigan MI Kalamazoo 077 42.1391 -85.3227 +US 49053 Galesburg Michigan MI Kalamazoo 077 42.2948 -85.4237 +US 49074 Nazareth Michigan MI Kalamazoo 077 42.2454 -85.5299 +US 49077 Oshtemo Michigan MI Kalamazoo 077 42.2454 -85.5299 +US 49081 Portage Michigan MI Kalamazoo 077 42.1718 -85.6178 +US 49083 Richland Michigan MI Kalamazoo 077 42.3757 -85.4447 +US 49087 Schoolcraft Michigan MI Kalamazoo 077 42.1329 -85.6637 +US 49088 Scotts Michigan MI Kalamazoo 077 42.1819 -85.4685 +US 49097 Vicksburg Michigan MI Kalamazoo 077 42.1209 -85.5024 +US 49646 Kalkaska Michigan MI Kalkaska 079 44.7355 -85.1207 +US 49676 Rapid City Michigan MI Kalkaska 079 44.8449 -85.2943 +US 49680 South Boardman Michigan MI Kalkaska 079 44.6401 -85.2472 +US 49301 Ada Michigan MI Kent 081 42.9566 -85.481 +US 49302 Alto Michigan MI Kent 081 42.8243 -85.4256 +US 49306 Belmont Michigan MI Kent 081 43.075 -85.5632 +US 49315 Byron Center Michigan MI Kent 081 42.8016 -85.7136 +US 49316 Caledonia Michigan MI Kent 081 42.8187 -85.5244 +US 49317 Cannonsburg Michigan MI Kent 081 43.0712 -85.4809 +US 49319 Cedar Springs Michigan MI Kent 081 43.2215 -85.5452 +US 49321 Comstock Park Michigan MI Kent 081 43.0578 -85.6845 +US 49330 Kent City Michigan MI Kent 081 43.2362 -85.7399 +US 49331 Lowell Michigan MI Kent 081 42.955 -85.3653 +US 49341 Rockford Michigan MI Kent 081 43.1152 -85.5136 +US 49343 Sand Lake Michigan MI Kent 081 43.2981 -85.5367 +US 49345 Sparta Michigan MI Kent 081 43.1619 -85.6877 +US 49351 Rockford Michigan MI Kent 081 43.0314 -85.5503 +US 49355 Ada Michigan MI Kent 081 43.0314 -85.5503 +US 49356 Ada Michigan MI Kent 081 43.0314 -85.5503 +US 49357 Ada Michigan MI Kent 081 43.0314 -85.5503 +US 49418 Grandville Michigan MI Kent 081 42.8939 -85.7619 +US 49468 Grandville Michigan MI Kent 081 43.0314 -85.5503 +US 49501 Grand Rapids Michigan MI Kent 081 42.9842 -85.6291 +US 49502 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49503 Grand Rapids Michigan MI Kent 081 42.9659 -85.6527 +US 49504 Grand Rapids Michigan MI Kent 081 42.9737 -85.7265 +US 49505 Grand Rapids Michigan MI Kent 081 43.012 -85.6309 +US 49506 Grand Rapids Michigan MI Kent 081 42.944 -85.6213 +US 49507 Grand Rapids Michigan MI Kent 081 42.9318 -85.6542 +US 49508 Grand Rapids Michigan MI Kent 081 42.8894 -85.6219 +US 49509 Grand Rapids Michigan MI Kent 081 42.8975 -85.6929 +US 49510 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49512 Grand Rapids Michigan MI Kent 081 42.8802 -85.5352 +US 49514 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49515 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49516 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49518 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49519 Wyoming Michigan MI Kent County 081 42.8977 -85.7186 +US 49523 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49525 Grand Rapids Michigan MI Kent 081 43.0135 -85.6027 +US 49528 Grand Rapids Michigan MI Kent County 081 42.8811 -85.6239 +US 49530 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49544 Grand Rapids Michigan MI Kent 081 43.0073 -85.7255 +US 49546 Grand Rapids Michigan MI Kent 081 42.928 -85.5483 +US 49548 Grand Rapids Michigan MI Kent 081 42.8697 -85.6628 +US 49550 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49555 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49560 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49588 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49599 Grand Rapids Michigan MI Kent 081 43.0314 -85.5503 +US 49805 Allouez Michigan MI Keweenaw 083 47.2879 -88.4129 +US 49901 Ahmeek Michigan MI Keweenaw 083 47.2933 -88.3897 +US 49918 Copper Harbor Michigan MI Keweenaw 083 47.4716 -87.9463 +US 49924 Eagle River Michigan MI Keweenaw County 083 47.4138 -88.2954 +US 49950 Mohawk Michigan MI Keweenaw 083 47.3526 -88.2889 +US 49304 Baldwin Michigan MI Lake 085 43.8894 -85.8819 +US 49402 Branch Michigan MI Lake 085 43.9333 -86.0345 +US 49623 Chase Michigan MI Lake 085 43.8682 -85.6196 +US 49642 Idlewild Michigan MI Lake 085 43.8872 -85.7759 +US 49644 Irons Michigan MI Lake 085 44.0966 -85.939 +US 49656 Luther Michigan MI Lake 085 44.0545 -85.6826 +US 48003 Almont Michigan MI Lapeer 087 42.926 -83.0362 +US 48412 Attica Michigan MI Lapeer 087 43.0547 -83.1668 +US 48421 Columbiaville Michigan MI Lapeer 087 43.1503 -83.3811 +US 48428 Dryden Michigan MI Lapeer 087 42.9378 -83.1501 +US 48440 Hadley Michigan MI Lapeer 087 42.9306 -83.36 +US 48444 Imlay City Michigan MI Lapeer 087 43.0425 -83.0708 +US 48446 Lapeer Michigan MI Lapeer 087 43.0579 -83.3332 +US 48455 Metamora Michigan MI Lapeer 087 42.9424 -83.3184 +US 48461 North Branch Michigan MI Lapeer 087 43.2069 -83.2267 +US 48464 Otter Lake Michigan MI Lapeer 087 43.2183 -83.4242 +US 48727 Clifford Michigan MI Lapeer 087 43.31 -83.1741 +US 48760 Silverwood Michigan MI Lapeer 087 43.3141 -83.272 +US 49621 Cedar Michigan MI Leelanau 089 44.8605 -85.8138 +US 49630 Empire Michigan MI Leelanau 089 44.8144 -85.9999 +US 49636 Glen Arbor Michigan MI Leelanau 089 44.8734 -85.9887 +US 49653 Lake Leelanau Michigan MI Leelanau 089 44.9856 -85.7329 +US 49654 Leland Michigan MI Leelanau 089 45.0793 -85.9896 +US 49664 Maple City Michigan MI Leelanau 089 44.859 -85.8814 +US 49670 Northport Michigan MI Leelanau 089 45.1157 -85.6173 +US 49674 Omena Michigan MI Leelanau 089 45.0666 -85.5974 +US 49682 Suttons Bay Michigan MI Leelanau 089 44.9656 -85.6423 +US 49220 Addison Michigan MI Lenawee 091 42.0036 -84.3122 +US 49221 Adrian Michigan MI Lenawee 091 41.9005 -84.0446 +US 49228 Blissfield Michigan MI Lenawee 091 41.8276 -83.8773 +US 49229 Britton Michigan MI Lenawee 091 41.9887 -83.8377 +US 49233 Cement City Michigan MI Lenawee 091 42.0604 -84.3254 +US 49235 Clayton Michigan MI Lenawee 091 41.8636 -84.2147 +US 49236 Clinton Michigan MI Lenawee 091 42.0639 -83.9442 +US 49238 Deerfield Michigan MI Lenawee 091 41.8909 -83.7847 +US 49247 Hudson Michigan MI Lenawee 091 41.8581 -84.338 +US 49248 Jasper Michigan MI Lenawee 091 41.7704 -84.0011 +US 49253 Manitou Beach Michigan MI Lenawee 091 41.9671 -84.2767 +US 49256 Morenci Michigan MI Lenawee 091 41.7386 -84.2192 +US 49265 Onsted Michigan MI Lenawee 091 42.0295 -84.1839 +US 49268 Palmyra Michigan MI Lenawee 091 41.8729 -83.9263 +US 49275 Ridgeway Michigan MI Lenawee 091 41.988 -83.8657 +US 49276 Riga Michigan MI Lenawee 091 41.7953 -83.8011 +US 49278 Rollin Michigan MI Lenawee 091 41.9123 -84.3265 +US 49279 Sand Creek Michigan MI Lenawee 091 41.7793 -84.0755 +US 49280 Seneca Michigan MI Lenawee 091 41.7958 -84.1866 +US 49286 Tecumseh Michigan MI Lenawee 091 41.9953 -83.9555 +US 49287 Tipton Michigan MI Lenawee 091 42.0369 -84.0768 +US 49289 Weston Michigan MI Lenawee 091 41.7683 -84.1076 +US 48114 Brighton Michigan MI Livingston 093 42.57 -83.7484 +US 48116 Brighton Michigan MI Livingston 093 42.5371 -83.7756 +US 48137 Gregory Michigan MI Livingston 093 42.496 -84.0847 +US 48139 Hamburg Michigan MI Livingston 093 42.4523 -83.8147 +US 48143 Lakeland Michigan MI Livingston 093 42.4573 -83.8366 +US 48169 Pinckney Michigan MI Livingston 093 42.4596 -83.9099 +US 48353 Hartland Michigan MI Livingston 093 42.6356 -83.7147 +US 48816 Cohoctah Michigan MI Livingston 093 42.7576 -83.939 +US 48836 Fowlerville Michigan MI Livingston 093 42.6614 -84.0721 +US 48843 Howell Michigan MI Livingston 093 42.6159 -83.9248 +US 48844 Howell Michigan MI Livingston 093 42.6035 -83.9112 +US 48855 Howell Michigan MI Livingston County 093 42.6871 -83.914 +US 48863 Oak Grove Michigan MI Livingston 093 42.6035 -83.9112 +US 49853 Mc Millan Michigan MI Luce 095 46.297 -85.7307 +US 49868 Newberry Michigan MI Luce 095 46.3438 -85.515 +US 49719 Cedarville Michigan MI Mackinac 097 46.0024 -84.3488 +US 49745 Hessel Michigan MI Mackinac 097 46.0217 -84.4284 +US 49757 Mackinac Island Michigan MI Mackinac 097 45.8578 -84.6245 +US 49760 Moran Michigan MI Mackinac 097 46.0441 -85.0078 +US 49762 Naubinway Michigan MI Mackinac 097 46.126 -85.4462 +US 49775 Pointe Aux Pins Michigan MI Mackinac 097 45.7549 -84.447 +US 49781 Saint Ignace Michigan MI Mackinac 097 45.9985 -84.6978 +US 49820 Curtis Michigan MI Mackinac 097 46.2048 -85.7865 +US 49827 Engadine Michigan MI Mackinac 097 46.204 -85.6005 +US 49838 Gould City Michigan MI Mackinac 097 46.0747 -85.7338 +US 48005 Armada Michigan MI Macomb 099 42.8409 -82.8899 +US 48015 Center Line Michigan MI Macomb 099 42.4788 -83.0248 +US 48021 Eastpointe Michigan MI Macomb 099 42.4658 -82.9459 +US 48026 Fraser Michigan MI Macomb 099 42.5423 -82.947 +US 48035 Clinton Township Michigan MI Macomb 099 42.5512 -82.9167 +US 48036 Clinton Township Michigan MI Macomb 099 42.5938 -82.9133 +US 48038 Clinton Township Michigan MI Macomb 099 42.6206 -82.9608 +US 48042 Macomb Michigan MI Macomb 099 42.6735 -82.9163 +US 48043 Mount Clemens Michigan MI Macomb 099 42.5978 -82.8823 +US 48044 Macomb Michigan MI Macomb 099 42.6442 -82.8985 +US 48045 Harrison Township Michigan MI Macomb 099 42.5877 -82.8215 +US 48046 Mount Clemens Michigan MI Macomb 099 42.6723 -82.9031 +US 48047 New Baltimore Michigan MI Macomb 099 42.673 -82.7753 +US 48048 New Haven Michigan MI Macomb 099 42.7443 -82.8042 +US 48050 New Haven Michigan MI Macomb 099 42.7859 -82.7979 +US 48051 New Baltimore Michigan MI Macomb 099 42.6938 -82.8207 +US 48062 Richmond Michigan MI Macomb 099 42.8389 -82.7996 +US 48065 Romeo Michigan MI Macomb 099 42.84 -83.0388 +US 48066 Roseville Michigan MI Macomb 099 42.5034 -82.9387 +US 48080 Saint Clair Shores Michigan MI Macomb 099 42.4706 -82.9022 +US 48081 Saint Clair Shores Michigan MI Macomb 099 42.4941 -82.899 +US 48082 Saint Clair Shores Michigan MI Macomb 099 42.5269 -82.8841 +US 48088 Warren Michigan MI Macomb 099 42.5164 -82.9832 +US 48089 Warren Michigan MI Macomb 099 42.4685 -82.9974 +US 48090 Warren Michigan MI Macomb 099 42.6723 -82.9031 +US 48091 Warren Michigan MI Macomb 099 42.4665 -83.0593 +US 48092 Warren Michigan MI Macomb 099 42.5125 -83.0643 +US 48093 Warren Michigan MI Macomb 099 42.5149 -82.9968 +US 48094 Washington Michigan MI Macomb 099 42.7262 -83.0268 +US 48095 Washington Michigan MI Macomb 099 42.7682 -83.0395 +US 48096 Ray Michigan MI Macomb 099 42.754 -82.9163 +US 48310 Sterling Heights Michigan MI Macomb 099 42.5648 -83.0701 +US 48311 Sterling Heights Michigan MI Macomb 099 42.6723 -82.9031 +US 48312 Sterling Heights Michigan MI Macomb 099 42.5592 -83.0029 +US 48313 Sterling Heights Michigan MI Macomb 099 42.6005 -82.9998 +US 48314 Sterling Heights Michigan MI Macomb 099 42.6124 -83.0345 +US 48315 Utica Michigan MI Macomb 099 42.671 -82.9988 +US 48316 Utica Michigan MI Macomb 099 42.6885 -83.0548 +US 48317 Utica Michigan MI Macomb 099 42.6413 -83.0504 +US 48318 Utica Michigan MI Macomb 099 42.6723 -82.9031 +US 48397 Warren Michigan MI Macomb 099 42.4917 -83.0402 +US 49613 Arcadia Michigan MI Manistee 101 44.5232 -86.2061 +US 49614 Bear Lake Michigan MI Manistee 101 44.4311 -86.1425 +US 49619 Brethren Michigan MI Manistee 101 44.2966 -85.9964 +US 49625 Copemish Michigan MI Manistee 101 44.4503 -85.8879 +US 49626 Eastlake Michigan MI Manistee 101 44.2413 -86.2913 +US 49634 Filer City Michigan MI Manistee 101 44.2382 -86.058 +US 49645 Kaleva Michigan MI Manistee 101 44.3692 -86.0467 +US 49660 Manistee Michigan MI Manistee 101 44.2635 -86.1825 +US 49675 Onekama Michigan MI Manistee 101 44.3646 -86.21 +US 49689 Wellston Michigan MI Manistee 101 44.2133 -85.9555 +US 49808 Big Bay Michigan MI Marquette 103 46.7708 -87.6726 +US 49814 Champion Michigan MI Marquette 103 46.4685 -87.8306 +US 49819 Arnold Michigan MI Marquette 103 46.6041 -87.6148 +US 49833 Little Lake Michigan MI Marquette 103 46.2797 -87.3311 +US 49841 Gwinn Michigan MI Marquette 103 46.3311 -87.4397 +US 49849 Ishpeming Michigan MI Marquette 103 46.4387 -87.7091 +US 49855 Marquette Michigan MI Marquette 103 46.5786 -87.4545 +US 49861 Michigamme Michigan MI Marquette 103 46.5308 -88.0914 +US 49865 National Mine Michigan MI Marquette 103 46.6041 -87.6148 +US 49866 Negaunee Michigan MI Marquette 103 46.5007 -87.5829 +US 49869 Northland Michigan MI Marquette County 103 46.073 -87.5954 +US 49871 Palmer Michigan MI Marquette 103 46.4416 -87.5764 +US 49879 Republic Michigan MI Marquette 103 46.368 -87.9938 +US 49885 Skandia Michigan MI Marquette 103 46.349 -87.2481 +US 49405 Custer Michigan MI Mason 105 43.9324 -86.1777 +US 49410 Fountain Michigan MI Mason 105 44.0363 -86.2169 +US 49411 Free Soil Michigan MI Mason 105 44.112 -86.2652 +US 49431 Ludington Michigan MI Mason 105 43.9688 -86.4403 +US 49454 Scottville Michigan MI Mason 105 43.9767 -86.3156 +US 49458 Walhalla Michigan MI Mason 105 43.9494 -86.1042 +US 49305 Barryton Michigan MI Mecosta 107 43.7507 -85.1547 +US 49307 Big Rapids Michigan MI Mecosta 107 43.6897 -85.4797 +US 49320 Chippewa Lake Michigan MI Mecosta 107 43.7553 -85.2783 +US 49332 Mecosta Michigan MI Mecosta 107 43.6813 -85.228 +US 49334 Millbrook Michigan MI Mecosta County 107 43.5487 -85.0883 +US 49336 Morley Michigan MI Mecosta 107 43.506 -85.4473 +US 49338 Paris Michigan MI Mecosta 107 43.7677 -85.5213 +US 49340 Remus Michigan MI Mecosta 107 43.6032 -85.1574 +US 49342 Rodney Michigan MI Mecosta 107 43.7379 -85.3219 +US 49346 Stanwood Michigan MI Mecosta 107 43.6017 -85.4446 +US 49812 Carney Michigan MI Menominee 109 45.5917 -87.5439 +US 49813 Cedar River Michigan MI Menominee 109 45.4485 -87.366 +US 49821 Daggett Michigan MI Menominee 109 45.4887 -87.6079 +US 49845 Harris Michigan MI Menominee 109 45.6922 -87.3513 +US 49847 Hermansville Michigan MI Menominee 109 45.7149 -87.6227 +US 49848 Ingalls Michigan MI Menominee 109 45.3748 -87.6206 +US 49858 Menominee Michigan MI Menominee 109 45.1343 -87.6215 +US 49863 Nadeau Michigan MI Menominee 109 45.6087 -87.5633 +US 49873 Perronville Michigan MI Menominee 109 45.841 -87.4816 +US 49874 Powers Michigan MI Menominee 109 45.6792 -87.5319 +US 49886 Spalding Michigan MI Menominee 109 45.6777 -87.4852 +US 49887 Stephenson Michigan MI Menominee 109 45.4166 -87.6258 +US 49893 Wallace Michigan MI Menominee 109 45.3017 -87.5805 +US 49896 Wilson Michigan MI Menominee 109 45.6649 -87.3997 +US 48618 Coleman Michigan MI Midland 111 43.7494 -84.5911 +US 48620 Edenville Michigan MI Midland 111 43.7774 -84.3813 +US 48628 Hope Michigan MI Midland 111 43.7882 -84.3296 +US 48640 Midland Michigan MI Midland 111 43.6376 -84.268 +US 48641 Midland Michigan MI Midland 111 43.5383 -84.3878 +US 48642 Midland Michigan MI Midland 111 43.6375 -84.1979 +US 48657 Sanford Michigan MI Midland 111 43.7204 -84.3954 +US 48667 Midland Michigan MI Midland 111 43.6473 -84.3873 +US 48670 Midland Michigan MI Midland 111 43.6375 -84.2568 +US 48674 Midland Michigan MI Midland 111 43.6129 -84.1971 +US 48686 Midland Michigan MI Midland 111 43.6473 -84.3873 +US 49632 Falmouth Michigan MI Missaukee 113 44.2529 -85.017 +US 49651 Lake City Michigan MI Missaukee 113 44.3767 -85.0946 +US 49657 Mc Bain Michigan MI Missaukee 113 44.2172 -85.2283 +US 49667 Merritt Michigan MI Missaukee 113 44.3433 -84.9446 +US 48110 Azalia Michigan MI Monroe 115 42.0082 -83.6643 +US 48117 Carleton Michigan MI Monroe 115 42.0529 -83.3755 +US 48131 Dundee Michigan MI Monroe 115 41.9514 -83.6522 +US 48133 Erie Michigan MI Monroe 115 41.7829 -83.4958 +US 48140 Ida Michigan MI Monroe 115 41.8549 -83.5916 +US 48144 Lambertville Michigan MI Monroe 115 41.7531 -83.6259 +US 48145 La Salle Michigan MI Monroe 115 41.8585 -83.4715 +US 48157 Luna Pier Michigan MI Monroe 115 41.8146 -83.4382 +US 48159 Maybee Michigan MI Monroe 115 42.0288 -83.5179 +US 48160 Milan Michigan MI Monroe 115 42.0914 -83.6776 +US 48161 Monroe Michigan MI Monroe 115 41.908 -83.4719 +US 48162 Monroe Michigan MI Monroe 115 41.9293 -83.4448 +US 48166 Newport Michigan MI Monroe 115 41.9766 -83.2804 +US 48177 Samaria Michigan MI Monroe 115 41.8076 -83.5793 +US 48179 South Rockwood Michigan MI Monroe 115 42.0624 -83.2663 +US 48182 Temperance Michigan MI Monroe 115 41.7682 -83.5797 +US 49267 Ottawa Lake Michigan MI Monroe 115 41.7683 -83.6856 +US 49270 Petersburg Michigan MI Monroe 115 41.8757 -83.6877 +US 48811 Carson City Michigan MI Montcalm 117 43.1695 -84.8653 +US 48812 Cedar Lake Michigan MI Montcalm 117 43.4138 -84.9753 +US 48818 Crystal Michigan MI Montcalm 117 43.2624 -84.8993 +US 48829 Edmore Michigan MI Montcalm 117 43.4116 -85.028 +US 48834 Fenwick Michigan MI Montcalm 117 43.1497 -85.0666 +US 48838 Greenville Michigan MI Montcalm 117 43.1793 -85.2497 +US 48850 Lakeview Michigan MI Montcalm 117 43.4269 -85.2924 +US 48852 Mcbrides Michigan MI Montcalm 117 43.3503 -85.0517 +US 48884 Sheridan Michigan MI Montcalm 117 43.2126 -85.0468 +US 48885 Sidney Michigan MI Montcalm 117 43.2358 -85.1207 +US 48886 Six Lakes Michigan MI Montcalm 117 43.4337 -85.1416 +US 48888 Stanton Michigan MI Montcalm 117 43.3058 -85.0995 +US 48891 Vestaburg Michigan MI Montcalm 117 43.387 -84.9082 +US 49322 Coral Michigan MI Montcalm 117 43.3645 -85.3792 +US 49326 Gowen Michigan MI Montcalm 117 43.2239 -85.3159 +US 49329 Howard City Michigan MI Montcalm 117 43.4083 -85.4856 +US 49339 Pierson Michigan MI Montcalm 117 43.3355 -85.5134 +US 49347 Trufant Michigan MI Montcalm 117 43.3156 -85.3685 +US 49709 Atlanta Michigan MI Montmorency 119 44.9924 -84.148 +US 49746 Hillman Michigan MI Montmorency 119 45.0691 -83.9468 +US 49756 Lewiston Michigan MI Montmorency 119 44.8538 -84.2973 +US 49303 Bailey Michigan MI Muskegon 121 43.2768 -85.8313 +US 49313 Brunswick Michigan MI Muskegon County 121 43.4337 -86.0414 +US 49318 Casnovia Michigan MI Muskegon 121 43.2381 -85.8254 +US 49415 Fruitport Michigan MI Muskegon 121 43.1443 -86.1388 +US 49425 Holton Michigan MI Muskegon 121 43.4415 -86.1509 +US 49437 Montague Michigan MI Muskegon 121 43.4242 -86.374 +US 49440 Muskegon Michigan MI Muskegon 121 43.2326 -86.2492 +US 49441 Muskegon Michigan MI Muskegon 121 43.1962 -86.2738 +US 49442 Muskegon Michigan MI Muskegon 121 43.2329 -86.1885 +US 49443 Muskegon Michigan MI Muskegon 121 43.2955 -86.4689 +US 49444 Muskegon Michigan MI Muskegon 121 43.1791 -86.1989 +US 49445 Muskegon Michigan MI Muskegon 121 43.2952 -86.279 +US 49451 Ravenna Michigan MI Muskegon 121 43.2091 -85.9648 +US 49457 Twin Lake Michigan MI Muskegon 121 43.3414 -86.1633 +US 49461 Whitehall Michigan MI Muskegon 121 43.3904 -86.3315 +US 49463 Wabaningo Michigan MI Muskegon 121 43.2955 -86.4689 +US 49309 Bitely Michigan MI Newaygo 123 43.7321 -85.8778 +US 49312 Brohman Michigan MI Newaygo 123 43.666 -85.7911 +US 49327 Grant Michigan MI Newaygo 123 43.3392 -85.8368 +US 49337 Newaygo Michigan MI Newaygo 123 43.4198 -85.7594 +US 49349 White Cloud Michigan MI Newaygo 123 43.5398 -85.7586 +US 49412 Fremont Michigan MI Newaygo 123 43.4652 -85.9626 +US 49413 Fremont Michigan MI Newaygo 123 43.5543 -85.8009 +US 48007 Troy Michigan MI Oakland 125 42.6061 -83.2976 +US 48009 Birmingham Michigan MI Oakland 125 42.5444 -83.2133 +US 48012 Birmingham Michigan MI Oakland 125 42.6044 -83.2924 +US 48017 Clawson Michigan MI Oakland 125 42.5365 -83.1503 +US 48025 Franklin Michigan MI Oakland 125 42.5219 -83.2519 +US 48030 Hazel Park Michigan MI Oakland 125 42.4608 -83.0982 +US 48033 Southfield Michigan MI Oakland County 125 42.4723 -83.294 +US 48034 Southfield Michigan MI Oakland 125 42.4969 -83.2911 +US 48037 Southfield Michigan MI Oakland 125 42.5675 -83.15 +US 48067 Royal Oak Michigan MI Oakland 125 42.4906 -83.1366 +US 48068 Royal Oak Michigan MI Oakland 125 42.6601 -83.3863 +US 48069 Pleasant Ridge Michigan MI Oakland 125 42.471 -83.1438 +US 48070 Huntington Woods Michigan MI Oakland 125 42.4825 -83.1749 +US 48071 Madison Heights Michigan MI Oakland 125 42.5016 -83.1027 +US 48072 Berkley Michigan MI Oakland 125 42.5028 -83.1887 +US 48073 Royal Oak Michigan MI Oakland 125 42.519 -83.157 +US 48075 Southfield Michigan MI Oakland 125 42.4638 -83.2255 +US 48076 Southfield Michigan MI Oakland 125 42.4981 -83.2058 +US 48083 Troy Michigan MI Oakland 125 42.5597 -83.1138 +US 48084 Troy Michigan MI Oakland 125 42.5627 -83.1799 +US 48085 Troy Michigan MI Oakland 125 42.6006 -83.1198 +US 48086 Southfield Michigan MI Oakland 125 42.6601 -83.3863 +US 48098 Troy Michigan MI Oakland 125 42.5991 -83.1789 +US 48099 Troy Michigan MI Oakland 125 42.5876 -83.1737 +US 48165 New Hudson Michigan MI Oakland 125 42.5076 -83.6342 +US 48178 South Lyon Michigan MI Oakland 125 42.4567 -83.659 +US 48220 Ferndale Michigan MI Oakland 125 42.4586 -83.1363 +US 48237 Oak Park Michigan MI Oakland 125 42.4662 -83.184 +US 48301 Bloomfield Hills Michigan MI Oakland 125 42.5445 -83.2792 +US 48302 Bloomfield Hills Michigan MI Oakland 125 42.5848 -83.2821 +US 48303 Bloomfield Hills Michigan MI Oakland 125 42.6601 -83.3863 +US 48304 Bloomfield Hills Michigan MI Oakland 125 42.587 -83.2359 +US 48306 Rochester Michigan MI Oakland 125 42.7262 -83.1566 +US 48307 Rochester Michigan MI Oakland 125 42.6593 -83.1225 +US 48308 Rochester Michigan MI Oakland 125 42.6385 -83.1314 +US 48309 Rochester Michigan MI Oakland 125 42.6626 -83.1837 +US 48320 Keego Harbor Michigan MI Oakland 125 42.6114 -83.3356 +US 48321 Auburn Hills Michigan MI Oakland 125 42.6601 -83.3863 +US 48322 West Bloomfield Michigan MI Oakland 125 42.5424 -83.3793 +US 48323 West Bloomfield Michigan MI Oakland 125 42.5683 -83.3805 +US 48324 West Bloomfield Michigan MI Oakland 125 42.5961 -83.3819 +US 48325 West Bloomfield Michigan MI Oakland 125 42.6601 -83.3863 +US 48326 Auburn Hills Michigan MI Oakland 125 42.6583 -83.2375 +US 48327 Waterford Michigan MI Oakland 125 42.6438 -83.4076 +US 48328 Waterford Michigan MI Oakland 125 42.6429 -83.3546 +US 48329 Waterford Michigan MI Oakland 125 42.6877 -83.3879 +US 48330 Drayton Plains Michigan MI Oakland 125 42.6754 -83.3637 +US 48331 Farmington Michigan MI Oakland 125 42.5051 -83.4072 +US 48332 Farmington Michigan MI Oakland 125 42.6601 -83.3863 +US 48333 Farmington Michigan MI Oakland 125 42.6601 -83.3863 +US 48334 Farmington Michigan MI Oakland 125 42.5065 -83.3484 +US 48335 Farmington Michigan MI Oakland 125 42.4617 -83.4053 +US 48336 Farmington Michigan MI Oakland 125 42.4656 -83.3638 +US 48340 Pontiac Michigan MI Oakland 125 42.668 -83.2893 +US 48341 Pontiac Michigan MI Oakland 125 42.6294 -83.3041 +US 48342 Pontiac Michigan MI Oakland 125 42.6439 -83.2792 +US 48343 Pontiac Michigan MI Oakland 125 42.6601 -83.3863 +US 48346 Clarkston Michigan MI Oakland 125 42.7239 -83.4232 +US 48347 Clarkston Michigan MI Oakland 125 42.6601 -83.3863 +US 48348 Clarkston Michigan MI Oakland 125 42.7605 -83.404 +US 48350 Davisburg Michigan MI Oakland 125 42.7496 -83.5358 +US 48356 Highland Michigan MI Oakland 125 42.6692 -83.5895 +US 48357 Highland Michigan MI Oakland 125 42.6595 -83.637 +US 48359 Lake Orion Michigan MI Oakland 125 42.7231 -83.2769 +US 48360 Lake Orion Michigan MI Oakland 125 42.7429 -83.272 +US 48361 Lake Orion Michigan MI Oakland 125 42.6601 -83.3863 +US 48362 Lake Orion Michigan MI Oakland 125 42.7763 -83.2748 +US 48363 Oakland Michigan MI Oakland 125 42.7732 -83.1711 +US 48366 Lakeville Michigan MI Oakland 125 42.8033 -83.1841 +US 48367 Leonard Michigan MI Oakland 125 42.8437 -83.1406 +US 48370 Oxford Michigan MI Oakland 125 42.8265 -83.2005 +US 48371 Oxford Michigan MI Oakland 125 42.8223 -83.2829 +US 48374 Novi Michigan MI Oakland 125 42.4735 -83.5224 +US 48375 Novi Michigan MI Oakland 125 42.4604 -83.4577 +US 48376 Novi Michigan MI Oakland 125 42.471 -83.4748 +US 48377 Novi Michigan MI Oakland 125 42.4992 -83.4773 +US 48380 Milford Michigan MI Oakland 125 42.602 -83.6508 +US 48381 Milford Michigan MI Oakland 125 42.5758 -83.5924 +US 48382 Commerce Township Michigan MI Oakland 125 42.5834 -83.5009 +US 48383 White Lake Michigan MI Oakland 125 42.658 -83.5398 +US 48386 White Lake Michigan MI Oakland 125 42.641 -83.4738 +US 48387 Union Lake Michigan MI Oakland 125 42.7253 -83.3116 +US 48390 Walled Lake Michigan MI Oakland 125 42.5582 -83.4773 +US 48391 Walled Lake Michigan MI Oakland 125 42.6601 -83.3863 +US 48393 Wixom Michigan MI Oakland 125 42.534 -83.5285 +US 48398 Clawson Michigan MI Oakland 125 42.6601 -83.3863 +US 48442 Holly Michigan MI Oakland 125 42.7905 -83.6127 +US 48462 Ortonville Michigan MI Oakland 125 42.8409 -83.4288 +US 49420 Hart Michigan MI Oceana 127 43.7068 -86.3142 +US 49421 Hesperia Michigan MI Oceana 127 43.5965 -86.0607 +US 49436 Mears Michigan MI Oceana 127 43.6825 -86.4533 +US 49446 New Era Michigan MI Oceana 127 43.5556 -86.3448 +US 49449 Pentwater Michigan MI Oceana 127 43.8237 -86.3868 +US 49452 Rothbury Michigan MI Oceana 127 43.5116 -86.3446 +US 49455 Shelby Michigan MI Oceana 127 43.6079 -86.3615 +US 49459 Walkerville Michigan MI Oceana 127 43.7626 -86.083 +US 48610 Alger Michigan MI Ogemaw 129 44.1395 -84.1872 +US 48635 Lupton Michigan MI Ogemaw 129 44.3976 -83.9905 +US 48654 Rose City Michigan MI Ogemaw 129 44.4167 -84.1256 +US 48661 West Branch Michigan MI Ogemaw 129 44.279 -84.2286 +US 48756 Prescott Michigan MI Ogemaw 129 44.21 -84.0212 +US 48761 South Branch Michigan MI Ogemaw 129 44.5014 -83.8686 +US 49910 Bergland Michigan MI Ontonagon 131 46.5881 -89.5973 +US 49912 Bruce Crossing Michigan MI Ontonagon 131 46.528 -89.168 +US 49925 Ewen Michigan MI Ontonagon 131 46.5404 -89.3145 +US 49929 Greenland Michigan MI Ontonagon 131 46.7809 -89.1146 +US 49948 Mass City Michigan MI Ontonagon 131 46.7474 -89.0649 +US 49953 Ontonagon Michigan MI Ontonagon 131 46.8275 -89.3485 +US 49960 Rockland Michigan MI Ontonagon 131 46.7537 -89.1958 +US 49967 Trout Creek Michigan MI Ontonagon 131 46.4864 -89.027 +US 49971 White Pine Michigan MI Ontonagon 131 46.7827 -89.5974 +US 49631 Evart Michigan MI Osceola 133 43.8888 -85.2649 +US 49639 Hersey Michigan MI Osceola 133 43.8481 -85.4059 +US 49655 Leroy Michigan MI Osceola 133 44.0457 -85.43 +US 49665 Marion Michigan MI Osceola 133 44.0463 -85.155 +US 49677 Reed City Michigan MI Osceola 133 43.8868 -85.513 +US 49679 Sears Michigan MI Osceola 133 43.8776 -85.1465 +US 49688 Tustin Michigan MI Osceola 133 44.1072 -85.4901 +US 48619 Comins Michigan MI Oscoda 135 44.8264 -84.0261 +US 48621 Fairview Michigan MI Oscoda 135 44.7205 -84.0525 +US 48636 Luzerne Michigan MI Oscoda 135 44.6001 -84.2931 +US 48647 Mio Michigan MI Oscoda 135 44.6665 -84.1353 +US 49647 Karlin Michigan MI Oscoda County 135 44.5691 -85.7941 +US 49730 Elmira Michigan MI Otsego 137 45.0346 -84.8303 +US 49734 Gaylord Michigan MI Otsego 137 45.0284 -84.6122 +US 49735 Gaylord Michigan MI Otsego 137 45.0125 -84.6723 +US 49751 Johannesburg Michigan MI Otsego 137 45.0152 -84.3857 +US 49795 Vanderbilt Michigan MI Otsego 137 45.1532 -84.6511 +US 49797 Waters Michigan MI Otsego 137 44.8702 -84.6598 +US 49401 Allendale Michigan MI Ottawa 139 42.9711 -85.9249 +US 49403 Conklin Michigan MI Ottawa 139 43.1494 -85.8538 +US 49404 Coopersville Michigan MI Ottawa 139 43.0601 -85.9517 +US 49409 Ferrysburg Michigan MI Ottawa 139 43.0809 -86.2154 +US 49417 Grand Haven Michigan MI Ottawa 139 43.0378 -86.1912 +US 49422 Holland Michigan MI Ottawa 139 42.9856 -86.4448 +US 49423 Holland Michigan MI Ottawa 139 42.7692 -86.1164 +US 49424 Holland Michigan MI Ottawa 139 42.8135 -86.1426 +US 49426 Hudsonville Michigan MI Ottawa 139 42.8748 -85.8751 +US 49427 Jamestown Michigan MI Ottawa 139 42.8267 -85.8444 +US 49428 Jenison Michigan MI Ottawa 139 42.9104 -85.8276 +US 49429 Jenison Michigan MI Ottawa 139 42.9856 -86.4448 +US 49430 Lamont Michigan MI Ottawa 139 43.0103 -85.8975 +US 49434 Macatawa Michigan MI Ottawa 139 42.7697 -86.2055 +US 49435 Marne Michigan MI Ottawa 139 43.0532 -85.842 +US 49448 Nunica Michigan MI Ottawa 139 43.0883 -86.1028 +US 49456 Spring Lake Michigan MI Ottawa 139 43.0887 -86.1915 +US 49460 West Olive Michigan MI Ottawa 139 42.9099 -86.1317 +US 49464 Zeeland Michigan MI Ottawa 139 42.8256 -86.0104 +US 49534 Grand Rapids Michigan MI Ottawa County 139 43.0141 -85.7543 +US 49909 Beechwood Michigan MI Ottawa County 139 46.0916 -88.644 +US 49743 Hawks Michigan MI Presque Isle 141 45.2975 -83.8542 +US 49759 Millersburg Michigan MI Presque Isle 141 45.4309 -84.0854 +US 49765 Onaway Michigan MI Presque Isle 141 45.3365 -84.2123 +US 49776 Posen Michigan MI Presque Isle 141 45.2233 -83.6393 +US 49777 Presque Isle Michigan MI Presque Isle 141 45.2969 -83.5023 +US 49779 Rogers City Michigan MI Presque Isle 141 45.4123 -83.8355 +US 48627 Higgins Lake Michigan MI Roscommon 143 44.3871 -84.7013 +US 48629 Houghton Lake Michigan MI Roscommon 143 44.3413 -84.7422 +US 48630 Houghton Lake Heights Michigan MI Roscommon 143 44.3322 -84.7194 +US 48651 Prudenville Michigan MI Roscommon 143 44.2974 -84.6627 +US 48653 Roscommon Michigan MI Roscommon 143 44.4839 -84.6601 +US 48656 Saint Helen Michigan MI Roscommon 143 44.3665 -84.4247 +US 48415 Birch Run Michigan MI Saginaw 145 43.2649 -83.7903 +US 48417 Burt Michigan MI Saginaw 145 43.2404 -83.9511 +US 48601 Saginaw Michigan MI Saginaw 145 43.4047 -83.9156 +US 48602 Saginaw Michigan MI Saginaw 145 43.4248 -83.9745 +US 48603 Saginaw Michigan MI Saginaw 145 43.4631 -84.0297 +US 48604 Saginaw Michigan MI Saginaw 145 43.4732 -83.9514 +US 48605 Saginaw Michigan MI Saginaw 145 43.4588 -84.0518 +US 48606 Saginaw Michigan MI Saginaw 145 43.3485 -84.0326 +US 48607 Saginaw Michigan MI Saginaw 145 43.4301 -83.9319 +US 48608 Saginaw Michigan MI Saginaw 145 43.3485 -84.0326 +US 48609 Saginaw Michigan MI Saginaw 145 43.3869 -84.0926 +US 48614 Brant Michigan MI Saginaw 145 43.2548 -84.2978 +US 48616 Chesaning Michigan MI Saginaw 145 43.1824 -84.1122 +US 48623 Freeland Michigan MI Saginaw 145 43.5161 -84.1822 +US 48626 Hemlock Michigan MI Saginaw 145 43.4099 -84.2266 +US 48637 Merrill Michigan MI Saginaw 145 43.3939 -84.3308 +US 48649 Oakley Michigan MI Saginaw 145 43.1505 -84.2094 +US 48655 Saint Charles Michigan MI Saginaw 145 43.2863 -84.1598 +US 48663 Saginaw Michigan MI Saginaw 145 43.4673 -83.9755 +US 48722 Bridgeport Michigan MI Saginaw 145 43.3553 -83.8549 +US 48724 Carrollton Michigan MI Saginaw 145 43.465 -83.9255 +US 48734 Frankenmuth Michigan MI Saginaw 145 43.341 -83.7475 +US 48787 Frankenmuth Michigan MI Saginaw 145 43.335 -83.7494 +US 48001 Algonac Michigan MI St. Clair 147 42.6367 -82.5866 +US 48002 Allenton Michigan MI St. Clair 147 42.9388 -82.9198 +US 48004 Anchorville Michigan MI St. Clair 147 42.8241 -82.6652 +US 48006 Avoca Michigan MI St. Clair 147 43.0752 -82.6955 +US 48014 Capac Michigan MI St. Clair 147 43.0263 -82.9298 +US 48022 Emmett Michigan MI St. Clair 147 42.9872 -82.7854 +US 48023 Fair Haven Michigan MI St. Clair 147 42.7023 -82.6688 +US 48027 Goodells Michigan MI St. Clair 147 42.9443 -82.6916 +US 48028 Harsens Island Michigan MI St. Clair 147 42.585 -82.586 +US 48032 Jeddo Michigan MI St. Clair 147 43.1223 -82.5998 +US 48039 Marine City Michigan MI St. Clair 147 42.6859 -82.5499 +US 48040 Marysville Michigan MI St. Clair 147 42.9135 -82.4813 +US 48041 Memphis Michigan MI St. Clair 147 42.941 -82.8046 +US 48049 North Street Michigan MI St. Clair 147 43.0349 -82.5748 +US 48054 East China Michigan MI St. Clair 147 42.7769 -82.5437 +US 48059 Fort Gratiot Michigan MI St. Clair 147 43.0888 -82.4905 +US 48060 Port Huron Michigan MI St. Clair 147 42.9958 -82.4599 +US 48061 Port Huron Michigan MI St. Clair 147 42.8241 -82.6652 +US 48063 Columbus Michigan MI St. Clair 147 42.8892 -82.6675 +US 48064 Casco Michigan MI St. Clair 147 42.7674 -82.6728 +US 48074 Smiths Creek Michigan MI St. Clair 147 42.9051 -82.5679 +US 48079 Saint Clair Michigan MI St. Clair 147 42.8255 -82.5133 +US 48097 Yale Michigan MI St. Clair 147 43.126 -82.8295 +US 49030 Burr Oak Michigan MI St. Joseph 149 41.8459 -85.3345 +US 49032 Centreville Michigan MI St. Joseph 149 41.9217 -85.4963 +US 49040 Colon Michigan MI St. Joseph 149 41.9576 -85.3306 +US 49042 Constantine Michigan MI St. Joseph 149 41.846 -85.6571 +US 49066 Leonidas Michigan MI St. Joseph 149 42.0294 -85.3497 +US 49072 Mendon Michigan MI St. Joseph 149 42.0143 -85.4727 +US 49075 Nottawa Michigan MI St. Joseph 149 41.9185 -85.4529 +US 49091 Sturgis Michigan MI St. Joseph 149 41.8089 -85.4264 +US 49093 Three Rivers Michigan MI St. Joseph 149 41.9596 -85.6371 +US 49099 White Pigeon Michigan MI St. Joseph 149 41.7929 -85.675 +US 48401 Applegate Michigan MI Sanilac 151 43.3619 -82.6479 +US 48410 Argyle Michigan MI Sanilac 151 43.5589 -82.9455 +US 48416 Brown City Michigan MI Sanilac 151 43.2171 -82.9978 +US 48419 Carsonville Michigan MI Sanilac 151 43.4258 -82.6022 +US 48422 Croswell Michigan MI Sanilac 151 43.2622 -82.6337 +US 48426 Decker Michigan MI Sanilac 151 43.4775 -83.0638 +US 48427 Deckerville Michigan MI Sanilac 151 43.5151 -82.7191 +US 48434 Forestville Michigan MI Sanilac 151 43.6632 -82.6133 +US 48450 Lexington Michigan MI Sanilac 151 43.2435 -82.5301 +US 48453 Marlette Michigan MI Sanilac 151 43.3399 -83.0573 +US 48454 Melvin Michigan MI Sanilac 151 43.193 -82.8393 +US 48456 Minden City Michigan MI Sanilac 151 43.6814 -82.7299 +US 48465 Palms Michigan MI Sanilac 151 43.6257 -82.7017 +US 48466 Peck Michigan MI Sanilac 151 43.2694 -82.8193 +US 48469 Port Sanilac Michigan MI Sanilac 151 43.4329 -82.5468 +US 48471 Sandusky Michigan MI Sanilac 151 43.4055 -82.8409 +US 48472 Snover Michigan MI Sanilac 151 43.4886 -82.9301 +US 49817 Cooks Michigan MI Schoolcraft 153 45.8997 -86.5307 +US 49836 Germfask Michigan MI Schoolcraft 153 46.2363 -85.9159 +US 49840 Gulliver Michigan MI Schoolcraft 153 46.0115 -86.0214 +US 49854 Manistique Michigan MI Schoolcraft 153 46.0062 -86.2555 +US 49883 Seney Michigan MI Schoolcraft 153 46.388 -85.9708 +US 48414 Bancroft Michigan MI Shiawassee 155 42.882 -84.1207 +US 48418 Byron Michigan MI Shiawassee 155 42.8059 -83.973 +US 48429 Durand Michigan MI Shiawassee 155 42.9117 -83.9877 +US 48460 New Lothrop Michigan MI Shiawassee 155 43.1388 -83.9851 +US 48476 Vernon Michigan MI Shiawassee 155 42.9406 -84.0328 +US 48817 Corunna Michigan MI Shiawassee 155 43.0414 -84.0276 +US 48841 Henderson Michigan MI Shiawassee 155 43.1143 -84.2369 +US 48848 Laingsburg Michigan MI Shiawassee 155 42.8627 -84.353 +US 48857 Morrice Michigan MI Shiawassee 155 42.8385 -84.1768 +US 48867 Owosso Michigan MI Shiawassee 155 42.9934 -84.1595 +US 48872 Perry Michigan MI Shiawassee 155 42.82 -84.2313 +US 48882 Shaftsburg Michigan MI Shiawassee 155 42.804 -84.2959 +US 48435 Fostoria Michigan MI Tuscola 157 43.2645 -83.3796 +US 48701 Akron Michigan MI Tuscola 157 43.5844 -83.5393 +US 48723 Caro Michigan MI Tuscola 157 43.4833 -83.3835 +US 48726 Cass City Michigan MI Tuscola 157 43.5797 -83.1733 +US 48729 Deford Michigan MI Tuscola 157 43.4735 -83.1702 +US 48733 Fairgrove Michigan MI Tuscola 157 43.5126 -83.5835 +US 48735 Gagetown Michigan MI Tuscola 157 43.6543 -83.2628 +US 48736 Gilford Michigan MI Tuscola 157 43.4944 -83.6244 +US 48741 Kingston Michigan MI Tuscola 157 43.3982 -83.1847 +US 48744 Mayville Michigan MI Tuscola 157 43.3562 -83.3725 +US 48746 Millington Michigan MI Tuscola 157 43.2718 -83.5619 +US 48757 Reese Michigan MI Tuscola 157 43.4531 -83.7015 +US 48758 Richville Michigan MI Tuscola 157 43.4073 -83.6762 +US 48767 Unionville Michigan MI Tuscola 157 43.6473 -83.4699 +US 48768 Vassar Michigan MI Tuscola 157 43.3691 -83.5844 +US 48769 Tuscola Michigan MI Tuscola 157 43.327 -83.6574 +US 49013 Bangor Michigan MI Van Buren 159 42.3312 -86.1311 +US 49026 Bloomingdale Michigan MI Van Buren 159 42.3842 -85.9568 +US 49027 Breedsville Michigan MI Van Buren 159 42.3465 -86.0725 +US 49043 Covert Michigan MI Van Buren 159 42.2911 -86.2743 +US 49045 Decatur Michigan MI Van Buren 159 42.1012 -86.0338 +US 49055 Gobles Michigan MI Van Buren 159 42.3702 -85.8536 +US 49056 Grand Junction Michigan MI Van Buren 159 42.3761 -86.0541 +US 49057 Hartford Michigan MI Van Buren 159 42.2088 -86.1687 +US 49062 Kendall Michigan MI Van Buren 159 42.3618 -85.8141 +US 49063 Lacota Michigan MI Van Buren 159 42.3936 -86.2099 +US 49064 Lawrence Michigan MI Van Buren 159 42.2076 -86.0525 +US 49065 Lawton Michigan MI Van Buren 159 42.1545 -85.829 +US 49071 Mattawan Michigan MI Van Buren 159 42.2451 -85.7943 +US 49079 Paw Paw Michigan MI Van Buren 159 42.2349 -85.9005 +US 49090 South Haven Michigan MI Van Buren 159 42.4041 -86.2542 +US 48103 Ann Arbor Michigan MI Washtenaw 161 42.2794 -83.784 +US 48104 Ann Arbor Michigan MI Washtenaw 161 42.2694 -83.7282 +US 48105 Ann Arbor Michigan MI Washtenaw 161 42.3042 -83.7068 +US 48106 Ann Arbor Michigan MI Washtenaw 161 42.2535 -83.8366 +US 48107 Ann Arbor Michigan MI Washtenaw 161 42.2535 -83.8366 +US 48108 Ann Arbor Michigan MI Washtenaw 161 42.2328 -83.7015 +US 48109 Ann Arbor Michigan MI Washtenaw 161 42.2763 -83.7112 +US 48113 Ann Arbor Michigan MI Washtenaw 161 42.2535 -83.8366 +US 48115 Bridgewater Michigan MI Washtenaw 161 42.1602 -83.9117 +US 48118 Chelsea Michigan MI Washtenaw 161 42.3207 -84.0334 +US 48130 Dexter Michigan MI Washtenaw 161 42.3583 -83.9 +US 48158 Manchester Michigan MI Washtenaw 161 42.1555 -84.0332 +US 48175 Salem Michigan MI Washtenaw 161 42.4056 -83.5781 +US 48176 Saline Michigan MI Washtenaw 161 42.1698 -83.7849 +US 48189 Whitmore Lake Michigan MI Washtenaw 161 42.4289 -83.7828 +US 48190 Whittaker Michigan MI Washtenaw 161 42.1244 -83.5946 +US 48191 Willis Michigan MI Washtenaw 161 42.1292 -83.5687 +US 48197 Ypsilanti Michigan MI Washtenaw 161 42.2325 -83.6336 +US 48198 Ypsilanti Michigan MI Washtenaw 161 42.2439 -83.583 +US 48101 Allen Park Michigan MI Wayne 163 42.2522 -83.212 +US 48102 Allen Park Michigan MI Wayne County 163 42.259 -83.2109 +US 48111 Belleville Michigan MI Wayne 163 42.1949 -83.4854 +US 48112 Belleville Michigan MI Wayne 163 42.2399 -83.1508 +US 48120 Dearborn Michigan MI Wayne 163 42.3053 -83.1605 +US 48121 Dearborn Michigan MI Wayne 163 42.2399 -83.1508 +US 48122 Melvindale Michigan MI Wayne 163 42.2812 -83.1826 +US 48123 Dearborn Michigan MI Wayne 163 42.2399 -83.1508 +US 48124 Dearborn Michigan MI Wayne 163 42.2941 -83.2536 +US 48125 Dearborn Heights Michigan MI Wayne 163 42.2768 -83.2606 +US 48126 Dearborn Michigan MI Wayne 163 42.3349 -83.1801 +US 48127 Dearborn Heights Michigan MI Wayne 163 42.3353 -83.2864 +US 48128 Dearborn Michigan MI Wayne 163 42.32 -83.2701 +US 48134 Flat Rock Michigan MI Wayne 163 42.1055 -83.2795 +US 48135 Garden City Michigan MI Wayne 163 42.3242 -83.3402 +US 48136 Garden City Michigan MI Wayne 163 42.2399 -83.1508 +US 48138 Grosse Ile Michigan MI Wayne 163 42.1352 -83.1561 +US 48141 Inkster Michigan MI Wayne 163 42.294 -83.3146 +US 48146 Lincoln Park Michigan MI Wayne 163 42.2422 -83.1807 +US 48150 Livonia Michigan MI Wayne 163 42.3615 -83.3649 +US 48151 Livonia Michigan MI Wayne 163 42.2399 -83.1508 +US 48152 Livonia Michigan MI Wayne 163 42.4258 -83.3636 +US 48153 Livonia Michigan MI Wayne 163 42.2399 -83.1508 +US 48154 Livonia Michigan MI Wayne 163 42.3958 -83.3772 +US 48164 New Boston Michigan MI Wayne 163 42.1449 -83.3589 +US 48167 Northville Michigan MI Wayne 163 42.4262 -83.4794 +US 48168 Northville Michigan MI Wayne County 163 42.4086 -83.4978 +US 48170 Plymouth Michigan MI Wayne 163 42.3688 -83.4799 +US 48173 Rockwood Michigan MI Wayne 163 42.0731 -83.2127 +US 48174 Romulus Michigan MI Wayne 163 42.2203 -83.3583 +US 48180 Taylor Michigan MI Wayne 163 42.2317 -83.2673 +US 48183 Trenton Michigan MI Wayne 163 42.1382 -83.2179 +US 48184 Wayne Michigan MI Wayne 163 42.2768 -83.3758 +US 48185 Westland Michigan MI Wayne 163 42.3358 -83.3846 +US 48186 Westland Michigan MI Wayne 163 42.289 -83.3686 +US 48187 Canton Michigan MI Wayne 163 42.332 -83.4695 +US 48188 Canton Michigan MI Wayne 163 42.291 -83.465 +US 48192 Wyandotte Michigan MI Wayne 163 42.2084 -83.1616 +US 48193 Riverview Michigan MI Wayne County 163 42.1782 -83.2461 +US 48195 Southgate Michigan MI Wayne 163 42.2044 -83.1999 +US 48201 Detroit Michigan MI Wayne 163 42.3474 -83.0604 +US 48202 Detroit Michigan MI Wayne 163 42.377 -83.0796 +US 48203 Highland Park Michigan MI Wayne 163 42.4212 -83.1009 +US 48204 Detroit Michigan MI Wayne 163 42.3661 -83.1422 +US 48205 Detroit Michigan MI Wayne 163 42.4313 -82.9813 +US 48206 Detroit Michigan MI Wayne 163 42.3749 -83.1087 +US 48207 Detroit Michigan MI Wayne 163 42.3524 -83.0271 +US 48208 Detroit Michigan MI Wayne 163 42.3495 -83.0927 +US 48209 Detroit Michigan MI Wayne 163 42.3097 -83.1155 +US 48210 Detroit Michigan MI Wayne 163 42.3376 -83.1303 +US 48211 Detroit Michigan MI Wayne 163 42.3809 -83.0409 +US 48212 Hamtramck Michigan MI Wayne 163 42.4081 -83.0583 +US 48213 Detroit Michigan MI Wayne 163 42.3982 -82.9925 +US 48214 Detroit Michigan MI Wayne 163 42.3669 -82.9938 +US 48215 Detroit Michigan MI Wayne 163 42.3773 -82.9513 +US 48216 Detroit Michigan MI Wayne 163 42.3275 -83.0827 +US 48217 Detroit Michigan MI Wayne 163 42.2719 -83.1545 +US 48218 River Rouge Michigan MI Wayne 163 42.2692 -83.1364 +US 48219 Detroit Michigan MI Wayne 163 42.426 -83.2495 +US 48221 Detroit Michigan MI Wayne 163 42.426 -83.15 +US 48222 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48223 Detroit Michigan MI Wayne 163 42.3945 -83.2454 +US 48224 Detroit Michigan MI Wayne 163 42.4098 -82.9441 +US 48225 Harper Woods Michigan MI Wayne 163 42.4377 -82.9289 +US 48226 Detroit Michigan MI Wayne 163 42.3333 -83.0484 +US 48227 Detroit Michigan MI Wayne 163 42.3883 -83.1937 +US 48228 Detroit Michigan MI Wayne 163 42.3547 -83.2168 +US 48229 Ecorse Michigan MI Wayne 163 42.2519 -83.1489 +US 48230 Grosse Pointe Michigan MI Wayne 163 42.3847 -82.9244 +US 48231 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48232 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48233 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48234 Detroit Michigan MI Wayne 163 42.4337 -83.0434 +US 48235 Detroit Michigan MI Wayne 163 42.4261 -83.1951 +US 48236 Grosse Pointe Michigan MI Wayne 163 42.4274 -82.9002 +US 48238 Detroit Michigan MI Wayne 163 42.3959 -83.1411 +US 48239 Redford Michigan MI Wayne 163 42.3756 -83.2889 +US 48240 Redford Michigan MI Wayne 163 42.4264 -83.3017 +US 48242 Detroit Michigan MI Wayne 163 42.2166 -83.3532 +US 48243 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48244 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48254 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48255 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48258 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48260 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48264 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48265 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48266 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48267 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48268 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48269 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48272 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48274 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48275 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48277 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48278 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48279 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48288 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48295 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48297 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 48299 Detroit Michigan MI Wayne 163 42.2399 -83.1508 +US 49601 Cadillac Michigan MI Wexford 165 44.2504 -85.43 +US 49618 Boon Michigan MI Wexford 165 44.2916 -85.6144 +US 49620 Buckley Michigan MI Wexford 165 44.5199 -85.6935 +US 49638 Harrietta Michigan MI Wexford 165 44.2972 -85.7396 +US 49663 Manton Michigan MI Wexford 165 44.4152 -85.4202 +US 49668 Mesick Michigan MI Wexford 165 44.4075 -85.7061 +US 55748 Hill City Minnesota MN Aitkin 001 46.9968 -93.5994 +US 55752 Jacobson Minnesota MN Aitkin 001 46.9772 -93.3064 +US 55760 Mcgregor Minnesota MN Aitkin 001 46.6072 -93.3076 +US 55785 Swatara Minnesota MN Aitkin 001 46.9232 -93.7464 +US 55787 Tamarack Minnesota MN Aitkin 001 46.6303 -93.2134 +US 56350 Mc Grath Minnesota MN Aitkin 001 46.1957 -93.3774 +US 56431 Aitkin Minnesota MN Aitkin 001 46.4799 -93.6454 +US 56469 Palisade Minnesota MN Aitkin 001 46.6895 -93.5627 +US 55005 Bethel Minnesota MN Anoka 003 45.3887 -93.2315 +US 55011 Cedar Minnesota MN Anoka 003 45.3414 -93.235 +US 55014 Circle Pines Minnesota MN Anoka 003 45.1528 -93.144 +US 55070 Saint Francis Minnesota MN Anoka 003 45.3903 -93.3598 +US 55303 Anoka Minnesota MN Anoka 003 45.2825 -93.4186 +US 55304 Andover Minnesota MN Anoka 003 45.2377 -93.2724 +US 55421 Minneapolis Minnesota MN Anoka 003 45.0523 -93.2541 +US 55432 Minneapolis Minnesota MN Anoka 003 45.095 -93.2396 +US 55433 Minneapolis Minnesota MN Anoka 003 45.1643 -93.3193 +US 55434 Minneapolis Minnesota MN Anoka 003 45.1681 -93.2504 +US 55448 Minneapolis Minnesota MN Anoka 003 45.1907 -93.3021 +US 55449 Minneapolis Minnesota MN Anoka 003 45.1697 -93.1889 +US 56501 Detroit Lakes Minnesota MN Becker 005 46.8349 -95.8006 +US 56502 Detroit Lakes Minnesota MN Becker 005 46.934 -95.6784 +US 56511 Audubon Minnesota MN Becker 005 46.8719 -95.9881 +US 56521 Callaway Minnesota MN Becker 005 47.0076 -95.944 +US 56544 Frazee Minnesota MN Becker 005 46.7565 -95.5212 +US 56554 Lake Park Minnesota MN Becker 005 46.8176 -96.067 +US 56569 Ogema Minnesota MN Becker 005 47.1029 -95.9151 +US 56570 Osage Minnesota MN Becker 005 46.9329 -95.2353 +US 56575 Ponsford Minnesota MN Becker 005 47.0133 -95.3197 +US 56577 Richwood Minnesota MN Becker 005 46.934 -95.6784 +US 56578 Rochert Minnesota MN Becker 005 46.8862 -95.7246 +US 56591 White Earth Minnesota MN Becker 005 46.934 -95.6784 +US 56593 Wolf Lake Minnesota MN Becker 005 46.8035 -95.3535 +US 56601 Bemidji Minnesota MN Beltrami 007 47.572 -94.8013 +US 56619 Bemidji Minnesota MN Beltrami 007 47.6257 -94.8222 +US 56630 Blackduck Minnesota MN Beltrami 007 47.7381 -94.4961 +US 56647 Hines Minnesota MN Beltrami 007 47.7324 -94.6477 +US 56650 Kelliher Minnesota MN Beltrami 007 47.9272 -94.5382 +US 56663 Pennington Minnesota MN Beltrami 007 47.4651 -94.4834 +US 56666 Ponemah Minnesota MN Beltrami 007 48.0372 -94.917 +US 56667 Puposky Minnesota MN Beltrami 007 47.7436 -94.9803 +US 56670 Redby Minnesota MN Beltrami 007 47.8689 -94.9404 +US 56671 Redlake Minnesota MN Beltrami 007 47.8654 -95.0643 +US 56674 Saum Minnesota MN Beltrami County 007 47.9748 -94.6447 +US 56678 Solway Minnesota MN Beltrami 007 47.548 -95.1205 +US 56683 Tenstrike Minnesota MN Beltrami 007 47.6611 -94.6824 +US 56685 Waskish Minnesota MN Beltrami 007 48.177 -94.5037 +US 56687 Wilton Minnesota MN Beltrami 007 47.975 -95.0087 +US 56329 Foley Minnesota MN Benton 009 45.6919 -93.9148 +US 56333 Gilman Minnesota MN Benton 009 45.6917 -94.0563 +US 56357 Oak Park Minnesota MN Benton 009 45.7022 -93.8164 +US 56367 Rice Minnesota MN Benton 009 45.7364 -94.1658 +US 56379 Sauk Rapids Minnesota MN Benton 009 45.604 -94.1591 +US 56210 Barry Minnesota MN Big Stone 011 45.5593 -96.5589 +US 56211 Beardsley Minnesota MN Big Stone 011 45.5539 -96.706 +US 56225 Clinton Minnesota MN Big Stone 011 45.4577 -96.4182 +US 56227 Correll Minnesota MN Big Stone 011 45.2907 -96.1753 +US 56240 Graceville Minnesota MN Big Stone 011 45.5602 -96.4209 +US 56250 Johnson Minnesota MN Big Stone County 011 45.573 -96.2663 +US 56276 Odessa Minnesota MN Big Stone 011 45.3814 -96.4695 +US 56278 Ortonville Minnesota MN Big Stone 011 45.3296 -96.4596 +US 56001 Mankato Minnesota MN Blue Earth 013 44.1538 -93.996 +US 56002 Mankato Minnesota MN Blue Earth 013 44.056 -94.0698 +US 56006 Mankato Minnesota MN Blue Earth 013 44.056 -94.0698 +US 56010 Amboy Minnesota MN Blue Earth 013 43.8903 -94.1774 +US 56024 Eagle Lake Minnesota MN Blue Earth 013 44.1546 -93.8719 +US 56034 Garden City Minnesota MN Blue Earth 013 44.0467 -94.1791 +US 56037 Good Thunder Minnesota MN Blue Earth 013 43.9952 -94.0677 +US 56055 Lake Crystal Minnesota MN Blue Earth 013 44.1202 -94.2184 +US 56063 Madison Lake Minnesota MN Blue Earth 013 44.2221 -93.8289 +US 56065 Mapleton Minnesota MN Blue Earth 013 43.9331 -93.9542 +US 56078 Pemberton Minnesota MN Blue Earth 013 44.0077 -93.7833 +US 56080 Saint Clair Minnesota MN Blue Earth 013 44.0817 -93.8571 +US 56090 Vernon Center Minnesota MN Blue Earth 013 43.9706 -94.2142 +US 56019 Comfrey Minnesota MN Brown 015 44.1111 -94.9134 +US 56030 Essig Minnesota MN Brown 015 44.3258 -94.6052 +US 56041 Hanska Minnesota MN Brown 015 44.1527 -94.4933 +US 56073 New Ulm Minnesota MN Brown 015 44.3044 -94.4644 +US 56084 Searles Minnesota MN Brown 015 44.3029 -94.7388 +US 56085 Sleepy Eye Minnesota MN Brown 015 44.2821 -94.7273 +US 56087 Springfield Minnesota MN Brown 015 44.2329 -94.9792 +US 56238 Evan Minnesota MN Brown County 015 44.3511 -94.817 +US 55707 Barnum Minnesota MN Carlton 017 46.5196 -92.6292 +US 55718 Carlton Minnesota MN Carlton 017 46.6484 -92.471 +US 55720 Cloquet Minnesota MN Carlton 017 46.7546 -92.5408 +US 55726 Cromwell Minnesota MN Carlton 017 46.6718 -92.8739 +US 55733 Esko Minnesota MN Carlton 017 46.7126 -92.3569 +US 55749 Holyoke Minnesota MN Carlton 017 46.4664 -92.375 +US 55757 Kettle River Minnesota MN Carlton 017 46.5029 -92.9047 +US 55767 Moose Lake Minnesota MN Carlton 017 46.4472 -92.7466 +US 55780 Sawyer Minnesota MN Carlton 017 46.6831 -92.6927 +US 55797 Wrenshall Minnesota MN Carlton 017 46.5921 -92.3718 +US 55798 Wright Minnesota MN Carlton 017 46.6753 -93.0029 +US 55315 Carver Minnesota MN Carver 019 44.7169 -93.6879 +US 55317 Chanhassen Minnesota MN Carver 019 44.8679 -93.5359 +US 55318 Chaska Minnesota MN Carver 019 44.8061 -93.6083 +US 55322 Cologne Minnesota MN Carver 019 44.7646 -93.7982 +US 55339 Hamburg Minnesota MN Carver 019 44.7315 -93.9643 +US 55360 Mayer Minnesota MN Carver 019 44.9022 -93.8859 +US 55367 New Germany Minnesota MN Carver 019 44.8994 -93.9701 +US 55368 Norwood Minnesota MN Carver 019 44.7668 -93.9301 +US 55383 Norwood Minnesota MN Carver 019 44.8055 -93.7665 +US 55386 Victoria Minnesota MN Carver 019 44.8582 -93.6561 +US 55387 Waconia Minnesota MN Carver 019 44.851 -93.7784 +US 55388 Watertown Minnesota MN Carver 019 44.9595 -93.8482 +US 55394 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55397 Young America Minnesota MN Carver 019 44.7929 -93.918 +US 55399 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55473 Minneapolis Minnesota MN Carver 019 44.8055 -93.7665 +US 55550 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55551 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55552 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55553 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55554 Norwood Minnesota MN Carver 019 44.8055 -93.7665 +US 55555 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55556 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55557 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55558 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55559 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55560 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55561 Monticello Minnesota MN Carver 019 44.8055 -93.7665 +US 55562 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55563 Monticello Minnesota MN Carver 019 44.8055 -93.7665 +US 55564 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55566 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55567 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55568 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 55583 Norwood Minnesota MN Carver 019 44.8055 -93.7665 +US 55594 Young America Minnesota MN Carver 019 44.8055 -93.7665 +US 56430 Ah Gwah Ching Minnesota MN Cass 021 46.8623 -94.6419 +US 56435 Backus Minnesota MN Cass 021 46.8699 -94.3959 +US 56452 Hackensack Minnesota MN Cass 021 46.9884 -94.5033 +US 56473 Pillager Minnesota MN Cass 021 46.3607 -94.4895 +US 56474 Pine River Minnesota MN Cass 021 46.6938 -94.4477 +US 56484 Walker Minnesota MN Cass 021 47.0877 -94.5847 +US 56485 Whipholt Minnesota MN Cass County 021 47.0262 -94.346 +US 56626 Bena Minnesota MN Cass 021 47.3477 -94.2519 +US 56632 Boy River Minnesota MN Cass County 021 47.1806 -94.1085 +US 56633 Cass Lake Minnesota MN Cass 021 47.3516 -94.6119 +US 56641 Federal Dam Minnesota MN Cass 021 47.2069 -94.2575 +US 56655 Longville Minnesota MN Cass 021 47.0248 -94.1982 +US 56662 Outing Minnesota MN Cass 021 46.8375 -93.9443 +US 56665 Pitt Minnesota MN Cass County 021 48.783 -94.7283 +US 56672 Remer Minnesota MN Cass 021 47.0874 -93.9196 +US 56222 Clara City Minnesota MN Chippewa 023 44.9639 -95.3499 +US 56260 Maynard Minnesota MN Chippewa 023 44.9226 -95.4845 +US 56262 Milan Minnesota MN Chippewa 023 45.1143 -95.869 +US 56265 Montevideo Minnesota MN Chippewa 023 44.9688 -95.6765 +US 56295 Watson Minnesota MN Chippewa 023 45.0412 -95.834 +US 55002 Almelund Minnesota MN Chisago 025 45.5134 -92.8942 +US 55012 Center City Minnesota MN Chisago 025 45.4482 -92.7894 +US 55013 Chisago City Minnesota MN Chisago 025 45.3611 -92.8921 +US 55032 Harris Minnesota MN Chisago 025 45.5962 -93.0395 +US 55045 Lindstrom Minnesota MN Chisago 025 45.3873 -92.8421 +US 55056 North Branch Minnesota MN Chisago 025 45.5165 -92.9371 +US 55069 Rush City Minnesota MN Chisago 025 45.6845 -92.9979 +US 55074 Shafer Minnesota MN Chisago 025 45.3576 -92.7609 +US 55078 Stacy Minnesota MN Chisago 025 45.5134 -92.8942 +US 55079 Stacy Minnesota MN Chisago 025 45.3975 -93.0177 +US 55084 Taylors Falls Minnesota MN Chisago 025 45.4576 -92.733 +US 55092 Wyoming Minnesota MN Chisago 025 45.3364 -92.9675 +US 56513 Baker Minnesota MN Clay 027 46.89 -96.5062 +US 56514 Barnesville Minnesota MN Clay 027 46.6495 -96.3916 +US 56525 Comstock Minnesota MN Clay 027 46.6667 -96.7398 +US 56529 Dilworth Minnesota MN Clay 027 46.8782 -96.7022 +US 56536 Felton Minnesota MN Clay 027 47.0705 -96.5052 +US 56546 Georgetown Minnesota MN Clay 027 47.0999 -96.727 +US 56547 Glyndon Minnesota MN Clay 027 46.882 -96.5583 +US 56549 Hawley Minnesota MN Clay 027 46.9777 -96.4092 +US 56552 Hitterdal Minnesota MN Clay 027 47.0014 -96.2888 +US 56560 Moorhead Minnesota MN Clay 027 46.8677 -96.7572 +US 56561 Moorhead Minnesota MN Clay 027 46.89 -96.5062 +US 56562 Moorhead Minnesota MN Clay 027 46.89 -96.5062 +US 56563 Moorhead Minnesota MN Clay 027 46.89 -96.5062 +US 56580 Sabin Minnesota MN Clay 027 46.7703 -96.5985 +US 56585 Ulen Minnesota MN Clay 027 47.0903 -96.2824 +US 56460 Lake Itasca Minnesota MN Clearwater County 029 47.2351 -95.2647 +US 56621 Bagley Minnesota MN Clearwater 029 47.487 -95.4133 +US 56634 Clearbrook Minnesota MN Clearwater 029 47.7146 -95.3752 +US 56644 Gonvick Minnesota MN Clearwater 029 47.749 -95.499 +US 56652 Leonard Minnesota MN Clearwater 029 47.7334 -95.2481 +US 56676 Shevlin Minnesota MN Clearwater 029 47.5004 -95.245 +US 55604 Grand Marais Minnesota MN Cook 031 47.7758 -90.3391 +US 55605 Grand Portage Minnesota MN Cook 031 47.9591 -89.6989 +US 55606 Hovland Minnesota MN Cook 031 47.8342 -90.0476 +US 55612 Lutsen Minnesota MN Cook 031 47.6831 -90.6381 +US 55613 Schroeder Minnesota MN Cook 031 47.5422 -90.9338 +US 55615 Tofte Minnesota MN Cook 031 47.7608 -90.7831 +US 56101 Windom Minnesota MN Cottonwood 033 43.8831 -95.1373 +US 56118 Bingham Lake Minnesota MN Cottonwood 033 43.8942 -95.0457 +US 56124 Delft Minnesota MN Cottonwood County 033 43.9785 -95.0472 +US 56145 Jeffers Minnesota MN Cottonwood 033 44.0737 -95.1547 +US 56159 Mountain Lake Minnesota MN Cottonwood 033 43.939 -94.9273 +US 56174 Storden Minnesota MN Cottonwood 033 44.0524 -95.3019 +US 56183 Westbrook Minnesota MN Cottonwood 033 44.0654 -95.4232 +US 56401 Brainerd Minnesota MN Crow Wing 035 46.3502 -94.1 +US 56425 Baxter Minnesota MN Crow Wing 035 46.3429 -94.2822 +US 56441 Crosby Minnesota MN Crow Wing 035 46.5091 -93.9874 +US 56442 Crosslake Minnesota MN Crow Wing 035 46.6773 -94.1128 +US 56444 Deerwood Minnesota MN Crow Wing 035 46.4446 -93.8849 +US 56447 Emily Minnesota MN Crow Wing 035 46.7478 -93.9484 +US 56448 Fifty Lakes Minnesota MN Crow Wing 035 46.747 -94.0656 +US 56449 Fort Ripley Minnesota MN Crow Wing 035 46.2099 -94.2527 +US 56450 Garrison Minnesota MN Crow Wing 035 46.2314 -93.8341 +US 56455 Ironton Minnesota MN Crow Wing 035 46.4778 -93.9789 +US 56456 Jenkins Minnesota MN Crow Wing 035 46.4807 -94.0859 +US 56459 Lake Hubert Minnesota MN Crow Wing 035 46.4987 -94.2519 +US 56463 Manhattan Beach Minnesota MN Crow Wing County 035 46.7336 -94.1401 +US 56465 Merrifield Minnesota MN Crow Wing 035 46.5393 -94.1344 +US 56468 Nisswa Minnesota MN Crow Wing 035 46.4929 -94.2976 +US 56472 Pequot Lakes Minnesota MN Crow Wing 035 46.6257 -94.2684 +US 55010 Castle Rock Minnesota MN Dakota 037 44.5472 -93.1531 +US 55024 Farmington Minnesota MN Dakota 037 44.6628 -93.1539 +US 55031 Hampton Minnesota MN Dakota 037 44.6028 -92.9467 +US 55033 Hastings Minnesota MN Dakota 037 44.7129 -92.8637 +US 55044 Lakeville Minnesota MN Dakota 037 44.6749 -93.2578 +US 55065 Randolph Minnesota MN Dakota 037 44.5274 -93.0196 +US 55068 Rosemount Minnesota MN Dakota 037 44.7378 -93.0685 +US 55075 South Saint Paul Minnesota MN Dakota 037 44.8881 -93.046 +US 55076 Inver Grove Heights Minnesota MN Dakota 037 44.8288 -93.0391 +US 55077 Inver Grove Heights Minnesota MN Dakota 037 44.8283 -93.094 +US 55085 Vermillion Minnesota MN Dakota 037 44.6748 -92.9683 +US 55118 Saint Paul Minnesota MN Dakota 037 44.8965 -93.1034 +US 55120 Saint Paul Minnesota MN Dakota 037 44.8704 -93.1434 +US 55121 Saint Paul Minnesota MN Dakota 037 44.8471 -93.1543 +US 55122 Saint Paul Minnesota MN Dakota 037 44.786 -93.2202 +US 55123 Saint Paul Minnesota MN Dakota 037 44.806 -93.1409 +US 55124 Saint Paul Minnesota MN Dakota 037 44.7497 -93.2029 +US 55150 Mendota Minnesota MN Dakota 037 44.8858 -93.1612 +US 55306 Burnsville Minnesota MN Dakota 037 44.7307 -93.2921 +US 55337 Burnsville Minnesota MN Dakota 037 44.7609 -93.2753 +US 55924 Claremont Minnesota MN Dodge 039 44.0522 -92.9888 +US 55927 Dodge Center Minnesota MN Dodge 039 44.0325 -92.8554 +US 55940 Hayfield Minnesota MN Dodge 039 43.8923 -92.8175 +US 55944 Kasson Minnesota MN Dodge 039 44.024 -92.7464 +US 55955 Mantorville Minnesota MN Dodge 039 44.0657 -92.76 +US 55985 West Concord Minnesota MN Dodge 039 44.152 -92.8825 +US 56308 Alexandria Minnesota MN Douglas 041 45.8817 -95.382 +US 56315 Brandon Minnesota MN Douglas 041 46.0039 -95.5788 +US 56319 Carlos Minnesota MN Douglas 041 45.9726 -95.3105 +US 56326 Evansville Minnesota MN Douglas 041 46.0153 -95.6951 +US 56332 Garfield Minnesota MN Douglas 041 45.9847 -95.5066 +US 56341 Holmes City Minnesota MN Douglas 041 45.831 -95.5416 +US 56343 Kensington Minnesota MN Douglas 041 45.8176 -95.6945 +US 56354 Miltona Minnesota MN Douglas 041 46.0545 -95.3258 +US 56355 Nelson Minnesota MN Douglas 041 45.9356 -95.2398 +US 56360 Osakis Minnesota MN Douglas 041 45.8768 -95.1332 +US 56013 Blue Earth Minnesota MN Faribault 043 43.6394 -94.0924 +US 56014 Bricelyn Minnesota MN Faribault 043 43.5746 -93.8211 +US 56023 Delavan Minnesota MN Faribault 043 43.7719 -94.0225 +US 56025 Easton Minnesota MN Faribault 043 43.7581 -93.934 +US 56027 Elmore Minnesota MN Faribault 043 43.5201 -94.0984 +US 56033 Frost Minnesota MN Faribault 043 43.5638 -93.9361 +US 56047 Huntley Minnesota MN Faribault 043 43.7384 -94.2289 +US 56051 Kiester Minnesota MN Faribault 043 43.5414 -93.7102 +US 56068 Minnesota Lake Minnesota MN Faribault 043 43.8295 -93.8282 +US 56092 Walters Minnesota MN Faribault County 043 43.6267 -93.6999 +US 56097 Wells Minnesota MN Faribault 043 43.7434 -93.7321 +US 56098 Winnebago Minnesota MN Faribault 043 43.7755 -94.1632 +US 55922 Canton Minnesota MN Fillmore 045 43.5667 -91.913 +US 55923 Chatfield Minnesota MN Fillmore 045 43.8362 -92.1574 +US 55935 Fountain Minnesota MN Fillmore 045 43.7284 -92.1423 +US 55937 Granger Minnesota MN Fillmore County 045 43.5449 -92.1561 +US 55939 Harmony Minnesota MN Fillmore 045 43.5663 -92.0145 +US 55949 Lanesboro Minnesota MN Fillmore 045 43.7174 -91.9877 +US 55954 Mabel Minnesota MN Fillmore 045 43.5446 -91.7806 +US 55961 Ostrander Minnesota MN Fillmore 045 43.5972 -92.4157 +US 55962 Peterson Minnesota MN Fillmore 045 43.7769 -91.8443 +US 55965 Preston Minnesota MN Fillmore 045 43.6641 -92.096 +US 55971 Rushford Minnesota MN Fillmore 045 43.8216 -91.7536 +US 55975 Spring Valley Minnesota MN Fillmore 045 43.6823 -92.368 +US 55990 Wykoff Minnesota MN Fillmore 045 43.7146 -92.2679 +US 56007 Albert Lea Minnesota MN Freeborn 047 43.6537 -93.3707 +US 56009 Alden Minnesota MN Freeborn 047 43.6466 -93.5823 +US 56016 Clarks Grove Minnesota MN Freeborn 047 43.763 -93.3232 +US 56020 Conger Minnesota MN Freeborn 047 43.621 -93.5482 +US 56029 Emmons Minnesota MN Freeborn 047 43.5089 -93.4824 +US 56032 Freeborn Minnesota MN Freeborn 047 43.7838 -93.5254 +US 56035 Geneva Minnesota MN Freeborn 047 43.8235 -93.2671 +US 56036 Glenville Minnesota MN Freeborn 047 43.5577 -93.2618 +US 56042 Hartland Minnesota MN Freeborn 047 43.804 -93.477 +US 56043 Hayward Minnesota MN Freeborn 047 43.6386 -93.2377 +US 56045 Hollandale Minnesota MN Freeborn 047 43.7528 -93.168 +US 56064 Manchester Minnesota MN Freeborn 047 43.7638 -93.469 +US 56070 Myrtle Minnesota MN Freeborn County 047 43.5639 -93.1633 +US 56076 Oakland Minnesota MN Freeborn 047 43.633 -93.1113 +US 56089 Twin Lakes Minnesota MN Freeborn 047 43.5593 -93.4206 +US 55009 Cannon Falls Minnesota MN Goodhue 049 44.496 -92.864 +US 55018 Dennison Minnesota MN Goodhue 049 44.4265 -92.9554 +US 55026 Frontenac Minnesota MN Goodhue 049 44.52 -92.3582 +US 55027 Goodhue Minnesota MN Goodhue 049 44.4022 -92.5717 +US 55066 Red Wing Minnesota MN Goodhue 049 44.5528 -92.5486 +US 55089 Welch Minnesota MN Goodhue 049 44.603 -92.7263 +US 55946 Kenyon Minnesota MN Goodhue 049 44.2552 -93.0197 +US 55963 Pine Island Minnesota MN Goodhue 049 44.211 -92.6613 +US 55983 Wanamingo Minnesota MN Goodhue 049 44.3121 -92.8103 +US 55992 Zumbrota Minnesota MN Goodhue 049 44.3032 -92.6719 +US 56248 Herman Minnesota MN Grant 051 45.8071 -96.0992 +US 56274 Norcross Minnesota MN Grant 051 45.8858 -96.1342 +US 56309 Ashby Minnesota MN Grant 051 46.0781 -95.8214 +US 56311 Barrett Minnesota MN Grant 051 45.8996 -95.8754 +US 56339 Hoffman Minnesota MN Grant 051 45.8233 -95.7955 +US 56531 Elbow Lake Minnesota MN Grant 051 45.9953 -95.9671 +US 56590 Wendell Minnesota MN Grant 051 46.0562 -96.1144 +US 55111 Saint Paul Minnesota MN Hennepin 053 44.8828 -93.2007 +US 55305 Hopkins Minnesota MN Hennepin 053 44.9528 -93.4372 +US 55311 Osseo Minnesota MN Hennepin 053 45.1243 -93.4996 +US 55316 Champlin Minnesota MN Hennepin 053 45.17 -93.3819 +US 55323 Crystal Bay Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55327 Dayton Minnesota MN Hennepin 053 45.1982 -93.4668 +US 55331 Excelsior Minnesota MN Hennepin 053 44.9007 -93.5791 +US 55340 Hamel Minnesota MN Hennepin 053 45.08 -93.576 +US 55343 Hopkins Minnesota MN Hennepin 053 44.914 -93.4481 +US 55344 Eden Prairie Minnesota MN Hennepin 053 44.8574 -93.4376 +US 55345 Minnetonka Minnesota MN Hennepin 053 44.9138 -93.485 +US 55346 Eden Prairie Minnesota MN Hennepin 053 44.8771 -93.483 +US 55347 Eden Prairie Minnesota MN Hennepin 053 44.8342 -93.4389 +US 55348 Maple Plain Minnesota MN Hennepin 053 44.8483 -93.3987 +US 55356 Long Lake Minnesota MN Hennepin 053 44.9912 -93.5818 +US 55357 Loretto Minnesota MN Hennepin 053 45.1061 -93.6692 +US 55359 Maple Plain Minnesota MN Hennepin 053 44.9787 -93.7002 +US 55361 Minnetonka Beach Minnesota MN Hennepin 053 44.9402 -93.5927 +US 55364 Mound Minnesota MN Hennepin 053 44.9382 -93.6561 +US 55369 Osseo Minnesota MN Hennepin 053 45.1284 -93.4589 +US 55374 Rogers Minnesota MN Hennepin 053 45.1715 -93.5814 +US 55375 Saint Bonifacius Minnesota MN Hennepin 053 44.9041 -93.749 +US 55384 Spring Park Minnesota MN Hennepin 053 44.9356 -93.6341 +US 55391 Wayzata Minnesota MN Hennepin 053 44.9847 -93.5422 +US 55392 Navarre Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55400 Minneapolis Minnesota MN Hennepin County 053 44.9462 -93.2 +US 55401 Minneapolis Minnesota MN Hennepin 053 44.9835 -93.2683 +US 55402 Minneapolis Minnesota MN Hennepin 053 44.9762 -93.2759 +US 55403 Minneapolis Minnesota MN Hennepin 053 44.9673 -93.2828 +US 55404 Minneapolis Minnesota MN Hennepin 053 44.9609 -93.2642 +US 55405 Minneapolis Minnesota MN Hennepin 053 44.9702 -93.3047 +US 55406 Minneapolis Minnesota MN Hennepin 053 44.9384 -93.2214 +US 55407 Minneapolis Minnesota MN Hennepin 053 44.9378 -93.2545 +US 55408 Minneapolis Minnesota MN Hennepin 053 44.9466 -93.2862 +US 55409 Minneapolis Minnesota MN Hennepin 053 44.9264 -93.2818 +US 55410 Minneapolis Minnesota MN Hennepin 053 44.9124 -93.3188 +US 55411 Minneapolis Minnesota MN Hennepin 053 44.9996 -93.3005 +US 55412 Minneapolis Minnesota MN Hennepin 053 45.0242 -93.302 +US 55413 Minneapolis Minnesota MN Hennepin 053 44.998 -93.2552 +US 55414 Minneapolis Minnesota MN Hennepin 053 44.9779 -93.2199 +US 55415 Minneapolis Minnesota MN Hennepin 053 44.9742 -93.2585 +US 55416 Minneapolis Minnesota MN Hennepin 053 44.9497 -93.3373 +US 55417 Minneapolis Minnesota MN Hennepin 053 44.9054 -93.2361 +US 55418 Minneapolis Minnesota MN Hennepin 053 45.0192 -93.2401 +US 55419 Minneapolis Minnesota MN Hennepin 053 44.9026 -93.2886 +US 55420 Minneapolis Minnesota MN Hennepin 053 44.8358 -93.2778 +US 55422 Minneapolis Minnesota MN Hennepin 053 45.0096 -93.3424 +US 55423 Minneapolis Minnesota MN Hennepin 053 44.8756 -93.2553 +US 55424 Minneapolis Minnesota MN Hennepin 053 44.9052 -93.3403 +US 55425 Minneapolis Minnesota MN Hennepin 053 44.8427 -93.2363 +US 55426 Minneapolis Minnesota MN Hennepin 053 44.955 -93.3829 +US 55427 Minneapolis Minnesota MN Hennepin 053 45 -93.391 +US 55428 Minneapolis Minnesota MN Hennepin 053 45.0632 -93.3811 +US 55429 Minneapolis Minnesota MN Hennepin 053 45.0645 -93.3413 +US 55430 Minneapolis Minnesota MN Hennepin 053 45.0639 -93.3022 +US 55431 Minneapolis Minnesota MN Hennepin 053 44.8288 -93.3118 +US 55435 Minneapolis Minnesota MN Hennepin 053 44.8735 -93.3346 +US 55436 Minneapolis Minnesota MN Hennepin 053 44.9034 -93.374 +US 55437 Minneapolis Minnesota MN Hennepin 053 44.8261 -93.3538 +US 55438 Minneapolis Minnesota MN Hennepin 053 44.8266 -93.375 +US 55439 Minneapolis Minnesota MN Hennepin 053 44.8744 -93.3753 +US 55440 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55441 Minneapolis Minnesota MN Hennepin 053 45.0058 -93.4193 +US 55442 Minneapolis Minnesota MN Hennepin 053 45.0467 -93.431 +US 55443 Minneapolis Minnesota MN Hennepin 053 45.1194 -93.3431 +US 55444 Minneapolis Minnesota MN Hennepin 053 45.1178 -93.3054 +US 55445 Minneapolis Minnesota MN Hennepin 053 45.1232 -93.3797 +US 55446 Minneapolis Minnesota MN Hennepin 053 45.04 -93.4865 +US 55447 Minneapolis Minnesota MN Hennepin 053 45.0033 -93.4875 +US 55450 Minneapolis Minnesota MN Hennepin 053 44.8811 -93.2207 +US 55454 Minneapolis Minnesota MN Hennepin 053 44.9682 -93.2429 +US 55455 Minneapolis Minnesota MN Hennepin 053 44.9735 -93.2331 +US 55458 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55459 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55460 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55467 Minneapolis Minnesota MN Hennepin County 053 44.9861 -93.2708 +US 55468 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55470 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55472 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55474 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55478 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55479 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55480 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55483 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55484 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55485 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55486 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55487 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55488 Minneapolis Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55569 Osseo Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55570 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55571 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55572 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55573 Young America Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55574 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55575 Howard Lake Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55576 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55577 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55578 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55579 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55593 Maple Plain Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55595 Loretto Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55596 Loretto Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55597 Loretto Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55598 Loretto Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55599 Loretto Minnesota MN Hennepin 053 45.0159 -93.4719 +US 55919 Brownsville Minnesota MN Houston 055 43.6707 -91.3012 +US 55921 Caledonia Minnesota MN Houston 055 43.6221 -91.4837 +US 55931 Eitzen Minnesota MN Houston 055 43.5084 -91.4632 +US 55941 Hokah Minnesota MN Houston 055 43.7509 -91.3455 +US 55943 Houston Minnesota MN Houston 055 43.7929 -91.5626 +US 55947 La Crescent Minnesota MN Houston 055 43.8307 -91.3263 +US 55974 Spring Grove Minnesota MN Houston 055 43.5623 -91.6368 +US 56433 Akeley Minnesota MN Hubbard 057 47.001 -94.7234 +US 56436 Benedict Minnesota MN Hubbard 057 47.1082 -94.9211 +US 56458 Lake George Minnesota MN Hubbard 057 47.215 -95.0021 +US 56461 Laporte Minnesota MN Hubbard 057 47.2368 -94.7772 +US 56467 Nevis Minnesota MN Hubbard 057 46.9319 -94.846 +US 56470 Park Rapids Minnesota MN Hubbard 057 46.9377 -95.0383 +US 55004 Beroun Minnesota MN Isanti County 059 45.8283 -92.9705 +US 55006 Braham Minnesota MN Isanti 059 45.7175 -93.2037 +US 55008 Cambridge Minnesota MN Isanti 059 45.5576 -93.2889 +US 55017 Dalbo Minnesota MN Isanti 059 45.6787 -93.4419 +US 55029 Grandy Minnesota MN Isanti 059 45.6422 -93.2011 +US 55040 Isanti Minnesota MN Isanti 059 45.4682 -93.2266 +US 55080 Stanchfield Minnesota MN Isanti 059 45.6675 -93.2433 +US 55709 Bovey Minnesota MN Itasca 061 47.2868 -93.3723 +US 55716 Calumet Minnesota MN Itasca 061 47.3229 -93.2763 +US 55721 Cohasset Minnesota MN Itasca 061 47.2691 -93.6392 +US 55722 Coleraine Minnesota MN Itasca 061 47.3775 -93.3856 +US 55730 Grand Rapids Minnesota MN Itasca 061 47.0878 -93.9214 +US 55742 Goodland Minnesota MN Itasca 061 47.1924 -93.1469 +US 55744 Grand Rapids Minnesota MN Itasca 061 47.2348 -93.5115 +US 55745 Grand Rapids Minnesota MN Itasca 061 47.0878 -93.9214 +US 55753 Keewatin Minnesota MN Itasca 061 47.398 -93.0784 +US 55755 Kelsey Minnesota MN Itasca County 061 47.1537 -92.6205 +US 55764 Marble Minnesota MN Itasca 061 47.3219 -93.2939 +US 55769 Nashwauk Minnesota MN Itasca 061 47.42 -93.2168 +US 55775 Pengilly Minnesota MN Itasca 061 47.3151 -93.1937 +US 55784 Swan River Minnesota MN Itasca 061 47.0739 -93.1964 +US 55786 Taconite Minnesota MN Itasca 061 47.3164 -93.3904 +US 55788 Togo Minnesota MN Itasca County 061 47.7684 -93.2015 +US 55793 Warba Minnesota MN Itasca 061 47.1361 -93.2764 +US 56628 Bigfork Minnesota MN Itasca 061 47.7502 -93.6707 +US 56631 Bowstring Minnesota MN Itasca 061 47.0878 -93.9214 +US 56636 Deer River Minnesota MN Itasca 061 47.3829 -93.8498 +US 56637 Talmoon Minnesota MN Itasca 061 47.5888 -93.7749 +US 56639 Effie Minnesota MN Itasca 061 47.8472 -93.5799 +US 56657 Marcell Minnesota MN Itasca 061 47.5485 -93.6236 +US 56659 Max Minnesota MN Itasca 061 47.6618 -94.0156 +US 56680 Spring Lake Minnesota MN Itasca 061 47.6359 -93.922 +US 56681 Squaw Lake Minnesota MN Itasca 061 47.6362 -94.1475 +US 56688 Wirt Minnesota MN Itasca 061 47.7462 -93.963 +US 56111 Alpha Minnesota MN Jackson 063 43.5946 -94.9051 +US 56112 Amiret Minnesota MN Jackson County 063 44.3259 -95.7169 +US 56137 Heron Lake Minnesota MN Jackson 063 43.7979 -95.3267 +US 56143 Jackson Minnesota MN Jackson 063 43.6457 -94.9938 +US 56150 Lakefield Minnesota MN Jackson 063 43.6545 -95.1848 +US 56161 Okabena Minnesota MN Jackson 063 43.723 -95.3381 +US 55051 Mora Minnesota MN Kanabec 065 45.8958 -93.2942 +US 56358 Ogilvie Minnesota MN Kanabec 065 45.8476 -93.4359 +US 56201 Willmar Minnesota MN Kandiyohi 067 45.1393 -95.0523 +US 56209 Atwater Minnesota MN Kandiyohi 067 45.1116 -94.7938 +US 56216 Blomkest Minnesota MN Kandiyohi 067 44.9501 -95.0588 +US 56246 Hawick Minnesota MN Kandiyohi 067 45.3618 -94.8208 +US 56251 Kandiyohi Minnesota MN Kandiyohi 067 45.1426 -94.9183 +US 56253 Lake Lillian Minnesota MN Kandiyohi 067 44.966 -94.9014 +US 56273 New London Minnesota MN Kandiyohi 067 45.2949 -94.948 +US 56279 Pennock Minnesota MN Kandiyohi 067 45.131 -95.1753 +US 56281 Prinsburg Minnesota MN Kandiyohi 067 44.9371 -95.1865 +US 56282 Raymond Minnesota MN Kandiyohi 067 45.0181 -95.2208 +US 56288 Spicer Minnesota MN Kandiyohi 067 45.2241 -94.9116 +US 56289 Sunburg Minnesota MN Kandiyohi 067 45.3583 -95.2049 +US 56720 Donaldson Minnesota MN Kittson 069 48.5798 -96.8579 +US 56728 Hallock Minnesota MN Kittson 069 48.7749 -96.9445 +US 56729 Halma Minnesota MN Kittson 069 48.6669 -96.5969 +US 56731 Humboldt Minnesota MN Kittson 069 48.7719 -96.8129 +US 56732 Karlstad Minnesota MN Kittson 069 48.5916 -96.5511 +US 56733 Kennedy Minnesota MN Kittson 069 48.6337 -96.9614 +US 56734 Lake Bronson Minnesota MN Kittson 069 48.7787 -96.6431 +US 56735 Lancaster Minnesota MN Kittson 069 48.9153 -96.6366 +US 56740 Noyes Minnesota MN Kittson 069 48.7719 -96.8129 +US 56755 Saint Vincent Minnesota MN Kittson 069 48.9458 -97.1703 +US 56053 Klossner Minnesota MN Koochiching County 071 44.3658 -94.4254 +US 56627 Big Falls Minnesota MN Koochiching 071 48.156 -93.7296 +US 56629 Birchdale Minnesota MN Koochiching 071 48.6247 -94.1677 +US 56649 International Falls Minnesota MN Koochiching 071 48.5344 -93.1317 +US 56653 Littlefork Minnesota MN Koochiching 071 48.3852 -93.5399 +US 56654 Loman Minnesota MN Koochiching 071 48.5164 -93.8407 +US 56658 Margie Minnesota MN Koochiching 071 48.0904 -93.8292 +US 56660 Mizpah Minnesota MN Koochiching 071 47.9495 -94.1467 +US 56661 Northome Minnesota MN Koochiching 071 47.844 -94.2043 +US 56668 Ranier Minnesota MN Koochiching 071 48.6031 -93.2977 +US 56669 Ray Minnesota MN Koochiching 071 48.4218 -93.0895 +US 56679 South International Falls Minnesota MN Koochiching 071 48.2789 -93.7555 +US 56212 Bellingham Minnesota MN Lac qui Parle 073 45.1556 -96.3224 +US 56218 Boyd Minnesota MN Lac qui Parle 073 44.8507 -95.9421 +US 56232 Dawson Minnesota MN Lac qui Parle 073 44.9317 -96.015 +US 56254 Louisburg Minnesota MN Lac qui Parle County 073 45.1306 -96.1715 +US 56256 Madison Minnesota MN Lac qui Parle 073 44.9946 -96.1645 +US 56257 Marietta Minnesota MN Lac qui Parle 073 44.9636 -96.4094 +US 56272 Nassau Minnesota MN Lac qui Parle County 073 45.1044 -96.4113 +US 55601 Beaver Bay Minnesota MN Lake 075 47.256 -91.3566 +US 55603 Finland Minnesota MN Lake 075 47.4197 -91.2096 +US 55607 Isabella Minnesota MN Lake 075 47.6604 -91.4989 +US 55609 Knife River Minnesota MN Lake 075 46.9539 -91.778 +US 55614 Silver Bay Minnesota MN Lake 075 47.3585 -91.2205 +US 55616 Two Harbors Minnesota MN Lake 075 47.0394 -91.6783 +US 56623 Baudette Minnesota MN Lake of the Woods 077 48.6927 -94.5995 +US 56686 Williams Minnesota MN Lake of the Woods 077 48.8022 -94.9556 +US 56711 Angle Inlet Minnesota MN Lake of the Woods 077 48.8752 -94.8857 +US 56741 Oak Island Minnesota MN Lake of the Woods 077 49.3135 -94.8492 +US 56017 Cleveland Minnesota MN Le Sueur 079 44.3201 -93.8286 +US 56028 Elysian Minnesota MN Le Sueur 079 44.2231 -93.6965 +US 56050 Kasota Minnesota MN Le Sueur 079 44.2842 -93.9453 +US 56052 Kilkenny Minnesota MN Le Sueur 079 44.3185 -93.5164 +US 56057 Le Center Minnesota MN Le Sueur 079 44.3853 -93.7214 +US 56058 Le Sueur Minnesota MN Le Sueur 079 44.4582 -93.8856 +US 56069 Montgomery Minnesota MN Le Sueur 079 44.4356 -93.581 +US 56071 New Prague Minnesota MN Le Sueur 079 44.5402 -93.5805 +US 56096 Waterville Minnesota MN Le Sueur 079 44.2238 -93.5751 +US 56113 Arco Minnesota MN Lincoln 081 44.4091 -96.1999 +US 56136 Hendricks Minnesota MN Lincoln 081 44.4995 -96.4078 +US 56142 Ivanhoe Minnesota MN Lincoln 081 44.5071 -96.2261 +US 56149 Lake Benton Minnesota MN Lincoln 081 44.2782 -96.291 +US 56178 Tyler Minnesota MN Lincoln 081 44.2773 -96.1302 +US 56179 Verdi Minnesota MN Lincoln County 081 44.2405 -96.3829 +US 56115 Balaton Minnesota MN Lyon 083 44.2253 -95.8838 +US 56132 Garvin Minnesota MN Lyon 083 44.2293 -95.7672 +US 56157 Lynd Minnesota MN Lyon 083 44.4032 -95.9233 +US 56169 Russell Minnesota MN Lyon 083 44.3201 -95.9426 +US 56175 Tracy Minnesota MN Lyon 083 44.2342 -95.6213 +US 56229 Cottonwood Minnesota MN Lyon 083 44.6003 -95.6925 +US 56239 Ghent Minnesota MN Lyon 083 44.5078 -95.8936 +US 56258 Marshall Minnesota MN Lyon 083 44.4481 -95.7795 +US 56264 Minneota Minnesota MN Lyon 083 44.5587 -95.9767 +US 56291 Taunton Minnesota MN Lyon 083 44.5951 -96.0526 +US 55312 Brownton Minnesota MN McLeod 085 44.7281 -94.3306 +US 55336 Glencoe Minnesota MN McLeod 085 44.778 -94.1616 +US 55350 Hutchinson Minnesota MN McLeod 085 44.8946 -94.3847 +US 55354 Lester Prairie Minnesota MN McLeod 085 44.8739 -94.0551 +US 55370 Plato Minnesota MN McLeod 085 44.7657 -94.0506 +US 55381 Silver Lake Minnesota MN McLeod 085 44.9139 -94.1974 +US 55385 Stewart Minnesota MN McLeod 085 44.7259 -94.4516 +US 55395 Winsted Minnesota MN McLeod 085 44.9585 -94.0552 +US 56516 Bejou Minnesota MN Mahnomen 087 47.4491 -95.9454 +US 56557 Mahnomen Minnesota MN Mahnomen 087 47.3362 -95.8856 +US 56566 Naytahwaush Minnesota MN Mahnomen 087 47.2601 -95.6283 +US 56589 Waubun Minnesota MN Mahnomen 087 47.192 -95.8871 +US 56710 Alvarado Minnesota MN Marshall 089 48.202 -96.9915 +US 56713 Argyle Minnesota MN Marshall 089 48.3314 -96.8671 +US 56724 Gatzke Minnesota MN Marshall 089 48.4104 -95.7903 +US 56727 Grygla Minnesota MN Marshall 089 48.3071 -95.6398 +US 56737 Middle River Minnesota MN Marshall 089 48.4426 -96.1232 +US 56738 Newfolden Minnesota MN Marshall 089 48.2895 -96.255 +US 56744 Oslo Minnesota MN Marshall 089 48.2066 -97.1163 +US 56757 Stephen Minnesota MN Marshall 089 48.4525 -96.8674 +US 56758 Strandquist Minnesota MN Marshall 089 48.4526 -96.4723 +US 56760 Viking Minnesota MN Marshall 089 48.2349 -96.4749 +US 56762 Warren Minnesota MN Marshall 089 48.2614 -96.7726 +US 56031 Fairmont Minnesota MN Martin 091 43.6376 -94.451 +US 56039 Granada Minnesota MN Martin 091 43.7061 -94.3307 +US 56075 Northrop Minnesota MN Martin 091 43.7353 -94.4357 +US 56088 Truman Minnesota MN Martin 091 43.82 -94.4319 +US 56121 Ceylon Minnesota MN Martin 091 43.5382 -94.6149 +US 56127 Dunnell Minnesota MN Martin 091 43.5531 -94.7876 +US 56162 Ormsby Minnesota MN Martin 091 43.8616 -94.6873 +US 56171 Sherburn Minnesota MN Martin 091 43.6611 -94.7269 +US 56176 Trimont Minnesota MN Martin 091 43.7827 -94.7186 +US 56181 Welcome Minnesota MN Martin 091 43.6705 -94.5886 +US 55324 Darwin Minnesota MN Meeker 093 45.1029 -94.4249 +US 55325 Dassel Minnesota MN Meeker 093 45.1032 -94.3305 +US 55329 Eden Valley Minnesota MN Meeker 093 45.302 -94.6039 +US 55355 Litchfield Minnesota MN Meeker 093 45.1263 -94.5268 +US 55389 Watkins Minnesota MN Meeker 093 45.3087 -94.4297 +US 56228 Cosmos Minnesota MN Meeker 093 44.959 -94.6978 +US 56243 Grove City Minnesota MN Meeker 093 45.1532 -94.6878 +US 55371 Princeton Minnesota MN Mille Lacs 095 45.5851 -93.5961 +US 56313 Bock Minnesota MN Mille Lacs 095 45.7845 -93.5522 +US 56330 Foreston Minnesota MN Mille Lacs 095 45.7028 -93.6958 +US 56342 Isle Minnesota MN Mille Lacs 095 46.1696 -93.4741 +US 56353 Milaca Minnesota MN Mille Lacs 095 45.7795 -93.6453 +US 56359 Onamia Minnesota MN Mille Lacs 095 46.0902 -93.6867 +US 56363 Pease Minnesota MN Mille Lacs 095 45.6974 -93.6465 +US 56386 Wahkon Minnesota MN Mille Lacs 095 46.1121 -93.4972 +US 56314 Bowlus Minnesota MN Morrison 097 45.8121 -94.4175 +US 56317 Buckman Minnesota MN Morrison 097 46.0613 -94.2087 +US 56328 Flensburg Minnesota MN Morrison 097 45.9533 -94.5468 +US 56338 Hillman Minnesota MN Morrison 097 46.0678 -93.8812 +US 56344 Lastrup Minnesota MN Morrison 097 46.0613 -94.2087 +US 56345 Little Falls Minnesota MN Morrison 097 45.9811 -94.3604 +US 56364 Pierz Minnesota MN Morrison 097 46.0081 -94.0853 +US 56373 Royalton Minnesota MN Morrison 097 45.8589 -94.2211 +US 56382 Swanville Minnesota MN Morrison 097 45.9431 -94.6289 +US 56384 Upsala Minnesota MN Morrison 097 45.8097 -94.5755 +US 56388 Waite Park Minnesota MN Morrison 097 45.9465 -93.8485 +US 56443 Cushing Minnesota MN Morrison 097 46.2022 -94.6185 +US 56466 Motley Minnesota MN Morrison 097 46.2881 -94.5638 +US 56475 Randall Minnesota MN Morrison 097 46.0734 -94.5005 +US 55909 Adams Minnesota MN Mower 099 43.5591 -92.7305 +US 55912 Austin Minnesota MN Mower 099 43.6695 -92.9784 +US 55918 Brownsdale Minnesota MN Mower 099 43.7248 -92.8738 +US 55926 Dexter Minnesota MN Mower 099 43.716 -92.7268 +US 55933 Elkton Minnesota MN Mower 099 43.6348 -92.7104 +US 55936 Grand Meadow Minnesota MN Mower 099 43.7101 -92.5692 +US 55950 Lansing Minnesota MN Mower 099 43.7629 -92.9653 +US 55951 Le Roy Minnesota MN Mower 099 43.5315 -92.5065 +US 55953 Lyle Minnesota MN Mower 099 43.5309 -92.9328 +US 55967 Racine Minnesota MN Mower 099 43.79 -92.531 +US 55970 Rose Creek Minnesota MN Mower 099 43.6274 -92.8621 +US 55973 Sargeant Minnesota MN Mower 099 43.809 -92.7595 +US 55977 Taopi Minnesota MN Mower 099 43.5458 -92.6335 +US 55982 Waltham Minnesota MN Mower 099 43.807 -92.8734 +US 56114 Avoca Minnesota MN Murray 101 43.9706 -95.6002 +US 56122 Chandler Minnesota MN Murray 101 43.9163 -95.9296 +US 56123 Currie Minnesota MN Murray 101 44.0946 -95.6953 +US 56125 Dovray Minnesota MN Murray 101 44.0533 -95.5499 +US 56131 Fulda Minnesota MN Murray 101 43.8753 -95.5979 +US 56133 Hadley Minnesota MN Murray County 101 44.0311 -95.869 +US 56141 Iona Minnesota MN Murray 101 43.9026 -95.7718 +US 56151 Lake Wilson Minnesota MN Murray 101 44.0095 -95.9797 +US 56172 Slayton Minnesota MN Murray 101 43.9856 -95.7554 +US 56003 Mankato Minnesota MN Nicollet 103 44.2172 -94.0942 +US 56021 Courtland Minnesota MN Nicollet 103 44.2791 -94.3482 +US 56054 Lafayette Minnesota MN Nicollet 103 44.4073 -94.4365 +US 56074 Nicollet Minnesota MN Nicollet 103 44.2724 -94.1867 +US 56082 Saint Peter Minnesota MN Nicollet 103 44.3351 -93.9811 +US 56110 Adrian Minnesota MN Nobles 105 43.6197 -95.9273 +US 56117 Bigelow Minnesota MN Nobles 105 43.5336 -95.6515 +US 56119 Brewster Minnesota MN Nobles 105 43.7032 -95.4807 +US 56126 Dundee Minnesota MN Nobles County 105 43.8182 -95.4953 +US 56129 Ellsworth Minnesota MN Nobles 105 43.5265 -96.0112 +US 56153 Leota Minnesota MN Nobles 105 43.8404 -96.0128 +US 56155 Lismore Minnesota MN Nobles 105 43.7339 -95.9682 +US 56165 Reading Minnesota MN Nobles 105 43.7136 -95.7389 +US 56167 Round Lake Minnesota MN Nobles 105 43.562 -95.4502 +US 56168 Rushmore Minnesota MN Nobles 105 43.624 -95.7767 +US 56185 Wilmont Minnesota MN Nobles 105 43.7692 -95.8324 +US 56187 Worthington Minnesota MN Nobles 105 43.6286 -95.6059 +US 56510 Ada Minnesota MN Norman 107 47.3253 -96.5973 +US 56519 Borup Minnesota MN Norman 107 47.1896 -96.553 +US 56541 Flom Minnesota MN Norman 107 47.1588 -96.1309 +US 56545 Gary Minnesota MN Norman 107 47.3675 -96.2152 +US 56548 Halstad Minnesota MN Norman 107 47.3551 -96.798 +US 56550 Hendrum Minnesota MN Norman 107 47.2689 -96.7987 +US 56574 Perley Minnesota MN Norman 107 47.1831 -96.7777 +US 56581 Shelly Minnesota MN Norman 107 47.4554 -96.7838 +US 56584 Twin Valley Minnesota MN Norman 107 47.2509 -96.2464 +US 55901 Rochester Minnesota MN Olmsted 109 44.0496 -92.4896 +US 55902 Rochester Minnesota MN Olmsted 109 44.0032 -92.4835 +US 55903 Rochester Minnesota MN Olmsted 109 43.9966 -92.5409 +US 55904 Rochester Minnesota MN Olmsted 109 44.0105 -92.3973 +US 55905 Rochester Minnesota MN Olmsted 109 44.0225 -92.4668 +US 55906 Rochester Minnesota MN Olmsted 109 44.1078 -92.4053 +US 55920 Byron Minnesota MN Olmsted 109 44.0373 -92.6308 +US 55929 Dover Minnesota MN Olmsted 109 44.0015 -92.1415 +US 55934 Eyota Minnesota MN Olmsted 109 44.0099 -92.2648 +US 55960 Oronoco Minnesota MN Olmsted 109 44.1489 -92.485 +US 55976 Stewartville Minnesota MN Olmsted 109 43.8673 -92.4547 +US 56324 Dalton Minnesota MN Otter Tail 111 46.1544 -95.85 +US 56361 Parkers Prairie Minnesota MN Otter Tail 111 46.1769 -95.3608 +US 56515 Battle Lake Minnesota MN Otter Tail 111 46.3142 -95.7144 +US 56518 Bluffton Minnesota MN Otter Tail 111 46.4918 -95.2236 +US 56524 Clitherall Minnesota MN Otter Tail 111 46.2757 -95.6308 +US 56527 Deer Creek Minnesota MN Otter Tail 111 46.4112 -95.2673 +US 56528 Dent Minnesota MN Otter Tail 111 46.5554 -95.7644 +US 56533 Elizabeth Minnesota MN Otter Tail 111 46.3803 -96.1326 +US 56534 Erhard Minnesota MN Otter Tail 111 46.4948 -96.0593 +US 56537 Fergus Falls Minnesota MN Otter Tail 111 46.276 -96.0904 +US 56538 Fergus Falls Minnesota MN Otter Tail 111 46.4124 -95.7135 +US 56551 Henning Minnesota MN Otter Tail 111 46.3256 -95.3852 +US 56567 New York Mills Minnesota MN Otter Tail 111 46.5559 -95.4047 +US 56571 Ottertail Minnesota MN Otter Tail 111 46.4177 -95.5436 +US 56572 Pelican Rapids Minnesota MN Otter Tail 111 46.5994 -96.0662 +US 56573 Perham Minnesota MN Otter Tail 111 46.6031 -95.5818 +US 56576 Richville Minnesota MN Otter Tail 111 46.4434 -95.7924 +US 56586 Underwood Minnesota MN Otter Tail 111 46.3265 -95.8415 +US 56587 Vergas Minnesota MN Otter Tail 111 46.6706 -95.7948 +US 56588 Vining Minnesota MN Otter Tail 111 46.2195 -95.506 +US 56701 Thief River Falls Minnesota MN Pennington 113 48.0763 -96.149 +US 56725 Goodridge Minnesota MN Pennington 113 48.0686 -95.7283 +US 56754 Saint Hilaire Minnesota MN Pennington 113 48.0109 -96.2249 +US 55007 Brook Park Minnesota MN Pine 115 45.9474 -93.0736 +US 55030 Grasston Minnesota MN Pine 115 45.8566 -93.0813 +US 55036 Henriette Minnesota MN Pine 115 45.8712 -93.1196 +US 55037 Hinckley Minnesota MN Pine 115 46.0189 -92.8993 +US 55063 Pine City Minnesota MN Pine 115 45.8363 -92.9042 +US 55067 Rock Creek Minnesota MN Pine 115 46.0747 -92.718 +US 55072 Sandstone Minnesota MN Pine 115 46.1325 -92.589 +US 55704 Askov Minnesota MN Pine 115 46.1964 -92.7528 +US 55712 Bruno Minnesota MN Pine 115 46.2845 -92.619 +US 55729 Duquette Minnesota MN Pine County 115 46.3697 -92.5529 +US 55735 Finlayson Minnesota MN Pine 115 46.2121 -92.9389 +US 55756 Kerrick Minnesota MN Pine 115 46.3792 -92.578 +US 55783 Sturgeon Lake Minnesota MN Pine 115 46.3837 -92.8182 +US 55795 Willow River Minnesota MN Pine 115 46.2949 -92.8309 +US 56128 Edgerton Minnesota MN Pipestone 117 43.8824 -96.1463 +US 56139 Holland Minnesota MN Pipestone 117 44.0759 -96.1903 +US 56140 Ihlen Minnesota MN Pipestone 117 43.8955 -96.364 +US 56144 Jasper Minnesota MN Pipestone 117 43.8568 -96.385 +US 56164 Pipestone Minnesota MN Pipestone 117 43.9893 -96.2652 +US 56170 Ruthton Minnesota MN Pipestone 117 44.1682 -96.0871 +US 56177 Trosky Minnesota MN Pipestone 117 43.8895 -96.2601 +US 56186 Woodstock Minnesota MN Pipestone 117 43.9873 -96.1192 +US 55762 Mahtowa Minnesota MN Polk County 119 46.5826 -92.6065 +US 56517 Beltrami Minnesota MN Polk 119 47.5721 -96.4549 +US 56523 Climax Minnesota MN Polk 119 47.6837 -96.8715 +US 56535 Erskine Minnesota MN Polk 119 47.6618 -96.0122 +US 56540 Fertile Minnesota MN Polk 119 47.5214 -96.2371 +US 56542 Fosston Minnesota MN Polk 119 47.5816 -95.7431 +US 56556 Mcintosh Minnesota MN Polk 119 47.6522 -95.8863 +US 56568 Nielsville Minnesota MN Polk 119 47.5373 -96.7574 +US 56592 Winger Minnesota MN Polk 119 47.5375 -95.9941 +US 56646 Gully Minnesota MN Polk 119 47.7697 -95.641 +US 56651 Lengby Minnesota MN Polk 119 47.8364 -96.3504 +US 56684 Trail Minnesota MN Polk 119 47.7478 -95.7607 +US 56712 Angus Minnesota MN Polk 119 48.0927 -96.657 +US 56716 Crookston Minnesota MN Polk 119 47.7797 -96.5931 +US 56721 East Grand Forks Minnesota MN Polk 119 47.9318 -97.0213 +US 56722 Euclid Minnesota MN Polk 119 47.9845 -96.6428 +US 56723 Fisher Minnesota MN Polk 119 47.8381 -96.8803 +US 56736 Mentor Minnesota MN Polk 119 47.6576 -96.1778 +US 56323 Cyrus Minnesota MN Pope 121 45.6414 -95.7096 +US 56327 Farwell Minnesota MN Pope 121 45.7244 -95.6656 +US 56334 Glenwood Minnesota MN Pope 121 45.6429 -95.3868 +US 56349 Lowry Minnesota MN Pope 121 45.7105 -95.5322 +US 56380 Sedan Minnesota MN Pope County 121 45.501 -95.2572 +US 56381 Starbuck Minnesota MN Pope 121 45.5926 -95.5421 +US 56385 Villard Minnesota MN Pope 121 45.7118 -95.2414 +US 55101 Saint Paul Minnesota MN Ramsey 123 44.9512 -93.0902 +US 55102 Saint Paul Minnesota MN Ramsey 123 44.9372 -93.1209 +US 55103 Saint Paul Minnesota MN Ramsey 123 44.9608 -93.1216 +US 55104 Saint Paul Minnesota MN Ramsey 123 44.9532 -93.158 +US 55105 Saint Paul Minnesota MN Ramsey 123 44.9347 -93.1651 +US 55106 Saint Paul Minnesota MN Ramsey 123 44.9684 -93.0488 +US 55107 Saint Paul Minnesota MN Ramsey 123 44.9325 -93.088 +US 55108 Saint Paul Minnesota MN Ramsey 123 44.9806 -93.1771 +US 55109 Saint Paul Minnesota MN Ramsey 123 45.0132 -93.0297 +US 55110 Saint Paul Minnesota MN Ramsey 123 45.08 -93.0223 +US 55112 Saint Paul Minnesota MN Ramsey 123 45.0788 -93.1872 +US 55113 Saint Paul Minnesota MN Ramsey 123 45.0139 -93.1571 +US 55114 Saint Paul Minnesota MN Ramsey 123 44.968 -93.1981 +US 55116 Saint Paul Minnesota MN Ramsey 123 44.914 -93.1727 +US 55117 Saint Paul Minnesota MN Ramsey 123 44.9995 -93.0969 +US 55119 Saint Paul Minnesota MN Ramsey 123 44.9414 -93.0107 +US 55126 Saint Paul Minnesota MN Ramsey 123 45.0736 -93.138 +US 55127 Saint Paul Minnesota MN Ramsey 123 45.0803 -93.0875 +US 55130 Saint Paul Minnesota MN Ramsey County 123 44.973 -93.0827 +US 55133 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55144 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55145 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55146 Saint Paul Minnesota MN Ramsey 123 44.9427 -93.0828 +US 55155 Saint Paul Minnesota MN Ramsey 123 44.9522 -93.0955 +US 55161 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55164 Saint Paul Minnesota MN Ramsey 123 44.9909 -93.1066 +US 55165 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55166 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55168 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55169 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55170 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55171 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55172 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55175 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55177 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55182 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55187 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55188 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55189 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55190 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55191 Saint Paul Minnesota MN Ramsey 123 45.0059 -93.1059 +US 55199 Saint Paul Minnesota MN Ramsey County 123 44.9445 -93.0932 +US 56715 Brooks Minnesota MN Red Lake 125 47.8129 -96.0117 +US 56742 Oklee Minnesota MN Red Lake 125 47.8286 -95.8617 +US 56748 Plummer Minnesota MN Red Lake 125 47.9113 -95.9646 +US 56750 Red Lake Falls Minnesota MN Red Lake 125 47.8823 -96.2681 +US 56083 Sanborn Minnesota MN Redwood 127 44.2183 -95.1328 +US 56152 Lamberton Minnesota MN Redwood 127 44.2378 -95.2739 +US 56166 Revere Minnesota MN Redwood 127 44.2391 -95.3557 +US 56180 Walnut Grove Minnesota MN Redwood 127 44.2294 -95.4965 +US 56214 Belview Minnesota MN Redwood 127 44.6055 -95.3178 +US 56224 Clements Minnesota MN Redwood 127 44.3943 -95.0474 +US 56255 Lucan Minnesota MN Redwood 127 44.4132 -95.4119 +US 56263 Milroy Minnesota MN Redwood 127 44.4365 -95.5545 +US 56266 Morgan Minnesota MN Redwood 127 44.3926 -94.9218 +US 56283 Redwood Falls Minnesota MN Redwood 127 44.5218 -95.2003 +US 56287 Seaforth Minnesota MN Redwood 127 44.4613 -95.3282 +US 56292 Vesta Minnesota MN Redwood 127 44.5051 -95.4118 +US 56293 Wabasso Minnesota MN Redwood 127 44.4059 -95.2632 +US 56294 Wanda Minnesota MN Redwood 127 44.3149 -95.213 +US 55310 Bird Island Minnesota MN Renville 129 44.7507 -94.8716 +US 55314 Buffalo Lake Minnesota MN Renville 129 44.7709 -94.5912 +US 55332 Fairfax Minnesota MN Renville 129 44.5329 -94.7256 +US 55333 Franklin Minnesota MN Renville 129 44.5421 -94.8931 +US 55342 Hector Minnesota MN Renville 129 44.7485 -94.7058 +US 56230 Danube Minnesota MN Renville 129 44.7956 -95.0784 +US 56270 Morton Minnesota MN Renville 129 44.5662 -95.0268 +US 56277 Olivia Minnesota MN Renville 129 44.7706 -94.9727 +US 56284 Renville Minnesota MN Renville 129 44.7776 -95.1989 +US 56285 Sacred Heart Minnesota MN Renville 129 44.7975 -95.3538 +US 55019 Dundas Minnesota MN Rice 131 44.3955 -93.2037 +US 55021 Faribault Minnesota MN Rice 131 44.2945 -93.2818 +US 55046 Lonsdale Minnesota MN Rice 131 44.4477 -93.4252 +US 55052 Morristown Minnesota MN Rice 131 44.2342 -93.4525 +US 55053 Nerstrand Minnesota MN Rice 131 44.3538 -93.0855 +US 55057 Northfield Minnesota MN Rice 131 44.4587 -93.1668 +US 55087 Warsaw Minnesota MN Rice 131 44.2485 -93.3949 +US 55088 Webster Minnesota MN Rice 131 44.5003 -93.3826 +US 56116 Beaver Creek Minnesota MN Rock 133 43.6223 -96.3698 +US 56134 Hardwick Minnesota MN Rock 133 43.7911 -96.2161 +US 56138 Hills Minnesota MN Rock 133 43.5335 -96.3645 +US 56146 Kanaranzi Minnesota MN Rock 133 43.6749 -96.2528 +US 56147 Kenneth Minnesota MN Rock 133 43.7637 -96.1089 +US 56156 Luverne Minnesota MN Rock 133 43.6614 -96.2216 +US 56158 Magnolia Minnesota MN Rock 133 43.644 -96.0769 +US 56173 Steen Minnesota MN Rock 133 43.5317 -96.2439 +US 56673 Roosevelt Minnesota MN Roseau 135 48.8279 -95.1119 +US 56682 Swift Minnesota MN Roseau 135 48.7692 -95.7476 +US 56714 Badger Minnesota MN Roseau 135 48.7913 -96.0965 +US 56726 Greenbush Minnesota MN Roseau 135 48.6957 -96.1871 +US 56751 Roseau Minnesota MN Roseau 135 48.7048 -95.7504 +US 56756 Salol Minnesota MN Roseau 135 48.8522 -95.5356 +US 56759 Strathcona Minnesota MN Roseau 135 48.5459 -96.0879 +US 56761 Wannaska Minnesota MN Roseau 135 48.6452 -95.7072 +US 56763 Warroad Minnesota MN Roseau 135 48.9111 -95.3538 +US 55602 Brimson Minnesota MN St. Louis 137 47.3142 -91.8625 +US 55701 Adolph Minnesota MN St. Louis 137 47.6404 -92.4428 +US 55702 Alborn Minnesota MN St. Louis 137 46.9782 -92.5579 +US 55703 Angora Minnesota MN St. Louis 137 47.7577 -92.6413 +US 55705 Aurora Minnesota MN St. Louis 137 47.4951 -92.2415 +US 55706 Babbitt Minnesota MN St. Louis 137 47.7091 -91.957 +US 55708 Biwabik Minnesota MN St. Louis 137 47.5328 -92.3408 +US 55710 Britt Minnesota MN St. Louis 137 47.655 -92.6321 +US 55711 Brookston Minnesota MN St. Louis 137 46.8384 -92.643 +US 55713 Buhl Minnesota MN St. Louis 137 47.4932 -92.7643 +US 55717 Canyon Minnesota MN St. Louis 137 47.0785 -92.4594 +US 55719 Chisholm Minnesota MN St. Louis 137 47.5007 -92.8617 +US 55723 Cook Minnesota MN St. Louis 137 47.8442 -92.721 +US 55724 Cotton Minnesota MN St. Louis 137 47.1521 -92.4352 +US 55725 Crane Lake Minnesota MN St. Louis 137 48.2594 -92.4896 +US 55727 Culver Minnesota MN Saint Louis County 137 46.9119 -92.5524 +US 55731 Ely Minnesota MN St. Louis 137 47.9034 -91.857 +US 55732 Embarrass Minnesota MN St. Louis 137 47.6658 -92.2101 +US 55734 Eveleth Minnesota MN St. Louis 137 47.451 -92.528 +US 55736 Floodwood Minnesota MN St. Louis 137 46.9076 -92.9167 +US 55738 Forbes Minnesota MN St. Louis 137 47.2732 -92.6756 +US 55740 Gheen Minnesota MN Saint Louis County 137 47.9465 -92.9069 +US 55741 Gilbert Minnesota MN St. Louis 137 47.4885 -92.4025 +US 55746 Hibbing Minnesota MN St. Louis 137 47.4156 -92.9356 +US 55747 Hibbing Minnesota MN St. Louis 137 47.6404 -92.4428 +US 55750 Hoyt Lakes Minnesota MN St. Louis 137 47.515 -92.14 +US 55751 Iron Minnesota MN St. Louis 137 47.4115 -92.6195 +US 55754 Kelly Lake Minnesota MN Saint Louis County 137 47.4175 -93.0062 +US 55758 Kinney Minnesota MN St. Louis 137 47.5121 -92.7402 +US 55761 McKinley Minnesota MN Saint Louis County 137 47.513 -92.4104 +US 55763 Makinen Minnesota MN St. Louis 137 47.3416 -92.3446 +US 55765 Meadowlands Minnesota MN St. Louis 137 47.1021 -92.7884 +US 55766 Melrude Minnesota MN St. Louis 137 47.2496 -92.4123 +US 55768 Mountain Iron Minnesota MN St. Louis 137 47.5133 -92.6243 +US 55771 Orr Minnesota MN St. Louis 137 48.1439 -92.8561 +US 55772 Nett Lake Minnesota MN St. Louis 137 48.0817 -93.0834 +US 55773 Parkville Minnesota MN Saint Louis County 137 47.5209 -92.5826 +US 55777 Virginia Minnesota MN St. Louis 137 47.6404 -92.4428 +US 55778 Rutledge Minnesota MN Saint Louis County 137 46.2631 -92.8682 +US 55779 Saginaw Minnesota MN St. Louis 137 46.8795 -92.3917 +US 55781 Side Lake Minnesota MN St. Louis 137 47.6671 -93.0424 +US 55782 Soudan Minnesota MN St. Louis 137 47.821 -92.2464 +US 55789 Toivola Minnesota MN Saint Louis County 137 47.0719 -92.7321 +US 55790 Tower Minnesota MN St. Louis 137 47.8089 -92.2878 +US 55791 Twig Minnesota MN St. Louis 137 47.6404 -92.4428 +US 55792 Virginia Minnesota MN St. Louis 137 47.5371 -92.5285 +US 55796 Winton Minnesota MN St. Louis 137 47.7206 -92.2665 +US 55799 Zim Minnesota MN Saint Louis County 137 47.2882 -92.6517 +US 55801 Duluth Minnesota MN St. Louis 137 47.0056 -92.0019 +US 55802 Duluth Minnesota MN St. Louis 137 46.7685 -92.0865 +US 55803 Duluth Minnesota MN St. Louis 137 46.8749 -92.0941 +US 55804 Duluth Minnesota MN St. Louis 137 46.8551 -92.0074 +US 55805 Duluth Minnesota MN St. Louis 137 46.7987 -92.0946 +US 55806 Duluth Minnesota MN St. Louis 137 46.7715 -92.1279 +US 55807 Duluth Minnesota MN St. Louis 137 46.7408 -92.1698 +US 55808 Duluth Minnesota MN St. Louis 137 46.681 -92.2226 +US 55810 Duluth Minnesota MN St. Louis 137 46.7606 -92.266 +US 55811 Duluth Minnesota MN St. Louis 137 46.8147 -92.1998 +US 55812 Duluth Minnesota MN St. Louis 137 46.8106 -92.0767 +US 55814 Duluth Minnesota MN St. Louis 137 47.6404 -92.4428 +US 55815 Duluth Minnesota MN St. Louis 137 47.6404 -92.4428 +US 55816 Duluth Minnesota MN St. Louis 137 47.6404 -92.4428 +US 55020 Elko Minnesota MN Scott 139 44.5894 -93.3836 +US 55054 New Market Minnesota MN Scott 139 44.5711 -93.3543 +US 55352 Jordan Minnesota MN Scott 139 44.6713 -93.6195 +US 55372 Prior Lake Minnesota MN Scott 139 44.7107 -93.4101 +US 55378 Savage Minnesota MN Scott 139 44.7615 -93.3434 +US 55379 Shakopee Minnesota MN Scott 139 44.7793 -93.5197 +US 56011 Belle Plaine Minnesota MN Scott 139 44.6139 -93.7604 +US 55308 Becker Minnesota MN Sherburne 141 45.4365 -93.841 +US 55309 Big Lake Minnesota MN Sherburne 141 45.3506 -93.7399 +US 55319 Clear Lake Minnesota MN Sherburne 141 45.4795 -93.9684 +US 55330 Elk River Minnesota MN Sherburne 141 45.3136 -93.5814 +US 55377 Santiago Minnesota MN Sherburne 141 45.5402 -93.8154 +US 55398 Zimmerman Minnesota MN Sherburne 141 45.4553 -93.5879 +US 55307 Arlington Minnesota MN Sibley 143 44.6153 -94.0762 +US 55334 Gaylord Minnesota MN Sibley 143 44.5463 -94.1955 +US 55335 Gibbon Minnesota MN Sibley 143 44.5606 -94.5467 +US 55338 Green Isle Minnesota MN Sibley 143 44.6687 -93.9326 +US 55366 New Auburn Minnesota MN Sibley 143 44.6735 -94.2293 +US 55396 Winthrop Minnesota MN Sibley 143 44.5436 -94.3698 +US 56044 Henderson Minnesota MN Sibley 143 44.5344 -93.9345 +US 55353 Kimball Minnesota MN Stearns 145 45.3436 -94.3028 +US 56301 Saint Cloud Minnesota MN Stearns 145 45.541 -94.1819 +US 56302 Saint Cloud Minnesota MN Stearns 145 45.4934 -94.6439 +US 56303 Saint Cloud Minnesota MN Stearns 145 45.5713 -94.2036 +US 56304 Saint Cloud Minnesota MN Stearns 145 45.5521 -94.1284 +US 56307 Albany Minnesota MN Stearns 145 45.6151 -94.574 +US 56310 Avon Minnesota MN Stearns 145 45.6122 -94.436 +US 56312 Belgrade Minnesota MN Stearns 145 45.4865 -94.9699 +US 56316 Brooten Minnesota MN Stearns 145 45.4932 -95.09 +US 56320 Cold Spring Minnesota MN Stearns 145 45.45 -94.4378 +US 56321 Collegeville Minnesota MN Stearns 145 45.5783 -94.4199 +US 56325 Elrosa Minnesota MN Stearns 145 45.5636 -94.9464 +US 56331 Freeport Minnesota MN Stearns 145 45.6731 -94.6785 +US 56335 Greenwald Minnesota MN Stearns 145 45.5971 -94.8515 +US 56340 Holdingford Minnesota MN Stearns 145 45.7249 -94.4581 +US 56346 Long Prairie Minnesota MN Stearns County 145 45.9796 -94.863 +US 56352 Melrose Minnesota MN Stearns 145 45.6582 -94.8198 +US 56356 New Munich Minnesota MN Stearns 145 45.6297 -94.7519 +US 56362 Paynesville Minnesota MN Stearns 145 45.3988 -94.7157 +US 56368 Richmond Minnesota MN Stearns 145 45.4605 -94.5361 +US 56369 Rockville Minnesota MN Stearns 145 45.4687 -94.3406 +US 56371 Roscoe Minnesota MN Stearns 145 45.4332 -94.6366 +US 56372 Saint Cloud Minnesota MN Stearns 145 45.5289 -94.5933 +US 56374 Saint Joseph Minnesota MN Stearns 145 45.5651 -94.3367 +US 56375 Saint Stephen Minnesota MN Stearns 145 45.7118 -94.2817 +US 56376 Saint Martin Minnesota MN Stearns 145 45.4896 -94.7182 +US 56377 Sartell Minnesota MN Stearns 145 45.6318 -94.2136 +US 56378 Sauk Centre Minnesota MN Stearns 145 45.7281 -94.9682 +US 56387 Waite Park Minnesota MN Stearns 145 45.5497 -94.2245 +US 56393 Saint Cloud Minnesota MN Stearns 145 45.5289 -94.5933 +US 56395 Saint Cloud Minnesota MN Stearns 145 45.5289 -94.5933 +US 56396 Saint Cloud Minnesota MN Stearns 145 45.5289 -94.5933 +US 56397 Saint Cloud Minnesota MN Stearns 145 45.5289 -94.5933 +US 56398 Saint Cloud Minnesota MN Stearns 145 45.5289 -94.5933 +US 56399 Saint Cloud Minnesota MN Stearns 145 45.5289 -94.5933 +US 55049 Medford Minnesota MN Steele 147 44.1741 -93.2437 +US 55060 Owatonna Minnesota MN Steele 147 44.0805 -93.2191 +US 55917 Blooming Prairie Minnesota MN Steele 147 43.8977 -93.0608 +US 56026 Ellendale Minnesota MN Steele 147 43.8826 -93.3195 +US 56046 Hope Minnesota MN Steele 147 43.9551 -93.274 +US 56067 Meriden Minnesota MN Steele County 147 44.0699 -93.3512 +US 56207 Alberta Minnesota MN Stevens 149 45.5571 -96.0498 +US 56221 Chokio Minnesota MN Stevens 149 45.5524 -96.1733 +US 56235 Donnelly Minnesota MN Stevens 149 45.7014 -96.0649 +US 56244 Hancock Minnesota MN Stevens 149 45.4985 -95.8008 +US 56267 Morris Minnesota MN Stevens 149 45.5921 -95.9172 +US 56208 Appleton Minnesota MN Swift 151 45.2054 -95.9949 +US 56215 Benson Minnesota MN Swift 151 45.3129 -95.5766 +US 56226 Clontarf Minnesota MN Swift 151 45.3059 -95.8389 +US 56231 Danvers Minnesota MN Swift 151 45.2818 -95.7219 +US 56233 De Graff Minnesota MN Swift County 151 45.2735 -95.4484 +US 56249 Holloway Minnesota MN Swift 151 45.2708 -95.9164 +US 56252 Kerkhoven Minnesota MN Swift 151 45.2096 -95.3115 +US 56271 Murdock Minnesota MN Swift 151 45.2161 -95.4049 +US 56318 Burtrum Minnesota MN Todd 153 45.888 -94.6962 +US 56336 Grey Eagle Minnesota MN Todd 153 45.8107 -94.8321 +US 56347 Long Prairie Minnesota MN Todd 153 45.9041 -94.8151 +US 56389 West Union Minnesota MN Todd 153 45.7995 -95.0821 +US 56437 Bertha Minnesota MN Todd 153 46.2515 -95.0357 +US 56438 Browerville Minnesota MN Todd 153 46.0905 -94.8346 +US 56440 Clarissa Minnesota MN Todd 153 46.1373 -94.9572 +US 56446 Eagle Bend Minnesota MN Todd 153 46.117 -95.0961 +US 56453 Hewitt Minnesota MN Todd 153 46.325 -95.0504 +US 56479 Staples Minnesota MN Todd 153 46.3536 -94.7633 +US 56219 Browns Valley Minnesota MN Traverse 155 45.6069 -96.8063 +US 56236 Dumont Minnesota MN Traverse 155 45.6717 -96.4061 +US 56296 Wheaton Minnesota MN Traverse 155 45.8111 -96.4866 +US 56583 Tintah Minnesota MN Traverse 155 46.0074 -96.3593 +US 55041 Lake City Minnesota MN Wabasha 157 44.4305 -92.2838 +US 55932 Elgin Minnesota MN Wabasha 157 44.1358 -92.2535 +US 55938 Zumbro Falls Minnesota MN Wabasha County 157 44.2592 -92.3964 +US 55945 Kellogg Minnesota MN Wabasha 157 44.2739 -92.1095 +US 55956 Mazeppa Minnesota MN Wabasha 157 44.2646 -92.5207 +US 55957 Millville Minnesota MN Wabasha 157 44.2359 -92.2672 +US 55964 Plainview Minnesota MN Wabasha 157 44.1637 -92.1621 +US 55968 Reads Landing Minnesota MN Wabasha 157 44.3977 -92.0893 +US 55978 Theilman Minnesota MN Wabasha County 157 44.2998 -92.2005 +US 55981 Wabasha Minnesota MN Wabasha 157 44.3703 -92.0361 +US 55991 Zumbro Falls Minnesota MN Wabasha 157 44.2427 -92.4256 +US 56434 Aldrich Minnesota MN Wadena 159 46.3797 -94.9364 +US 56464 Menahga Minnesota MN Wadena 159 46.7572 -95.0714 +US 56477 Sebeka Minnesota MN Wadena 159 46.6306 -95.0681 +US 56478 Nimrod Minnesota MN Wadena 159 46.6053 -94.9007 +US 56481 Verndale Minnesota MN Wadena 159 46.5065 -94.9676 +US 56482 Wadena Minnesota MN Wadena 159 46.4401 -95.1283 +US 56048 Janesville Minnesota MN Waseca 161 44.1168 -93.7095 +US 56072 New Richland Minnesota MN Waseca 161 43.8937 -93.4995 +US 56077 Otisco Minnesota MN Waseca County 161 43.9858 -93.4667 +US 56091 Waldorf Minnesota MN Waseca 161 43.9399 -93.7043 +US 56093 Waseca Minnesota MN Waseca 161 44.0834 -93.5108 +US 55001 Afton Minnesota MN Washington 163 44.8697 -92.8234 +US 55003 Bayport Minnesota MN Washington 163 45.0214 -92.7844 +US 55016 Cottage Grove Minnesota MN Washington 163 44.8308 -92.9393 +US 55025 Forest Lake Minnesota MN Washington 163 45.2685 -92.9749 +US 55038 Hugo Minnesota MN Washington 163 45.1824 -92.9452 +US 55042 Lake Elmo Minnesota MN Washington 163 44.9946 -92.9056 +US 55043 Lakeland Minnesota MN Washington 163 44.9394 -92.7716 +US 55047 Marine On Saint Croix Minnesota MN Washington 163 45.1988 -92.8258 +US 55055 Newport Minnesota MN Washington 163 44.8725 -92.9986 +US 55071 Saint Paul Park Minnesota MN Washington 163 44.8344 -92.9873 +US 55073 Scandia Minnesota MN Washington 163 45.2697 -92.8292 +US 55082 Stillwater Minnesota MN Washington 163 45.0614 -92.8474 +US 55083 Stillwater Minnesota MN Washington 163 45.021 -92.9837 +US 55090 Willernie Minnesota MN Washington 163 45.0535 -92.957 +US 55115 Saint Paul Minnesota MN Washington 163 45.071 -92.9391 +US 55125 Saint Paul Minnesota MN Washington 163 44.9197 -92.9439 +US 55128 Saint Paul Minnesota MN Washington 163 44.9913 -92.9487 +US 55129 Saint Paul Minnesota MN Washington 163 44.8985 -92.923 +US 56022 Darfur Minnesota MN Watonwan 165 44.0548 -94.7902 +US 56056 La Salle Minnesota MN Watonwan 165 44.0727 -94.5795 +US 56060 Lewisville Minnesota MN Watonwan 165 43.9209 -94.4289 +US 56061 London Minnesota MN Watonwan County 165 43.5491 -93.1137 +US 56062 Madelia Minnesota MN Watonwan 165 44.0499 -94.411 +US 56081 Saint James Minnesota MN Watonwan 165 43.9875 -94.6229 +US 56120 Butterfield Minnesota MN Watonwan 165 43.9654 -94.7956 +US 56160 Odin Minnesota MN Watonwan 165 43.8824 -94.774 +US 56520 Breckenridge Minnesota MN Wilkin 167 46.2797 -96.5622 +US 56522 Campbell Minnesota MN Wilkin 167 46.1402 -96.4433 +US 56543 Foxhome Minnesota MN Wilkin 167 46.2584 -96.3176 +US 56553 Kent Minnesota MN Wilkin 167 46.4378 -96.6852 +US 56565 Nashua Minnesota MN Wilkin 167 46.0537 -96.316 +US 56579 Rothsay Minnesota MN Wilkin 167 46.5094 -96.2887 +US 56594 Wolverton Minnesota MN Wilkin 167 46.555 -96.6149 +US 55910 Altura Minnesota MN Winona 169 44.1361 -91.9745 +US 55925 Dakota Minnesota MN Winona 169 43.9148 -91.394 +US 55942 Homer Minnesota MN Winona 169 44.02 -91.6819 +US 55952 Lewiston Minnesota MN Winona 169 43.9702 -91.8662 +US 55959 Minnesota City Minnesota MN Winona 169 44.0832 -91.7418 +US 55969 Rollingstone Minnesota MN Winona 169 44.1025 -91.8158 +US 55972 Saint Charles Minnesota MN Winona 169 43.9585 -92.0517 +US 55979 Utica Minnesota MN Winona 169 43.9587 -91.9417 +US 55986 Whalan Minnesota MN Winona County 169 43.7174 -91.9188 +US 55987 Winona Minnesota MN Winona 169 44.03 -91.7009 +US 55988 Stockton Minnesota MN Winona 169 44.0252 -91.7708 +US 55301 Albertville Minnesota MN Wright 171 45.2534 -93.6469 +US 55302 Annandale Minnesota MN Wright 171 45.2483 -94.1061 +US 55313 Buffalo Minnesota MN Wright 171 45.1814 -93.8635 +US 55320 Clearwater Minnesota MN Wright 171 45.3877 -94.0452 +US 55321 Cokato Minnesota MN Wright 171 45.0748 -94.1911 +US 55328 Delano Minnesota MN Wright 171 45.0342 -93.8016 +US 55341 Hanover Minnesota MN Wright 171 45.1602 -93.6734 +US 55349 Howard Lake Minnesota MN Wright 171 45.0616 -94.0695 +US 55358 Maple Lake Minnesota MN Wright 171 45.2202 -93.9638 +US 55362 Monticello Minnesota MN Wright 171 45.2956 -93.8023 +US 55363 Montrose Minnesota MN Wright 171 45.0442 -93.9139 +US 55365 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55373 Rockford Minnesota MN Wright 171 45.0882 -93.7237 +US 55376 Saint Michael Minnesota MN Wright 171 45.2064 -93.6593 +US 55380 Silver Creek Minnesota MN Wright 171 45.3158 -93.9798 +US 55382 South Haven Minnesota MN Wright 171 45.346 -94.1628 +US 55390 Waverly Minnesota MN Wright 171 45.0413 -93.9545 +US 55393 Maple Plain Minnesota MN Wright 171 45.2009 -93.8881 +US 55565 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55580 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55581 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55582 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55584 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55585 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55586 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55587 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55588 Monticello Minnesota MN Wright 171 44.9895 -93.8802 +US 55589 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55590 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55591 Monticello Minnesota MN Wright 171 45.2009 -93.8881 +US 55592 Maple Plain Minnesota MN Wright 171 45.2009 -93.8881 +US 56220 Canby Minnesota MN Yellow Medicine 173 44.7202 -96.2784 +US 56223 Clarkfield Minnesota MN Yellow Medicine 173 44.7743 -95.8304 +US 56237 Echo Minnesota MN Yellow Medicine 173 44.631 -95.4182 +US 56241 Granite Falls Minnesota MN Yellow Medicine 173 44.8087 -95.5516 +US 56245 Hanley Falls Minnesota MN Yellow Medicine 173 44.6789 -95.6825 +US 56247 Hazel Run Minnesota MN Yellow Medicine County 173 44.7481 -95.6968 +US 56280 Porter Minnesota MN Yellow Medicine 173 44.6565 -96.1581 +US 56286 Saint Leo Minnesota MN Yellow Medicine County 173 44.7111 -96.0425 +US 56297 Wood Lake Minnesota MN Yellow Medicine 173 44.6379 -95.5409 +US 63501 Kirksville Missouri MO Adair 001 40.1908 -92.5856 +US 63533 Brashear Missouri MO Adair 001 40.1959 -92.4333 +US 63540 Gibbs Missouri MO Adair 001 40.104 -92.4066 +US 63546 Greentop Missouri MO Adair 001 40.3446 -92.5567 +US 63559 Novinger Missouri MO Adair 001 40.2685 -92.7172 +US 64421 Amazonia Missouri MO Andrew 003 39.9092 -94.9113 +US 64427 Bolckow Missouri MO Andrew 003 40.1007 -94.8847 +US 64436 Cosby Missouri MO Andrew 003 39.8555 -94.6977 +US 64449 Fillmore Missouri MO Andrew 003 40.0142 -94.9555 +US 64459 Helena Missouri MO Andrew 003 39.9295 -94.6465 +US 64480 Rea Missouri MO Andrew 003 40.0593 -94.7002 +US 64483 Rosendale Missouri MO Andrew 003 40.0399 -94.8328 +US 64485 Savannah Missouri MO Andrew 003 39.9168 -94.8267 +US 64506 Saint Joseph Missouri MO Andrew 003 39.7893 -94.8043 +US 64446 Fairfax Missouri MO Atchison 005 40.3302 -95.3751 +US 64482 Rock Port Missouri MO Atchison 005 40.4306 -95.5274 +US 64491 Tarkio Missouri MO Atchison 005 40.4418 -95.3786 +US 64496 Watson Missouri MO Atchison 005 40.478 -95.6193 +US 64498 Westboro Missouri MO Atchison 005 40.5357 -95.3134 +US 63345 Farber Missouri MO Audrain 007 39.2742 -91.5798 +US 63352 Laddonia Missouri MO Audrain 007 39.2593 -91.6893 +US 63382 Vandalia Missouri MO Audrain 007 39.2949 -91.4883 +US 65232 Benton City Missouri MO Audrain 007 39.1209 -91.7661 +US 65264 Martinsburg Missouri MO Audrain 007 39.0968 -91.6646 +US 65265 Mexico Missouri MO Audrain 007 39.1712 -91.8895 +US 65280 Rush Hill Missouri MO Audrain 007 39.2115 -91.7087 +US 65285 Thompson Missouri MO Audrain 007 39.2128 -92.0046 +US 64874 Wheaton Missouri MO Barry 009 36.7651 -94.0492 +US 65623 Butterfield Missouri MO Barry 009 36.749 -93.9064 +US 65625 Cassville Missouri MO Barry 009 36.6784 -93.8467 +US 65641 Eagle Rock Missouri MO Barry 009 36.548 -93.7336 +US 65647 Exeter Missouri MO Barry 009 36.6815 -93.9702 +US 65658 Golden Missouri MO Barry 009 36.5625 -93.623 +US 65708 Monett Missouri MO Barry 009 36.9212 -93.9258 +US 65734 Purdy Missouri MO Barry 009 36.8069 -93.9164 +US 65745 Seligman Missouri MO Barry 009 36.5276 -93.9359 +US 65747 Shell Knob Missouri MO Barry 009 36.6167 -93.6249 +US 65758 Gainesville Missouri MO Barry County 009 36.6718 -92.3544 +US 65772 Washburn Missouri MO Barry 009 36.5807 -93.992 +US 64748 Golden City Missouri MO Barton 011 37.3995 -94.1027 +US 64759 Lamar Missouri MO Barton 011 37.5191 -94.3364 +US 64762 Liberal Missouri MO Barton 011 37.5725 -94.5204 +US 64766 Milford Missouri MO Barton 011 37.5015 -94.3456 +US 64769 Mindenmines Missouri MO Barton 011 37.452 -94.5756 +US 64720 Adrian Missouri MO Bates 013 38.4125 -94.3683 +US 64722 Amoret Missouri MO Bates 013 38.2605 -94.5734 +US 64723 Amsterdam Missouri MO Bates 013 38.3954 -94.5763 +US 64730 Butler Missouri MO Bates 013 38.2712 -94.3137 +US 64742 Drexel Missouri MO Bates 013 38.4956 -94.5928 +US 64745 Foster Missouri MO Bates 013 38.2519 -94.332 +US 64752 Hume Missouri MO Bates 013 38.126 -94.547 +US 64777 Passaic Missouri MO Bates 013 38.2519 -94.332 +US 64779 Rich Hill Missouri MO Bates 013 38.0944 -94.3635 +US 64780 Rockville Missouri MO Bates 013 38.0766 -94.1299 +US 65325 Cole Camp Missouri MO Benton 015 38.4531 -93.1915 +US 65326 Edwards Missouri MO Benton 015 38.1906 -93.1471 +US 65335 Ionia Missouri MO Benton 015 38.5019 -93.3224 +US 65338 Lincoln Missouri MO Benton 015 38.4073 -93.3668 +US 65355 Warsaw Missouri MO Benton 015 38.2502 -93.3373 +US 63662 Patton Missouri MO Bollinger 017 37.4733 -90.05 +US 63733 Zalma Missouri MO Bollinger County 017 37.0639 -90.0812 +US 63750 Gipsy Missouri MO Bollinger 017 37.1311 -90.1941 +US 63751 Glenallen Missouri MO Bollinger 017 37.3231 -90.0515 +US 63753 Grassy Missouri MO Bollinger 017 37.3197 -90.0422 +US 63760 Leopold Missouri MO Bollinger 017 37.2609 -89.9227 +US 63764 Marble Hill Missouri MO Bollinger 017 37.3061 -89.9823 +US 63765 Menfro Missouri MO Bollinger County 017 37.7768 -89.7232 +US 63781 Sedgewickville Missouri MO Bollinger 017 37.537 -89.9272 +US 63782 Sturdivant Missouri MO Bollinger 017 37.071 -90.0092 +US 63787 Zalma Missouri MO Bollinger 017 37.1365 -90.0757 +US 65010 Ashland Missouri MO Boone 019 38.7878 -92.2537 +US 65039 Hartsburg Missouri MO Boone 019 38.7159 -92.2864 +US 65201 Columbia Missouri MO Boone 019 38.9382 -92.3049 +US 65202 Columbia Missouri MO Boone 019 38.995 -92.3112 +US 65203 Columbia Missouri MO Boone 019 38.9348 -92.3639 +US 65205 Columbia Missouri MO Boone 019 39.0447 -92.3496 +US 65211 Columbia Missouri MO Boone 019 38.9033 -92.1022 +US 65212 Columbia Missouri MO Boone 019 38.9376 -92.3304 +US 65215 Columbia Missouri MO Boone 019 38.9532 -92.3208 +US 65216 Columbia Missouri MO Boone 019 38.9033 -92.1022 +US 65217 Columbia Missouri MO Boone 019 38.9033 -92.1022 +US 65218 Columbia Missouri MO Boone 019 38.9033 -92.1022 +US 65240 Centralia Missouri MO Boone 019 39.1961 -92.1472 +US 65255 Hallsville Missouri MO Boone 019 39.1054 -92.2239 +US 65256 Harrisburg Missouri MO Boone 019 39.1203 -92.441 +US 65279 Rocheport Missouri MO Boone 019 38.9756 -92.5079 +US 65284 Sturgeon Missouri MO Boone 019 39.2057 -92.2953 +US 65299 Mid Missouri Missouri MO Boone 019 38.9033 -92.1022 +US 64401 Agency Missouri MO Buchanan 021 39.6662 -94.717 +US 64440 De Kalb Missouri MO Buchanan 021 39.5834 -94.927 +US 64443 Easton Missouri MO Buchanan 021 39.7517 -94.6582 +US 64448 Faucett Missouri MO Buchanan 021 39.5891 -94.7913 +US 64484 Rushville Missouri MO Buchanan 021 39.5653 -95.0413 +US 64501 Saint Joseph Missouri MO Buchanan 021 39.7688 -94.8385 +US 64502 Saint Joseph Missouri MO Buchanan 021 39.6763 -94.8574 +US 64503 Saint Joseph Missouri MO Buchanan 021 39.734 -94.8171 +US 64504 Saint Joseph Missouri MO Buchanan 021 39.7076 -94.8677 +US 64505 Saint Joseph Missouri MO Buchanan 021 39.7965 -94.8443 +US 64507 Saint Joseph Missouri MO Buchanan 021 39.7551 -94.8173 +US 64508 Saint Joseph Missouri MO Buchanan 021 39.6763 -94.8574 +US 63901 Poplar Bluff Missouri MO Butler 023 36.7662 -90.4166 +US 63902 Poplar Bluff Missouri MO Butler 023 36.7125 -90.407 +US 63932 Broseley Missouri MO Butler 023 36.6899 -90.2508 +US 63938 Fagus Missouri MO Butler 023 36.7125 -90.407 +US 63940 Fisk Missouri MO Butler 023 36.7836 -90.2168 +US 63945 Harviell Missouri MO Butler 023 36.6723 -90.5583 +US 63954 Neelyville Missouri MO Butler 023 36.571 -90.4995 +US 63961 Qulin Missouri MO Butler 023 36.5818 -90.2617 +US 63962 Rombauer Missouri MO Butler 023 36.7125 -90.407 +US 64624 Braymer Missouri MO Caldwell 025 39.5915 -93.7887 +US 64625 Breckenridge Missouri MO Caldwell 025 39.7582 -93.8068 +US 64637 Cowgill Missouri MO Caldwell 025 39.5643 -93.9295 +US 64644 Hamilton Missouri MO Caldwell 025 39.7364 -93.9909 +US 64649 Kidder Missouri MO Caldwell 025 39.7348 -94.0848 +US 64650 Kingston Missouri MO Caldwell 025 39.6508 -94.0827 +US 64671 Polo Missouri MO Caldwell 025 39.5647 -94.0743 +US 63388 Williamsburg Missouri MO Callaway 027 38.8874 -91.7689 +US 65022 Cedar City Missouri MO Callaway 027 38.5992 -92.1781 +US 65043 Holts Summit Missouri MO Callaway 027 38.6328 -92.1163 +US 65059 Mokane Missouri MO Callaway 027 38.6998 -91.8868 +US 65063 New Bloomfield Missouri MO Callaway 027 38.71 -92.083 +US 65067 Portland Missouri MO Callaway 027 38.7847 -91.7006 +US 65077 Steedman Missouri MO Callaway 027 38.7566 -91.7888 +US 65080 Tebbetts Missouri MO Callaway 027 38.6402 -91.9673 +US 65231 Auxvasse Missouri MO Callaway 027 39.0122 -91.8858 +US 65251 Fulton Missouri MO Callaway 027 38.8518 -91.9605 +US 65262 Kingdom City Missouri MO Callaway 027 38.9551 -91.952 +US 65020 Camdenton Missouri MO Camden 029 38.0185 -92.7677 +US 65049 Lake Ozark Missouri MO Camden 029 38.2003 -92.6684 +US 65052 Linn Creek Missouri MO Camden 029 38.0605 -92.6831 +US 65056 McKittrick Missouri MO Camden County 029 38.735 -91.4436 +US 65065 Osage Beach Missouri MO Camden 029 38.138 -92.6664 +US 65079 Sunrise Beach Missouri MO Camden 029 38.1558 -92.7854 +US 65324 Climax Springs Missouri MO Camden 029 38.1396 -92.9537 +US 65567 Stoutland Missouri MO Camden 029 37.8693 -92.5114 +US 65591 Montreal Missouri MO Camden 029 37.9851 -92.547 +US 65786 Macks Creek Missouri MO Camden 029 37.9616 -92.9603 +US 65787 Roach Missouri MO Camden 029 38.1025 -92.9148 +US 63701 Cape Girardeau Missouri MO Cape Girardeau 031 37.3169 -89.5459 +US 63702 Cape Girardeau Missouri MO Cape Girardeau 031 37.3506 -89.5094 +US 63703 Cape Girardeau Missouri MO Cape Girardeau 031 37.2844 -89.5715 +US 63705 Cape Girardeau Missouri MO Cape Girardeau 031 37.3662 -89.6439 +US 63739 Burfordville Missouri MO Cape Girardeau 031 37.3632 -89.8206 +US 63743 Daisy Missouri MO Cape Girardeau 031 37.5151 -89.8213 +US 63744 Delta Missouri MO Cape Girardeau 031 37.1973 -89.7394 +US 63745 Dutchtown Missouri MO Cape Girardeau 031 37.2424 -89.6977 +US 63747 Friedheim Missouri MO Cape Girardeau 031 37.5669 -89.8376 +US 63752 Gordonville Missouri MO Cape Girardeau 031 37.3092 -89.6989 +US 63755 Jackson Missouri MO Cape Girardeau 031 37.3879 -89.6519 +US 63766 Millersville Missouri MO Cape Girardeau 031 37.4401 -89.795 +US 63769 Oak Ridge Missouri MO Cape Girardeau 031 37.5258 -89.7508 +US 63770 Old Appleton Missouri MO Cape Girardeau 031 37.5975 -89.703 +US 63779 Pocahontas Missouri MO Cape Girardeau 031 37.5007 -89.6396 +US 63785 Whitewater Missouri MO Cape Girardeau 031 37.2781 -89.8061 +US 64621 Avalon Missouri MO Carroll County 033 39.6665 -93.4755 +US 64622 Bogard Missouri MO Carroll 033 39.4994 -93.5374 +US 64623 Bosworth Missouri MO Carroll 033 39.4767 -93.3335 +US 64633 Carrollton Missouri MO Carroll 033 39.3673 -93.4926 +US 64639 De Witt Missouri MO Carroll 033 39.384 -93.2238 +US 64643 Hale Missouri MO Carroll 033 39.5953 -93.3445 +US 64668 Norborne Missouri MO Carroll 033 39.3299 -93.6761 +US 64680 Stet Missouri MO Carroll 033 39.411 -93.4319 +US 64682 Tina Missouri MO Carroll 033 39.5518 -93.4647 +US 64687 Wakenda Missouri MO Carroll 033 39.3155 -93.3775 +US 63937 Ellsinore Missouri MO Carter 035 36.9453 -90.7485 +US 63941 Fremont Missouri MO Carter 035 36.9172 -91.144 +US 63943 Grandin Missouri MO Carter 035 36.828 -90.7942 +US 63965 Van Buren Missouri MO Carter 035 37.0015 -91.0007 +US 64012 Belton Missouri MO Cass 037 38.8161 -94.5328 +US 64078 Peculiar Missouri MO Cass 037 38.7165 -94.4405 +US 64080 Pleasant Hill Missouri MO Cass 037 38.7859 -94.244 +US 64083 Raymore Missouri MO Cass 037 38.8019 -94.4529 +US 64090 Strasburg Missouri MO Cass 037 38.7658 -94.1609 +US 64701 Harrisonville Missouri MO Cass 037 38.6419 -94.3285 +US 64725 Archie Missouri MO Cass 037 38.4986 -94.363 +US 64734 Cleveland Missouri MO Cass 037 38.6898 -94.5695 +US 64739 Creighton Missouri MO Cass 037 38.5078 -94.0926 +US 64743 East Lynne Missouri MO Cass 037 38.6682 -94.2333 +US 64746 Freeman Missouri MO Cass 037 38.6245 -94.4956 +US 64747 Garden City Missouri MO Cass 037 38.5681 -94.1825 +US 64744 El Dorado Springs Missouri MO Cedar 039 37.8652 -94.0124 +US 64756 Jerico Springs Missouri MO Cedar 039 37.6613 -94.0129 +US 65607 Caplinger Mills Missouri MO Cedar 039 37.7369 -93.8425 +US 65785 Stockton Missouri MO Cedar 039 37.7241 -93.796 +US 64660 Mendon Missouri MO Chariton 041 39.5828 -93.0892 +US 64676 Rothville Missouri MO Chariton 041 39.6627 -93.0467 +US 64681 Sumner Missouri MO Chariton 041 39.655 -93.2241 +US 65236 Brunswick Missouri MO Chariton 041 39.4374 -93.1187 +US 65246 Dalton Missouri MO Chariton 041 39.4035 -92.9944 +US 65261 Keytesville Missouri MO Chariton 041 39.4794 -92.9302 +US 65281 Salisbury Missouri MO Chariton 041 39.4319 -92.8014 +US 65286 Triplett Missouri MO Chariton 041 39.5011 -93.1928 +US 65610 Billings Missouri MO Christian 043 37.0628 -93.5476 +US 65620 Bruner Missouri MO Christian 043 36.999 -92.9692 +US 65629 Chadwick Missouri MO Christian 043 36.922 -93.0451 +US 65630 Chestnutridge Missouri MO Christian 043 36.8359 -93.2291 +US 65631 Clever Missouri MO Christian 043 37.0447 -93.4383 +US 65657 Garrison Missouri MO Christian 043 36.863 -93 +US 65669 Highlandville Missouri MO Christian 043 36.9408 -93.268 +US 65714 Nixa Missouri MO Christian 043 37.0512 -93.2972 +US 65720 Oldfield Missouri MO Christian 043 36.9404 -92.9528 +US 65721 Ozark Missouri MO Christian 043 37.0169 -93.2022 +US 65753 Sparta Missouri MO Christian 043 36.9775 -93.1065 +US 65754 Spokane Missouri MO Christian 043 36.8636 -93.2754 +US 63430 Alexandria Missouri MO Clark 045 40.3445 -91.5154 +US 63445 Kahoka Missouri MO Clark 045 40.4266 -91.725 +US 63453 Luray Missouri MO Clark 045 40.4931 -91.8912 +US 63465 Revere Missouri MO Clark 045 40.5172 -91.6753 +US 63466 Saint Patrick Missouri MO Clark 045 40.4312 -91.6851 +US 63472 Wayland Missouri MO Clark 045 40.4001 -91.5842 +US 63474 Wyaconda Missouri MO Clark 045 40.3721 -91.9071 +US 64024 Excelsior Springs Missouri MO Clay 047 39.3326 -94.2746 +US 64048 Holt Missouri MO Clay 047 39.4289 -94.3689 +US 64060 Kearney Missouri MO Clay 047 39.3652 -94.3621 +US 64068 Liberty Missouri MO Clay 047 39.2989 -94.4363 +US 64069 Liberty Missouri MO Clay 047 39.2829 -94.409 +US 64072 Missouri City Missouri MO Clay 047 39.2458 -94.2924 +US 64073 Mosby Missouri MO Clay 047 39.3149 -94.2939 +US 64087 Liberty Missouri MO Clay 047 39.2829 -94.409 +US 64089 Smithville Missouri MO Clay 047 39.3917 -94.5592 +US 64116 Kansas City Missouri MO Clay 047 39.1479 -94.568 +US 64117 Kansas City Missouri MO Clay 047 39.1651 -94.5256 +US 64118 Kansas City Missouri MO Clay 047 39.2133 -94.5743 +US 64119 Kansas City Missouri MO Clay 047 39.1979 -94.5199 +US 64144 Kansas City Missouri MO Clay 047 39.2829 -94.409 +US 64155 Kansas City Missouri MO Clay 047 39.2758 -94.5704 +US 64156 Kansas City Missouri MO Clay 047 39.2901 -94.5336 +US 64157 Kansas City Missouri MO Clay 047 39.2767 -94.4595 +US 64158 Kansas City Missouri MO Clay 047 39.2284 -94.472 +US 64160 Kansas City Missouri MO Clay 047 39.2829 -94.409 +US 64161 Kansas City Missouri MO Clay 047 39.1661 -94.464 +US 64162 Kansas City Missouri MO Clay 047 39.1562 -94.4797 +US 64165 Kansas City Missouri MO Clay 047 39.3113 -94.5431 +US 64166 Kansas City Missouri MO Clay 047 39.3294 -94.5199 +US 64167 Kansas City Missouri MO Clay 047 39.32 -94.4877 +US 64429 Cameron Missouri MO Clinton 049 39.7309 -94.2437 +US 64454 Gower Missouri MO Clinton 049 39.602 -94.5965 +US 64465 Lathrop Missouri MO Clinton 049 39.5177 -94.3093 +US 64477 Plattsburg Missouri MO Clinton 049 39.5705 -94.4338 +US 64492 Trimble Missouri MO Clinton 049 39.4871 -94.5512 +US 64493 Turney Missouri MO Clinton 049 39.6318 -94.2972 +US 65023 Centertown Missouri MO Cole 051 38.6297 -92.3995 +US 65032 Eugene Missouri MO Cole 051 38.3424 -92.3823 +US 65040 Henley Missouri MO Cole 051 38.3881 -92.3123 +US 65053 Lohman Missouri MO Cole 051 38.5484 -92.3842 +US 65074 Russellville Missouri MO Cole 051 38.5005 -92.4291 +US 65076 Saint Thomas Missouri MO Cole 051 38.3912 -92.1894 +US 65101 Jefferson City Missouri MO Cole 051 38.5462 -92.1525 +US 65102 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65103 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65104 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65105 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65106 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65107 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65108 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65109 Jefferson City Missouri MO Cole 051 38.5773 -92.2443 +US 65110 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65111 Jefferson City Missouri MO Cole 051 38.5309 -92.2493 +US 65068 Prairie Home Missouri MO Cooper 053 38.8253 -92.5974 +US 65233 Boonville Missouri MO Cooper 053 38.9536 -92.745 +US 65237 Bunceton Missouri MO Cooper 053 38.7468 -92.7927 +US 65276 Pilot Grove Missouri MO Cooper 053 38.8712 -92.9305 +US 65287 Wooldridge Missouri MO Cooper 053 38.8983 -92.5667 +US 65322 Blackwater Missouri MO Cooper 053 38.9727 -92.9683 +US 65348 Otterville Missouri MO Cooper 053 38.7161 -93.0108 +US 65441 Bourbon Missouri MO Crawford 055 38.172 -91.2225 +US 65446 Cherryville Missouri MO Crawford 055 37.8066 -91.2348 +US 65449 Cook Station Missouri MO Crawford 055 37.8552 -91.4616 +US 65453 Cuba Missouri MO Crawford 055 38.0926 -91.4081 +US 65456 Davisville Missouri MO Crawford 055 37.787 -91.2116 +US 65535 Leasburg Missouri MO Crawford 055 38.0811 -91.2488 +US 65565 Steelville Missouri MO Crawford 055 37.8904 -91.3032 +US 65586 Wesco Missouri MO Crawford 055 37.8585 -91.4267 +US 65603 Arcola Missouri MO Dade 057 37.5512 -93.8619 +US 65635 Dadeville Missouri MO Dade 057 37.5105 -93.6956 +US 65646 Everton Missouri MO Dade 057 37.2354 -93.6894 +US 65661 Greenfield Missouri MO Dade 057 37.4197 -93.8407 +US 65682 Lockwood Missouri MO Dade 057 37.386 -93.9541 +US 65752 South Greenfield Missouri MO Dade 057 37.3743 -93.8445 +US 65590 Long Lane Missouri MO Dallas 059 37.5808 -92.9309 +US 65622 Buffalo Missouri MO Dallas 059 37.6429 -93.0906 +US 65685 Louisburg Missouri MO Dallas 059 37.7542 -93.1566 +US 65764 Tunas Missouri MO Dallas 059 37.8392 -92.9808 +US 65767 Urbana Missouri MO Dallas 059 37.8523 -93.151 +US 65783 Windyville Missouri MO Dallas 059 37.7182 -92.9379 +US 64620 Altamont Missouri MO Daviess 061 39.896 -94.0897 +US 64636 Coffey Missouri MO Daviess 061 40.0999 -94.0252 +US 64640 Gallatin Missouri MO Daviess 061 39.9025 -93.9787 +US 64642 Gilman City Missouri MO Daviess 061 40.145 -93.832 +US 64647 Jameson Missouri MO Daviess 061 40.0046 -93.9597 +US 64648 Jamesport Missouri MO Daviess 061 39.9837 -93.78 +US 64654 Lock Springs Missouri MO Daviess 061 39.9605 -93.9889 +US 64670 Pattonsburg Missouri MO Daviess 061 40.0428 -94.1343 +US 64689 Winston Missouri MO Daviess 061 39.8499 -94.1487 +US 64422 Amity Missouri MO DeKalb 063 39.8837 -94.5136 +US 64430 Clarksdale Missouri MO DeKalb 063 39.8137 -94.5421 +US 64447 Fairport Missouri MO DeKalb 063 39.8926 -94.4044 +US 64469 Maysville Missouri MO DeKalb 063 39.9112 -94.3548 +US 64474 Osborn Missouri MO DeKalb 063 39.7912 -94.3974 +US 64490 Stewartsville Missouri MO DeKalb 063 39.7984 -94.5175 +US 64494 Union Star Missouri MO DeKalb 063 39.9846 -94.5787 +US 64497 Weatherby Missouri MO DeKalb 063 39.9277 -94.2429 +US 65440 Boss Missouri MO Dent 065 37.6373 -91.2109 +US 65501 Jadwin Missouri MO Dent 065 37.4736 -91.5159 +US 65532 Lake Spring Missouri MO Dent 065 37.6033 -91.4812 +US 65540 Lecoma Missouri MO Dent 065 37.6033 -91.4812 +US 65541 Lenox Missouri MO Dent 065 37.6033 -91.4812 +US 65560 Salem Missouri MO Dent 065 37.617 -91.5258 +US 65608 Ava Missouri MO Douglas 067 36.9407 -92.6765 +US 65638 Drury Missouri MO Douglas 067 36.9319 -92.3664 +US 65755 Squires Missouri MO Douglas 067 36.8504 -92.5844 +US 65768 Vanzant Missouri MO Douglas 067 36.9323 -92.499 +US 63821 Arbyrd Missouri MO Dunklin 069 36.0501 -90.2284 +US 63829 Cardwell Missouri MO Dunklin 069 36.0434 -90.2907 +US 63837 Clarkton Missouri MO Dunklin 069 36.4478 -89.9729 +US 63847 Gibson Missouri MO Dunklin 069 36.4413 -90.0293 +US 63852 Holcomb Missouri MO Dunklin 069 36.3885 -90.0208 +US 63855 Hornersville Missouri MO Dunklin 069 36.0627 -90.0816 +US 63857 Kennett Missouri MO Dunklin 069 36.2407 -90.0491 +US 63863 Malden Missouri MO Dunklin 069 36.5672 -89.9737 +US 63875 Rives Missouri MO Dunklin 069 36.3133 -90.1658 +US 63876 Senath Missouri MO Dunklin 069 36.1324 -90.1632 +US 63880 Whiteoak Missouri MO Dunklin 069 36.3133 -90.1658 +US 63933 Campbell Missouri MO Dunklin 069 36.5197 -90.0829 +US 63013 Beaufort Missouri MO Franklin 071 38.4294 -91.1709 +US 63014 Berger Missouri MO Franklin 071 38.6444 -91.3374 +US 63015 Catawissa Missouri MO Franklin 071 38.4047 -90.7806 +US 63037 Gerald Missouri MO Franklin 071 38.3507 -91.2931 +US 63039 Gray Summit Missouri MO Franklin 071 38.503 -90.8292 +US 63055 Labadie Missouri MO Franklin 071 38.52 -90.877 +US 63056 Leslie Missouri MO Franklin 071 38.4555 -91.2328 +US 63060 Lonedell Missouri MO Franklin 071 38.2743 -90.8903 +US 63061 Luebbering Missouri MO Franklin 071 38.2615 -90.8027 +US 63068 New Haven Missouri MO Franklin 071 38.574 -91.2291 +US 63069 Pacific Missouri MO Franklin 071 38.4922 -90.748 +US 63072 Robertsville Missouri MO Franklin 071 38.3816 -90.8016 +US 63073 Saint Albans Missouri MO Franklin 071 38.5277 -91.0173 +US 63077 Saint Clair Missouri MO Franklin 071 38.3299 -90.9713 +US 63079 Stanton Missouri MO Franklin 071 38.2744 -91.0855 +US 63080 Sullivan Missouri MO Franklin 071 38.2307 -91.1567 +US 63084 Union Missouri MO Franklin 071 38.4456 -91.0206 +US 63089 Villa Ridge Missouri MO Franklin 071 38.4601 -90.8822 +US 63090 Washington Missouri MO Franklin 071 38.5459 -91.0193 +US 63091 Rosebud Missouri MO Gasconade 073 38.3853 -91.3974 +US 65014 Bland Missouri MO Gasconade 073 38.3074 -91.6263 +US 65036 Gasconade Missouri MO Gasconade 073 38.6703 -91.5592 +US 65041 Hermann Missouri MO Gasconade 073 38.5876 -91.4991 +US 65061 Morrison Missouri MO Gasconade 073 38.606 -91.658 +US 65062 Mount Sterling Missouri MO Gasconade 073 38.4956 -91.6515 +US 65066 Owensville Missouri MO Gasconade 073 38.3511 -91.4867 +US 64402 Albany Missouri MO Gentry 075 40.2513 -94.327 +US 64438 Darlington Missouri MO Gentry 075 40.1955 -94.4049 +US 64453 Gentry Missouri MO Gentry 075 40.3411 -94.4142 +US 64463 King City Missouri MO Gentry 075 40.0652 -94.5234 +US 64489 Stanberry Missouri MO Gentry 075 40.2293 -94.5387 +US 64657 Mc Fall Missouri MO Gentry 075 40.1051 -94.3003 +US 65604 Ash Grove Missouri MO Greene 077 37.316 -93.5781 +US 65612 Bois D Arc Missouri MO Greene 077 37.2214 -93.5447 +US 65619 Brookline Station Missouri MO Greene 077 37.1393 -93.3849 +US 65648 Fair Grove Missouri MO Greene 077 37.3721 -93.1428 +US 65738 Republic Missouri MO Greene 077 37.123 -93.48 +US 65757 Strafford Missouri MO Greene 077 37.2797 -93.1066 +US 65765 Turners Missouri MO Greene 077 37.2581 -93.3437 +US 65770 Walnut Grove Missouri MO Greene 077 37.3943 -93.5044 +US 65781 Willard Missouri MO Greene 077 37.2962 -93.4259 +US 65801 Springfield Missouri MO Greene 077 37.2581 -93.3437 +US 65802 Springfield Missouri MO Greene 077 37.2117 -93.299 +US 65803 Springfield Missouri MO Greene 077 37.2593 -93.2912 +US 65804 Springfield Missouri MO Greene 077 37.1654 -93.2522 +US 65805 Springfield Missouri MO Greene 077 37.2581 -93.3437 +US 65806 Springfield Missouri MO Greene 077 37.2031 -93.2971 +US 65807 Springfield Missouri MO Greene 077 37.1668 -93.3085 +US 65808 Springfield Missouri MO Greene 077 37.2581 -93.3437 +US 65809 Springfield Missouri MO Greene 077 37.1852 -93.2057 +US 65810 Springfield Missouri MO Greene 077 37.1136 -93.2896 +US 65814 Springfield Missouri MO Greene 077 37.2581 -93.3437 +US 65817 Springfield Missouri MO Greene 077 37.2581 -93.3437 +US 65890 Springfield Missouri MO Greene 077 37.2581 -93.3437 +US 65897 Springfield Missouri MO Greene County 077 37.1987 -93.2784 +US 65898 Springfield Missouri MO Greene 077 37.1803 -93.2951 +US 65899 Springfield Missouri MO Greene 077 37.1815 -93.2596 +US 64641 Galt Missouri MO Grundy 079 40.144 -93.3953 +US 64652 Laredo Missouri MO Grundy 079 40.0144 -93.4407 +US 64679 Spickard Missouri MO Grundy 079 40.24 -93.5503 +US 64683 Trenton Missouri MO Grundy 079 40.0823 -93.6086 +US 64424 Bethany Missouri MO Harrison 081 40.2601 -94.0189 +US 64426 Blythedale Missouri MO Harrison 081 40.5024 -93.8954 +US 64442 Eagleville Missouri MO Harrison 081 40.4912 -93.9951 +US 64458 Hatfield Missouri MO Harrison 081 40.5219 -94.1691 +US 64467 Martinsville Missouri MO Harrison 081 40.3662 -94.1645 +US 64471 New Hampton Missouri MO Harrison 081 40.2444 -94.1786 +US 64481 Ridgeway Missouri MO Harrison 081 40.3999 -93.9575 +US 64632 Cainsville Missouri MO Harrison 081 40.4578 -93.759 +US 64665 Mount Moriah Missouri MO Harrison 081 40.3092 -93.7948 +US 64726 Blairstown Missouri MO Henry 083 38.5319 -93.9221 +US 64735 Clinton Missouri MO Henry 083 38.4018 -93.785 +US 64740 Deepwater Missouri MO Henry 083 38.2432 -93.7303 +US 64770 Montrose Missouri MO Henry 083 38.2597 -93.9952 +US 64788 Urich Missouri MO Henry 083 38.4449 -93.9785 +US 65323 Calhoun Missouri MO Henry 083 38.4858 -93.6459 +US 65360 Windsor Missouri MO Henry 083 38.5272 -93.5269 +US 65634 Cross Timbers Missouri MO Hickory 085 38.0239 -93.1978 +US 65668 Hermitage Missouri MO Hickory 085 37.8969 -93.2979 +US 65724 Pittsburg Missouri MO Hickory 085 37.8442 -93.3356 +US 65732 Preston Missouri MO Hickory 085 37.939 -93.1713 +US 65735 Quincy Missouri MO Hickory 085 37.9379 -93.3197 +US 65774 Weaubleau Missouri MO Hickory 085 37.8804 -93.5344 +US 65779 Wheatland Missouri MO Hickory 085 37.9103 -93.3981 +US 64435 Corning Missouri MO Holt County 087 40.2462 -95.4386 +US 64437 Craig Missouri MO Holt 087 40.1267 -95.3291 +US 64451 Forest City Missouri MO Holt 087 39.9897 -95.1916 +US 64452 Fortescue Missouri MO Holt County 087 40.0547 -95.3316 +US 64466 Maitland Missouri MO Holt 087 40.1991 -95.0927 +US 64470 Mound City Missouri MO Holt 087 40.1362 -95.2138 +US 64473 Oregon Missouri MO Holt 087 39.9809 -95.1234 +US 65230 Armstrong Missouri MO Howard 089 39.2566 -92.709 +US 65248 Fayette Missouri MO Howard 089 39.143 -92.6583 +US 65250 Franklin Missouri MO Howard 089 39.0668 -92.8316 +US 65254 Glasgow Missouri MO Howard 089 39.2257 -92.8318 +US 65274 New Franklin Missouri MO Howard 089 39.02 -92.7386 +US 65548 Mountain View Missouri MO Howell 091 36.9892 -91.7099 +US 65626 Caulfield Missouri MO Howell 091 36.6035 -92.0678 +US 65688 Brandsville Missouri MO Howell 091 36.6488 -91.6976 +US 65775 West Plains Missouri MO Howell 091 36.7284 -91.8717 +US 65776 South Fork Missouri MO Howell 091 36.6291 -91.9868 +US 65777 Moody Missouri MO Howell 091 36.533 -91.9898 +US 65788 Peace Valley Missouri MO Howell 091 36.8091 -91.6938 +US 65789 Pomona Missouri MO Howell 091 36.8441 -91.9137 +US 65790 Pottersville Missouri MO Howell 091 36.7068 -92.044 +US 65793 Willow Springs Missouri MO Howell 091 36.9958 -91.9405 +US 63620 Annapolis Missouri MO Iron 093 37.3981 -90.6702 +US 63621 Arcadia Missouri MO Iron 093 37.4871 -90.6062 +US 63623 Belleview Missouri MO Iron 093 37.682 -90.7991 +US 63636 Des Arc Missouri MO Iron 093 37.2955 -90.6279 +US 63646 Glover Missouri MO Iron 093 37.5055 -90.845 +US 63650 Ironton Missouri MO Iron 093 37.6168 -90.5985 +US 63656 Middle Brook Missouri MO Iron 093 37.5055 -90.845 +US 63663 Pilot Knob Missouri MO Iron 093 37.625 -90.646 +US 63675 Vulcan Missouri MO Iron 093 37.306 -90.7106 +US 65439 Bixby Missouri MO Iron 093 37.6722 -91.0835 +US 65566 Viburnum Missouri MO Iron 093 37.7151 -91.1289 +US 64002 Lees Summit Missouri MO Jackson 095 38.9285 -94.3983 +US 64013 Blue Springs Missouri MO Jackson 095 38.9645 -94.3703 +US 64014 Blue Springs Missouri MO Jackson 095 39.0152 -94.2604 +US 64015 Blue Springs Missouri MO Jackson 095 39.015 -94.3118 +US 64016 Buckner Missouri MO Jackson 095 39.1303 -94.2062 +US 64029 Grain Valley Missouri MO Jackson 095 39.0274 -94.2087 +US 64030 Grandview Missouri MO Jackson 095 38.8819 -94.5205 +US 64034 Greenwood Missouri MO Jackson 095 38.8644 -94.2815 +US 64050 Independence Missouri MO Jackson 095 39.0983 -94.4111 +US 64051 Independence Missouri MO Jackson 095 39.0804 -94.388 +US 64052 Independence Missouri MO Jackson 095 39.075 -94.4499 +US 64053 Independence Missouri MO Jackson 095 39.105 -94.4625 +US 64054 Independence Missouri MO Jackson 095 39.11 -94.4401 +US 64055 Independence Missouri MO Jackson 095 39.0545 -94.4039 +US 64056 Independence Missouri MO Jackson 095 39.1177 -94.3596 +US 64057 Independence Missouri MO Jackson 095 39.0731 -94.3533 +US 64058 Independence Missouri MO Jackson 095 39.1412 -94.3515 +US 64063 Lees Summit Missouri MO Jackson 095 38.912 -94.3517 +US 64064 Lees Summit Missouri MO Jackson 095 38.9953 -94.3652 +US 64065 Lees Summit Missouri MO Jackson 095 38.9529 -94.4058 +US 64066 Levasy Missouri MO Jackson 095 39.1292 -94.1337 +US 64070 Lone Jack Missouri MO Jackson 095 38.8918 -94.1615 +US 64075 Oak Grove Missouri MO Jackson 095 38.9985 -94.1399 +US 64081 Lees Summit Missouri MO Jackson 095 38.9142 -94.4073 +US 64082 Lees Summit Missouri MO Jackson 095 38.8518 -94.3944 +US 64086 Lees Summit Missouri MO Jackson 095 38.944 -94.2881 +US 64088 Sibley Missouri MO Jackson 095 39.1584 -94.1844 +US 64101 Kansas City Missouri MO Jackson 095 39.1024 -94.5986 +US 64102 Kansas City Missouri MO Jackson 095 39.0861 -94.6066 +US 64105 Kansas City Missouri MO Jackson 095 39.1025 -94.5901 +US 64106 Kansas City Missouri MO Jackson 095 39.1052 -94.5699 +US 64108 Kansas City Missouri MO Jackson 095 39.0837 -94.5868 +US 64109 Kansas City Missouri MO Jackson 095 39.0663 -94.5674 +US 64110 Kansas City Missouri MO Jackson 095 39.0361 -94.5722 +US 64111 Kansas City Missouri MO Jackson 095 39.0565 -94.5929 +US 64112 Kansas City Missouri MO Jackson 095 39.0382 -94.5929 +US 64113 Kansas City Missouri MO Jackson 095 39.0123 -94.5938 +US 64114 Kansas City Missouri MO Jackson 095 38.9621 -94.5959 +US 64120 Kansas City Missouri MO Jackson 095 39.1222 -94.5487 +US 64121 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64123 Kansas City Missouri MO Jackson 095 39.1136 -94.5235 +US 64124 Kansas City Missouri MO Jackson 095 39.1068 -94.5394 +US 64125 Kansas City Missouri MO Jackson 095 39.1042 -94.4923 +US 64126 Kansas City Missouri MO Jackson 095 39.0923 -94.5047 +US 64127 Kansas City Missouri MO Jackson 095 39.0883 -94.5366 +US 64128 Kansas City Missouri MO Jackson 095 39.0659 -94.5386 +US 64129 Kansas City Missouri MO Jackson 095 39.0401 -94.4951 +US 64130 Kansas City Missouri MO Jackson 095 39.0351 -94.5467 +US 64131 Kansas City Missouri MO Jackson 095 38.9713 -94.5774 +US 64132 Kansas City Missouri MO Jackson 095 38.9911 -94.5522 +US 64133 Kansas City Missouri MO Jackson 095 39.0323 -94.47 +US 64134 Kansas City Missouri MO Jackson 095 38.9296 -94.5009 +US 64136 Kansas City Missouri MO Jackson 095 39.0187 -94.4008 +US 64137 Kansas City Missouri MO Jackson 095 38.9299 -94.5405 +US 64138 Kansas City Missouri MO Jackson 095 38.9528 -94.4705 +US 64139 Kansas City Missouri MO Jackson 095 38.9659 -94.4061 +US 64141 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64142 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64145 Kansas City Missouri MO Jackson 095 38.8977 -94.5976 +US 64146 Kansas City Missouri MO Jackson 095 38.8973 -94.5764 +US 64147 Kansas City Missouri MO Jackson 095 38.8549 -94.5568 +US 64148 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64149 Kansas City Missouri MO Jackson 095 38.8606 -94.4636 +US 64170 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64171 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64172 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64173 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64179 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64180 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64183 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64184 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64185 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64187 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64188 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64189 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64191 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64192 Kansas City Missouri MO Jackson 095 38.9531 -94.5237 +US 64193 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64194 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64196 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64197 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64198 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64199 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64944 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64999 Kansas City Missouri MO Jackson 095 39.035 -94.3567 +US 64755 Jasper Missouri MO Jasper 097 37.3182 -94.2731 +US 64801 Joplin Missouri MO Jasper 097 37.0969 -94.5051 +US 64802 Joplin Missouri MO Jasper 097 37.2062 -94.3355 +US 64803 Joplin Missouri MO Jasper 097 37.2062 -94.3355 +US 64804 Joplin Missouri MO Jasper 097 37.0465 -94.5103 +US 64830 Alba Missouri MO Jasper 097 37.2367 -94.418 +US 64832 Asbury Missouri MO Jasper 097 37.2942 -94.5655 +US 64833 Avilla Missouri MO Jasper 097 37.1948 -94.1452 +US 64834 Carl Junction Missouri MO Jasper 097 37.1795 -94.555 +US 64835 Carterville Missouri MO Jasper 097 37.1507 -94.4359 +US 64836 Carthage Missouri MO Jasper 097 37.1597 -94.3112 +US 64841 Duenweg Missouri MO Jasper 097 37.076 -94.4071 +US 64848 La Russell Missouri MO Jasper 097 37.1739 -94.0329 +US 64849 Neck City Missouri MO Jasper 097 37.2524 -94.4316 +US 64855 Oronogo Missouri MO Jasper 097 37.2717 -94.4865 +US 64857 Purcell Missouri MO Jasper 097 37.2169 -94.3748 +US 64859 Reeds Missouri MO Jasper 097 37.1225 -94.1613 +US 64862 Sarcoxie Missouri MO Jasper 097 37.0724 -94.1151 +US 64869 Waco Missouri MO Jasper 097 37.2062 -94.3355 +US 64870 Webb City Missouri MO Jasper 097 37.144 -94.4727 +US 63010 Arnold Missouri MO Jefferson 099 38.4305 -90.387 +US 63012 Barnhart Missouri MO Jefferson 099 38.3384 -90.4142 +US 63016 Cedar Hill Missouri MO Jefferson 099 38.3573 -90.6498 +US 63019 Crystal City Missouri MO Jefferson 099 38.23 -90.3825 +US 63020 De Soto Missouri MO Jefferson 099 38.1204 -90.5546 +US 63023 Dittmer Missouri MO Jefferson 099 38.3155 -90.6911 +US 63028 Festus Missouri MO Jefferson 099 38.1879 -90.4286 +US 63030 Fletcher Missouri MO Jefferson 099 38.1703 -90.7185 +US 63041 Grubville Missouri MO Jefferson 099 38.251 -90.7901 +US 63047 Hematite Missouri MO Jefferson 099 38.1941 -90.4725 +US 63048 Herculaneum Missouri MO Jefferson 099 38.2625 -90.3896 +US 63049 High Ridge Missouri MO Jefferson 099 38.4728 -90.5281 +US 63050 Hillsboro Missouri MO Jefferson 099 38.2586 -90.5782 +US 63051 House Springs Missouri MO Jefferson 099 38.4131 -90.5575 +US 63052 Imperial Missouri MO Jefferson 099 38.4069 -90.4381 +US 63053 Kimmswick Missouri MO Jefferson 099 38.2527 -90.5149 +US 63057 Liguori Missouri MO Jefferson 099 38.3419 -90.4082 +US 63065 Mapaville Missouri MO Jefferson 099 38.2527 -90.5149 +US 63066 Morse Mill Missouri MO Jefferson 099 38.2809 -90.6521 +US 63070 Pevely Missouri MO Jefferson 099 38.2799 -90.4111 +US 64019 Centerview Missouri MO Johnson 101 38.7897 -93.8702 +US 64040 Holden Missouri MO Johnson 101 38.7186 -93.9856 +US 64061 Kingsville Missouri MO Johnson 101 38.8178 -94.0462 +US 64093 Warrensburg Missouri MO Johnson 101 38.7667 -93.7273 +US 64733 Chilhowee Missouri MO Johnson 101 38.6126 -93.8653 +US 64761 Leeton Missouri MO Johnson 101 38.6141 -93.7123 +US 65305 Whiteman Air Force Base Missouri MO Johnson 101 38.7318 -93.5731 +US 65336 Knob Noster Missouri MO Johnson 101 38.7469 -93.5564 +US 63446 Knox City Missouri MO Knox 103 40.1384 -92.0077 +US 63458 Newark Missouri MO Knox 103 39.9974 -91.9924 +US 63460 Novelty Missouri MO Knox 103 40.036 -92.2438 +US 63464 Plevna Missouri MO Knox 103 39.9765 -92.0852 +US 63531 Baring Missouri MO Knox 103 40.2509 -92.2311 +US 63537 Edina Missouri MO Knox 103 40.1795 -92.1455 +US 63547 Hurdland Missouri MO Knox 103 40.1609 -92.2791 +US 65463 Eldridge Missouri MO Laclede 105 37.8346 -92.7382 +US 65470 Falcon Missouri MO Laclede 105 37.6061 -92.3466 +US 65536 Lebanon Missouri MO Laclede 105 37.685 -92.655 +US 65543 Lynchburg Missouri MO Laclede 105 37.5054 -92.3202 +US 65632 Conway Missouri MO Laclede 105 37.5085 -92.7891 +US 65722 Phillipsburg Missouri MO Laclede 105 37.5832 -92.7416 +US 64001 Alma Missouri MO Lafayette 107 39.1048 -93.5429 +US 64011 Bates City Missouri MO Lafayette 107 39.0219 -94.0798 +US 64020 Concordia Missouri MO Lafayette 107 38.9776 -93.5812 +US 64021 Corder Missouri MO Lafayette 107 39.1024 -93.6391 +US 64022 Dover Missouri MO Lafayette 107 39.1926 -93.6684 +US 64037 Higginsville Missouri MO Lafayette 107 39.0705 -93.7133 +US 64067 Lexington Missouri MO Lafayette 107 39.1742 -93.8714 +US 64071 Mayview Missouri MO Lafayette 107 39.0459 -93.8353 +US 64074 Napoleon Missouri MO Lafayette 107 39.114 -94.0709 +US 64076 Odessa Missouri MO Lafayette 107 38.9829 -93.9757 +US 64096 Waverly Missouri MO Lafayette 107 39.2055 -93.5257 +US 64097 Wellington Missouri MO Lafayette 107 39.1258 -93.9855 +US 65327 Emma Missouri MO Lafayette 107 38.9746 -93.5038 +US 65605 Aurora Missouri MO Lawrence 109 36.8835 -93.6919 +US 65654 Freistatt Missouri MO Lawrence 109 37.0211 -93.8974 +US 65664 Halltown Missouri MO Lawrence 109 37.1944 -93.6275 +US 65705 Marionville Missouri MO Lawrence 109 37.0009 -93.6413 +US 65707 Miller Missouri MO Lawrence 109 37.2225 -93.8422 +US 65712 Mount Vernon Missouri MO Lawrence 109 37.1045 -93.7976 +US 65723 Pierce City Missouri MO Lawrence 109 36.973 -94.0024 +US 65756 Stotts City Missouri MO Lawrence 109 37.1031 -93.9543 +US 65769 Verona Missouri MO Lawrence 109 36.937 -93.8005 +US 63435 Canton Missouri MO Lewis 111 40.1437 -91.548 +US 63438 Durham Missouri MO Lewis 111 39.9625 -91.6704 +US 63440 Ewing Missouri MO Lewis 111 39.9962 -91.7216 +US 63447 La Belle Missouri MO Lewis 111 40.1164 -91.9171 +US 63448 La Grange Missouri MO Lewis 111 40.0391 -91.5182 +US 63452 Lewistown Missouri MO Lewis 111 40.0867 -91.8157 +US 63457 Monticello Missouri MO Lewis 111 40.0909 -91.6877 +US 63470 Steffenville Missouri MO Lewis County 111 39.9985 -91.8696 +US 63473 Williamstown Missouri MO Lewis 111 40.2491 -91.7852 +US 63343 Elsberry Missouri MO Lincoln 113 39.159 -90.816 +US 63347 Foley Missouri MO Lincoln 113 39.053 -90.7775 +US 63349 Hawk Point Missouri MO Lincoln 113 38.9766 -91.1211 +US 63362 Moscow Mills Missouri MO Lincoln 113 38.9482 -90.9138 +US 63369 Old Monroe Missouri MO Lincoln 113 38.9346 -90.7782 +US 63370 Olney Missouri MO Lincoln 113 39.0776 -91.2317 +US 63377 Silex Missouri MO Lincoln 113 39.1166 -91.037 +US 63379 Troy Missouri MO Lincoln 113 39.0012 -90.9624 +US 63381 Truxton Missouri MO Lincoln 113 38.967 -91.2126 +US 63387 Whiteside Missouri MO Lincoln 113 39.1855 -91.0227 +US 63389 Winfield Missouri MO Lincoln 113 38.9897 -90.8213 +US 63557 New Boston Missouri MO Linn 115 39.9332 -92.916 +US 64628 Brookfield Missouri MO Linn 115 39.7846 -93.0719 +US 64630 Browning Missouri MO Linn 115 40.029 -93.1607 +US 64631 Bucklin Missouri MO Linn 115 39.8006 -92.8928 +US 64651 Laclede Missouri MO Linn 115 39.7837 -93.168 +US 64653 Linneus Missouri MO Linn 115 39.9099 -93.1885 +US 64658 Marceline Missouri MO Linn 115 39.7125 -92.9455 +US 64659 Meadville Missouri MO Linn 115 39.7795 -93.3014 +US 64674 Purdin Missouri MO Linn 115 39.9529 -93.17 +US 64677 Saint Catharine Missouri MO Linn County 115 39.817 -92.9932 +US 64601 Chillicothe Missouri MO Livingston 117 39.7966 -93.5509 +US 64635 Chula Missouri MO Livingston 117 39.9226 -93.4841 +US 64638 Dawn Missouri MO Livingston 117 39.6665 -93.5964 +US 64656 Ludlow Missouri MO Livingston 117 39.6551 -93.7046 +US 64664 Mooresville Missouri MO Livingston 117 39.7425 -93.7169 +US 64686 Utica Missouri MO Livingston 117 39.7417 -93.6289 +US 64688 Wheeling Missouri MO Livingston 117 39.8011 -93.3868 +US 64831 Anderson Missouri MO McDonald 119 36.6692 -94.4766 +US 64843 Goodman Missouri MO McDonald 119 36.7323 -94.3986 +US 64847 Lanagan Missouri MO McDonald 119 36.606 -94.4551 +US 64854 Noel Missouri MO McDonald 119 36.5417 -94.4906 +US 64856 Pineville Missouri MO McDonald 119 36.574 -94.377 +US 64861 Rocky Comfort Missouri MO McDonald 119 36.7175 -94.1091 +US 64863 South West City Missouri MO McDonald 119 36.5319 -94.5961 +US 64868 Tiff City Missouri MO McDonald 119 36.6326 -94.3428 +US 65730 Powell Missouri MO McDonald 119 36.6237 -94.1773 +US 63431 Anabel Missouri MO Macon 121 39.7428 -92.328 +US 63530 Atlanta Missouri MO Macon 121 39.9146 -92.475 +US 63532 Bevier Missouri MO Macon 121 39.7497 -92.5619 +US 63534 Callao Missouri MO Macon 121 39.7448 -92.6351 +US 63538 Elmer Missouri MO Macon 121 39.9415 -92.6424 +US 63539 Ethel Missouri MO Macon 121 39.9146 -92.7664 +US 63549 La Plata Missouri MO Macon 121 40.0208 -92.5077 +US 63552 Macon Missouri MO Macon 121 39.7481 -92.4622 +US 63558 New Cambria Missouri MO Macon 121 39.7551 -92.7695 +US 65247 Excello Missouri MO Macon 121 39.6455 -92.4757 +US 63645 Fredericktown Missouri MO Madison 123 37.4906 -90.3362 +US 63655 Marquand Missouri MO Madison 123 37.4274 -90.1741 +US 65013 Belle Missouri MO Maries 125 38.2711 -91.7303 +US 65443 Brinktown Missouri MO Maries 125 38.1483 -92.1015 +US 65580 Vichy Missouri MO Maries 125 38.098 -91.7788 +US 65582 Vienna Missouri MO Maries 125 38.1919 -91.9422 +US 63401 Hannibal Missouri MO Marion 127 39.7064 -91.3839 +US 63454 Maywood Missouri MO Marion 127 39.9333 -91.6148 +US 63461 Palmyra Missouri MO Marion 127 39.7913 -91.5368 +US 63463 Philadelphia Missouri MO Marion 127 39.8359 -91.7538 +US 63471 Taylor Missouri MO Marion 127 39.9145 -91.5278 +US 64661 Mercer Missouri MO Mercer 129 40.5169 -93.5242 +US 64673 Princeton Missouri MO Mercer 129 40.3855 -93.5774 +US 65017 Brumley Missouri MO Miller 131 38.0709 -92.4747 +US 65026 Eldon Missouri MO Miller 131 38.3401 -92.5736 +US 65031 Etterville Missouri MO Miller 131 38.2236 -92.4386 +US 65047 Kaiser Missouri MO Miller 131 38.1637 -92.5799 +US 65064 Olean Missouri MO Miller 131 38.3979 -92.488 +US 65075 Saint Elizabeth Missouri MO Miller 131 38.2712 -92.2635 +US 65082 Tuscumbia Missouri MO Miller 131 38.2181 -92.4461 +US 65083 Ulman Missouri MO Miller 131 38.1505 -92.433 +US 65486 Iberia Missouri MO Miller 131 38.1219 -92.2989 +US 63820 Anniston Missouri MO Mississippi 133 36.8226 -89.3462 +US 63823 Bertrand Missouri MO Mississippi 133 36.8927 -89.4483 +US 63834 Charleston Missouri MO Mississippi 133 36.9213 -89.3342 +US 63845 East Prairie Missouri MO Mississippi 133 36.7776 -89.3726 +US 63881 Wolf Island Missouri MO Mississippi 133 36.7795 -89.2063 +US 63882 Wyatt Missouri MO Mississippi 133 36.936 -89.2163 +US 65018 California Missouri MO Moniteau 135 38.6224 -92.5456 +US 65025 Clarksburg Missouri MO Moniteau 135 38.6432 -92.6729 +US 65034 Fortuna Missouri MO Moniteau 135 38.5454 -92.7601 +US 65042 High Point Missouri MO Moniteau 135 38.6749 -92.6109 +US 65046 Jamestown Missouri MO Moniteau 135 38.7793 -92.4807 +US 65050 Latham Missouri MO Moniteau 135 38.5466 -92.6817 +US 65055 Mc Girk Missouri MO Moniteau 135 38.6749 -92.6109 +US 65081 Tipton Missouri MO Moniteau 135 38.6548 -92.7814 +US 63456 Monroe City Missouri MO Monroe 137 39.6546 -91.723 +US 65258 Holliday Missouri MO Monroe 137 39.4904 -92.1318 +US 65263 Madison Missouri MO Monroe 137 39.4615 -92.2287 +US 65275 Paris Missouri MO Monroe 137 39.4932 -92.0113 +US 65282 Santa Fe Missouri MO Monroe 137 39.3989 -91.8294 +US 65283 Stoutsville Missouri MO Monroe 137 39.5594 -91.8297 +US 63333 Bellflower Missouri MO Montgomery 139 39.0012 -91.3489 +US 63350 High Hill Missouri MO Montgomery 139 38.8902 -91.3715 +US 63351 Jonesburg Missouri MO Montgomery 139 38.8717 -91.3019 +US 63359 Middletown Missouri MO Montgomery 139 39.1055 -91.3873 +US 63361 Montgomery City Missouri MO Montgomery 139 38.9839 -91.5085 +US 63363 New Florence Missouri MO Montgomery 139 38.9023 -91.4909 +US 63364 New Hartford Missouri MO Montgomery County 139 39.1847 -91.3065 +US 63384 Wellsville Missouri MO Montgomery 139 39.0765 -91.5645 +US 65069 Rhineland Missouri MO Montgomery 139 38.7942 -91.5737 +US 65011 Barnett Missouri MO Morgan 141 38.3967 -92.6686 +US 65037 Gravois Mills Missouri MO Morgan 141 38.2584 -92.823 +US 65038 Laurie Missouri MO Morgan 141 38.1964 -92.8678 +US 65072 Rocky Mount Missouri MO Morgan 141 38.2911 -92.7059 +US 65078 Stover Missouri MO Morgan 141 38.4414 -92.9947 +US 65084 Versailles Missouri MO Morgan 141 38.4365 -92.8258 +US 65329 Florence Missouri MO Morgan 141 38.6101 -92.9986 +US 65354 Syracuse Missouri MO Morgan 141 38.6547 -92.8929 +US 63828 Canalou Missouri MO New Madrid 143 36.7504 -89.6918 +US 63833 Catron Missouri MO New Madrid 143 36.6876 -89.7706 +US 63838 Conran Missouri MO New Madrid 143 36.6038 -89.65 +US 63848 Gideon Missouri MO New Madrid 143 36.4538 -89.9135 +US 63860 Kewanee Missouri MO New Madrid 143 36.6726 -89.5639 +US 63862 Lilbourn Missouri MO New Madrid 143 36.5853 -89.6112 +US 63866 Marston Missouri MO New Madrid 143 36.5186 -89.6464 +US 63867 Matthews Missouri MO New Madrid 143 36.7154 -89.6287 +US 63868 Morehouse Missouri MO New Madrid 143 36.8504 -89.6847 +US 63869 New Madrid Missouri MO New Madrid 143 36.6073 -89.5366 +US 63870 Parma Missouri MO New Madrid 143 36.5856 -89.819 +US 63873 Portageville Missouri MO New Madrid 143 36.4279 -89.7002 +US 63874 Risco Missouri MO New Madrid 143 36.6783 -89.77 +US 63878 Tallapoosa Missouri MO New Madrid 143 36.503 -89.8224 +US 64840 Diamond Missouri MO Newton 145 37.006 -94.3204 +US 64842 Fairview Missouri MO Newton 145 36.8254 -94.0912 +US 64844 Granby Missouri MO Newton 145 36.9066 -94.2643 +US 64850 Neosho Missouri MO Newton 145 36.8706 -94.3862 +US 64853 Newtonia Missouri MO Newton 145 36.8284 -94.1521 +US 64858 Racine Missouri MO Newton 145 36.901 -94.5321 +US 64864 Saginaw Missouri MO Newton 145 36.9023 -94.339 +US 64865 Seneca Missouri MO Newton 145 36.8408 -94.5781 +US 64866 Stark City Missouri MO Newton 145 36.8785 -94.1548 +US 64867 Stella Missouri MO Newton 145 36.7516 -94.2086 +US 64873 Wentworth Missouri MO Newton 145 37.0177 -94.0514 +US 64423 Barnard Missouri MO Nodaway 147 40.1862 -94.8056 +US 64428 Burlington Junction Missouri MO Nodaway 147 40.4475 -95.063 +US 64431 Clearmont Missouri MO Nodaway 147 40.5175 -95.0055 +US 64432 Clyde Missouri MO Nodaway 147 40.2635 -94.6687 +US 64433 Conception Missouri MO Nodaway 147 40.2309 -94.6843 +US 64434 Conception Junction Missouri MO Nodaway 147 40.2659 -94.6915 +US 64445 Elmo Missouri MO Nodaway 147 40.5185 -95.1236 +US 64455 Graham Missouri MO Nodaway 147 40.2012 -95.0121 +US 64457 Guilford Missouri MO Nodaway 147 40.1746 -94.6951 +US 64461 Hopkins Missouri MO Nodaway 147 40.5483 -94.8189 +US 64468 Maryville Missouri MO Nodaway 147 40.3434 -94.8735 +US 64475 Parnell Missouri MO Nodaway 147 40.4723 -94.6595 +US 64476 Pickering Missouri MO Nodaway 147 40.4591 -94.8411 +US 64478 Quitman Missouri MO Nodaway 147 40.288 -95.0822 +US 64479 Ravenwood Missouri MO Nodaway 147 40.3579 -94.6805 +US 64487 Skidmore Missouri MO Nodaway 147 40.2896 -95.0792 +US 65606 Alton Missouri MO Oregon 149 36.6929 -91.3971 +US 65690 Couch Missouri MO Oregon 149 36.5853 -91.2724 +US 65692 Koshkonong Missouri MO Oregon 149 36.6056 -91.6304 +US 65778 Myrtle Missouri MO Oregon 149 36.5217 -91.2706 +US 65791 Thayer Missouri MO Oregon 149 36.5327 -91.5418 +US 65001 Argyle Missouri MO Osage 151 38.2986 -92.0155 +US 65016 Bonnots Mill Missouri MO Osage 151 38.5533 -91.9293 +US 65024 Chamois Missouri MO Osage 151 38.6527 -91.7697 +US 65035 Freeburg Missouri MO Osage 151 38.3551 -91.9276 +US 65048 Koeltztown Missouri MO Osage 151 38.3615 -92.0468 +US 65051 Linn Missouri MO Osage 151 38.4739 -91.8195 +US 65054 Loose Creek Missouri MO Osage 151 38.4717 -91.9591 +US 65058 Meta Missouri MO Osage 151 38.25 -92.1358 +US 65085 Westphalia Missouri MO Osage 151 38.427 -92.0392 +US 65609 Bakersfield Missouri MO Ozark 153 36.5332 -92.1507 +US 65618 Brixey Missouri MO Ozark 153 36.759 -92.4026 +US 65637 Dora Missouri MO Ozark 153 36.756 -92.2378 +US 65655 Gainesville Missouri MO Ozark 153 36.5901 -92.4162 +US 65666 Hardenville Missouri MO Ozark 153 36.6516 -92.4423 +US 65676 Isabella Missouri MO Ozark 153 36.5749 -92.6053 +US 65715 Noble Missouri MO Ozark 153 36.7441 -92.5769 +US 65729 Pontiac Missouri MO Ozark 153 36.5248 -92.5612 +US 65741 Rockbridge Missouri MO Ozark 153 36.6516 -92.4423 +US 65760 Tecumseh Missouri MO Ozark 153 36.5875 -92.2598 +US 65761 Theodosia Missouri MO Ozark 153 36.583 -92.6628 +US 65762 Thornfield Missouri MO Ozark 153 36.6875 -92.6534 +US 65766 Udall Missouri MO Ozark 153 36.5253 -92.2335 +US 65773 Wasola Missouri MO Ozark 153 36.7573 -92.5093 +US 65784 Zanoni Missouri MO Ozark 153 36.6516 -92.4423 +US 63826 Braggadocio Missouri MO Pemiscot 155 36.1781 -89.6716 +US 63827 Bragg City Missouri MO Pemiscot 155 36.2732 -89.8736 +US 63830 Caruthersville Missouri MO Pemiscot 155 36.1802 -89.6683 +US 63839 Cooter Missouri MO Pemiscot 155 36.0476 -89.8091 +US 63840 Deering Missouri MO Pemiscot 155 36.2133 -89.7481 +US 63849 Gobler Missouri MO Pemiscot 155 36.159 -89.9349 +US 63851 Hayti Missouri MO Pemiscot 155 36.2589 -89.7172 +US 63853 Holland Missouri MO Pemiscot 155 36.093 -89.8311 +US 63871 Pascola Missouri MO Pemiscot 155 36.2678 -89.8225 +US 63877 Steele Missouri MO Pemiscot 155 36.0915 -89.8346 +US 63879 Wardell Missouri MO Pemiscot 155 36.3478 -89.8181 +US 63732 Altenburg Missouri MO Perry 157 37.6279 -89.5745 +US 63737 Brazeau Missouri MO Perry 157 37.6633 -89.6529 +US 63746 Farrar Missouri MO Perry 157 37.7078 -89.6948 +US 63748 Frohna Missouri MO Perry 157 37.6686 -89.6619 +US 63775 Perryville Missouri MO Perry 157 37.7174 -89.8737 +US 63776 Mc Bride Missouri MO Perry 157 37.7348 -89.8116 +US 63783 Uniontown Missouri MO Perry 157 37.6073 -89.6798 +US 65301 Sedalia Missouri MO Pettis 159 38.6961 -93.2323 +US 65302 Sedalia Missouri MO Pettis 159 38.7246 -93.2817 +US 65332 Green Ridge Missouri MO Pettis 159 38.619 -93.4374 +US 65333 Houstonia Missouri MO Pettis 159 38.9106 -93.3325 +US 65334 Hughesville Missouri MO Pettis 159 38.8494 -93.2159 +US 65337 La Monte Missouri MO Pettis 159 38.7753 -93.4313 +US 65345 Mora Missouri MO Pettis 159 38.5207 -93.2272 +US 65350 Smithton Missouri MO Pettis 159 38.66 -93.1088 +US 65401 Rolla Missouri MO Phelps 161 37.9485 -91.7603 +US 65402 Rolla Missouri MO Phelps 161 37.9632 -91.8179 +US 65409 Rolla Missouri MO Phelps 161 37.8762 -91.7772 +US 65436 Beulah Missouri MO Phelps 161 37.6158 -91.9064 +US 65461 Duke Missouri MO Phelps 161 37.706 -92.0064 +US 65462 Edgar Springs Missouri MO Phelps 161 37.7365 -91.8906 +US 65529 Jerome Missouri MO Phelps 161 37.9254 -91.9906 +US 65550 Newburg Missouri MO Phelps 161 37.9008 -91.8807 +US 65559 Saint James Missouri MO Phelps 161 38.0056 -91.6076 +US 63330 Annada Missouri MO Pike 163 39.2558 -90.8224 +US 63334 Bowling Green Missouri MO Pike 163 39.3346 -91.1962 +US 63336 Clarksville Missouri MO Pike 163 39.3465 -90.9362 +US 63339 Curryville Missouri MO Pike 163 39.3257 -91.3493 +US 63344 Eolia Missouri MO Pike 163 39.2431 -91.0093 +US 63353 Louisiana Missouri MO Pike 163 39.4336 -91.0664 +US 63371 Paynesville Missouri MO Pike County 163 39.2575 -90.9122 +US 63433 Ashburn Missouri MO Pike 163 39.561 -91.1844 +US 63441 Frankford Missouri MO Pike 163 39.4892 -91.3031 +US 64018 Camden Point Missouri MO Platte 165 39.4515 -94.7444 +US 64028 Farley Missouri MO Platte 165 39.2839 -94.8302 +US 64079 Platte City Missouri MO Platte 165 39.3602 -94.789 +US 64092 Waldron Missouri MO Platte 165 39.2289 -94.8057 +US 64098 Weston Missouri MO Platte 165 39.4453 -94.9145 +US 64150 Riverside Missouri MO Platte 165 39.1776 -94.6321 +US 64151 Kansas City Missouri MO Platte 165 39.2127 -94.6383 +US 64152 Kansas City Missouri MO Platte 165 39.2176 -94.7238 +US 64153 Kansas City Missouri MO Platte 165 39.2627 -94.697 +US 64154 Kansas City Missouri MO Platte 165 39.2547 -94.6354 +US 64163 Kansas City Missouri MO Platte 165 39.3402 -94.6908 +US 64164 Kansas City Missouri MO Platte 165 39.3426 -94.6446 +US 64168 Kansas City Missouri MO Platte 165 39.3432 -94.8516 +US 64190 Kansas City Missouri MO Platte 165 39.3432 -94.8516 +US 64195 Kansas City Missouri MO Platte 165 39.3432 -94.8516 +US 64439 Dearborn Missouri MO Platte 165 39.5172 -94.7664 +US 64444 Edgerton Missouri MO Platte 165 39.4742 -94.6352 +US 65601 Aldrich Missouri MO Polk 167 37.5057 -93.5576 +US 65613 Bolivar Missouri MO Polk 167 37.6085 -93.4126 +US 65617 Brighton Missouri MO Polk 167 37.4728 -93.3603 +US 65640 Dunnegan Missouri MO Polk 167 37.7031 -93.5216 +US 65645 Eudora Missouri MO Polk 167 37.4767 -93.5397 +US 65649 Fair Play Missouri MO Polk 167 37.6335 -93.6064 +US 65650 Flemington Missouri MO Polk 167 37.7803 -93.4471 +US 65659 Goodson Missouri MO Polk 167 37.7075 -93.2375 +US 65663 Half Way Missouri MO Polk 167 37.6018 -93.242 +US 65674 Humansville Missouri MO Polk 167 37.7923 -93.5795 +US 65710 Morrisville Missouri MO Polk 167 37.4686 -93.4275 +US 65725 Pleasant Hope Missouri MO Polk 167 37.4615 -93.2617 +US 65727 Polk Missouri MO Polk 167 37.7438 -93.3206 +US 65452 Crocker Missouri MO Pulaski 169 37.9446 -92.27 +US 65457 Devils Elbow Missouri MO Pulaski 169 37.8512 -92.0569 +US 65459 Dixon Missouri MO Pulaski 169 37.9848 -92.0897 +US 65473 Fort Leonard Wood Missouri MO Pulaski 169 37.7677 -92.112 +US 65534 Laquey Missouri MO Pulaski 169 37.6953 -92.2808 +US 65556 Richland Missouri MO Pulaski 169 37.8528 -92.3962 +US 65572 Swedeborg Missouri MO Pulaski 169 37.8119 -92.2174 +US 65583 Waynesville Missouri MO Pulaski 169 37.7676 -92.2105 +US 65584 Saint Robert Missouri MO Pulaski 169 37.8283 -92.131 +US 63551 Livonia Missouri MO Putnam 171 40.5112 -92.7241 +US 63565 Unionville Missouri MO Putnam 171 40.4815 -92.9951 +US 63567 Worthington Missouri MO Putnam 171 40.424 -92.7401 +US 64655 Lucerne Missouri MO Putnam 171 40.4382 -93.2867 +US 64672 Powersville Missouri MO Putnam 171 40.5272 -93.2844 +US 63436 Center Missouri MO Ralls 173 39.5154 -91.5398 +US 63459 New London Missouri MO Ralls 173 39.5917 -91.396 +US 63462 Perry Missouri MO Ralls 173 39.4207 -91.6641 +US 63467 Saverton Missouri MO Ralls 173 39.65 -91.2705 +US 65239 Cairo Missouri MO Randolph 175 39.5114 -92.44 +US 65243 Clark Missouri MO Randolph 175 39.3153 -92.3827 +US 65244 Clifton Hill Missouri MO Randolph 175 39.426 -92.6677 +US 65257 Higbee Missouri MO Randolph 175 39.3055 -92.5163 +US 65259 Huntsville Missouri MO Randolph 175 39.4354 -92.553 +US 65260 Jacksonville Missouri MO Randolph 175 39.5791 -92.4315 +US 65270 Moberly Missouri MO Randolph 175 39.4202 -92.4358 +US 65278 Renick Missouri MO Randolph 175 39.3414 -92.411 +US 64017 Camden Missouri MO Ray 177 39.2048 -94.0259 +US 64035 Hardin Missouri MO Ray 177 39.3504 -93.8409 +US 64036 Henrietta Missouri MO Ray 177 39.2367 -93.9369 +US 64062 Lawson Missouri MO Ray 177 39.4401 -94.1966 +US 64077 Orrick Missouri MO Ray 177 39.2116 -94.1239 +US 64084 Rayville Missouri MO Ray 177 39.3853 -94.0284 +US 64085 Richmond Missouri MO Ray 177 39.2793 -93.9792 +US 63625 Black Missouri MO Reynolds 179 37.5473 -90.9917 +US 63629 Bunker Missouri MO Reynolds 179 37.4772 -91.1927 +US 63633 Centerville Missouri MO Reynolds 179 37.4285 -90.9757 +US 63638 Ellington Missouri MO Reynolds 179 37.2398 -90.9589 +US 63654 Lesterville Missouri MO Reynolds 179 37.482 -90.8425 +US 63665 Redford Missouri MO Reynolds 179 37.3272 -91.0243 +US 63666 Reynolds Missouri MO Reynolds 179 37.3272 -91.0243 +US 63931 Briar Missouri MO Ripley 181 36.661 -90.8508 +US 63935 Doniphan Missouri MO Ripley 181 36.6501 -90.8106 +US 63939 Fairdealing Missouri MO Ripley 181 36.6704 -90.6335 +US 63942 Gatewood Missouri MO Ripley 181 36.5626 -91.0703 +US 63953 Naylor Missouri MO Ripley 181 36.5843 -90.6124 +US 63955 Oxly Missouri MO Ripley 181 36.5874 -90.692 +US 63301 Saint Charles Missouri MO St. Charles 183 38.8014 -90.5065 +US 63302 Saint Charles Missouri MO St. Charles 183 38.5813 -90.873 +US 63303 Saint Charles Missouri MO St. Charles 183 38.7622 -90.5471 +US 63304 Saint Charles Missouri MO St. Charles 183 38.7378 -90.6234 +US 63332 Augusta Missouri MO St. Charles 183 38.5728 -90.8815 +US 63338 Cottleville Missouri MO St. Charles 183 38.7509 -90.5368 +US 63341 Defiance Missouri MO St. Charles 183 38.6616 -90.8302 +US 63346 Flinthill Missouri MO St. Charles 183 38.7509 -90.5368 +US 63348 Foristell Missouri MO St. Charles 183 38.7626 -90.9343 +US 63365 New Melle Missouri MO St. Charles 183 38.7163 -90.8751 +US 63366 O Fallon Missouri MO St. Charles 183 38.8239 -90.7427 +US 63367 Lake Saint Louis Missouri MO St. Charles 183 38.7936 -90.7854 +US 63368 O Fallon Missouri MO Saint Charles County 183 38.7513 -90.7296 +US 63373 Portage Des Sioux Missouri MO St. Charles 183 38.9259 -90.3863 +US 63376 Saint Peters Missouri MO St. Charles 183 38.7802 -90.6228 +US 63385 Wentzville Missouri MO St. Charles 183 38.802 -90.8534 +US 63386 West Alton Missouri MO St. Charles 183 38.8758 -90.2384 +US 64724 Appleton City Missouri MO St. Clair 185 38.1848 -94.0229 +US 64738 Collins Missouri MO St. Clair 185 37.881 -93.6608 +US 64760 Latour Missouri MO Saint Clair County 185 38.6279 -94.0379 +US 64763 Lowry City Missouri MO St. Clair 185 38.1404 -93.7114 +US 64776 Osceola Missouri MO St. Clair 185 38.0286 -93.7536 +US 64781 Roscoe Missouri MO St. Clair 185 38.0241 -93.7815 +US 64789 Vista Missouri MO St. Clair 185 38.0241 -93.7815 +US 63627 Bloomsdale Missouri MO Ste. Genevieve 186 38.0451 -90.2805 +US 63661 New Offenburg Missouri MO Ste. Genevieve 186 37.8987 -90.192 +US 63670 Sainte Genevieve Missouri MO Ste. Genevieve 186 37.8655 -90.1752 +US 63673 Saint Mary Missouri MO Ste. Genevieve 186 37.8325 -89.977 +US 63036 French Village Missouri MO St. Francois 187 37.9961 -90.4005 +US 63087 Valles Mines Missouri MO St. Francois 187 37.9998 -90.4407 +US 63601 Park Hills Missouri MO St. Francois 187 37.8498 -90.4885 +US 63624 Bismarck Missouri MO St. Francois 187 37.7539 -90.5984 +US 63626 Blackwell Missouri MO St. Francois 187 38.0544 -90.6279 +US 63628 Bonne Terre Missouri MO St. Francois 187 37.9314 -90.5251 +US 63637 Doe Run Missouri MO St. Francois 187 37.7348 -90.4968 +US 63640 Farmington Missouri MO St. Francois 187 37.7773 -90.4094 +US 63651 Knob Lick Missouri MO St. Francois 187 37.6754 -90.3677 +US 63653 Leadwood Missouri MO St. Francois 187 37.8577 -90.5879 +US 63001 Allenton Missouri MO St. Louis 189 38.6383 -90.4271 +US 63005 Chesterfield Missouri MO St. Louis 189 38.6318 -90.6142 +US 63006 Chesterfield Missouri MO St. Louis 189 38.6383 -90.4271 +US 63011 Ballwin Missouri MO St. Louis 189 38.6091 -90.5598 +US 63017 Chesterfield Missouri MO St. Louis 189 38.6491 -90.5358 +US 63021 Ballwin Missouri MO St. Louis 189 38.577 -90.5255 +US 63022 Ballwin Missouri MO St. Louis 189 38.6383 -90.4271 +US 63024 Ballwin Missouri MO St. Louis 189 38.6383 -90.4271 +US 63025 Eureka Missouri MO St. Louis 189 38.5128 -90.6306 +US 63026 Fenton Missouri MO St. Louis 189 38.5015 -90.4683 +US 63031 Florissant Missouri MO St. Louis 189 38.8069 -90.3401 +US 63032 Florissant Missouri MO St. Louis 189 38.6383 -90.4271 +US 63033 Florissant Missouri MO St. Louis 189 38.7947 -90.2831 +US 63034 Florissant Missouri MO St. Louis 189 38.8338 -90.2936 +US 63038 Glencoe Missouri MO St. Louis 189 38.5878 -90.6639 +US 63040 Grover Missouri MO St. Louis 189 38.5667 -90.631 +US 63042 Hazelwood Missouri MO St. Louis 189 38.7809 -90.3669 +US 63043 Maryland Heights Missouri MO St. Louis 189 38.7229 -90.4474 +US 63044 Bridgeton Missouri MO St. Louis 189 38.7506 -90.4161 +US 63045 Earth City Missouri MO St. Louis 189 38.7689 -90.4662 +US 63074 Saint Ann Missouri MO St. Louis 189 38.7259 -90.3864 +US 63088 Valley Park Missouri MO St. Louis 189 38.5576 -90.4924 +US 63099 Fenton Missouri MO St. Louis 189 38.6383 -90.4271 +US 63105 Saint Louis Missouri MO St. Louis 189 38.6459 -90.3264 +US 63114 Saint Louis Missouri MO St. Louis 189 38.7023 -90.3644 +US 63117 Saint Louis Missouri MO St. Louis 189 38.6295 -90.3342 +US 63119 Saint Louis Missouri MO St. Louis 189 38.5893 -90.3481 +US 63121 Saint Louis Missouri MO St. Louis 189 38.7071 -90.3055 +US 63122 Saint Louis Missouri MO St. Louis 189 38.5781 -90.4256 +US 63123 Saint Louis Missouri MO St. Louis 189 38.5476 -90.3241 +US 63124 Saint Louis Missouri MO St. Louis 189 38.6372 -90.3776 +US 63125 Saint Louis Missouri MO St. Louis 189 38.5222 -90.3021 +US 63126 Saint Louis Missouri MO St. Louis 189 38.5495 -90.3811 +US 63127 Saint Louis Missouri MO St. Louis 189 38.5355 -90.407 +US 63128 Saint Louis Missouri MO St. Louis 189 38.4915 -90.3772 +US 63129 Saint Louis Missouri MO St. Louis 189 38.4566 -90.3282 +US 63130 Saint Louis Missouri MO St. Louis 189 38.6669 -90.3225 +US 63131 Saint Louis Missouri MO St. Louis 189 38.6171 -90.4504 +US 63132 Saint Louis Missouri MO St. Louis 189 38.6746 -90.3747 +US 63133 Saint Louis Missouri MO St. Louis 189 38.6779 -90.3033 +US 63134 Saint Louis Missouri MO St. Louis 189 38.7435 -90.341 +US 63135 Saint Louis Missouri MO St. Louis 189 38.7497 -90.3012 +US 63136 Saint Louis Missouri MO St. Louis 189 38.7196 -90.27 +US 63137 Saint Louis Missouri MO St. Louis 189 38.7468 -90.2131 +US 63138 Saint Louis Missouri MO St. Louis 189 38.8033 -90.2065 +US 63140 Saint Louis Missouri MO St. Louis 189 38.7375 -90.3265 +US 63141 Saint Louis Missouri MO St. Louis 189 38.6565 -90.4542 +US 63143 Saint Louis Missouri MO St. Louis 189 38.6111 -90.3225 +US 63144 Saint Louis Missouri MO St. Louis 189 38.6182 -90.3489 +US 63145 Saint Louis Missouri MO St. Louis 189 38.6383 -90.4271 +US 63146 Saint Louis Missouri MO St. Louis 189 38.7033 -90.4618 +US 63151 Saint Louis Missouri MO St. Louis 189 38.6383 -90.4271 +US 63167 Saint Louis Missouri MO St. Louis 189 38.6383 -90.4271 +US 63198 Saint Louis Missouri MO St. Louis 189 38.6383 -90.4271 +US 65320 Arrow Rock Missouri MO Saline 195 39.0694 -92.9487 +US 65321 Blackburn Missouri MO Saline 195 39.0988 -93.4281 +US 65330 Gilliam Missouri MO Saline 195 39.2447 -92.9932 +US 65339 Malta Bend Missouri MO Saline 195 39.1481 -93.3776 +US 65340 Marshall Missouri MO Saline 195 39.1614 -93.2444 +US 65344 Miami Missouri MO Saline 195 39.2821 -93.1968 +US 65347 Nelson Missouri MO Saline 195 39.0104 -93.0311 +US 65349 Slater Missouri MO Saline 195 39.2163 -93.0547 +US 65351 Sweet Springs Missouri MO Saline 195 38.966 -93.4247 +US 63535 Coatsville Missouri MO Schuyler 197 40.5665 -92.6388 +US 63536 Downing Missouri MO Schuyler 197 40.4798 -92.3918 +US 63541 Glenwood Missouri MO Schuyler 197 40.5149 -92.5886 +US 63548 Lancaster Missouri MO Schuyler 197 40.5253 -92.5264 +US 63561 Queen City Missouri MO Schuyler 197 40.4152 -92.5663 +US 63432 Arbela Missouri MO Scotland 199 40.4863 -92.0047 +US 63442 Granger Missouri MO Scotland 199 40.4533 -92.1474 +US 63543 Gorin Missouri MO Scotland 199 40.3622 -92.014 +US 63555 Memphis Missouri MO Scotland 199 40.4619 -92.1851 +US 63563 Rutledge Missouri MO Scotland 199 40.329 -92.0976 +US 63736 Benton Missouri MO Scott 201 37.0697 -89.5664 +US 63740 Chaffee Missouri MO Scott 201 37.1726 -89.6457 +US 63742 Commerce Missouri MO Scott 201 37.157 -89.4484 +US 63758 Kelso Missouri MO Scott 201 37.1858 -89.5575 +US 63767 Morley Missouri MO Scott 201 37.0411 -89.6076 +US 63771 Oran Missouri MO Scott 201 37.087 -89.6734 +US 63774 Perkins Missouri MO Scott 201 37.0564 -89.5499 +US 63780 Scott City Missouri MO Scott 201 37.2077 -89.5181 +US 63784 Vanduser Missouri MO Scott 201 36.9912 -89.6885 +US 63786 Wittenberg Missouri MO Scott County 201 37.6799 -89.5622 +US 63801 Sikeston Missouri MO Scott 201 36.8911 -89.582 +US 63824 Blodgett Missouri MO Scott 201 37.0042 -89.5266 +US 65438 Birch Tree Missouri MO Shannon 203 36.9476 -91.5008 +US 65466 Eminence Missouri MO Shannon 203 37.1626 -91.4519 +US 65546 Montier Missouri MO Shannon 203 37.1533 -91.3375 +US 65573 Teresita Missouri MO Shannon 203 37.1533 -91.3375 +US 65588 Winona Missouri MO Shannon 203 37.0169 -91.3121 +US 63434 Bethel Missouri MO Shelby 205 39.8922 -92.0316 +US 63437 Clarence Missouri MO Shelby 205 39.7366 -92.253 +US 63439 Emden Missouri MO Shelby 205 39.8019 -91.8606 +US 63443 Hunnewell Missouri MO Shelby 205 39.7018 -91.8832 +US 63450 Lentner Missouri MO Shelby 205 39.7123 -92.1489 +US 63451 Leonard Missouri MO Shelby 205 39.9076 -92.1947 +US 63468 Shelbina Missouri MO Shelby 205 39.6947 -92.0371 +US 63469 Shelbyville Missouri MO Shelby 205 39.8108 -92.0498 +US 63730 Advance Missouri MO Stoddard 207 37.0922 -89.9106 +US 63735 Bell City Missouri MO Stoddard 207 37.0116 -89.7984 +US 63738 Brownwood Missouri MO Stoddard 207 37.0828 -89.9523 +US 63772 Painton Missouri MO Stoddard 207 37.0461 -89.7792 +US 63822 Bernie Missouri MO Stoddard 207 36.6727 -89.9878 +US 63825 Bloomfield Missouri MO Stoddard 207 36.8989 -89.9456 +US 63841 Dexter Missouri MO Stoddard 207 36.7885 -89.9639 +US 63846 Essex Missouri MO Stoddard 207 36.8109 -89.8366 +US 63850 Grayridge Missouri MO Stoddard 207 36.8283 -89.7565 +US 63936 Dudley Missouri MO Stoddard 207 36.811 -90.121 +US 63960 Puxico Missouri MO Stoddard 207 36.9422 -90.1623 +US 65611 Blue Eye Missouri MO Stone 209 36.5493 -93.3388 +US 65624 Cape Fair Missouri MO Stone 209 36.7311 -93.5674 +US 65633 Crane Missouri MO Stone 209 36.9258 -93.5303 +US 65656 Galena Missouri MO Stone 209 36.8198 -93.4811 +US 65675 Hurley Missouri MO Stone 209 36.9305 -93.4965 +US 65681 Lampe Missouri MO Stone 209 36.5767 -93.4516 +US 65686 Kimberling City Missouri MO Stone 209 36.6393 -93.4372 +US 65728 Ponce De Leon Missouri MO Stone 209 36.7471 -93.4586 +US 65737 Reeds Spring Missouri MO Stone 209 36.6907 -93.3447 +US 63544 Green Castle Missouri MO Sullivan 211 40.2703 -92.878 +US 63545 Green City Missouri MO Sullivan 211 40.2601 -92.9532 +US 63556 Milan Missouri MO Sullivan 211 40.1844 -93.1361 +US 63560 Pollock Missouri MO Sullivan 211 40.3385 -93.1115 +US 63566 Winigan Missouri MO Sullivan 211 40.0371 -92.9301 +US 64645 Harris Missouri MO Sullivan 211 40.3075 -93.3501 +US 64646 Humphreys Missouri MO Sullivan 211 40.1144 -93.3015 +US 64667 Newtown Missouri MO Sullivan 211 40.3612 -93.3073 +US 65614 Bradleyville Missouri MO Taney 213 36.7659 -92.9151 +US 65615 Branson Missouri MO Taney 213 36.661 -93.2358 +US 65616 Branson Missouri MO Taney 213 36.669 -93.2481 +US 65627 Cedarcreek Missouri MO Taney 213 36.571 -93.0172 +US 65653 Forsyth Missouri MO Taney 213 36.6955 -93.115 +US 65672 Hollister Missouri MO Taney 213 36.6107 -93.2286 +US 65673 Hollister Missouri MO Taney 213 36.6179 -93.2162 +US 65679 Kirbyville Missouri MO Taney 213 36.5792 -93.1263 +US 65680 Kissee Mills Missouri MO Taney 213 36.6704 -93.0377 +US 65701 Mc Clurg Missouri MO Taney 213 36.7026 -92.7811 +US 65726 Point Lookout Missouri MO Taney 213 36.6165 -93.2418 +US 65731 Powersite Missouri MO Taney 213 36.6578 -93.1243 +US 65733 Protem Missouri MO Taney 213 36.5286 -92.8465 +US 65739 Ridgedale Missouri MO Taney 213 36.5247 -93.2778 +US 65740 Rockaway Beach Missouri MO Taney 213 36.7137 -93.1715 +US 65744 Rueter Missouri MO Taney 213 36.6314 -92.9188 +US 65759 Taneyville Missouri MO Taney 213 36.7405 -93.028 +US 65771 Walnut Shade Missouri MO Taney 213 36.7704 -93.2148 +US 65433 Bendavis Missouri MO Texas 215 37.3094 -92.2144 +US 65444 Bucyrus Missouri MO Texas 215 37.3972 -92.0465 +US 65464 Elk Creek Missouri MO Texas 215 37.1878 -91.9134 +US 65468 Eunice Missouri MO Texas 215 37.248 -91.7834 +US 65479 Hartshorn Missouri MO Texas 215 37.2843 -91.6834 +US 65483 Houston Missouri MO Texas 215 37.3218 -91.953 +US 65484 Huggins Missouri MO Texas 215 37.3538 -92.2153 +US 65542 Licking Missouri MO Texas 215 37.5091 -91.8556 +US 65552 Plato Missouri MO Texas 215 37.5122 -92.1709 +US 65555 Raymondville Missouri MO Texas 215 37.3569 -91.8131 +US 65557 Roby Missouri MO Texas 215 37.4994 -92.1323 +US 65564 Solo Missouri MO Texas 215 37.2428 -91.9624 +US 65570 Success Missouri MO Texas 215 37.4626 -92.0909 +US 65571 Summersville Missouri MO Texas 215 37.1484 -91.6828 +US 65589 Yukon Missouri MO Texas 215 37.2311 -91.8244 +US 65689 Cabool Missouri MO Texas 215 37.1314 -92.1144 +US 64728 Bronaugh Missouri MO Vernon 217 37.69 -94.486 +US 64741 Deerfield Missouri MO Vernon 217 37.8197 -94.5608 +US 64750 Harwood Missouri MO Vernon 217 37.953 -94.1402 +US 64751 Horton Missouri MO Vernon 217 37.8499 -94.3381 +US 64765 Metz Missouri MO Vernon 217 37.8499 -94.3381 +US 64767 Milo Missouri MO Vernon 217 37.7446 -94.3046 +US 64771 Moundville Missouri MO Vernon 217 37.7476 -94.4496 +US 64772 Nevada Missouri MO Vernon 217 37.8409 -94.3571 +US 64778 Richards Missouri MO Vernon 217 37.9061 -94.5592 +US 64783 Schell City Missouri MO Vernon 217 38.0094 -94.1579 +US 64784 Sheldon Missouri MO Vernon 217 37.684 -94.2548 +US 64790 Walker Missouri MO Vernon 217 37.893 -94.2293 +US 63342 Dutzow Missouri MO Warren 219 38.606 -90.9962 +US 63357 Marthasville Missouri MO Warren 219 38.6512 -91.1516 +US 63378 Treloar Missouri MO Warren 219 38.7702 -91.1886 +US 63383 Warrenton Missouri MO Warren 219 38.805 -91.174 +US 63390 Wright City Missouri MO Warren 219 38.8097 -91.0329 +US 63071 Richwoods Missouri MO Washington 221 38.1496 -90.831 +US 63622 Belgrade Missouri MO Washington 221 37.7889 -90.8613 +US 63630 Cadet Missouri MO Washington 221 38.0125 -90.7439 +US 63631 Caledonia Missouri MO Washington 221 37.7639 -90.7409 +US 63644 Frankclay Missouri MO Washington County 221 37.8615 -90.6149 +US 63648 Irondale Missouri MO Washington 221 37.8296 -90.6984 +US 63660 Mineral Point Missouri MO Washington 221 37.9156 -90.7193 +US 63664 Potosi Missouri MO Washington 221 37.9549 -90.8415 +US 63674 Tiff Missouri MO Washington 221 37.9704 -90.87 +US 63632 Cascade Missouri MO Wayne 223 37.1196 -90.445 +US 63763 Mc Gee Missouri MO Wayne 223 37.1196 -90.445 +US 63934 Clubb Missouri MO Wayne 223 37.1196 -90.445 +US 63944 Greenville Missouri MO Wayne 223 37.1108 -90.4514 +US 63947 Hiram Missouri MO Wayne 223 37.2282 -90.2896 +US 63950 Lodi Missouri MO Wayne 223 37.1196 -90.445 +US 63951 Lowndes Missouri MO Wayne 223 37.1343 -90.2544 +US 63952 Mill Spring Missouri MO Wayne 223 37.0675 -90.6746 +US 63956 Patterson Missouri MO Wayne 223 37.1196 -90.445 +US 63957 Piedmont Missouri MO Wayne 223 37.1573 -90.699 +US 63963 Shook Missouri MO Wayne 223 37.077 -90.3006 +US 63964 Silva Missouri MO Wayne 223 37.2119 -90.4375 +US 63966 Wappapello Missouri MO Wayne 223 36.9766 -90.2848 +US 63967 Williamsville Missouri MO Wayne 223 36.9638 -90.4879 +US 65636 Diggins Missouri MO Webster 225 37.2772 -92.8779 +US 65644 Elkland Missouri MO Webster 225 37.4336 -93.021 +US 65652 Fordland Missouri MO Webster 225 37.1447 -92.9111 +US 65706 Marshfield Missouri MO Webster 225 37.3312 -92.925 +US 65713 Niangua Missouri MO Webster 225 37.3985 -92.7763 +US 65742 Rogersville Missouri MO Webster 225 37.131 -93.0964 +US 65746 Seymour Missouri MO Webster 225 37.1667 -92.7857 +US 64420 Allendale Missouri MO Worth 227 40.4781 -94.4233 +US 64441 Denver Missouri MO Worth 227 40.4181 -94.3066 +US 64456 Grant City Missouri MO Worth 227 40.4924 -94.3979 +US 64486 Sheridan Missouri MO Worth 227 40.4928 -94.5701 +US 64499 Worth Missouri MO Worth 227 40.3939 -94.4398 +US 65660 Graff Missouri MO Wright 229 37.3262 -92.2647 +US 65662 Grovespring Missouri MO Wright 229 37.4947 -92.6001 +US 65667 Hartville Missouri MO Wright 229 37.2735 -92.5181 +US 65702 Macomb Missouri MO Wright 229 37.1049 -92.4821 +US 65704 Mansfield Missouri MO Wright 229 37.1273 -92.5936 +US 65711 Mountain Grove Missouri MO Wright 229 37.1626 -92.2839 +US 65717 Norwood Missouri MO Wright 229 37.0687 -92.4082 +US 63101 Saint Louis Missouri MO St. Louis (city) 510 38.6346 -90.1913 +US 63102 Saint Louis Missouri MO St. Louis (city) 510 38.6352 -90.1864 +US 63103 Saint Louis Missouri MO St. Louis (city) 510 38.6332 -90.2164 +US 63104 Saint Louis Missouri MO St. Louis (city) 510 38.6128 -90.2185 +US 63106 Saint Louis Missouri MO St. Louis (city) 510 38.6442 -90.2082 +US 63107 Saint Louis Missouri MO St. Louis (city) 510 38.6645 -90.2125 +US 63108 Saint Louis Missouri MO St. Louis (city) 510 38.6445 -90.2544 +US 63109 Saint Louis Missouri MO St. Louis (city) 510 38.5855 -90.2929 +US 63110 Saint Louis Missouri MO St. Louis (city) 510 38.6185 -90.2564 +US 63111 Saint Louis Missouri MO St. Louis (city) 510 38.5633 -90.2495 +US 63112 Saint Louis Missouri MO St. Louis (city) 510 38.6616 -90.2819 +US 63113 Saint Louis Missouri MO St. Louis (city) 510 38.659 -90.2496 +US 63115 Saint Louis Missouri MO St. Louis (city) 510 38.6756 -90.2385 +US 63116 Saint Louis Missouri MO St. Louis (city) 510 38.5814 -90.2625 +US 63118 Saint Louis Missouri MO St. Louis (city) 510 38.5943 -90.2309 +US 63120 Saint Louis Missouri MO St. Louis (city) 510 38.6909 -90.2595 +US 63139 Saint Louis Missouri MO St. Louis (city) 510 38.6108 -90.292 +US 63147 Saint Louis Missouri MO St. Louis (city) 510 38.7139 -90.2375 +US 63150 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63153 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63155 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63156 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63157 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63158 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63160 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63163 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63164 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63166 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63169 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63171 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63177 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63178 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63179 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63180 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63182 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63188 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63190 Saint Louis Missouri MO City of Saint Louis 510 38.6336 -90.2687 +US 63195 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63196 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63197 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 63199 Saint Louis Missouri MO St. Louis (city) 510 38.6531 -90.2435 +US 96951 Rota MP Sterling 431 31.8243 -101.0372 +US 96950 Saipan MP 15.1917 145.7472 +US 96952 Tinian MP 15.0125 145.625 +US 39120 Natchez Mississippi MS Adams 001 31.5492 -91.3642 +US 39121 Natchez Mississippi MS Adams 001 31.4706 -91.4044 +US 39122 Natchez Mississippi MS Adams 001 31.4706 -91.4044 +US 39165 Sibley Mississippi MS Adams 001 31.4706 -91.4044 +US 39190 Washington Mississippi MS Adams 001 31.4706 -91.4044 +US 38834 Corinth Mississippi MS Alcorn 003 34.8759 -88.5916 +US 38835 Corinth Mississippi MS Alcorn 003 34.9205 -88.5218 +US 38846 Glen Mississippi MS Alcorn 003 34.878 -88.4359 +US 38865 Rienzi Mississippi MS Alcorn 003 34.7968 -88.5795 +US 39633 Crosby Mississippi MS Amite 005 31.291 -91.1849 +US 39638 Gloster Mississippi MS Amite 005 31.1903 -90.924 +US 39645 Liberty Mississippi MS Amite 005 31.1384 -90.7133 +US 39664 Smithdale Mississippi MS Amite 005 31.3672 -90.6752 +US 39067 Ethel Mississippi MS Attala 007 33.1526 -89.4947 +US 39090 Kosciusko Mississippi MS Attala 007 33.0446 -89.5724 +US 39107 Mc Adams Mississippi MS Attala 007 33.0828 -89.6412 +US 39108 Mc Cool Mississippi MS Attala 007 33.1632 -89.3268 +US 39160 Sallis Mississippi MS Attala 007 33.001 -89.7552 +US 38603 Ashland Mississippi MS Benton 009 34.8346 -89.1427 +US 38633 Hickory Flat Mississippi MS Benton 009 34.6244 -89.1862 +US 38647 Michigan City Mississippi MS Benton 009 34.9608 -89.2267 +US 38720 Alligator Mississippi MS Bolivar 011 34.1294 -90.7382 +US 38725 Benoit Mississippi MS Bolivar 011 33.6448 -91.0338 +US 38726 Beulah Mississippi MS Bolivar 011 33.788 -90.9795 +US 38730 Boyle Mississippi MS Bolivar 011 33.6891 -90.7838 +US 38732 Cleveland Mississippi MS Bolivar 011 33.743 -90.7309 +US 38733 Cleveland Mississippi MS Bolivar 011 33.624 -90.8195 +US 38740 Duncan Mississippi MS Bolivar 011 34.047 -90.7652 +US 38746 Gunnison Mississippi MS Bolivar 011 33.9439 -90.9319 +US 38755 Greenville Mississippi MS Bolivar County 011 33.5351 -91.076 +US 38759 Merigold Mississippi MS Bolivar 011 33.8373 -90.7256 +US 38762 Mound Bayou Mississippi MS Bolivar 011 33.886 -90.7302 +US 38764 Pace Mississippi MS Bolivar 011 33.7257 -90.9273 +US 38769 Rosedale Mississippi MS Bolivar 011 33.8432 -90.9923 +US 38772 Scott Mississippi MS Bolivar 011 33.5629 -91.0391 +US 38773 Shaw Mississippi MS Bolivar 011 33.5874 -90.8143 +US 38774 Shelby Mississippi MS Bolivar 011 33.9491 -90.7625 +US 38781 Winstonville Mississippi MS Bolivar 011 33.8878 -90.7371 +US 38839 Derma Mississippi MS Calhoun 013 33.8562 -89.3032 +US 38878 Vardaman Mississippi MS Calhoun 013 33.919 -89.1921 +US 38913 Banner Mississippi MS Calhoun 013 34.0949 -89.4154 +US 38914 Big Creek Mississippi MS Calhoun 013 33.8514 -89.4378 +US 38915 Bruce Mississippi MS Calhoun 013 34.0066 -89.3484 +US 38916 Calhoun City Mississippi MS Calhoun 013 33.8408 -89.3178 +US 38951 Pittsboro Mississippi MS Calhoun 013 33.9443 -89.3376 +US 38955 Slate Spring Mississippi MS Calhoun 013 33.7439 -89.3753 +US 39751 Mantee Mississippi MS Calhoun 013 33.7052 -89.1051 +US 38912 Avalon Mississippi MS Carroll 015 33.655 -90.054 +US 38917 Carrollton Mississippi MS Carroll 015 33.5208 -89.9506 +US 38923 Coila Mississippi MS Carroll 015 33.3731 -89.9915 +US 38943 Mc Carley Mississippi MS Carroll 015 33.5864 -89.8513 +US 38947 North Carrollton Mississippi MS Carroll 015 33.5324 -89.9001 +US 38954 Sidon Mississippi MS Carroll 015 33.4095 -90.1779 +US 39176 Vaiden Mississippi MS Carroll 015 33.3343 -89.757 +US 38850 Houlka Mississippi MS Chickasaw 017 34.0561 -89.0531 +US 38851 Houston Mississippi MS Chickasaw 017 33.9026 -88.967 +US 38854 Mc Condy Mississippi MS Chickasaw 017 33.9068 -88.9554 +US 38860 Okolona Mississippi MS Chickasaw 017 33.9694 -88.7638 +US 38875 Trebloc Mississippi MS Chickasaw 017 33.9068 -88.9554 +US 38877 Van Vleet Mississippi MS Chickasaw 017 33.9871 -88.8988 +US 39776 Woodland Mississippi MS Chickasaw 017 33.8066 -89.0256 +US 39735 Ackerman Mississippi MS Choctaw 019 33.3517 -89.2014 +US 39745 French Camp Mississippi MS Choctaw 019 33.2898 -89.3999 +US 39757 Reform Mississippi MS Choctaw County 019 33.3672 -89.2104 +US 39772 Weir Mississippi MS Choctaw 019 33.2645 -89.2804 +US 39049 Carlisle Mississippi MS Claiborne County 021 32.1013 -90.7799 +US 39055 Church Hill Mississippi MS Claiborne County 021 31.6786 -91.2149 +US 39086 Hermanville Mississippi MS Claiborne 021 31.9564 -90.8446 +US 39144 Pattison Mississippi MS Claiborne 021 31.851 -90.8283 +US 39150 Port Gibson Mississippi MS Claiborne 021 31.9266 -91.023 +US 39330 Enterprise Mississippi MS Clarke 023 32.1563 -88.8474 +US 39347 Pachuta Mississippi MS Clarke 023 32.0217 -88.8851 +US 39355 Quitman Mississippi MS Clarke 023 32.0668 -88.6788 +US 39360 Shubuta Mississippi MS Clarke 023 31.9607 -88.7168 +US 39363 Stonewall Mississippi MS Clarke 023 32.1564 -88.7748 +US 39741 Cedarbluff Mississippi MS Clay 025 33.6162 -88.8267 +US 39754 Montpelier Mississippi MS Clay 025 33.6593 -88.754 +US 39755 Pheba Mississippi MS Clay 025 33.5961 -88.9518 +US 39773 West Point Mississippi MS Clay 025 33.6265 -88.6823 +US 38614 Clarksdale Mississippi MS Coahoma 027 34.256 -90.6348 +US 38617 Coahoma Mississippi MS Coahoma 027 34.3625 -90.4727 +US 38630 Farrell Mississippi MS Coahoma 027 34.2424 -90.6489 +US 38631 Friars Point Mississippi MS Coahoma 027 34.3741 -90.6061 +US 38639 Jonestown Mississippi MS Coahoma 027 34.3037 -90.4294 +US 38644 Lula Mississippi MS Coahoma 027 34.4618 -90.4981 +US 38645 Lyon Mississippi MS Coahoma 027 34.2474 -90.4981 +US 38662 Rich Mississippi MS Coahoma County 027 34.3929 -90.4893 +US 38669 Sherard Mississippi MS Coahoma 027 34.1953 -90.7335 +US 38739 Dublin Mississippi MS Coahoma 027 34.0604 -90.5011 +US 38758 Mattson Mississippi MS Coahoma 027 34.0768 -90.507 +US 38767 Rena Lara Mississippi MS Coahoma 027 34.1412 -90.7865 +US 39059 Crystal Springs Mississippi MS Copiah 029 31.9933 -90.3744 +US 39077 Gallman Mississippi MS Copiah 029 31.9288 -90.3926 +US 39078 Georgetown Mississippi MS Copiah 029 31.8552 -90.2127 +US 39083 Hazlehurst Mississippi MS Copiah 029 31.8562 -90.4051 +US 39191 Wesson Mississippi MS Copiah 029 31.6901 -90.4131 +US 39119 Mount Olive Mississippi MS Covington 031 31.7346 -89.6724 +US 39428 Collins Mississippi MS Covington 031 31.6707 -89.5438 +US 39479 Seminary Mississippi MS Covington 031 31.5285 -89.4816 +US 38632 Hernando Mississippi MS DeSoto 033 34.8096 -90.0095 +US 38637 Horn Lake Mississippi MS DeSoto 033 34.9519 -90.0507 +US 38641 Lake Cormorant Mississippi MS DeSoto 033 34.8937 -90.1608 +US 38651 Nesbit Mississippi MS DeSoto 033 34.8992 -90.0122 +US 38654 Olive Branch Mississippi MS DeSoto 033 34.9441 -89.8544 +US 38671 Southaven Mississippi MS DeSoto 033 34.9771 -89.9992 +US 38672 Southaven Mississippi MS DeSoto 033 34.9474 -89.9258 +US 38680 Walls Mississippi MS DeSoto 033 34.9641 -90.1208 +US 38686 Walls Mississippi MS DeSoto 033 34.8753 -89.992 +US 39400 Hattiesburg Mississippi MS Forrest County 035 31.3128 -89.3069 +US 39401 Hattiesburg Mississippi MS Forrest 035 31.3146 -89.3065 +US 39402 Hattiesburg Mississippi MS Forrest 035 31.3098 -89.3775 +US 39403 Hattiesburg Mississippi MS Forrest 035 31.3566 -89.3824 +US 39404 Hattiesburg Mississippi MS Forrest 035 31.1721 -89.2948 +US 39406 Hattiesburg Mississippi MS Forrest 035 31.1721 -89.2948 +US 39407 Hattiesburg Mississippi MS Forrest 035 31.1721 -89.2948 +US 39425 Brooklyn Mississippi MS Forrest 035 31.0591 -89.0796 +US 39465 Petal Mississippi MS Forrest 035 31.3472 -89.2222 +US 39630 Bude Mississippi MS Franklin 037 31.4593 -90.8457 +US 39647 Mc Call Creek Mississippi MS Franklin 037 31.4908 -90.7836 +US 39653 Meadville Mississippi MS Franklin 037 31.4285 -90.8578 +US 39661 Roxie Mississippi MS Franklin 037 31.504 -91.0625 +US 39452 Lucedale Mississippi MS George 039 30.8668 -88.649 +US 39362 State Line Mississippi MS Greene 041 31.3916 -88.5171 +US 39451 Leakesville Mississippi MS Greene 041 31.1238 -88.5595 +US 39456 Mc Lain Mississippi MS Greene 041 31.0867 -88.7977 +US 39461 Neely Mississippi MS Greene 041 31.1793 -88.7198 +US 38901 Grenada Mississippi MS Grenada 043 33.7751 -89.8087 +US 38902 Grenada Mississippi MS Grenada 043 33.8241 -89.7947 +US 38926 Elliott Mississippi MS Grenada 043 33.6895 -89.7583 +US 38929 Gore Springs Mississippi MS Grenada 043 33.7245 -89.5754 +US 38940 Holcomb Mississippi MS Grenada 043 33.7551 -90.0333 +US 38960 Tie Plant Mississippi MS Grenada 043 33.7872 -89.8219 +US 39520 Bay Saint Louis Mississippi MS Hancock 045 30.2956 -89.4632 +US 39521 Bay Saint Louis Mississippi MS Hancock 045 30.4032 -89.4982 +US 39522 Stennis Space Center Mississippi MS Hancock 045 30.4032 -89.4982 +US 39525 Diamondhead Mississippi MS Hancock 045 30.3728 -89.3779 +US 39529 Stennis Space Center Mississippi MS Hancock 045 30.4032 -89.4982 +US 39556 Kiln Mississippi MS Hancock 045 30.4875 -89.4187 +US 39558 Lakeshore Mississippi MS Hancock 045 30.2391 -89.4595 +US 39572 Pearlington Mississippi MS Hancock 045 30.2508 -89.6011 +US 39576 Waveland Mississippi MS Hancock 045 30.2914 -89.3837 +US 39500 Gulfport Mississippi MS Harrison County 047 30.3861 -89.0677 +US 39501 Gulfport Mississippi MS Harrison 047 30.3826 -89.0976 +US 39502 Gulfport Mississippi MS Harrison 047 30.4158 -89.0684 +US 39503 Gulfport Mississippi MS Harrison 047 30.4601 -89.0886 +US 39505 Gulfport Mississippi MS Harrison 047 30.4158 -89.0684 +US 39506 Gulfport Mississippi MS Harrison 047 30.4158 -89.0684 +US 39507 Gulfport Mississippi MS Harrison 047 30.3962 -89.0353 +US 39530 Biloxi Mississippi MS Harrison 047 30.4035 -88.8971 +US 39531 Biloxi Mississippi MS Harrison 047 30.4033 -88.9605 +US 39532 Biloxi Mississippi MS Harrison 047 30.511 -88.9681 +US 39533 Biloxi Mississippi MS Harrison 047 30.4158 -89.0684 +US 39534 Biloxi Mississippi MS Harrison 047 30.4067 -88.9211 +US 39535 Biloxi Mississippi MS Harrison 047 30.4158 -89.0684 +US 39540 Diberville Mississippi MS Harrison 047 30.4383 -88.8989 +US 39560 Long Beach Mississippi MS Harrison 047 30.3598 -89.1646 +US 39571 Pass Christian Mississippi MS Harrison 047 30.3989 -89.2843 +US 39574 Saucier Mississippi MS Harrison 047 30.5961 -89.1477 +US 39041 Bolton Mississippi MS Hinds 049 32.3778 -90.4474 +US 39056 Clinton Mississippi MS Hinds 049 32.3411 -90.3229 +US 39058 Clinton Mississippi MS Hinds 049 32.3113 -90.3972 +US 39060 Clinton Mississippi MS Hinds 049 32.3113 -90.3972 +US 39066 Edwards Mississippi MS Hinds 049 32.316 -90.5984 +US 39072 Pocahontas Mississippi MS Hinds 049 32.3113 -90.3972 +US 39154 Raymond Mississippi MS Hinds 049 32.1961 -90.4753 +US 39170 Terry Mississippi MS Hinds 049 32.1147 -90.3241 +US 39174 Tougaloo Mississippi MS Hinds 049 32.3953 -90.1544 +US 39175 Utica Mississippi MS Hinds 049 32.1229 -90.6047 +US 39200 Jackson Mississippi MS Hinds County 049 32.3205 -90.2076 +US 39201 Jackson Mississippi MS Hinds 049 32.2935 -90.1867 +US 39202 Jackson Mississippi MS Hinds 049 32.3149 -90.1782 +US 39203 Jackson Mississippi MS Hinds 049 32.3081 -90.2021 +US 39204 Jackson Mississippi MS Hinds 049 32.2832 -90.2306 +US 39205 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39206 Jackson Mississippi MS Hinds 049 32.37 -90.1738 +US 39207 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39209 Jackson Mississippi MS Hinds 049 32.3184 -90.2446 +US 39210 Jackson Mississippi MS Hinds 049 32.3218 -90.1771 +US 39211 Jackson Mississippi MS Hinds 049 32.3739 -90.1293 +US 39212 Jackson Mississippi MS Hinds 049 32.2435 -90.2612 +US 39213 Jackson Mississippi MS Hinds 049 32.3553 -90.2171 +US 39215 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39216 Jackson Mississippi MS Hinds 049 32.3386 -90.1708 +US 39217 Jackson Mississippi MS Hinds 049 32.2974 -90.2081 +US 39225 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39232 Jackson Mississippi MS Hinds 049 32.3299 -90.0915 +US 39235 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39236 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39250 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39269 Jackson Mississippi MS Hinds 049 32.3003 -90.1886 +US 39271 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39272 Jackson Mississippi MS Hinds 049 32.1888 -90.2595 +US 39272 Byram Mississippi MS Hinds 049 32.1888 -90.2595 +US 39282 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39283 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39284 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39286 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39289 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 39296 Jackson Mississippi MS Hinds 049 32.3113 -90.3972 +US 38924 Cruger Mississippi MS Holmes 051 33.311 -90.2316 +US 39063 Durant Mississippi MS Holmes 051 33.0828 -89.8612 +US 39079 Goodman Mississippi MS Holmes 051 32.9892 -89.9433 +US 39095 Lexington Mississippi MS Holmes 051 33.125 -90.0557 +US 39146 Pickens Mississippi MS Holmes 051 32.8905 -89.9737 +US 39169 Tchula Mississippi MS Holmes 051 33.1624 -90.25 +US 39172 Thornton Mississippi MS Holmes County 051 33.0792 -90.3225 +US 39192 West Mississippi MS Holmes 051 33.1883 -89.7695 +US 38754 Isola Mississippi MS Humphreys 053 33.2471 -90.604 +US 39038 Belzoni Mississippi MS Humphreys 053 33.1842 -90.4924 +US 39097 Louise Mississippi MS Humphreys 053 32.9919 -90.5893 +US 39115 Midnight Mississippi MS Humphreys 053 33.126 -90.5318 +US 39166 Silver City Mississippi MS Humphreys 053 33.0507 -90.4928 +US 38745 Grace Mississippi MS Issaquena 055 32.9775 -90.983 +US 39113 Mayersville Mississippi MS Issaquena 055 32.9013 -91.0286 +US 39177 Valley Park Mississippi MS Issaquena 055 32.6323 -90.8542 +US 38843 Fulton Mississippi MS Itawamba 057 34.2745 -88.3793 +US 38847 Golden Mississippi MS Itawamba 057 34.4812 -88.1842 +US 38855 Mantachie Mississippi MS Itawamba 057 34.3587 -88.496 +US 38858 Nettleton Mississippi MS Itawamba 057 34.0821 -88.6052 +US 38876 Tremont Mississippi MS Itawamba 057 34.2335 -88.2392 +US 39552 Escatawpa Mississippi MS Jackson 059 30.4411 -88.6345 +US 39553 Gautier Mississippi MS Jackson 059 30.398 -88.6412 +US 39555 Hurley Mississippi MS Jackson 059 30.7132 -88.5197 +US 39562 Moss Point Mississippi MS Jackson 059 30.5471 -88.4927 +US 39563 Moss Point Mississippi MS Jackson 059 30.425 -88.5233 +US 39564 Ocean Springs Mississippi MS Jackson 059 30.4404 -88.7801 +US 39565 Ocean Springs Mississippi MS Jackson 059 30.5474 -88.7086 +US 39566 Ocean Springs Mississippi MS Jackson 059 30.4411 -88.6345 +US 39567 Pascagoula Mississippi MS Jackson 059 30.5342 -88.4894 +US 39568 Pascagoula Mississippi MS Jackson 059 30.4411 -88.6345 +US 39569 Pascagoula Mississippi MS Jackson 059 30.4411 -88.6345 +US 39581 Pascagoula Mississippi MS Jackson 059 30.3664 -88.5289 +US 39595 Pascagoula Mississippi MS Jackson 059 30.4411 -88.6345 +US 39338 Louin Mississippi MS Jasper 061 32.0997 -89.2199 +US 39348 Paulding Mississippi MS Jasper 061 32.0167 -89.0584 +US 39356 Rose Hill Mississippi MS Jasper 061 32.1489 -89.0011 +US 39366 Vossburg Mississippi MS Jasper 061 31.9506 -88.9707 +US 39422 Bay Springs Mississippi MS Jasper 061 31.9449 -89.2338 +US 39439 Heidelberg Mississippi MS Jasper 061 31.882 -88.9981 +US 39460 Moss Mississippi MS Jasper 061 32.0132 -89.1166 +US 39481 Stringer Mississippi MS Jasper 061 31.8447 -89.2621 +US 39069 Fayette Mississippi MS Jefferson 063 31.7121 -91.0582 +US 39081 Harriston Mississippi MS Jefferson 063 31.74 -91.0509 +US 39096 Lorman Mississippi MS Jefferson 063 31.8383 -91.0957 +US 39668 Union Church Mississippi MS Jefferson 063 31.7105 -90.8259 +US 39421 Bassfield Mississippi MS Jefferson Davis 065 31.5037 -89.7027 +US 39427 Carson Mississippi MS Jefferson Davis 065 31.4814 -89.8279 +US 39474 Prentiss Mississippi MS Jefferson Davis 065 31.6057 -89.8735 +US 39436 Eastabuchie Mississippi MS Jones 067 31.4555 -89.302 +US 39437 Ellisville Mississippi MS Jones 067 31.5797 -89.2231 +US 39440 Laurel Mississippi MS Jones 067 31.7054 -89.1312 +US 39441 Laurel Mississippi MS Jones 067 31.7277 -89.0755 +US 39442 Laurel Mississippi MS Jones 067 31.6823 -89.0406 +US 39443 Laurel Mississippi MS Jones 067 31.7138 -89.0759 +US 39459 Moselle Mississippi MS Jones 067 31.4836 -89.3206 +US 39477 Sandersville Mississippi MS Jones 067 31.7909 -89.0414 +US 39480 Soso Mississippi MS Jones 067 31.7594 -89.3082 +US 39328 De Kalb Mississippi MS Kemper 069 32.7162 -88.7332 +US 39352 Porterville Mississippi MS Kemper 069 32.6368 -88.4984 +US 39354 Preston Mississippi MS Kemper 069 32.8537 -88.813 +US 39358 Scooba Mississippi MS Kemper 069 32.8402 -88.4883 +US 38601 Abbeville Mississippi MS Lafayette 071 34.4719 -89.4475 +US 38655 Oxford Mississippi MS Lafayette 071 34.3308 -89.4835 +US 38673 Taylor Mississippi MS Lafayette 071 34.2849 -89.6273 +US 38675 Tula Mississippi MS Lafayette 071 34.3582 -89.4839 +US 38677 University Mississippi MS Lafayette 071 34.3396 -89.5736 +US 38685 Waterford Mississippi MS Lafayette 071 34.5476 -89.6129 +US 38874 Toccopola Mississippi MS Lafayette 071 34.2265 -89.2519 +US 38949 Paris Mississippi MS Lafayette 071 34.1992 -89.382 +US 39455 Lumberton Mississippi MS Lamar 073 31.0534 -89.4543 +US 39475 Purvis Mississippi MS Lamar 073 31.1496 -89.4623 +US 39482 Sumrall Mississippi MS Lamar 073 31.36 -89.5777 +US 39301 Meridian Mississippi MS Lauderdale 075 32.3574 -88.656 +US 39302 Meridian Mississippi MS Lauderdale 075 32.432 -88.6419 +US 39303 Meridian Mississippi MS Lauderdale 075 32.4012 -88.6523 +US 39304 Meridian Mississippi MS Lauderdale 075 32.4208 -88.646 +US 39305 Meridian Mississippi MS Lauderdale 075 32.4401 -88.6783 +US 39307 Meridian Mississippi MS Lauderdale 075 32.3736 -88.7436 +US 39309 Meridian Mississippi MS Lauderdale 075 32.5505 -88.6132 +US 39320 Bailey Mississippi MS Lauderdale 075 32.4754 -88.6991 +US 39325 Collinsville Mississippi MS Lauderdale 075 32.5643 -88.875 +US 39326 Daleville Mississippi MS Lauderdale 075 32.5511 -88.6609 +US 39335 Lauderdale Mississippi MS Lauderdale 075 32.5022 -88.4956 +US 39342 Marion Mississippi MS Lauderdale 075 32.4245 -88.6483 +US 39364 Toomsuba Mississippi MS Lauderdale 075 32.4296 -88.4892 +US 39140 Newhebron Mississippi MS Lawrence 077 31.73 -90.0153 +US 39641 Jayess Mississippi MS Lawrence 077 31.4036 -90.1864 +US 39654 Monticello Mississippi MS Lawrence 077 31.5238 -90.128 +US 39656 Oak Vale Mississippi MS Lawrence 077 31.442 -89.9827 +US 39663 Silver Creek Mississippi MS Lawrence 077 31.5755 -90.0173 +US 39665 Sontag Mississippi MS Lawrence 077 31.6453 -90.1801 +US 39051 Carthage Mississippi MS Leake 079 32.7852 -89.5241 +US 39094 Lena Mississippi MS Leake 079 32.6446 -89.5494 +US 39109 Madden Mississippi MS Leake 079 32.6909 -89.3554 +US 39171 Thomastown Mississippi MS Leake 079 32.7539 -89.5241 +US 39189 Walnut Grove Mississippi MS Leake 079 32.6134 -89.4105 +US 38801 Tupelo Mississippi MS Lee 081 34.2538 -88.7209 +US 38802 Tupelo Mississippi MS Lee 081 34.2345 -88.7671 +US 38803 Tupelo Mississippi MS Lee 081 34.1876 -88.7785 +US 38804 Tupelo Mississippi MS Lee 081 34.2823 -88.6715 +US 38824 Baldwyn Mississippi MS Lee 081 34.528 -88.6375 +US 38826 Belden Mississippi MS Lee 081 34.3057 -88.8462 +US 38849 Guntown Mississippi MS Lee 081 34.4563 -88.6975 +US 38857 Mooreville Mississippi MS Lee 081 34.2808 -88.595 +US 38862 Plantersville Mississippi MS Lee 081 34.2011 -88.6335 +US 38866 Saltillo Mississippi MS Lee 081 34.3831 -88.6674 +US 38868 Shannon Mississippi MS Lee 081 34.121 -88.7342 +US 38879 Verona Mississippi MS Lee 081 34.1707 -88.7591 +US 38930 Greenwood Mississippi MS Leflore 083 33.5159 -90.1726 +US 38935 Greenwood Mississippi MS Leflore 083 33.5234 -90.2776 +US 38941 Itta Bena Mississippi MS Leflore 083 33.4798 -90.3394 +US 38944 Minter City Mississippi MS Leflore 083 33.7515 -90.3133 +US 38945 Money Mississippi MS Leflore 083 33.6507 -90.1969 +US 38946 Morgan City Mississippi MS Leflore 083 33.4046 -90.372 +US 38952 Schlater Mississippi MS Leflore 083 33.6244 -90.362 +US 38959 Swiftown Mississippi MS Leflore 083 33.3809 -90.3496 +US 39601 Brookhaven Mississippi MS Lincoln 085 31.5858 -90.452 +US 39602 Brookhaven Mississippi MS Lincoln 085 31.5334 -90.4907 +US 39603 Brookhaven Mississippi MS Lincoln 085 31.6123 -90.4467 +US 39629 Bogue Chitto Mississippi MS Lincoln 085 31.4563 -90.4732 +US 39662 Ruth Mississippi MS Lincoln 085 31.3795 -90.2867 +US 39701 Columbus Mississippi MS Lowndes 087 33.4109 -88.5047 +US 39702 Columbus Mississippi MS Lowndes 087 33.4812 -88.3554 +US 39703 Columbus Mississippi MS Lowndes 087 33.4841 -88.284 +US 39704 Columbus Mississippi MS Lowndes 087 33.5485 -88.3796 +US 39705 Columbus Mississippi MS Lowndes 087 33.5508 -88.4865 +US 39710 Columbus Mississippi MS Lowndes 087 33.5163 -88.4601 +US 39736 Artesia Mississippi MS Lowndes 087 33.4115 -88.6443 +US 39743 Crawford Mississippi MS Lowndes 087 33.3219 -88.5671 +US 39753 Mayhew Mississippi MS Lowndes 087 33.4838 -88.6409 +US 39766 Steens Mississippi MS Lowndes 087 33.5671 -88.3278 +US 39045 Camden Mississippi MS Madison 089 32.7853 -89.8698 +US 39046 Canton Mississippi MS Madison 089 32.6205 -90.0061 +US 39071 Flora Mississippi MS Madison 089 32.5578 -90.3235 +US 39110 Madison Mississippi MS Madison 089 32.4671 -90.1087 +US 39130 Madison Mississippi MS Madison 089 32.6424 -90.0907 +US 39157 Ridgeland Mississippi MS Madison 089 32.4122 -90.1207 +US 39158 Ridgeland Mississippi MS Madison 089 32.6424 -90.0907 +US 39163 Sharon Mississippi MS Madison 089 32.6424 -90.0907 +US 39429 Columbia Mississippi MS Marion 091 31.2559 -89.7998 +US 39478 Sandy Hook Mississippi MS Marion 091 31.0479 -89.8183 +US 39483 Foxworth Mississippi MS Marion 091 31.2473 -89.9311 +US 39643 Kokomo Mississippi MS Marion 091 31.244 -90.0194 +US 38611 Byhalia Mississippi MS Marshall 093 34.8854 -89.6763 +US 38634 Holly Springs Mississippi MS Marshall 093 34.745 -89.485 +US 38635 Holly Springs Mississippi MS Marshall 093 34.7471 -89.4897 +US 38642 Lamar Mississippi MS Marshall 093 34.9271 -89.3163 +US 38649 Mount Pleasant Mississippi MS Marshall 093 34.9536 -89.523 +US 38659 Potts Camp Mississippi MS Marshall 093 34.6047 -89.3151 +US 38661 Red Banks Mississippi MS Marshall 093 34.8937 -89.5649 +US 38679 Victoria Mississippi MS Marshall 093 34.8708 -89.6408 +US 38821 Amory Mississippi MS Monroe 095 33.9844 -88.4709 +US 38825 Becker Mississippi MS Monroe 095 33.8698 -88.4622 +US 38844 Gattman Mississippi MS Monroe 095 33.8742 -88.2588 +US 38848 Greenwood Springs Mississippi MS Monroe 095 33.9401 -88.3207 +US 38870 Smithville Mississippi MS Monroe 095 34.0648 -88.39 +US 39730 Aberdeen Mississippi MS Monroe 095 33.8284 -88.538 +US 39740 Caledonia Mississippi MS Monroe 095 33.6865 -88.3145 +US 39746 Hamilton Mississippi MS Monroe 095 33.8011 -88.4478 +US 39756 Prairie Mississippi MS Monroe 095 33.7836 -88.6642 +US 38925 Duck Hill Mississippi MS Montgomery 097 33.5632 -89.6419 +US 38967 Winona Mississippi MS Montgomery 097 33.4858 -89.7277 +US 39747 Kilmichael Mississippi MS Montgomery 097 33.4165 -89.5696 +US 39767 Stewart Mississippi MS Montgomery 097 33.5101 -89.479 +US 39350 Philadelphia Mississippi MS Neshoba 099 32.7572 -89.1154 +US 39365 Union Mississippi MS Neshoba 099 32.6439 -89.112 +US 39057 Conehatta Mississippi MS Newton 101 32.467 -89.269 +US 39323 Chunky Mississippi MS Newton 101 32.3505 -88.9551 +US 39327 Decatur Mississippi MS Newton 101 32.4358 -89.1168 +US 39332 Hickory Mississippi MS Newton 101 32.32 -89.0093 +US 39336 Lawrence Mississippi MS Newton 101 32.2876 -89.2724 +US 39337 Little Rock Mississippi MS Newton 101 32.5049 -88.9955 +US 39345 Newton Mississippi MS Newton 101 32.3244 -89.184 +US 39341 Macon Mississippi MS Noxubee 103 33.1027 -88.5781 +US 39361 Shuqualak Mississippi MS Noxubee 103 32.9769 -88.5594 +US 39738 Bigbee Valley Mississippi MS Noxubee County 103 33.214 -88.528 +US 39739 Brooksville Mississippi MS Noxubee 103 33.214 -88.5014 +US 39759 Starkville Mississippi MS Oktibbeha 105 33.4255 -88.8791 +US 39760 Starkville Mississippi MS Oktibbeha 105 33.4599 -88.8322 +US 39762 Mississippi State Mississippi MS Oktibbeha 105 33.4156 -88.7433 +US 39769 Sturgis Mississippi MS Oktibbeha 105 33.357 -89.0473 +US 38606 Batesville Mississippi MS Panola 107 34.3317 -89.9142 +US 38619 Como Mississippi MS Panola 107 34.5137 -89.9155 +US 38620 Courtland Mississippi MS Panola 107 34.2596 -89.9396 +US 38621 Crenshaw Mississippi MS Panola 107 34.4491 -90.1701 +US 38657 Pleasant Grove Mississippi MS Panola County 107 34.4576 -90.0915 +US 38658 Pope Mississippi MS Panola 107 34.1906 -90.0027 +US 38665 Sarah Mississippi MS Panola 107 34.591 -90.162 +US 38666 Sardis Mississippi MS Panola 107 34.4276 -89.9221 +US 39426 Carriere Mississippi MS Pearl River 109 30.6178 -89.5779 +US 39457 Mc Neill Mississippi MS Pearl River 109 30.6669 -89.6734 +US 39463 Nicholson Mississippi MS Pearl River 109 30.5637 -89.5578 +US 39466 Picayune Mississippi MS Pearl River 109 30.5418 -89.691 +US 39470 Poplarville Mississippi MS Pearl River 109 30.8524 -89.5648 +US 39423 Beaumont Mississippi MS Perry 111 31.1368 -88.9055 +US 39462 New Augusta Mississippi MS Perry 111 31.1719 -88.9916 +US 39464 Ovett Mississippi MS Perry 111 31.4738 -89.0396 +US 39476 Richton Mississippi MS Perry 111 31.3434 -88.9101 +US 38648 Mineral Wells Mississippi MS Pike County 113 34.7796 -89.8735 +US 39632 Chatawa Mississippi MS Pike 113 31.1145 -90.4875 +US 39635 Fernwood Mississippi MS Pike 113 31.1854 -90.428 +US 39648 Mccomb Mississippi MS Pike 113 31.1769 -90.4016 +US 39649 Mccomb Mississippi MS Pike 113 31.1749 -90.404 +US 39652 Magnolia Mississippi MS Pike 113 31.1217 -90.4831 +US 39657 Osyka Mississippi MS Pike 113 31.0217 -90.479 +US 39666 Summit Mississippi MS Pike 113 31.2975 -90.4654 +US 38820 Algoma Mississippi MS Pontotoc 115 34.1715 -89.0328 +US 38841 Ecru Mississippi MS Pontotoc 115 34.3366 -89.0109 +US 38863 Pontotoc Mississippi MS Pontotoc 115 34.217 -88.9868 +US 38864 Randolph Mississippi MS Pontotoc 115 34.1617 -89.1795 +US 38869 Sherman Mississippi MS Pontotoc 115 34.3575 -88.8351 +US 38871 Thaxton Mississippi MS Pontotoc 115 34.3136 -89.1515 +US 38829 Booneville Mississippi MS Prentiss 117 34.6694 -88.5443 +US 38856 Marietta Mississippi MS Prentiss 117 34.5011 -88.4498 +US 38859 New Site Mississippi MS Prentiss 117 34.5315 -88.3875 +US 38880 Wheeler Mississippi MS Prentiss 117 34.6126 -88.5822 +US 38609 Belen Mississippi MS Quitman 119 34.2351 -90.2927 +US 38622 Crowder Mississippi MS Quitman 119 34.1731 -90.1364 +US 38623 Darling Mississippi MS Quitman 119 34.2916 -90.2927 +US 38628 Falcon Mississippi MS Quitman 119 34.2916 -90.2927 +US 38643 Lambert Mississippi MS Quitman 119 34.1837 -90.263 +US 38646 Marks Mississippi MS Quitman 119 34.2607 -90.2816 +US 38964 Vance Mississippi MS Quitman 119 34.0936 -90.3752 +US 39042 Brandon Mississippi MS Rankin 121 32.3038 -89.964 +US 39043 Brandon Mississippi MS Rankin 121 32.269 -89.9875 +US 39047 Brandon Mississippi MS Rankin 121 32.3886 -89.9584 +US 39073 Florence Mississippi MS Rankin 121 32.153 -90.1217 +US 39145 Pelahatchie Mississippi MS Rankin 121 32.318 -89.7913 +US 39148 Piney Woods Mississippi MS Rankin 121 32.3199 -89.9923 +US 39151 Puckett Mississippi MS Rankin 121 32.1062 -89.7836 +US 39161 Sandhill Mississippi MS Rankin 121 32.4983 -89.8686 +US 39167 Star Mississippi MS Rankin 121 32.0961 -90.0615 +US 39193 Whitfield Mississippi MS Rankin 121 32.2348 -90.0726 +US 39208 Pearl Mississippi MS Rankin 121 32.2604 -90.0897 +US 39208 Jackson Mississippi MS Rankin 121 32.2604 -90.0897 +US 39218 Richland Mississippi MS Rankin 121 32.2287 -90.1591 +US 39218 Jackson Mississippi MS Rankin 121 32.2287 -90.1591 +US 39232 Flowood Mississippi MS Rankin 121 32.3299 -90.0915 +US 39288 Pearl Mississippi MS Rankin 121 32.2338 -90.1235 +US 39288 Jackson Mississippi MS Rankin 121 32.3131 -89.7996 +US 39298 Jackson Mississippi MS Rankin 121 32.3199 -89.9923 +US 39074 Forest Mississippi MS Scott 123 32.347 -89.4672 +US 39080 Harperville Mississippi MS Scott 123 32.4925 -89.4946 +US 39087 Hillsboro Mississippi MS Scott 123 32.4706 -89.5171 +US 39092 Lake Mississippi MS Scott 123 32.3459 -89.3414 +US 39098 Ludlow Mississippi MS Scott 123 32.566 -89.7135 +US 39117 Morton Mississippi MS Scott 123 32.4029 -89.5949 +US 39152 Pulaski Mississippi MS Scott 123 32.2745 -89.5627 +US 39359 Sebastopol Mississippi MS Scott 123 32.5518 -89.3574 +US 38721 Anguilla Mississippi MS Sharkey 125 32.9739 -90.8316 +US 38763 Nitta Yuma Mississippi MS Sharkey 125 32.8798 -90.811 +US 38765 Panther Burn Mississippi MS Sharkey 125 32.8798 -90.811 +US 39054 Cary Mississippi MS Sharkey 125 32.8129 -90.9275 +US 39061 Delta City Mississippi MS Sharkey 125 32.8798 -90.811 +US 39159 Rolling Fork Mississippi MS Sharkey 125 32.8733 -90.8833 +US 39044 Braxton Mississippi MS Simpson 127 32.0016 -89.9672 +US 39062 D Lo Mississippi MS Simpson 127 31.9861 -89.9192 +US 39082 Harrisville Mississippi MS Simpson 127 31.9676 -90.1054 +US 39111 Magee Mississippi MS Simpson 127 31.8495 -89.7503 +US 39112 Sanatorium Mississippi MS Simpson 127 31.8962 -89.7807 +US 39114 Mendenhall Mississippi MS Simpson 127 31.9494 -89.8095 +US 39149 Pinola Mississippi MS Simpson 127 31.8277 -90.0088 +US 39116 Mize Mississippi MS Smith 129 31.8473 -89.5741 +US 39153 Raleigh Mississippi MS Smith 129 32.0508 -89.5088 +US 39168 Taylorsville Mississippi MS Smith 129 31.8394 -89.4049 +US 39561 Mc Henry Mississippi MS Stone 131 30.6975 -89.1536 +US 39573 Perkinston Mississippi MS Stone 131 30.7669 -89.14 +US 39577 Wiggins Mississippi MS Stone 131 30.8609 -89.1324 +US 38736 Doddsville Mississippi MS Sunflower 133 33.63 -90.5264 +US 38737 Drew Mississippi MS Sunflower 133 33.867 -90.5406 +US 38738 Parchman Mississippi MS Sunflower 133 33.6287 -90.6075 +US 38749 Holly Ridge Mississippi MS Sunflower 133 33.6287 -90.6075 +US 38751 Indianola Mississippi MS Sunflower 133 33.4434 -90.6087 +US 38753 Inverness Mississippi MS Sunflower 133 33.349 -90.6051 +US 38761 Moorhead Mississippi MS Sunflower 133 33.4783 -90.5143 +US 38768 Rome Mississippi MS Sunflower 133 33.959 -90.4776 +US 38771 Ruleville Mississippi MS Sunflower 133 33.7241 -90.5527 +US 38775 Skene Mississippi MS Sunflower County 133 33.7495 -90.8328 +US 38778 Sunflower Mississippi MS Sunflower 133 33.5567 -90.5451 +US 38920 Cascilla Mississippi MS Tallahatchie 135 33.9079 -90.0362 +US 38921 Charleston Mississippi MS Tallahatchie 135 33.9726 -90.1116 +US 38927 Enid Mississippi MS Tallahatchie 135 34.1263 -90.0044 +US 38928 Glendora Mississippi MS Tallahatchie 135 33.8573 -90.288 +US 38950 Philipp Mississippi MS Tallahatchie 135 33.7574 -90.2091 +US 38957 Sumner Mississippi MS Tallahatchie 135 33.9833 -90.3895 +US 38958 Swan Lake Mississippi MS Tallahatchie 135 33.9292 -90.1885 +US 38962 Tippo Mississippi MS Tallahatchie 135 33.9292 -90.1885 +US 38963 Tutwiler Mississippi MS Tallahatchie 135 34.0221 -90.3499 +US 38966 Webb Mississippi MS Tallahatchie 135 33.8981 -90.3351 +US 38602 Arkabutla Mississippi MS Tate 137 34.6863 -90.1068 +US 38618 Coldwater Mississippi MS Tate 137 34.6924 -89.9869 +US 38638 Independence Mississippi MS Tate 137 34.6959 -89.8288 +US 38668 Senatobia Mississippi MS Tate 137 34.6323 -89.8855 +US 38610 Blue Mountain Mississippi MS Tippah 139 34.671 -89.0088 +US 38625 Dumas Mississippi MS Tippah 139 34.6491 -88.8072 +US 38629 Falkner Mississippi MS Tippah 139 34.8417 -88.9525 +US 38663 Ripley Mississippi MS Tippah 139 34.7509 -88.924 +US 38674 Tiplersville Mississippi MS Tippah 139 34.9029 -88.9157 +US 38683 Walnut Mississippi MS Tippah 139 34.9527 -88.9053 +US 38827 Belmont Mississippi MS Tishomingo 141 34.5102 -88.2309 +US 38833 Burnsville Mississippi MS Tishomingo 141 34.8579 -88.307 +US 38838 Dennis Mississippi MS Tishomingo 141 34.5497 -88.2117 +US 38852 Iuka Mississippi MS Tishomingo 141 34.8089 -88.1983 +US 38873 Tishomingo Mississippi MS Tishomingo 141 34.6478 -88.2194 +US 38626 Dundee Mississippi MS Tunica 143 34.5357 -90.3693 +US 38664 Robinsonville Mississippi MS Tunica 143 34.8093 -90.3052 +US 38670 Sledge Mississippi MS Tunica 143 34.3823 -90.209 +US 38676 Tunica Mississippi MS Tunica 143 34.6884 -90.3685 +US 38627 Etta Mississippi MS Union 145 34.4352 -89.1767 +US 38650 Myrtle Mississippi MS Union 145 34.5402 -89.1157 +US 38652 New Albany Mississippi MS Union 145 34.4851 -89.0031 +US 38828 Blue Springs Mississippi MS Union 145 34.4273 -88.859 +US 39667 Tylertown Mississippi MS Walthall 147 31.1466 -90.1169 +US 39156 Redwood Mississippi MS Warren 149 32.4867 -90.7859 +US 39180 Vicksburg Mississippi MS Warren 149 32.3258 -90.8507 +US 39181 Vicksburg Mississippi MS Warren 149 32.3486 -90.8642 +US 39182 Vicksburg Mississippi MS Warren 149 32.3486 -90.8642 +US 39183 Vicksburg Mississippi MS Warren 149 32.386 -90.84 +US 38701 Greenville Mississippi MS Washington 151 33.3787 -91.0468 +US 38702 Greenville Mississippi MS Washington 151 33.4258 -90.9946 +US 38703 Greenville Mississippi MS Washington 151 33.4085 -91.0228 +US 38704 Greenville Mississippi MS Washington 151 33.2534 -90.9185 +US 38722 Arcola Mississippi MS Washington 151 33.266 -90.8448 +US 38723 Avon Mississippi MS Washington 151 33.219 -91.0479 +US 38731 Chatham Mississippi MS Washington 151 33.0854 -91.0883 +US 38744 Glen Allan Mississippi MS Washington 151 33.0254 -91.0092 +US 38748 Hollandale Mississippi MS Washington 151 33.149 -90.9041 +US 38756 Leland Mississippi MS Washington 151 33.3985 -90.8839 +US 38760 Metcalfe Mississippi MS Washington 151 33.4546 -90.9943 +US 38776 Stoneville Mississippi MS Washington 151 33.4096 -90.9104 +US 38779 Tribbett Mississippi MS Washington County 151 34.1966 -88.7098 +US 38780 Wayside Mississippi MS Washington 151 33.2727 -90.9954 +US 38782 Winterville Mississippi MS Washington 151 33.2691 -90.9573 +US 39322 Buckatunna Mississippi MS Wayne 153 31.582 -88.548 +US 39324 Clara Mississippi MS Wayne 153 31.5937 -88.7048 +US 39367 Waynesboro Mississippi MS Wayne 153 31.6754 -88.6782 +US 39737 Bellefontaine Mississippi MS Webster 155 33.649 -89.3342 +US 39744 Eupora Mississippi MS Webster 155 33.5494 -89.2904 +US 39750 Maben Mississippi MS Webster 155 33.5686 -89.0605 +US 39752 Mathiston Mississippi MS Webster 155 33.5415 -89.1275 +US 39771 Walthall Mississippi MS Webster 155 33.607 -89.2752 +US 39631 Centreville Mississippi MS Wilkinson 157 31.0893 -91.096 +US 39669 Woodville Mississippi MS Wilkinson 157 31.1459 -91.3076 +US 39339 Louisville Mississippi MS Winston 159 33.1058 -89.0287 +US 39346 Noxapater Mississippi MS Winston 159 32.9789 -89.1221 +US 38922 Coffeeville Mississippi MS Yalobusha 161 33.9215 -89.6782 +US 38948 Oakland Mississippi MS Yalobusha 161 34.0756 -89.8877 +US 38953 Scobey Mississippi MS Yalobusha 161 33.9253 -89.891 +US 38961 Tillatoba Mississippi MS Yalobusha 161 33.9852 -89.8945 +US 38965 Water Valley Mississippi MS Yalobusha 161 34.1525 -89.638 +US 39039 Benton Mississippi MS Yazoo 163 32.8158 -90.2815 +US 39040 Bentonia Mississippi MS Yazoo 163 32.7 -90.3722 +US 39088 Holly Bluff Mississippi MS Yazoo 163 32.8415 -90.7231 +US 39162 Satartia Mississippi MS Yazoo 163 32.6125 -90.5965 +US 39173 Tinsley Mississippi MS Yazoo 163 32.7628 -90.3628 +US 39179 Vaughan Mississippi MS Yazoo 163 32.8015 -90.0981 +US 39194 Yazoo City Mississippi MS Yazoo 163 32.8594 -90.4031 +US 59724 Dell Montana MT Beaverhead 001 45.1498 -112.7007 +US 59725 Dillon Montana MT Beaverhead 001 45.2339 -112.6405 +US 59732 Glen Montana MT Beaverhead 001 45.1498 -112.7007 +US 59736 Jackson Montana MT Beaverhead 001 45.3687 -113.3598 +US 59739 Lima Montana MT Beaverhead 001 44.6441 -112.5625 +US 59746 Polaris Montana MT Beaverhead 001 45.5626 -113.0188 +US 59761 Wisdom Montana MT Beaverhead 001 45.6519 -113.4729 +US 59762 Wise River Montana MT Beaverhead 001 45.7424 -112.9963 +US 59016 Busby Montana MT Big Horn 003 45.5541 -106.8723 +US 59022 Crow Agency Montana MT Big Horn 003 45.6296 -107.4973 +US 59025 Decker Montana MT Big Horn 003 45.1797 -106.8721 +US 59031 Garryowen Montana MT Big Horn 003 45.5187 -107.4817 +US 59034 Hardin Montana MT Big Horn 003 45.7498 -107.6075 +US 59035 Yellowtail Montana MT Big Horn 003 45.3089 -107.9257 +US 59050 Lodge Grass Montana MT Big Horn 003 45.3166 -107.3675 +US 59066 Pryor Montana MT Big Horn 003 45.5187 -107.4817 +US 59075 Saint Xavier Montana MT Big Horn 003 45.3985 -107.8893 +US 59089 Wyola Montana MT Big Horn 003 45.1089 -107.4303 +US 59523 Chinook Montana MT Blaine 005 48.5799 -109.2225 +US 59526 Harlem Montana MT Blaine 005 48.5398 -108.7693 +US 59527 Hays Montana MT Blaine 005 48.3605 -108.8939 +US 59529 Hogeland Montana MT Blaine 005 48.8571 -108.6677 +US 59535 Lloyd Montana MT Blaine 005 47.9647 -109.2671 +US 59542 Turner Montana MT Blaine 005 48.8328 -108.3961 +US 59547 Zurich Montana MT Blaine 005 48.3605 -108.8939 +US 59641 Radersburg Montana MT Broadwater 007 46.2069 -111.6344 +US 59643 Toston Montana MT Broadwater 007 46.1709 -111.5899 +US 59644 Townsend Montana MT Broadwater 007 46.3346 -111.4919 +US 59647 Winston Montana MT Broadwater 007 46.4545 -111.651 +US 59007 Bearcreek Montana MT Carbon 009 45.1523 -109.0447 +US 59008 Belfry Montana MT Carbon 009 45.0498 -109.0788 +US 59013 Boyd Montana MT Carbon 009 45.4101 -109.1365 +US 59014 Bridger Montana MT Carbon 009 45.2857 -108.9082 +US 59026 Edgar Montana MT Carbon 009 45.4443 -108.8487 +US 59029 Fromberg Montana MT Carbon 009 45.4027 -108.9057 +US 59041 Joliet Montana MT Carbon 009 45.4941 -108.9922 +US 59051 Red Lodge Montana MT Carbon County 009 45.2795 -109.4753 +US 59068 Red Lodge Montana MT Carbon 009 45.1965 -109.2688 +US 59070 Roberts Montana MT Carbon 009 45.3672 -109.1769 +US 59071 Roscoe Montana MT Carbon 009 45.268 -109.5658 +US 59080 Joliet Montana MT Carbon County 009 45.5801 -108.8455 +US 59311 Alzada Montana MT Carter 011 45.1562 -104.2617 +US 59316 Boyes Montana MT Carter 011 45.5671 -104.5391 +US 59319 Capitol Montana MT Carter 011 45.5671 -104.5391 +US 59324 Ekalaka Montana MT Carter 011 45.8805 -104.504 +US 59332 Hammond Montana MT Carter 011 45.5671 -104.5391 +US 59401 Great Falls Montana MT Cascade 013 47.5098 -111.2734 +US 59402 Malmstrom A F B Montana MT Cascade 013 47.5102 -111.1959 +US 59403 Great Falls Montana MT Cascade 013 47.2584 -111.342 +US 59404 Great Falls Montana MT Cascade 013 47.5098 -111.3405 +US 59405 Great Falls Montana MT Cascade 013 47.495 -111.2502 +US 59406 Great Falls Montana MT Cascade 013 47.62 -111.2393 +US 59412 Belt Montana MT Cascade 013 47.3821 -110.9081 +US 59414 Black Eagle Montana MT Cascade 013 47.5262 -111.2764 +US 59421 Cascade Montana MT Cascade 013 47.2912 -111.7223 +US 59443 Fort Shaw Montana MT Cascade 013 47.5639 -111.8057 +US 59463 Monarch Montana MT Cascade 013 47.0722 -110.871 +US 59465 Neihart Montana MT Cascade 013 46.9391 -110.7328 +US 59472 Sand Coulee Montana MT Cascade 013 47.4021 -111.1661 +US 59477 Simms Montana MT Cascade 013 47.4958 -111.8861 +US 59480 Stockett Montana MT Cascade 013 47.3217 -111.1287 +US 59483 Sun River Montana MT Cascade 013 47.481 -111.7242 +US 59485 Ulm Montana MT Cascade 013 47.3539 -111.5954 +US 59487 Vaughn Montana MT Cascade 013 47.5624 -111.577 +US 59420 Carter Montana MT Chouteau 015 47.781 -110.9786 +US 59440 Floweree Montana MT Chouteau 015 47.6584 -111.1214 +US 59442 Fort Benton Montana MT Chouteau 015 47.924 -110.6052 +US 59446 Geraldine Montana MT Chouteau 015 47.6024 -110.2765 +US 59450 Highwood Montana MT Chouteau 015 47.5816 -110.7887 +US 59460 Loma Montana MT Chouteau 015 47.9546 -110.4995 +US 59520 Big Sandy Montana MT Chouteau 015 48.1497 -110.0776 +US 59301 Miles City Montana MT Custer 017 46.4075 -105.8332 +US 59336 Ismay Montana MT Custer 017 46.4132 -105.2091 +US 59338 Kinsey Montana MT Custer 017 46.324 -105.4623 +US 59351 Volborg Montana MT Custer 017 46.324 -105.4623 +US 59222 Flaxville Montana MT Daniels 019 48.7472 -105.1637 +US 59253 Peerless Montana MT Daniels 019 48.7808 -105.8006 +US 59263 Scobey Montana MT Daniels 019 48.7854 -105.417 +US 59276 Whitetail Montana MT Daniels 019 48.8956 -105.1617 +US 59259 Richey Montana MT Dawson 021 47.6229 -105.017 +US 59315 Bloomfield Montana MT Dawson 021 47.41 -104.9596 +US 59330 Glendive Montana MT Dawson 021 47.1008 -104.7287 +US 59339 Lindsay Montana MT Dawson 021 47.2024 -105.2089 +US 59711 Anaconda Montana MT Deer Lodge 023 46.1299 -112.9739 +US 59756 Warm Springs Montana MT Deer Lodge 023 46.2183 -112.8117 +US 59313 Baker Montana MT Fallon 025 46.3552 -104.2667 +US 59344 Plevna Montana MT Fallon 025 46.4112 -104.5713 +US 59354 Willard Montana MT Fallon 025 46.1141 -104.4467 +US 59032 Grass Range Montana MT Fergus 027 47.0259 -108.8271 +US 59418 Buffalo Montana MT Fergus 027 47.2485 -109.2631 +US 59424 Coffee Creek Montana MT Fergus 027 47.3467 -110.0908 +US 59430 Denton Montana MT Fergus 027 47.3191 -109.8789 +US 59441 Forestgrove Montana MT Fergus 027 47.2485 -109.2631 +US 59445 Garneill Montana MT Fergus 027 47.0557 -109.4683 +US 59451 Hilger Montana MT Fergus 027 47.2695 -109.4562 +US 59457 Lewistown Montana MT Fergus 027 47.0563 -109.4203 +US 59464 Moore Montana MT Fergus 027 46.9898 -109.6538 +US 59471 Roy Montana MT Fergus 027 47.3678 -108.8634 +US 59489 Winifred Montana MT Fergus 027 47.6408 -109.2364 +US 59901 Kalispell Montana MT Flathead 029 48.2028 -114.3039 +US 59902 Kalispell Montana MT Flathead 029 48.1894 -114.1435 +US 59903 Kalispell Montana MT Flathead 029 48.2237 -114.4296 +US 59904 Kalispell Montana MT Flathead 029 48.2404 -114.2561 +US 59911 Bigfork Montana MT Flathead 029 48.1459 -113.9211 +US 59912 Columbia Falls Montana MT Flathead 029 48.3534 -114.1784 +US 59913 Coram Montana MT Flathead 029 48.4342 -114.0584 +US 59916 Essex Montana MT Flathead 029 48.2809 -113.5285 +US 59919 Hungry Horse Montana MT Flathead 029 48.2793 -113.9105 +US 59920 Kila Montana MT Flathead 029 48.0744 -114.5104 +US 59921 Lake Mc Donald Montana MT Flathead 029 48.2989 -113.9497 +US 59922 Lakeside Montana MT Flathead 029 48.0215 -114.2266 +US 59925 Marion Montana MT Flathead 029 48.0836 -114.7446 +US 59926 Martin City Montana MT Flathead 029 48.363 -114.0066 +US 59927 Olney Montana MT Flathead 029 48.5455 -114.592 +US 59928 Polebridge Montana MT Flathead 029 48.8206 -114.3836 +US 59932 Somers Montana MT Flathead 029 48.0793 -114.2355 +US 59936 West Glacier Montana MT Flathead 029 48.433 -114.0622 +US 59937 Whitefish Montana MT Flathead 029 48.404 -114.3509 +US 59714 Belgrade Montana MT Gallatin 031 45.7801 -111.1439 +US 59715 Bozeman Montana MT Gallatin 031 45.6693 -111.0431 +US 59716 Big Sky Montana MT Gallatin 031 45.2783 -111.2708 +US 59717 Bozeman Montana MT Gallatin 031 45.628 -110.9013 +US 59718 Bozeman Montana MT Gallatin 031 45.6681 -111.2404 +US 59719 Bozeman Montana MT Gallatin 031 45.628 -110.9013 +US 59730 Gallatin Gateway Montana MT Gallatin 031 45.339 -111.2485 +US 59741 Manhattan Montana MT Gallatin 031 45.798 -111.3146 +US 59752 Three Forks Montana MT Gallatin 031 45.8811 -111.5436 +US 59758 West Yellowstone Montana MT Gallatin 031 44.9125 -111.186 +US 59760 Willow Creek Montana MT Gallatin 031 45.7827 -111.6345 +US 59771 Bozeman Montana MT Gallatin 031 45.7246 -111.1238 +US 59772 Bozeman Montana MT Gallatin 031 45.6361 -111.0647 +US 59773 Bozeman Montana MT Gallatin 031 45.628 -110.9013 +US 59852 Niarada Montana MT Gallatin County 031 47.8137 -114.6555 +US 59058 Mosby Montana MT Garfield 033 46.9005 -107.7891 +US 59077 Sand Springs Montana MT Garfield 033 47.4141 -107.0274 +US 59318 Brusett Montana MT Garfield 033 47.3423 -107.5999 +US 59322 Cohagen Montana MT Garfield 033 47.1263 -106.4981 +US 59337 Jordan Montana MT Garfield 033 47.3694 -106.9221 +US 59411 Babb Montana MT Glacier 035 48.8788 -113.3681 +US 59417 Browning Montana MT Glacier 035 48.6491 -112.7936 +US 59427 Cut Bank Montana MT Glacier 035 48.6603 -112.3654 +US 59434 East Glacier Park Montana MT Glacier 035 48.4457 -113.219 +US 59473 Santa Rita Montana MT Glacier 035 48.6542 -113.1263 +US 59046 Lavina Montana MT Golden Valley 037 46.3291 -108.9959 +US 59074 Ryegate Montana MT Golden Valley 037 46.2724 -109.2761 +US 59832 Drummond Montana MT Granite 039 46.6647 -113.2426 +US 59837 Hall Montana MT Granite 039 46.5825 -113.2087 +US 59858 Philipsburg Montana MT Granite 039 46.3189 -113.3126 +US 59501 Havre Montana MT Hill 041 48.5561 -109.688 +US 59521 Box Elder Montana MT Hill 041 48.2841 -109.8205 +US 59525 Gildford Montana MT Hill 041 48.5927 -110.2836 +US 59528 Hingham Montana MT Hill 041 48.587 -110.4275 +US 59530 Inverness Montana MT Hill 041 48.593 -110.688 +US 59532 Kremlin Montana MT Hill 041 48.56 -110.0513 +US 59540 Rudyard Montana MT Hill 041 48.586 -110.5552 +US 59631 Basin Montana MT Jefferson 043 46.3296 -112.1967 +US 59632 Boulder Montana MT Jefferson 043 46.2306 -112.1138 +US 59634 Clancy Montana MT Jefferson 043 46.3887 -112.0716 +US 59638 Jefferson City Montana MT Jefferson 043 46.3679 -112.0232 +US 59721 Cardwell Montana MT Jefferson 043 45.8941 -111.7809 +US 59759 Whitehall Montana MT Jefferson 043 45.8771 -112.1245 +US 59447 Geyser Montana MT Judith Basin 045 47.2598 -110.4839 +US 59452 Hobson Montana MT Judith Basin 045 46.9968 -109.8756 +US 59462 Moccasin Montana MT Judith Basin 045 47.0916 -109.8901 +US 59469 Raynesford Montana MT Judith Basin 045 47.2604 -110.7047 +US 59479 Stanford Montana MT Judith Basin 045 47.1489 -110.1961 +US 59821 Arlee Montana MT Lake 047 47.186 -114.076 +US 59824 Charlo Montana MT Lake 047 47.3124 -114.1761 +US 59855 Pablo Montana MT Lake 047 47.6513 -114.2124 +US 59860 Polson Montana MT Lake 047 47.6876 -114.1404 +US 59863 Ravalli Montana MT Lake 047 47.595 -114.1014 +US 59864 Ronan Montana MT Lake 047 47.5525 -114.1054 +US 59865 Saint Ignatius Montana MT Lake 047 47.33 -114.0758 +US 59910 Big Arm Montana MT Lake 047 47.7952 -114.302 +US 59914 Dayton Montana MT Lake 047 47.8607 -114.2809 +US 59915 Elmo Montana MT Lake 047 47.6966 -114.215 +US 59929 Proctor Montana MT Lake 047 47.9404 -114.3832 +US 59931 Rollins Montana MT Lake 047 47.9182 -114.225 +US 59410 Augusta Montana MT Lewis and Clark 049 47.4537 -112.3883 +US 59601 Helena Montana MT Lewis and Clark 049 46.6131 -112.0213 +US 59602 Helena Montana MT Lewis and Clark 049 46.7074 -111.958 +US 59604 Helena Montana MT Lewis and Clark 049 46.6672 -111.9689 +US 59620 Helena Montana MT Lewis and Clark 049 47.1842 -112.3302 +US 59623 Helena Montana MT Lewis and Clark 049 46.5901 -112.0402 +US 59624 Helena Montana MT Lewis and Clark 049 46.61 -112.0624 +US 59625 Helena Montana MT Lewis and Clark 049 46.6018 -112.0413 +US 59626 Helena Montana MT Lewis and Clark 049 47.1842 -112.3302 +US 59633 Canyon Creek Montana MT Lewis and Clark 049 46.7627 -112.2795 +US 59635 East Helena Montana MT Lewis and Clark 049 46.5973 -111.9051 +US 59636 Fort Harrison Montana MT Lewis and Clark 049 46.6197 -112.1099 +US 59639 Lincoln Montana MT Lewis and Clark 049 46.9575 -112.6651 +US 59640 Marysville Montana MT Lewis and Clark 049 46.7499 -112.2994 +US 59648 Wolf Creek Montana MT Lewis and Clark 049 47.0856 -112.1476 +US 59522 Chester Montana MT Liberty 051 48.4541 -110.9798 +US 59531 Joplin Montana MT Liberty 051 48.6498 -110.7914 +US 59545 Whitlash Montana MT Liberty 051 48.911 -111.1075 +US 59917 Eureka Montana MT Lincoln 053 48.8428 -115.0049 +US 59918 Fortine Montana MT Lincoln 053 48.7586 -114.8809 +US 59923 Libby Montana MT Lincoln 053 48.3773 -115.5391 +US 59930 Rexford Montana MT Lincoln 053 48.9179 -115.2129 +US 59933 Stryker Montana MT Lincoln 053 48.4457 -115.331 +US 59934 Trego Montana MT Lincoln 053 48.4457 -115.331 +US 59935 Troy Montana MT Lincoln 053 48.4791 -115.8817 +US 59214 Brockway Montana MT McCone 055 47.2485 -105.7776 +US 59215 Circle Montana MT McCone 055 47.4264 -105.6148 +US 59274 Vida Montana MT McCone 055 47.8741 -105.5358 +US 59710 Alder Montana MT Madison 057 45.1939 -112.0568 +US 59720 Cameron Montana MT Madison 057 45.139 -111.6508 +US 59729 Ennis Montana MT Madison 057 45.3545 -111.687 +US 59735 Harrison Montana MT Madison 057 45.7423 -111.8461 +US 59740 Mc Allister Montana MT Madison 057 45.408 -111.7761 +US 59745 Norris Montana MT Madison 057 45.5323 -111.6943 +US 59747 Pony Montana MT Madison 057 45.2836 -112.0276 +US 59749 Sheridan Montana MT Madison 057 45.423 -112.1735 +US 59751 Silver Star Montana MT Madison 057 45.7 -112.2535 +US 59754 Twin Bridges Montana MT Madison 057 45.5311 -112.3495 +US 59755 Virginia City Montana MT Madison 057 45.3256 -111.8681 +US 59053 Martinsdale Montana MT Meagher 059 46.4581 -110.4324 +US 59642 Ringling Montana MT Meagher 059 46.6362 -110.9656 +US 59645 White Sulphur Springs Montana MT Meagher 059 46.6332 -111.0506 +US 59820 Alberton Montana MT Mineral 061 46.9806 -114.4921 +US 59830 De Borgia Montana MT Mineral 061 47.3888 -115.3479 +US 59842 Haugan Montana MT Mineral 061 47.4028 -115.5163 +US 59866 Saint Regis Montana MT Mineral 061 47.3369 -115.1703 +US 59867 Saltese Montana MT Mineral 061 47.3997 -115.4224 +US 59872 Superior Montana MT Mineral 061 47.1721 -114.8885 +US 59801 Missoula Montana MT Missoula 063 46.8563 -114.0252 +US 59802 Missoula Montana MT Missoula 063 46.9006 -114.0027 +US 59803 Missoula Montana MT Missoula 063 46.8224 -114.0265 +US 59804 Missoula Montana MT Missoula 063 46.8467 -114.1698 +US 59806 Missoula Montana MT Missoula 063 47.116 -114.0498 +US 59807 Missoula Montana MT Missoula 063 46.9103 -113.9587 +US 59808 Missoula Montana MT Missoula 063 46.9776 -114.0619 +US 59812 Missoula Montana MT Missoula 063 47.116 -114.0498 +US 59823 Bonner Montana MT Missoula 063 46.8702 -113.7279 +US 59825 Clinton Montana MT Missoula 063 46.7673 -113.7038 +US 59826 Condon Montana MT Missoula 063 47.5097 -113.7075 +US 59834 Frenchtown Montana MT Missoula 063 47.0471 -114.2683 +US 59836 Greenough Montana MT Missoula 063 46.9434 -113.427 +US 59846 Huson Montana MT Missoula 063 47.066 -114.4219 +US 59847 Lolo Montana MT Missoula 063 46.7585 -114.1097 +US 59851 Milltown Montana MT Missoula 063 46.8737 -113.8783 +US 59868 Seeley Lake Montana MT Missoula 063 47.1789 -113.481 +US 59054 Melstone Montana MT Musselshell 065 46.5986 -107.8692 +US 59059 Musselshell Montana MT Musselshell 065 46.5171 -108.0031 +US 59072 Roundup Montana MT Musselshell 065 46.4225 -108.5438 +US 59073 Roundup Montana MT Musselshell 065 46.4442 -108.3955 +US 59018 Clyde Park Montana MT Park 067 45.8341 -110.6222 +US 59020 Cooke City Montana MT Park 067 45.0234 -109.907 +US 59027 Emigrant Montana MT Park 067 45.2708 -110.7921 +US 59030 Gardiner Montana MT Park 067 45.0849 -110.5715 +US 59047 Livingston Montana MT Park 067 45.6546 -110.5609 +US 59065 Pray Montana MT Park 067 45.3331 -110.7137 +US 59081 Silver Gate Montana MT Park 067 45.0046 -109.9854 +US 59082 Springdale Montana MT Park 067 45.3333 -110.4774 +US 59086 Wilsall Montana MT Park 067 45.9484 -110.6061 +US 59017 Cat Creek Montana MT Petroleum County 069 47.1866 -108.2994 +US 59084 Teigen Montana MT Petroleum 069 47.1736 -108.2812 +US 59087 Winnett Montana MT Petroleum 069 46.9438 -108.3184 +US 59261 Saco Montana MT Phillips 071 48.6389 -107.4293 +US 59524 Dodson Montana MT Phillips 071 48.395 -108.2465 +US 59537 Loring Montana MT Phillips 071 48.7983 -107.8686 +US 59538 Malta Montana MT Phillips 071 48.3692 -107.8408 +US 59544 Whitewater Montana MT Phillips 071 48.8429 -107.5553 +US 59546 Zortman Montana MT Phillips 071 47.7698 -108.592 +US 59416 Brady Montana MT Pondera 073 48.0312 -111.755 +US 59425 Conrad Montana MT Pondera 073 48.1783 -111.9397 +US 59432 Dupuyer Montana MT Pondera 073 48.1815 -112.5943 +US 59448 Heart Butte Montana MT Pondera 073 48.2777 -112.8456 +US 59456 Ledger Montana MT Pondera 073 48.2643 -111.3886 +US 59486 Valier Montana MT Pondera 073 48.2795 -112.3033 +US 59062 Otter Montana MT Powder River 075 45.0903 -106.1499 +US 59314 Biddle Montana MT Powder River 075 45.3911 -105.6305 +US 59317 Broadus Montana MT Powder River 075 45.2572 -105.2568 +US 59343 Olive Montana MT Powder River 075 45.3911 -105.6305 +US 59345 Powderville Montana MT Powder River 075 45.3911 -105.6305 +US 59348 Sonnette Montana MT Powder River 075 45.3911 -105.6305 +US 59713 Avon Montana MT Powell 077 46.5657 -112.6499 +US 59722 Deer Lodge Montana MT Powell 077 46.3881 -112.7476 +US 59728 Elliston Montana MT Powell 077 46.5034 -112.4007 +US 59731 Garrison Montana MT Powell 077 46.5948 -112.7756 +US 59733 Gold Creek Montana MT Powell 077 46.59 -112.9706 +US 59843 Helmville Montana MT Powell 077 46.83 -112.9413 +US 59854 Ovando Montana MT Powell 077 47.0067 -113.0905 +US 59326 Fallon Montana MT Prairie 079 46.7866 -105.1161 +US 59341 Mildred Montana MT Prairie 079 46.861 -105.3452 +US 59349 Terry Montana MT Prairie 079 46.829 -105.3706 +US 59827 Conner Montana MT Ravalli 081 45.919 -114.059 +US 59828 Corvallis Montana MT Ravalli 081 46.3142 -114.096 +US 59829 Darby Montana MT Ravalli 081 46.028 -114.1938 +US 59833 Florence Montana MT Ravalli 081 46.631 -114.0945 +US 59835 Grantsdale Montana MT Ravalli 081 46.0602 -114.0408 +US 59840 Hamilton Montana MT Ravalli 081 46.2395 -114.1679 +US 59841 Pinesdale Montana MT Ravalli 081 46.3329 -114.2235 +US 59870 Stevensville Montana MT Ravalli 081 46.5267 -114.0478 +US 59871 Sula Montana MT Ravalli 081 45.8433 -113.8748 +US 59875 Victor Montana MT Ravalli 081 46.4005 -114.1665 +US 59217 Crane Montana MT Richland 083 47.711 -104.1836 +US 59221 Fairview Montana MT Richland 083 47.8916 -104.2302 +US 59243 Lambert Montana MT Richland 083 47.7459 -104.5987 +US 59262 Savage Montana MT Richland 083 47.5194 -104.2845 +US 59270 Sidney Montana MT Richland 083 47.713 -104.1634 +US 59201 Wolf Point Montana MT Roosevelt 085 48.1119 -105.6293 +US 59212 Bainville Montana MT Roosevelt 085 48.158 -104.1995 +US 59213 Brockton Montana MT Roosevelt 085 48.2101 -104.8548 +US 59218 Culbertson Montana MT Roosevelt 085 48.1495 -104.5132 +US 59226 Froid Montana MT Roosevelt 085 48.3201 -104.4518 +US 59242 Homestead Montana MT Roosevelt 085 48.435 -104.4389 +US 59245 Mc Cabe Montana MT Roosevelt 085 48.2801 -104.9441 +US 59255 Poplar Montana MT Roosevelt 085 48.1307 -105.187 +US 59003 Ashland Montana MT Rosebud 087 45.5827 -106.2797 +US 59004 Ashland Montana MT Rosebud 087 46.018 -106.992 +US 59012 Birney Montana MT Rosebud 087 45.2862 -106.5095 +US 59039 Ingomar Montana MT Rosebud 087 46.6542 -107.5517 +US 59043 Lame Deer Montana MT Rosebud 087 45.6032 -106.5654 +US 59083 Sumatra Montana MT Rosebud 087 46.018 -106.992 +US 59312 Angela Montana MT Rosebud 087 46.018 -106.992 +US 59323 Colstrip Montana MT Rosebud 087 45.9344 -106.6368 +US 59327 Forsyth Montana MT Rosebud 087 46.2819 -106.6991 +US 59333 Hathaway Montana MT Rosebud 087 46.018 -106.992 +US 59347 Rosebud Montana MT Rosebud 087 46.4352 -106.352 +US 59831 Dixon Montana MT Sanders 089 47.3131 -114.3056 +US 59844 Heron Montana MT Sanders 089 48.0537 -115.9407 +US 59845 Hot Springs Montana MT Sanders 089 47.5914 -114.6597 +US 59848 Lonepine Montana MT Sanders 089 47.7251 -114.657 +US 59853 Noxon Montana MT Sanders 089 48.0768 -115.8582 +US 59856 Paradise Montana MT Sanders 089 47.3878 -114.799 +US 59859 Plains Montana MT Sanders 089 47.4734 -114.893 +US 59873 Thompson Falls Montana MT Sanders 089 47.6016 -115.3602 +US 59874 Trout Creek Montana MT Sanders 089 47.8111 -115.5592 +US 59211 Antelope Montana MT Sheridan 091 48.6968 -104.4529 +US 59219 Dagmar Montana MT Sheridan 091 48.6093 -104.2401 +US 59247 Medicine Lake Montana MT Sheridan 091 48.4852 -104.4375 +US 59252 Outlook Montana MT Sheridan 091 48.8817 -104.7415 +US 59254 Plentywood Montana MT Sheridan 091 48.7788 -104.56 +US 59256 Raymond Montana MT Sheridan 091 48.6946 -104.5524 +US 59257 Redstone Montana MT Sheridan 091 48.728 -104.9402 +US 59258 Reserve Montana MT Sheridan 091 48.5905 -104.6279 +US 59275 Westby Montana MT Sheridan 091 48.8587 -104.1247 +US 59701 Butte Montana MT Silver Bow 093 45.9979 -112.5988 +US 59702 Butte Montana MT Silver Bow 093 45.9053 -112.6377 +US 59703 Butte Montana MT Silver Bow 093 45.9053 -112.6377 +US 59707 Butte Montana MT Silver Bow 093 45.9053 -112.6377 +US 59727 Divide Montana MT Silver Bow 093 45.803 -112.809 +US 59743 Melrose Montana MT Silver Bow 093 45.9053 -112.6377 +US 59748 Ramsay Montana MT Silver Bow 093 46.0288 -112.7589 +US 59750 Butte Montana MT Silver Bow 093 46.0033 -112.7159 +US 59001 Absarokee Montana MT Stillwater 095 45.5154 -109.4692 +US 59019 Columbus Montana MT Stillwater 095 45.6262 -109.2571 +US 59028 Fishtail Montana MT Stillwater 095 45.4002 -109.5821 +US 59057 Molt Montana MT Stillwater 095 45.8615 -108.9731 +US 59061 Nye Montana MT Stillwater 095 45.441 -109.8271 +US 59063 Park City Montana MT Stillwater 095 45.6329 -108.9293 +US 59067 Rapelje Montana MT Stillwater 095 45.9795 -109.2761 +US 59069 Reed Point Montana MT Stillwater 095 45.7439 -109.5224 +US 59011 Big Timber Montana MT Sweet Grass 097 45.8283 -109.9631 +US 59033 Greycliff Montana MT Sweet Grass 097 45.6963 -109.8551 +US 59052 Mc Leod Montana MT Sweet Grass 097 45.5963 -109.9357 +US 59055 Melville Montana MT Sweet Grass 097 46.104 -109.7808 +US 59419 Bynum Montana MT Teton 099 47.99 -112.2762 +US 59422 Choteau Montana MT Teton 099 47.838 -112.2021 +US 59433 Dutton Montana MT Teton 099 47.8601 -111.69 +US 59436 Fairfield Montana MT Teton 099 47.6143 -112.0015 +US 59467 Pendroy Montana MT Teton 099 48.0879 -112.3261 +US 59468 Power Montana MT Teton 099 47.6798 -111.7169 +US 59435 Ethridge Montana MT Toole 101 48.6091 -111.7319 +US 59444 Galata Montana MT Toole 101 48.8111 -111.4704 +US 59454 Kevin Montana MT Toole 101 48.7508 -111.9708 +US 59461 Lothair Montana MT Toole 101 48.6091 -111.7319 +US 59466 Oilmont Montana MT Toole 101 48.8259 -111.6911 +US 59474 Shelby Montana MT Toole 101 48.5037 -111.8391 +US 59482 Sunburst Montana MT Toole 101 48.8516 -111.7442 +US 59484 Sweet Grass Montana MT Toole 101 48.9401 -111.849 +US 59010 Bighorn Montana MT Treasure 103 45.997 -107.31 +US 59038 Hysham Montana MT Treasure 103 46.2765 -107.3072 +US 59076 Sanders Montana MT Treasure 103 46.1763 -107.3388 +US 59223 Fort Peck Montana MT Valley 105 48.0196 -106.447 +US 59225 Frazer Montana MT Valley 105 48.2959 -106.0324 +US 59230 Glasgow Montana MT Valley 105 48.2034 -106.6094 +US 59231 Saint Marie Montana MT Valley 105 48.4039 -106.5428 +US 59240 Glentana Montana MT Valley 105 48.3302 -106.6097 +US 59241 Hinsdale Montana MT Valley 105 48.4007 -107.0098 +US 59244 Larslan Montana MT Valley 105 48.5822 -106.2835 +US 59248 Nashua Montana MT Valley 105 48.2161 -106.3208 +US 59250 Opheim Montana MT Valley 105 48.8702 -106.3658 +US 59260 Richland Montana MT Valley 105 48.6507 -106.1192 +US 59273 Vandalia Montana MT Valley 105 48.3302 -106.6097 +US 59036 Harlowton Montana MT Wheatland 107 46.4477 -109.8435 +US 59078 Shawmut Montana MT Wheatland 107 46.3869 -109.5974 +US 59085 Two Dot Montana MT Wheatland 107 46.4242 -110.0712 +US 59453 Judith Gap Montana MT Wheatland 107 46.6623 -109.6755 +US 59353 Wibaux Montana MT Wibaux 109 46.9646 -104.1897 +US 59002 Acton Montana MT Yellowstone 111 45.9291 -108.6888 +US 59006 Ballantine Montana MT Yellowstone 111 45.9547 -108.1231 +US 59015 Broadview Montana MT Yellowstone 111 46.0821 -108.8091 +US 59024 Custer Montana MT Yellowstone 111 46.1302 -107.5958 +US 59037 Huntley Montana MT Yellowstone 111 45.8905 -108.285 +US 59044 Laurel Montana MT Yellowstone 111 45.6745 -108.769 +US 59064 Pompeys Pillar Montana MT Yellowstone 111 45.9838 -107.9154 +US 59079 Shepherd Montana MT Yellowstone 111 45.9461 -108.3426 +US 59088 Worden Montana MT Yellowstone 111 45.9779 -108.1533 +US 59101 Billings Montana MT Yellowstone 111 45.7745 -108.5005 +US 59102 Billings Montana MT Yellowstone 111 45.7813 -108.5727 +US 59103 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 59104 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 59105 Billings Montana MT Yellowstone 111 45.9497 -108.599 +US 59106 Billings Montana MT Yellowstone 111 45.7753 -108.6519 +US 59107 Billings Montana MT Yellowstone 111 45.8252 -108.3934 +US 59108 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 59111 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 59112 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 59114 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 59115 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 59116 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 59117 Billings Montana MT Yellowstone 111 45.9783 -108.1945 +US 27201 Alamance North Carolina NC Alamance 001 36.0318 -79.4856 +US 27202 Altamahaw North Carolina NC Alamance 001 36.1855 -79.5055 +US 27215 Burlington North Carolina NC Alamance 001 36.0318 -79.4889 +US 27216 Burlington North Carolina NC Alamance 001 36.0475 -79.4797 +US 27217 Burlington North Carolina NC Alamance 001 36.1288 -79.4114 +US 27220 Burlington North Carolina NC Alamance 001 36.0467 -79.3896 +US 27244 Elon College North Carolina NC Alamance 001 36.1466 -79.5023 +US 27253 Graham North Carolina NC Alamance 001 36.031 -79.3814 +US 27258 Haw River North Carolina NC Alamance 001 36.0424 -79.3242 +US 27302 Mebane North Carolina NC Alamance 001 36.0979 -79.2719 +US 27340 Saxapahaw North Carolina NC Alamance 001 35.9488 -79.3297 +US 27349 Snow Camp North Carolina NC Alamance 001 35.9066 -79.4279 +US 27359 Swepsonville North Carolina NC Alamance 001 36.0214 -79.3574 +US 28636 Hiddenite North Carolina NC Alexander 003 35.9504 -81.0487 +US 28678 Stony Point North Carolina NC Alexander 003 35.8661 -81.0641 +US 28681 Taylorsville North Carolina NC Alexander 003 35.901 -81.2124 +US 28623 Ennice North Carolina NC Alleghany 005 36.5253 -80.9771 +US 28627 Glade Valley North Carolina NC Alleghany 005 36.4429 -81.0168 +US 28663 Piney Creek North Carolina NC Alleghany 005 36.5276 -81.3019 +US 28668 Roaring Gap North Carolina NC Alleghany 005 36.3836 -81.0188 +US 28675 Sparta North Carolina NC Alleghany 005 36.5089 -81.1384 +US 28007 Ansonville North Carolina NC Anson 007 35.0219 -80.0852 +US 28091 Lilesville North Carolina NC Anson 007 34.9689 -79.9721 +US 28102 Mc Farlan North Carolina NC Anson 007 34.8136 -79.9776 +US 28119 Morven North Carolina NC Anson 007 34.8511 -80.0025 +US 28133 Peachland North Carolina NC Anson 007 35.0054 -80.2829 +US 28135 Polkton North Carolina NC Anson 007 34.9823 -80.1538 +US 28170 Wadesboro North Carolina NC Anson 007 34.9809 -80.0696 +US 28615 Creston North Carolina NC Ashe 009 36.45 -81.6506 +US 28617 Crumpler North Carolina NC Ashe 009 36.4641 -81.4039 +US 28626 Fleetwood North Carolina NC Ashe 009 36.2814 -81.514 +US 28629 Glendale Springs North Carolina NC Ashe 009 36.3405 -81.3653 +US 28631 Grassy Creek North Carolina NC Ashe 009 36.5415 -81.4468 +US 28640 Jefferson North Carolina NC Ashe 009 36.409 -81.4396 +US 28643 Lansing North Carolina NC Ashe 009 36.5176 -81.5269 +US 28644 Laurel Springs North Carolina NC Ashe 009 36.4449 -81.2606 +US 28672 Scottville North Carolina NC Ashe 009 36.4833 -81.3276 +US 28684 Todd North Carolina NC Ashe 009 36.3245 -81.5874 +US 28693 Warrensville North Carolina NC Ashe 009 36.4572 -81.5465 +US 28694 West Jefferson North Carolina NC Ashe 009 36.3776 -81.4872 +US 28604 Banner Elk North Carolina NC Avery 011 36.1705 -81.8412 +US 28614 Cranberry North Carolina NC Avery County 011 36.1429 -81.9671 +US 28616 Crossnore North Carolina NC Avery 011 36.0591 -81.8892 +US 28622 Elk Park North Carolina NC Avery 011 36.1646 -81.9639 +US 28646 Linville North Carolina NC Avery 011 36.041 -81.9177 +US 28652 Minneapolis North Carolina NC Avery 011 36.0865 -81.9343 +US 28653 Montezuma North Carolina NC Avery 011 36.0651 -81.9017 +US 28657 Newland North Carolina NC Avery 011 36.059 -81.9303 +US 28662 Pineola North Carolina NC Avery 011 36.0856 -81.876 +US 28664 Plumtree North Carolina NC Avery 011 36.0441 -82.0037 +US 27806 Aurora North Carolina NC Beaufort 013 35.3023 -76.7994 +US 27808 Bath North Carolina NC Beaufort 013 35.4702 -76.7715 +US 27810 Belhaven North Carolina NC Beaufort 013 35.4458 -76.6391 +US 27814 Blounts Creek North Carolina NC Beaufort 013 35.382 -76.925 +US 27817 Chocowinity North Carolina NC Beaufort 013 35.4814 -77.0868 +US 27821 Edward North Carolina NC Beaufort 013 35.3236 -76.8794 +US 27860 Pantego North Carolina NC Beaufort 013 35.6201 -76.6988 +US 27865 Pinetown North Carolina NC Beaufort 013 35.5758 -76.8076 +US 27889 Washington North Carolina NC Beaufort 013 35.5884 -77.1404 +US 27805 Aulander North Carolina NC Bertie 015 36.1475 -77.1141 +US 27847 Kelford North Carolina NC Bertie 015 36.1871 -77.1898 +US 27849 Lewiston Woodville North Carolina NC Bertie 015 36.0933 -77.1439 +US 27872 Roxobel North Carolina NC Bertie 015 36.195 -77.2602 +US 27924 Colerain North Carolina NC Bertie 015 36.1901 -76.8548 +US 27957 Merry Hill North Carolina NC Bertie 015 36.0871 -76.7776 +US 27967 Powellsville North Carolina NC Bertie 015 36.1647 -76.9672 +US 27983 Windsor North Carolina NC Bertie 015 36.0159 -76.9336 +US 28320 Bladenboro North Carolina NC Bladen 017 34.5658 -78.7793 +US 28324 Butters North Carolina NC Bladen County 017 34.5601 -78.8485 +US 28332 Dublin North Carolina NC Bladen 017 34.6437 -78.7374 +US 28337 Elizabethtown North Carolina NC Bladen 017 34.6471 -78.5747 +US 28392 Tar Heel North Carolina NC Bladen 017 34.7465 -78.8134 +US 28399 White Oak North Carolina NC Bladen 017 34.7662 -78.7301 +US 28433 Clarkton North Carolina NC Bladen 017 34.503 -78.6313 +US 28434 Council North Carolina NC Bladen 017 34.429 -78.4115 +US 28448 Kelly North Carolina NC Bladen 017 34.4591 -78.2942 +US 28404 Wilmington North Carolina NC Brunswick 019 33.9263 -78.0713 +US 28420 Ash North Carolina NC Brunswick 019 34.0659 -78.5056 +US 28422 Bolivia North Carolina NC Brunswick 019 34.026 -78.1681 +US 28451 Leland North Carolina NC Brunswick 019 34.268 -78.0578 +US 28452 Longwood North Carolina NC Brunswick 019 33.9973 -78.5541 +US 28459 Shallotte North Carolina NC Brunswick 019 33.9334 -78.4129 +US 28461 Southport North Carolina NC Brunswick 019 33.9654 -78.0359 +US 28462 Supply North Carolina NC Brunswick 019 34.0231 -78.2884 +US 28465 Oak Island North Carolina NC Brunswick 019 33.9161 -78.1255 +US 28467 Calabash North Carolina NC Brunswick 019 33.9047 -78.5744 +US 28468 Sunset Beach North Carolina NC Brunswick 019 33.8836 -78.52 +US 28469 Ocean Isle Beach North Carolina NC Brunswick 019 33.8913 -78.4298 +US 28470 Shallotte North Carolina NC Brunswick 019 33.9637 -78.4064 +US 28470 South Brunswick North Carolina NC Brunswick 019 33.9637 -78.4064 +US 28479 Winnabow North Carolina NC Brunswick 019 34.1553 -78.0558 +US 28648 Longisland North Carolina NC Buncombe County 021 35.6658 -80.9904 +US 28701 Alexander North Carolina NC Buncombe 021 35.7064 -82.6311 +US 28704 Arden North Carolina NC Buncombe 021 35.4637 -82.5354 +US 28709 Barnardsville North Carolina NC Buncombe 021 35.7748 -82.4567 +US 28711 Black Mountain North Carolina NC Buncombe 021 35.5986 -82.2902 +US 28715 Candler North Carolina NC Buncombe 021 35.5376 -82.7001 +US 28728 Enka North Carolina NC Buncombe 021 35.4988 -82.708 +US 28730 Fairview North Carolina NC Buncombe 021 35.5258 -82.3985 +US 28748 Leicester North Carolina NC Buncombe 021 35.6498 -82.7106 +US 28757 Montreat North Carolina NC Buncombe 021 35.6415 -82.3156 +US 28759 Mills River North Carolina NC Buncombe County 021 35.3906 -82.568 +US 28770 Ridgecrest North Carolina NC Buncombe 021 35.6186 -82.3005 +US 28776 Skyland North Carolina NC Buncombe 021 35.4835 -82.5207 +US 28778 Swannanoa North Carolina NC Buncombe 021 35.6172 -82.407 +US 28787 Weaverville North Carolina NC Buncombe 021 35.7126 -82.5491 +US 28801 Asheville North Carolina NC Buncombe 021 35.5971 -82.5565 +US 28802 Asheville North Carolina NC Buncombe 021 35.6237 -82.6671 +US 28803 Asheville North Carolina NC Buncombe 021 35.5393 -82.518 +US 28804 Asheville North Carolina NC Buncombe 021 35.6374 -82.5646 +US 28805 Asheville North Carolina NC Buncombe 021 35.6004 -82.4918 +US 28806 Asheville North Carolina NC Buncombe 021 35.5808 -82.6078 +US 28810 Asheville North Carolina NC Buncombe 021 35.6203 -82.5286 +US 28813 Asheville North Carolina NC Buncombe 021 35.5004 -82.5026 +US 28814 Asheville North Carolina NC Buncombe 021 35.6648 -82.4927 +US 28815 Asheville North Carolina NC Buncombe 021 35.6203 -82.5286 +US 28816 Asheville North Carolina NC Buncombe 021 35.6203 -82.5286 +US 28612 Connellys Springs North Carolina NC Burke 023 35.6895 -81.5387 +US 28619 Drexel North Carolina NC Burke 023 35.7179 -81.6406 +US 28628 Glen Alpine North Carolina NC Burke 023 35.7212 -81.818 +US 28637 Hildebran North Carolina NC Burke 023 35.718 -81.4194 +US 28641 Jonas Ridge North Carolina NC Burke 023 35.9384 -81.8845 +US 28647 Linville Falls North Carolina NC Burke 023 35.7792 -81.6755 +US 28655 Morganton North Carolina NC Burke 023 35.7346 -81.7042 +US 28666 Icard North Carolina NC Burke 023 35.73 -81.4954 +US 28671 Rutherford College North Carolina NC Burke 023 35.7486 -81.5637 +US 28680 Morganton North Carolina NC Burke 023 35.7507 -81.6953 +US 28690 Valdese North Carolina NC Burke 023 35.7447 -81.567 +US 28025 Concord North Carolina NC Cabarrus 025 35.3716 -80.53 +US 28026 Concord North Carolina NC Cabarrus 025 35.3463 -80.5411 +US 28027 Concord North Carolina NC Cabarrus 025 35.4141 -80.6162 +US 28075 Harrisburg North Carolina NC Cabarrus 025 35.3247 -80.6594 +US 28081 Kannapolis North Carolina NC Cabarrus 025 35.502 -80.6359 +US 28082 Kannapolis North Carolina NC Cabarrus 025 35.3463 -80.5411 +US 28083 Kannapolis North Carolina NC Cabarrus 025 35.4848 -80.6015 +US 28107 Midland North Carolina NC Cabarrus 025 35.2477 -80.5319 +US 28124 Mount Pleasant North Carolina NC Cabarrus 025 35.4146 -80.4171 +US 28611 Collettsville North Carolina NC Caldwell 027 35.9946 -81.7266 +US 28630 Granite Falls North Carolina NC Caldwell 027 35.8197 -81.4571 +US 28633 Lenoir North Carolina NC Caldwell 027 35.9376 -81.5398 +US 28638 Hudson North Carolina NC Caldwell 027 35.8403 -81.4897 +US 28645 Lenoir North Carolina NC Caldwell 027 35.9149 -81.5398 +US 28661 Patterson North Carolina NC Caldwell 027 35.9973 -81.5626 +US 28667 Rhodhiss North Carolina NC Caldwell 027 35.7772 -81.4302 +US 27921 Camden North Carolina NC Camden 029 36.325 -76.15 +US 27974 Shiloh North Carolina NC Camden 029 36.2584 -76.0432 +US 27976 South Mills North Carolina NC Camden 029 36.4536 -76.3033 +US 28511 Atlantic North Carolina NC Carteret 031 34.8888 -76.3521 +US 28512 Atlantic Beach North Carolina NC Carteret 031 34.7417 -76.7555 +US 28516 Beaufort North Carolina NC Carteret 031 34.758 -76.6228 +US 28520 Cedar Island North Carolina NC Carteret 031 34.8739 -76.5871 +US 28524 Davis North Carolina NC Carteret 031 34.8739 -76.5871 +US 28528 Gloucester North Carolina NC Carteret 031 34.7344 -76.5394 +US 28531 Harkers Island North Carolina NC Carteret 031 34.6966 -76.5583 +US 28553 Marshallberg North Carolina NC Carteret 031 34.7265 -76.5173 +US 28557 Morehead City North Carolina NC Carteret 031 34.7253 -76.7531 +US 28570 Newport North Carolina NC Carteret 031 34.7551 -76.9069 +US 28575 Salter Path North Carolina NC Carteret 031 34.8739 -76.5871 +US 28577 Sealevel North Carolina NC Carteret 031 34.8769 -76.3898 +US 28579 Smyrna North Carolina NC Carteret 031 34.8739 -76.5871 +US 28581 Stacy North Carolina NC Carteret 031 34.8412 -76.4289 +US 28582 Stella North Carolina NC Carteret 031 34.7777 -77.1308 +US 28589 Williston North Carolina NC Carteret 031 34.8739 -76.5871 +US 28594 Emerald Isle North Carolina NC Carteret 031 34.6662 -77.026 +US 27212 Blanch North Carolina NC Caswell 033 36.4664 -79.2755 +US 27291 Leasburg North Carolina NC Caswell 033 36.4151 -79.1942 +US 27305 Milton North Carolina NC Caswell 033 36.5158 -79.2087 +US 27311 Pelham North Carolina NC Caswell 033 36.4899 -79.4736 +US 27314 Prospect Hill North Carolina NC Caswell 033 36.2932 -79.2156 +US 27315 Providence North Carolina NC Caswell 033 36.4873 -79.4041 +US 27379 Yanceyville North Carolina NC Caswell 033 36.3907 -79.3465 +US 28601 Hickory North Carolina NC Catawba 035 35.7576 -81.3289 +US 28602 Hickory North Carolina NC Catawba 035 35.6884 -81.3612 +US 28603 Hickory North Carolina NC Catawba 035 35.6799 -81.2872 +US 28609 Catawba North Carolina NC Catawba 035 35.6757 -81.0503 +US 28610 Claremont North Carolina NC Catawba 035 35.7211 -81.1297 +US 28613 Conover North Carolina NC Catawba 035 35.7313 -81.2165 +US 28650 Maiden North Carolina NC Catawba 035 35.5759 -81.1745 +US 28658 Newton North Carolina NC Catawba 035 35.6498 -81.2425 +US 28673 Sherrills Ford North Carolina NC Catawba 035 35.5962 -81.0339 +US 28682 Terrell North Carolina NC Catawba 035 35.5836 -80.9631 +US 27207 Bear Creek North Carolina NC Chatham 037 35.6129 -79.3726 +US 27208 Bennett North Carolina NC Chatham 037 35.5673 -79.5225 +US 27213 Bonlee North Carolina NC Chatham 037 35.6482 -79.4149 +US 27228 Bynum North Carolina NC Chatham 037 35.7835 -79.1298 +US 27252 Goldston North Carolina NC Chatham 037 35.5643 -79.3385 +US 27256 Gulf North Carolina NC Chatham 037 35.5627 -79.3386 +US 27312 Pittsboro North Carolina NC Chatham 037 35.7694 -79.1755 +US 27344 Siler City North Carolina NC Chatham 037 35.7354 -79.4566 +US 27559 Moncure North Carolina NC Chatham 037 35.6306 -79.0839 +US 28781 Topton North Carolina NC Cherokee 039 35.2151 -83.6461 +US 28901 Andrews North Carolina NC Cherokee 039 35.1959 -83.8228 +US 28903 Culberson North Carolina NC Cherokee 039 35.0944 -84.0359 +US 28905 Marble North Carolina NC Cherokee 039 35.1475 -83.9381 +US 28906 Murphy North Carolina NC Cherokee 039 35.1312 -84.0388 +US 27932 Edenton North Carolina NC Chowan 041 36.0908 -76.6224 +US 27980 Tyner North Carolina NC Chowan 041 36.2502 -76.6428 +US 28902 Brasstown North Carolina NC Clay 043 35.0261 -83.9567 +US 28904 Hayesville North Carolina NC Clay 043 35.0417 -83.7867 +US 28909 Warne North Carolina NC Clay 043 35.0024 -83.9045 +US 28017 Boiling Springs North Carolina NC Cleveland 045 35.2549 -81.6914 +US 28020 Casar North Carolina NC Cleveland 045 35.5145 -81.6357 +US 28038 Earl North Carolina NC Cleveland 045 35.197 -81.5386 +US 28042 Fallston North Carolina NC Cleveland 045 35.3739 -81.5437 +US 28073 Grover North Carolina NC Cleveland 045 35.1836 -81.4552 +US 28086 Kings Mountain North Carolina NC Cleveland 045 35.2516 -81.3806 +US 28089 Lattimore North Carolina NC Cleveland 045 35.3087 -81.6617 +US 28090 Lawndale North Carolina NC Cleveland 045 35.4449 -81.5336 +US 28114 Mooresboro North Carolina NC Cleveland 045 35.2295 -81.7492 +US 28136 Polkville North Carolina NC Cleveland 045 35.3961 -81.6303 +US 28150 Shelby North Carolina NC Cleveland 045 35.312 -81.5568 +US 28151 Shelby North Carolina NC Cleveland 045 35.2331 -81.5747 +US 28152 Shelby North Carolina NC Cleveland 045 35.2689 -81.5337 +US 28169 Waco North Carolina NC Cleveland 045 35.3529 -81.4251 +US 28423 Bolton North Carolina NC Columbus 047 34.3091 -78.3372 +US 28424 Brunswick North Carolina NC Columbus 047 34.2907 -78.6994 +US 28430 Cerro Gordo North Carolina NC Columbus 047 34.3025 -78.9216 +US 28431 Chadbourn North Carolina NC Columbus 047 34.3223 -78.8267 +US 28432 Clarendon North Carolina NC Columbus 047 34.1761 -78.7637 +US 28436 Delco North Carolina NC Columbus 047 34.2838 -78.2607 +US 28438 Evergreen North Carolina NC Columbus 047 34.4204 -78.8947 +US 28439 Fair Bluff North Carolina NC Columbus 047 34.3023 -79.0175 +US 28442 Hallsboro North Carolina NC Columbus 047 34.3181 -78.6043 +US 28450 Lake Waccamaw North Carolina NC Columbus 047 34.3394 -78.5102 +US 28455 Nakina North Carolina NC Columbus 047 34.1153 -78.657 +US 28456 Riegelwood North Carolina NC Columbus 047 34.3471 -78.2575 +US 28463 Tabor City North Carolina NC Columbus 047 34.1233 -78.8232 +US 28472 Whiteville North Carolina NC Columbus 047 34.3241 -78.716 +US 28519 Bridgeton North Carolina NC Craven 049 35.1295 -77.02 +US 28523 Cove City North Carolina NC Craven 049 35.2023 -77.2963 +US 28526 Dover North Carolina NC Craven 049 35.2554 -77.3646 +US 28527 Ernul North Carolina NC Craven 049 35.2547 -77.0502 +US 28532 Havelock North Carolina NC Craven 049 34.8968 -76.89 +US 28533 Cherry Point North Carolina NC Craven 049 34.9038 -76.9 +US 28560 New Bern North Carolina NC Craven 049 35.1204 -76.9842 +US 28561 New Bern North Carolina NC Craven 049 35.1037 -77.0759 +US 28562 New Bern North Carolina NC Craven 049 35.1004 -77.1029 +US 28563 New Bern North Carolina NC Craven 049 35.1109 -77.0634 +US 28564 New Bern North Carolina NC Craven 049 35.1109 -77.0634 +US 28586 Vanceboro North Carolina NC Craven 049 35.3063 -77.1716 +US 28301 Fayetteville North Carolina NC Cumberland 051 35.0743 -78.8836 +US 28302 Fayetteville North Carolina NC Cumberland 051 35.0343 -78.9088 +US 28303 Fayetteville North Carolina NC Cumberland 051 35.0742 -78.965 +US 28304 Fayetteville North Carolina NC Cumberland 051 35.0257 -78.9705 +US 28305 Fayetteville North Carolina NC Cumberland 051 35.056 -78.9047 +US 28306 Fayetteville North Carolina NC Cumberland 051 35.0019 -78.9364 +US 28307 Fort Bragg North Carolina NC Cumberland 051 35.1416 -79.0025 +US 28308 Pope A F B North Carolina NC Cumberland 051 35.1734 -79.0138 +US 28309 Fayetteville North Carolina NC Cumberland 051 35.0397 -78.8429 +US 28310 Fort Bragg North Carolina NC Cumberland 051 35.0506 -78.8038 +US 28311 Fayetteville North Carolina NC Cumberland 051 35.1294 -78.8982 +US 28312 Fayetteville North Carolina NC Cumberland County 051 34.9549 -78.7408 +US 28314 Fayetteville North Carolina NC Cumberland 051 35.0583 -79.008 +US 28331 Cumberland North Carolina NC Cumberland 051 35.1509 -78.9158 +US 28342 Falcon North Carolina NC Cumberland 051 35.2106 -78.6496 +US 28344 Godwin North Carolina NC Cumberland 051 35.1969 -78.6625 +US 28348 Hope Mills North Carolina NC Cumberland 051 34.9536 -78.9354 +US 28356 Linden North Carolina NC Cumberland 051 35.2276 -78.8004 +US 28390 Spring Lake North Carolina NC Cumberland 051 35.183 -78.9786 +US 28391 Stedman North Carolina NC Cumberland 051 35.0347 -78.6949 +US 28395 Wade North Carolina NC Cumberland 051 35.1606 -78.7249 +US 27916 Aydlett North Carolina NC Currituck 053 36.3045 -75.9029 +US 27917 Barco North Carolina NC Currituck 053 36.3588 -75.9793 +US 27923 Coinjock North Carolina NC Currituck 053 36.3751 -75.934 +US 27927 Corolla North Carolina NC Currituck 053 36.3206 -75.8132 +US 27929 Currituck North Carolina NC Currituck 053 36.4398 -76.0055 +US 27939 Grandy North Carolina NC Currituck 053 36.2339 -75.8768 +US 27941 Harbinger North Carolina NC Currituck 053 36.1025 -75.8169 +US 27947 Jarvisburg North Carolina NC Currituck 053 36.1714 -75.8621 +US 27950 Knotts Island North Carolina NC Currituck 053 36.5232 -75.9702 +US 27956 Maple North Carolina NC Currituck 053 36.3987 -76.0039 +US 27958 Moyock North Carolina NC Currituck 053 36.4871 -76.1146 +US 27964 Point Harbor North Carolina NC Currituck 053 36.0781 -75.7983 +US 27965 Poplar Branch North Carolina NC Currituck 053 36.2737 -75.9097 +US 27966 Powells Point North Carolina NC Currituck 053 36.1207 -75.8273 +US 27973 Shawboro North Carolina NC Currituck 053 36.3779 -76.0945 +US 27848 Lasker North Carolina NC Dare County 055 36.3739 -77.3471 +US 27915 Avon North Carolina NC Dare 055 35.7765 -75.6358 +US 27920 Buxton North Carolina NC Dare 055 35.2525 -75.5722 +US 27936 Frisco North Carolina NC Dare 055 35.2338 -75.6145 +US 27943 Hatteras North Carolina NC Dare 055 35.6928 -75.7138 +US 27948 Kill Devil Hills North Carolina NC Dare 055 36.0088 -75.6757 +US 27949 Kitty Hawk North Carolina NC Dare 055 36.0837 -75.6966 +US 27953 Manns Harbor North Carolina NC Dare 055 35.8238 -75.8467 +US 27954 Manteo North Carolina NC Dare 055 35.8948 -75.6714 +US 27959 Nags Head North Carolina NC Dare 055 35.8865 -75.6038 +US 27968 Rodanthe North Carolina NC Dare 055 35.6928 -75.7138 +US 27972 Salvo North Carolina NC Dare 055 35.5546 -75.4693 +US 27978 Stumpy Point North Carolina NC Dare 055 35.6985 -75.7728 +US 27981 Wanchese North Carolina NC Dare 055 35.8622 -75.6437 +US 27982 Waves North Carolina NC Dare 055 35.565 -75.4663 +US 27239 Denton North Carolina NC Davidson 057 35.6196 -80.0959 +US 27292 Lexington North Carolina NC Davidson 057 35.8231 -80.262 +US 27293 Lexington North Carolina NC Davidson 057 35.8829 -80.276 +US 27294 Lexington North Carolina NC Davidson 057 35.8829 -80.276 +US 27295 Lexington North Carolina NC Davidson 057 35.8684 -80.315 +US 27299 Linwood North Carolina NC Davidson 057 35.7562 -80.3749 +US 27351 Southmont North Carolina NC Davidson 057 35.6605 -80.2836 +US 27360 Thomasville North Carolina NC Davidson 057 35.8713 -80.0913 +US 27361 Thomasville North Carolina NC Davidson 057 35.8829 -80.276 +US 27373 Wallburg North Carolina NC Davidson 057 35.8829 -80.276 +US 27374 Welcome North Carolina NC Davidson 057 35.7818 -80.2035 +US 27006 Advance North Carolina NC Davie 059 36.0065 -80.4463 +US 27014 Cooleemee North Carolina NC Davie 059 35.8192 -80.5483 +US 27028 Mocksville North Carolina NC Davie 059 35.922 -80.537 +US 28325 Calypso North Carolina NC Duplin 061 35.1419 -78.0992 +US 28341 Faison North Carolina NC Duplin 061 35.1199 -78.118 +US 28349 Kenansville North Carolina NC Duplin 061 35.0152 -77.8969 +US 28398 Warsaw North Carolina NC Duplin 061 35.018 -78.031 +US 28453 Magnolia North Carolina NC Duplin 061 34.8957 -78.0432 +US 28458 Rose Hill North Carolina NC Duplin 061 34.8235 -78.0166 +US 28464 Teachey North Carolina NC Duplin 061 34.77 -78.0221 +US 28466 Wallace North Carolina NC Duplin 061 34.7542 -77.9429 +US 28508 Albertson North Carolina NC Duplin 061 35.1176 -77.8515 +US 28518 Beulaville North Carolina NC Duplin 061 34.934 -77.7697 +US 28521 Chinquapin North Carolina NC Duplin 061 34.8276 -77.7636 +US 27503 Bahama North Carolina NC Durham 063 36.1566 -78.8903 +US 27572 Rougemont North Carolina NC Durham 063 36.2393 -78.9019 +US 27701 Durham North Carolina NC Durham 063 35.9967 -78.8966 +US 27702 Durham North Carolina NC Durham 063 36.0512 -78.8577 +US 27703 Durham North Carolina NC Durham 063 35.9781 -78.8439 +US 27704 Durham North Carolina NC Durham 063 36.0383 -78.8764 +US 27705 Durham North Carolina NC Durham 063 36.0218 -78.9478 +US 27706 Durham North Carolina NC Durham 063 35.997 -78.9422 +US 27707 Durham North Carolina NC Durham 063 35.9631 -78.9315 +US 27708 Durham North Carolina NC Durham 063 36.0287 -78.924 +US 27709 Durham North Carolina NC Durham 063 36.0512 -78.8577 +US 27710 Durham North Carolina NC Durham 063 36.0512 -78.8577 +US 27711 Durham North Carolina NC Durham 063 36.0512 -78.8577 +US 27712 Durham North Carolina NC Durham 063 36.0918 -78.9299 +US 27713 Durham North Carolina NC Durham 063 35.9112 -78.9178 +US 27715 Durham North Carolina NC Durham 063 36.0512 -78.8577 +US 27717 Durham North Carolina NC Durham 063 36.0512 -78.8577 +US 27722 Durham North Carolina NC Durham 063 36.0512 -78.8577 +US 27801 Rocky Mount North Carolina NC Edgecombe 065 35.9427 -77.7608 +US 27802 Rocky Mount North Carolina NC Edgecombe 065 35.9356 -77.7808 +US 27809 Battleboro North Carolina NC Edgecombe 065 36.0067 -77.7074 +US 27819 Conetoe North Carolina NC Edgecombe 065 35.8178 -77.4533 +US 27852 Macclesfield North Carolina NC Edgecombe 065 35.751 -77.6706 +US 27864 Pinetops North Carolina NC Edgecombe 065 35.8196 -77.692 +US 27881 Speed North Carolina NC Edgecombe 065 35.9159 -77.5855 +US 27886 Tarboro North Carolina NC Edgecombe 065 35.8983 -77.5421 +US 27009 Belews Creek North Carolina NC Forsyth 067 36.2269 -80.093 +US 27010 Bethania North Carolina NC Forsyth 067 36.183 -80.3387 +US 27012 Clemmons North Carolina NC Forsyth 067 36.0341 -80.3962 +US 27023 Lewisville North Carolina NC Forsyth 067 36.0967 -80.4206 +US 27040 Pfafftown North Carolina NC Forsyth 067 36.1669 -80.3798 +US 27045 Rural Hall North Carolina NC Forsyth 067 36.2293 -80.2936 +US 27050 Tobaccoville North Carolina NC Forsyth 067 36.2336 -80.3915 +US 27051 Walkertown North Carolina NC Forsyth 067 36.18 -80.1629 +US 27094 Rural Hall North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27098 Rural Hall North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27099 Rural Hall North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27101 Winston Salem North Carolina NC Forsyth 067 36.1024 -80.2228 +US 27102 Winston Salem North Carolina NC Forsyth 067 36.0323 -80.3962 +US 27103 Winston Salem North Carolina NC Forsyth 067 36.0671 -80.3025 +US 27104 Winston Salem North Carolina NC Forsyth 067 36.092 -80.3224 +US 27105 Winston Salem North Carolina NC Forsyth 067 36.144 -80.2376 +US 27106 Winston Salem North Carolina NC Forsyth 067 36.1428 -80.3069 +US 27107 Winston Salem North Carolina NC Forsyth 067 36.0403 -80.1933 +US 27108 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27109 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27110 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27111 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27113 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27114 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27115 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27116 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27117 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27120 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27127 Winston Salem North Carolina NC Forsyth 067 36.0425 -80.2609 +US 27130 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27150 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27151 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27152 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27155 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27156 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27157 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27198 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27199 Winston Salem North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27284 Kernersville North Carolina NC Forsyth 067 36.1165 -80.0831 +US 27285 Kernersville North Carolina NC Forsyth 067 36.0275 -80.2073 +US 27508 Bunn North Carolina NC Franklin 069 35.9577 -78.2498 +US 27525 Franklinton North Carolina NC Franklin 069 36.0955 -78.4486 +US 27549 Louisburg North Carolina NC Franklin 069 36.0578 -78.2586 +US 27596 Youngsville North Carolina NC Franklin 069 36.0078 -78.4412 +US 28006 Alexis North Carolina NC Gaston 071 35.4069 -81.0947 +US 28012 Belmont North Carolina NC Gaston 071 35.244 -81.044 +US 28016 Bessemer City North Carolina NC Gaston 071 35.2849 -81.2863 +US 28021 Cherryville North Carolina NC Gaston 071 35.3747 -81.3509 +US 28032 Cramerton North Carolina NC Gaston 071 35.2396 -81.0831 +US 28034 Dallas North Carolina NC Gaston 071 35.3349 -81.1862 +US 28035 Davidson North Carolina NC Gaston County 071 35.4993 -80.8486 +US 28051 Gastonia North Carolina NC Gaston 071 35.284 -81.1897 +US 28052 Gastonia North Carolina NC Gaston 071 35.2449 -81.2194 +US 28053 Gastonia North Carolina NC Gaston 071 35.2751 -81.2134 +US 28054 Gastonia North Carolina NC Gaston 071 35.2495 -81.133 +US 28055 Gastonia North Carolina NC Gaston 071 35.284 -81.1897 +US 28056 Gastonia North Carolina NC Gaston 071 35.2172 -81.1252 +US 28077 High Shoals North Carolina NC Gaston 071 35.4041 -81.2029 +US 28098 Lowell North Carolina NC Gaston 071 35.2655 -81.096 +US 28101 Mc Adenville North Carolina NC Gaston 071 35.2578 -81.0788 +US 28120 Mount Holly North Carolina NC Gaston 071 35.3119 -81.0306 +US 28164 Stanley North Carolina NC Gaston 071 35.3516 -81.0959 +US 27926 Corapeake North Carolina NC Gates 073 36.5179 -76.5979 +US 27935 Eure North Carolina NC Gates 073 36.4341 -76.8463 +US 27937 Gates North Carolina NC Gates 073 36.5036 -76.7646 +US 27938 Gatesville North Carolina NC Gates 073 36.4072 -76.7325 +US 27946 Hobbsville North Carolina NC Gates 073 36.3543 -76.6178 +US 27969 Roduco North Carolina NC Gates 073 36.4242 -76.7021 +US 27979 Sunbury North Carolina NC Gates 073 36.4316 -76.6096 +US 28733 Fontana Dam North Carolina NC Graham 075 35.4231 -83.7795 +US 28771 Robbinsville North Carolina NC Graham 075 35.3259 -83.7888 +US 28780 Tapoco North Carolina NC Graham County 075 35.4425 -83.8996 +US 27507 Bullock North Carolina NC Granville 077 36.5076 -78.5646 +US 27509 Butner North Carolina NC Granville 077 36.1359 -78.7636 +US 27522 Creedmoor North Carolina NC Granville 077 36.1124 -78.6476 +US 27527 Clayton North Carolina NC Granville County 077 35.6577 -78.3837 +US 27528 Clayton North Carolina NC Granville County 077 35.6555 -78.4611 +US 27564 Creedmoor North Carolina NC Granville 077 36.1015 -78.7133 +US 27565 Oxford North Carolina NC Granville 077 36.3313 -78.6134 +US 27574 Roxboro North Carolina NC Granville County 077 36.3942 -78.9863 +US 27581 Stem North Carolina NC Granville 077 36.21 -78.7001 +US 27582 Stovall North Carolina NC Granville 077 36.4424 -78.5571 +US 27888 Walstonburg North Carolina NC Greene 079 35.5882 -77.6983 +US 28538 Hookerton North Carolina NC Greene 079 35.438 -77.5656 +US 28554 Maury North Carolina NC Greene 079 35.4999 -77.651 +US 28580 Snow Hill North Carolina NC Greene 079 35.4438 -77.6956 +US 27214 Browns Summit North Carolina NC Guilford 081 36.2019 -79.7101 +US 27233 Climax North Carolina NC Guilford 081 35.9345 -79.7019 +US 27235 Colfax North Carolina NC Guilford 081 36.1003 -80.0103 +US 27249 Gibsonville North Carolina NC Guilford 081 36.1183 -79.5685 +US 27260 High Point North Carolina NC Guilford 081 35.954 -79.9884 +US 27261 High Point North Carolina NC Guilford 081 36.0807 -80.0244 +US 27262 High Point North Carolina NC Guilford 081 35.9734 -80.0107 +US 27263 High Point North Carolina NC Guilford 081 35.9359 -79.9395 +US 27264 High Point North Carolina NC Guilford 081 36.0807 -80.0244 +US 27265 High Point North Carolina NC Guilford 081 36.0036 -80.0036 +US 27282 Jamestown North Carolina NC Guilford 081 35.999 -79.9293 +US 27283 Julian North Carolina NC Guilford 081 35.9543 -79.6386 +US 27301 Mc Leansville North Carolina NC Guilford 081 36.1163 -79.6684 +US 27310 Oak Ridge North Carolina NC Guilford 081 36.1673 -79.9804 +US 27313 Pleasant Garden North Carolina NC Guilford 081 35.9522 -79.7549 +US 27342 Sedalia North Carolina NC Guilford 081 36.0756 -79.6206 +US 27357 Stokesdale North Carolina NC Guilford 081 36.2552 -79.9705 +US 27358 Summerfield North Carolina NC Guilford 081 36.2245 -79.8901 +US 27377 Whitsett North Carolina NC Guilford 081 36.033 -79.5972 +US 27395 Greensboro North Carolina NC Guilford County 081 36.0446 -79.8596 +US 27401 Greensboro North Carolina NC Guilford 081 36.0697 -79.7682 +US 27402 Greensboro North Carolina NC Guilford 081 36.1067 -79.7919 +US 27403 Greensboro North Carolina NC Guilford 081 36.0641 -79.8202 +US 27404 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27405 Greensboro North Carolina NC Guilford 081 36.1214 -79.7733 +US 27406 Greensboro North Carolina NC Guilford 081 36.022 -79.7821 +US 27407 Greensboro North Carolina NC Guilford 081 36.0334 -79.8626 +US 27408 Greensboro North Carolina NC Guilford 081 36.1064 -79.8165 +US 27409 Greensboro North Carolina NC Guilford 081 36.0777 -79.9086 +US 27410 Greensboro North Carolina NC Guilford 081 36.1032 -79.8794 +US 27411 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27412 Greensboro North Carolina NC Guilford 081 36.0661 -79.8067 +US 27413 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27415 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27416 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27417 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27419 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27420 Greensboro North Carolina NC Guilford 081 36.113 -79.7759 +US 27425 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27427 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27429 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27435 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27438 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27455 Greensboro North Carolina NC Guilford 081 36.1824 -79.806 +US 27480 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27495 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27497 Greensboro North Carolina NC Guilford County 081 36.0798 -79.8282 +US 27498 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27499 Greensboro North Carolina NC Guilford 081 36.0807 -80.0244 +US 27823 Enfield North Carolina NC Halifax 083 36.1973 -77.7129 +US 27839 Halifax North Carolina NC Halifax 083 36.3049 -77.5607 +US 27843 Hobgood North Carolina NC Halifax 083 36.0594 -77.4061 +US 27844 Hollister North Carolina NC Halifax 083 36.259 -77.9319 +US 27850 Littleton North Carolina NC Halifax 083 36.4169 -77.8528 +US 27859 Palmyra North Carolina NC Halifax 083 36.0649 -77.3645 +US 27870 Roanoke Rapids North Carolina NC Halifax 083 36.4461 -77.6731 +US 27874 Scotland Neck North Carolina NC Halifax 083 36.1301 -77.4273 +US 27887 Tillery North Carolina NC Halifax 083 36.2352 -77.5026 +US 27890 Weldon North Carolina NC Halifax 083 36.4206 -77.6035 +US 27501 Angier North Carolina NC Harnett 085 35.4897 -78.7249 +US 27506 Buies Creek North Carolina NC Harnett 085 35.4205 -78.7137 +US 27521 Coats North Carolina NC Harnett 085 35.4082 -78.6627 +US 27543 Kipling North Carolina NC Harnett 085 35.4298 -78.8824 +US 27546 Lillington North Carolina NC Harnett 085 35.332 -78.9212 +US 27552 Mamers North Carolina NC Harnett 085 35.4136 -78.98 +US 28323 Bunnlevel North Carolina NC Harnett 085 35.3119 -78.8405 +US 28334 Dunn North Carolina NC Harnett 085 35.3165 -78.6151 +US 28335 Dunn North Carolina NC Harnett 085 35.3508 -78.6254 +US 28339 Erwin North Carolina NC Harnett 085 35.3287 -78.6859 +US 28368 Olivia North Carolina NC Harnett 085 35.3229 -79.1074 +US 28716 Canton North Carolina NC Haywood 087 35.5127 -82.8413 +US 28721 Clyde North Carolina NC Haywood 087 35.5597 -82.9216 +US 28738 Hazelwood North Carolina NC Haywood 087 35.4683 -83.0028 +US 28745 Lake Junaluska North Carolina NC Haywood 087 35.5258 -82.9704 +US 28751 Maggie Valley North Carolina NC Haywood 087 35.5201 -83.0929 +US 28785 Waynesville North Carolina NC Haywood 087 35.533 -82.9719 +US 28786 Waynesville North Carolina NC Haywood 087 35.5018 -82.9913 +US 28710 Bat Cave North Carolina NC Henderson 089 35.4319 -82.5448 +US 28724 Dana North Carolina NC Henderson 089 35.2954 -82.3883 +US 28726 East Flat Rock North Carolina NC Henderson 089 35.2799 -82.4204 +US 28727 Edneyville North Carolina NC Henderson 089 35.3223 -82.5032 +US 28729 Etowah North Carolina NC Henderson 089 35.3172 -82.5977 +US 28731 Flat Rock North Carolina NC Henderson 089 35.289 -82.3916 +US 28732 Fletcher North Carolina NC Henderson 089 35.4499 -82.4966 +US 28735 Gerton North Carolina NC Henderson 089 35.4759 -82.3505 +US 28739 Hendersonville North Carolina NC Henderson 089 35.3192 -82.5 +US 28742 Horse Shoe North Carolina NC Henderson 089 35.3703 -82.5981 +US 28758 Mountain Home North Carolina NC Henderson 089 35.3711 -82.4938 +US 28760 Naples North Carolina NC Henderson 089 35.3817 -82.4813 +US 28784 Tuxedo North Carolina NC Henderson 089 35.2174 -82.4178 +US 28790 Zirconia North Carolina NC Henderson 089 35.2153 -82.4574 +US 28791 Hendersonville North Carolina NC Henderson 089 35.3464 -82.525 +US 28792 Hendersonville North Carolina NC Henderson 089 35.3613 -82.4264 +US 28793 Hendersonville North Carolina NC Henderson 089 35.2927 -82.5036 +US 27818 Como North Carolina NC Hertford 091 36.4978 -77.0515 +US 27855 Murfreesboro North Carolina NC Hertford 091 36.4319 -77.1027 +US 27910 Ahoskie North Carolina NC Hertford 091 36.2957 -76.9966 +US 27922 Cofield North Carolina NC Hertford 091 36.3333 -76.8746 +US 27942 Harrellsville North Carolina NC Hertford 091 36.2866 -76.7767 +US 27986 Winton North Carolina NC Hertford 091 36.3826 -76.936 +US 28361 Mccain North Carolina NC Hoke 093 35.0236 -79.2468 +US 28376 Raeford North Carolina NC Hoke 093 34.989 -79.2228 +US 27824 Engelhard North Carolina NC Hyde 095 35.5149 -76.0303 +US 27826 Fairfield North Carolina NC Hyde 095 35.5659 -76.2318 +US 27875 Scranton North Carolina NC Hyde 095 35.4717 -76.4951 +US 27885 Swanquarter North Carolina NC Hyde 095 35.4222 -76.2875 +US 27960 Ocracoke North Carolina NC Hyde 095 35.1397 -75.8931 +US 28010 Barium Springs North Carolina NC Iredell 097 35.7192 -80.8991 +US 28115 Mooresville North Carolina NC Iredell 097 35.5774 -80.8226 +US 28117 Mooresville North Carolina NC Iredell 097 35.584 -80.8685 +US 28123 Mount Mourne North Carolina NC Iredell 097 35.5298 -80.947 +US 28166 Troutman North Carolina NC Iredell 097 35.6863 -80.8822 +US 28625 Statesville North Carolina NC Iredell 097 35.8651 -80.8858 +US 28634 Harmony North Carolina NC Iredell 097 35.958 -80.7585 +US 28660 Olin North Carolina NC Iredell 097 35.9593 -80.8511 +US 28677 Statesville North Carolina NC Iredell 097 35.799 -80.894 +US 28687 Statesville North Carolina NC Iredell 097 35.5298 -80.947 +US 28688 Turnersburg North Carolina NC Iredell 097 35.5298 -80.947 +US 28689 Union Grove North Carolina NC Iredell 097 36.0369 -80.8967 +US 28699 Scotts North Carolina NC Iredell 097 35.831 -81.0076 +US 28707 Balsam North Carolina NC Jackson 099 35.4301 -83.0928 +US 28717 Cashiers North Carolina NC Jackson 099 35.0971 -83.0871 +US 28723 Cullowhee North Carolina NC Jackson 099 35.2409 -83.1475 +US 28725 Dillsboro North Carolina NC Jackson 099 35.3735 -83.2592 +US 28736 Glenville North Carolina NC Jackson 099 35.1882 -83.09 +US 28779 Sylva North Carolina NC Jackson 099 35.3481 -83.2031 +US 28783 Tuckasegee North Carolina NC Jackson 099 35.2599 -83.0749 +US 28788 Webster North Carolina NC Jackson 099 35.3285 -83.2333 +US 28789 Whittier North Carolina NC Jackson 099 35.4469 -83.2872 +US 27504 Benson North Carolina NC Johnston 101 35.4037 -78.5421 +US 27520 Clayton North Carolina NC Johnston 101 35.6348 -78.451 +US 27524 Four Oaks North Carolina NC Johnston 101 35.404 -78.4153 +US 27542 Kenly North Carolina NC Johnston 101 35.6077 -78.1382 +US 27555 Micro North Carolina NC Johnston 101 35.6295 -78.205 +US 27557 Middlesex North Carolina NC Johnston 101 35.7665 -78.2062 +US 27568 Pine Level North Carolina NC Johnston 101 35.4883 -78.2179 +US 27569 Princeton North Carolina NC Johnston 101 35.4558 -78.1674 +US 27576 Selma North Carolina NC Johnston 101 35.5565 -78.264 +US 27577 Smithfield North Carolina NC Johnston 101 35.5068 -78.3479 +US 27593 Wilsons Mills North Carolina NC Johnston 101 35.5907 -78.3607 +US 28522 Comfort North Carolina NC Jones 103 35.0051 -77.5231 +US 28555 Maysville North Carolina NC Jones 103 34.8691 -77.2315 +US 28573 Pollocksville North Carolina NC Jones 103 35.0151 -77.2287 +US 28585 Trenton North Carolina NC Jones 103 35.0745 -77.4595 +US 27237 Cumnock North Carolina NC Lee 105 35.4676 -79.1653 +US 27330 Sanford North Carolina NC Lee 105 35.4698 -79.1717 +US 27331 Sanford North Carolina NC Lee 105 35.3726 -79.2766 +US 27332 Sanford North Carolina NC Lee 105 35.4469 -79.138 +US 27505 Broadway North Carolina NC Lee 105 35.4181 -79.0435 +US 28355 Lemon Springs North Carolina NC Lee 105 35.4676 -79.1653 +US 28501 Kinston North Carolina NC Lenoir 107 35.2783 -77.586 +US 28502 Kinston North Carolina NC Lenoir 107 35.2886 -77.6626 +US 28503 Kinston North Carolina NC Lenoir 107 35.3191 -77.595 +US 28504 Kinston North Carolina NC Lenoir 107 35.206 -77.6576 +US 28525 Deep Run North Carolina NC Lenoir 107 35.163 -77.6928 +US 28551 La Grange North Carolina NC Lenoir 107 35.3054 -77.7686 +US 28572 Pink Hill North Carolina NC Lenoir 107 35.0573 -77.6943 +US 28033 Crouse North Carolina NC Lincoln 109 35.4359 -81.3385 +US 28037 Denver North Carolina NC Lincoln 109 35.4837 -80.9898 +US 28080 Iron Station North Carolina NC Lincoln 109 35.4657 -81.107 +US 28092 Lincolnton North Carolina NC Lincoln 109 35.4851 -81.1818 +US 28093 Lincolnton North Carolina NC Lincoln 109 35.4848 -81.2395 +US 28168 Vale North Carolina NC Lincoln 109 35.5188 -81.4589 +US 28737 Glenwood North Carolina NC McDowell 111 35.7387 -82.0595 +US 28749 Little Switzerland North Carolina NC McDowell 111 35.7387 -82.0595 +US 28752 Marion North Carolina NC McDowell 111 35.6819 -82.018 +US 28761 Nebo North Carolina NC McDowell 111 35.6732 -81.9056 +US 28762 Old Fort North Carolina NC McDowell 111 35.6169 -82.1686 +US 28703 Aquone North Carolina NC Macon County 113 35.2354 -83.5749 +US 28734 Franklin North Carolina NC Macon 113 35.181 -83.3885 +US 28741 Highlands North Carolina NC Macon 113 35.0705 -83.216 +US 28744 Franklin North Carolina NC Macon 113 35.1173 -83.2952 +US 28763 Otto North Carolina NC Macon 113 35.0515 -83.3854 +US 28775 Scaly Mountain North Carolina NC Macon 113 35.0311 -83.3274 +US 28743 Hot Springs North Carolina NC Madison 115 35.8082 -82.9005 +US 28753 Marshall North Carolina NC Madison 115 35.8597 -82.7105 +US 28754 Mars Hill North Carolina NC Madison 115 35.8528 -82.5254 +US 27825 Everetts North Carolina NC Martin 117 35.8667 -77.085 +US 27840 Hamilton North Carolina NC Martin 117 35.9632 -77.2236 +US 27841 Hassell North Carolina NC Martin 117 35.9086 -77.2763 +US 27846 Jamesville North Carolina NC Martin 117 35.7839 -76.8983 +US 27857 Oak City North Carolina NC Martin 117 35.9597 -77.3004 +US 27861 Parmele North Carolina NC Martin 117 35.819 -77.3143 +US 27871 Robersonville North Carolina NC Martin 117 35.8218 -77.26 +US 27892 Williamston North Carolina NC Martin 117 35.8212 -77.1022 +US 28031 Cornelius North Carolina NC Mecklenburg 119 35.4733 -80.8726 +US 28036 Davidson North Carolina NC Mecklenburg 119 35.4858 -80.794 +US 28070 Huntersville North Carolina NC Mecklenburg 119 35.4622 -80.8987 +US 28078 Huntersville North Carolina NC Mecklenburg 119 35.4011 -80.8695 +US 28104 Matthews North Carolina NC Mecklenburg 119 35.0604 -80.6958 +US 28105 Matthews North Carolina NC Mecklenburg 119 35.1149 -80.705 +US 28106 Matthews North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28126 Newell North Carolina NC Mecklenburg 119 35.2768 -80.7165 +US 28130 Paw Creek North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28134 Pineville North Carolina NC Mecklenburg 119 35.0709 -80.8859 +US 28201 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28202 Charlotte North Carolina NC Mecklenburg 119 35.229 -80.8419 +US 28203 Charlotte North Carolina NC Mecklenburg 119 35.2081 -80.8583 +US 28204 Charlotte North Carolina NC Mecklenburg 119 35.2132 -80.8231 +US 28205 Charlotte North Carolina NC Mecklenburg 119 35.22 -80.7881 +US 28206 Charlotte North Carolina NC Mecklenburg 119 35.2522 -80.8265 +US 28207 Charlotte North Carolina NC Mecklenburg 119 35.1935 -80.8272 +US 28208 Charlotte North Carolina NC Mecklenburg 119 35.2358 -80.8964 +US 28209 Charlotte North Carolina NC Mecklenburg 119 35.1796 -80.8559 +US 28210 Charlotte North Carolina NC Mecklenburg 119 35.1316 -80.8577 +US 28211 Charlotte North Carolina NC Mecklenburg 119 35.1677 -80.7932 +US 28212 Charlotte North Carolina NC Mecklenburg 119 35.1908 -80.7448 +US 28213 Charlotte North Carolina NC Mecklenburg 119 35.2836 -80.7638 +US 28214 Charlotte North Carolina NC Mecklenburg 119 35.2731 -80.9571 +US 28215 Charlotte North Carolina NC Mecklenburg 119 35.244 -80.7387 +US 28216 Charlotte North Carolina NC Mecklenburg 119 35.2834 -80.8702 +US 28217 Charlotte North Carolina NC Mecklenburg 119 35.1714 -80.9084 +US 28218 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28219 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28220 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28221 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28222 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28223 Charlotte North Carolina NC Mecklenburg 119 35.3041 -80.7267 +US 28224 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28225 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28226 Charlotte North Carolina NC Mecklenburg 119 35.0869 -80.8167 +US 28227 Charlotte North Carolina NC Mecklenburg 119 35.1936 -80.6846 +US 28228 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28229 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28230 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28231 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28232 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28233 Charlotte North Carolina NC Mecklenburg 119 35.4894 -80.8254 +US 28234 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28235 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28236 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28237 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28240 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28241 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28242 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28243 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28244 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28245 Charlotte North Carolina NC Mecklenburg County 119 35.2268 -80.8432 +US 28246 Charlotte North Carolina NC Mecklenburg 119 35.2275 -80.8425 +US 28247 Charlotte North Carolina NC Mecklenburg 119 35.0656 -80.8511 +US 28250 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28253 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28254 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28255 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28256 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28258 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28260 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28261 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28262 Charlotte North Carolina NC Mecklenburg 119 35.3183 -80.7476 +US 28263 Charlotte North Carolina NC Mecklenburg County 119 35.2268 -80.8432 +US 28265 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28266 Charlotte North Carolina NC Mecklenburg 119 35.2845 -80.8582 +US 28269 Charlotte North Carolina NC Mecklenburg 119 35.2886 -80.8209 +US 28270 Charlotte North Carolina NC Mecklenburg 119 35.1355 -80.7669 +US 28272 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28273 Charlotte North Carolina NC Mecklenburg 119 35.1287 -80.9338 +US 28274 Charlotte North Carolina NC Mecklenburg 119 35.1879 -80.8317 +US 28275 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28277 Charlotte North Carolina NC Mecklenburg 119 35.0552 -80.8195 +US 28278 Charlotte North Carolina NC Mecklenburg 119 35.2072 -80.9568 +US 28280 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28281 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28282 Charlotte North Carolina NC Mecklenburg 119 35.2242 -80.8447 +US 28283 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28284 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28285 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28286 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28287 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28288 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28289 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28290 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28294 Charlotte North Carolina NC Mecklenburg County 119 35.1975 -80.8345 +US 28296 Charlotte North Carolina NC Mecklenburg 119 35.2252 -80.8458 +US 28297 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28299 Charlotte North Carolina NC Mecklenburg 119 35.26 -80.8042 +US 28705 Bakersville North Carolina NC Mitchell 121 36.0286 -82.1711 +US 28765 Penland North Carolina NC Mitchell 121 35.9219 -82.1107 +US 28777 Spruce Pine North Carolina NC Mitchell 121 35.906 -82.0705 +US 27209 Biscoe North Carolina NC Montgomery 123 35.3257 -79.7596 +US 27229 Candor North Carolina NC Montgomery 123 35.2234 -79.7876 +US 27247 Ether North Carolina NC Montgomery 123 35.4514 -79.7834 +US 27306 Mount Gilead North Carolina NC Montgomery 123 35.2274 -79.9871 +US 27356 Star North Carolina NC Montgomery 123 35.4211 -79.7826 +US 27371 Troy North Carolina NC Montgomery 123 35.3777 -79.9093 +US 27242 Eagle Springs North Carolina NC Moore 125 35.336 -79.631 +US 27251 Glendon North Carolina NC Moore County 125 35.4821 -79.4171 +US 27259 Highfalls North Carolina NC Moore 125 35.4921 -79.479 +US 27281 Jackson Springs North Carolina NC Moore 125 35.2259 -79.6685 +US 27325 Robbins North Carolina NC Moore 125 35.4528 -79.582 +US 27376 West End North Carolina NC Moore 125 35.2512 -79.536 +US 28315 Aberdeen North Carolina NC Moore 125 35.1216 -79.445 +US 28326 Cameron North Carolina NC Moore 125 35.3106 -79.3472 +US 28327 Carthage North Carolina NC Moore 125 35.3061 -79.3969 +US 28350 Lakeview North Carolina NC Moore 125 35.2306 -79.3157 +US 28370 Pinehurst North Carolina NC Moore 125 35.2162 -79.4524 +US 28373 Pinebluff North Carolina NC Moore 125 35.1007 -79.4663 +US 28374 Pinehurst North Carolina NC Moore 125 35.1884 -79.4732 +US 28387 Southern Pines North Carolina NC Moore 125 35.1697 -79.3957 +US 28388 Southern Pines North Carolina NC Moore 125 35.2803 -79.4327 +US 28394 Vass North Carolina NC Moore 125 35.2171 -79.2562 +US 27803 Rocky Mount North Carolina NC Nash 127 35.9238 -77.835 +US 27804 Rocky Mount North Carolina NC Nash 127 35.9904 -77.8468 +US 27807 Bailey North Carolina NC Nash 127 35.8072 -78.0892 +US 27815 Rocky Mount North Carolina NC Nash County 127 35.8979 -77.7935 +US 27816 Castalia North Carolina NC Nash 127 36.0901 -78.0705 +US 27856 Nashville North Carolina NC Nash 127 35.9843 -77.9595 +US 27868 Red Oak North Carolina NC Nash 127 36.0548 -77.9116 +US 27878 Sharpsburg North Carolina NC Nash 127 35.8654 -77.8389 +US 27882 Spring Hope North Carolina NC Nash 127 35.9302 -78.1085 +US 27891 Whitakers North Carolina NC Nash 127 36.0758 -77.7167 +US 28401 Wilmington North Carolina NC New Hanover 129 34.2726 -77.9633 +US 28402 Wilmington North Carolina NC New Hanover 129 34.3405 -77.9014 +US 28403 Wilmington North Carolina NC New Hanover 129 34.2237 -77.8862 +US 28405 Wilmington North Carolina NC New Hanover 129 34.2651 -77.867 +US 28406 Wilmington North Carolina NC New Hanover 129 34.0881 -77.8526 +US 28407 Wilmington North Carolina NC New Hanover 129 34.0881 -77.8526 +US 28408 Wilmington North Carolina NC New Hanover 129 34.2127 -77.7922 +US 28409 Wilmington North Carolina NC New Hanover 129 34.1663 -77.8723 +US 28410 Wilmington North Carolina NC New Hanover 129 34.0881 -77.8526 +US 28411 Wilmington North Carolina NC New Hanover 129 34.3033 -77.8039 +US 28412 Wilmington North Carolina NC New Hanover 129 34.1572 -77.9141 +US 28428 Carolina Beach North Carolina NC New Hanover 129 34.0366 -77.8963 +US 28429 Castle Hayne North Carolina NC New Hanover 129 34.3236 -77.9108 +US 28449 Kure Beach North Carolina NC New Hanover 129 33.9927 -77.9099 +US 28480 Wrightsville Beach North Carolina NC New Hanover 129 34.2228 -77.7932 +US 27820 Conway North Carolina NC Northampton 131 36.4164 -77.2502 +US 27831 Garysburg North Carolina NC Northampton 131 36.4761 -77.5719 +US 27832 Gaston North Carolina NC Northampton 131 36.5115 -77.6824 +US 27838 Gumberry North Carolina NC Northampton 131 36.3561 -77.4831 +US 27842 Henrico North Carolina NC Northampton 131 36.5274 -77.8546 +US 27845 Jackson North Carolina NC Northampton 131 36.387 -77.4681 +US 27853 Margarettsville North Carolina NC Northampton 131 36.5245 -77.326 +US 27854 Milwaukee North Carolina NC Northampton 131 36.3631 -77.3867 +US 27862 Pendleton North Carolina NC Northampton 131 36.4937 -77.1911 +US 27866 Pleasant Hill North Carolina NC Northampton 131 36.5212 -77.5192 +US 27867 Potecasi North Carolina NC Northampton 131 36.3561 -77.4831 +US 27869 Rich Square North Carolina NC Northampton 131 36.2773 -77.2969 +US 27876 Seaboard North Carolina NC Northampton 131 36.4886 -77.4113 +US 27877 Severn North Carolina NC Northampton 131 36.3561 -77.4831 +US 27897 Woodland North Carolina NC Northampton 131 36.325 -77.2107 +US 28445 Holly Ridge North Carolina NC Onslow 133 34.528 -77.5147 +US 28460 Sneads Ferry North Carolina NC Onslow 133 34.5426 -77.4038 +US 28539 Hubert North Carolina NC Onslow 133 34.6993 -77.2079 +US 28540 Jacksonville North Carolina NC Onslow 133 34.7375 -77.4628 +US 28541 Jacksonville North Carolina NC Onslow 133 34.6921 -77.3912 +US 28542 Camp Lejeune North Carolina NC Onslow 133 34.664 -77.4637 +US 28543 Tarawa Terrace North Carolina NC Onslow 133 34.7354 -77.3831 +US 28544 Midway Park North Carolina NC Onslow 133 34.727 -77.32 +US 28545 Mccutcheon Field North Carolina NC Onslow 133 34.6921 -77.3912 +US 28546 Jacksonville North Carolina NC Onslow 133 34.774 -77.3781 +US 28547 Camp Lejeune North Carolina NC Onslow 133 34.6909 -77.3614 +US 28574 Richlands North Carolina NC Onslow 133 34.8624 -77.5863 +US 28584 Swansboro North Carolina NC Onslow 133 34.6991 -77.135 +US 27231 Cedar Grove North Carolina NC Orange 135 36.202 -79.1666 +US 27243 Efland North Carolina NC Orange 135 36.0912 -79.1884 +US 27278 Hillsborough North Carolina NC Orange 135 36.0756 -79.0914 +US 27510 Carrboro North Carolina NC Orange 135 35.9055 -79.0901 +US 27514 Chapel Hill North Carolina NC Orange 135 35.9203 -79.0372 +US 27515 Chapel Hill North Carolina NC Orange 135 36.0525 -79.1077 +US 27516 Chapel Hill North Carolina NC Orange 135 35.9162 -79.0999 +US 27517 Chapel Hill North Carolina NC Orange 135 35.9182 -79.0035 +US 27599 Chapel Hill North Carolina NC Orange 135 36.0525 -79.1077 +US 28509 Alliance North Carolina NC Pamlico 137 35.1561 -76.6323 +US 28510 Arapahoe North Carolina NC Pamlico 137 35.0055 -76.8149 +US 28515 Bayboro North Carolina NC Pamlico 137 35.1526 -76.7518 +US 28529 Grantsboro North Carolina NC Pamlico 137 35.0668 -76.871 +US 28537 Hobucken North Carolina NC Pamlico 137 35.2518 -76.5696 +US 28552 Lowland North Carolina NC Pamlico 137 35.306 -76.5777 +US 28556 Merritt North Carolina NC Pamlico 137 35.1224 -76.6719 +US 28571 Oriental North Carolina NC Pamlico 137 35.0364 -76.7015 +US 28583 Stonewall North Carolina NC Pamlico 137 35.1371 -76.7406 +US 28587 Vandemere North Carolina NC Pamlico 137 35.1913 -76.6604 +US 27906 Elizabeth City North Carolina NC Pasquotank 139 36.2854 -76.2133 +US 27907 Elizabeth City North Carolina NC Pasquotank 139 36.285 -76.2553 +US 27909 Elizabeth City North Carolina NC Pasquotank 139 36.2951 -76.2445 +US 28421 Atkinson North Carolina NC Pender 141 34.5304 -78.1671 +US 28425 Burgaw North Carolina NC Pender 141 34.5487 -77.9403 +US 28435 Currie North Carolina NC Pender 141 34.4497 -78.0925 +US 28443 Hampstead North Carolina NC Pender 141 34.3879 -77.6628 +US 28454 Maple Hill North Carolina NC Pender 141 34.6594 -77.7117 +US 28457 Rocky Point North Carolina NC Pender 141 34.4344 -77.9234 +US 28471 Watha North Carolina NC Pender 141 34.6207 -78.0074 +US 28478 Willard North Carolina NC Pender 141 34.6845 -78.0234 +US 27919 Belvidere North Carolina NC Perquimans 143 36.3096 -76.5436 +US 27930 Durants Neck North Carolina NC Perquimans 143 36.1985 -76.3739 +US 27944 Hertford North Carolina NC Perquimans 143 36.1685 -76.3731 +US 27985 Winfall North Carolina NC Perquimans 143 36.2193 -76.4667 +US 27343 Semora North Carolina NC Person 145 36.5114 -79.0942 +US 27541 Hurdle Mills North Carolina NC Person 145 36.2518 -79.0827 +US 27573 Roxboro North Carolina NC Person 145 36.4059 -78.9737 +US 27583 Timberlake North Carolina NC Person 145 36.2918 -78.9353 +US 27811 Bellarthur North Carolina NC Pitt 147 35.5847 -77.5134 +US 27812 Bethel North Carolina NC Pitt 147 35.7909 -77.3748 +US 27827 Falkland North Carolina NC Pitt 147 35.6966 -77.5132 +US 27828 Farmville North Carolina NC Pitt 147 35.5806 -77.5793 +US 27829 Fountain North Carolina NC Pitt 147 35.6694 -77.6214 +US 27833 Greenville North Carolina NC Pitt 147 35.5804 -77.3926 +US 27834 Greenville North Carolina NC Pitt 147 35.6192 -77.3975 +US 27835 Greenville North Carolina NC Pitt 147 35.5885 -77.3531 +US 27836 Greenville North Carolina NC Pitt 147 35.5804 -77.3926 +US 27837 Grimesland North Carolina NC Pitt 147 35.558 -77.2566 +US 27858 Greenville North Carolina NC Pitt 147 35.5866 -77.3485 +US 27879 Simpson North Carolina NC Pitt 147 35.5675 -77.2802 +US 27884 Stokes North Carolina NC Pitt 147 35.7104 -77.2722 +US 28513 Ayden North Carolina NC Pitt 147 35.4565 -77.4051 +US 28530 Grifton North Carolina NC Pitt 147 35.3757 -77.4193 +US 28590 Winterville North Carolina NC Pitt 147 35.5336 -77.391 +US 28722 Columbus North Carolina NC Polk 149 35.241 -82.1206 +US 28750 Lynn North Carolina NC Polk 149 35.2362 -82.2362 +US 28756 Mill Spring North Carolina NC Polk 149 35.3338 -82.1557 +US 28773 Saluda North Carolina NC Polk 149 35.2383 -82.3306 +US 28782 Tryon North Carolina NC Polk 149 35.2157 -82.2394 +US 27203 Asheboro North Carolina NC Randolph 151 35.7323 -79.7893 +US 27204 Asheboro North Carolina NC Randolph 151 35.7883 -79.7206 +US 27205 Asheboro North Carolina NC Randolph 151 35.6396 -79.8509 +US 27230 Cedar Falls North Carolina NC Randolph 151 35.8028 -79.8797 +US 27248 Franklinville North Carolina NC Randolph 151 35.7917 -79.7132 +US 27298 Liberty North Carolina NC Randolph 151 35.8729 -79.5821 +US 27316 Ramseur North Carolina NC Randolph 151 35.7143 -79.6469 +US 27317 Randleman North Carolina NC Randolph 151 35.8488 -79.8018 +US 27341 Seagrove North Carolina NC Randolph 151 35.5283 -79.6979 +US 27350 Sophia North Carolina NC Randolph 151 35.8298 -79.8986 +US 27355 Staley North Carolina NC Randolph 151 35.8015 -79.5844 +US 27370 Trinity North Carolina NC Randolph 151 35.8429 -79.9902 +US 28330 Cordova North Carolina NC Richmond 153 34.9744 -79.7985 +US 28338 Ellerbe North Carolina NC Richmond 153 35.0914 -79.7524 +US 28345 Hamlet North Carolina NC Richmond 153 34.8894 -79.7022 +US 28347 Hoffman North Carolina NC Richmond 153 35.0326 -79.56 +US 28363 Marston North Carolina NC Richmond 153 34.9728 -79.6127 +US 28367 Norman North Carolina NC Richmond 153 35.1627 -79.7379 +US 28379 Rockingham North Carolina NC Richmond 153 34.9336 -79.7666 +US 28380 Rockingham North Carolina NC Richmond 153 34.9942 -79.7673 +US 28397 Wakulla North Carolina NC Richmond County 153 34.7925 -79.2553 +US 28271 Charlotte North Carolina NC Robeson County 155 35.216 -80.8358 +US 28319 Barnesville North Carolina NC Robeson 155 34.5954 -79.1971 +US 28340 Fairmont North Carolina NC Robeson 155 34.472 -79.1407 +US 28357 Lumber Bridge North Carolina NC Robeson 155 34.8762 -79.0664 +US 28358 Lumberton North Carolina NC Robeson 155 34.6293 -79.0083 +US 28359 Lumberton North Carolina NC Robeson 155 34.6077 -79.0144 +US 28360 Lumberton North Carolina NC Robeson 155 34.6697 -79.1084 +US 28362 Marietta North Carolina NC Robeson 155 34.3791 -79.1279 +US 28364 Maxton North Carolina NC Robeson 155 34.7334 -79.3097 +US 28369 Orrum North Carolina NC Robeson 155 34.4473 -79.031 +US 28371 Parkton North Carolina NC Robeson 155 34.9006 -78.9969 +US 28372 Pembroke North Carolina NC Robeson 155 34.6902 -79.1834 +US 28375 Proctorville North Carolina NC Robeson 155 34.4713 -79.0414 +US 28377 Red Springs North Carolina NC Robeson 155 34.8083 -79.1636 +US 28378 Rex North Carolina NC Robeson 155 34.8543 -79.0642 +US 28383 Rowland North Carolina NC Robeson 155 34.5887 -79.2618 +US 28384 Saint Pauls North Carolina NC Robeson 155 34.801 -78.9731 +US 28386 Shannon North Carolina NC Robeson 155 34.8988 -79.1806 +US 27025 Madison North Carolina NC Rockingham 157 36.3695 -79.9654 +US 27027 Mayodan North Carolina NC Rockingham 157 36.4277 -79.9567 +US 27048 Stoneville North Carolina NC Rockingham 157 36.4705 -79.9013 +US 27288 Eden North Carolina NC Rockingham 157 36.5 -79.759 +US 27289 Eden North Carolina NC Rockingham 157 36.3921 -79.7731 +US 27320 Reidsville North Carolina NC Rockingham 157 36.3432 -79.6642 +US 27321 Reidsville North Carolina NC Rockingham 157 36.3476 -79.6803 +US 27322 Reidsville North Carolina NC Rockingham 157 36.3921 -79.7731 +US 27323 Reidsville North Carolina NC Rockingham 157 36.3921 -79.7731 +US 27326 Ruffin North Carolina NC Rockingham 157 36.4428 -79.5606 +US 27375 Wentworth North Carolina NC Rockingham 157 36.3921 -79.7731 +US 27008 Barber North Carolina NC Rowan County 159 35.726 -80.6418 +US 27013 Cleveland North Carolina NC Rowan 159 35.7374 -80.7113 +US 27054 Woodleaf North Carolina NC Rowan 159 35.7901 -80.6051 +US 28023 China Grove North Carolina NC Rowan 159 35.5669 -80.59 +US 28039 East Spencer North Carolina NC Rowan 159 35.6805 -80.4354 +US 28041 Faith North Carolina NC Rowan 159 35.5817 -80.4581 +US 28071 Gold Hill North Carolina NC Rowan 159 35.5498 -80.3346 +US 28072 Granite Quarry North Carolina NC Rowan 159 35.6109 -80.4361 +US 28088 Landis North Carolina NC Rowan 159 35.5435 -80.6129 +US 28125 Mount Ulla North Carolina NC Rowan 159 35.6389 -80.7239 +US 28138 Rockwell North Carolina NC Rowan 159 35.5494 -80.4226 +US 28144 Salisbury North Carolina NC Rowan 159 35.6515 -80.4889 +US 28145 Salisbury North Carolina NC Rowan 159 35.6827 -80.4771 +US 28146 Salisbury North Carolina NC Rowan 159 35.6187 -80.4022 +US 28147 Salisbury North Carolina NC Rowan 159 35.6817 -80.5615 +US 28159 Spencer North Carolina NC Rowan 159 35.6917 -80.4327 +US 28018 Bostic North Carolina NC Rutherford 161 35.4533 -81.8118 +US 28019 Caroleen North Carolina NC Rutherford 161 35.3168 -81.8319 +US 28024 Cliffside North Carolina NC Rutherford 161 35.2416 -81.7755 +US 28040 Ellenboro North Carolina NC Rutherford 161 35.3344 -81.7707 +US 28043 Forest City North Carolina NC Rutherford 161 35.325 -81.846 +US 28074 Harris North Carolina NC Rutherford 161 35.2247 -81.8851 +US 28076 Henrietta North Carolina NC Rutherford 161 35.2266 -81.795 +US 28139 Rutherfordton North Carolina NC Rutherford 161 35.3706 -81.9781 +US 28160 Spindale North Carolina NC Rutherford 161 35.3601 -81.9251 +US 28167 Union Mills North Carolina NC Rutherford 161 35.4732 -81.9685 +US 28720 Chimney Rock North Carolina NC Rutherford 161 35.4369 -82.2417 +US 28746 Lake Lure North Carolina NC Rutherford 161 35.4464 -82.1752 +US 28318 Autryville North Carolina NC Sampson 163 35.0997 -78.6021 +US 28328 Clinton North Carolina NC Sampson 163 35.0151 -78.326 +US 28329 Clinton North Carolina NC Sampson 163 34.994 -78.2777 +US 28366 Newton Grove North Carolina NC Sampson 163 35.2301 -78.3594 +US 28382 Roseboro North Carolina NC Sampson 163 34.9639 -78.5133 +US 28385 Salemburg North Carolina NC Sampson 163 35.0515 -78.4714 +US 28393 Turkey North Carolina NC Sampson 163 34.9857 -78.2121 +US 28441 Garland North Carolina NC Sampson 163 34.7897 -78.4309 +US 28444 Harrells North Carolina NC Sampson 163 34.6769 -78.243 +US 28446 Ingold North Carolina NC Sampson 163 34.8366 -78.3481 +US 28447 Ivanhoe North Carolina NC Sampson 163 34.6233 -78.2342 +US 28343 Gibson North Carolina NC Scotland 165 34.7549 -79.5839 +US 28351 Laurel Hill North Carolina NC Scotland 165 34.8238 -79.5491 +US 28352 Laurinburg North Carolina NC Scotland 165 34.7599 -79.4673 +US 28353 Laurinburg North Carolina NC Scotland 165 34.7818 -79.4824 +US 28396 Wagram North Carolina NC Scotland 165 34.9044 -79.3959 +US 28001 Albemarle North Carolina NC Stanly 167 35.3573 -80.2044 +US 28002 Albemarle North Carolina NC Stanly 167 35.2642 -80.1082 +US 28009 Badin North Carolina NC Stanly 167 35.4157 -80.1594 +US 28097 Locust North Carolina NC Stanly 167 35.2704 -80.4211 +US 28109 Misenheimer North Carolina NC Stanly 167 35.4801 -80.2704 +US 28127 New London North Carolina NC Stanly 167 35.4285 -80.2057 +US 28128 Norwood North Carolina NC Stanly 167 35.2275 -80.1433 +US 28129 Oakboro North Carolina NC Stanly 167 35.246 -80.3413 +US 28137 Richfield North Carolina NC Stanly 167 35.4541 -80.2838 +US 28163 Stanfield North Carolina NC Stanly 167 35.2106 -80.4407 +US 27016 Danbury North Carolina NC Stokes 169 36.4559 -80.2194 +US 27019 Germanton North Carolina NC Stokes 169 36.2725 -80.2254 +US 27021 King North Carolina NC Stokes 169 36.295 -80.356 +US 27022 Lawsonville North Carolina NC Stokes 169 36.5132 -80.2103 +US 27042 Pine Hall North Carolina NC Stokes 169 36.3482 -80.0495 +US 27043 Pinnacle North Carolina NC Stokes 169 36.3339 -80.4391 +US 27046 Sandy Ridge North Carolina NC Stokes 169 36.49 -80.0859 +US 27052 Walnut Cove North Carolina NC Stokes 169 36.3189 -80.1484 +US 27007 Ararat North Carolina NC Surry 171 36.3859 -80.5895 +US 27017 Dobson North Carolina NC Surry 171 36.3698 -80.7101 +US 27024 Lowgap North Carolina NC Surry 171 36.503 -80.7889 +US 27030 Mount Airy North Carolina NC Surry 171 36.5007 -80.6119 +US 27031 White Plains North Carolina NC Surry 171 36.3994 -80.7081 +US 27041 Pilot Mountain North Carolina NC Surry 171 36.4109 -80.4921 +US 27047 Siloam North Carolina NC Surry 171 36.3002 -80.5772 +US 27049 Toast North Carolina NC Surry 171 36.5513 -80.6558 +US 27053 Westfield North Carolina NC Surry 171 36.4674 -80.3677 +US 28621 Elkin North Carolina NC Surry 171 36.2872 -80.8554 +US 28676 State Road North Carolina NC Surry 171 36.3422 -80.8653 +US 28702 Almond North Carolina NC Swain 173 35.4099 -83.4794 +US 28713 Bryson City North Carolina NC Swain 173 35.4241 -83.4392 +US 28719 Cherokee North Carolina NC Swain 173 35.5094 -83.3144 +US 28708 Balsam Grove North Carolina NC Transylvania 175 35.2298 -82.8779 +US 28712 Brevard North Carolina NC Transylvania 175 35.2208 -82.7404 +US 28718 Cedar Mountain North Carolina NC Transylvania 175 35.1508 -82.6374 +US 28747 Lake Toxaway North Carolina NC Transylvania 175 35.1451 -82.9191 +US 28766 Penrose North Carolina NC Transylvania 175 35.2524 -82.6222 +US 28768 Pisgah Forest North Carolina NC Transylvania 175 35.2599 -82.6695 +US 28772 Rosman North Carolina NC Transylvania 175 35.1592 -82.8383 +US 28774 Sapphire North Carolina NC Transylvania 175 35.0666 -83.0019 +US 27925 Columbia North Carolina NC Tyrrell 177 35.9057 -76.2345 +US 28079 Indian Trail North Carolina NC Union 179 35.0831 -80.6597 +US 28103 Marshville North Carolina NC Union 179 35.0167 -80.3781 +US 28108 Mineral Springs North Carolina NC Union 179 34.9163 -80.6404 +US 28110 Monroe North Carolina NC Union 179 35.0178 -80.5372 +US 28111 Monroe North Carolina NC Union 179 35.0112 -80.5587 +US 28112 Monroe North Carolina NC Union 179 34.8946 -80.554 +US 28173 Waxhaw North Carolina NC Union 179 34.9251 -80.7278 +US 28174 Wingate North Carolina NC Union 179 34.9847 -80.4476 +US 27536 Henderson North Carolina NC Vance 181 36.3301 -78.3981 +US 27537 Henderson North Carolina NC Vance 181 36.36 -78.3906 +US 27539 Apex North Carolina NC Vance County 181 35.7127 -78.821 +US 27544 Kittrell North Carolina NC Vance 181 36.2042 -78.4241 +US 27553 Manson North Carolina NC Vance 181 36.4603 -78.2952 +US 27556 Middleburg North Carolina NC Vance 181 36.4135 -78.3275 +US 27584 Townsville North Carolina NC Vance 181 36.5181 -78.4009 +US 27502 Apex North Carolina NC Wake 183 35.7225 -78.8408 +US 27511 Cary North Carolina NC Wake 183 35.7641 -78.7786 +US 27512 Cary North Carolina NC Wake 183 35.8084 -78.8395 +US 27513 Cary North Carolina NC Wake 183 35.7956 -78.7941 +US 27518 Cary North Carolina NC Wake 183 35.7299 -78.7735 +US 27519 Cary North Carolina NC Wake 183 35.8072 -78.887 +US 27523 Apex North Carolina NC Wake 183 35.7225 -78.8408 +US 27526 Fuquay Varina North Carolina NC Wake 183 35.58 -78.7908 +US 27529 Garner North Carolina NC Wake 183 35.6813 -78.5975 +US 27539 Apex North Carolina NC Wake 183 35.7225 -78.8408 +US 27540 Holly Springs North Carolina NC Wake 183 35.6263 -78.8458 +US 27545 Knightdale North Carolina NC Wake 183 35.7789 -78.4898 +US 27560 Morrisville North Carolina NC Wake 183 35.8344 -78.8466 +US 27562 New Hill North Carolina NC Wake 183 35.6809 -78.9365 +US 27571 Rolesville North Carolina NC Wake 183 35.9156 -78.4658 +US 27587 Wake Forest North Carolina NC Wake 183 35.9815 -78.5392 +US 27588 Wake Forest North Carolina NC Wake 183 35.9731 -78.4508 +US 27591 Wendell North Carolina NC Wake 183 35.798 -78.3926 +US 27592 Willow Spring North Carolina NC Wake 183 35.547 -78.6717 +US 27597 Zebulon North Carolina NC Wake 183 35.8321 -78.3174 +US 27601 Raleigh North Carolina NC Wake 183 35.7727 -78.6324 +US 27602 Raleigh North Carolina NC Wake 183 35.7587 -78.6711 +US 27603 Raleigh North Carolina NC Wake 183 35.7076 -78.6563 +US 27604 Raleigh North Carolina NC Wake 183 35.8334 -78.5799 +US 27605 Raleigh North Carolina NC Wake 183 35.7908 -78.653 +US 27606 Raleigh North Carolina NC Wake 183 35.7645 -78.7112 +US 27607 Raleigh North Carolina NC Wake 183 35.8014 -78.6877 +US 27608 Raleigh North Carolina NC Wake 183 35.8077 -78.6463 +US 27609 Raleigh North Carolina NC Wake 183 35.848 -78.6317 +US 27610 Raleigh North Carolina NC Wake 183 35.7667 -78.6008 +US 27611 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27612 Raleigh North Carolina NC Wake 183 35.852 -78.6841 +US 27613 Raleigh North Carolina NC Wake 183 35.8949 -78.7051 +US 27614 Raleigh North Carolina NC Wake 183 35.9457 -78.6433 +US 27615 Raleigh North Carolina NC Wake 183 35.8887 -78.6393 +US 27616 Raleigh North Carolina NC Wake 183 35.8673 -78.5381 +US 27617 Raleigh North Carolina NC Wake 183 35.9034 -78.7447 +US 27619 Raleigh North Carolina NC Wake 183 35.8515 -78.6314 +US 27620 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27621 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27622 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27623 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27624 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27625 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27626 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27627 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27628 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27629 Raleigh North Carolina NC Wake 183 35.8175 -78.5524 +US 27634 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27635 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27636 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27640 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27650 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27656 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27658 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27661 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27668 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27675 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27676 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27690 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27695 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27697 Raleigh North Carolina NC Wake 183 35.8822 -78.4134 +US 27698 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27699 Raleigh North Carolina NC Wake 183 35.7977 -78.6253 +US 27551 Macon North Carolina NC Warren 185 36.507 -77.9975 +US 27563 Norlina North Carolina NC Warren 185 36.4754 -78.1895 +US 27570 Ridgeway North Carolina NC Warren 185 36.3737 -78.1109 +US 27586 Vaughan North Carolina NC Warren 185 36.3737 -78.1109 +US 27589 Warrenton North Carolina NC Warren 185 36.3539 -78.1594 +US 27594 Wise North Carolina NC Warren 185 36.3737 -78.1109 +US 27928 Creswell North Carolina NC Washington 187 35.8653 -76.4196 +US 27962 Plymouth North Carolina NC Washington 187 35.8508 -76.7431 +US 27970 Roper North Carolina NC Washington 187 35.8994 -76.5809 +US 28605 Blowing Rock North Carolina NC Watauga 189 36.1355 -81.6996 +US 28607 Boone North Carolina NC Watauga 189 36.2142 -81.666 +US 28608 Boone North Carolina NC Watauga 189 36.2213 -81.7134 +US 28618 Deep Gap North Carolina NC Watauga 189 36.2136 -81.5163 +US 28679 Sugar Grove North Carolina NC Watauga 189 36.2627 -81.8441 +US 28686 Triplett North Carolina NC Watauga County 189 36.1833 -81.4895 +US 28691 Valle Crucis North Carolina NC Watauga 189 36.2092 -81.7789 +US 28692 Vilas North Carolina NC Watauga 189 36.2574 -81.7652 +US 28698 Zionville North Carolina NC Watauga 189 36.3194 -81.7476 +US 27530 Goldsboro North Carolina NC Wayne 191 35.3683 -78.0929 +US 27531 Goldsboro North Carolina NC Wayne 191 35.343 -77.9644 +US 27532 Goldsboro North Carolina NC Wayne 191 35.372 -78.0524 +US 27533 Goldsboro North Carolina NC Wayne 191 35.372 -78.0524 +US 27534 Goldsboro North Carolina NC Wayne 191 35.3664 -77.9221 +US 27830 Fremont North Carolina NC Wayne 191 35.5553 -77.958 +US 27863 Pikeville North Carolina NC Wayne 191 35.4929 -77.9578 +US 28333 Dudley North Carolina NC Wayne 191 35.2926 -78.0273 +US 28365 Mount Olive North Carolina NC Wayne 191 35.2109 -78.0983 +US 28578 Seven Springs North Carolina NC Wayne 191 35.2105 -77.9146 +US 28606 Boomer North Carolina NC Wilkes 193 36.0552 -81.3137 +US 28624 Ferguson North Carolina NC Wilkes 193 36.1283 -81.3864 +US 28635 Hays North Carolina NC Wilkes 193 36.31 -81.1161 +US 28649 Mc Grady North Carolina NC Wilkes 193 36.3103 -81.1912 +US 28651 Millers Creek North Carolina NC Wilkes 193 36.2119 -81.2485 +US 28654 Moravian Falls North Carolina NC Wilkes 193 36.0788 -81.1781 +US 28656 North Wilkesboro North Carolina NC Wilkes 193 36.2384 -81.046 +US 28659 North Wilkesboro North Carolina NC Wilkes 193 36.2017 -81.1286 +US 28665 Purlear North Carolina NC Wilkes 193 36.1964 -81.3528 +US 28669 Roaring River North Carolina NC Wilkes 193 36.1916 -81.0004 +US 28670 Ronda North Carolina NC Wilkes 193 36.2059 -80.927 +US 28674 North Wilkesboro North Carolina NC Wilkes 193 36.2162 -81.2072 +US 28683 Thurmond North Carolina NC Wilkes 193 36.3562 -80.9317 +US 28685 Traphill North Carolina NC Wilkes 193 36.3301 -81.0151 +US 28695 Whitehead North Carolina NC Wilkes County 193 36.4671 -81.1529 +US 28696 Millers Creek North Carolina NC Wilkes County 193 36.2443 -81.2982 +US 28697 Wilkesboro North Carolina NC Wilkes 193 36.1359 -81.1573 +US 27813 Black Creek North Carolina NC Wilson 195 35.6165 -77.9352 +US 27822 Elm City North Carolina NC Wilson 195 35.811 -77.856 +US 27851 Lucama North Carolina NC Wilson 195 35.6415 -78.0197 +US 27873 Saratoga North Carolina NC Wilson 195 35.6495 -77.7918 +US 27880 Sims North Carolina NC Wilson 195 35.7435 -78.0859 +US 27883 Stantonsburg North Carolina NC Wilson 195 35.594 -77.8378 +US 27893 Wilson North Carolina NC Wilson 195 35.727 -77.9227 +US 27894 Wilson North Carolina NC Wilson 195 35.7158 -77.9043 +US 27895 Wilson North Carolina NC Wilson 195 35.7199 -77.9267 +US 27896 Wilson North Carolina NC Wilson 195 35.7715 -77.973 +US 27011 Boonville North Carolina NC Yadkin 197 36.234 -80.6357 +US 27018 East Bend North Carolina NC Yadkin 197 36.2032 -80.5284 +US 27020 Hamptonville North Carolina NC Yadkin 197 36.1242 -80.8137 +US 27055 Yadkinville North Carolina NC Yadkin 197 36.1277 -80.653 +US 28642 Jonesville North Carolina NC Yadkin 197 36.2286 -80.787 +US 28714 Burnsville North Carolina NC Yancey 199 35.903 -82.2876 +US 28740 Green Mountain North Carolina NC Yancey 199 35.9956 -82.2879 +US 28755 Micaville North Carolina NC Yancey 199 35.8392 -82.1962 +US 58639 Hettinger North Dakota ND Adams 001 46.0578 -102.7851 +US 58649 Reeder North Dakota ND Adams 001 46.1116 -102.9405 +US 58031 Fingal North Dakota ND Barnes 003 46.7728 -97.7812 +US 58049 Kathryn North Dakota ND Barnes 003 46.7177 -97.9763 +US 58062 Nome North Dakota ND Barnes 003 46.6748 -97.7911 +US 58063 Oriska North Dakota ND Barnes 003 46.9433 -97.7853 +US 58065 Pillsbury North Dakota ND Barnes 003 47.1862 -97.7605 +US 58072 Valley City North Dakota ND Barnes 003 46.9268 -98.0033 +US 58429 Dazey North Dakota ND Barnes 003 47.1828 -98.1616 +US 58432 Eckelson North Dakota ND Barnes 003 46.8925 -98.3755 +US 58461 Litchville North Dakota ND Barnes 003 46.6888 -98.2033 +US 58479 Rogers North Dakota ND Barnes 003 47.0741 -98.2136 +US 58480 Sanborn North Dakota ND Barnes 003 46.9271 -98.2336 +US 58492 Wimbledon North Dakota ND Barnes 003 47.1438 -98.4329 +US 58320 Brinsmade North Dakota ND Benson 005 48.2864 -99.4047 +US 58332 Esmond North Dakota ND Benson 005 48.0419 -99.7617 +US 58335 Fort Totten North Dakota ND Benson 005 47.9811 -99.0264 +US 58343 Knox North Dakota ND Benson 005 48.3388 -99.6713 +US 58346 Leeds North Dakota ND Benson 005 48.1653 -99.4325 +US 58348 Maddock North Dakota ND Benson 005 47.9991 -99.5358 +US 58351 Minnewaukan North Dakota ND Benson 005 48.0698 -99.2743 +US 58357 Oberon North Dakota ND Benson 005 47.9487 -99.1401 +US 58370 Saint Michael North Dakota ND Benson 005 47.9774 -98.9181 +US 58379 Tokio North Dakota ND Benson 005 48.1088 -99.1868 +US 58381 Warwick North Dakota ND Benson 005 47.8913 -98.681 +US 58386 York North Dakota ND Benson 005 48.2565 -99.6025 +US 58627 Fairfield North Dakota ND Billings 007 47.2329 -103.3056 +US 58645 Medora North Dakota ND Billings 007 46.9387 -103.5632 +US 58318 Bottineau North Dakota ND Bottineau 009 48.8451 -100.4329 +US 58360 Overly North Dakota ND Bottineau County 009 48.679 -100.176 +US 58384 Willow City North Dakota ND Bottineau 009 48.6062 -100.2968 +US 58711 Antler North Dakota ND Bottineau 009 48.9585 -101.3338 +US 58739 Gardena North Dakota ND Bottineau County 009 48.6836 -100.4843 +US 58748 Kramer North Dakota ND Bottineau 009 48.6867 -100.6716 +US 58750 Lansford North Dakota ND Bottineau 009 48.6254 -101.3858 +US 58760 Maxbass North Dakota ND Bottineau 009 48.7722 -101.2563 +US 58762 Newburg North Dakota ND Bottineau 009 48.6982 -100.9681 +US 58783 Souris North Dakota ND Bottineau 009 48.8738 -100.7359 +US 58793 Westhope North Dakota ND Bottineau 009 48.9051 -101.0338 +US 58623 Bowman North Dakota ND Bowman 011 46.1733 -103.402 +US 58651 Rhame North Dakota ND Bowman 011 46.1664 -103.7079 +US 58653 Scranton North Dakota ND Bowman 011 46.0916 -103.1354 +US 58721 Bowbells North Dakota ND Burke 013 48.8378 -102.2839 +US 58727 Columbus North Dakota ND Burke 013 48.8434 -102.798 +US 58737 Flaxton North Dakota ND Burke 013 48.8772 -102.3823 +US 58752 Lignite North Dakota ND Burke 013 48.8481 -102.5542 +US 58772 Portal North Dakota ND Burke 013 48.9758 -102.548 +US 58773 Powers Lake North Dakota ND Burke 013 48.6551 -102.6795 +US 58412 Arena North Dakota ND Burleigh County 015 47.1598 -100.1758 +US 58477 Regan North Dakota ND Burleigh 015 47.1527 -100.5224 +US 58494 Wing North Dakota ND Burleigh 015 47.1519 -100.3072 +US 58501 Bismarck North Dakota ND Burleigh 015 46.8234 -100.7748 +US 58502 Bismarck North Dakota ND Burleigh 015 46.8887 -100.6819 +US 58503 Bismarck North Dakota ND Burleigh 015 46.8394 -100.7843 +US 58504 Bismarck North Dakota ND Burleigh 015 46.7231 -100.678 +US 58505 Bismarck North Dakota ND Burleigh 015 46.8165 -100.7805 +US 58506 Bismarck North Dakota ND Burleigh 015 46.9805 -100.5201 +US 58507 Bismarck North Dakota ND Burleigh 015 46.9805 -100.5201 +US 58521 Baldwin North Dakota ND Burleigh 015 46.9543 -100.7615 +US 58532 Driscoll North Dakota ND Burleigh 015 46.8511 -100.1441 +US 58553 Mckenzie North Dakota ND Burleigh 015 46.8311 -100.3995 +US 58558 Menoken North Dakota ND Burleigh 015 46.861 -100.5275 +US 58560 Moffit North Dakota ND Burleigh 015 46.6757 -100.2975 +US 58572 Sterling North Dakota ND Burleigh 015 46.8436 -100.2744 +US 58002 Absaraka North Dakota ND Cass 017 46.9763 -97.4069 +US 58003 Alice North Dakota ND Cass County 017 46.7689 -97.5318 +US 58004 Amenia North Dakota ND Cass 017 47.0194 -97.2048 +US 58005 Argusville North Dakota ND Cass 017 47.1066 -96.9058 +US 58006 Arthur North Dakota ND Cass 017 47.1048 -97.2097 +US 58007 Ayr North Dakota ND Cass 017 47.0139 -97.4629 +US 58011 Buffalo North Dakota ND Cass 017 46.9264 -97.5352 +US 58012 Casselton North Dakota ND Cass 017 46.8992 -97.2138 +US 58014 Chaffee North Dakota ND Cass 017 46.775 -97.3524 +US 58021 Davenport North Dakota ND Cass 017 46.6968 -97.0871 +US 58029 Erie North Dakota ND Cass 017 47.1128 -97.3849 +US 58036 Gardner North Dakota ND Cass 017 47.1252 -96.9901 +US 58038 Grandin North Dakota ND Cass 017 47.2158 -97.0207 +US 58042 Harwood North Dakota ND Cass 017 46.9565 -96.9654 +US 58047 Horace North Dakota ND Cass 017 46.7101 -96.8851 +US 58048 Hunter North Dakota ND Cass 017 47.1913 -97.2516 +US 58051 Kindred North Dakota ND Cass 017 46.6543 -97.0049 +US 58052 Leonard North Dakota ND Cass 017 46.6593 -97.2725 +US 58059 Mapleton North Dakota ND Cass 017 46.8614 -97.1157 +US 58064 Page North Dakota ND Cass 017 47.1515 -97.5967 +US 58071 Tower City North Dakota ND Cass 017 46.9119 -97.6594 +US 58078 West Fargo North Dakota ND Cass 017 46.8907 -96.9258 +US 58079 Wheatland North Dakota ND Cass 017 46.8326 -97.3461 +US 58102 Fargo North Dakota ND Cass 017 46.9209 -96.8318 +US 58103 Fargo North Dakota ND Cass 017 46.8564 -96.8123 +US 58104 Fargo North Dakota ND Cass 017 46.7932 -96.8397 +US 58105 Fargo North Dakota ND Cass 017 46.8954 -96.8078 +US 58106 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58107 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58108 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58109 Fargo North Dakota ND Cass 017 46.8235 -96.8148 +US 58121 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58122 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58123 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58124 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58125 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58126 Fargo North Dakota ND Cass 017 46.9346 -97.2297 +US 58239 Hannah North Dakota ND Cavalier 019 48.9594 -98.7237 +US 58249 Langdon North Dakota ND Cavalier 019 48.7866 -98.3566 +US 58255 Maida North Dakota ND Cavalier 019 48.7718 -98.4641 +US 58260 Milton North Dakota ND Cavalier 019 48.617 -98.0183 +US 58269 Osnabrock North Dakota ND Cavalier 019 48.6419 -98.2327 +US 58281 Wales North Dakota ND Cavalier 019 48.9216 -98.5596 +US 58311 Alsen North Dakota ND Cavalier 019 48.6525 -98.5795 +US 58323 Calvin North Dakota ND Cavalier 019 48.851 -98.8808 +US 58352 Munich North Dakota ND Cavalier 019 48.6694 -98.8355 +US 58355 Nekoma North Dakota ND Cavalier 019 48.7718 -98.4641 +US 58372 Sarles North Dakota ND Cavalier 019 48.9459 -98.9606 +US 58436 Ellendale North Dakota ND Dickey 021 46.0073 -98.5138 +US 58439 Forbes North Dakota ND Dickey 021 46.0109 -98.8124 +US 58441 Fullerton North Dakota ND Dickey 021 46.1951 -98.3882 +US 58474 Oakes North Dakota ND Dickey 021 46.1095 -98.2257 +US 58730 Crosby North Dakota ND Divide 023 48.8836 -103.274 +US 58765 Noonan North Dakota ND Divide 023 48.8856 -103.0098 +US 58833 Ambrose North Dakota ND Divide 023 48.8165 -103.4673 +US 58844 Fortuna North Dakota ND Divide 023 48.8813 -103.7415 +US 58625 Dodge North Dakota ND Dunn 025 47.3049 -102.1985 +US 58626 Dunn Center North Dakota ND Dunn 025 47.3453 -102.5892 +US 58636 Halliday North Dakota ND Dunn 025 47.3517 -102.3368 +US 58640 Killdeer North Dakota ND Dunn 025 47.4109 -102.7762 +US 58642 Manning North Dakota ND Dunn 025 47.1258 -102.6806 +US 58644 Marshall North Dakota ND Dunn 025 47.4021 -102.6221 +US 58356 New Rockford North Dakota ND Eddy 027 47.7174 -98.8987 +US 58374 Sheyenne North Dakota ND Eddy 027 47.8184 -99.0583 +US 58524 Braddock North Dakota ND Emmons 029 46.5603 -100.1075 +US 58542 Hague North Dakota ND Emmons 029 46.0589 -99.9745 +US 58544 Hazelton North Dakota ND Emmons 029 46.4875 -100.2733 +US 58549 Kintyre North Dakota ND Emmons 029 46.5736 -99.9705 +US 58552 Linton North Dakota ND Emmons 029 46.1855 -100.2331 +US 58573 Strasburg North Dakota ND Emmons 029 46.0979 -100.2119 +US 58421 Carrington North Dakota ND Foster 031 47.4573 -98.8933 +US 58443 Glenfield North Dakota ND Foster 031 47.4569 -98.6916 +US 58445 Grace City North Dakota ND Foster 031 47.5536 -98.8095 +US 58464 Mchenry North Dakota ND Foster 031 47.5604 -98.5726 +US 58621 Beach North Dakota ND Golden Valley 033 46.9324 -103.9843 +US 58632 Golva North Dakota ND Golden Valley 033 46.7075 -103.9575 +US 58654 Sentinel Butte North Dakota ND Golden Valley 033 46.8305 -103.8001 +US 58657 Trotters North Dakota ND Golden Valley County 033 47.1096 -103.8556 +US 58201 Grand Forks North Dakota ND Grand Forks 035 47.901 -97.0446 +US 58202 Grand Forks North Dakota ND Grand Forks 035 47.9215 -97.0735 +US 58203 Grand Forks North Dakota ND Grand Forks 035 47.9272 -97.0672 +US 58204 Grand Forks Afb North Dakota ND Grand Forks 035 47.9679 -97.3675 +US 58205 Grand Forks Afb North Dakota ND Grand Forks 035 47.9515 -97.379 +US 58206 Grand Forks North Dakota ND Grand Forks 035 47.9335 -97.3944 +US 58207 Grand Forks North Dakota ND Grand Forks 035 47.9335 -97.3944 +US 58208 Grand Forks North Dakota ND Grand Forks 035 47.9335 -97.3944 +US 58214 Arvilla North Dakota ND Grand Forks 035 47.9093 -97.4871 +US 58228 Emerado North Dakota ND Grand Forks 035 47.9214 -97.263 +US 58235 Gilby North Dakota ND Grand Forks 035 48.0858 -97.5141 +US 58244 Inkster North Dakota ND Grand Forks 035 48.1079 -97.6831 +US 58251 Larimore North Dakota ND Grand Forks 035 47.9115 -97.6264 +US 58256 Manvel North Dakota ND Grand Forks 035 48.0853 -97.1943 +US 58258 Mekinock North Dakota ND Grand Forks 035 48.0074 -97.4305 +US 58266 Niagara North Dakota ND Grand Forks 035 47.9848 -97.8334 +US 58267 Northwood North Dakota ND Grand Forks 035 47.7591 -97.6038 +US 58275 Reynolds North Dakota ND Grand Forks 035 47.7068 -97.2092 +US 58278 Thompson North Dakota ND Grand Forks 035 47.7766 -97.0962 +US 58529 Carson North Dakota ND Grant 037 46.4624 -101.5387 +US 58533 Elgin North Dakota ND Grant 037 46.3679 -101.7558 +US 58551 Leith North Dakota ND Grant County 037 46.2349 -101.4555 +US 58562 New Leipzig North Dakota ND Grant 037 46.3823 -101.9619 +US 58564 Raleigh North Dakota ND Grant 037 46.3352 -101.2827 +US 58569 Shields North Dakota ND Grant 037 46.1838 -101.2589 +US 58416 Binford North Dakota ND Griggs 039 47.5739 -98.3546 +US 58425 Cooperstown North Dakota ND Griggs 039 47.4527 -98.1533 +US 58448 Hannaford North Dakota ND Griggs 039 47.3786 -98.3502 +US 58452 Jessie North Dakota ND Griggs 039 47.4565 -98.2304 +US 58484 Sutton North Dakota ND Griggs 039 47.3854 -98.432 +US 58646 Mott North Dakota ND Hettinger 041 46.3696 -102.327 +US 58647 New England North Dakota ND Hettinger 041 46.5128 -102.8358 +US 58650 Regent North Dakota ND Hettinger 041 46.4235 -102.5684 +US 58428 Dawson North Dakota ND Kidder 043 46.8296 -99.7635 +US 58471 Monango North Dakota ND Kidder County 043 46.1936 -98.579 +US 58475 Pettibone North Dakota ND Kidder 043 47.12 -99.5279 +US 58478 Robinson North Dakota ND Kidder 043 47.1749 -99.7457 +US 58482 Steele North Dakota ND Kidder 043 46.8524 -99.9336 +US 58487 Tappen North Dakota ND Kidder 043 46.8336 -99.6019 +US 58488 Tuttle North Dakota ND Kidder 043 47.1626 -99.9873 +US 58411 Alfred North Dakota ND LaMoure County 045 46.5859 -98.9147 +US 58415 Berlin North Dakota ND LaMoure 045 46.4008 -98.5233 +US 58431 Dickey North Dakota ND LaMoure 045 46.5426 -98.4682 +US 58433 Edgeley North Dakota ND LaMoure 045 46.412 -98.7131 +US 58454 Jud North Dakota ND LaMoure 045 46.5511 -98.8667 +US 58456 Kulm North Dakota ND LaMoure 045 46.3073 -98.9427 +US 58458 Lamoure North Dakota ND LaMoure 045 46.3844 -98.3587 +US 58466 Marion North Dakota ND LaMoure 045 46.5514 -98.369 +US 58490 Verona North Dakota ND LaMoure 045 46.3712 -98.0895 +US 58440 Fredonia North Dakota ND Logan 047 46.3701 -99.1733 +US 58442 Gackle North Dakota ND Logan 047 46.5913 -99.2191 +US 58561 Napoleon North Dakota ND Logan 047 46.4867 -99.7725 +US 58710 Anamoose North Dakota ND McHenry 049 47.8703 -100.2529 +US 58712 Balfour North Dakota ND McHenry 049 47.9685 -100.5209 +US 58713 Bantry North Dakota ND McHenry 049 48.5351 -100.5954 +US 58731 Deering North Dakota ND McHenry 049 48.4057 -101.0337 +US 58736 Drake North Dakota ND McHenry 049 47.9024 -100.379 +US 58741 Granville North Dakota ND McHenry 049 48.2566 -100.8082 +US 58744 Karlsruhe North Dakota ND McHenry 049 48.1009 -100.5742 +US 58747 Kief North Dakota ND McHenry 049 47.8186 -100.5215 +US 58768 Norwich North Dakota ND McHenry 049 48.2491 -100.9712 +US 58788 Towner North Dakota ND McHenry 049 48.3636 -100.4854 +US 58789 Upham North Dakota ND McHenry 049 48.5816 -100.7323 +US 58790 Velva North Dakota ND McHenry 049 48.0675 -100.9346 +US 58792 Voltaire North Dakota ND McHenry 049 47.986 -100.7988 +US 58413 Ashley North Dakota ND McIntosh 051 46.0537 -99.3164 +US 58460 Lehr North Dakota ND McIntosh 051 46.2586 -99.3491 +US 58489 Venturia North Dakota ND McIntosh 051 46.028 -99.6498 +US 58495 Wishek North Dakota ND McIntosh 051 46.1917 -99.6131 +US 58581 Zeeland North Dakota ND McIntosh 051 46.0055 -99.7725 +US 58634 Grassy Butte North Dakota ND McKenzie 053 47.4431 -103.2944 +US 58757 Mandaree North Dakota ND McKenzie 053 47.7374 -103.2984 +US 58831 Alexander North Dakota ND McKenzie 053 47.7947 -103.6546 +US 58835 Arnegard North Dakota ND McKenzie 053 47.8088 -103.4538 +US 58838 Cartwright North Dakota ND McKenzie 053 47.7992 -103.9487 +US 58847 Keene North Dakota ND McKenzie 053 47.9405 -102.8906 +US 58854 Watford City North Dakota ND McKenzie 053 47.8043 -103.2582 +US 58531 Coleharbor North Dakota ND McLean 055 47.5196 -101.2332 +US 58540 Garrison North Dakota ND McLean 055 47.6675 -101.6142 +US 58559 Mercer North Dakota ND McLean 055 47.4858 -100.7171 +US 58565 Riverdale North Dakota ND McLean 055 47.4868 -101.3831 +US 58575 Turtle Lake North Dakota ND McLean 055 47.5414 -100.8814 +US 58576 Underwood North Dakota ND McLean 055 47.4602 -101.1898 +US 58577 Washburn North Dakota ND McLean 055 47.3114 -101.0116 +US 58579 Wilton North Dakota ND McLean 055 47.1709 -100.7944 +US 58716 Benedict North Dakota ND McLean 055 47.7865 -101.0579 +US 58723 Butte North Dakota ND McLean 055 47.8119 -100.6604 +US 58759 Max North Dakota ND McLean 055 47.8156 -101.2932 +US 58775 Roseglen North Dakota ND McLean 055 47.696 -101.822 +US 58778 Ruso North Dakota ND McLean 055 47.7622 -100.8754 +US 58523 Beulah North Dakota ND Mercer 057 47.2707 -101.8075 +US 58541 Golden Valley North Dakota ND Mercer 057 47.2938 -102.0612 +US 58545 Hazen North Dakota ND Mercer 057 47.3271 -101.6107 +US 58571 Stanton North Dakota ND Mercer 057 47.3128 -101.3899 +US 58580 Zap North Dakota ND Mercer 057 47.2897 -101.9256 +US 58520 Almont North Dakota ND Morton 059 46.7046 -101.5221 +US 58535 Flasher North Dakota ND Morton 059 46.5998 -101.3166 +US 58537 Fort Rice North Dakota ND Morton County 059 46.5632 -100.6939 +US 58554 Mandan North Dakota ND Morton 059 46.8306 -100.9092 +US 58563 New Salem North Dakota ND Morton 059 46.806 -101.4291 +US 58566 Saint Anthony North Dakota ND Morton 059 46.5888 -100.8972 +US 58631 Glen Ullin North Dakota ND Morton 059 46.8233 -101.8223 +US 58638 Hebron North Dakota ND Morton 059 46.8936 -102.0367 +US 58763 New Town North Dakota ND Mountrail 061 47.9718 -102.4716 +US 58769 Palermo North Dakota ND Mountrail 061 48.3396 -102.24 +US 58770 Parshall North Dakota ND Mountrail 061 47.956 -102.1427 +US 58771 Plaza North Dakota ND Mountrail 061 48.0242 -101.9643 +US 58776 Ross North Dakota ND Mountrail 061 48.3162 -102.5307 +US 58784 Stanley North Dakota ND Mountrail 061 48.3458 -102.4185 +US 58794 White Earth North Dakota ND Mountrail 061 48.2994 -102.7701 +US 58212 Aneta North Dakota ND Nelson 063 47.6993 -97.9814 +US 58224 Dahlen North Dakota ND Nelson 063 48.1599 -97.9573 +US 58254 Mcville North Dakota ND Nelson 063 47.8564 -98.1344 +US 58259 Michigan North Dakota ND Nelson 063 48.0204 -98.1186 +US 58272 Petersburg North Dakota ND Nelson 063 47.998 -97.984 +US 58344 Lakota North Dakota ND Nelson 063 47.972 -98.3246 +US 58361 Pekin North Dakota ND Nelson 063 47.7696 -98.326 +US 58380 Tolna North Dakota ND Nelson 063 47.8462 -98.4512 +US 58530 Center North Dakota ND Oliver 065 47.1459 -101.1594 +US 58216 Bathgate North Dakota ND Pembina 067 48.8686 -97.4832 +US 58220 Cavalier North Dakota ND Pembina 067 48.7935 -97.7143 +US 58222 Crystal North Dakota ND Pembina 067 48.5924 -97.6738 +US 58225 Drayton North Dakota ND Pembina 067 48.6104 -97.2156 +US 58236 Glasston North Dakota ND Pembina 067 48.7201 -97.4696 +US 58238 Hamilton North Dakota ND Pembina 067 48.7942 -97.4693 +US 58241 Hensel North Dakota ND Pembina 067 48.7203 -97.6993 +US 58262 Mountain North Dakota ND Pembina 067 48.6931 -97.8841 +US 58265 Neche North Dakota ND Pembina 067 48.9796 -97.5427 +US 58271 Pembina North Dakota ND Pembina 067 48.859 -97.2886 +US 58276 Saint Thomas North Dakota ND Pembina 067 48.6252 -97.4545 +US 58282 Walhalla North Dakota ND Pembina 067 48.8808 -97.7974 +US 58313 Balta North Dakota ND Pierce 069 48.1042 -99.9921 +US 58315 Barton North Dakota ND Pierce County 069 48.4611 -100.2044 +US 58359 Orrin North Dakota ND Pierce 069 48.0895 -100.1644 +US 58368 Rugby North Dakota ND Pierce 069 48.2545 -99.9899 +US 58385 Wolford North Dakota ND Pierce 069 48.4809 -99.6628 +US 58301 Devils Lake North Dakota ND Ramsey 071 48.1132 -98.8616 +US 58321 Brocket North Dakota ND Ramsey 071 48.2255 -98.3559 +US 58325 Churchs Ferry North Dakota ND Ramsey 071 48.2862 -99.1412 +US 58327 Crary North Dakota ND Ramsey 071 48.091 -98.5731 +US 58328 Doyon North Dakota ND Ramsey County 071 48.0828 -98.5001 +US 58330 Edmore North Dakota ND Ramsey 071 48.4308 -98.4458 +US 58338 Hampden North Dakota ND Ramsey 071 48.5229 -98.6543 +US 58345 Lawton North Dakota ND Ramsey 071 48.3033 -98.4142 +US 58362 Penn North Dakota ND Ramsey 071 48.2271 -99.0655 +US 58377 Starkweather North Dakota ND Ramsey 071 48.4488 -98.8539 +US 58382 Webster North Dakota ND Ramsey 071 48.3229 -98.8739 +US 58027 Enderlin North Dakota ND Ransom 073 46.6079 -97.6106 +US 58033 Fort Ransom North Dakota ND Ransom 073 46.4494 -97.9091 +US 58054 Lisbon North Dakota ND Ransom 073 46.456 -97.6369 +US 58057 Mcleod North Dakota ND Ransom 073 46.4103 -97.3139 +US 58068 Sheldon North Dakota ND Ransom 073 46.5548 -97.4543 +US 58740 Glenburn North Dakota ND Renville 075 48.4718 -101.2297 +US 58761 Mohall North Dakota ND Renville 075 48.7269 -101.6058 +US 58782 Sherwood North Dakota ND Renville 075 48.9576 -101.697 +US 58787 Tolley North Dakota ND Renville 075 48.7969 -101.8559 +US 58001 Abercrombie North Dakota ND Richland 077 46.4479 -96.7278 +US 58008 Barney North Dakota ND Richland 077 46.2496 -96.9708 +US 58015 Christine North Dakota ND Richland 077 46.5522 -96.7909 +US 58018 Colfax North Dakota ND Richland 077 46.4574 -96.8737 +US 58030 Fairmount North Dakota ND Richland 077 46.0427 -96.6308 +US 58039 Great Bend North Dakota ND Richland 077 46.1544 -96.8171 +US 58041 Hankinson North Dakota ND Richland 077 46.0558 -96.8991 +US 58053 Lidgerwood North Dakota ND Richland 077 46.0641 -97.1799 +US 58058 Mantador North Dakota ND Richland 077 46.1599 -96.957 +US 58061 Mooreton North Dakota ND Richland 077 46.2615 -96.8507 +US 58074 Wahpeton North Dakota ND Richland 077 46.2833 -96.9176 +US 58075 Wahpeton North Dakota ND Richland 077 46.3366 -96.7921 +US 58076 Wahpeton North Dakota ND Richland 077 46.2718 -96.6081 +US 58077 Walcott North Dakota ND Richland 077 46.5835 -97.0014 +US 58081 Wyndmere North Dakota ND Richland 077 46.2891 -97.1289 +US 58310 Agate North Dakota ND Rolette 079 48.7709 -99.7727 +US 58316 Belcourt North Dakota ND Rolette 079 48.8379 -99.7688 +US 58329 Dunseith North Dakota ND Rolette 079 48.8561 -100.0241 +US 58353 Mylo North Dakota ND Rolette 079 48.6329 -99.5957 +US 58366 Rolette North Dakota ND Rolette 079 48.7009 -99.8785 +US 58367 Rolla North Dakota ND Rolette 079 48.8594 -99.6134 +US 58369 Saint John North Dakota ND Rolette 079 48.9366 -99.7648 +US 58013 Cayuga North Dakota ND Sargent 081 46.1326 -97.4059 +US 58017 Cogswell North Dakota ND Sargent 081 46.0659 -97.8207 +US 58032 Forman North Dakota ND Sargent 081 46.0721 -97.6986 +US 58040 Gwinner North Dakota ND Sargent 081 46.1527 -97.7677 +US 58043 Havana North Dakota ND Sargent 081 45.9644 -97.6094 +US 58060 Milnor North Dakota ND Sargent 081 46.2007 -97.4772 +US 58067 Rutland North Dakota ND Sargent 081 46.0738 -97.5483 +US 58069 Stirum North Dakota ND Sargent 081 46.2519 -97.8326 +US 58430 Denhoff North Dakota ND Sheridan 083 47.5709 -100.263 +US 58444 Goodrich North Dakota ND Sheridan 083 47.471 -100.119 +US 58463 Mcclusky North Dakota ND Sheridan 083 47.4896 -100.452 +US 58758 Martin North Dakota ND Sheridan 083 47.7781 -100.1225 +US 58528 Cannon Ball North Dakota ND Sioux 085 46.3874 -100.5975 +US 58538 Fort Yates North Dakota ND Sioux 085 46.0905 -100.6516 +US 58568 Selfridge North Dakota ND Sioux 085 46.0351 -101.1502 +US 58570 Solen North Dakota ND Sioux 085 46.3656 -100.7831 +US 58620 Amidon North Dakota ND Slope 087 46.456 -103.2647 +US 58643 Marmarth North Dakota ND Slope 087 46.3254 -103.88 +US 58601 Dickinson North Dakota ND Stark 089 46.8057 -102.7565 +US 58602 Dickinson North Dakota ND Stark 089 46.8202 -102.6639 +US 58622 Belfield North Dakota ND Stark 089 46.8198 -103.1261 +US 58630 Gladstone North Dakota ND Stark 089 46.8152 -102.5274 +US 58641 Lefor North Dakota ND Stark 089 46.6684 -102.4986 +US 58652 Richardton North Dakota ND Stark 089 46.8426 -102.292 +US 58655 South Heart North Dakota ND Stark 089 46.8127 -103.0162 +US 58656 Taylor North Dakota ND Stark 089 46.9284 -102.3756 +US 58046 Hope North Dakota ND Steele 091 47.3237 -97.7134 +US 58056 Luverne North Dakota ND Steele 091 47.2319 -97.9314 +US 58230 Finley North Dakota ND Steele 091 47.5306 -97.7442 +US 58277 Sharon North Dakota ND Steele 091 47.6062 -97.9051 +US 58401 Jamestown North Dakota ND Stutsman 093 46.921 -98.7455 +US 58402 Jamestown North Dakota ND Stutsman 093 46.9788 -98.96 +US 58405 Jamestown North Dakota ND Stutsman 093 46.9133 -98.6996 +US 58420 Buchanan North Dakota ND Stutsman 093 47.0051 -98.9007 +US 58424 Cleveland North Dakota ND Stutsman 093 46.8931 -99.1288 +US 58426 Courtenay North Dakota ND Stutsman 093 47.2272 -98.5489 +US 58455 Kensal North Dakota ND Stutsman 093 47.2726 -98.7206 +US 58467 Medina North Dakota ND Stutsman 093 46.892 -99.3106 +US 58472 Montpelier North Dakota ND Stutsman 093 46.6816 -98.6604 +US 58476 Pingree North Dakota ND Stutsman 093 47.2038 -99.0144 +US 58481 Spiritwood North Dakota ND Stutsman 093 46.9865 -98.5219 +US 58483 Streeter North Dakota ND Stutsman 093 46.695 -99.2971 +US 58496 Woodworth North Dakota ND Stutsman 093 47.1636 -99.3406 +US 58497 Ypsilanti North Dakota ND Stutsman 093 46.7719 -98.4876 +US 58317 Bisbee North Dakota ND Towner 095 48.5552 -99.3636 +US 58324 Cando North Dakota ND Towner 095 48.5001 -99.2319 +US 58331 Egeland North Dakota ND Towner 095 48.6355 -99.1115 +US 58339 Hansboro North Dakota ND Towner 095 48.9001 -99.4278 +US 58363 Perth North Dakota ND Towner 095 48.7546 -99.4384 +US 58365 Rocklake North Dakota ND Towner 095 48.8216 -99.1796 +US 58009 Blanchard North Dakota ND Traill 097 47.3277 -97.2466 +US 58016 Clifford North Dakota ND Traill 097 47.3569 -97.41 +US 58035 Galesburg North Dakota ND Traill 097 47.2778 -97.3746 +US 58045 Hillsboro North Dakota ND Traill 097 47.3835 -97.0603 +US 58218 Buxton North Dakota ND Traill 097 47.6163 -97.0893 +US 58219 Caledonia North Dakota ND Traill 097 47.4776 -96.879 +US 58223 Cummings North Dakota ND Traill 097 47.537 -96.9913 +US 58240 Hatton North Dakota ND Traill 097 47.638 -97.4325 +US 58257 Mayville North Dakota ND Traill 097 47.5014 -97.3176 +US 58274 Portland North Dakota ND Traill 097 47.5015 -97.3843 +US 58210 Adams North Dakota ND Walsh 099 48.4223 -98.0867 +US 58213 Ardoch North Dakota ND Walsh 099 48.2269 -97.2535 +US 58227 Edinburg North Dakota ND Walsh 099 48.4997 -97.8932 +US 58229 Fairdale North Dakota ND Walsh 099 48.4819 -98.2066 +US 58231 Fordville North Dakota ND Walsh 099 48.2212 -97.8022 +US 58233 Forest River North Dakota ND Walsh 099 48.2251 -97.4605 +US 58237 Grafton North Dakota ND Walsh 099 48.3689 -97.4373 +US 58243 Hoople North Dakota ND Walsh 099 48.5198 -97.6183 +US 58250 Lankin North Dakota ND Walsh 099 48.2952 -98.007 +US 58261 Minto North Dakota ND Walsh 099 48.26 -97.3144 +US 58270 Park River North Dakota ND Walsh 099 48.4039 -97.7439 +US 58273 Pisek North Dakota ND Walsh 099 48.2971 -97.7029 +US 58701 Minot North Dakota ND Ward 101 48.2291 -101.2985 +US 58702 Minot North Dakota ND Ward 101 48.3369 -101.4513 +US 58703 Minot North Dakota ND Ward 101 48.3306 -101.3156 +US 58704 Minot Afb North Dakota ND Ward 101 48.4232 -101.3168 +US 58705 Minot Afb North Dakota ND Ward 101 48.4223 -101.3339 +US 58707 Minot North Dakota ND Ward 101 48.2453 -101.3012 +US 58718 Berthold North Dakota ND Ward 101 48.3064 -101.6866 +US 58722 Burlington North Dakota ND Ward 101 48.2735 -101.4282 +US 58725 Carpio North Dakota ND Ward 101 48.4323 -101.7119 +US 58733 Des Lacs North Dakota ND Ward 101 48.2557 -101.5672 +US 58734 Donnybrook North Dakota ND Ward 101 48.49 -101.896 +US 58735 Douglas North Dakota ND Ward 101 47.8659 -101.5112 +US 58738 Foxholm North Dakota ND Ward County 101 48.3392 -101.5907 +US 58746 Kenmare North Dakota ND Ward 101 48.7182 -102.0852 +US 58756 Makoti North Dakota ND Ward 101 47.9853 -101.8149 +US 58779 Ryder North Dakota ND Ward 101 47.9788 -101.6683 +US 58781 Sawyer North Dakota ND Ward 101 48.0858 -101.0674 +US 58785 Surrey North Dakota ND Ward 101 48.2365 -101.1216 +US 58319 Bremen North Dakota ND Wells 103 47.6635 -99.6644 +US 58337 Hamberg North Dakota ND Wells 103 47.5874 -99.6677 +US 58341 Harvey North Dakota ND Wells 103 47.7035 -99.7478 +US 58342 Heimdal North Dakota ND Wells County 103 47.7999 -99.6891 +US 58418 Bowdon North Dakota ND Wells 103 47.4343 -99.7015 +US 58422 Cathay North Dakota ND Wells 103 47.6289 -99.4049 +US 58423 Chaseley North Dakota ND Wells 103 47.449 -99.8241 +US 58438 Fessenden North Dakota ND Wells 103 47.6286 -99.6434 +US 58450 Heaton North Dakota ND Wells County 103 47.4611 -99.5781 +US 58451 Hurdsfield North Dakota ND Wells 103 47.4387 -99.9416 +US 58465 Manfred North Dakota ND Wells County 103 47.7117 -99.7644 +US 58486 Sykeston North Dakota ND Wells 103 47.4369 -99.3975 +US 58755 Mcgregor North Dakota ND Williams 105 48.595 -102.9288 +US 58795 Wildrose North Dakota ND Williams 105 48.5678 -103.1536 +US 58801 Williston North Dakota ND Williams 105 48.2257 -103.649 +US 58802 Williston North Dakota ND Williams 105 48.1688 -103.6148 +US 58830 Alamo North Dakota ND Williams 105 48.5387 -103.4734 +US 58843 Epping North Dakota ND Williams 105 48.2764 -103.3763 +US 58845 Grenora North Dakota ND Williams 105 48.5252 -103.9176 +US 58849 Ray North Dakota ND Williams 105 48.3217 -103.1654 +US 58852 Tioga North Dakota ND Williams 105 48.3646 -102.9576 +US 58853 Trenton North Dakota ND Williams 105 48.2951 -103.4381 +US 58856 Zahl North Dakota ND Williams 105 48.5787 -103.6599 +US 68868 Prosser Nebraska NE Adams County 001 40.6612 -98.5573 +US 68901 Hastings Nebraska NE Adams 001 40.5877 -98.3911 +US 68902 Hastings Nebraska NE Adams 001 40.5896 -98.3972 +US 68925 Ayr Nebraska NE Adams 001 40.4411 -98.439 +US 68950 Holstein Nebraska NE Adams 001 40.4542 -98.6538 +US 68955 Juniata Nebraska NE Adams 001 40.5867 -98.515 +US 68956 Kenesaw Nebraska NE Adams 001 40.6165 -98.6572 +US 68973 Roseland Nebraska NE Adams 001 40.4591 -98.5551 +US 68636 Elgin Nebraska NE Antelope 003 41.9732 -98.0751 +US 68720 Brunswick Nebraska NE Antelope 003 42.3459 -98.0123 +US 68726 Clearwater Nebraska NE Antelope 003 42.1266 -98.1868 +US 68756 Neligh Nebraska NE Antelope 003 42.1389 -98.0151 +US 68761 Oakdale Nebraska NE Antelope 003 42.0536 -97.9186 +US 68764 Orchard Nebraska NE Antelope 003 42.3399 -98.2409 +US 68773 Royal Nebraska NE Antelope 003 42.3648 -98.1235 +US 69121 Arthur Nebraska NE Arthur 005 41.574 -101.6931 +US 69345 Harrisburg Nebraska NE Banner 007 41.5531 -103.7111 +US 68821 Brewster Nebraska NE Blaine 009 41.9467 -99.8292 +US 68833 Dunning Nebraska NE Blaine 009 41.8131 -100.0873 +US 69157 Purdum Nebraska NE Blaine 009 41.9123 -99.9771 +US 68620 Albion Nebraska NE Boone 011 41.7049 -97.9991 +US 68627 Cedar Rapids Nebraska NE Boone 011 41.5564 -98.1554 +US 68652 Petersburg Nebraska NE Boone 011 41.859 -98.0848 +US 68655 Primrose Nebraska NE Boone 011 41.6405 -98.2355 +US 68660 Saint Edward Nebraska NE Boone 011 41.5708 -97.8801 +US 69301 Alliance Nebraska NE Box Butte 013 42.1149 -102.888 +US 69348 Hemingford Nebraska NE Box Butte 013 42.3312 -103.0644 +US 68719 Bristow Nebraska NE Boyd 015 42.9484 -98.5721 +US 68722 Butte Nebraska NE Boyd 015 42.9124 -98.8459 +US 68746 Lynch Nebraska NE Boyd 015 42.8373 -98.4504 +US 68755 Naper Nebraska NE Boyd 015 42.9521 -99.071 +US 68777 Spencer Nebraska NE Boyd 015 42.8849 -98.7059 +US 69210 Ainsworth Nebraska NE Brown 017 42.5403 -99.8615 +US 69214 Johnstown Nebraska NE Brown 017 42.4657 -99.9305 +US 69217 Long Pine Nebraska NE Brown 017 42.3876 -99.7141 +US 68812 Amherst Nebraska NE Buffalo 019 40.8495 -99.2609 +US 68836 Elm Creek Nebraska NE Buffalo 019 40.7301 -99.3728 +US 68840 Gibbon Nebraska NE Buffalo 019 40.7444 -98.8543 +US 68845 Kearney Nebraska NE Buffalo 019 40.7514 -99.1291 +US 68847 Kearney Nebraska NE Buffalo 019 40.7136 -99.0779 +US 68848 Kearney Nebraska NE Buffalo 019 40.6861 -99.0693 +US 68849 Kearney Nebraska NE Buffalo 019 40.8497 -99.0741 +US 68858 Miller Nebraska NE Buffalo 019 40.9422 -99.374 +US 68861 Odessa Nebraska NE Buffalo 019 40.73 -99.2837 +US 68866 Pleasanton Nebraska NE Buffalo 019 40.9818 -99.1283 +US 68869 Ravenna Nebraska NE Buffalo 019 41.0233 -98.9041 +US 68870 Riverdale Nebraska NE Buffalo 019 40.8524 -99.1611 +US 68876 Shelton Nebraska NE Buffalo 019 40.7717 -98.7435 +US 68019 Craig Nebraska NE Burt 021 41.7715 -96.3924 +US 68020 Decatur Nebraska NE Burt 021 41.9966 -96.2595 +US 68038 Lyons Nebraska NE Burt 021 41.9442 -96.4661 +US 68045 Oakland Nebraska NE Burt 021 41.8384 -96.4671 +US 68061 Tekamah Nebraska NE Burt 021 41.7819 -96.2281 +US 68001 Abie Nebraska NE Butler 023 41.3479 -96.9563 +US 68014 Bruno Nebraska NE Butler 023 41.2718 -96.9646 +US 68036 Linwood Nebraska NE Butler 023 41.4129 -96.9399 +US 68624 Bellwood Nebraska NE Butler 023 41.3474 -97.2747 +US 68626 Brainard Nebraska NE Butler 023 41.1832 -96.9882 +US 68632 David City Nebraska NE Butler 023 41.2207 -97.1572 +US 68635 Dwight Nebraska NE Butler 023 41.0894 -96.9931 +US 68650 Octavia Nebraska NE Butler County 023 41.3561 -97.0678 +US 68658 Rising City Nebraska NE Butler 023 41.2082 -97.3032 +US 68667 Surprise Nebraska NE Butler 023 41.1268 -97.2922 +US 68669 Ulysses Nebraska NE Butler 023 41.0791 -97.1984 +US 68016 Cedar Creek Nebraska NE Cass 025 41.0425 -96.1044 +US 68037 Louisville Nebraska NE Cass 025 40.9967 -96.1948 +US 68048 Plattsmouth Nebraska NE Cass 025 40.9992 -95.9139 +US 68058 South Bend Nebraska NE Cass 025 41.0067 -96.2462 +US 68304 Alvo Nebraska NE Cass 025 40.8992 -96.4036 +US 68307 Avoca Nebraska NE Cass 025 40.8159 -96.0957 +US 68347 Eagle Nebraska NE Cass 025 40.8169 -96.429 +US 68349 Elmwood Nebraska NE Cass 025 40.8378 -96.2944 +US 68366 Greenwood Nebraska NE Cass 025 40.9706 -96.4258 +US 68403 Manley Nebraska NE Cass 025 40.9207 -96.168 +US 68407 Murdock Nebraska NE Cass 025 40.919 -96.2848 +US 68409 Murray Nebraska NE Cass 025 40.92 -95.9227 +US 68413 Nehawka Nebraska NE Cass 025 40.833 -95.993 +US 68455 Union Nebraska NE Cass 025 40.8245 -95.9037 +US 68463 Weeping Water Nebraska NE Cass 025 40.8731 -96.1528 +US 68717 Belden Nebraska NE Cedar 027 42.4022 -97.1956 +US 68727 Coleridge Nebraska NE Cedar 027 42.523 -97.1786 +US 68736 Fordyce Nebraska NE Cedar 027 42.7309 -97.3567 +US 68739 Hartington Nebraska NE Cedar 027 42.6235 -97.2837 +US 68745 Laurel Nebraska NE Cedar 027 42.427 -97.0874 +US 68749 Magnet Nebraska NE Cedar 027 42.6097 -97.2504 +US 68762 Obert Nebraska NE Cedar County 027 42.6566 -97.0722 +US 68771 Randolph Nebraska NE Cedar 027 42.3798 -97.3464 +US 68774 Saint Helena Nebraska NE Cedar 027 42.8046 -97.3047 +US 68792 Wynot Nebraska NE Cedar 027 42.7393 -97.1678 +US 69023 Champion Nebraska NE Chase 029 40.46 -101.7485 +US 69027 Enders Nebraska NE Chase 029 40.4655 -101.5222 +US 69033 Imperial Nebraska NE Chase 029 40.5251 -101.6468 +US 69035 Lamar Nebraska NE Chase County 029 40.5297 -101.9263 +US 69045 Wauneta Nebraska NE Chase 029 40.4409 -101.3812 +US 69135 Elsmere Nebraska NE Cherry 031 42.2403 -100.2595 +US 69201 Valentine Nebraska NE Cherry 031 42.8062 -100.6215 +US 69211 Cody Nebraska NE Cherry 031 42.825 -101.2913 +US 69212 Crookston Nebraska NE Cherry 031 42.9255 -100.7735 +US 69216 Kilgore Nebraska NE Cherry 031 42.9146 -100.9884 +US 69218 Merriman Nebraska NE Cherry 031 42.6419 -101.7583 +US 69219 Nenzel Nebraska NE Cherry 031 42.7061 -101.1007 +US 69220 Sparks Nebraska NE Cherry 031 42.5426 -101.1262 +US 69221 Wood Lake Nebraska NE Cherry 031 42.6264 -100.2872 +US 69131 Dalton Nebraska NE Cheyenne 033 41.4068 -102.9726 +US 69141 Gurley Nebraska NE Cheyenne 033 41.315 -102.9835 +US 69149 Lodgepole Nebraska NE Cheyenne 033 41.1697 -102.657 +US 69156 Potter Nebraska NE Cheyenne 033 41.2347 -103.3061 +US 69160 Sidney Nebraska NE Cheyenne 033 41.2205 -102.9959 +US 69162 Sidney Nebraska NE Cheyenne 033 41.138 -102.9856 +US 68452 Ong Nebraska NE Clay 035 40.3968 -97.861 +US 68933 Clay Center Nebraska NE Clay 035 40.5113 -98.0386 +US 68934 Deweese Nebraska NE Clay 035 40.354 -98.14 +US 68935 Edgar Nebraska NE Clay 035 40.3652 -97.9727 +US 68938 Fairfield Nebraska NE Clay 035 40.4285 -98.1063 +US 68941 Glenvil Nebraska NE Clay 035 40.4931 -98.2465 +US 68944 Harvard Nebraska NE Clay 035 40.6265 -98.0846 +US 68954 Inland Nebraska NE Clay 035 40.5899 -98.2234 +US 68975 Saronville Nebraska NE Clay 035 40.6021 -97.9388 +US 68979 Sutton Nebraska NE Clay 035 40.654 -97.8735 +US 68980 Trumbull Nebraska NE Clay 035 40.6692 -98.2574 +US 68629 Clarkson Nebraska NE Colfax 037 41.6961 -97.1051 +US 68641 Howells Nebraska NE Colfax 037 41.6964 -96.9858 +US 68643 Leigh Nebraska NE Colfax 037 41.6739 -97.232 +US 68659 Rogers Nebraska NE Colfax 037 41.5939 -96.956 +US 68661 Schuyler Nebraska NE Colfax 037 41.4591 -97.0628 +US 68004 Bancroft Nebraska NE Cuming 039 42.0267 -96.6171 +US 68716 Beemer Nebraska NE Cuming 039 41.9374 -96.815 +US 68788 West Point Nebraska NE Cuming 039 41.845 -96.7318 +US 68791 Wisner Nebraska NE Cuming 039 41.998 -96.917 +US 68813 Anselmo Nebraska NE Custer 041 41.6208 -99.8644 +US 68814 Ansley Nebraska NE Custer 041 41.3019 -99.3645 +US 68819 Berwyn Nebraska NE Custer 041 41.347 -99.5016 +US 68822 Broken Bow Nebraska NE Custer 041 41.4126 -99.6355 +US 68825 Callaway Nebraska NE Custer 041 41.2485 -99.9932 +US 68828 Comstock Nebraska NE Custer 041 41.5553 -99.2753 +US 68855 Mason City Nebraska NE Custer 041 41.1853 -99.3049 +US 68856 Merna Nebraska NE Custer 041 41.4435 -99.8036 +US 68860 Oconto Nebraska NE Custer 041 41.1381 -99.6951 +US 68874 Sargent Nebraska NE Custer 041 41.6508 -99.3816 +US 68880 Weissert Nebraska NE Custer 041 41.3939 -99.7281 +US 68881 Westerville Nebraska NE Custer 041 41.4193 -99.3844 +US 69120 Arnold Nebraska NE Custer 041 41.4456 -100.1567 +US 68030 Homer Nebraska NE Dakota 043 42.3322 -96.4656 +US 68731 Dakota City Nebraska NE Dakota 043 42.3807 -96.4536 +US 68733 Emerson Nebraska NE Dakota 043 42.2852 -96.7159 +US 68741 Hubbard Nebraska NE Dakota 043 42.3576 -96.6031 +US 68743 Jackson Nebraska NE Dakota 043 42.4529 -96.5743 +US 68776 South Sioux City Nebraska NE Dakota 043 42.4656 -96.4182 +US 69337 Chadron Nebraska NE Dawes 045 42.8193 -102.9953 +US 69339 Crawford Nebraska NE Dawes 045 42.6758 -103.4053 +US 69354 Marsland Nebraska NE Dawes 045 42.5244 -103.2564 +US 69367 Whitney Nebraska NE Dawes 045 42.7559 -103.2396 +US 68834 Eddyville Nebraska NE Dawson 047 41.0079 -99.681 +US 68850 Lexington Nebraska NE Dawson 047 40.785 -99.7515 +US 68863 Overton Nebraska NE Dawson 047 40.7519 -99.5278 +US 68878 Sumner Nebraska NE Dawson 047 40.9504 -99.52 +US 69029 Farnam Nebraska NE Dawson 047 40.7129 -100.2069 +US 69130 Cozad Nebraska NE Dawson 047 40.8619 -99.9921 +US 69138 Gothenburg Nebraska NE Dawson 047 40.94 -100.1547 +US 69171 Willow Island Nebraska NE Dawson 047 40.8925 -100.0703 +US 69122 Big Springs Nebraska NE Deuel 049 41.0696 -102.0933 +US 69129 Chappell Nebraska NE Deuel 049 41.0966 -102.4523 +US 68710 Allen Nebraska NE Dixon 051 42.4437 -96.8574 +US 68728 Concord Nebraska NE Dixon 051 42.382 -96.981 +US 68732 Dixon Nebraska NE Dixon 051 42.4185 -96.9774 +US 68751 Maskell Nebraska NE Dixon 051 42.6905 -96.9809 +US 68757 Newcastle Nebraska NE Dixon 051 42.6207 -96.8709 +US 68770 Ponca Nebraska NE Dixon 051 42.5693 -96.7128 +US 68784 Wakefield Nebraska NE Dixon 051 42.2733 -96.8776 +US 68785 Waterbury Nebraska NE Dixon 051 42.4604 -96.7448 +US 68025 Fremont Nebraska NE Dodge 053 41.4416 -96.4945 +US 68026 Fremont Nebraska NE Dodge 053 41.5679 -96.6174 +US 68031 Hooper Nebraska NE Dodge 053 41.6414 -96.5232 +US 68044 Nickerson Nebraska NE Dodge 053 41.5491 -96.4441 +US 68057 Scribner Nebraska NE Dodge 053 41.663 -96.6441 +US 68063 Uehling Nebraska NE Dodge 053 41.7369 -96.5037 +US 68072 Winslow Nebraska NE Dodge 053 41.6102 -96.5033 +US 68621 Ames Nebraska NE Dodge 053 41.4613 -96.6463 +US 68633 Dodge Nebraska NE Dodge 053 41.7052 -96.8969 +US 68649 North Bend Nebraska NE Dodge 053 41.4689 -96.7813 +US 68664 Snyder Nebraska NE Dodge 053 41.6485 -96.7873 +US 68007 Bennington Nebraska NE Douglas 055 41.3623 -96.1575 +US 68010 Boys Town Nebraska NE Douglas 055 41.2587 -96.133 +US 68022 Elkhorn Nebraska NE Douglas 055 41.2756 -96.2431 +US 68064 Valley Nebraska NE Douglas 055 41.3186 -96.3463 +US 68069 Waterloo Nebraska NE Douglas 055 41.2702 -96.3063 +US 68101 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68102 Omaha Nebraska NE Douglas 055 41.259 -95.9409 +US 68103 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68104 Omaha Nebraska NE Douglas 055 41.2919 -95.9999 +US 68105 Omaha Nebraska NE Douglas 055 41.2435 -95.9629 +US 68106 Omaha Nebraska NE Douglas 055 41.2403 -95.998 +US 68107 Omaha Nebraska NE Douglas 055 41.2068 -95.9559 +US 68108 Omaha Nebraska NE Douglas 055 41.2382 -95.9336 +US 68109 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68110 Omaha Nebraska NE Douglas 055 41.2933 -95.9361 +US 68111 Omaha Nebraska NE Douglas 055 41.2962 -95.965 +US 68112 Omaha Nebraska NE Douglas 055 41.3296 -95.9597 +US 68114 Omaha Nebraska NE Douglas 055 41.2656 -96.0493 +US 68116 Omaha Nebraska NE Douglas 055 41.2879 -96.1495 +US 68117 Omaha Nebraska NE Douglas 055 41.2064 -95.9953 +US 68118 Omaha Nebraska NE Douglas 055 41.2606 -96.1661 +US 68119 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68120 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68122 Omaha Nebraska NE Douglas 055 41.3333 -96.0458 +US 68124 Omaha Nebraska NE Douglas 055 41.2338 -96.0495 +US 68127 Omaha Nebraska NE Douglas 055 41.2074 -96.0612 +US 68130 Omaha Nebraska NE Douglas 055 41.2355 -96.1688 +US 68131 Omaha Nebraska NE Douglas 055 41.2647 -95.9639 +US 68132 Omaha Nebraska NE Douglas 055 41.2657 -95.996 +US 68134 Omaha Nebraska NE Douglas 055 41.2949 -96.0546 +US 68135 Omaha Nebraska NE Douglas 055 41.2104 -96.1698 +US 68137 Omaha Nebraska NE Douglas 055 41.2075 -96.1147 +US 68139 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68142 Omaha Nebraska NE Douglas 055 41.3359 -96.0901 +US 68144 Omaha Nebraska NE Douglas 055 41.2335 -96.1188 +US 68145 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68152 Omaha Nebraska NE Douglas 055 41.3346 -96.0003 +US 68154 Omaha Nebraska NE Douglas 055 41.2642 -96.1206 +US 68155 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68164 Omaha Nebraska NE Douglas 055 41.2955 -96.1008 +US 68172 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68175 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68176 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68178 Omaha Nebraska NE Douglas 055 41.2657 -95.9477 +US 68179 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68180 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68181 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68182 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68183 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 68197 Omaha Nebraska NE Douglas County 055 41.249 -96.0274 +US 68198 Omaha Nebraska NE Douglas 055 41.2917 -96.1711 +US 69021 Benkelman Nebraska NE Dundy 057 40.098 -101.5344 +US 69030 Haigler Nebraska NE Dundy 057 40.0642 -101.9371 +US 69037 Max Nebraska NE Dundy 057 40.198 -101.4116 +US 69041 Parks Nebraska NE Dundy 057 40.1398 -101.7399 +US 68351 Exeter Nebraska NE Fillmore 059 40.6341 -97.4424 +US 68354 Fairmont Nebraska NE Fillmore 059 40.6404 -97.5873 +US 68361 Geneva Nebraska NE Fillmore 059 40.5277 -97.6096 +US 68365 Grafton Nebraska NE Fillmore 059 40.6402 -97.7403 +US 68406 Milligan Nebraska NE Fillmore 059 40.4952 -97.3997 +US 68416 Ohiowa Nebraska NE Fillmore 059 40.4065 -97.4427 +US 68436 Shickley Nebraska NE Fillmore 059 40.4077 -97.7143 +US 68444 Strang Nebraska NE Fillmore 059 40.3981 -97.5521 +US 68929 Bloomington Nebraska NE Franklin 061 40.1383 -99.0094 +US 68932 Campbell Nebraska NE Franklin 061 40.2967 -98.737 +US 68939 Franklin Nebraska NE Franklin 061 40.1052 -98.9469 +US 68947 Hildreth Nebraska NE Franklin 061 40.3217 -99.0571 +US 68960 Naponee Nebraska NE Franklin 061 40.1258 -99.1277 +US 68972 Riverton Nebraska NE Franklin 061 40.1016 -98.7858 +US 68981 Upland Nebraska NE Franklin 061 40.3171 -98.8966 +US 69025 Curtis Nebraska NE Frontier 063 40.6131 -100.5104 +US 69028 Eustis Nebraska NE Frontier 063 40.6267 -100.0547 +US 69038 Maywood Nebraska NE Frontier 063 40.5893 -100.6421 +US 69039 Moorefield Nebraska NE Frontier 063 40.5786 -100.3108 +US 69042 Stockville Nebraska NE Frontier 063 40.4948 -100.3849 +US 68922 Arapahoe Nebraska NE Furnas 065 40.3027 -99.8997 +US 68926 Beaver City Nebraska NE Furnas 065 40.129 -99.8065 +US 68936 Edison Nebraska NE Furnas 065 40.2802 -99.786 +US 68946 Hendley Nebraska NE Furnas 065 40.1063 -99.9715 +US 68948 Holbrook Nebraska NE Furnas 065 40.3019 -100.0136 +US 68967 Oxford Nebraska NE Furnas 065 40.256 -99.6302 +US 69022 Cambridge Nebraska NE Furnas 065 40.2808 -100.1676 +US 69046 Wilsonville Nebraska NE Furnas 065 40.1089 -100.1211 +US 68301 Adams Nebraska NE Gage 067 40.4576 -96.5396 +US 68309 Barneston Nebraska NE Gage 067 40.0412 -96.5963 +US 68310 Beatrice Nebraska NE Gage 067 40.2705 -96.7435 +US 68318 Blue Springs Nebraska NE Gage 067 40.1407 -96.659 +US 68328 Clatonia Nebraska NE Gage 067 40.4724 -96.8555 +US 68331 Cortland Nebraska NE Gage 067 40.4976 -96.7166 +US 68357 Filley Nebraska NE Gage 067 40.2946 -96.5301 +US 68374 Holmesville Nebraska NE Gage 067 40.2202 -96.6326 +US 68381 Liberty Nebraska NE Gage 067 40.0801 -96.4804 +US 68415 Odell Nebraska NE Gage 067 40.0451 -96.8019 +US 68422 Pickrell Nebraska NE Gage 067 40.3821 -96.7344 +US 68458 Virginia Nebraska NE Gage 067 40.2309 -96.5121 +US 68466 Wymore Nebraska NE Gage 067 40.113 -96.6613 +US 69147 Lewellen Nebraska NE Garden 069 41.3435 -102.1396 +US 69148 Lisco Nebraska NE Garden 069 41.5114 -102.5498 +US 69154 Oshkosh Nebraska NE Garden 069 41.4451 -102.3457 +US 69190 Oshkosh Nebraska NE Garden 069 41.6153 -102.3318 +US 68823 Burwell Nebraska NE Garfield 071 41.808 -99.0995 +US 68937 Elwood Nebraska NE Gosper 073 40.5747 -99.8258 +US 68976 Smithfield Nebraska NE Gosper 073 40.5832 -99.7285 +US 69333 Ashby Nebraska NE Grant 075 41.9776 -101.9636 +US 69350 Hyannis Nebraska NE Grant 075 42.007 -101.7483 +US 69366 Whitman Nebraska NE Grant 075 41.9584 -101.5216 +US 68665 Spalding Nebraska NE Greeley 077 41.6874 -98.3715 +US 68842 Greeley Nebraska NE Greeley 077 41.5526 -98.53 +US 68875 Scotia Nebraska NE Greeley 077 41.4837 -98.6893 +US 68882 Wolbach Nebraska NE Greeley 077 41.4244 -98.3995 +US 68801 Grand Island Nebraska NE Hall 079 40.9219 -98.3411 +US 68802 Grand Island Nebraska NE Hall 079 40.8725 -98.5021 +US 68803 Grand Island Nebraska NE Hall 079 40.9286 -98.3873 +US 68810 Alda Nebraska NE Hall 079 40.8569 -98.4551 +US 68824 Cairo Nebraska NE Hall 079 41.0002 -98.6165 +US 68832 Doniphan Nebraska NE Hall 079 40.77 -98.379 +US 68883 Wood River Nebraska NE Hall 079 40.8106 -98.6065 +US 68818 Aurora Nebraska NE Hamilton 081 40.8528 -98.0201 +US 68841 Giltner Nebraska NE Hamilton 081 40.7654 -98.1434 +US 68843 Hampton Nebraska NE Hamilton 081 40.9236 -97.8841 +US 68846 Hordville Nebraska NE Hamilton 081 41.0813 -97.8881 +US 68854 Marquette Nebraska NE Hamilton 081 41.01 -98 +US 68865 Phillips Nebraska NE Hamilton 081 40.8982 -98.2129 +US 68920 Alma Nebraska NE Harlan 083 40.1189 -99.3601 +US 68951 Huntley Nebraska NE Harlan County 083 40.2117 -99.2861 +US 68966 Orleans Nebraska NE Harlan 083 40.1484 -99.4572 +US 68969 Ragan Nebraska NE Harlan 083 40.1765 -99.4049 +US 68971 Republican City Nebraska NE Harlan 083 40.1034 -99.2322 +US 68977 Stamford Nebraska NE Harlan 083 40.1163 -99.5814 +US 69031 Hamlet Nebraska NE Hayes 085 40.5248 -101.0613 +US 69032 Hayes Center Nebraska NE Hayes 085 40.5173 -101.0252 +US 69024 Culbertson Nebraska NE Hitchcock 087 40.2237 -100.85 +US 69040 Palisade Nebraska NE Hitchcock 087 40.3387 -101.1295 +US 69043 Stratton Nebraska NE Hitchcock 087 40.1445 -101.2183 +US 69044 Trenton Nebraska NE Hitchcock 087 40.1681 -101.0201 +US 68711 Amelia Nebraska NE Holt 089 42.1809 -99.008 +US 68713 Atkinson Nebraska NE Holt 089 42.5483 -98.9761 +US 68725 Chambers Nebraska NE Holt 089 42.1916 -98.7378 +US 68734 Emmet Nebraska NE Holt 089 42.4747 -98.8238 +US 68735 Ewing Nebraska NE Holt 089 42.1851 -98.3981 +US 68742 Inman Nebraska NE Holt 089 42.3761 -98.5384 +US 68763 Oneill Nebraska NE Holt 089 42.4857 -98.6456 +US 68766 Page Nebraska NE Holt 089 42.4119 -98.3964 +US 68780 Stuart Nebraska NE Holt 089 42.5713 -99.1396 +US 69152 Mullen Nebraska NE Hooker 091 42.0163 -101.0542 +US 68820 Boelus Nebraska NE Howard 093 41.1003 -98.6976 +US 68829 Cotesfield Nebraska NE Howard County 093 41.339 -98.6641 +US 68831 Dannebrog Nebraska NE Howard 093 41.1192 -98.5546 +US 68835 Elba Nebraska NE Howard 093 41.2864 -98.5756 +US 68838 Farwell Nebraska NE Howard 093 41.2204 -98.6481 +US 68872 Saint Libory Nebraska NE Howard 093 41.0867 -98.3589 +US 68873 Saint Paul Nebraska NE Howard 093 41.2242 -98.444 +US 68338 Daykin Nebraska NE Jefferson 095 40.3192 -97.3043 +US 68342 Diller Nebraska NE Jefferson 095 40.1192 -96.9495 +US 68350 Endicott Nebraska NE Jefferson 095 40.0496 -97.0813 +US 68352 Fairbury Nebraska NE Jefferson 095 40.1488 -97.1839 +US 68377 Jansen Nebraska NE Jefferson 095 40.2074 -97.0244 +US 68424 Plymouth Nebraska NE Jefferson 095 40.3039 -97.0012 +US 68440 Steele City Nebraska NE Jefferson 095 40.0425 -96.9907 +US 68329 Cook Nebraska NE Johnson 097 40.4986 -96.1526 +US 68332 Crab Orchard Nebraska NE Johnson 097 40.3166 -96.4116 +US 68348 Elk Creek Nebraska NE Johnson 097 40.2977 -96.1421 +US 68443 Sterling Nebraska NE Johnson 097 40.4637 -96.3867 +US 68450 Tecumseh Nebraska NE Johnson 097 40.3697 -96.205 +US 68924 Axtell Nebraska NE Kearney 099 40.5269 -99.1169 +US 68945 Heartwell Nebraska NE Kearney 099 40.5716 -98.7851 +US 68959 Minden Nebraska NE Kearney 099 40.5091 -98.9383 +US 68963 Norman Nebraska NE Kearney 099 40.4789 -98.7927 +US 68982 Wilcox Nebraska NE Kearney 099 40.3735 -99.1539 +US 69127 Brule Nebraska NE Keith 101 41.1002 -101.9099 +US 69144 Keystone Nebraska NE Keith 101 41.2621 -101.6282 +US 69146 Lemoyne Nebraska NE Keith 101 41.3236 -101.7673 +US 69153 Ogallala Nebraska NE Keith 101 41.1275 -101.7107 +US 69155 Paxton Nebraska NE Keith 101 41.1268 -101.3585 +US 68753 Mills Nebraska NE Keya Paha 103 42.9225 -99.4466 +US 68759 Newport Nebraska NE Keya Paha 103 42.6001 -99.3359 +US 68778 Springview Nebraska NE Keya Paha 103 42.8488 -99.8061 +US 69128 Bushnell Nebraska NE Kimball 105 41.2139 -103.9075 +US 69133 Dix Nebraska NE Kimball 105 41.227 -103.4796 +US 69145 Kimball Nebraska NE Kimball 105 41.2321 -103.6602 +US 68718 Bloomfield Nebraska NE Knox 107 42.5978 -97.6545 +US 68724 Center Nebraska NE Knox 107 42.5973 -97.867 +US 68729 Creighton Nebraska NE Knox 107 42.4681 -97.8932 +US 68730 Crofton Nebraska NE Knox 107 42.737 -97.5406 +US 68760 Niobrara Nebraska NE Knox 107 42.7391 -97.9248 +US 68783 Verdigre Nebraska NE Knox 107 42.6101 -98.0793 +US 68786 Wausa Nebraska NE Knox 107 42.4973 -97.5576 +US 68789 Winnetoon Nebraska NE Knox 107 42.5334 -98.005 +US 68317 Bennet Nebraska NE Lancaster 109 40.6382 -96.5134 +US 68336 Davey Nebraska NE Lancaster 109 40.9639 -96.688 +US 68339 Denton Nebraska NE Lancaster 109 40.7009 -96.8532 +US 68358 Firth Nebraska NE Lancaster 109 40.5586 -96.614 +US 68368 Hallam Nebraska NE Lancaster 109 40.5739 -96.7998 +US 68372 Hickman Nebraska NE Lancaster 109 40.6119 -96.6247 +US 68402 Malcolm Nebraska NE Lancaster 109 40.9091 -96.86 +US 68404 Martell Nebraska NE Lancaster 109 40.6514 -96.7442 +US 68419 Panama Nebraska NE Lancaster 109 40.5998 -96.5129 +US 68428 Raymond Nebraska NE Lancaster 109 40.9342 -96.7866 +US 68430 Roca Nebraska NE Lancaster 109 40.6702 -96.6391 +US 68438 Sprague Nebraska NE Lancaster 109 40.6267 -96.7456 +US 68461 Walton Nebraska NE Lancaster 109 40.7975 -96.5359 +US 68462 Waverly Nebraska NE Lancaster 109 40.9222 -96.526 +US 68501 Lincoln Nebraska NE Lancaster 109 40.8651 -96.8231 +US 68502 Lincoln Nebraska NE Lancaster 109 40.7893 -96.6938 +US 68503 Lincoln Nebraska NE Lancaster 109 40.8233 -96.6766 +US 68504 Lincoln Nebraska NE Lancaster 109 40.8392 -96.6532 +US 68505 Lincoln Nebraska NE Lancaster 109 40.8247 -96.6252 +US 68506 Lincoln Nebraska NE Lancaster 109 40.7848 -96.6431 +US 68507 Lincoln Nebraska NE Lancaster 109 40.8473 -96.6289 +US 68508 Lincoln Nebraska NE Lancaster 109 40.8145 -96.7009 +US 68509 Lincoln Nebraska NE Lancaster 109 40.7845 -96.6888 +US 68510 Lincoln Nebraska NE Lancaster 109 40.8063 -96.6545 +US 68511 Lincoln Nebraska NE Lancaster County 109 40.817 -96.7103 +US 68512 Lincoln Nebraska NE Lancaster 109 40.7565 -96.6946 +US 68514 Lincoln Nebraska NE Lancaster 109 40.9401 -96.6621 +US 68516 Lincoln Nebraska NE Lancaster 109 40.7568 -96.6523 +US 68517 Lincoln Nebraska NE Lancaster 109 40.9317 -96.6045 +US 68520 Lincoln Nebraska NE Lancaster 109 40.7744 -96.5693 +US 68521 Lincoln Nebraska NE Lancaster 109 40.851 -96.711 +US 68522 Lincoln Nebraska NE Lancaster 109 40.7934 -96.7479 +US 68523 Lincoln Nebraska NE Lancaster 109 40.7408 -96.7583 +US 68524 Lincoln Nebraska NE Lancaster 109 40.8529 -96.7943 +US 68526 Lincoln Nebraska NE Lancaster 109 40.7314 -96.5878 +US 68527 Lincoln Nebraska NE Lancaster 109 40.8347 -96.5401 +US 68528 Lincoln Nebraska NE Lancaster 109 40.8195 -96.7545 +US 68529 Lincoln Nebraska NE Lancaster 109 40.8798 -96.7798 +US 68531 Lincoln Nebraska NE Lancaster 109 40.9008 -96.7201 +US 68532 Lincoln Nebraska NE Lancaster 109 40.7922 -96.8551 +US 68542 Lincoln Nebraska NE Lancaster 109 40.7845 -96.6888 +US 68544 Lincoln Nebraska NE Lancaster 109 40.7845 -96.6888 +US 68572 Lincoln Nebraska NE Lancaster 109 40.7845 -96.6888 +US 68583 Lincoln Nebraska NE Lancaster 109 40.7845 -96.6888 +US 68588 Lincoln Nebraska NE Lancaster 109 40.8206 -96.6928 +US 69101 North Platte Nebraska NE Lincoln 111 41.1326 -100.7746 +US 69103 North Platte Nebraska NE Lincoln 111 41.0464 -100.7469 +US 69123 Brady Nebraska NE Lincoln 111 41.0515 -100.3736 +US 69132 Dickens Nebraska NE Lincoln 111 40.8041 -101.0149 +US 69143 Hershey Nebraska NE Lincoln 111 41.2102 -101.0392 +US 69151 Maxwell Nebraska NE Lincoln 111 41.0588 -100.527 +US 69165 Sutherland Nebraska NE Lincoln 111 41.1557 -101.136 +US 69169 Wallace Nebraska NE Lincoln 111 40.8304 -101.1738 +US 69170 Wellfleet Nebraska NE Lincoln 111 40.7988 -100.7119 +US 69163 Stapleton Nebraska NE Logan 113 41.4888 -100.4831 +US 68879 Taylor Nebraska NE Loup 115 41.9141 -99.4543 +US 69167 Tryon Nebraska NE McPherson 117 41.5732 -101.0175 +US 68701 Norfolk Nebraska NE Madison 119 42.0329 -97.4229 +US 68702 Norfolk Nebraska NE Madison 119 41.9165 -97.6013 +US 68715 Battle Creek Nebraska NE Madison 119 41.9943 -97.5982 +US 68748 Madison Nebraska NE Madison 119 41.8308 -97.472 +US 68752 Meadow Grove Nebraska NE Madison 119 42.0102 -97.7334 +US 68758 Newman Grove Nebraska NE Madison 119 41.7498 -97.774 +US 68781 Tilden Nebraska NE Madison 119 42.0496 -97.8223 +US 68628 Clarks Nebraska NE Merrick 121 41.2328 -97.8461 +US 68663 Silver Creek Nebraska NE Merrick 121 41.319 -97.6671 +US 68816 Archer Nebraska NE Merrick 121 41.1782 -98.1182 +US 68826 Central City Nebraska NE Merrick 121 41.1213 -98.0017 +US 68827 Chapman Nebraska NE Merrick 121 40.9856 -98.2217 +US 68864 Palmer Nebraska NE Merrick 121 41.1788 -98.2411 +US 69125 Broadwater Nebraska NE Morrill 123 41.5825 -102.8225 +US 69331 Angora Nebraska NE Morrill 123 41.8934 -103.085 +US 69334 Bayard Nebraska NE Morrill 123 41.7579 -103.3019 +US 69336 Bridgeport Nebraska NE Morrill 123 41.6766 -103.0701 +US 68623 Belgrade Nebraska NE Nance 125 41.4611 -98.0866 +US 68638 Fullerton Nebraska NE Nance 125 41.366 -98.0054 +US 68640 Genoa Nebraska NE Nance 125 41.4468 -97.764 +US 68305 Auburn Nebraska NE Nemaha 127 40.3789 -95.8526 +US 68320 Brock Nebraska NE Nemaha 127 40.4772 -95.9801 +US 68321 Brownville Nebraska NE Nemaha 127 40.3994 -95.6935 +US 68378 Johnson Nebraska NE Nemaha 127 40.4016 -95.9883 +US 68379 Julian Nebraska NE Nemaha County 127 40.5199 -95.8674 +US 68414 Nemaha Nebraska NE Nemaha 127 40.3198 -95.6913 +US 68421 Peru Nebraska NE Nemaha 127 40.4766 -95.7312 +US 68943 Hardy Nebraska NE Nuckolls 129 40.0285 -97.9271 +US 68957 Lawrence Nebraska NE Nuckolls 129 40.2767 -98.2402 +US 68961 Nelson Nebraska NE Nuckolls 129 40.2011 -98.0684 +US 68964 Oak Nebraska NE Nuckolls 129 40.2378 -97.903 +US 68974 Ruskin Nebraska NE Nuckolls 129 40.1383 -97.872 +US 68978 Superior Nebraska NE Nuckolls 129 40.0315 -98.0779 +US 68324 Burr Nebraska NE Otoe 131 40.5601 -96.2384 +US 68344 Douglas Nebraska NE Otoe 131 40.5838 -96.397 +US 68346 Dunbar Nebraska NE Otoe 131 40.6592 -96.0136 +US 68382 Lorton Nebraska NE Otoe 131 40.5973 -96.0241 +US 68410 Nebraska City Nebraska NE Otoe 131 40.6747 -95.8619 +US 68417 Otoe Nebraska NE Otoe 131 40.7355 -96.1329 +US 68418 Palmyra Nebraska NE Otoe 131 40.705 -96.3999 +US 68446 Syracuse Nebraska NE Otoe 131 40.6614 -96.1824 +US 68448 Talmage Nebraska NE Otoe 131 40.5586 -96.0138 +US 68454 Unadilla Nebraska NE Otoe 131 40.6917 -96.2825 +US 68323 Burchard Nebraska NE Pawnee 133 40.1057 -96.3488 +US 68345 Du Bois Nebraska NE Pawnee 133 40.0375 -96.0575 +US 68380 Lewiston Nebraska NE Pawnee 133 40.2309 -96.4049 +US 68420 Pawnee City Nebraska NE Pawnee 133 40.1093 -96.1509 +US 68441 Steinauer Nebraska NE Pawnee 133 40.2169 -96.2302 +US 68447 Table Rock Nebraska NE Pawnee 133 40.1874 -96.0818 +US 69134 Elsie Nebraska NE Perkins 135 40.8596 -101.37 +US 69140 Grant Nebraska NE Perkins 135 40.8511 -101.7196 +US 69150 Madrid Nebraska NE Perkins 135 40.8544 -101.5371 +US 69168 Venango Nebraska NE Perkins 135 40.8073 -101.9839 +US 68923 Atlanta Nebraska NE Phelps 137 40.3849 -99.4844 +US 68927 Bertrand Nebraska NE Phelps 137 40.5608 -99.5759 +US 68940 Funk Nebraska NE Phelps 137 40.502 -99.245 +US 68949 Holdrege Nebraska NE Phelps 137 40.4475 -99.3672 +US 68958 Loomis Nebraska NE Phelps 137 40.4792 -99.4979 +US 68737 Foster Nebraska NE Pierce 139 42.2699 -97.658 +US 68738 Hadar Nebraska NE Pierce 139 42.2644 -97.6013 +US 68747 Mclean Nebraska NE Pierce 139 42.3921 -97.4751 +US 68765 Osmond Nebraska NE Pierce 139 42.3539 -97.582 +US 68767 Pierce Nebraska NE Pierce 139 42.1943 -97.5256 +US 68769 Plainview Nebraska NE Pierce 139 42.3467 -97.7786 +US 68601 Columbus Nebraska NE Platte 141 41.543 -97.3763 +US 68602 Columbus Nebraska NE Platte 141 41.5381 -97.5418 +US 68631 Creston Nebraska NE Platte 141 41.6607 -97.3687 +US 68634 Duncan Nebraska NE Platte 141 41.3931 -97.5954 +US 68642 Humphrey Nebraska NE Platte 141 41.6702 -97.4986 +US 68644 Lindsay Nebraska NE Platte 141 41.6926 -97.6711 +US 68647 Monroe Nebraska NE Platte 141 41.4783 -97.6061 +US 68653 Platte Center Nebraska NE Platte 141 41.5241 -97.4576 +US 68651 Osceola Nebraska NE Polk 143 41.1966 -97.5571 +US 68654 Polk Nebraska NE Polk 143 41.1177 -97.7524 +US 68662 Shelby Nebraska NE Polk 143 41.2435 -97.4295 +US 68666 Stromsburg Nebraska NE Polk 143 41.1118 -97.5742 +US 69001 Mc Cook Nebraska NE Red Willow 145 40.2049 -100.6279 +US 69020 Bartley Nebraska NE Red Willow 145 40.2581 -100.2908 +US 69026 Danbury Nebraska NE Red Willow 145 40.0377 -100.4242 +US 69034 Indianola Nebraska NE Red Willow 145 40.2357 -100.4298 +US 69036 Lebanon Nebraska NE Red Willow 145 40.0752 -100.2612 +US 68337 Dawson Nebraska NE Richardson 147 40.1377 -95.8341 +US 68355 Falls City Nebraska NE Richardson 147 40.0742 -95.5931 +US 68376 Humboldt Nebraska NE Richardson 147 40.1566 -95.9311 +US 68431 Rulo Nebraska NE Richardson 147 40.0536 -95.4292 +US 68433 Salem Nebraska NE Richardson 147 40.062 -95.7273 +US 68437 Shubert Nebraska NE Richardson 147 40.2325 -95.6895 +US 68442 Stella Nebraska NE Richardson 147 40.2303 -95.768 +US 68457 Verdon Nebraska NE Richardson 147 40.1425 -95.7162 +US 68714 Bassett Nebraska NE Rock 149 42.5763 -99.5387 +US 68772 Rose Nebraska NE Rock 149 42.4452 -99.4559 +US 68333 Crete Nebraska NE Saline 151 40.6193 -96.9567 +US 68341 De Witt Nebraska NE Saline 151 40.3944 -96.9338 +US 68343 Dorchester Nebraska NE Saline 151 40.6499 -97.1056 +US 68359 Friend Nebraska NE Saline 151 40.6368 -97.2739 +US 68445 Swanton Nebraska NE Saline 151 40.3844 -97.0806 +US 68453 Tobias Nebraska NE Saline 151 40.4262 -97.3184 +US 68464 Western Nebraska NE Saline 151 40.4152 -97.1976 +US 68465 Wilber Nebraska NE Saline 151 40.4821 -96.9757 +US 68005 Bellevue Nebraska NE Sarpy 153 41.1497 -95.9099 +US 68028 Gretna Nebraska NE Sarpy 153 41.1345 -96.2458 +US 68046 Papillion Nebraska NE Sarpy 153 41.1523 -96.0371 +US 68054 Richfield Nebraska NE Sarpy 153 41.089 -96.0704 +US 68056 St Columbans Nebraska NE Sarpy 153 41.0927 -96.0905 +US 68059 Springfield Nebraska NE Sarpy 153 41.0765 -96.1438 +US 68113 Offutt A F B Nebraska NE Sarpy 153 41.1148 -95.9076 +US 68123 Bellevue Nebraska NE Sarpy 153 41.1156 -95.9393 +US 68128 La Vista Nebraska NE Sarpy 153 41.1814 -96.0658 +US 68133 Papillion Nebraska NE Sarpy 153 41.1416 -96.0131 +US 68136 Omaha Nebraska NE Sarpy 153 41.1683 -96.2096 +US 68138 Omaha Nebraska NE Sarpy 153 41.1549 -96.1376 +US 68147 Bellevue Nebraska NE Sarpy 153 41.1758 -95.9553 +US 68157 Omaha Nebraska NE Sarpy 153 41.181 -95.9909 +US 68003 Ashland Nebraska NE Saunders 155 41.0541 -96.3904 +US 68015 Cedar Bluffs Nebraska NE Saunders 155 41.3835 -96.5691 +US 68017 Ceresco Nebraska NE Saunders 155 41.0681 -96.6398 +US 68018 Colon Nebraska NE Saunders 155 41.2883 -96.6141 +US 68033 Ithaca Nebraska NE Saunders 155 41.1748 -96.5298 +US 68035 Leshara Nebraska NE Saunders 155 41.3394 -96.4448 +US 68040 Malmo Nebraska NE Saunders 155 41.2984 -96.7327 +US 68041 Mead Nebraska NE Saunders 155 41.2393 -96.4961 +US 68042 Memphis Nebraska NE Saunders 155 41.0946 -96.4306 +US 68050 Prague Nebraska NE Saunders 155 41.3036 -96.8301 +US 68065 Valparaiso Nebraska NE Saunders 155 41.0843 -96.8091 +US 68066 Wahoo Nebraska NE Saunders 155 41.2117 -96.6219 +US 68070 Weston Nebraska NE Saunders 155 41.1811 -96.7691 +US 68073 Yutan Nebraska NE Saunders 155 41.234 -96.3932 +US 68648 Morse Bluff Nebraska NE Saunders 155 41.4178 -96.7862 +US 69341 Gering Nebraska NE Scotts Bluff 157 41.822 -103.6629 +US 69349 Henry Nebraska NE Scotts Bluff 157 41.9873 -104.0452 +US 69352 Lyman Nebraska NE Scotts Bluff 157 41.8918 -104.0066 +US 69353 Mcgrew Nebraska NE Scotts Bluff 157 41.7469 -103.4164 +US 69355 Melbeta Nebraska NE Scotts Bluff 157 41.765 -103.4687 +US 69356 Minatare Nebraska NE Scotts Bluff 157 41.8493 -103.489 +US 69357 Mitchell Nebraska NE Scotts Bluff 157 41.9459 -103.796 +US 69358 Morrill Nebraska NE Scotts Bluff 157 41.9681 -103.9182 +US 69361 Scottsbluff Nebraska NE Scotts Bluff 157 41.872 -103.6619 +US 69363 Scottsbluff Nebraska NE Scotts Bluff 157 41.851 -103.7073 +US 68313 Beaver Crossing Nebraska NE Seward 159 40.7887 -97.2914 +US 68314 Bee Nebraska NE Seward 159 41.0007 -97.0745 +US 68330 Cordova Nebraska NE Seward 159 40.7185 -97.3407 +US 68360 Garland Nebraska NE Seward 159 40.9412 -96.9702 +US 68364 Goehner Nebraska NE Seward 159 40.8291 -97.1967 +US 68405 Milford Nebraska NE Seward 159 40.7632 -97.0576 +US 68423 Pleasant Dale Nebraska NE Seward 159 40.8133 -96.9513 +US 68432 Saint Mary Nebraska NE Seward County 159 40.4448 -96.29 +US 68434 Seward Nebraska NE Seward 159 40.9066 -97.0966 +US 68439 Staplehurst Nebraska NE Seward 159 40.9845 -97.1859 +US 68456 Utica Nebraska NE Seward 159 40.9168 -97.3344 +US 69335 Bingham Nebraska NE Sheridan 161 42.7306 -102.4715 +US 69340 Ellsworth Nebraska NE Sheridan 161 42.5024 -102.3997 +US 69343 Gordon Nebraska NE Sheridan 161 42.8068 -102.2049 +US 69347 Hay Springs Nebraska NE Sheridan 161 42.6401 -102.6756 +US 69351 Lakeside Nebraska NE Sheridan 161 42.0496 -102.4437 +US 69360 Rushville Nebraska NE Sheridan 161 42.7379 -102.4657 +US 69365 Whiteclay Nebraska NE Sheridan 161 42.5024 -102.3997 +US 68817 Ashton Nebraska NE Sherman 163 41.2672 -98.8034 +US 68844 Hazard Nebraska NE Sherman 163 41.0934 -99.0719 +US 68852 Litchfield Nebraska NE Sherman 163 41.1686 -99.1415 +US 68853 Loup City Nebraska NE Sherman 163 41.2845 -98.9751 +US 68871 Rockville Nebraska NE Sherman 163 41.1108 -98.8578 +US 69346 Harrison Nebraska NE Sioux 165 42.3946 -103.8318 +US 68768 Pilger Nebraska NE Stanton 167 41.9761 -97.0779 +US 68779 Stanton Nebraska NE Stanton 167 41.9076 -97.214 +US 68303 Alexandria Nebraska NE Thayer 169 40.2614 -97.4039 +US 68315 Belvidere Nebraska NE Thayer 169 40.251 -97.5554 +US 68322 Bruning Nebraska NE Thayer 169 40.3302 -97.5573 +US 68325 Byron Nebraska NE Thayer 169 40.0269 -97.7612 +US 68326 Carleton Nebraska NE Thayer 169 40.3005 -97.6719 +US 68327 Chester Nebraska NE Thayer 169 40.029 -97.6197 +US 68335 Davenport Nebraska NE Thayer 169 40.3108 -97.805 +US 68340 Deshler Nebraska NE Thayer 169 40.1387 -97.73 +US 68362 Gilead Nebraska NE Thayer 169 40.147 -97.4271 +US 68370 Hebron Nebraska NE Thayer 169 40.1728 -97.6052 +US 68375 Hubbell Nebraska NE Thayer 169 40.0456 -97.4735 +US 68429 Reynolds Nebraska NE Thayer 169 40.0598 -97.3806 +US 69142 Halsey Nebraska NE Thomas 171 41.9291 -100.2955 +US 69161 Seneca Nebraska NE Thomas 171 41.9901 -100.8073 +US 69166 Thedford Nebraska NE Thomas 171 41.9794 -100.5574 +US 68039 Macy Nebraska NE Thurston 173 42.1177 -96.3589 +US 68047 Pender Nebraska NE Thurston 173 42.1177 -96.7189 +US 68055 Rosalie Nebraska NE Thurston 173 42.0574 -96.4929 +US 68062 Thurston Nebraska NE Thurston 173 42.1882 -96.6904 +US 68067 Walthill Nebraska NE Thurston 173 42.1485 -96.4803 +US 68071 Winnebago Nebraska NE Thurston 173 42.2339 -96.4685 +US 68815 Arcadia Nebraska NE Valley 175 41.4293 -99.1205 +US 68837 Elyria Nebraska NE Valley 175 41.5673 -98.9816 +US 68859 North Loup Nebraska NE Valley 175 41.4972 -98.7858 +US 68862 Ord Nebraska NE Valley 175 41.5962 -98.9418 +US 68002 Arlington Nebraska NE Washington 177 41.4417 -96.307 +US 68008 Blair Nebraska NE Washington 177 41.5454 -96.1617 +US 68009 Blair Nebraska NE Washington 177 41.5383 -96.1823 +US 68023 Fort Calhoun Nebraska NE Washington 177 41.4373 -96.0324 +US 68029 Herman Nebraska NE Washington 177 41.6524 -96.2869 +US 68034 Kennard Nebraska NE Washington 177 41.4526 -96.1903 +US 68068 Washington Nebraska NE Washington 177 41.3953 -96.209 +US 68723 Carroll Nebraska NE Wayne 179 42.277 -97.1926 +US 68740 Hoskins Nebraska NE Wayne 179 42.1408 -97.3084 +US 68787 Wayne Nebraska NE Wayne 179 42.2304 -97.0186 +US 68790 Winside Nebraska NE Wayne 179 42.1678 -97.1825 +US 68928 Bladen Nebraska NE Webster 181 40.299 -98.6046 +US 68930 Blue Hill Nebraska NE Webster 181 40.311 -98.427 +US 68942 Guide Rock Nebraska NE Webster 181 40.0812 -98.3391 +US 68952 Inavale Nebraska NE Webster 181 40.0959 -98.6612 +US 68970 Red Cloud Nebraska NE Webster 181 40.0952 -98.5187 +US 68622 Bartlett Nebraska NE Wheeler 183 41.8697 -98.5567 +US 68637 Ericson Nebraska NE Wheeler 183 41.7828 -98.6453 +US 68316 Benedict Nebraska NE York 185 41.0033 -97.6029 +US 68319 Bradshaw Nebraska NE York 185 40.9207 -97.7607 +US 68367 Gresham Nebraska NE York 185 41.021 -97.4079 +US 68371 Henderson Nebraska NE York 185 40.7814 -97.7979 +US 68401 Mc Cool Junction Nebraska NE York 185 40.7442 -97.5937 +US 68460 Waco Nebraska NE York 185 40.9198 -97.4534 +US 68467 York Nebraska NE York 185 40.8667 -97.5825 +US 03218 Barnstead New Hampshire NH Belknap 001 43.3349 -71.2887 +US 03220 Belmont New Hampshire NH Belknap 001 43.4512 -71.489 +US 03225 Center Barnstead New Hampshire NH Belknap 001 43.3566 -71.2424 +US 03226 Center Harbor New Hampshire NH Belknap 001 43.7107 -71.4797 +US 03237 Gilmanton New Hampshire NH Belknap 001 43.4175 -71.4121 +US 03246 Laconia New Hampshire NH Belknap 001 43.5727 -71.4781 +US 03247 Laconia New Hampshire NH Belknap 001 43.589 -71.4455 +US 03249 Gilford New Hampshire NH Belknap County 001 43.5475 -71.4072 +US 03252 Lochmere New Hampshire NH Belknap 001 43.4686 -71.5371 +US 03253 Meredith New Hampshire NH Belknap 001 43.6311 -71.4997 +US 03256 New Hampton New Hampshire NH Belknap 001 43.6184 -71.6435 +US 03269 Sanbornton New Hampshire NH Belknap 001 43.5496 -71.6003 +US 03276 Tilton New Hampshire NH Belknap 001 43.4603 -71.5774 +US 03289 Winnisquam New Hampshire NH Belknap 001 43.4964 -71.5197 +US 03298 Tilton New Hampshire NH Belknap 001 43.5249 -71.4458 +US 03299 Tilton New Hampshire NH Belknap 001 43.5249 -71.4458 +US 03809 Alton New Hampshire NH Belknap 001 43.463 -71.2297 +US 03810 Alton Bay New Hampshire NH Belknap 001 43.4845 -71.2489 +US 03837 Gilmanton Iron Works New Hampshire NH Belknap 001 43.4466 -71.2995 +US 03227 Center Sandwich New Hampshire NH Carroll 003 43.8162 -71.4506 +US 03254 Moultonborough New Hampshire NH Carroll 003 43.7281 -71.3922 +US 03259 North Sandwich New Hampshire NH Carroll 003 43.8452 -71.385 +US 03812 Bartlett New Hampshire NH Carroll 003 44.0802 -71.292 +US 03813 Center Conway New Hampshire NH Carroll 003 43.9878 -71.0607 +US 03814 Center Ossipee New Hampshire NH Carroll 003 43.7682 -71.1349 +US 03816 Center Tuftonboro New Hampshire NH Carroll 003 43.6849 -71.2551 +US 03817 Chocorua New Hampshire NH Carroll 003 43.8909 -71.2407 +US 03818 Conway New Hampshire NH Carroll 003 43.9742 -71.1503 +US 03830 East Wakefield New Hampshire NH Carroll 003 43.6351 -71.0094 +US 03832 Eaton Center New Hampshire NH Carroll 003 43.8839 -71.2577 +US 03836 Freedom New Hampshire NH Carroll 003 43.8172 -71.0628 +US 03838 Glen New Hampshire NH Carroll 003 44.1018 -71.1925 +US 03845 Intervale New Hampshire NH Carroll 003 44.0955 -71.1194 +US 03846 Jackson New Hampshire NH Carroll 003 44.167 -71.1878 +US 03847 Kearsarge New Hampshire NH Carroll 003 43.8839 -71.2577 +US 03849 Madison New Hampshire NH Carroll 003 43.9152 -71.1254 +US 03850 Melvin Village New Hampshire NH Carroll 003 43.7077 -71.3017 +US 03853 Mirror Lake New Hampshire NH Carroll 003 43.6366 -71.2729 +US 03860 North Conway New Hampshire NH Carroll 003 44.0336 -71.1238 +US 03861 Lee New Hampshire NH Carroll County 003 43.1192 -70.9969 +US 03864 Ossipee New Hampshire NH Carroll 003 43.6945 -71.1129 +US 03872 Sanbornville New Hampshire NH Carroll 003 43.5513 -71.02 +US 03875 Silver Lake New Hampshire NH Carroll 003 43.879 -71.1905 +US 03882 South Effingham New Hampshire NH Carroll 003 43.7212 -71.0021 +US 03883 South Tamworth New Hampshire NH Carroll 003 43.8077 -71.308 +US 03886 Tamworth New Hampshire NH Carroll 003 43.862 -71.2645 +US 03890 West Ossipee New Hampshire NH Carroll 003 43.8118 -71.1946 +US 03894 Wolfeboro New Hampshire NH Carroll 003 43.595 -71.1908 +US 03896 Wolfeboro Falls New Hampshire NH Carroll 003 43.5892 -71.2189 +US 03897 Wonalancet New Hampshire NH Carroll 003 43.8839 -71.2577 +US 03431 Keene New Hampshire NH Cheshire 005 42.9627 -72.2955 +US 03435 Keene New Hampshire NH Cheshire 005 42.9471 -72.243 +US 03441 Ashuelot New Hampshire NH Cheshire 005 42.7851 -72.4349 +US 03443 Chesterfield New Hampshire NH Cheshire 005 42.8839 -72.4548 +US 03444 Dublin New Hampshire NH Cheshire 005 42.8972 -72.0505 +US 03445 Sullivan New Hampshire NH Cheshire 005 42.9982 -72.2019 +US 03446 Swanzey New Hampshire NH Cheshire 005 42.8411 -72.3301 +US 03447 Fitzwilliam New Hampshire NH Cheshire 005 42.7611 -72.145 +US 03448 Gilsum New Hampshire NH Cheshire 005 43.0399 -72.2719 +US 03450 Harrisville New Hampshire NH Cheshire 005 42.9399 -72.0972 +US 03451 Hinsdale New Hampshire NH Cheshire 005 42.8027 -72.5015 +US 03452 Jaffrey New Hampshire NH Cheshire 005 42.8178 -72.0275 +US 03455 Marlborough New Hampshire NH Cheshire 005 42.8988 -72.2013 +US 03456 Marlow New Hampshire NH Cheshire 005 43.1326 -72.2109 +US 03457 Munsonville New Hampshire NH Cheshire 005 42.9986 -72.1337 +US 03461 Rindge New Hampshire NH Cheshire 005 42.7544 -72.019 +US 03462 Spofford New Hampshire NH Cheshire 005 42.912 -72.4103 +US 03464 Stoddard New Hampshire NH Cheshire 005 43.0739 -72.1088 +US 03465 Troy New Hampshire NH Cheshire 005 42.827 -72.1848 +US 03466 West Chesterfield New Hampshire NH Cheshire 005 42.8956 -72.5097 +US 03467 Westmoreland New Hampshire NH Cheshire 005 42.969 -72.4358 +US 03469 West Swanzey New Hampshire NH Cheshire 005 42.8734 -72.3151 +US 03470 Winchester New Hampshire NH Cheshire 005 42.7788 -72.344 +US 03602 Alstead New Hampshire NH Cheshire 005 43.1265 -72.3281 +US 03604 Drewsville New Hampshire NH Cheshire 005 42.9471 -72.243 +US 03608 Walpole New Hampshire NH Cheshire 005 43.0765 -72.4155 +US 03609 North Walpole New Hampshire NH Cheshire 005 43.1428 -72.4483 +US 03570 Berlin New Hampshire NH Coos 007 44.4811 -71.1892 +US 03575 Bretton Woods New Hampshire NH Coos 007 44.6956 -71.3874 +US 03576 Colebrook New Hampshire NH Coos 007 44.9078 -71.4793 +US 03579 Errol New Hampshire NH Coos 007 44.8003 -71.1436 +US 03581 Gorham New Hampshire NH Coos 007 44.4048 -71.1548 +US 03582 Groveton New Hampshire NH Coos 007 44.5984 -71.5064 +US 03583 Jefferson New Hampshire NH Coos 007 44.3999 -71.4518 +US 03584 Lancaster New Hampshire NH Coos 007 44.4921 -71.5591 +US 03587 Meadows New Hampshire NH Coos 007 44.6956 -71.3874 +US 03588 Milan New Hampshire NH Coos 007 44.587 -71.181 +US 03589 Mount Washington New Hampshire NH Coos 007 44.6956 -71.3874 +US 03590 North Stratford New Hampshire NH Coos 007 44.7149 -71.5644 +US 03592 Pittsburg New Hampshire NH Coos 007 45.0866 -71.3636 +US 03593 Randolph New Hampshire NH Coos County 007 44.4753 -71.1777 +US 03595 Twin Mountain New Hampshire NH Coos 007 44.2689 -71.5471 +US 03597 West Stewartstown New Hampshire NH Coos 007 44.6956 -71.3874 +US 03598 Whitefield New Hampshire NH Coos 007 44.3681 -71.6035 +US 03215 Waterville Valley New Hampshire NH Grafton 009 43.9302 -71.5341 +US 03217 Ashland New Hampshire NH Grafton 009 43.7034 -71.6121 +US 03222 Bristol New Hampshire NH Grafton 009 43.612 -71.7507 +US 03223 Campton New Hampshire NH Grafton 009 43.8418 -71.6652 +US 03232 East Hebron New Hampshire NH Grafton 009 43.9675 -71.8409 +US 03238 Glencliff New Hampshire NH Grafton 009 43.9675 -71.8409 +US 03240 Grafton New Hampshire NH Grafton 009 43.5727 -71.9634 +US 03241 Hebron New Hampshire NH Grafton 009 43.7186 -71.827 +US 03245 Holderness New Hampshire NH Grafton 009 43.7378 -71.6044 +US 03251 Lincoln New Hampshire NH Grafton 009 44.0582 -71.6727 +US 03258 Chichester New Hampshire NH Grafton County 009 43.244 -71.4105 +US 03262 North Woodstock New Hampshire NH Grafton 009 44.0354 -71.6863 +US 03264 Plymouth New Hampshire NH Grafton 009 43.7635 -71.6847 +US 03266 Rumney New Hampshire NH Grafton 009 43.8044 -71.848 +US 03274 Stinson Lake New Hampshire NH Grafton 009 43.9675 -71.8409 +US 03279 Warren New Hampshire NH Grafton 009 43.9447 -71.8901 +US 03282 Wentworth New Hampshire NH Grafton 009 43.8685 -71.9097 +US 03285 Thornton New Hampshire NH Grafton County 009 43.905 -71.647 +US 03293 Woodstock New Hampshire NH Grafton 009 43.9675 -71.8409 +US 03561 Littleton New Hampshire NH Grafton 009 44.3112 -71.7768 +US 03574 Bethlehem New Hampshire NH Grafton 009 44.2808 -71.6829 +US 03580 Franconia New Hampshire NH Grafton 009 44.2053 -71.7518 +US 03585 Lisbon New Hampshire NH Grafton 009 44.2148 -71.8966 +US 03586 Sugar Hill New Hampshire NH Grafton County 009 44.2203 -71.7964 +US 03740 Bath New Hampshire NH Grafton 009 44.1808 -71.9828 +US 03741 Canaan New Hampshire NH Grafton 009 43.6601 -72.0297 +US 03748 Enfield New Hampshire NH Grafton 009 43.6256 -72.127 +US 03749 Enfield Center New Hampshire NH Grafton 009 43.5796 -72.0854 +US 03750 Etna New Hampshire NH Grafton 009 43.7113 -72.2125 +US 03755 Hanover New Hampshire NH Grafton 009 43.7045 -72.285 +US 03756 Lebanon New Hampshire NH Grafton 009 43.9675 -71.8409 +US 03765 Haverhill New Hampshire NH Grafton 009 44.0394 -72.0573 +US 03766 Lebanon New Hampshire NH Grafton 009 43.6447 -72.2428 +US 03768 Lyme New Hampshire NH Grafton 009 43.7913 -72.162 +US 03769 Lyme Center New Hampshire NH Grafton 009 43.7863 -72.1205 +US 03771 Monroe New Hampshire NH Grafton 009 44.2734 -72.025 +US 03774 North Haverhill New Hampshire NH Grafton 009 44.0978 -72.0191 +US 03777 Orford New Hampshire NH Grafton 009 43.8941 -72.0978 +US 03779 Piermont New Hampshire NH Grafton 009 43.9906 -72.0813 +US 03780 Pike New Hampshire NH Grafton 009 44.0255 -72.0096 +US 03784 West Lebanon New Hampshire NH Grafton 009 43.644 -72.3007 +US 03785 Woodsville New Hampshire NH Grafton 009 44.1385 -71.9892 +US 03031 Amherst New Hampshire NH Hillsborough 011 42.8569 -71.6075 +US 03033 Brookline New Hampshire NH Hillsborough 011 42.7384 -71.6663 +US 03043 Francestown New Hampshire NH Hillsborough 011 42.992 -71.8113 +US 03045 Goffstown New Hampshire NH Hillsborough 011 43.0201 -71.5697 +US 03047 Greenfield New Hampshire NH Hillsborough 011 42.9493 -71.8728 +US 03048 Greenville New Hampshire NH Hillsborough 011 42.7482 -71.7619 +US 03049 Hollis New Hampshire NH Hillsborough 011 42.7485 -71.5772 +US 03051 Hudson New Hampshire NH Hillsborough 011 42.769 -71.4121 +US 03052 Litchfield New Hampshire NH Hillsborough 011 42.843 -71.455 +US 03054 Merrimack New Hampshire NH Hillsborough 011 42.8667 -71.5128 +US 03055 Milford New Hampshire NH Hillsborough 011 42.8285 -71.6606 +US 03057 Mont Vernon New Hampshire NH Hillsborough 011 42.8976 -71.6762 +US 03060 Nashua New Hampshire NH Hillsborough 011 42.7564 -71.4667 +US 03061 Nashua New Hampshire NH Hillsborough 011 42.9521 -71.6539 +US 03062 Nashua New Hampshire NH Hillsborough 011 42.7235 -71.4893 +US 03063 Nashua New Hampshire NH Hillsborough 011 42.7717 -71.5132 +US 03064 Nashua New Hampshire NH Hillsborough 011 42.779 -71.4748 +US 03070 New Boston New Hampshire NH Hillsborough 011 42.9722 -71.6864 +US 03071 New Ipswich New Hampshire NH Hillsborough 011 42.7511 -71.8703 +US 03076 Pelham New Hampshire NH Hillsborough 011 42.7288 -71.3046 +US 03082 Lyndeborough New Hampshire NH Hillsborough 011 42.8954 -71.7744 +US 03084 Temple New Hampshire NH Hillsborough 011 42.82 -71.8523 +US 03086 Wilton New Hampshire NH Hillsborough 011 42.8368 -71.7541 +US 03101 Manchester New Hampshire NH Hillsborough 011 42.9929 -71.4633 +US 03102 Manchester New Hampshire NH Hillsborough 011 42.9944 -71.4884 +US 03103 Manchester New Hampshire NH Hillsborough 011 42.9656 -71.4493 +US 03104 Manchester New Hampshire NH Hillsborough 011 43.0073 -71.4482 +US 03105 Manchester New Hampshire NH Hillsborough 011 42.9521 -71.6539 +US 03107 Manchester New Hampshire NH Hillsborough 011 42.9521 -71.6539 +US 03108 Manchester New Hampshire NH Hillsborough 011 42.9521 -71.6539 +US 03109 Manchester New Hampshire NH Hillsborough 011 42.9713 -71.4135 +US 03110 Bedford New Hampshire NH Hillsborough 011 42.9403 -71.5213 +US 03111 Manchester New Hampshire NH Hillsborough 011 42.9521 -71.6539 +US 03244 Hillsboro New Hampshire NH Hillsborough 011 43.1207 -71.9028 +US 03281 Weare New Hampshire NH Hillsborough 011 43.0714 -71.7038 +US 03440 Antrim New Hampshire NH Hillsborough 011 43.0595 -71.9387 +US 03442 Bennington New Hampshire NH Hillsborough 011 43.0103 -71.9153 +US 03449 Hancock New Hampshire NH Hillsborough 011 42.9768 -71.9819 +US 03458 Peterborough New Hampshire NH Hillsborough 011 42.8856 -71.947 +US 03468 West Peterborough New Hampshire NH Hillsborough 011 42.8908 -71.9334 +US 03046 Dunbarton New Hampshire NH Merrimack County 013 43.1025 -71.6169 +US 03106 Hooksett New Hampshire NH Merrimack 013 43.0617 -71.4444 +US 03216 Andover New Hampshire NH Merrimack 013 43.4287 -71.783 +US 03221 Bradford New Hampshire NH Merrimack 013 43.2517 -71.9617 +US 03224 Canterbury New Hampshire NH Merrimack 013 43.357 -71.557 +US 03229 Contoocook New Hampshire NH Merrimack 013 43.1978 -71.6968 +US 03230 Danbury New Hampshire NH Merrimack 013 43.5115 -71.8691 +US 03231 East Andover New Hampshire NH Merrimack 013 43.4662 -71.7365 +US 03233 Elkins New Hampshire NH Merrimack 013 43.4227 -71.9448 +US 03234 Epsom New Hampshire NH Merrimack 013 43.2174 -71.3546 +US 03235 Franklin New Hampshire NH Merrimack 013 43.4426 -71.6491 +US 03242 Henniker New Hampshire NH Merrimack 013 43.1791 -71.8159 +US 03243 Hill New Hampshire NH Merrimack 013 43.5274 -71.7292 +US 03255 Newbury New Hampshire NH Merrimack 013 43.3217 -72.0118 +US 03257 New London New Hampshire NH Merrimack 013 43.4145 -71.9857 +US 03260 North Sutton New Hampshire NH Merrimack 013 43.3653 -71.9341 +US 03263 Pittsfield New Hampshire NH Merrimack 013 43.2874 -71.333 +US 03265 Andover New Hampshire NH Merrimack County 013 43.417 -71.99 +US 03268 Salisbury New Hampshire NH Merrimack 013 43.4067 -71.7045 +US 03272 South Newbury New Hampshire NH Merrimack 013 43.3103 -71.6629 +US 03273 South Sutton New Hampshire NH Merrimack 013 43.3042 -71.9289 +US 03275 Suncook New Hampshire NH Merrimack 013 43.1604 -71.4179 +US 03278 Warner New Hampshire NH Merrimack 013 43.3035 -71.8353 +US 03287 Wilmot New Hampshire NH Merrimack 013 43.4485 -71.9158 +US 03301 Concord New Hampshire NH Merrimack 013 43.2185 -71.5277 +US 03302 Concord New Hampshire NH Merrimack 013 43.3103 -71.6629 +US 03303 Concord New Hampshire NH Merrimack 013 43.2817 -71.6595 +US 03304 Bow New Hampshire NH Merrimack 013 43.1388 -71.5448 +US 03305 Concord New Hampshire NH Merrimack 013 43.2134 -71.5172 +US 03306 Concord New Hampshire NH Merrimack County 013 43.208 -71.5378 +US 03307 Loudon New Hampshire NH Merrimack 013 43.3193 -71.467 +US 00210 Portsmouth New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 00211 Portsmouth New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 00212 Portsmouth New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 00213 Portsmouth New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 00214 Portsmouth New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 00215 Portsmouth New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 03032 Auburn New Hampshire NH Rockingham 015 42.9925 -71.3449 +US 03034 Candia New Hampshire NH Rockingham 015 43.0585 -71.3049 +US 03036 Chester New Hampshire NH Rockingham 015 42.9678 -71.245 +US 03037 Deerfield New Hampshire NH Rockingham 015 43.1378 -71.2513 +US 03038 Derry New Hampshire NH Rockingham 015 42.8874 -71.302 +US 03040 East Candia New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 03041 East Derry New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 03042 Epping New Hampshire NH Rockingham 015 43.0411 -71.0764 +US 03044 Fremont New Hampshire NH Rockingham 015 42.984 -71.1218 +US 03053 Londonderry New Hampshire NH Rockingham 015 42.8656 -71.3772 +US 03073 North Salem New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 03077 Raymond New Hampshire NH Rockingham 015 43.0325 -71.1912 +US 03079 Salem New Hampshire NH Rockingham 015 42.7846 -71.2176 +US 03087 Windham New Hampshire NH Rockingham 015 42.8051 -71.3067 +US 03261 Northwood New Hampshire NH Rockingham 015 43.207 -71.2004 +US 03290 Nottingham New Hampshire NH Rockingham 015 43.1196 -71.111 +US 03291 West Nottingham New Hampshire NH Rockingham 015 43.1823 -71.1396 +US 03801 Portsmouth New Hampshire NH Rockingham 015 43.0729 -70.8052 +US 03802 Portsmouth New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 03803 Portsmouth New Hampshire NH Rockingham 015 42.927 -71.4448 +US 03804 Portsmouth New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 03811 Atkinson New Hampshire NH Rockingham 015 42.837 -71.1603 +US 03819 Danville New Hampshire NH Rockingham 015 42.9234 -71.121 +US 03826 East Hampstead New Hampshire NH Rockingham 015 42.8877 -71.128 +US 03827 East Kingston New Hampshire NH Rockingham 015 42.907 -70.9876 +US 03833 Exeter New Hampshire NH Rockingham 015 42.9513 -70.9223 +US 03840 Greenland New Hampshire NH Rockingham 015 43.0353 -70.8475 +US 03841 Hampstead New Hampshire NH Rockingham 015 42.882 -71.1758 +US 03842 Hampton New Hampshire NH Rockingham 015 42.9359 -70.8243 +US 03843 Hampton New Hampshire NH Rockingham 015 43.0059 -71.0132 +US 03844 Hampton Falls New Hampshire NH Rockingham 015 42.9263 -70.8876 +US 03848 Kingston New Hampshire NH Rockingham 015 42.9133 -71.0639 +US 03854 New Castle New Hampshire NH Rockingham 015 43.0681 -70.7199 +US 03856 Newfields New Hampshire NH Rockingham 015 43.0374 -70.9782 +US 03857 Newmarket New Hampshire NH Rockingham 015 43.0726 -70.9553 +US 03858 Newton New Hampshire NH Rockingham 015 42.8678 -71.042 +US 03859 Newton Junction New Hampshire NH Rockingham 015 42.8619 -71.04 +US 03862 North Hampton New Hampshire NH Rockingham 015 42.9776 -70.8267 +US 03865 Plaistow New Hampshire NH Rockingham 015 42.8356 -71.0934 +US 03870 Rye New Hampshire NH Rockingham 015 43.0095 -70.7652 +US 03871 Rye Beach New Hampshire NH Rockingham 015 42.9806 -70.7719 +US 03873 Sandown New Hampshire NH Rockingham 015 42.9308 -71.1861 +US 03874 Seabrook New Hampshire NH Rockingham 015 42.8854 -70.8646 +US 03885 Stratham New Hampshire NH Rockingham 015 43.0194 -70.8997 +US 03805 Rollinsford New Hampshire NH Strafford 017 43.2853 -70.9307 +US 03815 Center Strafford New Hampshire NH Strafford 017 43.2629 -71.1071 +US 03820 Dover New Hampshire NH Strafford 017 43.1888 -70.8868 +US 03821 Dover New Hampshire NH Strafford 017 43.3267 -71.0284 +US 03822 Dover New Hampshire NH Strafford 017 43.3267 -71.0284 +US 03823 Madbury New Hampshire NH Strafford County 017 43.1729 -70.9412 +US 03824 Durham New Hampshire NH Strafford 017 43.1174 -70.9197 +US 03825 Barrington New Hampshire NH Strafford 017 43.2027 -71.0377 +US 03835 Farmington New Hampshire NH Strafford 017 43.3884 -71.0647 +US 03839 Rochester New Hampshire NH Strafford 017 43.262 -70.9837 +US 03851 Milton New Hampshire NH Strafford 017 43.4229 -71.0114 +US 03852 Milton Mills New Hampshire NH Strafford 017 43.5025 -70.9697 +US 03855 New Durham New Hampshire NH Strafford 017 43.443 -71.1408 +US 03866 Rochester New Hampshire NH Strafford 017 43.4118 -71.0273 +US 03867 Rochester New Hampshire NH Strafford 017 43.3092 -71.0558 +US 03868 Rochester New Hampshire NH Strafford 017 43.32 -70.9413 +US 03869 Rollinsford New Hampshire NH Strafford 017 43.2269 -70.8332 +US 03878 Somersworth New Hampshire NH Strafford 017 43.2525 -70.8756 +US 03884 Strafford New Hampshire NH Strafford 017 43.2506 -71.1625 +US 03887 Union New Hampshire NH Strafford 017 43.4861 -71.063 +US 03280 Washington New Hampshire NH Sullivan 019 43.1747 -72.0824 +US 03284 Springfield New Hampshire NH Sullivan 019 43.4938 -72.047 +US 03601 Acworth New Hampshire NH Sullivan 019 43.196 -72.3001 +US 03603 Charlestown New Hampshire NH Sullivan 019 43.2573 -72.4064 +US 03605 Lempster New Hampshire NH Sullivan 019 43.2136 -72.1968 +US 03606 Lempster New Hampshire NH Sullivan County 019 43.2383 -72.2109 +US 03607 South Acworth New Hampshire NH Sullivan 019 43.1956 -72.2686 +US 03743 Claremont New Hampshire NH Sullivan 019 43.3679 -72.3422 +US 03745 Cornish New Hampshire NH Sullivan 019 43.4963 -72.3394 +US 03746 Cornish Flat New Hampshire NH Sullivan 019 43.3645 -72.194 +US 03751 Georges Mills New Hampshire NH Sullivan 019 43.4487 -72.0637 +US 03752 Goshen New Hampshire NH Sullivan 019 43.3026 -72.1241 +US 03753 Grantham New Hampshire NH Sullivan 019 43.5103 -72.1334 +US 03754 Guild New Hampshire NH Sullivan 019 43.3656 -72.1256 +US 03770 Meriden New Hampshire NH Sullivan 019 43.5299 -72.2756 +US 03772 Mount Sunapee New Hampshire NH Sullivan County 019 43.3405 -72.0711 +US 03773 Newport New Hampshire NH Sullivan 019 43.3532 -72.1838 +US 03781 Plainfield New Hampshire NH Sullivan 019 43.5519 -72.2704 +US 03782 Sunapee New Hampshire NH Sullivan 019 43.3868 -72.095 +US 08037 Hammonton New Jersey NJ Atlantic 001 39.638 -74.7728 +US 08201 Absecon New Jersey NJ Atlantic 001 39.4218 -74.4949 +US 08203 Brigantine New Jersey NJ Atlantic 001 39.3702 -74.494 +US 08205 Absecon New Jersey NJ Atlantic County 001 39.4745 -74.4575 +US 08213 Cologne New Jersey NJ Atlantic 001 39.5092 -74.6086 +US 08215 Egg Harbor City New Jersey NJ Atlantic 001 39.5331 -74.6177 +US 08217 Elwood New Jersey NJ Atlantic 001 39.5737 -74.72 +US 08220 Leeds Point New Jersey NJ Atlantic 001 39.5092 -74.6086 +US 08221 Linwood New Jersey NJ Atlantic 001 39.3469 -74.5807 +US 08222 Linwood New Jersey NJ Atlantic County 001 39.3422 -74.5703 +US 08225 Northfield New Jersey NJ Atlantic 001 39.3703 -74.5552 +US 08227 Linwood New Jersey NJ Atlantic County 001 39.3422 -74.5703 +US 08231 Oceanville New Jersey NJ Atlantic 001 39.5092 -74.6086 +US 08232 Pleasantville New Jersey NJ Atlantic 001 39.3876 -74.5149 +US 08234 Egg Harbor Township New Jersey NJ Atlantic 001 39.3741 -74.6118 +US 08240 Pomona New Jersey NJ Atlantic 001 39.4877 -74.5543 +US 08241 Port Republic New Jersey NJ Atlantic 001 39.5272 -74.4903 +US 08244 Somers Point New Jersey NJ Atlantic 001 39.3223 -74.6008 +US 08310 Buena New Jersey NJ Atlantic 001 39.537 -74.8895 +US 08317 Dorothy New Jersey NJ Atlantic 001 39.4031 -74.8316 +US 08319 Estell Manor New Jersey NJ Atlantic 001 39.3783 -74.8165 +US 08326 Landisville New Jersey NJ Atlantic 001 39.5239 -74.9377 +US 08330 Mays Landing New Jersey NJ Atlantic 001 39.432 -74.6962 +US 08340 Milmay New Jersey NJ Atlantic 001 39.4451 -74.8667 +US 08341 Minotola New Jersey NJ Atlantic 001 39.5155 -74.9467 +US 08342 Mizpah New Jersey NJ Atlantic 001 39.5021 -74.8335 +US 08346 Newtonville New Jersey NJ Atlantic 001 39.5645 -74.859 +US 08350 Richland New Jersey NJ Atlantic 001 39.485 -74.8776 +US 08400 Atlantic City New Jersey NJ Atlantic County 001 39.3642 -74.4233 +US 08401 Atlantic City New Jersey NJ Atlantic 001 39.3664 -74.4317 +US 08402 Margate City New Jersey NJ Atlantic 001 39.3286 -74.509 +US 08403 Longport New Jersey NJ Atlantic 001 39.3194 -74.5356 +US 08404 Atlantic City New Jersey NJ Atlantic 001 39.5092 -74.6086 +US 08405 Atlantic City New Jersey NJ Atlantic 001 39.5092 -74.6086 +US 08406 Ventnor City New Jersey NJ Atlantic 001 39.346 -74.4723 +US 08411 Atlantic City New Jersey NJ Atlantic County 001 39.359 -74.4311 +US 07010 Cliffside Park New Jersey NJ Bergen 003 40.8222 -73.988 +US 07020 Edgewater New Jersey NJ Bergen 003 40.8317 -73.9738 +US 07022 Fairview New Jersey NJ Bergen 003 40.817 -74 +US 07024 Fort Lee New Jersey NJ Bergen 003 40.8503 -73.9745 +US 07026 Garfield New Jersey NJ Bergen 003 40.8789 -74.1081 +US 07031 North Arlington New Jersey NJ Bergen 003 40.7898 -74.1343 +US 07057 Wallington New Jersey NJ Bergen 003 40.8536 -74.1079 +US 07070 Rutherford New Jersey NJ Bergen 003 40.8292 -74.1121 +US 07071 Lyndhurst New Jersey NJ Bergen 003 40.8094 -74.1245 +US 07072 Carlstadt New Jersey NJ Bergen 003 40.8403 -74.0925 +US 07073 East Rutherford New Jersey NJ Bergen 003 40.8385 -74.1041 +US 07074 Moonachie New Jersey NJ Bergen 003 40.8394 -74.0566 +US 07075 Wood Ridge New Jersey NJ Bergen 003 40.8493 -74.0878 +US 07401 Allendale New Jersey NJ Bergen 003 41.0327 -74.1342 +US 07407 Elmwood Park New Jersey NJ Bergen 003 40.9069 -74.1209 +US 07410 Fair Lawn New Jersey NJ Bergen 003 40.9343 -74.1166 +US 07417 Franklin Lakes New Jersey NJ Bergen 003 41.0081 -74.2113 +US 07423 Ho Ho Kus New Jersey NJ Bergen 003 41.0004 -74.1025 +US 07430 Mahwah New Jersey NJ Bergen 003 41.0817 -74.1861 +US 07432 Midland Park New Jersey NJ Bergen 003 40.9957 -74.1409 +US 07436 Oakland New Jersey NJ Bergen 003 41.0294 -74.2338 +US 07446 Ramsey New Jersey NJ Bergen 003 41.0577 -74.1445 +US 07450 Ridgewood New Jersey NJ Bergen 003 40.982 -74.1131 +US 07451 Ridgewood New Jersey NJ Bergen 003 40.9481 -74.0832 +US 07452 Glen Rock New Jersey NJ Bergen 003 40.9602 -74.1254 +US 07458 Saddle River New Jersey NJ Bergen 003 41.0443 -74.0981 +US 07463 Waldwick New Jersey NJ Bergen 003 41.013 -74.1243 +US 07481 Wyckoff New Jersey NJ Bergen 003 40.9978 -74.166 +US 07495 Mahwah New Jersey NJ Bergen 003 41.1039 -74.1644 +US 07498 Mahwah New Jersey NJ Bergen 003 40.9481 -74.0832 +US 07601 Hackensack New Jersey NJ Bergen 003 40.8882 -74.0503 +US 07602 Hackensack New Jersey NJ Bergen 003 40.9481 -74.0832 +US 07603 Bogota New Jersey NJ Bergen 003 40.8744 -74.0281 +US 07604 Hasbrouck Heights New Jersey NJ Bergen 003 40.8623 -74.0756 +US 07605 Leonia New Jersey NJ Bergen 003 40.8629 -73.9879 +US 07606 South Hackensack New Jersey NJ Bergen 003 40.8634 -74.0456 +US 07607 Maywood New Jersey NJ Bergen 003 40.9024 -74.0629 +US 07608 Teterboro New Jersey NJ Bergen 003 40.864 -74.0556 +US 07620 Alpine New Jersey NJ Bergen 003 40.9511 -73.9308 +US 07621 Bergenfield New Jersey NJ Bergen 003 40.9238 -73.9989 +US 07624 Closter New Jersey NJ Bergen 003 40.9721 -73.959 +US 07626 Cresskill New Jersey NJ Bergen 003 40.9418 -73.9652 +US 07627 Demarest New Jersey NJ Bergen 003 40.9548 -73.9602 +US 07628 Dumont New Jersey NJ Bergen 003 40.9447 -73.9921 +US 07630 Emerson New Jersey NJ Bergen 003 40.9755 -74.0285 +US 07631 Englewood New Jersey NJ Bergen 003 40.8943 -73.9772 +US 07632 Englewood Cliffs New Jersey NJ Bergen 003 40.882 -73.9544 +US 07640 Harrington Park New Jersey NJ Bergen 003 40.9918 -73.98 +US 07641 Haworth New Jersey NJ Bergen 003 40.9608 -73.9874 +US 07642 Hillsdale New Jersey NJ Bergen 003 41.0069 -74.0426 +US 07643 Little Ferry New Jersey NJ Bergen 003 40.8493 -74.0405 +US 07644 Lodi New Jersey NJ Bergen 003 40.8764 -74.0838 +US 07645 Montvale New Jersey NJ Bergen 003 41.0495 -74.0384 +US 07646 New Milford New Jersey NJ Bergen 003 40.9331 -74.0195 +US 07647 Northvale New Jersey NJ Bergen 003 41.0086 -73.9389 +US 07648 Norwood New Jersey NJ Bergen 003 40.9952 -73.9582 +US 07649 Oradell New Jersey NJ Bergen 003 40.9535 -74.0335 +US 07650 Palisades Park New Jersey NJ Bergen 003 40.8462 -73.9954 +US 07652 Paramus New Jersey NJ Bergen 003 40.9477 -74.0672 +US 07653 Paramus New Jersey NJ Bergen 003 40.9481 -74.0832 +US 07656 Park Ridge New Jersey NJ Bergen 003 41.0343 -74.0396 +US 07657 Ridgefield New Jersey NJ Bergen 003 40.8326 -74.0015 +US 07660 Ridgefield Park New Jersey NJ Bergen 003 40.8562 -74.023 +US 07661 River Edge New Jersey NJ Bergen 003 40.9265 -74.0392 +US 07662 Rochelle Park New Jersey NJ Bergen 003 40.9057 -74.079 +US 07663 Saddle Brook New Jersey NJ Bergen 003 40.9031 -74.0955 +US 07666 Teaneck New Jersey NJ Bergen 003 40.8915 -74.0119 +US 07670 Tenafly New Jersey NJ Bergen 003 40.9216 -73.9659 +US 07675 Westwood New Jersey NJ Bergen 003 41.0092 -74.0041 +US 07676 Township Of Washington New Jersey NJ Bergen County 003 40.9883 -74.0635 +US 07677 Woodcliff Lake New Jersey NJ Bergen County 003 41.0234 -74.0603 +US 07688 Teaneck New Jersey NJ Bergen 003 40.9481 -74.0832 +US 07699 Teterboro New Jersey NJ Bergen County 003 40.8463 -74.0611 +US 08010 Beverly New Jersey NJ Burlington 005 40.0565 -74.9114 +US 08011 Birmingham New Jersey NJ Burlington 005 39.976 -74.7114 +US 08015 Browns Mills New Jersey NJ Burlington 005 39.9597 -74.5655 +US 08016 Burlington New Jersey NJ Burlington 005 40.068 -74.8454 +US 08019 Chatsworth New Jersey NJ Burlington 005 39.8019 -74.5256 +US 08022 Columbus New Jersey NJ Burlington 005 40.0642 -74.6899 +US 08036 Hainesport New Jersey NJ Burlington 005 39.9872 -74.8293 +US 08041 Jobstown New Jersey NJ Burlington 005 40.0387 -74.6873 +US 08042 Juliustown New Jersey NJ Burlington 005 40.0123 -74.6646 +US 08046 Willingboro New Jersey NJ Burlington 005 40.029 -74.8835 +US 08048 Lumberton New Jersey NJ Burlington 005 39.9651 -74.8067 +US 08052 Maple Shade New Jersey NJ Burlington 005 39.9511 -74.9946 +US 08053 Marlton New Jersey NJ Burlington 005 39.8845 -74.9067 +US 08054 Mount Laurel New Jersey NJ Burlington 005 39.9478 -74.9036 +US 08055 Medford New Jersey NJ Burlington 005 39.8637 -74.8223 +US 08057 Moorestown New Jersey NJ Burlington 005 39.9683 -74.9533 +US 08060 Mount Holly New Jersey NJ Burlington 005 40.0086 -74.7896 +US 08064 New Lisbon New Jersey NJ Burlington 005 39.8624 -74.7251 +US 08065 Palmyra New Jersey NJ Burlington 005 40.0037 -75.0257 +US 08068 Pemberton New Jersey NJ Burlington 005 39.9712 -74.6676 +US 08073 Rancocas New Jersey NJ Burlington 005 40.0095 -74.8668 +US 08075 Riverside New Jersey NJ Burlington 005 40.0293 -74.9497 +US 08076 Riverton New Jersey NJ Burlington 005 39.8624 -74.7251 +US 08077 Riverton New Jersey NJ Burlington 005 40.002 -74.9952 +US 08088 Vincentown New Jersey NJ Burlington 005 39.8604 -74.6693 +US 08224 New Gretna New Jersey NJ Burlington 005 39.5952 -74.4357 +US 08370 Riverside New Jersey NJ Burlington 005 39.8624 -74.7251 +US 08505 Bordentown New Jersey NJ Burlington 005 40.1431 -74.7032 +US 08511 Cookstown New Jersey NJ Burlington 005 40.0481 -74.5595 +US 08515 Crosswicks New Jersey NJ Burlington 005 40.1476 -74.6615 +US 08518 Florence New Jersey NJ Burlington 005 40.118 -74.8055 +US 08554 Roebling New Jersey NJ Burlington 005 40.1154 -74.7772 +US 08562 Wrightstown New Jersey NJ Burlington 005 40.072 -74.5731 +US 08640 Trenton New Jersey NJ Burlington 005 40.0098 -74.6052 +US 08641 Trenton New Jersey NJ Burlington 005 40.027 -74.588 +US 08002 Cherry Hill New Jersey NJ Camden 007 39.9308 -75.0175 +US 08003 Cherry Hill New Jersey NJ Camden 007 39.8805 -74.9706 +US 08004 Atco New Jersey NJ Camden 007 39.76 -74.8665 +US 08007 Barrington New Jersey NJ Camden 007 39.8651 -75.0564 +US 08009 Berlin New Jersey NJ Camden 007 39.7788 -74.9308 +US 08012 Blackwood New Jersey NJ Camden 007 39.7901 -75.0367 +US 08018 Cedar Brook New Jersey NJ Camden 007 39.8024 -74.9383 +US 08021 Clementon New Jersey NJ Camden 007 39.8036 -75.0058 +US 08026 Gibbsboro New Jersey NJ Camden 007 39.8365 -74.971 +US 08029 Glendora New Jersey NJ Camden 007 39.8404 -75.0697 +US 08030 Gloucester City New Jersey NJ Camden 007 39.8911 -75.117 +US 08031 Bellmawr New Jersey NJ Camden 007 39.8689 -75.0944 +US 08033 Haddonfield New Jersey NJ Camden 007 39.8954 -75.0417 +US 08034 Cherry Hill New Jersey NJ Camden 007 39.9074 -75.0008 +US 08035 Haddon Heights New Jersey NJ Camden 007 39.8788 -75.0664 +US 08043 Voorhees New Jersey NJ Camden 007 39.8504 -74.9646 +US 08045 Lawnside New Jersey NJ Camden 007 39.8676 -75.0317 +US 08049 Magnolia New Jersey NJ Camden 007 39.8538 -75.0393 +US 08059 Mount Ephraim New Jersey NJ Camden 007 39.8827 -75.0929 +US 08078 Runnemede New Jersey NJ Camden 007 39.8508 -75.0742 +US 08081 Sicklerville New Jersey NJ Camden 007 39.7354 -74.9864 +US 08083 Somerdale New Jersey NJ Camden 007 39.84 -75.0309 +US 08084 Stratford New Jersey NJ Camden 007 39.8288 -75.0147 +US 08089 Waterford Works New Jersey NJ Camden 007 39.7215 -74.8609 +US 08091 West Berlin New Jersey NJ Camden 007 39.8051 -74.9255 +US 08095 Winslow New Jersey NJ Camden 007 39.6549 -74.8685 +US 08099 Bellmawr New Jersey NJ Camden 007 39.7792 -74.9621 +US 08100 Camden New Jersey NJ Camden County 007 39.9532 -75.0722 +US 08101 Camden New Jersey NJ Camden 007 39.8024 -74.9383 +US 08102 Camden New Jersey NJ Camden 007 39.9512 -75.1186 +US 08103 Camden New Jersey NJ Camden 007 39.9351 -75.1117 +US 08104 Camden New Jersey NJ Camden 007 39.9186 -75.1078 +US 08105 Camden New Jersey NJ Camden 007 39.9484 -75.0864 +US 08106 Audubon New Jersey NJ Camden 007 39.891 -75.0724 +US 08107 Oaklyn New Jersey NJ Camden 007 39.908 -75.0849 +US 08108 Collingswood New Jersey NJ Camden 007 39.9157 -75.0634 +US 08109 Merchantville New Jersey NJ Camden 007 39.9519 -75.0482 +US 08110 Pennsauken New Jersey NJ Camden 007 39.9723 -75.0607 +US 08358 Cherry Hill New Jersey NJ Camden County 007 39.9023 -74.9961 +US 08202 Avalon New Jersey NJ Cape May 009 39.0951 -74.7262 +US 08204 Cape May New Jersey NJ Cape May 009 38.9711 -74.9214 +US 08210 Cape May Court House New Jersey NJ Cape May 009 39.1378 -74.7806 +US 08212 Cape May Point New Jersey NJ Cape May 009 38.9372 -74.9654 +US 08214 Dennisville New Jersey NJ Cape May 009 39.0565 -74.8166 +US 08218 Goshen New Jersey NJ Cape May 009 39.0565 -74.8166 +US 08219 Green Creek New Jersey NJ Cape May 009 39.0565 -74.8166 +US 08223 Marmora New Jersey NJ Cape May 009 39.2586 -74.6593 +US 08226 Ocean City New Jersey NJ Cape May 009 39.2709 -74.5875 +US 08230 Ocean View New Jersey NJ Cape May 009 39.2154 -74.7075 +US 08233 Pleasantville New Jersey NJ Cape May County 009 39.3905 -74.5188 +US 08242 Rio Grande New Jersey NJ Cape May 009 39.0196 -74.8756 +US 08243 Sea Isle City New Jersey NJ Cape May 009 39.154 -74.7005 +US 08245 South Dennis New Jersey NJ Cape May 009 39.1 -74.8487 +US 08246 South Seaville New Jersey NJ Cape May 009 39.0565 -74.8166 +US 08247 Stone Harbor New Jersey NJ Cape May 009 39.0533 -74.762 +US 08248 Strathmere New Jersey NJ Cape May 009 39.1992 -74.6554 +US 08250 Tuckahoe New Jersey NJ Cape May 009 39.0565 -74.8166 +US 08251 Villas New Jersey NJ Cape May 009 39.0219 -74.9354 +US 08252 Whitesboro New Jersey NJ Cape May 009 39.0421 -74.8618 +US 08260 Wildwood New Jersey NJ Cape May 009 38.9949 -74.838 +US 08270 Woodbine New Jersey NJ Cape May 009 39.2716 -74.7968 +US 08302 Bridgeton New Jersey NJ Cumberland 011 39.3762 -75.1617 +US 08311 Cedarville New Jersey NJ Cumberland 011 39.337 -75.1994 +US 08313 Deerfield Street New Jersey NJ Cumberland 011 39.5293 -75.2249 +US 08314 Delmont New Jersey NJ Cumberland 011 39.2023 -74.9705 +US 08315 Dividing Creek New Jersey NJ Cumberland 011 39.2732 -75.095 +US 08316 Dorchester New Jersey NJ Cumberland 011 39.2679 -74.9791 +US 08320 Fairton New Jersey NJ Cumberland 011 39.3799 -75.2217 +US 08321 Fortescue New Jersey NJ Cumberland 011 39.2189 -75.1403 +US 08323 Greenwich New Jersey NJ Cumberland 011 39.4055 -75.3209 +US 08324 Heislerville New Jersey NJ Cumberland 011 39.224 -74.9942 +US 08327 Leesburg New Jersey NJ Cumberland 011 39.3879 -75.0074 +US 08329 Mauricetown New Jersey NJ Cumberland 011 39.2853 -74.9983 +US 08332 Millville New Jersey NJ Cumberland 011 39.3673 -75.0293 +US 08345 Newport New Jersey NJ Cumberland 011 39.2832 -75.1716 +US 08348 Port Elizabeth New Jersey NJ Cumberland 011 39.3131 -74.9807 +US 08349 Port Norris New Jersey NJ Cumberland 011 39.2563 -75.0506 +US 08352 Rosenhayn New Jersey NJ Cumberland 011 39.4695 -75.1462 +US 08353 Shiloh New Jersey NJ Cumberland 011 39.4594 -75.297 +US 08360 Vineland New Jersey NJ Cumberland 011 39.4818 -75.0091 +US 08361 Vineland New Jersey NJ Cumberland 011 39.4655 -74.9653 +US 08362 Vineland New Jersey NJ Cumberland 011 39.2713 -75.0277 +US 07003 Bloomfield New Jersey NJ Essex 013 40.8035 -74.1891 +US 07004 Fairfield New Jersey NJ Essex 013 40.8822 -74.296 +US 07006 Caldwell New Jersey NJ Essex 013 40.8545 -74.2789 +US 07007 Caldwell New Jersey NJ Essex 013 40.7918 -74.2452 +US 07009 Cedar Grove New Jersey NJ Essex 013 40.8534 -74.2297 +US 07017 East Orange New Jersey NJ Essex 013 40.7696 -74.2077 +US 07018 East Orange New Jersey NJ Essex 013 40.7558 -74.2198 +US 07019 East Orange New Jersey NJ Essex 013 40.7918 -74.2452 +US 07021 Essex Fells New Jersey NJ Essex 013 40.8279 -74.2797 +US 07028 Glen Ridge New Jersey NJ Essex 013 40.804 -74.2055 +US 07039 Livingston New Jersey NJ Essex 013 40.7896 -74.3202 +US 07040 Maplewood New Jersey NJ Essex 013 40.7279 -74.2656 +US 07041 Millburn New Jersey NJ Essex 013 40.7228 -74.3015 +US 07042 Montclair New Jersey NJ Essex 013 40.8131 -74.2165 +US 07043 Montclair New Jersey NJ Essex 013 40.843 -74.2011 +US 07044 Verona New Jersey NJ Essex 013 40.8319 -74.2428 +US 07050 Orange New Jersey NJ Essex 013 40.7692 -74.2355 +US 07051 Orange New Jersey NJ Essex 013 40.7918 -74.2452 +US 07052 West Orange New Jersey NJ Essex 013 40.7859 -74.2568 +US 07068 Roseland New Jersey NJ Essex 013 40.8203 -74.3047 +US 07078 Short Hills New Jersey NJ Essex 013 40.7368 -74.3271 +US 07079 South Orange New Jersey NJ Essex 013 40.7465 -74.2575 +US 07101 Newark New Jersey NJ Essex 013 40.7361 -74.2251 +US 07102 Newark New Jersey NJ Essex 013 40.732 -74.1765 +US 07103 Newark New Jersey NJ Essex 013 40.737 -74.1964 +US 07104 Newark New Jersey NJ Essex 013 40.7664 -74.1695 +US 07105 Newark New Jersey NJ Essex 013 40.7271 -74.1563 +US 07106 Newark New Jersey NJ Essex 013 40.7415 -74.233 +US 07107 Newark New Jersey NJ Essex 013 40.7607 -74.1882 +US 07108 Newark New Jersey NJ Essex 013 40.7236 -74.2015 +US 07109 Belleville New Jersey NJ Essex 013 40.7946 -74.1631 +US 07110 Nutley New Jersey NJ Essex 013 40.8185 -74.1589 +US 07111 Irvington New Jersey NJ Essex 013 40.7261 -74.2313 +US 07112 Newark New Jersey NJ Essex 013 40.7107 -74.2131 +US 07114 Newark New Jersey NJ Essex 013 40.7082 -74.1891 +US 07175 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07182 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07184 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07188 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07189 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07191 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07192 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07193 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07194 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07195 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07197 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07198 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 07199 Newark New Jersey NJ Essex 013 40.7918 -74.2452 +US 08014 Bridgeport New Jersey NJ Gloucester 015 39.8016 -75.3478 +US 08020 Clarksboro New Jersey NJ Gloucester 015 39.7992 -75.2237 +US 08025 Ewan New Jersey NJ Gloucester 015 39.7015 -75.1629 +US 08027 Gibbstown New Jersey NJ Gloucester 015 39.8231 -75.2751 +US 08028 Glassboro New Jersey NJ Gloucester 015 39.7068 -75.1172 +US 08032 Grenloch New Jersey NJ Gloucester 015 39.7788 -75.0601 +US 08039 Harrisonville New Jersey NJ Gloucester 015 39.6931 -75.2711 +US 08051 Mantua New Jersey NJ Gloucester 015 39.787 -75.1785 +US 08056 Mickleton New Jersey NJ Gloucester 015 39.7857 -75.2498 +US 08061 Mount Royal New Jersey NJ Gloucester 015 39.8097 -75.2082 +US 08062 Mullica Hill New Jersey NJ Gloucester 015 39.7252 -75.2065 +US 08063 National Park New Jersey NJ Gloucester 015 39.8664 -75.1794 +US 08066 Paulsboro New Jersey NJ Gloucester 015 39.8312 -75.2242 +US 08071 Pitman New Jersey NJ Gloucester 015 39.7312 -75.1297 +US 08074 Richwood New Jersey NJ Gloucester 015 39.7206 -75.1681 +US 08080 Sewell New Jersey NJ Gloucester 015 39.7473 -75.0899 +US 08085 Swedesboro New Jersey NJ Gloucester 015 39.7529 -75.3362 +US 08086 Thorofare New Jersey NJ Gloucester 015 39.8457 -75.1943 +US 08090 Wenonah New Jersey NJ Gloucester 015 39.7993 -75.1536 +US 08093 Westville New Jersey NJ Gloucester 015 39.8605 -75.1323 +US 08094 Williamstown New Jersey NJ Gloucester 015 39.665 -74.971 +US 08096 Woodbury New Jersey NJ Gloucester 015 39.822 -75.1297 +US 08097 Woodbury Heights New Jersey NJ Gloucester 015 39.8142 -75.153 +US 08312 Clayton New Jersey NJ Gloucester 015 39.659 -75.0942 +US 08322 Franklinville New Jersey NJ Gloucester 015 39.6156 -75.0409 +US 08328 Malaga New Jersey NJ Gloucester 015 39.5755 -75.0582 +US 08343 Monroeville New Jersey NJ Gloucester 015 39.6442 -75.1568 +US 08344 Newfield New Jersey NJ Gloucester 015 39.5553 -75.0276 +US 07002 Bayonne New Jersey NJ Hudson 017 40.6664 -74.1192 +US 07029 Harrison New Jersey NJ Hudson 017 40.7445 -74.1508 +US 07030 Hoboken New Jersey NJ Hudson 017 40.7445 -74.0329 +US 07032 Kearny New Jersey NJ Hudson 017 40.7647 -74.1471 +US 07047 North Bergen New Jersey NJ Hudson 017 40.7939 -74.0258 +US 07086 Weehawken New Jersey NJ Hudson County 017 40.7681 -74.0208 +US 07087 Union City New Jersey NJ Hudson 017 40.7674 -74.0323 +US 07093 West New York New Jersey NJ Hudson 017 40.7888 -74.0115 +US 07094 Secaucus New Jersey NJ Hudson 017 40.791 -74.0634 +US 07096 Secaucus New Jersey NJ Hudson 017 40.7328 -74.0755 +US 07097 Jersey City New Jersey NJ Hudson 017 40.7328 -74.0755 +US 07099 Kearny New Jersey NJ Hudson 017 40.7328 -74.0755 +US 07302 Jersey City New Jersey NJ Hudson 017 40.7221 -74.0469 +US 07303 Jersey City New Jersey NJ Hudson 017 40.7328 -74.0755 +US 07304 Jersey City New Jersey NJ Hudson 017 40.718 -74.0754 +US 07305 Jersey City New Jersey NJ Hudson 017 40.702 -74.089 +US 07306 Jersey City New Jersey NJ Hudson 017 40.7321 -74.066 +US 07307 Jersey City New Jersey NJ Hudson 017 40.7482 -74.0498 +US 07308 Jersey City New Jersey NJ Hudson 017 40.7328 -74.0755 +US 07309 Jersey City New Jersey NJ Hudson 017 40.7328 -74.0755 +US 07310 Jersey City New Jersey NJ Hudson 017 40.7324 -74.0431 +US 07311 Jersey City New Jersey NJ Hudson 017 40.7323 -74.0754 +US 07390 Jersey City New Jersey NJ Hudson County 017 40.7282 -74.0784 +US 07395 Jersey City New Jersey NJ Hudson County 017 40.7279 -74.078 +US 07399 Jersey City New Jersey NJ Hudson 017 40.7323 -74.0754 +US 07830 Califon New Jersey NJ Hunterdon 019 40.7162 -74.8152 +US 07979 Pottersville New Jersey NJ Hunterdon 019 40.7026 -74.7276 +US 08530 Lambertville New Jersey NJ Hunterdon 019 40.3731 -74.9266 +US 08551 Ringoes New Jersey NJ Hunterdon 019 40.4459 -74.8288 +US 08556 Rosemont New Jersey NJ Hunterdon 019 40.42 -74.9886 +US 08557 Sergeantsville New Jersey NJ Hunterdon 019 40.5637 -74.9494 +US 08559 Stockton New Jersey NJ Hunterdon 019 40.4397 -74.9554 +US 08801 Annandale New Jersey NJ Hunterdon 019 40.6287 -74.8855 +US 08803 Baptistown New Jersey NJ Hunterdon 019 40.5637 -74.9494 +US 08804 Bloomsbury New Jersey NJ Hunterdon 019 40.6437 -75.0966 +US 08809 Clinton New Jersey NJ Hunterdon 019 40.6412 -74.9088 +US 08822 Flemington New Jersey NJ Hunterdon 019 40.518 -74.8453 +US 08825 Frenchtown New Jersey NJ Hunterdon 019 40.5208 -75.0325 +US 08826 Glen Gardner New Jersey NJ Hunterdon 019 40.7134 -74.9162 +US 08827 Hampton New Jersey NJ Hunterdon 019 40.6774 -74.9622 +US 08829 High Bridge New Jersey NJ Hunterdon 019 40.6684 -74.8937 +US 08833 Lebanon New Jersey NJ Hunterdon 019 40.6466 -74.829 +US 08834 Little York New Jersey NJ Hunterdon 019 40.5637 -74.9494 +US 08848 Milford New Jersey NJ Hunterdon 019 40.5929 -75.1025 +US 08858 Oldwick New Jersey NJ Hunterdon 019 40.6918 -74.7525 +US 08867 Pittstown New Jersey NJ Hunterdon 019 40.5992 -74.9576 +US 08868 Quakertown New Jersey NJ Hunterdon 019 40.5655 -74.9389 +US 08870 Readington New Jersey NJ Hunterdon 019 40.5637 -74.9494 +US 08885 Stanton New Jersey NJ Hunterdon 019 40.5764 -74.8311 +US 08887 Three Bridges New Jersey NJ Hunterdon 019 40.5206 -74.7946 +US 08888 Whitehouse New Jersey NJ Hunterdon 019 40.6194 -74.7406 +US 08889 Whitehouse Station New Jersey NJ Hunterdon 019 40.6156 -74.7724 +US 08520 Hightstown New Jersey NJ Mercer 021 40.2669 -74.525 +US 08525 Hopewell New Jersey NJ Mercer 021 40.3902 -74.771 +US 08534 Pennington New Jersey NJ Mercer 021 40.3339 -74.7944 +US 08540 Princeton New Jersey NJ Mercer 021 40.3666 -74.6408 +US 08541 Princeton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08542 Princeton New Jersey NJ Mercer 021 40.3535 -74.6594 +US 08543 Princeton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08544 Princeton New Jersey NJ Mercer 021 40.3492 -74.6528 +US 08550 Princeton Junction New Jersey NJ Mercer 021 40.2669 -74.6511 +US 08560 Titusville New Jersey NJ Mercer 021 40.3077 -74.8655 +US 08561 Windsor New Jersey NJ Mercer 021 40.2423 -74.5787 +US 08601 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08602 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08603 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08604 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08605 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08606 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08607 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08608 Trenton New Jersey NJ Mercer 021 40.2204 -74.7622 +US 08609 Trenton New Jersey NJ Mercer 021 40.2248 -74.741 +US 08610 Trenton New Jersey NJ Mercer 021 40.2016 -74.705 +US 08611 Trenton New Jersey NJ Mercer 021 40.1967 -74.7416 +US 08618 Trenton New Jersey NJ Mercer 021 40.2377 -74.7821 +US 08619 Trenton New Jersey NJ Mercer 021 40.2418 -74.6962 +US 08620 Trenton New Jersey NJ Mercer 021 40.167 -74.6488 +US 08625 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08628 Trenton New Jersey NJ Mercer 021 40.2655 -74.8168 +US 08629 Trenton New Jersey NJ Mercer 021 40.2196 -74.7334 +US 08638 Trenton New Jersey NJ Mercer 021 40.251 -74.7627 +US 08645 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08646 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08647 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08648 Trenton New Jersey NJ Mercer 021 40.2795 -74.6912 +US 08650 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08666 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08677 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 08690 Trenton New Jersey NJ Mercer 021 40.2336 -74.6576 +US 08691 Trenton New Jersey NJ Mercer 021 40.2197 -74.5939 +US 08695 Trenton New Jersey NJ Mercer 021 40.2805 -74.712 +US 07001 Avenel New Jersey NJ Middlesex 023 40.5826 -74.2785 +US 07008 Carteret New Jersey NJ Middlesex 023 40.5823 -74.2313 +US 07064 Port Reading New Jersey NJ Middlesex 023 40.5709 -74.2466 +US 07067 Colonia New Jersey NJ Middlesex 023 40.5937 -74.3164 +US 07077 Sewaren New Jersey NJ Middlesex 023 40.5542 -74.2607 +US 07080 South Plainfield New Jersey NJ Middlesex 023 40.5839 -74.4147 +US 07095 Woodbridge New Jersey NJ Middlesex 023 40.556 -74.2845 +US 07098 Avenel New Jersey NJ Middlesex County 023 40.5802 -74.2853 +US 08512 Cranbury New Jersey NJ Middlesex 023 40.3039 -74.5065 +US 08536 Plainsboro New Jersey NJ Middlesex 023 40.3324 -74.5688 +US 08570 Cranbury New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08810 Dayton New Jersey NJ Middlesex 023 40.3825 -74.5111 +US 08812 Dunellen New Jersey NJ Middlesex 023 40.5897 -74.4639 +US 08816 East Brunswick New Jersey NJ Middlesex 023 40.4284 -74.4064 +US 08817 Edison New Jersey NJ Middlesex 023 40.5171 -74.3973 +US 08818 Edison New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08820 Edison New Jersey NJ Middlesex 023 40.578 -74.3589 +US 08824 Kendall Park New Jersey NJ Middlesex 023 40.4208 -74.5529 +US 08828 Helmetta New Jersey NJ Middlesex 023 40.3777 -74.4204 +US 08830 Iselin New Jersey NJ Middlesex 023 40.5716 -74.3167 +US 08831 Jamesburg New Jersey NJ Middlesex 023 40.3425 -74.4336 +US 08832 Keasbey New Jersey NJ Middlesex 023 40.5192 -74.3021 +US 08837 Edison New Jersey NJ Middlesex 023 40.5325 -74.3375 +US 08840 Metuchen New Jersey NJ Middlesex 023 40.5449 -74.3517 +US 08846 Middlesex New Jersey NJ Middlesex 023 40.5759 -74.5008 +US 08850 Milltown New Jersey NJ Middlesex 023 40.4493 -74.439 +US 08852 Monmouth Junction New Jersey NJ Middlesex 023 40.3869 -74.5558 +US 08854 Piscataway New Jersey NJ Middlesex 023 40.5515 -74.459 +US 08855 Piscataway New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08857 Old Bridge New Jersey NJ Middlesex 023 40.398 -74.3236 +US 08859 Parlin New Jersey NJ Middlesex 023 40.4587 -74.305 +US 08861 Perth Amboy New Jersey NJ Middlesex 023 40.5176 -74.2754 +US 08862 Perth Amboy New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08863 Fords New Jersey NJ Middlesex 023 40.5393 -74.3117 +US 08871 Sayreville New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08872 Sayreville New Jersey NJ Middlesex 023 40.46 -74.3478 +US 08877 South River New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08878 South Amboy New Jersey NJ Middlesex 023 40.4369 -74.2509 +US 08879 South Amboy New Jersey NJ Middlesex 023 40.464 -74.2742 +US 08882 South River New Jersey NJ Middlesex 023 40.4444 -74.3801 +US 08884 Spotswood New Jersey NJ Middlesex 023 40.3847 -74.3894 +US 08899 Edison New Jersey NJ Middlesex 023 40.5203 -74.4205 +US 08901 New Brunswick New Jersey NJ Middlesex 023 40.4891 -74.4482 +US 08902 North Brunswick New Jersey NJ Middlesex 023 40.4538 -74.4823 +US 08903 New Brunswick New Jersey NJ Middlesex 023 40.5139 -74.4451 +US 08904 Highland Park New Jersey NJ Middlesex 023 40.4991 -74.4266 +US 08905 New Brunswick New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08906 New Brunswick New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08922 New Brunswick New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08933 New Brunswick New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08988 New Brunswick New Jersey NJ Middlesex 023 40.43 -74.4173 +US 08989 New Brunswick New Jersey NJ Middlesex 023 40.43 -74.4173 +US 07701 Red Bank New Jersey NJ Monmouth 025 40.3584 -74.0681 +US 07702 Shrewsbury New Jersey NJ Monmouth 025 40.3282 -74.0589 +US 07703 Fort Monmouth New Jersey NJ Monmouth 025 40.3177 -74.039 +US 07704 Fair Haven New Jersey NJ Monmouth 025 40.3599 -74.0389 +US 07709 Allenhurst New Jersey NJ Monmouth 025 40.3027 -74.2493 +US 07710 Adelphia New Jersey NJ Monmouth 025 40.3027 -74.2493 +US 07711 Allenhurst New Jersey NJ Monmouth 025 40.2367 -74.0067 +US 07712 Asbury Park New Jersey NJ Monmouth 025 40.2507 -74.0486 +US 07715 Belmar New Jersey NJ Monmouth 025 40.3027 -74.2493 +US 07716 Atlantic Highlands New Jersey NJ Monmouth 025 40.4015 -74.0309 +US 07717 Avon By The Sea New Jersey NJ Monmouth 025 40.1918 -74.0167 +US 07718 Belford New Jersey NJ Monmouth 025 40.4173 -74.0889 +US 07719 Belmar New Jersey NJ Monmouth 025 40.1688 -74.072 +US 07720 Bradley Beach New Jersey NJ Monmouth 025 40.2023 -74.0132 +US 07721 Cliffwood New Jersey NJ Monmouth 025 40.4353 -74.2358 +US 07722 Colts Neck New Jersey NJ Monmouth 025 40.3012 -74.178 +US 07723 Deal New Jersey NJ Monmouth 025 40.2506 -74.002 +US 07724 Eatontown New Jersey NJ Monmouth 025 40.3028 -74.0698 +US 07726 Englishtown New Jersey NJ Monmouth 025 40.2825 -74.3424 +US 07727 Farmingdale New Jersey NJ Monmouth 025 40.2043 -74.1779 +US 07728 Freehold New Jersey NJ Monmouth 025 40.2458 -74.2768 +US 07730 Hazlet New Jersey NJ Monmouth 025 40.4226 -74.1799 +US 07731 Howell New Jersey NJ Monmouth 025 40.1481 -74.2137 +US 07732 Highlands New Jersey NJ Monmouth 025 40.4011 -74.0006 +US 07733 Holmdel New Jersey NJ Monmouth 025 40.3859 -74.174 +US 07734 Keansburg New Jersey NJ Monmouth 025 40.4414 -74.1306 +US 07735 Keyport New Jersey NJ Monmouth 025 40.4384 -74.1881 +US 07737 Leonardo New Jersey NJ Monmouth 025 40.4177 -74.0623 +US 07738 Lincroft New Jersey NJ Monmouth 025 40.3369 -74.1205 +US 07739 Little Silver New Jersey NJ Monmouth 025 40.3354 -74.0413 +US 07740 Long Branch New Jersey NJ Monmouth 025 40.2992 -73.9912 +US 07746 Marlboro New Jersey NJ Monmouth 025 40.3182 -74.2639 +US 07747 Matawan New Jersey NJ Monmouth 025 40.4109 -74.238 +US 07748 Middletown New Jersey NJ Monmouth 025 40.3944 -74.1157 +US 07750 Monmouth Beach New Jersey NJ Monmouth 025 40.333 -73.9809 +US 07751 Morganville New Jersey NJ Monmouth 025 40.3529 -74.2779 +US 07752 Navesink New Jersey NJ Monmouth 025 40.4023 -74.0273 +US 07753 Neptune New Jersey NJ Monmouth 025 40.2096 -74.0714 +US 07754 Neptune New Jersey NJ Monmouth 025 40.3027 -74.2493 +US 07755 Oakhurst New Jersey NJ Monmouth 025 40.2648 -74.0184 +US 07756 Ocean Grove New Jersey NJ Monmouth 025 40.2116 -74.0093 +US 07757 Oceanport New Jersey NJ Monmouth 025 40.3157 -74.0164 +US 07758 Port Monmouth New Jersey NJ Monmouth 025 40.4289 -74.1083 +US 07760 Rumson New Jersey NJ Monmouth 025 40.3707 -74.0084 +US 07762 Spring Lake New Jersey NJ Monmouth 025 40.1542 -74.0379 +US 07763 Tennent New Jersey NJ Monmouth 025 40.3027 -74.2493 +US 07764 West Long Branch New Jersey NJ Monmouth 025 40.2878 -74.0162 +US 07765 Wickatunk New Jersey NJ Monmouth 025 40.3027 -74.2493 +US 07777 Holmdel New Jersey NJ Monmouth 025 40.3027 -74.2493 +US 07799 Eatontown New Jersey NJ Monmouth 025 40.3027 -74.2493 +US 08501 Allentown New Jersey NJ Monmouth 025 40.1589 -74.5909 +US 08510 Clarksburg New Jersey NJ Monmouth 025 40.1998 -74.4344 +US 08514 Cream Ridge New Jersey NJ Monmouth 025 40.1399 -74.465 +US 08526 Imlaystown New Jersey NJ Monmouth 025 40.1623 -74.4759 +US 08535 Perrineville New Jersey NJ Monmouth 025 40.215 -74.4404 +US 08555 Roosevelt New Jersey NJ Monmouth 025 40.2214 -74.4747 +US 08720 Allenwood New Jersey NJ Monmouth 025 40.1389 -74.1122 +US 08730 Brielle New Jersey NJ Monmouth 025 40.1077 -74.0635 +US 08736 Manasquan New Jersey NJ Monmouth 025 40.1217 -74.0611 +US 08750 Sea Girt New Jersey NJ Monmouth 025 40.1345 -74.0436 +US 07005 Boonton New Jersey NJ Morris 027 40.9115 -74.414 +US 07034 Lake Hiawatha New Jersey NJ Morris 027 40.8825 -74.383 +US 07035 Lincoln Park New Jersey NJ Morris 027 40.9208 -74.2995 +US 07045 Montville New Jersey NJ Morris 027 40.9049 -74.3646 +US 07046 Mountain Lakes New Jersey NJ Morris 027 40.8904 -74.4415 +US 07054 Parsippany New Jersey NJ Morris 027 40.8621 -74.4117 +US 07058 Pine Brook New Jersey NJ Morris 027 40.8742 -74.35 +US 07082 Towaco New Jersey NJ Morris 027 40.9277 -74.3428 +US 07405 Butler New Jersey NJ Morris 027 40.9988 -74.4261 +US 07440 Pequannock New Jersey NJ Morris 027 40.9473 -74.296 +US 07444 Pompton Plains New Jersey NJ Morris 027 40.9655 -74.3016 +US 07457 Riverdale New Jersey NJ Morris 027 40.9931 -74.3088 +US 07801 Dover New Jersey NJ Morris 027 40.9176 -74.5467 +US 07802 Dover New Jersey NJ Morris 027 40.8673 -74.5783 +US 07803 Mine Hill New Jersey NJ Morris 027 40.8771 -74.5845 +US 07806 Picatinny Arsenal New Jersey NJ Morris 027 40.8673 -74.5783 +US 07828 Budd Lake New Jersey NJ Morris 027 40.8731 -74.7426 +US 07834 Denville New Jersey NJ Morris 027 40.8897 -74.4844 +US 07836 Flanders New Jersey NJ Morris 027 40.8453 -74.7019 +US 07842 Hibernia New Jersey NJ Morris 027 40.8673 -74.5783 +US 07845 Ironia New Jersey NJ Morris 027 40.8673 -74.5783 +US 07847 Kenvil New Jersey NJ Morris 027 40.8819 -74.621 +US 07849 Lake Hopatcong New Jersey NJ Morris 027 40.9506 -74.6129 +US 07850 Landing New Jersey NJ Morris 027 40.9087 -74.6554 +US 07852 Ledgewood New Jersey NJ Morris 027 40.878 -74.6554 +US 07853 Long Valley New Jersey NJ Morris 027 40.7878 -74.787 +US 07856 Mount Arlington New Jersey NJ Morris 027 40.9283 -74.6363 +US 07857 Netcong New Jersey NJ Morris 027 40.8985 -74.6985 +US 07866 Rockaway New Jersey NJ Morris 027 40.9229 -74.5094 +US 07869 Randolph New Jersey NJ Morris 027 40.8456 -74.5725 +US 07870 Schooleys Mountain New Jersey NJ Morris 027 40.8104 -74.8193 +US 07876 Succasunna New Jersey NJ Morris 027 40.8539 -74.6536 +US 07878 Mount Tabor New Jersey NJ Morris 027 40.8711 -74.4777 +US 07885 Wharton New Jersey NJ Morris 027 40.9139 -74.5863 +US 07926 Brookside New Jersey NJ Morris 027 40.8004 -74.5718 +US 07927 Cedar Knolls New Jersey NJ Morris 027 40.8223 -74.4569 +US 07928 Chatham New Jersey NJ Morris 027 40.7305 -74.4017 +US 07930 Chester New Jersey NJ Morris 027 40.7892 -74.6776 +US 07932 Florham Park New Jersey NJ Morris 027 40.7757 -74.3928 +US 07933 Gillette New Jersey NJ Morris 027 40.6877 -74.4681 +US 07935 Green Village New Jersey NJ Morris 027 40.7416 -74.4517 +US 07936 East Hanover New Jersey NJ Morris 027 40.8192 -74.3636 +US 07940 Madison New Jersey NJ Morris 027 40.7599 -74.4179 +US 07945 Mendham New Jersey NJ Morris 027 40.7789 -74.6 +US 07946 Millington New Jersey NJ Morris 027 40.6727 -74.5183 +US 07950 Morris Plains New Jersey NJ Morris 027 40.8445 -74.4824 +US 07960 Morristown New Jersey NJ Morris 027 40.7952 -74.4873 +US 07961 Morristown New Jersey NJ Morris 027 40.7797 -74.4428 +US 07962 Morristown New Jersey NJ Morris 027 40.8673 -74.5783 +US 07963 Morristown New Jersey NJ Morris 027 40.8673 -74.5783 +US 07970 Mount Freedom New Jersey NJ Morris 027 40.8055 -74.5738 +US 07976 New Vernon New Jersey NJ Morris 027 40.7347 -74.4845 +US 07980 Stirling New Jersey NJ Morris 027 40.6774 -74.4968 +US 07981 Whippany New Jersey NJ Morris 027 40.8219 -74.42 +US 07983 Whippany New Jersey NJ Morris 027 40.8673 -74.5783 +US 07999 Whippany New Jersey NJ Morris 027 40.8673 -74.5783 +US 08005 Barnegat New Jersey NJ Ocean 029 39.7552 -74.247 +US 08006 Barnegat Light New Jersey NJ Ocean 029 39.7512 -74.1146 +US 08008 Beach Haven New Jersey NJ Ocean 029 39.6411 -74.1922 +US 08050 Manahawkin New Jersey NJ Ocean 029 39.705 -74.2604 +US 08087 Tuckerton New Jersey NJ Ocean 029 39.5881 -74.3646 +US 08092 West Creek New Jersey NJ Ocean 029 39.6627 -74.2885 +US 08527 Jackson New Jersey NJ Ocean 029 40.121 -74.3017 +US 08533 New Egypt New Jersey NJ Ocean 029 40.0713 -74.5067 +US 08701 Lakewood New Jersey NJ Ocean 029 40.085 -74.2042 +US 08721 Bayville New Jersey NJ Ocean 029 39.9147 -74.1905 +US 08722 Beachwood New Jersey NJ Ocean 029 39.9302 -74.1961 +US 08723 Brick New Jersey NJ Ocean 029 40.0389 -74.1109 +US 08724 Brick New Jersey NJ Ocean 029 40.0874 -74.1152 +US 08731 Forked River New Jersey NJ Ocean 029 39.8444 -74.1973 +US 08732 Island Heights New Jersey NJ Ocean 029 39.9432 -74.1468 +US 08733 Lakehurst New Jersey NJ Ocean 029 40.0263 -74.3254 +US 08734 Lanoka Harbor New Jersey NJ Ocean 029 39.862 -74.1668 +US 08735 Lavallette New Jersey NJ Ocean 029 39.9775 -74.0704 +US 08738 Mantoloking New Jersey NJ Ocean 029 40.0261 -74.0562 +US 08739 Normandy Beach New Jersey NJ Ocean 029 40.0008 -74.2493 +US 08740 Ocean Gate New Jersey NJ Ocean 029 39.926 -74.1351 +US 08741 Pine Beach New Jersey NJ Ocean 029 39.9347 -74.168 +US 08742 Point Pleasant Beach New Jersey NJ Ocean 029 40.0806 -74.0595 +US 08751 Seaside Heights New Jersey NJ Ocean 029 39.9466 -74.0765 +US 08752 Seaside Park New Jersey NJ Ocean 029 39.9222 -74.0795 +US 08753 Toms River New Jersey NJ Ocean 029 39.9771 -74.1565 +US 08754 Toms River New Jersey NJ Ocean 029 40.0008 -74.2493 +US 08755 Toms River New Jersey NJ Ocean 029 39.9999 -74.2228 +US 08756 Toms River New Jersey NJ Ocean 029 39.788 -74.1911 +US 08757 Toms River New Jersey NJ Ocean 029 39.9715 -74.2512 +US 08758 Waretown New Jersey NJ Ocean 029 39.7896 -74.1954 +US 08759 Whiting New Jersey NJ Ocean 029 39.951 -74.3607 +US 07011 Clifton New Jersey NJ Passaic 031 40.8789 -74.1425 +US 07012 Clifton New Jersey NJ Passaic 031 40.8488 -74.1612 +US 07013 Clifton New Jersey NJ Passaic 031 40.8693 -74.1711 +US 07014 Clifton New Jersey NJ Passaic 031 40.8344 -74.1377 +US 07015 Clifton New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07055 Passaic New Jersey NJ Passaic 031 40.8601 -74.1283 +US 07403 Bloomingdale New Jersey NJ Passaic 031 41.0128 -74.3338 +US 07420 Haskell New Jersey NJ Passaic 031 41.0301 -74.2965 +US 07421 Hewitt New Jersey NJ Passaic 031 41.1709 -74.3686 +US 07424 Little Falls New Jersey NJ Passaic 031 40.8835 -74.2144 +US 07435 Newfoundland New Jersey NJ Passaic 031 41.0647 -74.4359 +US 07438 Oak Ridge New Jersey NJ Passaic 031 41.0302 -74.5198 +US 07442 Pompton Lakes New Jersey NJ Passaic 031 40.9993 -74.2876 +US 07456 Ringwood New Jersey NJ Passaic 031 41.0928 -74.2659 +US 07465 Wanaque New Jersey NJ Passaic 031 41.0544 -74.279 +US 07470 Wayne New Jersey NJ Passaic 031 40.9471 -74.2466 +US 07474 Wayne New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07477 Wayne New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07480 West Milford New Jersey NJ Passaic 031 41.0915 -74.375 +US 07501 Paterson New Jersey NJ Passaic 031 40.9143 -74.1671 +US 07502 Paterson New Jersey NJ Passaic 031 40.9199 -74.1932 +US 07503 Paterson New Jersey NJ Passaic 031 40.897 -74.1573 +US 07504 Paterson New Jersey NJ Passaic 031 40.9122 -74.1452 +US 07505 Paterson New Jersey NJ Passaic 031 40.9166 -74.174 +US 07506 Hawthorne New Jersey NJ Passaic 031 40.9564 -74.1569 +US 07507 Hawthorne New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07508 Haledon New Jersey NJ Passaic 031 40.9457 -74.1826 +US 07509 Paterson New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07510 Paterson New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07511 Totowa New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07512 Totowa New Jersey NJ Passaic 031 40.9048 -74.2168 +US 07513 Paterson New Jersey NJ Passaic 031 40.907 -74.1529 +US 07514 Paterson New Jersey NJ Passaic 031 40.9248 -74.1467 +US 07522 Paterson New Jersey NJ Passaic 031 40.9252 -74.1781 +US 07524 Paterson New Jersey NJ Passaic 031 40.9309 -74.1555 +US 07530 Paterson New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07533 Paterson New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07538 Haledon New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07543 Paterson New Jersey NJ Passaic 031 41.0114 -74.3048 +US 07544 Paterson New Jersey NJ Passaic 031 41.0114 -74.3048 +US 08001 Alloway New Jersey NJ Salem 033 39.5591 -75.3506 +US 08023 Deepwater New Jersey NJ Salem 033 39.6815 -75.4934 +US 08038 Hancocks Bridge New Jersey NJ Salem 033 39.4716 -75.4902 +US 08067 Pedricktown New Jersey NJ Salem 033 39.7435 -75.412 +US 08069 Penns Grove New Jersey NJ Salem 033 39.6994 -75.4495 +US 08070 Pennsville New Jersey NJ Salem 033 39.6491 -75.5155 +US 08072 Quinton New Jersey NJ Salem 033 39.5411 -75.3837 +US 08079 Salem New Jersey NJ Salem 033 39.5591 -75.4521 +US 08098 Woodstown New Jersey NJ Salem 033 39.6457 -75.3248 +US 08318 Elmer New Jersey NJ Salem 033 39.5691 -75.163 +US 08347 Norma New Jersey NJ Salem 033 39.4998 -75.082 +US 07059 Warren New Jersey NJ Somerset 035 40.6318 -74.5105 +US 07920 Basking Ridge New Jersey NJ Somerset 035 40.6789 -74.5605 +US 07921 Bedminster New Jersey NJ Somerset 035 40.6571 -74.6432 +US 07924 Bernardsville New Jersey NJ Somerset 035 40.7225 -74.5778 +US 07931 Far Hills New Jersey NJ Somerset 035 40.6996 -74.6536 +US 07934 Gladstone New Jersey NJ Somerset 035 40.7219 -74.6707 +US 07938 Liberty Corner New Jersey NJ Somerset 035 40.6554 -74.5862 +US 07939 Lyons New Jersey NJ Somerset 035 40.6674 -74.5539 +US 07977 Peapack New Jersey NJ Somerset 035 40.7079 -74.6541 +US 07978 Pluckemin New Jersey NJ Somerset 035 40.6425 -74.6396 +US 08502 Belle Mead New Jersey NJ Somerset 035 40.4483 -74.6557 +US 08504 Blawenburg New Jersey NJ Somerset 035 40.4254 -74.6688 +US 08528 Kingston New Jersey NJ Somerset 035 40.3828 -74.6096 +US 08553 Rocky Hill New Jersey NJ Somerset 035 40.401 -74.64 +US 08558 Skillman New Jersey NJ Somerset 035 40.4173 -74.6938 +US 08805 Bound Brook New Jersey NJ Somerset 035 40.5681 -74.5397 +US 08807 Bridgewater New Jersey NJ Somerset 035 40.5904 -74.6267 +US 08821 Flagtown New Jersey NJ Somerset 035 40.5666 -74.5998 +US 08823 Franklin Park New Jersey NJ Somerset 035 40.4421 -74.5369 +US 08835 Manville New Jersey NJ Somerset 035 40.5399 -74.5934 +US 08836 Martinsville New Jersey NJ Somerset 035 40.6 -74.5572 +US 08844 Hillsborough New Jersey NJ Somerset County 035 40.4775 -74.6272 +US 08853 Neshanic Station New Jersey NJ Somerset 035 40.5293 -74.7401 +US 08869 Raritan New Jersey NJ Somerset 035 40.5711 -74.6377 +US 08873 Somerset New Jersey NJ Somerset 035 40.5007 -74.5013 +US 08875 Somerset New Jersey NJ Somerset 035 40.5809 -74.7117 +US 08876 Somerville New Jersey NJ Somerset 035 40.588 -74.6874 +US 08880 South Bound Brook New Jersey NJ Somerset 035 40.5523 -74.5311 +US 08890 Zarephath New Jersey NJ Somerset 035 40.5361 -74.5789 +US 08896 Raritan New Jersey NJ Somerset 035 40.5666 -74.5998 +US 07416 Franklin New Jersey NJ Sussex 037 41.1164 -74.5865 +US 07418 Glenwood New Jersey NJ Sussex 037 41.2356 -74.4885 +US 07419 Hamburg New Jersey NJ Sussex 037 41.1467 -74.5874 +US 07422 Highland Lakes New Jersey NJ Sussex 037 41.1826 -74.4564 +US 07428 Mc Afee New Jersey NJ Sussex 037 41.2065 -74.5381 +US 07439 Ogdensburg New Jersey NJ Sussex 037 41.0767 -74.5982 +US 07460 Stockholm New Jersey NJ Sussex 037 41.0992 -74.5283 +US 07461 Sussex New Jersey NJ Sussex 037 41.2292 -74.5992 +US 07462 Vernon New Jersey NJ Sussex 037 41.185 -74.5332 +US 07821 Andover New Jersey NJ Sussex 037 40.9614 -74.7524 +US 07822 Augusta New Jersey NJ Sussex 037 41.1451 -74.6848 +US 07826 Branchville New Jersey NJ Sussex 037 41.1705 -74.75 +US 07827 Montague New Jersey NJ Sussex 037 41.3023 -74.754 +US 07837 Glasser New Jersey NJ Sussex 037 41.1283 -74.679 +US 07839 Greendell New Jersey NJ Sussex 037 41.1283 -74.679 +US 07843 Hopatcong New Jersey NJ Sussex 037 40.939 -74.6616 +US 07848 Lafayette New Jersey NJ Sussex 037 41.0761 -74.6912 +US 07851 Layton New Jersey NJ Sussex 037 41.2299 -74.8466 +US 07855 Middleville New Jersey NJ Sussex 037 41.1283 -74.679 +US 07860 Newton New Jersey NJ Sussex 037 41.0695 -74.8069 +US 07871 Sparta New Jersey NJ Sussex 037 41.0277 -74.6407 +US 07874 Stanhope New Jersey NJ Sussex 037 40.9217 -74.7004 +US 07875 Stillwater New Jersey NJ Sussex 037 41.0439 -74.872 +US 07877 Swartswood New Jersey NJ Sussex 037 41.1029 -74.8508 +US 07879 Tranquility New Jersey NJ Sussex 037 40.9559 -74.7881 +US 07881 Wallpack Center New Jersey NJ Sussex 037 41.1256 -74.9177 +US 07890 Branchville New Jersey NJ Sussex 037 41.1283 -74.679 +US 07016 Cranford New Jersey NJ Union 039 40.6554 -74.3057 +US 07023 Fanwood New Jersey NJ Union 039 40.6419 -74.3868 +US 07027 Garwood New Jersey NJ Union 039 40.6512 -74.3239 +US 07033 Kenilworth New Jersey NJ Union 039 40.6759 -74.2944 +US 07036 Linden New Jersey NJ Union 039 40.6354 -74.2556 +US 07060 Plainfield New Jersey NJ Union 039 40.6152 -74.415 +US 07061 Plainfield New Jersey NJ Union 039 40.6657 -74.2997 +US 07062 Plainfield New Jersey NJ Union 039 40.6323 -74.3997 +US 07063 Plainfield New Jersey NJ Union 039 40.6048 -74.4427 +US 07065 Rahway New Jersey NJ Union 039 40.6087 -74.2819 +US 07066 Clark New Jersey NJ Union 039 40.6203 -74.3106 +US 07069 Watchung New Jersey NJ Union County 039 40.6378 -74.4514 +US 07076 Scotch Plains New Jersey NJ Union 039 40.6379 -74.3682 +US 07081 Springfield New Jersey NJ Union 039 40.7015 -74.3227 +US 07083 Union New Jersey NJ Union 039 40.6952 -74.2677 +US 07088 Vauxhall New Jersey NJ Union 039 40.7179 -74.2829 +US 07090 Westfield New Jersey NJ Union 039 40.6479 -74.3451 +US 07091 Westfield New Jersey NJ Union 039 40.6657 -74.2997 +US 07092 Mountainside New Jersey NJ Union 039 40.6785 -74.3588 +US 07201 Elizabeth New Jersey NJ Union 039 40.6717 -74.2043 +US 07202 Elizabeth New Jersey NJ Union 039 40.6565 -74.2215 +US 07203 Roselle New Jersey NJ Union 039 40.653 -74.261 +US 07204 Roselle Park New Jersey NJ Union 039 40.6651 -74.267 +US 07205 Hillside New Jersey NJ Union 039 40.6968 -74.2281 +US 07206 Elizabeth New Jersey NJ Union 039 40.6532 -74.1925 +US 07207 Elizabeth New Jersey NJ Union 039 40.6657 -74.2997 +US 07208 Elizabeth New Jersey NJ Union 039 40.6747 -74.2239 +US 07215 Elizabeth New Jersey NJ Union County 039 40.6638 -74.2109 +US 07216 Elizabeth New Jersey NJ Union County 039 40.6638 -74.2109 +US 07901 Summit New Jersey NJ Union 039 40.7149 -74.3642 +US 07902 Summit New Jersey NJ Union 039 40.6657 -74.2997 +US 07922 Berkeley Heights New Jersey NJ Union 039 40.6752 -74.4346 +US 07974 New Providence New Jersey NJ Union 039 40.7004 -74.4023 +US 07820 Allamuchy New Jersey NJ Warren 041 40.8696 -74.8497 +US 07823 Belvidere New Jersey NJ Warren 041 40.8308 -75.0503 +US 07825 Blairstown New Jersey NJ Warren 041 40.9674 -74.9651 +US 07829 Buttzville New Jersey NJ Warren 041 40.8434 -74.9859 +US 07831 Changewater New Jersey NJ Warren 041 40.7394 -74.9448 +US 07832 Columbia New Jersey NJ Warren 041 40.9388 -75.055 +US 07833 Delaware New Jersey NJ Warren 041 40.9069 -75.0754 +US 07838 Great Meadows New Jersey NJ Warren 041 40.852 -74.9418 +US 07840 Hackettstown New Jersey NJ Warren 041 40.8529 -74.8343 +US 07844 Hope New Jersey NJ Warren 041 40.9197 -74.9846 +US 07846 Johnsonburg New Jersey NJ Warren 041 40.969 -74.8733 +US 07863 Oxford New Jersey NJ Warren 041 40.8105 -75.0019 +US 07865 Port Murray New Jersey NJ Warren 041 40.7906 -74.9167 +US 07880 Vienna New Jersey NJ Warren 041 40.8648 -74.897 +US 07882 Washington New Jersey NJ Warren 041 40.7582 -74.9914 +US 08802 Asbury New Jersey NJ Warren 041 40.695 -75.0281 +US 08808 Broadway New Jersey NJ Warren 041 40.7372 -75.0469 +US 08865 Phillipsburg New Jersey NJ Warren 041 40.7079 -75.1507 +US 08886 Stewartsville New Jersey NJ Warren 041 40.6957 -75.0825 +US 87008 Cedar Crest New Mexico NM Bernalillo 001 35.1285 -106.3617 +US 87022 Isleta New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87047 Sandia Park New Mexico NM Bernalillo 001 35.1683 -106.3238 +US 87059 Tijeras New Mexico NM Bernalillo 001 35.0446 -106.3062 +US 87101 Albuquerque New Mexico NM Bernalillo 001 35.1996 -106.6448 +US 87102 Albuquerque New Mexico NM Bernalillo 001 35.0818 -106.6482 +US 87103 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87104 Albuquerque New Mexico NM Bernalillo 001 35.1038 -106.6712 +US 87105 Albuquerque New Mexico NM Bernalillo 001 35.0448 -106.6893 +US 87106 Albuquerque New Mexico NM Bernalillo 001 35.079 -106.6169 +US 87107 Albuquerque New Mexico NM Bernalillo 001 35.1347 -106.6427 +US 87108 Albuquerque New Mexico NM Bernalillo 001 35.0726 -106.5749 +US 87109 Albuquerque New Mexico NM Bernalillo 001 35.1506 -106.569 +US 87110 Albuquerque New Mexico NM Bernalillo 001 35.1104 -106.5781 +US 87111 Albuquerque New Mexico NM Bernalillo 001 35.1347 -106.5222 +US 87112 Albuquerque New Mexico NM Bernalillo 001 35.101 -106.5183 +US 87113 Albuquerque New Mexico NM Bernalillo 001 35.1759 -106.6015 +US 87114 Albuquerque New Mexico NM Bernalillo 001 35.1868 -106.6652 +US 87115 Albuquerque New Mexico NM Bernalillo 001 35.0549 -106.5461 +US 87116 Albuquerque New Mexico NM Bernalillo 001 35.0561 -106.5506 +US 87117 Kirtland Afb New Mexico NM Bernalillo 001 35.0203 -106.5503 +US 87118 Albuquerque New Mexico NM Bernalillo 001 35.0554 -106.5958 +US 87119 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87120 Albuquerque New Mexico NM Bernalillo 001 35.1421 -106.7041 +US 87121 Albuquerque New Mexico NM Bernalillo 001 35.0512 -106.7269 +US 87122 Albuquerque New Mexico NM Bernalillo 001 35.1787 -106.5102 +US 87123 Albuquerque New Mexico NM Bernalillo 001 35.0717 -106.509 +US 87125 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87131 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87140 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87153 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87154 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87158 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87174 Rio Rancho New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87176 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87180 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87181 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87184 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87185 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87187 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87190 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87191 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87192 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87193 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87194 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87195 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87196 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87197 Albuquerque New Mexico NM Bernalillo 001 35.1086 -106.2439 +US 87198 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87199 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87201 Albuquerque New Mexico NM Bernalillo 001 35.0443 -106.6729 +US 87820 Aragon New Mexico NM Catron 003 33.8859 -108.5466 +US 87821 Datil New Mexico NM Catron 003 34.0427 -108.0183 +US 87824 Luna New Mexico NM Catron 003 33.891 -108.3794 +US 87827 Pie Town New Mexico NM Catron 003 34.3243 -108.3682 +US 87829 Quemado New Mexico NM Catron 003 34.2652 -108.7578 +US 87830 Reserve New Mexico NM Catron 003 33.6881 -108.8009 +US 88039 Glenwood New Mexico NM Catron 003 33.3048 -108.7743 +US 88201 Roswell New Mexico NM Chaves 005 33.6397 -104.3748 +US 88202 Roswell New Mexico NM Chaves 005 33.3038 -104.4318 +US 88203 Roswell New Mexico NM Chaves 005 33.3718 -104.5284 +US 88230 Dexter New Mexico NM Chaves 005 33.191 -104.3833 +US 88232 Hagerman New Mexico NM Chaves 005 33.1076 -104.3298 +US 88253 Lake Arthur New Mexico NM Chaves 005 33.0263 -104.4916 +US 87005 Bluewater New Mexico NM Cibola 006 35.1647 -108.1917 +US 87007 Casa Blanca New Mexico NM Cibola 006 35.0352 -107.4339 +US 87014 Cubero New Mexico NM Cibola 006 34.963 -108.0565 +US 87020 Grants New Mexico NM Cibola 006 35.0999 -107.8502 +US 87021 Milan New Mexico NM Cibola 006 35.1925 -107.8937 +US 87026 Laguna New Mexico NM Cibola 006 34.9625 -107.2325 +US 87038 New Laguna New Mexico NM Cibola 006 34.963 -108.0565 +US 87040 Paguate New Mexico NM Cibola 006 34.963 -108.0565 +US 87049 San Fidel New Mexico NM Cibola 006 35.1454 -107.8373 +US 87051 San Rafael New Mexico NM Cibola 006 35.151 -107.877 +US 87315 Fence Lake New Mexico NM Cibola 006 34.7344 -108.6934 +US 87357 Pinehill New Mexico NM Cibola 006 34.963 -108.0565 +US 87710 Angel Fire New Mexico NM Colfax 007 36.3849 -105.2439 +US 87714 Cimarron New Mexico NM Colfax 007 36.4574 -105.0697 +US 87718 Eagle Nest New Mexico NM Colfax 007 36.5326 -105.2756 +US 87728 Maxwell New Mexico NM Colfax 007 36.5434 -104.564 +US 87729 Miami New Mexico NM Colfax 007 36.2895 -104.8118 +US 87740 Raton New Mexico NM Colfax 007 36.8952 -104.4349 +US 87747 Springer New Mexico NM Colfax 007 36.3767 -104.5927 +US 87749 Ute Park New Mexico NM Colfax 007 36.6069 -104.6925 +US 88101 Clovis New Mexico NM Curry 009 34.4126 -103.2214 +US 88102 Clovis New Mexico NM Curry 009 34.6285 -103.3913 +US 88103 Cannon Afb New Mexico NM Curry 009 34.3841 -103.3154 +US 88112 Broadview New Mexico NM Curry 009 34.804 -103.1292 +US 88120 Grady New Mexico NM Curry 009 34.8107 -103.298 +US 88124 Melrose New Mexico NM Curry 009 34.4479 -103.6325 +US 88133 Saint Vrain New Mexico NM Curry 009 34.4756 -103.4669 +US 88135 Texico New Mexico NM Curry 009 34.3958 -103.0615 +US 88119 Fort Sumner New Mexico NM DeBaca 011 34.46 -104.2317 +US 88134 Taiban New Mexico NM DeBaca 011 34.3271 -104.0159 +US 88136 Yeso New Mexico NM DeBaca 011 34.455 -104.7452 +US 87936 Garfield New Mexico NM Doña Ana 013 32.7557 -107.2704 +US 87937 Hatch New Mexico NM Doña Ana 013 32.6583 -107.159 +US 87940 Rincon New Mexico NM Doña Ana 013 32.6597 -107.0643 +US 87941 Salem New Mexico NM Doña Ana 013 32.7093 -107.2157 +US 88001 Las Cruces New Mexico NM Doña Ana 013 32.2901 -106.7539 +US 88002 White Sands Missile Range New Mexico NM Doña Ana 013 32.3839 -106.4937 +US 88003 Las Cruces New Mexico NM Doña Ana 013 32.2738 -106.7472 +US 88004 Las Cruces New Mexico NM Doña Ana 013 32.4181 -106.8201 +US 88005 Las Cruces New Mexico NM Doña Ana 013 32.3161 -106.7991 +US 88006 Las Cruces New Mexico NM Doña Ana 013 32.3052 -106.7863 +US 88007 Las Cruces New Mexico NM Doña Ana County 013 32.3224 -106.8041 +US 88008 Santa Teresa New Mexico NM Doña Ana 013 31.8394 -106.6821 +US 88011 Las Cruces New Mexico NM Doña Ana 013 32.3244 -106.6683 +US 88012 Las Cruces New Mexico NM Doña Ana 013 32.5835 -106.7714 +US 88021 Anthony New Mexico NM Doña Ana 013 32.0682 -106.5705 +US 88024 Berino New Mexico NM Doña Ana 013 32.0682 -106.631 +US 88027 Chamberino New Mexico NM Doña Ana 013 32.0174 -106.6673 +US 88032 Dona Ana New Mexico NM Doña Ana 013 32.3939 -106.801 +US 88033 Fairacres New Mexico NM Doña Ana 013 32.2984 -106.8812 +US 88044 La Mesa New Mexico NM Doña Ana 013 32.1383 -106.7999 +US 88046 Mesilla New Mexico NM Doña Ana 013 32.268 -106.8059 +US 88047 Mesilla Park New Mexico NM Doña Ana 013 32.21 -106.7147 +US 88048 Mesquite New Mexico NM Doña Ana 013 32.146 -106.6676 +US 88052 Organ New Mexico NM Doña Ana 013 32.4259 -106.6136 +US 88054 Radium Springs New Mexico NM Doña Ana 013 32.4888 -106.9146 +US 88058 San Miguel New Mexico NM Doña Ana 013 32.4181 -106.8201 +US 88063 Sunland Park New Mexico NM Doña Ana 013 31.8186 -106.5997 +US 88072 Vado New Mexico NM Doña Ana 013 32.1187 -106.649 +US 88210 Artesia New Mexico NM Eddy 015 32.8384 -104.4074 +US 88211 Artesia New Mexico NM Eddy 015 32.7536 -104.3281 +US 88220 Carlsbad New Mexico NM Eddy 015 32.4119 -104.2395 +US 88221 Carlsbad New Mexico NM Eddy 015 32.342 -104.2937 +US 88250 Hope New Mexico NM Eddy 015 32.8156 -104.7299 +US 88254 Lakewood New Mexico NM Eddy 015 32.6362 -104.365 +US 88255 Loco Hills New Mexico NM Eddy 015 32.4828 -104.2873 +US 88256 Loving New Mexico NM Eddy 015 32.274 -104.0914 +US 88263 Malaga New Mexico NM Eddy 015 32.1813 -104.0668 +US 88268 Whites City New Mexico NM Eddy 015 32.4828 -104.2873 +US 88022 Arenas Valley New Mexico NM Grant 017 32.7839 -108.1854 +US 88023 Bayard New Mexico NM Grant 017 32.8198 -107.9696 +US 88025 Buckhorn New Mexico NM Grant 017 33.0633 -108.6956 +US 88026 Santa Clara New Mexico NM Grant 017 32.7936 -108.0752 +US 88028 Cliff New Mexico NM Grant 017 32.5367 -108.3279 +US 88034 Faywood New Mexico NM Grant 017 32.6935 -107.9065 +US 88036 Fort Bayard New Mexico NM Grant 017 32.7574 -108.0075 +US 88038 Gila New Mexico NM Grant 017 32.5367 -108.3279 +US 88040 Hachita New Mexico NM Grant 017 31.8904 -108.3316 +US 88041 Hanover New Mexico NM Grant 017 32.8045 -107.9545 +US 88043 Hurley New Mexico NM Grant 017 32.648 -108.1516 +US 88049 Mimbres New Mexico NM Grant 017 32.909 -108.0332 +US 88051 Mule Creek New Mexico NM Grant 017 33.1071 -108.9032 +US 88053 Pinos Altos New Mexico NM Grant 017 32.8614 -108.2192 +US 88055 Redrock New Mexico NM Grant 017 32.5367 -108.3279 +US 88061 Silver City New Mexico NM Grant 017 32.79 -108.2749 +US 88062 Silver City New Mexico NM Grant 017 32.7282 -108.1379 +US 88065 Tyrone New Mexico NM Grant 017 32.6194 -108.3704 +US 87711 Anton Chico New Mexico NM Guadalupe 019 34.7819 -104.7189 +US 87724 La Loma New Mexico NM Guadalupe 019 35.1734 -105.0775 +US 88353 Vaughn New Mexico NM Guadalupe 019 34.6241 -105.1926 +US 88417 Cuervo New Mexico NM Guadalupe 019 35.0101 -104.3999 +US 88431 Newkirk New Mexico NM Guadalupe 019 35.0847 -104.2433 +US 88435 Santa Rosa New Mexico NM Guadalupe 019 34.8526 -104.5899 +US 87730 Mills New Mexico NM Harding 021 36.1281 -104.2277 +US 87733 Mosquero New Mexico NM Harding 021 35.8041 -103.9021 +US 87743 Roy New Mexico NM Harding 021 35.9522 -104.1497 +US 87746 Solano New Mexico NM Harding 021 35.8041 -103.9021 +US 88009 Playas New Mexico NM Hidalgo 023 32.055 -108.6291 +US 88020 Animas New Mexico NM Hidalgo 023 32.053 -108.9069 +US 88045 Lordsburg New Mexico NM Hidalgo 023 32.316 -108.723 +US 88056 Rodeo New Mexico NM Hidalgo 023 32.055 -108.6291 +US 88114 Crossroads New Mexico NM Lea 025 33.5272 -103.3564 +US 88213 Caprock New Mexico NM Lea 025 33.3939 -103.639 +US 88231 Eunice New Mexico NM Lea 025 32.4392 -103.1594 +US 88240 Hobbs New Mexico NM Lea 025 32.7222 -103.1372 +US 88241 Hobbs New Mexico NM Lea 025 32.7475 -103.2165 +US 88242 Hobbs New Mexico NM Lea 025 32.8105 -103.1587 +US 88244 Hobbs New Mexico NM Lea 025 32.7854 -103.4338 +US 88252 Jal New Mexico NM Lea 025 32.1128 -103.1997 +US 88260 Lovington New Mexico NM Lea 025 32.9512 -103.3488 +US 88262 Mc Donald New Mexico NM Lea 025 32.7854 -103.4338 +US 88264 Maljamar New Mexico NM Lea 025 32.8423 -103.7234 +US 88265 Monument New Mexico NM Lea 025 32.5874 -103.2703 +US 88267 Tatum New Mexico NM Lea 025 33.26 -103.314 +US 88301 Carrizozo New Mexico NM Lincoln 027 33.6496 -105.8696 +US 88312 Alto New Mexico NM Lincoln 027 33.4314 -105.6776 +US 88316 Capitan New Mexico NM Lincoln 027 33.5602 -105.5269 +US 88318 Corona New Mexico NM Lincoln 027 34.1693 -105.5339 +US 88323 Fort Stanton New Mexico NM Lincoln 027 33.6444 -105.874 +US 88324 Glencoe New Mexico NM Lincoln 027 33.3898 -105.4391 +US 88336 Hondo New Mexico NM Lincoln 027 33.7397 -105.6294 +US 88338 Lincoln New Mexico NM Lincoln 027 33.4869 -105.382 +US 88341 Nogal New Mexico NM Lincoln 027 33.4996 -105.7036 +US 88343 Picacho New Mexico NM Lincoln 027 33.3363 -105.64 +US 88345 Ruidoso New Mexico NM Lincoln 027 33.3474 -105.651 +US 88346 Ruidoso Downs New Mexico NM Lincoln 027 33.3577 -105.5383 +US 88348 San Patricio New Mexico NM Lincoln 027 33.3877 -105.3498 +US 88351 Tinnie New Mexico NM Lincoln 027 33.7397 -105.6294 +US 88355 Ruidoso New Mexico NM Lincoln 027 33.3305 -105.6933 +US 87544 Los Alamos New Mexico NM Los Alamos 028 35.8663 -106.2676 +US 87545 Los Alamos New Mexico NM Los Alamos 028 35.8639 -106.2953 +US 88029 Columbus New Mexico NM Luna 029 32.2211 -107.5883 +US 88030 Deming New Mexico NM Luna 029 32.2318 -107.7466 +US 88031 Deming New Mexico NM Luna 029 32.2398 -107.7404 +US 87045 Prewitt New Mexico NM McKinley 031 35.3547 -108.1038 +US 87301 Gallup New Mexico NM McKinley 031 35.5065 -108.7414 +US 87302 Gallup New Mexico NM McKinley 031 35.4809 -108.1767 +US 87305 Gallup New Mexico NM McKinley 031 35.4499 -108.7705 +US 87310 Brimhall New Mexico NM McKinley 031 35.8005 -108.5815 +US 87311 Church Rock New Mexico NM McKinley 031 35.4809 -108.1767 +US 87312 Continental Divide New Mexico NM McKinley 031 35.4226 -108.323 +US 87313 Crownpoint New Mexico NM McKinley 031 35.7206 -108.0271 +US 87316 Fort Wingate New Mexico NM McKinley 031 35.5191 -108.4864 +US 87317 Gamerco New Mexico NM McKinley 031 35.5763 -108.7626 +US 87319 Mentmore New Mexico NM McKinley 031 35.5042 -108.8317 +US 87320 Mexican Springs New Mexico NM McKinley 031 35.7837 -108.819 +US 87321 Ramah New Mexico NM McKinley 031 35.1324 -108.492 +US 87322 Rehoboth New Mexico NM McKinley 031 35.4809 -108.1767 +US 87323 Thoreau New Mexico NM McKinley 031 35.3976 -108.1604 +US 87325 Tohatchi New Mexico NM McKinley 031 36.0021 -108.6229 +US 87326 Vanderwagen New Mexico NM McKinley 031 35.3509 -108.6985 +US 87327 Zuni New Mexico NM McKinley 031 35.0684 -108.8336 +US 87328 Navajo New Mexico NM McKinley 031 35.8942 -109.0226 +US 87347 Jamestown New Mexico NM McKinley 031 35.4809 -108.1767 +US 87365 Smith Lake New Mexico NM McKinley 031 35.4809 -108.1767 +US 87375 Yatahey New Mexico NM McKinley 031 35.4809 -108.1767 +US 87712 Buena Vista New Mexico NM Mora 033 36.0083 -105.0239 +US 87713 Chacon New Mexico NM Mora 033 36.1388 -105.3854 +US 87715 Cleveland New Mexico NM Mora 033 35.9898 -105.4326 +US 87722 Guadalupita New Mexico NM Mora 033 36.0083 -105.0239 +US 87723 Holman New Mexico NM Mora 033 36.0083 -105.0239 +US 87732 Mora New Mexico NM Mora 033 36.004 -105.3128 +US 87734 Ocate New Mexico NM Mora 033 36.1037 -105.066 +US 87735 Ojo Feliz New Mexico NM Mora 033 36.0083 -105.0239 +US 87736 Rainsville New Mexico NM Mora 033 36.0083 -105.0239 +US 87750 Valmora New Mexico NM Mora 033 35.794 -104.9116 +US 87752 Wagon Mound New Mexico NM Mora 033 35.9814 -104.691 +US 87753 Watrous New Mexico NM Mora 033 36.0083 -105.0239 +US 88081 Chaparral New Mexico NM Otero County 035 32.2239 -106.2631 +US 88310 Alamogordo New Mexico NM Otero 035 32.8932 -105.9485 +US 88311 Alamogordo New Mexico NM Otero 035 32.6955 -105.6126 +US 88314 Bent New Mexico NM Otero 035 33.148 -105.8635 +US 88317 Cloudcroft New Mexico NM Otero 035 32.8897 -105.6744 +US 88325 High Rolls Mountain Park New Mexico NM Otero 035 32.9396 -105.8189 +US 88330 Holloman Air Force Base New Mexico NM Otero 035 32.8366 -106.0774 +US 88337 La Luz New Mexico NM Otero 035 32.9774 -105.9534 +US 88339 Mayhill New Mexico NM Otero 035 32.907 -105.5181 +US 88340 Mescalero New Mexico NM Otero 035 33.2164 -105.7743 +US 88342 Orogrande New Mexico NM Otero 035 32.4051 -106.0797 +US 88344 Pinon New Mexico NM Otero 035 32.6396 -105.4157 +US 88347 Sacramento New Mexico NM Otero 035 32.8052 -105.6211 +US 88349 Sunspot New Mexico NM Otero 035 32.8672 -105.7811 +US 88350 Timberon New Mexico NM Otero 035 32.6295 -105.6945 +US 88352 Tularosa New Mexico NM Otero 035 33.065 -106.0108 +US 88354 Weed New Mexico NM Otero 035 32.8052 -105.5063 +US 88121 House New Mexico NM Quay 037 34.6952 -103.9203 +US 88401 Tucumcari New Mexico NM Quay 037 35.168 -103.7179 +US 88411 Bard New Mexico NM Quay 037 35.1303 -103.1605 +US 88426 Logan New Mexico NM Quay 037 35.3681 -103.4383 +US 88427 Mc Alister New Mexico NM Quay 037 34.7321 -103.654 +US 88430 Nara Visa New Mexico NM Quay 037 35.618 -103.1317 +US 88433 Quay New Mexico NM Quay 037 34.9167 -103.7782 +US 88434 San Jon New Mexico NM Quay 037 35.1198 -103.2846 +US 87012 Coyote New Mexico NM Rio Arriba 039 36.1018 -106.6692 +US 87017 Gallina New Mexico NM Rio Arriba 039 36.3202 -106.7687 +US 87029 Lindrith New Mexico NM Rio Arriba 039 36.3249 -107.0495 +US 87064 Youngsville New Mexico NM Rio Arriba 039 36.1819 -106.589 +US 87510 Abiquiu New Mexico NM Rio Arriba 039 36.1769 -106.2449 +US 87511 Alcalde New Mexico NM Rio Arriba 039 36.0647 -106.0777 +US 87515 Canjilon New Mexico NM Rio Arriba 039 36.4654 -106.5785 +US 87516 Canones New Mexico NM Rio Arriba 039 36.1814 -106.4376 +US 87518 Cebolla New Mexico NM Rio Arriba 039 36.4654 -106.5785 +US 87520 Chama New Mexico NM Rio Arriba 039 36.8962 -106.5829 +US 87522 Chimayo New Mexico NM Rio Arriba 039 36.4654 -106.5785 +US 87523 Cordova New Mexico NM Rio Arriba 039 36.0056 -105.9033 +US 87527 Dixon New Mexico NM Rio Arriba 039 36.179 -105.8615 +US 87528 Dulce New Mexico NM Rio Arriba 039 36.8598 -107.0602 +US 87530 El Rito New Mexico NM Rio Arriba 039 36.3647 -106.2192 +US 87531 Embudo New Mexico NM Rio Arriba 039 36.2153 -105.8901 +US 87532 Espanola New Mexico NM Rio Arriba 039 35.9872 -106.0717 +US 87533 Espanola New Mexico NM Rio Arriba 039 35.9866 -106.0654 +US 87537 Hernandez New Mexico NM Rio Arriba 039 36.0738 -106.1396 +US 87539 La Madera New Mexico NM Rio Arriba 039 36.4654 -106.5785 +US 87548 Medanales New Mexico NM Rio Arriba 039 36.1892 -106.2176 +US 87551 Los Ojos New Mexico NM Rio Arriba 039 36.7289 -106.5157 +US 87554 Petaca New Mexico NM Rio Arriba 039 36.4654 -106.5785 +US 87566 San Juan Pueblo New Mexico NM Rio Arriba 039 36.0489 -106.0793 +US 87575 Tierra Amarilla New Mexico NM Rio Arriba 039 36.6805 -106.557 +US 87578 Truchas New Mexico NM Rio Arriba 039 36.0444 -105.8129 +US 87581 Vallecitos New Mexico NM Rio Arriba 039 36.5286 -106.1448 +US 87582 Velarde New Mexico NM Rio Arriba 039 36.1321 -106.0022 +US 88113 Causey New Mexico NM Roosevelt 041 33.7781 -103.0865 +US 88115 Dora New Mexico NM Roosevelt 041 33.9166 -103.3804 +US 88116 Elida New Mexico NM Roosevelt 041 33.9405 -103.6323 +US 88118 Floyd New Mexico NM Roosevelt 041 34.252 -103.5827 +US 88122 Kenna New Mexico NM Roosevelt 041 33.8832 -103.7095 +US 88123 Lingo New Mexico NM Roosevelt 041 33.7176 -103.1451 +US 88125 Milnesand New Mexico NM Roosevelt 041 33.605 -103.2782 +US 88126 Pep New Mexico NM Roosevelt 041 33.8054 -103.2881 +US 88130 Portales New Mexico NM Roosevelt 041 34.1799 -103.3363 +US 88132 Rogers New Mexico NM Roosevelt 041 33.9216 -103.1898 +US 87001 Algodones New Mexico NM Sandoval 043 35.389 -106.3517 +US 87004 Bernalillo New Mexico NM Sandoval 043 35.3285 -106.5309 +US 87013 Cuba New Mexico NM Sandoval 043 36.0482 -107.1885 +US 87018 Counselor New Mexico NM Sandoval 043 35.7174 -106.9358 +US 87024 Jemez Pueblo New Mexico NM Sandoval 043 35.6243 -106.7219 +US 87025 Jemez Springs New Mexico NM Sandoval 043 35.8927 -106.7714 +US 87027 La Jara New Mexico NM Sandoval 043 36.1194 -106.9923 +US 87041 Pena Blanca New Mexico NM Sandoval 043 35.598 -106.3492 +US 87043 Placitas New Mexico NM Sandoval 043 35.3092 -106.5293 +US 87044 Ponderosa New Mexico NM Sandoval 043 35.7117 -106.6796 +US 87046 Regina New Mexico NM Sandoval 043 35.7174 -106.9358 +US 87048 Corrales New Mexico NM Sandoval 043 35.2339 -106.62 +US 87052 Santo Domingo Pueblo New Mexico NM Sandoval 043 35.5269 -106.3445 +US 87053 San Ysidro New Mexico NM Sandoval 043 35.6682 -106.9885 +US 87072 Cochiti Pueblo New Mexico NM Sandoval 043 35.6089 -106.3518 +US 87083 Cochiti Lake New Mexico NM Sandoval 043 35.6485 -106.3428 +US 87124 Rio Rancho New Mexico NM Sandoval 043 35.2493 -106.6818 +US 87144 Rio Rancho New Mexico NM Sandoval County 043 35.324 -106.7099 +US 87037 Nageezi New Mexico NM San Juan 045 36.1598 -107.7664 +US 87364 Sheep Springs New Mexico NM San Juan 045 36.142 -108.7064 +US 87401 Farmington New Mexico NM San Juan 045 36.7412 -108.1797 +US 87402 Farmington New Mexico NM San Juan 045 36.7685 -108.1478 +US 87410 Aztec New Mexico NM San Juan 045 36.8205 -108.011 +US 87412 Blanco New Mexico NM San Juan 045 36.7429 -108.0598 +US 87413 Bloomfield New Mexico NM San Juan 045 36.6955 -107.9784 +US 87415 Flora Vista New Mexico NM San Juan 045 36.8028 -108.0827 +US 87416 Fruitland New Mexico NM San Juan 045 36.6933 -108.4218 +US 87417 Kirtland New Mexico NM San Juan 045 36.741 -108.351 +US 87418 La Plata New Mexico NM San Juan 045 36.9576 -108.1792 +US 87419 Navajo Dam New Mexico NM San Juan 045 36.8689 -107.6528 +US 87420 Shiprock New Mexico NM San Juan 045 36.656 -108.7355 +US 87421 Waterflow New Mexico NM San Juan 045 36.7637 -108.5186 +US 87455 Newcomb New Mexico NM San Juan 045 36.5002 -108.2335 +US 87461 Sanostee New Mexico NM San Juan 045 36.5002 -108.2335 +US 87499 Farmington New Mexico NM San Juan 045 36.7745 -108.0692 +US 87538 Ilfeld New Mexico NM San Miguel 047 35.4563 -104.6796 +US 87552 Pecos New Mexico NM San Miguel 047 35.571 -105.6701 +US 87560 Ribera New Mexico NM San Miguel 047 35.3344 -105.4652 +US 87562 Rowe New Mexico NM San Miguel 047 35.4563 -104.6796 +US 87565 San Jose New Mexico NM San Miguel 047 35.4569 -105.4383 +US 87569 Serafina New Mexico NM San Miguel 047 35.4563 -104.6796 +US 87573 Tererro New Mexico NM San Miguel 047 35.7727 -105.6713 +US 87583 Villanueva New Mexico NM San Miguel 047 35.4563 -104.6796 +US 87701 Las Vegas New Mexico NM San Miguel 047 35.5949 -105.2272 +US 87731 Montezuma New Mexico NM San Miguel 047 35.6499 -105.2532 +US 87742 Rociada New Mexico NM San Miguel 047 35.8226 -105.3147 +US 87745 Sapello New Mexico NM San Miguel 047 35.762 -105.1077 +US 88416 Conchas Dam New Mexico NM San Miguel 047 35.3786 -104.2052 +US 88421 Garita New Mexico NM San Miguel 047 35.3502 -104.4419 +US 88439 Trementina New Mexico NM San Miguel 047 35.4563 -104.6796 +US 88441 Bell Ranch New Mexico NM San Miguel 047 35.4563 -104.6796 +US 87010 Cerrillos New Mexico NM Santa Fe 049 35.423 -106.1317 +US 87015 Edgewood New Mexico NM Santa Fe 049 35.0776 -106.1872 +US 87056 Stanley New Mexico NM Santa Fe 049 35.1295 -106.0283 +US 87501 Santa Fe New Mexico NM Santa Fe 049 35.6975 -105.9821 +US 87502 Santa Fe New Mexico NM Santa Fe 049 35.4399 -106.1237 +US 87503 Santa Fe New Mexico NM Santa Fe 049 35.5212 -105.9818 +US 87504 Santa Fe New Mexico NM Santa Fe 049 35.8936 -106.0075 +US 87505 Santa Fe New Mexico NM Santa Fe 049 35.6219 -105.8688 +US 87506 Santa Fe New Mexico NM Santa Fe 049 35.8195 -105.9886 +US 87507 Santa Fe New Mexico NM Santa Fe 049 35.6567 -106.0152 +US 87508 Santa Fe New Mexico NM Santa Fe 049 35.5335 -105.926 +US 87509 Santa Fe New Mexico NM Santa Fe 049 35.5212 -105.9818 +US 87535 Glorieta New Mexico NM Santa Fe 049 35.5288 -105.7477 +US 87540 Lamy New Mexico NM Santa Fe 049 35.4311 -105.9409 +US 87567 Santa Cruz New Mexico NM Santa Fe 049 35.986 -106.0318 +US 87574 Tesuque New Mexico NM Santa Fe 049 35.7874 -105.9157 +US 87592 Santa Fe New Mexico NM Santa Fe 049 35.5212 -105.9818 +US 87594 Santa Fe New Mexico NM Santa Fe 049 35.5212 -105.9818 +US 87901 Truth Or Consequences New Mexico NM Sierra 051 33.1606 -107.2669 +US 87930 Arrey New Mexico NM Sierra 051 32.8021 -107.3544 +US 87931 Caballo New Mexico NM Sierra 051 32.9641 -107.4102 +US 87933 Derry New Mexico NM Sierra 051 33.0426 -107.1705 +US 87935 Elephant Butte New Mexico NM Sierra 051 33.209 -107.2212 +US 87939 Monticello New Mexico NM Sierra 051 33.4127 -107.4886 +US 87942 Williamsburg New Mexico NM Sierra 051 33.1171 -107.2915 +US 87943 Winston New Mexico NM Sierra 051 33.3061 -107.6675 +US 88042 Hillsboro New Mexico NM Sierra 051 32.9239 -107.6276 +US 87011 Claunch New Mexico NM Socorro 053 34.0646 -105.9496 +US 87028 La Joya New Mexico NM Socorro 053 34.3813 -106.815 +US 87062 Veguita New Mexico NM Socorro 053 34.485 -106.7591 +US 87801 Socorro New Mexico NM Socorro 053 34.0479 -106.8907 +US 87823 Lemitar New Mexico NM Socorro 053 34.156 -106.9044 +US 87825 Magdalena New Mexico NM Socorro 053 34.1114 -107.2409 +US 87828 Polvadera New Mexico NM Socorro 053 34.2059 -106.9167 +US 87831 San Acacia New Mexico NM Socorro 053 34.2283 -106.9049 +US 87832 San Antonio New Mexico NM Socorro 053 33.819 -106.8285 +US 87512 Amalia New Mexico NM Taos 055 36.8036 -105.5854 +US 87513 Arroyo Hondo New Mexico NM Taos 055 36.5796 -105.6873 +US 87514 Arroyo Seco New Mexico NM Taos 055 36.52 -105.534 +US 87517 Carson New Mexico NM Taos 055 36.5045 -105.6292 +US 87519 Cerro New Mexico NM Taos 055 36.5045 -105.6292 +US 87521 Chamisal New Mexico NM Taos 055 36.1311 -105.7385 +US 87524 Costilla New Mexico NM Taos 055 36.9324 -105.6723 +US 87525 Taos Ski Valley New Mexico NM Taos 055 36.5366 -105.581 +US 87529 El Prado New Mexico NM Taos 055 36.3492 -105.6244 +US 87543 Llano New Mexico NM Taos 055 36.1486 -105.6648 +US 87549 Ojo Caliente New Mexico NM Taos 055 36.3313 -106.0028 +US 87553 Penasco New Mexico NM Taos 055 36.1763 -105.7105 +US 87556 Questa New Mexico NM Taos 055 36.7587 -105.5976 +US 87557 Ranchos De Taos New Mexico NM Taos 055 36.3357 -105.6086 +US 87558 Red River New Mexico NM Taos 055 36.6659 -105.4694 +US 87564 San Cristobal New Mexico NM Taos 055 36.6116 -105.636 +US 87571 Taos New Mexico NM Taos 055 36.3953 -105.5847 +US 87576 Trampas New Mexico NM Taos 055 36.5045 -105.6292 +US 87577 Tres Piedras New Mexico NM Taos 055 36.5045 -105.6292 +US 87579 Vadito New Mexico NM Taos 055 36.1338 -105.5712 +US 87580 Valdez New Mexico NM Taos 055 36.5701 -105.5658 +US 87009 Cedarvale New Mexico NM Torrance 057 34.6509 -105.8806 +US 87016 Estancia New Mexico NM Torrance 057 34.77 -106.135 +US 87032 Mc Intosh New Mexico NM Torrance 057 34.8519 -106.0521 +US 87035 Moriarty New Mexico NM Torrance 057 34.9889 -106.0609 +US 87036 Mountainair New Mexico NM Torrance 057 34.5158 -106.2577 +US 87057 Tajique New Mexico NM Torrance 057 34.6509 -105.8806 +US 87061 Torreon New Mexico NM Torrance 057 34.6948 -106.3247 +US 87063 Willard New Mexico NM Torrance 057 34.5754 -106.0307 +US 87070 Clines Corners New Mexico NM Torrance 057 35.0229 -105.9795 +US 88321 Encino New Mexico NM Torrance 057 34.615 -105.4839 +US 88410 Amistad New Mexico NM Union 059 35.8983 -103.213 +US 88414 Capulin New Mexico NM Union 059 36.7785 -103.9986 +US 88415 Clayton New Mexico NM Union 059 36.4414 -103.1888 +US 88418 Des Moines New Mexico NM Union 059 36.7291 -103.8739 +US 88419 Folsom New Mexico NM Union 059 36.869 -103.8399 +US 88422 Gladstone New Mexico NM Union 059 36.3698 -103.5055 +US 88424 Grenville New Mexico NM Union 059 36.3698 -103.5055 +US 88429 Mount Dora New Mexico NM Union 059 36.3698 -103.5055 +US 88436 Sedan New Mexico NM Union 059 36.226 -103.1449 +US 88437 Seneca New Mexico NM Union 059 36.6279 -103.0894 +US 87002 Belen New Mexico NM Valencia 061 34.6511 -106.6952 +US 87006 Bosque New Mexico NM Valencia 061 34.4996 -106.8038 +US 87023 Jarales New Mexico NM Valencia 061 34.592 -106.7611 +US 87031 Los Lunas New Mexico NM Valencia 061 34.7806 -106.7115 +US 87034 Pueblo Of Acoma New Mexico NM Valencia 061 34.6975 -106.8078 +US 87042 Peralta New Mexico NM Valencia 061 34.8332 -106.6872 +US 87060 Tome New Mexico NM Valencia 061 34.7426 -106.7328 +US 87068 Bosque Farms New Mexico NM Valencia 061 34.8764 -106.6975 +US 89406 Fallon Nevada NV Churchill 001 39.4703 -118.7861 +US 89407 Fallon Nevada NV Churchill 001 39.5256 -118.8424 +US 89496 Fallon Nevada NV Churchill 001 39.538 -118.3436 +US 88901 The Lakes Nevada NV Clark 003 36.3225 -114.8197 +US 88902 Winchester Nevada NV Clark County 003 36.1749 -115.1363 +US 88903 Winchester Nevada NV Clark County 003 36.1749 -115.1363 +US 88904 Winchester Nevada NV Clark County 003 36.1749 -115.1363 +US 88905 The Lakes Nevada NV Clark 003 35.9279 -114.9721 +US 89002 Henderson Nevada NV Clark County 003 36.0008 -114.9588 +US 89004 Blue Diamond Nevada NV Clark 003 36.0854 -115.4707 +US 89005 Boulder City Nevada NV Clark 003 35.9727 -114.8344 +US 89006 Boulder City Nevada NV Clark 003 35.9279 -114.9721 +US 89007 Bunkerville Nevada NV Clark 003 36.7684 -114.1281 +US 89009 Henderson Nevada NV Clark 003 35.9279 -114.9721 +US 89011 Henderson Nevada NV Clark 003 36.1065 -114.9192 +US 89012 Henderson Nevada NV Clark 003 36.0119 -115.0433 +US 89014 Henderson Nevada NV Clark 003 36.0564 -115.078 +US 89015 Henderson Nevada NV Clark 003 36.0357 -114.9718 +US 89016 Henderson Nevada NV Clark 003 35.9279 -114.9721 +US 89018 Indian Springs Nevada NV Clark 003 36.5416 -115.6686 +US 89019 Jean Nevada NV Clark 003 35.7368 -115.5405 +US 89021 Logandale Nevada NV Clark 003 36.5935 -114.4683 +US 89024 Mesquite Nevada NV Clark 003 36.8101 -114.0722 +US 89025 Moapa Nevada NV Clark 003 36.6916 -114.6514 +US 89026 Jean Nevada NV Clark 003 35.9279 -114.9721 +US 89027 Mesquite Nevada NV Clark 003 36.8113 -114.1235 +US 89028 Laughlin Nevada NV Clark 003 35.1604 -114.7464 +US 89029 Laughlin Nevada NV Clark 003 35.1321 -114.6368 +US 89030 North Las Vegas Nevada NV Clark 003 36.2115 -115.1241 +US 89031 North Las Vegas Nevada NV Clark 003 36.2589 -115.1718 +US 89032 North Las Vegas Nevada NV Clark 003 36.218 -115.1709 +US 89033 North Las Vegas Nevada NV Clark 003 36.2845 -115.1345 +US 89034 Mesquite Nevada NV Clark County 003 36.809 -114.0591 +US 89036 North Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89037 Moapa Nevada NV Clark County 003 36.6761 -114.6198 +US 89039 Cal Nev Ari Nevada NV Clark 003 35.2522 -114.8714 +US 89040 Overton Nevada NV Clark 003 36.5703 -114.4732 +US 89046 Searchlight Nevada NV Clark 003 35.5132 -114.8866 +US 89052 Henderson Nevada NV Clark 003 35.9878 -115.1167 +US 89053 Henderson Nevada NV Clark 003 35.9279 -114.9721 +US 89054 Sloan Nevada NV Clark County 003 35.935 -115.2058 +US 89067 Moapa Nevada NV Clark County 003 36.6591 -114.6656 +US 89070 Indian Springs Nevada NV Clark 003 35.9279 -114.9721 +US 89074 Henderson Nevada NV Clark 003 36.0384 -115.0857 +US 89077 Henderson Nevada NV Clark County 003 36.08 -115.046 +US 89081 North Las Vegas Nevada NV Clark County 003 36.2583 -115.1068 +US 89084 North Las Vegas Nevada NV Clark 003 36.2815 -115.1482 +US 89085 North Las Vegas Nevada NV Clark County 003 36.3097 -115.1981 +US 89086 North Las Vegas Nevada NV Clark 003 36.2809 -115.1349 +US 89087 North Las Vegas Nevada NV Clark County 003 36.2204 -115.1458 +US 89095 North Las Vegas Nevada NV Clark County 003 36.3 -115.1418 +US 89101 Las Vegas Nevada NV Clark 003 36.1721 -115.1224 +US 89102 Las Vegas Nevada NV Clark 003 36.1433 -115.2004 +US 89103 Las Vegas Nevada NV Clark 003 36.1149 -115.2161 +US 89104 Las Vegas Nevada NV Clark 003 36.152 -115.1092 +US 89105 Las Vegas Nevada NV Clark County 003 36.086 -115.1471 +US 89106 Las Vegas Nevada NV Clark 003 36.1847 -115.1617 +US 89107 Las Vegas Nevada NV Clark 003 36.1705 -115.2176 +US 89108 Las Vegas Nevada NV Clark 003 36.2044 -115.2233 +US 89109 Las Vegas Nevada NV Clark 003 36.126 -115.1454 +US 89110 Las Vegas Nevada NV Clark 003 36.173 -115.0669 +US 89111 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89112 Las Vegas Nevada NV Clark 003 36.1578 -115.0256 +US 89113 Las Vegas Nevada NV Clark 003 36.0854 -115.2566 +US 89114 Las Vegas Nevada NV Clark 003 36.0113 -115.1015 +US 89115 Las Vegas Nevada NV Clark 003 36.2158 -115.0671 +US 89116 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89117 Las Vegas Nevada NV Clark 003 36.1302 -115.2755 +US 89118 Las Vegas Nevada NV Clark 003 36.0811 -115.2169 +US 89119 Las Vegas Nevada NV Clark 003 36.1008 -115.1365 +US 89120 Las Vegas Nevada NV Clark 003 36.0914 -115.0885 +US 89121 Las Vegas Nevada NV Clark 003 36.1232 -115.0902 +US 89122 Las Vegas Nevada NV Clark 003 36.1205 -115.0523 +US 89123 Las Vegas Nevada NV Clark 003 36.0383 -115.1462 +US 89124 Las Vegas Nevada NV Clark 003 36.4257 -115.4809 +US 89125 Las Vegas Nevada NV Clark 003 36.2235 -115.2655 +US 89126 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89127 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89128 Las Vegas Nevada NV Clark 003 36.1968 -115.2644 +US 89129 Las Vegas Nevada NV Clark 003 36.245 -115.2743 +US 89130 Las Vegas Nevada NV Clark 003 36.2471 -115.221 +US 89131 Las Vegas Nevada NV Clark 003 36.2956 -115.2419 +US 89132 Las Vegas Nevada NV Clark 003 36.019 -115.1519 +US 89133 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89134 Las Vegas Nevada NV Clark 003 36.2092 -115.2941 +US 89135 Las Vegas Nevada NV Clark 003 36.1378 -115.3261 +US 89136 Las Vegas Nevada NV Clark County 003 36.1753 -115.1364 +US 89137 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89138 Las Vegas Nevada NV Clark 003 36.1666 -115.3613 +US 89139 Las Vegas Nevada NV Clark 003 36.0129 -115.2118 +US 89140 Las Vegas Nevada NV Clark County 003 36.086 -115.1471 +US 89141 Las Vegas Nevada NV Clark 003 36.0104 -115.2073 +US 89142 Las Vegas Nevada NV Clark 003 36.148 -115.0404 +US 89143 Las Vegas Nevada NV Clark 003 36.3223 -115.2932 +US 89144 Las Vegas Nevada NV Clark 003 36.1781 -115.3183 +US 89145 Las Vegas Nevada NV Clark 003 36.1693 -115.2828 +US 89146 Las Vegas Nevada NV Clark 003 36.1424 -115.2242 +US 89147 Las Vegas Nevada NV Clark 003 36.1128 -115.2801 +US 89148 Las Vegas Nevada NV Clark 003 36.0588 -115.3104 +US 89149 Las Vegas Nevada NV Clark 003 36.2765 -115.2885 +US 89150 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89151 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89152 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89153 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89154 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89155 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89156 Las Vegas Nevada NV Clark 003 36.2034 -115.0364 +US 89157 Las Vegas Nevada NV Clark County 003 36.1695 -115.193 +US 89158 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89159 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89160 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89161 Las Vegas Nevada NV Clark County 003 36.0004 -115.3639 +US 89162 Las Vegas Nevada NV Clark County 003 36.1725 -115.1414 +US 89163 The Lakes Nevada NV Clark 003 35.9279 -114.9721 +US 89164 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89165 Las Vegas Nevada NV Clark County 003 36.3302 -115.3257 +US 89166 Las Vegas Nevada NV Clark County 003 36.3265 -115.3398 +US 89169 Las Vegas Nevada NV Clark County 003 36.1234 -115.1429 +US 89170 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89173 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89177 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89178 Las Vegas Nevada NV Clark County 003 35.9977 -115.2861 +US 89179 Las Vegas Nevada NV Clark County 003 36.2542 -115.5269 +US 89180 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89183 Las Vegas Nevada NV Clark County 003 35.9959 -115.1576 +US 89185 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89191 Nellis Afb Nevada NV Clark 003 36.2395 -115.0257 +US 89193 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89195 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89199 Las Vegas Nevada NV Clark 003 35.9279 -114.9721 +US 89410 Gardnerville Nevada NV Douglas 005 38.8703 -119.6115 +US 89411 Genoa Nevada NV Douglas 005 39.0341 -119.8228 +US 89413 Glenbrook Nevada NV Douglas 005 39.0509 -119.9428 +US 89423 Minden Nevada NV Douglas 005 39.0218 -119.7314 +US 89448 Zephyr Cove Nevada NV Douglas 005 39.0204 -119.9114 +US 89449 Stateline Nevada NV Douglas 005 38.9643 -119.9068 +US 89460 Gardnerville Nevada NV Douglas County 005 38.9166 -119.7272 +US 89705 Carson City Nevada NV Douglas 005 39.0554 -119.8059 +US 89801 Elko Nevada NV Elko 007 40.9056 -115.5344 +US 89802 Elko Nevada NV Elko 007 41.0594 -115.5296 +US 89803 Elko Nevada NV Elko 007 41.0594 -115.5296 +US 89815 Spring Creek Nevada NV Elko 007 40.7519 -115.5956 +US 89822 Carlin Nevada NV Elko 007 40.7172 -116.1082 +US 89823 Deeth Nevada NV Elko 007 41.431 -115.3717 +US 89824 Halleck Nevada NV Elko 007 41.0594 -115.5296 +US 89825 Jackpot Nevada NV Elko 007 41.8882 -114.7233 +US 89826 Jarbidge Nevada NV Elko 007 41.8873 -115.3813 +US 89828 Lamoille Nevada NV Elko 007 40.7505 -115.3631 +US 89830 Montello Nevada NV Elko 007 41.0594 -115.5296 +US 89831 Mountain City Nevada NV Elko 007 41.0594 -115.5296 +US 89832 Owyhee Nevada NV Elko 007 41.7483 -116.0072 +US 89833 Ruby Valley Nevada NV Elko 007 40.3995 -115.2312 +US 89834 Tuscarora Nevada NV Elko 007 41.0594 -115.5296 +US 89835 Wells Nevada NV Elko 007 41.5439 -114.8218 +US 89883 West Wendover Nevada NV Elko 007 40.5045 -114.4126 +US 89010 Dyer Nevada NV Esmeralda 009 37.7776 -118.084 +US 89013 Goldfield Nevada NV Esmeralda 009 37.8344 -117.2694 +US 89047 Silverpeak Nevada NV Esmeralda 009 37.7225 -117.7965 +US 89316 Eureka Nevada NV Eureka 011 39.5897 -115.9943 +US 89821 Crescent Valley Nevada NV Eureka 011 40.4138 -116.5813 +US 89404 Denio Nevada NV Humboldt 013 41.7043 -118.732 +US 89414 Golconda Nevada NV Humboldt 013 40.9683 -117.3349 +US 89421 Mc Dermitt Nevada NV Humboldt 013 41.9708 -117.6737 +US 89425 Orovada Nevada NV Humboldt 013 41.6654 -117.9083 +US 89426 Paradise Valley Nevada NV Humboldt 013 41.5057 -117.5728 +US 89438 Valmy Nevada NV Humboldt 013 41.2633 -118.1745 +US 89445 Winnemucca Nevada NV Humboldt 013 40.9664 -117.7467 +US 89446 Winnemucca Nevada NV Humboldt 013 41.0764 -117.7602 +US 89310 Austin Nevada NV Lander 015 39.508 -117.0811 +US 89820 Battle Mountain Nevada NV Lander 015 40.622 -116.9554 +US 89001 Alamo Nevada NV Lincoln 017 37.3259 -115.308 +US 89008 Caliente Nevada NV Lincoln 017 37.6128 -114.5097 +US 89017 Hiko Nevada NV Lincoln 017 37.5926 -115.2262 +US 89042 Panaca Nevada NV Lincoln 017 37.744 -114.3222 +US 89043 Pioche Nevada NV Lincoln 017 37.8981 -114.3968 +US 89044 Henderson Nevada NV Lincoln County 017 35.9025 -115.1789 +US 89403 Dayton Nevada NV Lyon 019 39.2806 -119.5287 +US 89408 Fernley Nevada NV Lyon 019 39.6019 -119.235 +US 89428 Silver City Nevada NV Lyon 019 39.2652 -119.6388 +US 89429 Silver Springs Nevada NV Lyon 019 39.38 -119.2705 +US 89430 Smith Nevada NV Lyon 019 38.7733 -119.3029 +US 89444 Wellington Nevada NV Lyon 019 38.8447 -119.3523 +US 89447 Yerington Nevada NV Lyon 019 38.9866 -119.1596 +US 89415 Hawthorne Nevada NV Mineral 021 38.5347 -118.6411 +US 89416 Hawthorne Nevada NV Mineral County 021 38.5252 -118.627 +US 89420 Luning Nevada NV Mineral 021 38.4842 -118.424 +US 89422 Mina Nevada NV Mineral 021 38.387 -118.1096 +US 89427 Schurz Nevada NV Mineral 021 38.9575 -118.7756 +US 89003 Beatty Nevada NV Nye 023 36.8199 -116.6094 +US 89020 Amargosa Valley Nevada NV Nye 023 36.539 -116.5496 +US 89022 Manhattan Nevada NV Nye 023 38.7023 -116.31 +US 89023 Mercury Nevada NV Nye 023 37.5838 -116.5986 +US 89041 Pahrump Nevada NV Nye 023 36.6558 -116.0048 +US 89045 Round Mountain Nevada NV Nye 023 37.5838 -116.5986 +US 89048 Pahrump Nevada NV Nye 023 36.1661 -116.0038 +US 89049 Tonopah Nevada NV Nye 023 38.2626 -116.6248 +US 89060 Pahrump Nevada NV Nye 023 36.2645 -116.0393 +US 89061 Pahrump Nevada NV Nye 023 36.1184 -115.9407 +US 89409 Gabbs Nevada NV Nye 023 38.8802 -117.8686 +US 89418 Imlay Nevada NV Pershing 027 40.5484 -118.0344 +US 89419 Lovelock Nevada NV Pershing 027 40.1819 -118.4689 +US 89440 Virginia City Nevada NV Storey 029 39.2965 -119.6587 +US 89402 Crystal Bay Nevada NV Washoe 031 39.2395 -119.9711 +US 89405 Empire Nevada NV Washoe 031 40.6132 -119.3485 +US 89412 Gerlach Nevada NV Washoe 031 40.6525 -119.3565 +US 89424 Nixon Nevada NV Washoe 031 39.8272 -119.3605 +US 89431 Sparks Nevada NV Washoe 031 39.5473 -119.7556 +US 89432 Sparks Nevada NV Washoe 031 40.5412 -119.5869 +US 89433 Sun Valley Nevada NV Washoe 031 39.5955 -119.7754 +US 89434 Sparks Nevada NV Washoe 031 39.5502 -119.7178 +US 89435 Sparks Nevada NV Washoe 031 40.5412 -119.5869 +US 89436 Sparks Nevada NV Washoe 031 39.6269 -119.7081 +US 89439 Verdi Nevada NV Washoe 031 39.5165 -119.9833 +US 89441 Sparks Nevada NV Washoe County 031 39.6582 -119.6954 +US 89442 Wadsworth Nevada NV Washoe 031 39.6481 -119.2918 +US 89450 Incline Village Nevada NV Washoe 031 39.2564 -119.9464 +US 89451 Incline Village Nevada NV Washoe 031 39.2564 -119.9521 +US 89452 Incline Village Nevada NV Washoe 031 39.2591 -119.9566 +US 89494 Sparks Nevada NV Washoe County 031 39.5565 -119.7358 +US 89501 Reno Nevada NV Washoe 031 39.5268 -119.8113 +US 89502 Reno Nevada NV Washoe 031 39.4972 -119.7764 +US 89503 Reno Nevada NV Washoe 031 39.5354 -119.8374 +US 89504 Reno Nevada NV Washoe 031 40.5412 -119.5869 +US 89505 Reno Nevada NV Washoe 031 39.5224 -119.8353 +US 89506 Reno Nevada NV Washoe 031 39.6412 -119.8735 +US 89507 Reno Nevada NV Washoe 031 39.5423 -119.8164 +US 89508 Reno Nevada NV Washoe County 031 39.6781 -119.9383 +US 89509 Reno Nevada NV Washoe 031 39.498 -119.8239 +US 89510 Reno Nevada NV Washoe 031 39.7699 -119.6027 +US 89511 Reno Nevada NV Washoe 031 39.4151 -119.7668 +US 89512 Reno Nevada NV Washoe 031 39.5483 -119.7957 +US 89513 Reno Nevada NV Washoe 031 39.53 -119.81 +US 89515 Reno Nevada NV Washoe 031 40.5412 -119.5869 +US 89519 Reno Nevada NV Washoe County 031 39.4814 -119.8591 +US 89520 Reno Nevada NV Washoe 031 40.5412 -119.5869 +US 89521 Reno Nevada NV Washoe County 031 39.3809 -119.6859 +US 89523 Reno Nevada NV Washoe 031 39.5249 -119.9031 +US 89533 Reno Nevada NV Washoe 031 39.5439 -119.9061 +US 89550 Reno Nevada NV Washoe County 031 39.5387 -119.8225 +US 89555 Reno Nevada NV Washoe County 031 39.5246 -119.8125 +US 89557 Reno Nevada NV Washoe 031 40.5412 -119.5869 +US 89564 Reno Nevada NV Washoe 031 40.5412 -119.5869 +US 89570 Reno Nevada NV Washoe 031 40.5412 -119.5869 +US 89595 Reno Nevada NV Washoe 031 40.5412 -119.5869 +US 89599 Reno Nevada NV Washoe 031 40.5412 -119.5869 +US 89704 Washoe Valley Nevada NV Washoe 031 39.2669 -119.8174 +US 89301 Ely Nevada NV White Pine 033 39.3094 -114.878 +US 89311 Baker Nevada NV White Pine 033 38.9559 -114.2438 +US 89314 Duckwater Nevada NV White Pine 033 39.4029 -114.977 +US 89315 Ely Nevada NV White Pine 033 39.3326 -114.8245 +US 89317 Lund Nevada NV White Pine 033 38.8641 -115.0069 +US 89318 Mc Gill Nevada NV White Pine 033 39.4034 -114.7791 +US 89319 Ruth Nevada NV White Pine 033 39.3426 -114.8859 +US 89701 Carson City Nevada NV Carson City (city) 510 39.1507 -119.7459 +US 89702 Carson City Nevada NV Carson City (city) 510 39.1355 -119.7588 +US 89703 Carson City Nevada NV Carson City (city) 510 39.1704 -119.7782 +US 89706 Carson City Nevada NV Carson City (city) 510 39.2025 -119.7526 +US 89710 Carson City Nevada NV Carson City (city) 510 39.1678 -119.7764 +US 89711 Carson City Nevada NV Carson City (city) 510 39.1678 -119.7764 +US 89712 Carson City Nevada NV Carson City (city) 510 39.1678 -119.7764 +US 89713 Carson City Nevada NV Carson City (city) 510 39.1678 -119.7764 +US 89714 Carson City Nevada NV Carson City (city) 510 39.1678 -119.7764 +US 89721 Carson City Nevada NV Carson City (city) 510 39.1678 -119.7764 +US 12007 Alcove New York NY Albany 001 42.4561 -73.9277 +US 12009 Altamont New York NY Albany 001 42.7063 -74.0193 +US 12023 Berne New York NY Albany 001 42.6108 -74.1466 +US 12041 Clarksville New York NY Albany 001 42.562 -73.9573 +US 12045 Coeymans New York NY Albany 001 42.4757 -73.7977 +US 12046 Coeymans Hollow New York NY Albany 001 42.4865 -73.9206 +US 12047 Cohoes New York NY Albany 001 42.7754 -73.7124 +US 12054 Delmar New York NY Albany 001 42.6158 -73.8373 +US 12055 Dormansville New York NY Albany 001 42.6149 -73.9708 +US 12059 East Berne New York NY Albany 001 42.6191 -74.0555 +US 12067 Feura Bush New York NY Albany 001 42.555 -73.9237 +US 12077 Glenmont New York NY Albany 001 42.5971 -73.7959 +US 12084 Guilderland New York NY Albany 001 42.6973 -73.8975 +US 12085 Guilderland Center New York NY Albany 001 42.6948 -73.9053 +US 12107 Knox New York NY Albany 001 42.66 -74.1168 +US 12110 Latham New York NY Albany 001 42.7462 -73.763 +US 12111 Latham New York NY Albany 001 42.6149 -73.9708 +US 12120 Medusa New York NY Albany 001 42.4515 -74.1315 +US 12128 Newtonville New York NY Albany 001 42.725 -73.7643 +US 12143 Ravena New York NY Albany 001 42.4754 -73.822 +US 12147 Rensselaerville New York NY Albany 001 42.5133 -74.1474 +US 12158 Selkirk New York NY Albany 001 42.5486 -73.8129 +US 12159 Slingerlands New York NY Albany 001 42.6485 -73.8711 +US 12161 South Bethlehem New York NY Albany 001 42.521 -73.8519 +US 12183 Troy New York NY Albany 001 42.746 -73.6943 +US 12186 Voorheesville New York NY Albany 001 42.6431 -73.9448 +US 12189 Watervliet New York NY Albany 001 42.7298 -73.7123 +US 12193 Westerlo New York NY Albany 001 42.5156 -74.0394 +US 12201 Albany New York NY Albany 001 42.6149 -73.9708 +US 12202 Albany New York NY Albany 001 42.6413 -73.7641 +US 12203 Albany New York NY Albany 001 42.7003 -73.8575 +US 12204 Albany New York NY Albany 001 42.6847 -73.7354 +US 12205 Albany New York NY Albany 001 42.7198 -73.8207 +US 12206 Albany New York NY Albany 001 42.6683 -73.7744 +US 12207 Albany New York NY Albany 001 42.656 -73.7508 +US 12208 Albany New York NY Albany 001 42.656 -73.7964 +US 12209 Albany New York NY Albany 001 42.6417 -73.7854 +US 12210 Albany New York NY Albany 001 42.6568 -73.7605 +US 12211 Albany New York NY Albany 001 42.713 -73.7739 +US 12212 Albany New York NY Albany 001 42.7168 -73.8104 +US 12214 Albany New York NY Albany 001 42.6149 -73.9708 +US 12220 Albany New York NY Albany 001 42.6149 -73.9708 +US 12222 Albany New York NY Albany 001 42.6853 -73.8253 +US 12223 Albany New York NY Albany 001 42.6149 -73.9708 +US 12224 Albany New York NY Albany 001 42.6149 -73.9708 +US 12225 Albany New York NY Albany 001 42.6149 -73.9708 +US 12226 Albany New York NY Albany 001 42.6149 -73.9708 +US 12227 Albany New York NY Albany 001 42.6149 -73.9708 +US 12228 Albany New York NY Albany 001 42.6149 -73.9708 +US 12229 Albany New York NY Albany 001 42.6149 -73.9708 +US 12230 Albany New York NY Albany 001 42.6149 -73.9708 +US 12231 Albany New York NY Albany 001 42.6149 -73.9708 +US 12232 Albany New York NY Albany 001 42.6149 -73.9708 +US 12233 Albany New York NY Albany 001 42.6149 -73.9708 +US 12234 Albany New York NY Albany 001 42.6149 -73.9708 +US 12235 Albany New York NY Albany 001 42.6149 -73.9708 +US 12236 Albany New York NY Albany 001 42.6149 -73.9708 +US 12237 Albany New York NY Albany 001 42.6149 -73.9708 +US 12238 Albany New York NY Albany 001 42.6149 -73.9708 +US 12239 Albany New York NY Albany 001 42.6149 -73.9708 +US 12240 Albany New York NY Albany 001 42.6149 -73.9708 +US 12241 Albany New York NY Albany 001 42.6149 -73.9708 +US 12242 Albany New York NY Albany 001 42.6149 -73.9708 +US 12243 Albany New York NY Albany 001 42.6149 -73.9708 +US 12244 Albany New York NY Albany 001 42.6149 -73.9708 +US 12245 Albany New York NY Albany 001 42.6149 -73.9708 +US 12246 Albany New York NY Albany 001 42.6471 -73.7503 +US 12247 Albany New York NY Albany 001 42.6149 -73.9708 +US 12248 Albany New York NY Albany 001 42.6149 -73.9708 +US 12249 Albany New York NY Albany 001 42.6149 -73.9708 +US 12250 Albany New York NY Albany 001 42.6149 -73.9708 +US 12252 Albany New York NY Albany 001 42.6149 -73.9708 +US 12255 Albany New York NY Albany 001 42.6149 -73.9708 +US 12256 Albany New York NY Albany 001 42.6149 -73.9708 +US 12257 Albany New York NY Albany 001 42.6149 -73.9708 +US 12260 Albany New York NY Albany 001 42.6149 -73.9708 +US 12261 Albany New York NY Albany 001 42.6149 -73.9708 +US 12262 Albany New York NY Albany 001 42.6149 -73.9708 +US 12288 Albany New York NY Albany 001 42.6149 -73.9708 +US 12469 Preston Hollow New York NY Albany 001 42.4563 -74.242 +US 12753 Lew Beach New York NY Albany County 001 42.0165 -74.7307 +US 14029 Centerville New York NY Allegany 003 42.4743 -78.2474 +US 14707 Allentown New York NY Allegany 003 42.0737 -78.0594 +US 14708 Alma New York NY Allegany 003 42.0169 -78.04 +US 14709 Angelica New York NY Allegany 003 42.3263 -77.9947 +US 14711 Belfast New York NY Allegany 003 42.32 -78.0943 +US 14714 Black Creek New York NY Allegany 003 42.2855 -78.2312 +US 14715 Bolivar New York NY Allegany 003 42.0704 -78.1448 +US 14717 Caneadea New York NY Allegany 003 42.364 -78.184 +US 14721 Ceres New York NY Allegany 003 42.0137 -78.2648 +US 14727 Cuba New York NY Allegany 003 42.1882 -78.2751 +US 14735 Fillmore New York NY Allegany 003 42.4508 -78.1043 +US 14739 Friendship New York NY Allegany 003 42.1907 -78.1359 +US 14744 Houghton New York NY Allegany 003 42.4228 -78.2063 +US 14745 Hume New York NY Allegany 003 42.4777 -78.1403 +US 14754 Little Genesee New York NY Allegany 003 42.0319 -78.2097 +US 14774 Richburg New York NY Allegany 003 42.1144 -78.1681 +US 14776 Rossburg New York NY Allegany 003 42.26 -78.0161 +US 14777 Rushford New York NY Allegany 003 42.3974 -78.2323 +US 14786 West Clarksville New York NY Allegany 003 42.1227 -78.2213 +US 14802 Alfred New York NY Allegany 003 42.2534 -77.7893 +US 14803 Alfred Station New York NY Allegany 003 42.2558 -77.7781 +US 14804 Almond New York NY Allegany 003 42.316 -77.778 +US 14806 Andover New York NY Allegany 003 42.1575 -77.792 +US 14813 Belmont New York NY Allegany 003 42.2334 -78.011 +US 14822 Canaseraga New York NY Allegany 003 42.4585 -77.7954 +US 14880 Scio New York NY Allegany 003 42.1697 -77.99 +US 14884 Swain New York NY Allegany 003 42.4773 -77.889 +US 14895 Wellsville New York NY Allegany 003 42.1108 -77.9419 +US 14896 West Danby New York NY Allegany County 003 42.3188 -76.5256 +US 14897 Whitesville New York NY Allegany 003 42.0456 -77.8106 +US 10400 Bronx New York NY Bronx 005 40.849 -73.8772 +US 10451 Bronx New York NY Bronx 005 40.8222 -73.9217 +US 10452 Bronx New York NY Bronx 005 40.8376 -73.9216 +US 10453 Bronx New York NY Bronx 005 40.852 -73.9129 +US 10454 Bronx New York NY Bronx 005 40.8085 -73.9198 +US 10455 Bronx New York NY Bronx 005 40.8153 -73.9072 +US 10456 Bronx New York NY Bronx 005 40.8316 -73.9099 +US 10457 Bronx New York NY Bronx 005 40.8486 -73.8999 +US 10458 Bronx New York NY Bronx 005 40.8633 -73.8895 +US 10459 Bronx New York NY Bronx 005 40.8247 -73.894 +US 10460 Bronx New York NY Bronx 005 40.8409 -73.8794 +US 10461 Bronx New York NY Bronx 005 40.8465 -73.841 +US 10462 Bronx New York NY Bronx 005 40.8434 -73.8602 +US 10463 Bronx New York NY Bronx 005 40.8798 -73.9067 +US 10464 Bronx New York NY Bronx 005 40.8469 -73.7874 +US 10465 Bronx New York NY Bronx 005 40.8261 -73.8196 +US 10466 Bronx New York NY Bronx 005 40.8904 -73.8503 +US 10467 Bronx New York NY Bronx 005 40.8737 -73.8712 +US 10468 Bronx New York NY Bronx 005 40.8662 -73.9003 +US 10469 Bronx New York NY Bronx 005 40.8702 -73.8495 +US 10470 Bronx New York NY Bronx 005 40.9 -73.8622 +US 10471 Bronx New York NY Bronx 005 40.9011 -73.9053 +US 10472 Bronx New York NY Bronx 005 40.8295 -73.8716 +US 10473 Bronx New York NY Bronx 005 40.8194 -73.8606 +US 10474 Bronx New York NY Bronx 005 40.8139 -73.8841 +US 10475 Bronx New York NY Bronx 005 40.8729 -73.8278 +US 10499 Bronx New York NY Bronx 005 40.8515 -73.8409 +US 13737 Bible School Park New York NY Broome 007 42.0805 -76.0973 +US 13744 Castle Creek New York NY Broome 007 42.2568 -75.9087 +US 13745 Chenango Bridge New York NY Broome 007 42.1738 -75.8728 +US 13746 Chenango Forks New York NY Broome 007 42.2778 -75.8462 +US 13748 Conklin New York NY Broome 007 42.0454 -75.8076 +US 13749 Corbettsville New York NY Broome 007 42.2067 -75.7449 +US 13754 Deposit New York NY Broome 007 42.0666 -75.4287 +US 13760 Endicott New York NY Broome 007 42.1506 -76.0551 +US 13761 Endicott New York NY Broome 007 42.2067 -75.7449 +US 13762 Endwell New York NY Broome 007 42.2067 -75.7449 +US 13763 Endicott New York NY Broome 007 42.2067 -75.7449 +US 13777 Glen Aubrey New York NY Broome 007 42.2573 -75.9805 +US 13787 Harpursville New York NY Broome 007 42.1823 -75.6545 +US 13790 Johnson City New York NY Broome 007 42.1267 -75.9685 +US 13794 Killawog New York NY Broome 007 42.4028 -76.0366 +US 13795 Kirkwood New York NY Broome 007 42.0695 -75.7967 +US 13797 Lisle New York NY Broome 007 42.3409 -76.0302 +US 13802 Maine New York NY Broome 007 42.2538 -76.0464 +US 13813 Nineveh New York NY Broome 007 42.1625 -75.5484 +US 13826 Ouaquaga New York NY Broome 007 42.1121 -75.6396 +US 13833 Port Crane New York NY Broome 007 42.1958 -75.7591 +US 13848 Tunnel New York NY Broome 007 42.2147 -75.7277 +US 13850 Vestal New York NY Broome 007 42.0771 -76.0118 +US 13851 Vestal New York NY Broome 007 42.2067 -75.7449 +US 13862 Whitney Point New York NY Broome 007 42.3384 -75.9522 +US 13865 Windsor New York NY Broome 007 42.0745 -75.6728 +US 13901 Binghamton New York NY Broome 007 42.1463 -75.8865 +US 13902 Binghamton New York NY Broome 007 42.1054 -75.8876 +US 13903 Binghamton New York NY Broome 007 42.0811 -75.8977 +US 13904 Binghamton New York NY Broome 007 42.1171 -75.8653 +US 13905 Binghamton New York NY Broome 007 42.1151 -75.9309 +US 10951 Rockland M P C New York NY Cattaraugus County 009 41.1138 -74.0789 +US 14041 Dayton New York NY Cattaraugus 009 42.4086 -78.9844 +US 14042 Delevan New York NY Cattaraugus 009 42.4926 -78.4793 +US 14060 Farmersville Station New York NY Cattaraugus 009 42.4457 -78.3412 +US 14065 Freedom New York NY Cattaraugus 009 42.4897 -78.3501 +US 14070 Gowanda New York NY Cattaraugus 009 42.4712 -78.9339 +US 14101 Machias New York NY Cattaraugus 009 42.4083 -78.5059 +US 14129 Perrysburg New York NY Cattaraugus 009 42.4723 -78.9981 +US 14133 Sandusky New York NY Cattaraugus 009 42.4891 -78.367 +US 14138 South Dayton New York NY Cattaraugus 009 42.3718 -79.0501 +US 14168 Versailles New York NY Cattaraugus 009 42.5093 -78.9995 +US 14171 West Valley New York NY Cattaraugus 009 42.4315 -78.628 +US 14173 Yorkshire New York NY Cattaraugus 009 42.5247 -78.4755 +US 14706 Allegany New York NY Cattaraugus 009 42.0918 -78.4999 +US 14719 Cattaraugus New York NY Cattaraugus 009 42.3333 -78.8885 +US 14726 Conewango Valley New York NY Cattaraugus 009 42.2625 -79.022 +US 14729 East Otto New York NY Cattaraugus 009 42.3971 -78.7432 +US 14730 East Randolph New York NY Cattaraugus 009 42.1747 -78.9473 +US 14731 Ellicottville New York NY Cattaraugus 009 42.2959 -78.6606 +US 14737 Franklinville New York NY Cattaraugus 009 42.3388 -78.44 +US 14741 Great Valley New York NY Cattaraugus 009 42.2083 -78.6208 +US 14743 Hinsdale New York NY Cattaraugus 009 42.1979 -78.4159 +US 14748 Kill Buck New York NY Cattaraugus 009 42.145 -78.6466 +US 14749 Knapp Creek New York NY Cattaraugus County 009 42.0069 -78.506 +US 14751 Leon New York NY Cattaraugus 009 42.2983 -79.0062 +US 14753 Limestone New York NY Cattaraugus 009 42.0639 -78.632 +US 14755 Little Valley New York NY Cattaraugus 009 42.2541 -78.8093 +US 14760 Olean New York NY Cattaraugus 009 42.0821 -78.426 +US 14766 Otto New York NY Cattaraugus 009 42.3575 -78.8073 +US 14770 Portville New York NY Cattaraugus 009 42.0273 -78.3314 +US 14772 Randolph New York NY Cattaraugus 009 42.1631 -78.96 +US 14778 Saint Bonaventure New York NY Cattaraugus 009 42.2701 -78.6847 +US 14779 Salamanca New York NY Cattaraugus 009 42.1604 -78.7304 +US 14783 Steamburg New York NY Cattaraugus 009 42.082 -78.9177 +US 14788 Westons Mills New York NY Cattaraugus 009 42.0621 -78.378 +US 13021 Auburn New York NY Cayuga 011 42.93 -76.5626 +US 13022 Auburn New York NY Cayuga 011 43.1634 -76.5096 +US 13024 Auburn New York NY Cayuga 011 43.1634 -76.5096 +US 13026 Aurora New York NY Cayuga 011 42.7472 -76.6775 +US 13033 Cato New York NY Cayuga 011 43.1794 -76.5648 +US 13034 Cayuga New York NY Cayuga 011 42.9142 -76.7024 +US 13071 Genoa New York NY Cayuga 011 42.6746 -76.5418 +US 13081 King Ferry New York NY Cayuga 011 42.6635 -76.6216 +US 13092 Locke New York NY Cayuga 011 42.6558 -76.4154 +US 13111 Martville New York NY Cayuga 011 43.2661 -76.6289 +US 13113 Meridian New York NY Cayuga 011 43.0891 -76.6217 +US 13117 Montezuma New York NY Cayuga 011 43.0023 -76.7047 +US 13118 Moravia New York NY Cayuga 011 42.7355 -76.399 +US 13130 Owasco New York NY Cayuga County 011 42.8548 -76.4629 +US 13139 Poplar Ridge New York NY Cayuga 011 42.7421 -76.6285 +US 13140 Port Byron New York NY Cayuga 011 43.0427 -76.6449 +US 13147 Scipio Center New York NY Cayuga 011 42.7708 -76.5862 +US 13150 Sennett New York NY Cayuga County 011 42.9961 -76.5299 +US 13156 Sterling New York NY Cayuga 011 43.3296 -76.6747 +US 13160 Union Springs New York NY Cayuga 011 42.8335 -76.674 +US 13166 Weedsport New York NY Cayuga 011 43.0489 -76.5425 +US 14048 Dunkirk New York NY Chautauqua 013 42.4877 -79.3283 +US 14062 Forestville New York NY Chautauqua 013 42.4482 -79.1607 +US 14063 Fredonia New York NY Chautauqua 013 42.4333 -79.3339 +US 14081 Irving New York NY Chautauqua 013 42.5739 -79.0596 +US 14135 Sheridan New York NY Chautauqua 013 42.489 -79.239 +US 14136 Silver Creek New York NY Chautauqua 013 42.5357 -79.1628 +US 14166 Van Buren Point New York NY Chautauqua 013 42.4511 -79.4154 +US 14701 Jamestown New York NY Chautauqua 013 42.0928 -79.244 +US 14702 Jamestown New York NY Chautauqua 013 42.0817 -79.2949 +US 14703 Jamestown New York NY Chautauqua 013 42.3425 -79.4109 +US 14704 Jamestown New York NY Chautauqua 013 42.3425 -79.4109 +US 14710 Ashville New York NY Chautauqua 013 42.1084 -79.4056 +US 14712 Bemus Point New York NY Chautauqua 013 42.1513 -79.3581 +US 14716 Brocton New York NY Chautauqua 013 42.394 -79.4344 +US 14718 Cassadaga New York NY Chautauqua 013 42.3504 -79.2993 +US 14720 Celoron New York NY Chautauqua 013 42.1059 -79.2791 +US 14722 Chautauqua New York NY Chautauqua 013 42.1875 -79.4505 +US 14723 Cherry Creek New York NY Chautauqua 013 42.3127 -79.1203 +US 14724 Clymer New York NY Chautauqua 013 42.0557 -79.6685 +US 14728 Dewittville New York NY Chautauqua 013 42.2394 -79.4193 +US 14732 Ellington New York NY Chautauqua 013 42.2291 -79.1135 +US 14733 Falconer New York NY Chautauqua 013 42.1239 -79.1895 +US 14736 Findley Lake New York NY Chautauqua 013 42.1204 -79.7349 +US 14738 Frewsburg New York NY Chautauqua 013 42.0528 -79.1318 +US 14740 Gerry New York NY Chautauqua 013 42.2147 -79.1649 +US 14742 Greenhurst New York NY Chautauqua 013 42.1205 -79.3096 +US 14747 Kennedy New York NY Chautauqua 013 42.1508 -79.0964 +US 14750 Lakewood New York NY Chautauqua 013 42.0973 -79.3291 +US 14752 Lily Dale New York NY Chautauqua 013 42.3524 -79.3235 +US 14756 Maple Springs New York NY Chautauqua 013 42.1981 -79.4174 +US 14757 Mayville New York NY Chautauqua 013 42.2409 -79.4963 +US 14758 Niobe New York NY Chautauqua 013 42.3425 -79.4109 +US 14759 North Clymer New York NY Chautauqua County 013 42.075 -79.5726 +US 14767 Panama New York NY Chautauqua 013 42.057 -79.4815 +US 14769 Portland New York NY Chautauqua 013 42.3858 -79.4589 +US 14775 Ripley New York NY Chautauqua 013 42.2482 -79.7121 +US 14781 Sherman New York NY Chautauqua 013 42.1631 -79.5857 +US 14782 Sinclairville New York NY Chautauqua 013 42.2455 -79.2673 +US 14784 Stockton New York NY Chautauqua 013 42.3182 -79.3758 +US 14785 Stow New York NY Chautauqua 013 42.1557 -79.4122 +US 14787 Westfield New York NY Chautauqua 013 42.322 -79.5726 +US 14814 Big Flats New York NY Chemung 015 42.1455 -76.9527 +US 14816 Breesport New York NY Chemung 015 42.1939 -76.7361 +US 14825 Chemung New York NY Chemung 015 42.0392 -76.6202 +US 14838 Erin New York NY Chemung 015 42.1859 -76.6819 +US 14844 Horseheads New York NY Chemung 015 42.1607 -76.8785 +US 14845 Horseheads New York NY Chemung 015 42.1805 -76.8345 +US 14861 Lowman New York NY Chemung 015 42.0694 -76.693 +US 14864 Millport New York NY Chemung 015 42.2581 -76.8392 +US 14871 Pine City New York NY Chemung 015 42.0419 -76.8815 +US 14872 Pine Valley New York NY Chemung 015 42.2348 -76.8652 +US 14889 Van Etten New York NY Chemung 015 42.2085 -76.5717 +US 14894 Wellsburg New York NY Chemung 015 42.0273 -76.7723 +US 14901 Elmira New York NY Chemung 015 42.1008 -76.812 +US 14902 Elmira New York NY Chemung 015 42.1473 -76.7509 +US 14903 Elmira New York NY Chemung 015 42.1198 -76.8877 +US 14904 Elmira New York NY Chemung 015 42.0729 -76.8037 +US 14905 Elmira New York NY Chemung 015 42.0869 -76.8397 +US 14925 Elmira New York NY Chemung 015 42.1473 -76.7509 +US 14975 Elmira New York NY Chemung County 015 42.0897 -76.8078 +US 13124 North Pitcher New York NY Chenango 017 42.6372 -75.8164 +US 13129 Georgetown New York NY Chenango 017 42.7127 -75.7314 +US 13136 Pitcher New York NY Chenango 017 42.5969 -75.8465 +US 13155 South Otselic New York NY Chenango 017 42.6626 -75.7669 +US 13332 Earlville New York NY Chenango 017 42.7197 -75.5589 +US 13411 New Berlin New York NY Chenango 017 42.6224 -75.3474 +US 13460 Sherburne New York NY Chenango 017 42.6859 -75.483 +US 13464 Smyrna New York NY Chenango 017 42.6896 -75.6121 +US 13730 Afton New York NY Chenango 017 42.2417 -75.5366 +US 13733 Bainbridge New York NY Chenango 017 42.312 -75.4894 +US 13758 East Pharsalia New York NY Chenango 017 42.5835 -75.7219 +US 13778 Greene New York NY Chenango 017 42.3401 -75.7342 +US 13780 Guilford New York NY Chenango 017 42.4269 -75.4823 +US 13801 Mc Donough New York NY Chenango 017 42.5068 -75.7623 +US 13809 Mount Upton New York NY Chenango 017 42.4081 -75.4003 +US 13814 North Norwich New York NY Chenango 017 42.6036 -75.5282 +US 13815 Norwich New York NY Chenango 017 42.5414 -75.5274 +US 13830 Oxford New York NY Chenango 017 42.4379 -75.5673 +US 13832 Plymouth New York NY Chenango 017 42.6336 -75.6172 +US 13841 Smithville Flats New York NY Chenango 017 42.3989 -75.8237 +US 13843 South New Berlin New York NY Chenango 017 42.5306 -75.3525 +US 13844 South Plymouth New York NY Chenango 017 42.6053 -75.633 +US 12901 Plattsburgh New York NY Clinton 019 44.6927 -73.466 +US 12903 Plattsburgh New York NY Clinton 019 44.6854 -73.4474 +US 12910 Altona New York NY Clinton 019 44.8816 -73.6408 +US 12911 Keeseville New York NY Clinton 019 44.5281 -73.4719 +US 12912 Au Sable Forks New York NY Clinton 019 44.4499 -73.6857 +US 12918 Cadyville New York NY Clinton 019 44.6862 -73.6702 +US 12919 Champlain New York NY Clinton 019 44.9773 -73.4466 +US 12921 Chazy New York NY Clinton 019 44.8884 -73.4501 +US 12923 Churubusco New York NY Clinton 019 44.9432 -73.9355 +US 12924 Keeseville New York NY Clinton 019 44.4777 -73.5843 +US 12929 Dannemora New York NY Clinton 019 44.72 -73.7192 +US 12933 Ellenburg New York NY Clinton 019 44.882 -73.9633 +US 12934 Ellenburg Center New York NY Clinton 019 44.8444 -73.8685 +US 12935 Ellenburg Depot New York NY Clinton 019 44.9163 -73.7876 +US 12952 Lyon Mountain New York NY Clinton 019 44.7255 -73.9195 +US 12955 Lyon Mountain New York NY Clinton 019 44.8043 -73.973 +US 12958 Mooers New York NY Clinton 019 44.9592 -73.5834 +US 12959 Mooers Forks New York NY Clinton 019 44.9602 -73.673 +US 12962 Morrisonville New York NY Clinton 019 44.6894 -73.5772 +US 12972 Peru New York NY Clinton 019 44.5851 -73.5293 +US 12978 Redford New York NY Clinton 019 44.6164 -73.8087 +US 12979 Rouses Point New York NY Clinton 019 44.9884 -73.3691 +US 12981 Saranac New York NY Clinton 019 44.7032 -73.7481 +US 12985 Schuyler Falls New York NY Clinton 019 44.5882 -73.6895 +US 12992 West Chazy New York NY Clinton 019 44.797 -73.5112 +US 12017 Austerlitz New York NY Columbia 021 42.3223 -73.455 +US 12029 Canaan New York NY Columbia 021 42.4132 -73.4159 +US 12037 Chatham New York NY Columbia 021 42.3496 -73.5873 +US 12050 Columbiaville New York NY Columbia 021 42.3172 -73.7486 +US 12060 East Chatham New York NY Columbia 021 42.433 -73.4903 +US 12075 Ghent New York NY Columbia 021 42.3036 -73.6486 +US 12106 Kinderhook New York NY Columbia 021 42.3767 -73.7183 +US 12115 Malden Bridge New York NY Columbia 021 42.4725 -73.5807 +US 12125 New Lebanon New York NY Columbia 021 42.4759 -73.3773 +US 12130 Niverville New York NY Columbia 021 42.44 -73.6663 +US 12132 North Chatham New York NY Columbia 021 42.4705 -73.63 +US 12136 Old Chatham New York NY Columbia 021 42.4357 -73.5545 +US 12165 Spencertown New York NY Columbia 021 42.3091 -73.5008 +US 12172 Stottville New York NY Columbia 021 42.2857 -73.7335 +US 12173 Stuyvesant New York NY Columbia 021 42.3596 -73.7613 +US 12174 Stuyvesant Falls New York NY Columbia 021 42.344 -73.7348 +US 12184 Valatie New York NY Columbia 021 42.4321 -73.6683 +US 12195 West Lebanon New York NY Columbia 021 42.4794 -73.4748 +US 12502 Ancram New York NY Columbia 021 42.0851 -73.6424 +US 12503 Ancramdale New York NY Columbia 021 42.0381 -73.5819 +US 12513 Claverack New York NY Columbia 021 42.2069 -73.6946 +US 12516 Copake New York NY Columbia 021 42.1113 -73.5526 +US 12517 Copake Falls New York NY Columbia 021 42.1367 -73.5108 +US 12521 Craryville New York NY Columbia 021 42.176 -73.6571 +US 12523 Elizaville New York NY Columbia 021 42.0902 -73.7818 +US 12526 Germantown New York NY Columbia 021 42.1219 -73.8625 +US 12529 Hillsdale New York NY Columbia 021 42.1868 -73.5483 +US 12530 Hollowville New York NY Columbia 021 42.211 -73.687 +US 12534 Hudson New York NY Columbia 021 42.247 -73.7552 +US 12541 Livingston New York NY Columbia 021 42.1421 -73.7574 +US 12544 Mellenville New York NY Columbia 021 42.2596 -73.668 +US 12565 Philmont New York NY Columbia 021 42.2485 -73.6463 +US 12593 West Copake New York NY Columbia 021 42.244 -73.6411 +US 13040 Cincinnatus New York NY Cortland 023 42.5385 -75.903 +US 13045 Cortland New York NY Cortland 023 42.5952 -76.1857 +US 13050 Cuyler New York NY Cortland County 023 42.7365 -75.9403 +US 13055 East Freetown New York NY Cortland County 023 42.5693 -75.9914 +US 13056 East Homer New York NY Cortland 023 42.6772 -76.1052 +US 13077 Homer New York NY Cortland 023 42.6726 -76.1878 +US 13087 Little York New York NY Cortland 023 42.707 -76.1561 +US 13101 Mc Graw New York NY Cortland 023 42.5948 -76.082 +US 13141 Preble New York NY Cortland 023 42.795 -76.2141 +US 13158 Truxton New York NY Cortland 023 42.7085 -76.0189 +US 13738 Blodgett Mills New York NY Cortland 023 42.5673 -76.1238 +US 13784 Harford New York NY Cortland 023 42.4311 -76.1593 +US 13803 Marathon New York NY Cortland 023 42.4527 -76.0395 +US 13863 Willet New York NY Cortland 023 42.452 -75.9014 +US 11406 Jamaica New York NY Delaware County 025 40.6913 -73.8059 +US 12167 Stamford New York NY Delaware 025 42.4174 -74.6098 +US 12406 Arkville New York NY Delaware 025 42.1417 -74.5721 +US 12421 Denver New York NY Delaware 025 42.2522 -74.5407 +US 12430 Fleischmanns New York NY Delaware 025 42.1772 -74.5473 +US 12434 Grand Gorge New York NY Delaware 025 42.3874 -74.5312 +US 12438 Halcottsville New York NY Delaware 025 42.2079 -74.6012 +US 12455 Margaretville New York NY Delaware 025 42.1852 -74.6178 +US 12459 New Kingston New York NY Delaware 025 42.2094 -74.6837 +US 12474 Roxbury New York NY Delaware 025 42.2957 -74.5631 +US 13731 Andes New York NY Delaware 025 42.1569 -74.7887 +US 13739 Bloomville New York NY Delaware 025 42.3522 -74.8071 +US 13740 Bovina Center New York NY Delaware 025 42.2709 -74.7661 +US 13750 Davenport New York NY Delaware 025 42.4711 -74.8357 +US 13751 Davenport Center New York NY Delaware 025 42.4508 -74.9013 +US 13752 De Lancey New York NY Delaware 025 42.189 -74.9229 +US 13753 Delhi New York NY Delaware 025 42.2937 -74.9207 +US 13755 Downsville New York NY Delaware 025 42.0716 -75.0152 +US 13756 East Branch New York NY Delaware 025 42.0039 -75.1226 +US 13757 East Meredith New York NY Delaware 025 42.4101 -74.8987 +US 13774 Fishs Eddy New York NY Delaware 025 41.9654 -75.1594 +US 13775 Franklin New York NY Delaware 025 42.3421 -75.1485 +US 13782 Hamden New York NY Delaware 025 42.1787 -74.9984 +US 13783 Hancock New York NY Delaware 025 41.9914 -75.2647 +US 13786 Harpersfield New York NY Delaware 025 42.4499 -74.6871 +US 13788 Hobart New York NY Delaware 025 42.3594 -74.6759 +US 13804 Masonville New York NY Delaware 025 42.2102 -75.3739 +US 13806 Meridale New York NY Delaware 025 42.3734 -74.965 +US 13837 Shinhopple New York NY Delaware 025 42.183 -74.9256 +US 13838 Sidney New York NY Delaware 025 42.3074 -75.3908 +US 13839 Sidney Center New York NY Delaware 025 42.2441 -75.2871 +US 13842 South Kortright New York NY Delaware 025 42.377 -74.7259 +US 13846 Treadwell New York NY Delaware 025 42.363 -75.0588 +US 13847 Trout Creek New York NY Delaware 025 42.183 -74.9256 +US 13856 Walton New York NY Delaware 025 42.1756 -75.1532 +US 13860 West Davenport New York NY Delaware 025 42.183 -74.9256 +US 12501 Amenia New York NY Dutchess 027 41.8447 -73.5542 +US 12504 Annandale On Hudson New York NY Dutchess 027 42.0354 -73.9092 +US 12506 Bangall New York NY Dutchess 027 41.7599 -73.7437 +US 12507 Barrytown New York NY Dutchess 027 42.0005 -73.9199 +US 12508 Beacon New York NY Dutchess 027 41.5097 -73.9634 +US 12510 Billings New York NY Dutchess 027 41.7599 -73.7437 +US 12511 Castle Point New York NY Dutchess 027 41.7599 -73.7437 +US 12512 Chelsea New York NY Dutchess 027 41.5528 -73.9682 +US 12514 Clinton Corners New York NY Dutchess 027 41.8693 -73.7659 +US 12522 Dover Plains New York NY Dutchess 027 41.7351 -73.587 +US 12524 Fishkill New York NY Dutchess 027 41.5404 -73.8979 +US 12527 Glenham New York NY Dutchess 027 41.5202 -73.9333 +US 12531 Holmes New York NY Dutchess 027 41.5325 -73.6628 +US 12533 Hopewell Junction New York NY Dutchess 027 41.5603 -73.7939 +US 12537 Hughsonville New York NY Dutchess 027 41.5824 -73.9363 +US 12538 Hyde Park New York NY Dutchess 027 41.7887 -73.9063 +US 12540 Lagrangeville New York NY Dutchess 027 41.6615 -73.745 +US 12545 Millbrook New York NY Dutchess 027 41.7803 -73.6885 +US 12546 Millerton New York NY Dutchess 027 41.9536 -73.5287 +US 12564 Pawling New York NY Dutchess 027 41.5749 -73.5948 +US 12567 Pine Plains New York NY Dutchess 027 41.9896 -73.6602 +US 12569 Pleasant Valley New York NY Dutchess 027 41.747 -73.8143 +US 12570 Poughquag New York NY Dutchess 027 41.6194 -73.6783 +US 12571 Red Hook New York NY Dutchess 027 42.0064 -73.8546 +US 12572 Rhinebeck New York NY Dutchess 027 41.9272 -73.8888 +US 12574 Rhinecliff New York NY Dutchess 027 41.9151 -73.9517 +US 12578 Salt Point New York NY Dutchess 027 41.805 -73.8013 +US 12580 Staatsburg New York NY Dutchess 027 41.8502 -73.8988 +US 12581 Stanfordville New York NY Dutchess 027 41.8877 -73.6945 +US 12582 Stormville New York NY Dutchess 027 41.5512 -73.7255 +US 12583 Tivoli New York NY Dutchess 027 42.0579 -73.9025 +US 12585 Verbank New York NY Dutchess 027 41.7227 -73.7184 +US 12590 Wappingers Falls New York NY Dutchess 027 41.595 -73.8876 +US 12592 Wassaic New York NY Dutchess 027 41.7759 -73.5544 +US 12594 Wingdale New York NY Dutchess 027 41.6538 -73.5556 +US 12600 Poughkeepsie New York NY Dutchess County 027 41.6952 -73.9108 +US 12601 Poughkeepsie New York NY Dutchess 027 41.7035 -73.9117 +US 12602 Poughkeepsie New York NY Dutchess 027 41.7599 -73.7437 +US 12603 Poughkeepsie New York NY Dutchess 027 41.6907 -73.8621 +US 12604 Poughkeepsie New York NY Dutchess 027 41.7599 -73.7437 +US 11408 Jamaica New York NY Erie County 029 40.6914 -73.8061 +US 14001 Akron New York NY Erie 029 43.0249 -78.5084 +US 14004 Alden New York NY Erie 029 42.8984 -78.5257 +US 14006 Angola New York NY Erie 029 42.6366 -79.0497 +US 14010 Athol Springs New York NY Erie 029 42.7684 -78.8871 +US 14025 Boston New York NY Erie 029 42.6314 -78.7391 +US 14026 Bowmansville New York NY Erie 029 42.941 -78.688 +US 14027 Brant New York NY Erie 029 42.5707 -79.0308 +US 14030 Chaffee New York NY Erie 029 42.5605 -78.5025 +US 14031 Clarence New York NY Erie 029 42.981 -78.6162 +US 14032 Clarence Center New York NY Erie 029 43.0362 -78.639 +US 14033 Colden New York NY Erie 029 42.6551 -78.6921 +US 14034 Collins New York NY Erie 029 42.5001 -78.893 +US 14035 Collins Center New York NY Erie 029 42.4906 -78.8499 +US 14038 Crittenden New York NY Erie 029 42.9473 -78.4744 +US 14043 Depew New York NY Erie 029 42.905 -78.7041 +US 14047 Derby New York NY Erie 029 42.6974 -78.9834 +US 14051 East Amherst New York NY Erie 029 43.0429 -78.6988 +US 14052 East Aurora New York NY Erie 029 42.7701 -78.602 +US 14055 East Concord New York NY Erie 029 42.5466 -78.611 +US 14057 Eden New York NY Erie 029 42.6506 -78.8781 +US 14059 Elma New York NY Erie 029 42.834 -78.6343 +US 14061 Farnham New York NY Erie 029 42.5946 -79.084 +US 14068 Getzville New York NY Erie 029 43.024 -78.7532 +US 14069 Glenwood New York NY Erie 029 42.6001 -78.6386 +US 14072 Grand Island New York NY Erie 029 43.0183 -78.9591 +US 14075 Hamburg New York NY Erie 029 42.7334 -78.8389 +US 14080 Holland New York NY Erie 029 42.6396 -78.5439 +US 14085 Lake View New York NY Erie 029 42.7215 -78.9327 +US 14086 Lancaster New York NY Erie 029 42.9017 -78.6631 +US 14091 Lawtons New York NY Erie 029 42.5404 -78.9212 +US 14102 Marilla New York NY Erie 029 42.8332 -78.5587 +US 14110 North Boston New York NY Erie 029 42.7684 -78.8871 +US 14111 North Collins New York NY Erie 029 42.5896 -78.9107 +US 14112 North Evans New York NY Erie 029 42.6917 -78.9927 +US 14127 Orchard Park New York NY Erie 029 42.7639 -78.7518 +US 14134 Sardinia New York NY Erie 029 42.5323 -78.5172 +US 14139 South Wales New York NY Erie 029 42.7063 -78.5452 +US 14140 Spring Brook New York NY Erie 029 42.8072 -78.6676 +US 14141 Springville New York NY Erie 029 42.52 -78.6847 +US 14150 Tonawanda New York NY Erie 029 43.0028 -78.8547 +US 14151 Tonawanda New York NY Erie 029 42.7684 -78.8871 +US 14169 Wales Center New York NY Erie 029 42.7673 -78.5856 +US 14170 West Falls New York NY Erie 029 42.7053 -78.6779 +US 14201 Buffalo New York NY Erie 029 42.8967 -78.8846 +US 14202 Buffalo New York NY Erie 029 42.887 -78.8779 +US 14203 Buffalo New York NY Erie 029 42.8939 -78.8681 +US 14204 Buffalo New York NY Erie 029 42.884 -78.8597 +US 14205 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14206 Buffalo New York NY Erie 029 42.8811 -78.8104 +US 14207 Buffalo New York NY Erie 029 42.9491 -78.8978 +US 14208 Buffalo New York NY Erie 029 42.9154 -78.8505 +US 14209 Buffalo New York NY Erie 029 42.913 -78.8656 +US 14210 Buffalo New York NY Erie 029 42.8614 -78.8205 +US 14211 Buffalo New York NY Erie 029 42.9082 -78.8225 +US 14212 Buffalo New York NY Erie 029 42.8946 -78.8245 +US 14213 Buffalo New York NY Erie 029 42.9167 -78.8895 +US 14214 Buffalo New York NY Erie 029 42.9414 -78.8374 +US 14215 Buffalo New York NY Erie 029 42.9335 -78.8115 +US 14216 Buffalo New York NY Erie 029 42.9499 -78.8599 +US 14217 Buffalo New York NY Erie 029 42.9719 -78.8769 +US 14218 Buffalo New York NY Erie 029 42.8146 -78.8078 +US 14219 Buffalo New York NY Erie 029 42.7863 -78.8264 +US 14220 Buffalo New York NY Erie 029 42.8441 -78.8182 +US 14221 Buffalo New York NY Erie 029 42.9685 -78.7492 +US 14222 Buffalo New York NY Erie 029 42.9164 -78.8763 +US 14223 Buffalo New York NY Erie 029 42.9731 -78.845 +US 14224 Buffalo New York NY Erie 029 42.8371 -78.7484 +US 14225 Buffalo New York NY Erie 029 42.9255 -78.7481 +US 14226 Buffalo New York NY Erie 029 42.9744 -78.7949 +US 14227 Buffalo New York NY Erie 029 42.8853 -78.7462 +US 14228 Buffalo New York NY Erie 029 43.0408 -78.7812 +US 14231 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14233 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14240 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14241 Buffalo New York NY Erie 029 42.9383 -78.7441 +US 14260 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14261 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14263 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14264 Buffalo New York NY Erie 029 42.8856 -78.8735 +US 14265 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14266 Buffalo New York NY Erie County 029 42.8849 -78.8264 +US 14267 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14269 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14270 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14271 Buffalo New York NY Erie County 029 42.8849 -78.8264 +US 14272 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14273 Buffalo New York NY Erie 029 42.755 -78.7849 +US 14276 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 14280 Buffalo New York NY Erie 029 42.7684 -78.8871 +US 12851 Minerva New York NY Essex 031 43.7811 -73.9835 +US 12852 Newcomb New York NY Essex 031 43.946 -74.1299 +US 12855 North Hudson New York NY Essex 031 43.9869 -73.7121 +US 12857 Olmstedville New York NY Essex 031 43.7799 -73.9335 +US 12858 Paradox New York NY Essex 031 43.8914 -73.645 +US 12870 Schroon Lake New York NY Essex 031 43.8412 -73.7674 +US 12872 Severance New York NY Essex 031 44.1457 -73.8152 +US 12879 Newcomb New York NY Essex 031 44.1457 -73.8152 +US 12883 Ticonderoga New York NY Essex 031 43.8463 -73.4426 +US 12913 Bloomingdale New York NY Essex 031 44.3985 -74.0829 +US 12928 Crown Point New York NY Essex 031 43.9526 -73.4665 +US 12932 Elizabethtown New York NY Essex 031 44.2245 -73.6011 +US 12936 Essex New York NY Essex 031 44.2807 -73.3731 +US 12941 Jay New York NY Essex 031 44.3734 -73.7247 +US 12942 Keene New York NY Essex 031 44.2555 -73.7915 +US 12943 Keene Valley New York NY Essex 031 44.2024 -73.7731 +US 12944 Keeseville New York NY Essex 031 44.4999 -73.4745 +US 12946 Lake Placid New York NY Essex 031 44.229 -73.9841 +US 12950 Lewis New York NY Essex 031 44.3075 -73.5491 +US 12956 Mineville New York NY Essex 031 44.0876 -73.5236 +US 12960 Moriah New York NY Essex 031 44.0438 -73.5079 +US 12961 Moriah Center New York NY Essex 031 44.0552 -73.5347 +US 12964 New Russia New York NY Essex 031 44.1595 -73.6059 +US 12968 Onchiota New York NY Essex County 031 44.4582 -74.171 +US 12974 Port Henry New York NY Essex 031 44.0465 -73.4705 +US 12975 Port Kent New York NY Essex 031 44.5264 -73.4092 +US 12977 Ray Brook New York NY Essex 031 44.2802 -74.0795 +US 12987 Upper Jay New York NY Essex 031 44.3256 -73.8079 +US 12993 Westport New York NY Essex 031 44.205 -73.4702 +US 12994 Whallonsburg New York NY Essex County 031 44.2942 -73.4338 +US 12996 Willsboro New York NY Essex 031 44.3604 -73.3963 +US 12997 Wilmington New York NY Essex 031 44.3755 -73.8431 +US 12998 Witherbee New York NY Essex 031 44.0827 -73.5306 +US 12914 Bombay New York NY Franklin 033 44.9479 -74.5947 +US 12915 Brainardsville New York NY Franklin 033 44.5527 -74.318 +US 12916 Brushton New York NY Franklin 033 44.8282 -74.5223 +US 12917 Burke New York NY Franklin 033 44.9177 -74.1731 +US 12920 Chateaugay New York NY Franklin 033 44.9088 -74.0741 +US 12926 Constable New York NY Franklin 033 44.9417 -74.3297 +US 12930 Dickinson Center New York NY Franklin 033 44.7233 -74.5523 +US 12937 Fort Covington New York NY Franklin 033 44.9731 -74.4929 +US 12939 Gabriels New York NY Franklin 033 44.5527 -74.318 +US 12945 Lake Clear New York NY Franklin 033 44.3375 -74.2381 +US 12953 Malone New York NY Franklin 033 44.8482 -74.2928 +US 12957 Moira New York NY Franklin 033 44.8504 -74.5603 +US 12966 North Bangor New York NY Franklin 033 44.8532 -74.4191 +US 12969 Owls Head New York NY Franklin 033 44.7308 -74.1342 +US 12970 Paul Smiths New York NY Franklin 033 44.445 -74.2664 +US 12976 Rainbow Lake New York NY Franklin 033 44.5527 -74.318 +US 12980 Saint Regis Falls New York NY Franklin 033 44.6578 -74.5155 +US 12983 Saranac Lake New York NY Franklin 033 44.3243 -74.133 +US 12986 Tupper Lake New York NY Franklin 033 44.232 -74.4905 +US 12989 Vermontville New York NY Franklin 033 44.4601 -74.0573 +US 12995 Whippleville New York NY Franklin 033 44.8057 -74.2523 +US 13655 Hogansburg New York NY Franklin 033 44.9825 -74.6626 +US 12025 Broadalbin New York NY Fulton 035 43.0727 -74.1684 +US 12032 Caroga Lake New York NY Fulton 035 43.1922 -74.5169 +US 12078 Gloversville New York NY Fulton 035 43.0616 -74.3375 +US 12095 Johnstown New York NY Fulton 035 43.0069 -74.3715 +US 12117 Mayfield New York NY Fulton 035 43.1411 -74.2444 +US 12134 Northville New York NY Fulton 035 43.2662 -74.2288 +US 13470 Stratford New York NY Fulton 035 43.1791 -74.6768 +US 14003 Alabama New York NY Genesee 037 42.9981 -78.1848 +US 14005 Alexander New York NY Genesee 037 42.9159 -78.2589 +US 14013 Basom New York NY Genesee 037 43.0807 -78.3951 +US 14020 Batavia New York NY Genesee 037 43.0003 -78.1929 +US 14021 Batavia New York NY Genesee 037 42.9981 -78.1848 +US 14036 Corfu New York NY Genesee 037 42.9777 -78.3929 +US 14040 Darien Center New York NY Genesee 037 42.8948 -78.3878 +US 14054 East Bethany New York NY Genesee 037 42.9166 -78.1342 +US 14056 East Pembroke New York NY Genesee 037 42.9912 -78.3122 +US 14058 Elba New York NY Genesee 037 43.0897 -78.1704 +US 14125 Oakfield New York NY Genesee 037 43.0717 -78.2702 +US 14143 Stafford New York NY Genesee 037 42.9829 -78.0898 +US 14416 Bergen New York NY Genesee 037 43.0869 -77.9603 +US 14422 Byron New York NY Genesee 037 43.0738 -78.0629 +US 14482 Le Roy New York NY Genesee 037 42.9774 -77.9851 +US 14486 Linwood New York NY Genesee 037 42.8943 -77.9216 +US 14525 Pavilion New York NY Genesee 037 42.9102 -78.0269 +US 14557 South Byron New York NY Genesee 037 43.0416 -78.0573 +US 12015 Athens New York NY Greene 039 42.2736 -73.8152 +US 12042 Climax New York NY Greene 039 42.3708 -73.8625 +US 12051 Coxsackie New York NY Greene 039 42.3501 -73.8199 +US 12058 Earlton New York NY Greene 039 42.3527 -73.9062 +US 12083 Greenville New York NY Greene 039 42.4113 -74.0222 +US 12087 Hannacroix New York NY Greene 039 42.4285 -73.868 +US 12124 New Baltimore New York NY Greene 039 42.4442 -73.7882 +US 12135 Norton Hill New York NY Greene County 039 42.4206 -74.081 +US 12163 Cairo New York NY Greene County 039 42.4477 -74.0273 +US 12176 Surprise New York NY Greene 039 42.3851 -73.9587 +US 12192 West Coxsackie New York NY Greene 039 42.4029 -73.8283 +US 12405 Acra New York NY Greene 039 42.3304 -74.0857 +US 12407 Ashland New York NY Greene 039 42.3329 -74.3679 +US 12413 Cairo New York NY Greene 039 42.3096 -74.0115 +US 12414 Catskill New York NY Greene 039 42.2276 -73.8985 +US 12418 Cornwallville New York NY Greene 039 42.3629 -74.1631 +US 12422 Durham New York NY Greene 039 42.402 -74.1849 +US 12423 East Durham New York NY Greene 039 42.386 -74.1117 +US 12424 East Jewett New York NY Greene 039 42.2469 -74.1353 +US 12427 Elka Park New York NY Greene 039 42.1643 -74.1245 +US 12431 Freehold New York NY Greene 039 42.3815 -74.0623 +US 12436 Haines Falls New York NY Greene 039 42.1955 -74.1023 +US 12439 Hensonville New York NY Greene 039 42.2939 -74.1853 +US 12442 Hunter New York NY Greene 039 42.2333 -74.2416 +US 12444 Jewett New York NY Greene 039 42.2694 -74.2793 +US 12450 Lanesville New York NY Greene 039 42.1332 -74.2443 +US 12451 Leeds New York NY Greene 039 42.3045 -73.9457 +US 12452 Lexington New York NY Greene 039 42.2234 -74.3866 +US 12454 Maplecrest New York NY Greene 039 42.2995 -74.1655 +US 12460 Oak Hill New York NY Greene 039 42.4069 -74.1528 +US 12463 Palenville New York NY Greene 039 42.1729 -74.0167 +US 12468 Prattsville New York NY Greene 039 42.2979 -74.3895 +US 12470 Purling New York NY Greene 039 42.2959 -74.0773 +US 12473 Round Top New York NY Greene 039 42.2678 -74.0523 +US 12482 South Cairo New York NY Greene 039 42.2681 -73.9554 +US 12485 Tannersville New York NY Greene 039 42.2032 -74.1014 +US 12492 West Kill New York NY Greene 039 42.2046 -74.362 +US 12496 Windham New York NY Greene 039 42.3175 -74.262 +US 12108 Lake Pleasant New York NY Hamilton 041 43.6676 -74.4569 +US 12139 Piseco New York NY Hamilton 041 43.4481 -74.5263 +US 12164 Speculator New York NY Hamilton 041 43.5042 -74.3667 +US 12190 Wells New York NY Hamilton 041 43.4012 -74.2886 +US 12812 Blue Mountain Lake New York NY Hamilton 041 43.6676 -74.4569 +US 12842 Indian Lake New York NY Hamilton 041 43.7606 -74.2766 +US 12847 Long Lake New York NY Hamilton 041 43.9477 -74.4662 +US 12864 Sabael New York NY Hamilton 041 43.6676 -74.4569 +US 13353 Hoffmeister New York NY Hamilton 041 43.3915 -74.74 +US 13360 Inlet New York NY Hamilton 041 43.748 -74.7846 +US 13436 Raquette Lake New York NY Hamilton 041 43.6676 -74.4569 +US 13324 Cold Brook New York NY Herkimer 043 43.3024 -74.9977 +US 13329 Dolgeville New York NY Herkimer 043 43.1042 -74.7643 +US 13331 Eagle Bay New York NY Herkimer 043 43.8167 -74.8862 +US 13340 Frankfort New York NY Herkimer 043 43.044 -75.1072 +US 13350 Herkimer New York NY Herkimer 043 43.0307 -74.9876 +US 13357 Ilion New York NY Herkimer 043 43.0064 -75.0484 +US 13361 Jordanville New York NY Herkimer 043 42.8948 -74.8209 +US 13365 Little Falls New York NY Herkimer 043 43.0474 -74.8606 +US 13406 Middleville New York NY Herkimer 043 43.1369 -74.924 +US 13407 Mohawk New York NY Herkimer 043 42.99 -74.9853 +US 13416 Newport New York NY Herkimer 043 43.18 -74.9861 +US 13420 Old Forge New York NY Herkimer 043 43.7435 -74.8935 +US 13431 Poland New York NY Herkimer 043 43.2115 -75.0731 +US 13454 Salisbury Center New York NY Herkimer 043 43.1625 -74.7809 +US 13472 Thendara New York NY Herkimer 043 43.461 -74.9571 +US 13475 Van Hornesville New York NY Herkimer 043 42.8935 -74.8367 +US 13491 West Winfield New York NY Herkimer 043 42.8826 -75.1835 +US 13601 Watertown New York NY Jefferson 045 43.9743 -75.9122 +US 13602 Fort Drum New York NY Jefferson 045 44.0354 -75.754 +US 13603 Watertown New York NY Jefferson 045 43.9087 -75.8967 +US 13605 Adams New York NY Jefferson 045 43.8062 -76.049 +US 13606 Adams Center New York NY Jefferson 045 43.8631 -76.0041 +US 13607 Alexandria Bay New York NY Jefferson 045 44.0746 -75.8407 +US 13608 Antwerp New York NY Jefferson 045 44.2358 -75.6005 +US 13611 Belleville New York NY Jefferson 045 43.778 -76.1259 +US 13612 Black River New York NY Jefferson 045 44.0042 -75.7958 +US 13615 Brownville New York NY Jefferson 045 44.0577 -76.0196 +US 13616 Calcium New York NY Jefferson 045 44.0265 -75.8499 +US 13618 Cape Vincent New York NY Jefferson 045 44.1244 -76.3164 +US 13619 Carthage New York NY Jefferson 045 43.9791 -75.6013 +US 13622 Chaumont New York NY Jefferson 045 44.0848 -76.1232 +US 13624 Clayton New York NY Jefferson 045 44.1442 -76.062 +US 13628 Deferiet New York NY Jefferson 045 43.8855 -75.7983 +US 13632 Depauville New York NY Jefferson 045 44.1395 -76.0616 +US 13634 Dexter New York NY Jefferson 045 44.0069 -76.065 +US 13636 Ellisburg New York NY Jefferson 045 43.7434 -76.1165 +US 13637 Evans Mills New York NY Jefferson 045 44.0817 -75.8305 +US 13638 Felts Mills New York NY Jefferson 045 44.0204 -75.7524 +US 13640 Wellesley Island New York NY Jefferson 045 44.3213 -76.0172 +US 13641 Fishers Landing New York NY Jefferson 045 44.2752 -76.0049 +US 13643 Great Bend New York NY Jefferson 045 44.0147 -75.7284 +US 13650 Henderson New York NY Jefferson 045 43.8467 -76.2352 +US 13651 Henderson Harbor New York NY Jefferson 045 43.8708 -76.1809 +US 13656 La Fargeville New York NY Jefferson 045 44.1987 -75.9569 +US 13657 Limerick New York NY Jefferson 045 44.0357 -76.0904 +US 13659 Lorraine New York NY Jefferson 045 43.7568 -75.9053 +US 13661 Mannsville New York NY Jefferson 045 43.7179 -76.082 +US 13665 Natural Bridge New York NY Jefferson 045 44.063 -75.5039 +US 13671 Oxbow New York NY Jefferson 045 44.3085 -75.6688 +US 13673 Philadelphia New York NY Jefferson 045 44.1589 -75.7099 +US 13674 Pierrepont Manor New York NY Jefferson 045 43.7334 -76.0543 +US 13675 Plessis New York NY Jefferson 045 44.2774 -75.8496 +US 13679 Redwood New York NY Jefferson 045 44.3211 -75.815 +US 13682 Rodman New York NY Jefferson 045 43.8622 -75.8719 +US 13685 Sackets Harbor New York NY Jefferson 045 43.9398 -76.105 +US 13688 South Rutland New York NY Jefferson 045 43.9517 -75.7678 +US 13691 Theresa New York NY Jefferson 045 44.2113 -75.8014 +US 13692 Thousand Island Park New York NY Jefferson 045 44.2898 -76.0262 +US 13693 Three Mile Bay New York NY Jefferson 045 44.0551 -76.2689 +US 13698 Woodville New York NY Jefferson County 045 43.7812 -76.172 +US 11201 Brooklyn New York NY Kings 047 40.694 -73.9903 +US 11202 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11203 Brooklyn New York NY Kings 047 40.6505 -73.9349 +US 11204 Brooklyn New York NY Kings 047 40.6179 -73.9856 +US 11205 Brooklyn New York NY Kings 047 40.6924 -73.9666 +US 11206 Brooklyn New York NY Kings 047 40.7012 -73.9436 +US 11207 Brooklyn New York NY Kings 047 40.6705 -73.894 +US 11208 Brooklyn New York NY Kings 047 40.6762 -73.8736 +US 11209 Brooklyn New York NY Kings 047 40.6251 -74.0303 +US 11210 Brooklyn New York NY Kings 047 40.6281 -73.9467 +US 11211 Brooklyn New York NY Kings 047 40.7095 -73.9563 +US 11212 Brooklyn New York NY Kings 047 40.6625 -73.9145 +US 11213 Brooklyn New York NY Kings 047 40.67 -73.9367 +US 11214 Brooklyn New York NY Kings 047 40.6016 -73.9968 +US 11215 Brooklyn New York NY Kings 047 40.6669 -73.9828 +US 11216 Brooklyn New York NY Kings 047 40.6794 -73.9496 +US 11217 Brooklyn New York NY Kings 047 40.6816 -73.9798 +US 11218 Brooklyn New York NY Kings 047 40.6424 -73.9758 +US 11219 Brooklyn New York NY Kings 047 40.6336 -73.996 +US 11220 Brooklyn New York NY Kings 047 40.6412 -74.0133 +US 11221 Brooklyn New York NY Kings 047 40.6907 -73.9274 +US 11222 Brooklyn New York NY Kings 047 40.7272 -73.9498 +US 11223 Brooklyn New York NY Kings 047 40.5979 -73.9743 +US 11224 Brooklyn New York NY Kings 047 40.5767 -73.9884 +US 11225 Brooklyn New York NY Kings 047 40.6628 -73.9546 +US 11226 Brooklyn New York NY Kings 047 40.6467 -73.957 +US 11228 Brooklyn New York NY Kings 047 40.6174 -74.0121 +US 11229 Brooklyn New York NY Kings 047 40.6011 -73.9475 +US 11230 Brooklyn New York NY Kings 047 40.6225 -73.965 +US 11231 Brooklyn New York NY Kings 047 40.6794 -74.0014 +US 11232 Brooklyn New York NY Kings 047 40.6521 -74.0018 +US 11233 Brooklyn New York NY Kings 047 40.6784 -73.9211 +US 11234 Brooklyn New York NY Kings 047 40.6205 -73.9239 +US 11235 Brooklyn New York NY Kings 047 40.5839 -73.9536 +US 11236 Brooklyn New York NY Kings 047 40.6407 -73.9028 +US 11237 Brooklyn New York NY Kings 047 40.7006 -73.918 +US 11238 Brooklyn New York NY Kings 047 40.679 -73.9644 +US 11239 Brooklyn New York NY Kings 047 40.6497 -73.8824 +US 11240 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11241 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11242 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11243 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11244 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11245 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11247 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11248 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11249 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11251 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11252 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11254 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11255 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 11256 Brooklyn New York NY Kings 047 40.6451 -73.945 +US 13305 Beaver Falls New York NY Lewis 049 43.8187 -75.4803 +US 13312 Brantingham New York NY Lewis 049 43.8187 -75.4803 +US 13325 Constableville New York NY Lewis 049 43.563 -75.4584 +US 13327 Croghan New York NY Lewis 049 43.9095 -75.3542 +US 13343 Glenfield New York NY Lewis 049 43.7323 -75.3669 +US 13345 Greig New York NY Lewis 049 43.6886 -75.3302 +US 13367 Lowville New York NY Lewis 049 43.7893 -75.4156 +US 13368 Lyons Falls New York NY Lewis 049 43.6262 -75.3553 +US 13404 Martinsburg New York NY Lewis 049 43.8187 -75.4803 +US 13433 Port Leyden New York NY Lewis 049 43.5802 -75.3263 +US 13473 Turin New York NY Lewis 049 43.6441 -75.4132 +US 13489 West Leyden New York NY Lewis 049 43.4597 -75.5127 +US 13610 Rodman New York NY Lewis 049 43.8187 -75.4803 +US 13620 Castorland New York NY Lewis 049 43.8843 -75.4604 +US 13626 Copenhagen New York NY Lewis 049 43.8801 -75.6839 +US 13627 Deer River New York NY Lewis 049 43.8187 -75.4803 +US 13631 Denmark New York NY Lewis 049 43.8187 -75.4803 +US 13648 Harrisville New York NY Lewis 049 44.1613 -75.3252 +US 14414 Avon New York NY Livingston 051 42.903 -77.7274 +US 14423 Caledonia New York NY Livingston 051 42.9567 -77.8493 +US 14435 Conesus New York NY Livingston 051 42.7216 -77.6747 +US 14437 Dansville New York NY Livingston 051 42.57 -77.7109 +US 14454 Geneseo New York NY Livingston 051 42.7938 -77.7996 +US 14462 Groveland New York NY Livingston 051 42.676 -77.7573 +US 14466 Hemlock New York NY Livingston 051 42.78 -77.582 +US 14480 Lakeville New York NY Livingston 051 42.8296 -77.7149 +US 14481 Leicester New York NY Livingston 051 42.7739 -77.899 +US 14485 Lima New York NY Livingston 051 42.9012 -77.6083 +US 14487 Livonia New York NY Livingston 051 42.8135 -77.6635 +US 14488 Livonia Center New York NY Livingston 051 42.7298 -77.7739 +US 14510 Mount Morris New York NY Livingston 051 42.6835 -77.8664 +US 14517 Nunda New York NY Livingston 051 42.5867 -77.918 +US 14533 Piffard New York NY Livingston 051 42.8435 -77.8962 +US 14539 Retsof New York NY Livingston 051 42.8343 -77.8779 +US 14545 Scottsburg New York NY Livingston 051 42.6649 -77.701 +US 14556 Sonyea New York NY Livingston 051 42.7298 -77.7739 +US 14558 South Lima New York NY Livingston 051 42.8554 -77.6876 +US 14560 Springwater New York NY Livingston 051 42.6776 -77.5775 +US 14592 York New York NY Livingston 051 42.8757 -77.8835 +US 14836 Dalton New York NY Livingston 051 42.5449 -77.9289 +US 14846 Hunt New York NY Livingston 051 42.5388 -77.9818 +US 13032 Canastota New York NY Madison 053 43.0878 -75.7602 +US 13035 Cazenovia New York NY Madison 053 42.938 -75.8392 +US 13037 Chittenango New York NY Madison 053 43.0552 -75.8768 +US 13043 Clockville New York NY Madison 053 43.042 -75.7408 +US 13052 De Ruyter New York NY Madison 053 42.7494 -75.8582 +US 13061 Erieville New York NY Madison 053 42.8562 -75.7543 +US 13072 Georgetown New York NY Madison 053 42.7631 -75.7443 +US 13085 Lebanon New York NY Madison County 053 42.7745 -75.6776 +US 13122 New Woodstock New York NY Madison 053 42.8441 -75.8635 +US 13133 Chittenango New York NY Madison County 053 43.0069 -75.7995 +US 13134 Peterboro New York NY Madison 053 42.9686 -75.6794 +US 13151 Sheds New York NY Madison County 053 42.8387 -75.7804 +US 13163 Wampsville New York NY Madison 053 43.0785 -75.7016 +US 13310 Bouckville New York NY Madison 053 42.894 -75.5678 +US 13314 Brookfield New York NY Madison 053 42.8075 -75.3439 +US 13334 Eaton New York NY Madison 053 42.8484 -75.6314 +US 13346 Hamilton New York NY Madison 053 42.8231 -75.5434 +US 13355 Hubbardsville New York NY Madison 053 42.8237 -75.4367 +US 13364 Leonardsville New York NY Madison 053 42.9545 -75.6168 +US 13402 Madison New York NY Madison 053 42.8969 -75.5076 +US 13408 Morrisville New York NY Madison 053 42.9108 -75.6487 +US 13409 Munnsville New York NY Madison 053 42.9863 -75.594 +US 13418 North Brookfield New York NY Madison 053 42.8501 -75.3815 +US 13421 Oneida New York NY Madison 053 43.0862 -75.6508 +US 13434 Pratts Hollow New York NY Madison County 053 42.9228 -75.6031 +US 13465 Solsville New York NY Madison 053 42.9545 -75.6168 +US 13484 West Eaton New York NY Madison 053 42.8546 -75.6605 +US 14410 Adams Basin New York NY Monroe 055 43.1953 -77.8559 +US 14420 Brockport New York NY Monroe 055 43.2128 -77.9368 +US 14428 Churchville New York NY Monroe 055 43.0749 -77.835 +US 14430 Clarkson New York NY Monroe 055 43.286 -77.6843 +US 14445 East Rochester New York NY Monroe 055 43.1128 -77.4906 +US 14450 Fairport New York NY Monroe 055 43.0892 -77.436 +US 14464 Hamlin New York NY Monroe 055 43.3076 -77.927 +US 14467 Henrietta New York NY Monroe 055 43.0483 -77.6122 +US 14468 Hilton New York NY Monroe 055 43.2923 -77.7905 +US 14472 Honeoye Falls New York NY Monroe 055 42.9695 -77.5781 +US 14474 Industry New York NY Monroe County 055 43.0027 -77.6966 +US 14506 Mendon New York NY Monroe 055 42.9953 -77.5001 +US 14511 Mumford New York NY Monroe 055 43.0026 -77.8646 +US 14514 North Chili New York NY Monroe 055 43.1186 -77.8005 +US 14515 North Greece New York NY Monroe 055 43.2578 -77.7351 +US 14526 Penfield New York NY Monroe 055 43.1396 -77.456 +US 14534 Pittsford New York NY Monroe 055 43.0695 -77.5141 +US 14543 Rush New York NY Monroe 055 42.9966 -77.6665 +US 14546 Scottsville New York NY Monroe 055 43.0246 -77.7743 +US 14559 Spencerport New York NY Monroe 055 43.1895 -77.8043 +US 14580 Webster New York NY Monroe 055 43.2196 -77.4616 +US 14586 West Henrietta New York NY Monroe 055 43.0397 -77.6871 +US 14600 Rochester New York NY Monroe County 055 43.1315 -77.6085 +US 14601 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14602 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14603 Rochester New York NY Monroe 055 43.1616 -77.6068 +US 14604 Rochester New York NY Monroe 055 43.1577 -77.608 +US 14605 Rochester New York NY Monroe 055 43.1698 -77.6007 +US 14606 Rochester New York NY Monroe 055 43.1685 -77.6845 +US 14607 Rochester New York NY Monroe 055 43.1501 -77.589 +US 14608 Rochester New York NY Monroe 055 43.1521 -77.6258 +US 14609 Rochester New York NY Monroe 055 43.174 -77.5637 +US 14610 Rochester New York NY Monroe 055 43.1452 -77.5495 +US 14611 Rochester New York NY Monroe 055 43.1484 -77.6394 +US 14612 Rochester New York NY Monroe 055 43.2566 -77.6652 +US 14613 Rochester New York NY Monroe 055 43.1831 -77.6393 +US 14614 Rochester New York NY Monroe 055 43.1558 -77.6142 +US 14615 Rochester New York NY Monroe 055 43.2058 -77.6521 +US 14616 Rochester New York NY Monroe 055 43.2346 -77.6577 +US 14617 Rochester New York NY Monroe 055 43.2203 -77.5994 +US 14618 Rochester New York NY Monroe 055 43.1122 -77.5618 +US 14619 Rochester New York NY Monroe 055 43.1367 -77.6481 +US 14620 Rochester New York NY Monroe 055 43.1317 -77.6062 +US 14621 Rochester New York NY Monroe 055 43.1834 -77.6043 +US 14622 Rochester New York NY Monroe 055 43.214 -77.5555 +US 14623 Rochester New York NY Monroe 055 43.0834 -77.6344 +US 14624 Rochester New York NY Monroe 055 43.1216 -77.7311 +US 14625 Rochester New York NY Monroe 055 43.1522 -77.5057 +US 14626 Rochester New York NY Monroe 055 43.2126 -77.704 +US 14627 Rochester New York NY Monroe 055 43.1275 -77.6277 +US 14638 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14639 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14642 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14643 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14644 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14645 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14646 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14647 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14649 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14650 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14651 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14652 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14653 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14660 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14664 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14673 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14683 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14692 Rochester New York NY Monroe 055 43.286 -77.6843 +US 14694 Rochester New York NY Monroe 055 43.286 -77.6843 +US 12010 Amsterdam New York NY Montgomery 057 42.9063 -74.229 +US 12016 Auriesville New York NY Montgomery 057 42.9102 -74.4236 +US 12066 Esperance New York NY Montgomery 057 42.7717 -74.2882 +US 12068 Fonda New York NY Montgomery 057 42.9571 -74.4021 +US 12069 Fort Hunter New York NY Montgomery 057 42.9457 -74.2633 +US 12070 Fort Johnson New York NY Montgomery 057 42.9765 -74.2484 +US 12072 Fultonville New York NY Montgomery 057 42.9036 -74.3598 +US 12086 Hagaman New York NY Montgomery 057 42.9695 -74.1556 +US 12166 Sprakers New York NY Montgomery 057 42.8484 -74.4536 +US 12177 Tribes Hill New York NY Montgomery 057 42.95 -74.297 +US 13317 Canajoharie New York NY Montgomery 057 42.8671 -74.5956 +US 13339 Fort Plain New York NY Montgomery 057 42.9372 -74.6433 +US 13410 Nelliston New York NY Montgomery 057 42.9379 -74.6117 +US 13428 Palatine Bridge New York NY Montgomery 057 42.9221 -74.5708 +US 13452 Saint Johnsville New York NY Montgomery 057 43.017 -74.646 +US 11001 Floral Park New York NY Nassau 059 40.7236 -73.7058 +US 11002 Floral Park New York NY Nassau 059 40.7548 -73.6018 +US 11003 Elmont New York NY Nassau 059 40.6976 -73.7049 +US 11010 Franklin Square New York NY Nassau 059 40.701 -73.6758 +US 11020 Great Neck New York NY Nassau 059 40.7742 -73.7189 +US 11021 Great Neck New York NY Nassau 059 40.7867 -73.727 +US 11022 Great Neck New York NY Nassau 059 40.7548 -73.6018 +US 11023 Great Neck New York NY Nassau 059 40.7993 -73.7343 +US 11024 Great Neck New York NY Nassau 059 40.8171 -73.7416 +US 11025 Great Neck New York NY Nassau 059 40.7548 -73.6018 +US 11026 Great Neck New York NY Nassau 059 40.7548 -73.6018 +US 11027 Great Neck New York NY Nassau 059 40.7548 -73.6018 +US 11030 Manhasset New York NY Nassau 059 40.7934 -73.6888 +US 11040 New Hyde Park New York NY Nassau 059 40.7294 -73.6828 +US 11041 New Hyde Park New York NY Nassau 059 40.7548 -73.6018 +US 11042 New Hyde Park New York NY Nassau 059 40.7602 -73.695 +US 11043 New Hyde Park New York NY Nassau 059 40.7548 -73.6018 +US 11044 New Hyde Park New York NY Nassau 059 40.7548 -73.6018 +US 11050 Port Washington New York NY Nassau 059 40.835 -73.6964 +US 11051 Port Washington New York NY Nassau 059 40.7548 -73.6018 +US 11052 Port Washington New York NY Nassau 059 40.7548 -73.6018 +US 11053 Port Washington New York NY Nassau 059 40.7548 -73.6018 +US 11054 Port Washington New York NY Nassau 059 40.7548 -73.6018 +US 11055 Port Washington New York NY Nassau 059 40.7548 -73.6018 +US 11096 Inwood New York NY Nassau 059 40.6205 -73.7474 +US 11099 New Hyde Park New York NY Nassau 059 40.7548 -73.6018 +US 11501 Mineola New York NY Nassau 059 40.7469 -73.6398 +US 11507 Albertson New York NY Nassau 059 40.7703 -73.6514 +US 11509 Atlantic Beach New York NY Nassau 059 40.5887 -73.7255 +US 11510 Baldwin New York NY Nassau 059 40.6548 -73.6097 +US 11514 Carle Place New York NY Nassau 059 40.7512 -73.6119 +US 11516 Cedarhurst New York NY Nassau 059 40.6236 -73.7264 +US 11518 East Rockaway New York NY Nassau 059 40.6404 -73.6674 +US 11520 Freeport New York NY Nassau 059 40.6536 -73.5866 +US 11530 Garden City New York NY Nassau 059 40.7245 -73.6487 +US 11531 Garden City New York NY Nassau 059 40.7548 -73.6018 +US 11535 Garden City New York NY Nassau 059 40.7548 -73.6018 +US 11536 Garden City New York NY Nassau 059 40.7548 -73.6018 +US 11542 Glen Cove New York NY Nassau 059 40.865 -73.6277 +US 11545 Glen Head New York NY Nassau 059 40.8281 -73.6076 +US 11547 Glenwood Landing New York NY Nassau 059 40.7548 -73.6018 +US 11548 Greenvale New York NY Nassau 059 40.8125 -73.6261 +US 11549 Hempstead New York NY Nassau 059 40.7172 -73.6027 +US 11550 Hempstead New York NY Nassau 059 40.7049 -73.6176 +US 11551 Hempstead New York NY Nassau 059 40.7548 -73.6018 +US 11552 West Hempstead New York NY Nassau 059 40.6929 -73.6539 +US 11553 Uniondale New York NY Nassau 059 40.702 -73.592 +US 11554 East Meadow New York NY Nassau 059 40.7149 -73.5561 +US 11555 Uniondale New York NY Nassau 059 40.7548 -73.6018 +US 11556 Uniondale New York NY Nassau 059 40.7548 -73.6018 +US 11557 Hewlett New York NY Nassau 059 40.6404 -73.6957 +US 11558 Island Park New York NY Nassau 059 40.604 -73.6554 +US 11559 Lawrence New York NY Nassau 059 40.614 -73.733 +US 11560 Locust Valley New York NY Nassau 059 40.8817 -73.5927 +US 11561 Long Beach New York NY Nassau 059 40.5877 -73.6595 +US 11563 Lynbrook New York NY Nassau 059 40.6571 -73.6741 +US 11564 Lynbrook New York NY Nassau 059 40.7548 -73.6018 +US 11565 Malverne New York NY Nassau 059 40.675 -73.6731 +US 11566 Merrick New York NY Nassau 059 40.6685 -73.5536 +US 11568 Old Westbury New York NY Nassau 059 40.7882 -73.5875 +US 11569 Point Lookout New York NY Nassau 059 40.5905 -73.5808 +US 11570 Rockville Centre New York NY Nassau 059 40.6637 -73.638 +US 11571 Rockville Centre New York NY Nassau 059 40.7548 -73.6018 +US 11572 Oceanside New York NY Nassau 059 40.6362 -73.6375 +US 11575 Roosevelt New York NY Nassau 059 40.6802 -73.5867 +US 11576 Roslyn New York NY Nassau 059 40.7984 -73.6477 +US 11577 Roslyn Heights New York NY Nassau 059 40.7845 -73.6403 +US 11579 Sea Cliff New York NY Nassau 059 40.846 -73.6436 +US 11580 Valley Stream New York NY Nassau 059 40.6742 -73.7057 +US 11581 Valley Stream New York NY Nassau 059 40.6523 -73.7118 +US 11582 Valley Stream New York NY Nassau 059 40.7548 -73.6018 +US 11583 Valley Stream New York NY Nassau 059 40.7548 -73.6018 +US 11588 Uniondale New York NY Nassau 059 40.7548 -73.6018 +US 11590 Westbury New York NY Nassau 059 40.7557 -73.5723 +US 11592 Rockville Centre New York NY Nassau 059 40.6218 -73.6327 +US 11593 Westbury New York NY Nassau 059 40.7548 -73.6018 +US 11594 Westbury New York NY Nassau 059 40.7548 -73.6018 +US 11595 Westbury New York NY Nassau 059 40.7548 -73.6018 +US 11596 Williston Park New York NY Nassau 059 40.7592 -73.6449 +US 11597 Westbury New York NY Nassau 059 40.7548 -73.6018 +US 11598 Woodmere New York NY Nassau 059 40.6326 -73.7141 +US 11599 Garden City New York NY Nassau 059 40.6076 -73.7427 +US 11709 Bayville New York NY Nassau 059 40.9074 -73.5601 +US 11710 Bellmore New York NY Nassau 059 40.6729 -73.5365 +US 11714 Bethpage New York NY Nassau 059 40.74 -73.4857 +US 11732 East Norwich New York NY Nassau 059 40.8472 -73.5349 +US 11735 Farmingdale New York NY Nassau 059 40.7315 -73.4327 +US 11736 Farmingdale New York NY Nassau 059 40.7548 -73.6018 +US 11737 Farmingdale New York NY Nassau 059 40.7548 -73.6018 +US 11753 Jericho New York NY Nassau 059 40.7881 -73.5331 +US 11756 Levittown New York NY Nassau 059 40.7254 -73.5166 +US 11758 Massapequa New York NY Nassau 059 40.6682 -73.4588 +US 11762 Massapequa Park New York NY Nassau 059 40.6807 -73.4444 +US 11765 Mill Neck New York NY Nassau 059 40.8857 -73.5526 +US 11771 Oyster Bay New York NY Nassau 059 40.866 -73.5272 +US 11773 Syosset New York NY Nassau 059 40.7548 -73.6018 +US 11774 Farmingdale New York NY Nassau 059 40.7548 -73.6018 +US 11783 Seaford New York NY Nassau 059 40.6795 -73.491 +US 11791 Syosset New York NY Nassau 059 40.8146 -73.5024 +US 11793 Wantagh New York NY Nassau 059 40.685 -73.5103 +US 11797 Woodbury New York NY Nassau 059 40.8154 -73.4716 +US 11801 Hicksville New York NY Nassau 059 40.7623 -73.523 +US 11802 Hicksville New York NY Nassau 059 40.7548 -73.6018 +US 11803 Plainview New York NY Nassau 059 40.7781 -73.4816 +US 11804 Old Bethpage New York NY Nassau 059 40.765 -73.4575 +US 11815 Hicksville New York NY Nassau 059 40.7548 -73.6018 +US 11819 Hicksville New York NY Nassau 059 40.7548 -73.6018 +US 11853 Jericho New York NY Nassau 059 40.7548 -73.6018 +US 11854 Hicksville New York NY Nassau 059 40.7548 -73.6018 +US 11855 Hicksville New York NY Nassau 059 40.7548 -73.6018 +US 10000 New York City New York NY New York County 061 40.7069 -73.6731 +US 10001 New York City New York NY New York 061 40.7484 -73.9967 +US 10002 New York City New York NY New York 061 40.7152 -73.9877 +US 10003 New York City New York NY New York 061 40.7313 -73.9892 +US 10004 New York City New York NY New York 061 40.6964 -74.0253 +US 10005 New York City New York NY New York 061 40.7056 -74.0083 +US 10006 New York City New York NY New York 061 40.7085 -74.0135 +US 10007 New York City New York NY New York 061 40.7139 -74.007 +US 10008 New York City New York NY New York 061 40.7808 -73.9772 +US 10009 New York City New York NY New York 061 40.7262 -73.9796 +US 10010 New York City New York NY New York 061 40.7375 -73.9813 +US 10011 New York City New York NY New York 061 40.7402 -73.9996 +US 10012 New York City New York NY New York 061 40.7255 -73.9983 +US 10013 New York City New York NY New York 061 40.7185 -74.0025 +US 10014 New York City New York NY New York 061 40.7339 -74.0054 +US 10015 New York City New York NY New York 061 40.7808 -73.9772 +US 10016 New York City New York NY New York 061 40.7443 -73.9781 +US 10017 New York City New York NY New York 061 40.7517 -73.9707 +US 10018 New York City New York NY New York 061 40.7547 -73.9925 +US 10019 New York City New York NY New York 061 40.7651 -73.9858 +US 10020 New York City New York NY New York 061 40.7354 -73.9968 +US 10021 New York City New York NY New York 061 40.7685 -73.9588 +US 10022 New York City New York NY New York 061 40.7571 -73.9657 +US 10023 New York City New York NY New York 061 40.7764 -73.9827 +US 10024 New York City New York NY New York 061 40.7864 -73.9764 +US 10025 New York City New York NY New York 061 40.7975 -73.9683 +US 10026 New York City New York NY New York 061 40.8019 -73.9531 +US 10027 New York City New York NY New York 061 40.8116 -73.955 +US 10028 New York City New York NY New York 061 40.7763 -73.9529 +US 10029 New York City New York NY New York 061 40.7918 -73.9447 +US 10030 New York City New York NY New York 061 40.8183 -73.9426 +US 10031 New York City New York NY New York 061 40.8246 -73.9507 +US 10032 New York City New York NY New York 061 40.8382 -73.942 +US 10033 New York City New York NY New York 061 40.8496 -73.9356 +US 10034 New York City New York NY New York 061 40.8662 -73.9221 +US 10035 New York City New York NY New York 061 40.8011 -73.9371 +US 10036 New York City New York NY New York 061 40.7597 -73.9918 +US 10037 New York City New York NY New York 061 40.8135 -73.9381 +US 10038 New York City New York NY New York 061 40.7101 -74.0013 +US 10039 New York City New York NY New York 061 40.8265 -73.9383 +US 10040 New York City New York NY New York 061 40.8583 -73.9296 +US 10041 New York City New York NY New York 061 40.7038 -74.0098 +US 10043 New York City New York NY New York 061 40.7808 -73.9772 +US 10044 New York City New York NY New York 061 40.7618 -73.9505 +US 10045 New York City New York NY New York 061 40.7086 -74.0087 +US 10046 New York City New York NY New York 061 40.7808 -73.9772 +US 10047 New York City New York NY New York 061 40.7808 -73.9772 +US 10048 New York City New York NY New York 061 40.7125 -74.0133 +US 10055 New York City New York NY New York 061 40.7808 -73.9772 +US 10060 New York City New York NY New York 061 40.7808 -73.9772 +US 10065 New York City New York NY New York 061 40.7651 -73.9638 +US 10069 New York City New York NY New York 061 40.778 -73.9884 +US 10072 New York City New York NY New York 061 40.7808 -73.9772 +US 10075 New York City New York NY New York County 061 40.773 -73.9566 +US 10079 New York City New York NY New York 061 40.7808 -73.9772 +US 10080 New York City New York NY New York 061 40.7808 -73.9772 +US 10081 New York City New York NY New York 061 40.7808 -73.9772 +US 10082 New York City New York NY New York 061 40.7808 -73.9772 +US 10087 New York City New York NY New York 061 40.7808 -73.9772 +US 10090 New York City New York NY New York 061 40.7808 -73.9772 +US 10094 New York City New York NY New York 061 40.7808 -73.9772 +US 10095 New York City New York NY New York 061 40.7482 -73.9884 +US 10096 New York City New York NY New York 061 40.7808 -73.9772 +US 10098 New York City New York NY New York 061 40.7482 -73.9884 +US 10099 New York City New York NY New York 061 40.7808 -73.9772 +US 10101 New York City New York NY New York 061 40.7808 -73.9772 +US 10102 New York City New York NY New York 061 40.7808 -73.9772 +US 10103 New York City New York NY New York 061 40.7603 -73.9762 +US 10104 New York City New York NY New York 061 40.7609 -73.9799 +US 10105 New York City New York NY New York 061 40.7628 -73.9785 +US 10106 New York City New York NY New York 061 40.7652 -73.9804 +US 10107 New York City New York NY New York 061 40.7664 -73.9827 +US 10108 New York City New York NY New York 061 40.7808 -73.9772 +US 10109 New York City New York NY New York 061 40.7808 -73.9772 +US 10110 New York City New York NY New York 061 40.754 -73.9808 +US 10111 New York City New York NY New York 061 40.7592 -73.9778 +US 10112 New York City New York NY New York 061 40.7593 -73.9798 +US 10113 New York City New York NY New York 061 40.7808 -73.9772 +US 10114 New York City New York NY New York 061 40.7808 -73.9772 +US 10115 New York City New York NY New York 061 40.8111 -73.9642 +US 10116 New York City New York NY New York 061 40.7808 -73.9772 +US 10117 New York City New York NY New York 061 40.7808 -73.9772 +US 10118 New York City New York NY New York 061 40.749 -73.9865 +US 10119 New York City New York NY New York 061 40.7808 -73.9772 +US 10120 New York City New York NY New York 061 40.7506 -73.9894 +US 10121 New York City New York NY New York 061 40.7496 -73.9919 +US 10122 New York City New York NY New York 061 40.7518 -73.9922 +US 10123 New York City New York NY New York 061 40.7515 -73.9905 +US 10124 New York City New York NY New York 061 40.7808 -73.9772 +US 10125 New York City New York NY New York 061 40.7808 -73.9772 +US 10126 New York City New York NY New York 061 40.7808 -73.9772 +US 10128 New York City New York NY New York 061 40.7816 -73.9511 +US 10129 New York City New York NY New York 061 40.7808 -73.9772 +US 10130 New York City New York NY New York 061 40.7808 -73.9772 +US 10131 New York City New York NY New York 061 40.7808 -73.9772 +US 10132 New York City New York NY New York 061 40.7808 -73.9772 +US 10133 New York City New York NY New York 061 40.7808 -73.9772 +US 10138 New York City New York NY New York 061 40.7808 -73.9772 +US 10149 New York City New York NY New York 061 40.7808 -73.9772 +US 10150 New York City New York NY New York 061 40.7808 -73.9772 +US 10151 New York City New York NY New York 061 40.7634 -73.974 +US 10152 New York City New York NY New York 061 40.7589 -73.973 +US 10153 New York City New York NY New York 061 40.7641 -73.9735 +US 10154 New York City New York NY New York 061 40.7583 -73.9735 +US 10155 New York City New York NY New York 061 40.7611 -73.968 +US 10156 New York City New York NY New York 061 40.7808 -73.9772 +US 10157 New York City New York NY New York 061 40.7808 -73.9772 +US 10158 New York City New York NY New York 061 40.7494 -73.9758 +US 10159 New York City New York NY New York 061 40.7808 -73.9772 +US 10160 New York City New York NY New York 061 40.7808 -73.9772 +US 10161 New York City New York NY New York 061 40.7808 -73.9772 +US 10162 New York City New York NY New York 061 40.7699 -73.9511 +US 10163 New York City New York NY New York 061 40.7808 -73.9772 +US 10164 New York City New York NY New York 061 40.7808 -73.9772 +US 10165 New York City New York NY New York 061 40.7524 -73.9791 +US 10166 New York City New York NY New York 061 40.7546 -73.9762 +US 10167 New York City New York NY New York 061 40.7549 -73.975 +US 10168 New York City New York NY New York 061 40.7519 -73.9768 +US 10169 New York City New York NY New York 061 40.7547 -73.9766 +US 10170 New York City New York NY New York 061 40.7526 -73.9755 +US 10171 New York City New York NY New York 061 40.7564 -73.9748 +US 10172 New York City New York NY New York 061 40.7558 -73.9753 +US 10173 New York City New York NY New York 061 40.7543 -73.9796 +US 10174 New York City New York NY New York 061 40.7517 -73.9752 +US 10175 New York City New York NY New York 061 40.7543 -73.9798 +US 10176 New York City New York NY New York 061 40.7556 -73.9789 +US 10177 New York City New York NY New York 061 40.7553 -73.9761 +US 10178 New York City New York NY New York 061 40.7514 -73.9785 +US 10179 New York City New York NY New York 061 40.7808 -73.9772 +US 10184 New York City New York NY New York 061 40.7808 -73.9772 +US 10185 New York City New York NY New York 061 40.7808 -73.9772 +US 10196 New York City New York NY New York 061 40.7808 -73.9772 +US 10197 New York City New York NY New York 061 40.7808 -73.9772 +US 10199 New York City New York NY New York 061 40.7503 -74.0006 +US 10203 New York City New York NY New York 061 40.7808 -73.9772 +US 10211 New York City New York NY New York 061 40.7808 -73.9772 +US 10212 New York City New York NY New York 061 40.7808 -73.9772 +US 10213 New York City New York NY New York 061 40.7808 -73.9772 +US 10242 New York City New York NY New York 061 40.7808 -73.9772 +US 10249 New York City New York NY New York 061 40.7808 -73.9772 +US 10256 New York City New York NY New York 061 40.7808 -73.9772 +US 10257 New York City New York NY New York 061 40.7808 -73.9772 +US 10258 New York City New York NY New York 061 40.7808 -73.9772 +US 10259 New York City New York NY New York 061 40.7808 -73.9772 +US 10260 New York City New York NY New York 061 40.7808 -73.9772 +US 10261 New York City New York NY New York 061 40.7808 -73.9772 +US 10265 New York City New York NY New York 061 40.7808 -73.9772 +US 10268 New York City New York NY New York 061 40.7808 -73.9772 +US 10269 New York City New York NY New York 061 40.7808 -73.9772 +US 10270 New York City New York NY New York 061 40.7069 -74.0082 +US 10271 New York City New York NY New York 061 40.7089 -74.0111 +US 10272 New York City New York NY New York 061 40.7808 -73.9772 +US 10273 New York City New York NY New York 061 40.7808 -73.9772 +US 10274 New York City New York NY New York 061 40.7808 -73.9772 +US 10275 New York City New York NY New York 061 40.7808 -73.9772 +US 10276 New York City New York NY New York 061 40.7808 -73.9772 +US 10277 New York City New York NY New York 061 40.7808 -73.9772 +US 10278 New York City New York NY New York 061 40.7152 -74.0038 +US 10279 New York City New York NY New York 061 40.7127 -74.0078 +US 10280 New York City New York NY New York 061 40.7105 -74.0163 +US 10281 New York City New York NY New York 061 40.7146 -74.015 +US 10282 New York City New York NY New York 061 40.7166 -74.0146 +US 10285 New York City New York NY New York 061 40.7153 -74.0163 +US 10286 New York City New York NY New York 061 40.7142 -74.0119 +US 10292 New York City New York NY New York 061 40.7808 -73.9772 +US 14008 Appleton New York NY Niagara 063 43.3105 -78.6372 +US 14012 Barker New York NY Niagara 063 43.3368 -78.542 +US 14028 Burt New York NY Niagara 063 43.3221 -78.7141 +US 14067 Gasport New York NY Niagara 063 43.2106 -78.5745 +US 14092 Lewiston New York NY Niagara 063 43.1722 -79.0215 +US 14094 Lockport New York NY Niagara 063 43.16 -78.6923 +US 14095 Lockport New York NY Niagara 063 43.3268 -78.8307 +US 14105 Middleport New York NY Niagara 063 43.2183 -78.4841 +US 14107 Model City New York NY Niagara 063 43.3268 -78.8307 +US 14108 Newfane New York NY Niagara 063 43.2724 -78.707 +US 14109 Niagara University New York NY Niagara 063 43.138 -79.0342 +US 14120 North Tonawanda New York NY Niagara 063 43.0498 -78.851 +US 14126 Olcott New York NY Niagara 063 43.3304 -78.7267 +US 14131 Ransomville New York NY Niagara 063 43.2286 -78.8982 +US 14132 Sanborn New York NY Niagara 063 43.1419 -78.8785 +US 14144 Stella Niagara New York NY Niagara 063 43.1995 -79.0425 +US 14172 Wilson New York NY Niagara 063 43.2968 -78.8244 +US 14174 Youngstown New York NY Niagara 063 43.2461 -79.0245 +US 14301 Niagara Falls New York NY Niagara 063 43.0955 -79.0414 +US 14302 Niagara Falls New York NY Niagara 063 43.3268 -78.8307 +US 14303 Niagara Falls New York NY Niagara 063 43.0878 -79.037 +US 14304 Niagara Falls New York NY Niagara 063 43.0908 -78.9644 +US 14305 Niagara Falls New York NY Niagara 063 43.1146 -79.0378 +US 13054 Durhamville New York NY Oneida 065 43.1579 -75.6714 +US 13123 North Bay New York NY Oneida 065 43.2364 -75.7769 +US 13157 Sylvan Beach New York NY Oneida 065 43.2091 -75.7231 +US 13162 Verona Beach New York NY Oneida 065 43.1885 -75.7126 +US 13301 Alder Creek New York NY Oneida 065 43.4157 -75.2137 +US 13303 Ava New York NY Oneida 065 43.3445 -75.4509 +US 13304 Barneveld New York NY Oneida 065 43.2237 -75.1612 +US 13308 Blossvale New York NY Oneida 065 43.2303 -75.6873 +US 13309 Boonville New York NY Oneida 065 43.4786 -75.344 +US 13313 Bridgewater New York NY Oneida 065 42.8792 -75.2672 +US 13316 Camden New York NY Oneida 065 43.3392 -75.7543 +US 13318 Cassville New York NY Oneida 065 42.9069 -75.2607 +US 13319 Chadwicks New York NY Oneida 065 43.0226 -75.2656 +US 13321 Clark Mills New York NY Oneida 065 43.09 -75.3871 +US 13322 Clayville New York NY Oneida 065 42.9712 -75.2061 +US 13323 Clinton New York NY Oneida 065 43.0586 -75.3808 +US 13328 Deansboro New York NY Oneida 065 42.9818 -75.4383 +US 13336 Middleville New York NY Oneida County 065 43.1372 -74.9134 +US 13338 Forestport New York NY Oneida 065 43.4737 -75.1787 +US 13341 Franklin Springs New York NY Oneida 065 43.0361 -75.3962 +US 13352 Hinckley New York NY Oneida 065 43.3126 -75.1169 +US 13354 Holland Patent New York NY Oneida 065 43.2484 -75.2535 +US 13362 Knoxboro New York NY Oneida 065 42.9803 -75.5186 +US 13363 Lee Center New York NY Oneida 065 43.3148 -75.5055 +US 13401 Mc Connellsville New York NY Oneida 065 43.2672 -75.6882 +US 13403 Marcy New York NY Oneida 065 43.1639 -75.2783 +US 13413 New Hartford New York NY Oneida 065 43.0654 -75.2906 +US 13417 New York Mills New York NY Oneida 065 43.1 -75.2937 +US 13419 North Western New York NY Oneida County 065 43.3422 -75.3639 +US 13424 Oriskany New York NY Oneida 065 43.1524 -75.3434 +US 13425 Oriskany Falls New York NY Oneida 065 42.9576 -75.4838 +US 13435 Prospect New York NY Oneida 065 43.3052 -75.1502 +US 13438 Remsen New York NY Oneida 065 43.3385 -75.1616 +US 13440 Rome New York NY Oneida 065 43.2193 -75.4498 +US 13441 Rome New York NY Oneida 065 43.2264 -75.4083 +US 13442 Rome New York NY Oneida 065 43.2393 -75.478 +US 13449 Rome New York NY Oneida 065 43.2393 -75.478 +US 13455 Sangerfield New York NY Oneida 065 42.9162 -75.3545 +US 13456 Sauquoit New York NY Oneida 065 43.0073 -75.2626 +US 13461 Sherrill New York NY Oneida 065 43.0704 -75.599 +US 13469 Stittville New York NY Oneida 065 43.2229 -75.2899 +US 13471 Taberg New York NY Oneida 065 43.3366 -75.6027 +US 13476 Vernon New York NY Oneida 065 43.0945 -75.5627 +US 13477 Vernon Center New York NY Oneida 065 43.0443 -75.521 +US 13478 Verona New York NY Oneida 065 43.1473 -75.5724 +US 13479 Washington Mills New York NY Oneida 065 43.0538 -75.2716 +US 13480 Waterville New York NY Oneida 065 42.9332 -75.3815 +US 13483 Westdale New York NY Oneida 065 43.4117 -75.8226 +US 13486 Westernville New York NY Oneida 065 43.3294 -75.3151 +US 13490 Westmoreland New York NY Oneida 065 43.1017 -75.4533 +US 13492 Whitesboro New York NY Oneida 065 43.1158 -75.3095 +US 13494 Woodgate New York NY Oneida 065 43.5249 -75.1428 +US 13495 Yorkville New York NY Oneida 065 43.1116 -75.2756 +US 13501 Utica New York NY Oneida 065 43.0871 -75.2315 +US 13502 Utica New York NY Oneida 065 43.1067 -75.2314 +US 13503 Utica New York NY Oneida 065 43.1019 -75.2312 +US 13504 Utica New York NY Oneida 065 43.136 -75.4325 +US 13505 Utica New York NY Oneida 065 43.0872 -75.2603 +US 13599 Utica New York NY Oneida 065 43.2393 -75.478 +US 13020 Apulia Station New York NY Onondaga 067 42.824 -76.0624 +US 13027 Baldwinsville New York NY Onondaga 067 43.162 -76.3237 +US 13029 Brewerton New York NY Onondaga 067 43.2252 -76.1351 +US 13030 Bridgeport New York NY Onondaga 067 43.159 -75.97 +US 13031 Camillus New York NY Onondaga 067 43.0417 -76.2807 +US 13039 Cicero New York NY Onondaga 067 43.1707 -76.0962 +US 13041 Clay New York NY Onondaga 067 43.1737 -76.1707 +US 13051 Delphi Falls New York NY Onondaga 067 42.8707 -75.9113 +US 13057 East Syracuse New York NY Onondaga 067 43.0734 -76.0558 +US 13060 Elbridge New York NY Onondaga 067 43.0252 -76.4352 +US 13063 Fabius New York NY Onondaga 067 42.8531 -75.9836 +US 13066 Fayetteville New York NY Onondaga 067 43.0268 -76.0145 +US 13078 Jamesville New York NY Onondaga 067 42.983 -76.0766 +US 13080 Jordan New York NY Onondaga 067 43.0651 -76.4598 +US 13082 Kirkville New York NY Onondaga 067 43.0981 -75.955 +US 13084 La Fayette New York NY Onondaga 067 42.891 -76.1061 +US 13088 Liverpool New York NY Onondaga 067 43.1099 -76.187 +US 13089 Liverpool New York NY Onondaga 067 43.0214 -76.1977 +US 13090 Liverpool New York NY Onondaga 067 43.1528 -76.2235 +US 13104 Manlius New York NY Onondaga 067 42.9904 -75.9703 +US 13108 Marcellus New York NY Onondaga 067 42.9821 -76.3323 +US 13110 Marietta New York NY Onondaga 067 42.8974 -76.2806 +US 13112 Memphis New York NY Onondaga 067 43.0934 -76.403 +US 13116 Minoa New York NY Onondaga 067 43.0772 -76.0098 +US 13119 Mottville New York NY Onondaga 067 42.9745 -76.4408 +US 13120 Nedrow New York NY Onondaga 067 42.9559 -76.1529 +US 13125 Manlius New York NY Onondaga County 067 42.978 -75.9332 +US 13137 Plainville New York NY Onondaga 067 43.1577 -76.447 +US 13138 Pompey New York NY Onondaga 067 42.8927 -76.0265 +US 13152 Skaneateles New York NY Onondaga 067 42.9258 -76.4052 +US 13153 Skaneateles Falls New York NY Onondaga 067 42.9911 -76.4511 +US 13159 Tully New York NY Onondaga 067 42.807 -76.1394 +US 13164 Warners New York NY Onondaga 067 43.0932 -76.2904 +US 13201 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13202 Syracuse New York NY Onondaga 067 43.041 -76.1489 +US 13203 Syracuse New York NY Onondaga 067 43.0607 -76.1369 +US 13204 Syracuse New York NY Onondaga 067 43.0444 -76.1758 +US 13205 Syracuse New York NY Onondaga 067 43.0123 -76.1452 +US 13206 Syracuse New York NY Onondaga 067 43.0677 -76.1102 +US 13207 Syracuse New York NY Onondaga 067 43.0195 -76.165 +US 13208 Syracuse New York NY Onondaga 067 43.073 -76.1486 +US 13209 Syracuse New York NY Onondaga 067 43.0847 -76.2405 +US 13210 Syracuse New York NY Onondaga 067 43.0354 -76.1282 +US 13211 Syracuse New York NY Onondaga 067 43.1036 -76.1195 +US 13212 Syracuse New York NY Onondaga 067 43.1226 -76.1284 +US 13214 Syracuse New York NY Onondaga 067 43.0397 -76.0722 +US 13215 Syracuse New York NY Onondaga 067 42.9722 -76.2276 +US 13217 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13218 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13219 Syracuse New York NY Onondaga 067 43.0409 -76.2262 +US 13220 Syracuse New York NY Onondaga 067 43.1234 -76.1282 +US 13221 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13224 Syracuse New York NY Onondaga 067 43.0421 -76.1046 +US 13225 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13235 Syracuse New York NY Onondaga County 067 43.0559 -76.1526 +US 13244 Syracuse New York NY Onondaga 067 43.0377 -76.1396 +US 13250 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13251 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13252 Syracuse New York NY Onondaga 067 43.051 -76.1567 +US 13260 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13261 Syracuse New York NY Onondaga 067 43.0214 -76.1977 +US 13290 Syracuse New York NY Onondaga 067 43.0676 -76.1714 +US 14424 Canandaigua New York NY Ontario 069 42.8689 -77.2846 +US 14425 Farmington New York NY Ontario 069 42.958 -77.3083 +US 14432 Clifton Springs New York NY Ontario 069 42.9632 -77.144 +US 14443 East Bloomfield New York NY Ontario 069 42.901 -77.4233 +US 14453 Fishers New York NY Ontario 069 43.0109 -77.4705 +US 14456 Geneva New York NY Ontario 069 42.8637 -76.9913 +US 14461 Gorham New York NY Ontario 069 42.8081 -77.2876 +US 14463 Hall New York NY Ontario 069 42.7966 -77.0639 +US 14469 Bloomfield New York NY Ontario 069 42.8851 -77.46 +US 14471 Honeoye New York NY Ontario 069 42.7686 -77.5054 +US 14475 Ionia New York NY Ontario 069 42.938 -77.5009 +US 14504 Manchester New York NY Ontario 069 42.9689 -77.2332 +US 14512 Naples New York NY Ontario 069 42.6404 -77.3901 +US 14518 Oaks Corners New York NY Ontario 069 42.9319 -77.0118 +US 14532 Phelps New York NY Ontario 069 42.9582 -77.0473 +US 14537 Port Gibson New York NY Ontario 069 43.033 -77.1575 +US 14547 Seneca Castle New York NY Ontario 069 42.8081 -77.2876 +US 14548 Shortsville New York NY Ontario 069 42.9761 -77.2439 +US 14561 Stanley New York NY Ontario 069 42.8303 -77.1207 +US 14564 Victor New York NY Ontario 069 42.9866 -77.418 +US 14585 West Bloomfield New York NY Ontario 069 42.9063 -77.5531 +US 10910 Arden New York NY Orange 071 41.3862 -74.1257 +US 10912 Bellvale New York NY Orange 071 41.3878 -74.3547 +US 10914 Blooming Grove New York NY Orange 071 41.4649 -74.2556 +US 10915 Bullville New York NY Orange 071 41.5556 -74.3288 +US 10916 Campbell Hall New York NY Orange 071 41.443 -74.2505 +US 10917 Central Valley New York NY Orange 071 41.3268 -74.122 +US 10918 Chester New York NY Orange 071 41.3554 -74.2651 +US 10919 Circleville New York NY Orange 071 41.5244 -74.385 +US 10921 Florida New York NY Orange 071 41.3295 -74.3528 +US 10922 Fort Montgomery New York NY Orange 071 41.3346 -73.9917 +US 10924 Goshen New York NY Orange 071 41.3946 -74.3302 +US 10925 Greenwood Lake New York NY Orange 071 41.2101 -74.3033 +US 10926 Harriman New York NY Orange 071 41.3005 -74.1249 +US 10928 Highland Falls New York NY Orange 071 41.3582 -73.9746 +US 10930 Highland Mills New York NY Orange 071 41.3536 -74.1197 +US 10932 Howells New York NY Orange 071 41.4852 -74.4842 +US 10933 Johnson New York NY Orange 071 41.3653 -74.5109 +US 10940 Middletown New York NY Orange 071 41.4512 -74.4701 +US 10941 Middletown New York NY Orange 071 41.4886 -74.345 +US 10943 Middletown New York NY Orange 071 41.3878 -74.3547 +US 10949 Monroe New York NY Orange County 071 41.3274 -74.1911 +US 10950 Monroe New York NY Orange 071 41.3286 -74.1885 +US 10953 Mountainville New York NY Orange 071 41.4093 -74.083 +US 10958 New Hampton New York NY Orange 071 41.3627 -74.4435 +US 10959 New Milford New York NY Orange 071 41.3878 -74.3547 +US 10963 Otisville New York NY Orange 071 41.4818 -74.5294 +US 10969 Pine Island New York NY Orange 071 41.2926 -74.4888 +US 10973 Slate Hill New York NY Orange 071 41.376 -74.4847 +US 10975 Southfields New York NY Orange 071 41.248 -74.1762 +US 10979 Sterling Forest New York NY Orange 071 41.1823 -74.3184 +US 10981 Sugar Loaf New York NY Orange 071 41.3232 -74.2886 +US 10985 Thompson Ridge New York NY Orange 071 41.575 -74.3225 +US 10987 Tuxedo Park New York NY Orange 071 41.1925 -74.2159 +US 10988 Unionville New York NY Orange 071 41.3149 -74.5503 +US 10990 Warwick New York NY Orange 071 41.2656 -74.3604 +US 10992 Washingtonville New York NY Orange 071 41.4237 -74.1601 +US 10996 West Point New York NY Orange 071 41.3945 -73.9737 +US 10997 West Point New York NY Orange 071 41.3878 -74.3547 +US 10998 Westtown New York NY Orange 071 41.3214 -74.5529 +US 12518 Cornwall New York NY Orange 071 41.4162 -74.0395 +US 12520 Cornwall On Hudson New York NY Orange 071 41.433 -74.0061 +US 12543 Maybrook New York NY Orange 071 41.4886 -74.2163 +US 12549 Montgomery New York NY Orange 071 41.5333 -74.2534 +US 12550 Newburgh New York NY Orange 071 41.5372 -74.0526 +US 12551 Newburgh New York NY Orange 071 41.3878 -74.3547 +US 12552 Newburgh New York NY Orange 071 41.3878 -74.3547 +US 12553 New Windsor New York NY Orange 071 41.4724 -74.0566 +US 12555 Mid Hudson New York NY Orange 071 41.3878 -74.3547 +US 12566 Pine Bush New York NY Orange 071 41.6178 -74.3263 +US 12575 Rock Tavern New York NY Orange 071 41.4575 -74.1659 +US 12577 Salisbury Mills New York NY Orange 071 41.4497 -74.1214 +US 12584 Vails Gate New York NY Orange 071 41.4641 -74.0591 +US 12586 Walden New York NY Orange 071 41.5596 -74.1764 +US 12729 Cuddebackville New York NY Orange 071 41.4776 -74.5976 +US 12739 Godeffroy New York NY Orange 071 41.4423 -74.6057 +US 12746 Huguenot New York NY Orange 071 41.4372 -74.6426 +US 12771 Port Jervis New York NY Orange 071 41.3786 -74.6691 +US 12780 Sparrow Bush New York NY Orange 071 41.4443 -74.7213 +US 14098 Lyndonville New York NY Orleans 073 43.3233 -78.3811 +US 14103 Medina New York NY Orleans 073 43.2184 -78.3874 +US 14411 Albion New York NY Orleans 073 43.2398 -78.2068 +US 14429 Clarendon New York NY Orleans 073 43.381 -78.2313 +US 14442 Eagle Harbor New York NY Orleans County 073 43.2533 -78.2532 +US 14452 Fancher New York NY Orleans 073 43.381 -78.2313 +US 14470 Holley New York NY Orleans 073 43.2159 -78.0731 +US 14476 Kendall New York NY Orleans 073 43.3284 -78.0304 +US 14477 Kent New York NY Orleans 073 43.3341 -78.1355 +US 14479 Knowlesville New York NY Orleans 073 43.2363 -78.3138 +US 14508 Morton New York NY Orleans 073 43.381 -78.2313 +US 14571 Waterport New York NY Orleans 073 43.3326 -78.243 +US 13028 Bernhards Bay New York NY Oswego 075 43.2717 -75.9373 +US 13036 Central Square New York NY Oswego 075 43.309 -76.1849 +US 13042 Cleveland New York NY Oswego 075 43.2432 -75.8537 +US 13044 Constantia New York NY Oswego 075 43.2728 -76.0042 +US 13064 Fair Haven New York NY Oswego 075 43.4313 -76.2004 +US 13069 Fulton New York NY Oswego 075 43.3211 -76.4034 +US 13074 Hannibal New York NY Oswego 075 43.3111 -76.546 +US 13076 Hastings New York NY Oswego 075 43.3527 -76.1477 +US 13083 Lacona New York NY Oswego 075 43.6429 -76.0503 +US 13093 Lycoming New York NY Oswego 075 43.4313 -76.2004 +US 13094 Lysander New York NY Oswego County 075 43.2063 -76.4593 +US 13103 Mallory New York NY Oswego 075 43.3399 -76.0964 +US 13107 Maple View New York NY Oswego 075 43.4578 -76.1534 +US 13114 Mexico New York NY Oswego 075 43.4605 -76.2446 +US 13115 Minetto New York NY Oswego 075 43.3977 -76.4824 +US 13121 New Haven New York NY Oswego 075 43.4834 -76.315 +US 13126 Oswego New York NY Oswego 075 43.4394 -76.4613 +US 13131 Parish New York NY Oswego 075 43.4153 -76.1 +US 13132 Pennellville New York NY Oswego 075 43.2609 -76.2395 +US 13135 Phoenix New York NY Oswego 075 43.2468 -76.3064 +US 13142 Pulaski New York NY Oswego 075 43.5562 -76.1252 +US 13144 Richland New York NY Oswego 075 43.5776 -76.0029 +US 13145 Sandy Creek New York NY Oswego 075 43.6517 -76.1264 +US 13167 West Monroe New York NY Oswego 075 43.2882 -76.0797 +US 13302 Altmar New York NY Oswego 075 43.497 -75.9719 +US 13426 Orwell New York NY Oswego 075 43.5628 -75.9968 +US 13437 Redfield New York NY Oswego 075 43.5658 -75.8242 +US 13493 Williamstown New York NY Oswego 075 43.4106 -75.9044 +US 12064 East Worcester New York NY Otsego 077 42.6321 -74.6674 +US 12116 Maryland New York NY Otsego 077 42.5371 -74.903 +US 12155 Schenevus New York NY Otsego 077 42.59 -74.8149 +US 12197 Worcester New York NY Otsego 077 42.6049 -74.7299 +US 13315 Burlington Flats New York NY Otsego 077 42.7516 -75.169 +US 13320 Cherry Valley New York NY Otsego 077 42.7823 -74.7444 +US 13326 Cooperstown New York NY Otsego 077 42.7032 -74.9181 +US 13333 East Springfield New York NY Otsego 077 42.8336 -74.8233 +US 13335 Edmeston New York NY Otsego 077 42.7303 -75.2525 +US 13337 Fly Creek New York NY Otsego 077 42.7252 -74.9869 +US 13342 Garrattsville New York NY Otsego 077 42.6315 -75.1866 +US 13348 Hartwick New York NY Otsego 077 42.695 -75.055 +US 13415 New Lisbon New York NY Otsego 077 42.5904 -75.1957 +US 13439 Richfield Springs New York NY Otsego 077 42.8402 -74.9716 +US 13450 Roseboom New York NY Otsego 077 42.708 -74.8025 +US 13457 Schuyler Lake New York NY Otsego 077 42.7758 -75.0485 +US 13466 South Edmeston New York NY Otsego County 077 42.6709 -75.2576 +US 13468 Springfield Center New York NY Otsego 077 42.8388 -74.859 +US 13482 West Burlington New York NY Otsego 077 42.7043 -75.1849 +US 13485 West Edmeston New York NY Otsego 077 42.7868 -75.3149 +US 13488 Westford New York NY Otsego 077 42.6809 -74.7653 +US 13747 Colliersville New York NY Otsego 077 42.5051 -74.9821 +US 13776 Gilbertsville New York NY Otsego 077 42.433 -75.3609 +US 13796 Laurens New York NY Otsego 077 42.5383 -75.1279 +US 13807 Milford New York NY Otsego 077 42.6148 -74.9685 +US 13808 Morris New York NY Otsego 077 42.5478 -75.2448 +US 13810 Mount Vision New York NY Otsego 077 42.6068 -75.1264 +US 13820 Oneonta New York NY Otsego 077 42.4625 -75.0491 +US 13825 Otego New York NY Otsego 077 42.4133 -75.2079 +US 13834 Portlandville New York NY Otsego 077 42.5394 -74.967 +US 13849 Unadilla New York NY Otsego 077 42.3252 -75.3366 +US 13859 Wells Bridge New York NY Otsego 077 42.3709 -75.2486 +US 13861 West Oneonta New York NY Otsego 077 42.5011 -75.1409 +US 10509 Brewster New York NY Putnam 079 41.4097 -73.5992 +US 10512 Carmel New York NY Putnam 079 41.4432 -73.6815 +US 10516 Cold Spring New York NY Putnam 079 41.4414 -73.9335 +US 10524 Garrison New York NY Putnam 079 41.3621 -73.92 +US 10537 Lake Peekskill New York NY Putnam 079 41.3374 -73.8838 +US 10541 Mahopac New York NY Putnam 079 41.3717 -73.7508 +US 10542 Mahopac Falls New York NY Putnam 079 41.3726 -73.7601 +US 10579 Putnam Valley New York NY Putnam 079 41.3728 -73.8502 +US 12563 Patterson New York NY Putnam 079 41.4888 -73.5815 +US 11004 Glen Oaks New York NY Queens 081 40.7481 -73.7114 +US 11005 Floral Park New York NY Queens 081 40.7571 -73.7182 +US 11101 Long Island City New York NY Queens 081 40.7446 -73.9345 +US 11102 Astoria New York NY Queens 081 40.7706 -73.9265 +US 11103 Astoria New York NY Queens 081 40.7627 -73.9149 +US 11104 Sunnyside New York NY Queens 081 40.7436 -73.9216 +US 11105 Astoria New York NY Queens 081 40.7763 -73.911 +US 11106 Astoria New York NY Queens 081 40.7608 -73.9295 +US 11109 Long Island City New York NY Queens 081 40.7454 -73.9575 +US 11120 Long Island City New York NY Queens 081 40.6514 -73.8708 +US 11351 Flushing New York NY Queens 081 40.7817 -73.8317 +US 11352 Flushing New York NY Queens 081 40.6514 -73.8708 +US 11353 Flushing New York NY Queens 081 40.6514 -73.8708 +US 11354 Flushing New York NY Queens 081 40.7667 -73.8241 +US 11355 Flushing New York NY Queens 081 40.7536 -73.8226 +US 11356 College Point New York NY Queens 081 40.7855 -73.845 +US 11357 Whitestone New York NY Queens 081 40.7851 -73.8096 +US 11358 Flushing New York NY Queens 081 40.7606 -73.7968 +US 11359 Bayside New York NY Queens 081 40.7928 -73.7767 +US 11360 Bayside New York NY Queens 081 40.7807 -73.7812 +US 11361 Bayside New York NY Queens 081 40.7627 -73.7745 +US 11362 Little Neck New York NY Queens 081 40.7591 -73.7326 +US 11363 Little Neck New York NY Queens 081 40.7722 -73.7454 +US 11364 Oakland Gardens New York NY Queens 081 40.7428 -73.7588 +US 11365 Fresh Meadows New York NY Queens 081 40.7374 -73.7951 +US 11366 Fresh Meadows New York NY Queens 081 40.7272 -73.7949 +US 11367 Flushing New York NY Queens 081 40.728 -73.8195 +US 11368 Corona New York NY Queens 081 40.7453 -73.8611 +US 11369 East Elmhurst New York NY Queens 081 40.7613 -73.8739 +US 11370 East Elmhurst New York NY Queens 081 40.7611 -73.8916 +US 11371 Flushing New York NY Queens 081 40.7721 -73.8735 +US 11372 Jackson Heights New York NY Queens 081 40.7513 -73.883 +US 11373 Elmhurst New York NY Queens 081 40.7351 -73.8776 +US 11374 Rego Park New York NY Queens 081 40.7278 -73.8602 +US 11375 Forest Hills New York NY Queens 081 40.7229 -73.8473 +US 11377 Woodside New York NY Queens 081 40.745 -73.9069 +US 11378 Maspeth New York NY Queens 081 40.7239 -73.8997 +US 11379 Middle Village New York NY Queens 081 40.7173 -73.8792 +US 11380 Elmhurst New York NY Queens 081 40.6514 -73.8708 +US 11381 Flushing New York NY Queens 081 40.6514 -73.8708 +US 11385 Ridgewood New York NY Queens 081 40.7036 -73.8961 +US 11386 Ridgewood New York NY Queens 081 40.6514 -73.8708 +US 11388 Flushing New York NY Queens 081 40.6514 -73.8708 +US 11390 Flushing New York NY Queens 081 40.6514 -73.8708 +US 11402 Jamaica New York NY Queens County 081 40.6913 -73.8059 +US 11405 Jamaica New York NY Queens 081 40.6514 -73.8708 +US 11407 Jamaica New York NY Queens County 081 40.6913 -73.8059 +US 11410 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11411 Cambria Heights New York NY Queens 081 40.6947 -73.7374 +US 11412 Saint Albans New York NY Queens 081 40.6958 -73.7617 +US 11413 Springfield Gardens New York NY Queens 081 40.6645 -73.7559 +US 11414 Howard Beach New York NY Queens 081 40.6588 -73.8438 +US 11415 Kew Gardens New York NY Queens 081 40.7069 -73.8297 +US 11416 Ozone Park New York NY Queens 081 40.6838 -73.8514 +US 11417 Ozone Park New York NY Queens 081 40.6769 -73.8448 +US 11418 Richmond Hill New York NY Queens 081 40.6982 -73.8345 +US 11419 South Richmond Hill New York NY Queens 081 40.6868 -73.823 +US 11420 South Ozone Park New York NY Queens 081 40.6744 -73.819 +US 11421 Woodhaven New York NY Queens 081 40.6913 -73.8585 +US 11422 Rosedale New York NY Queens 081 40.6621 -73.7353 +US 11423 Hollis New York NY Queens 081 40.7142 -73.7677 +US 11424 Jamaica New York NY Queens 081 40.6514 -73.8708 +US 11425 Jamaica New York NY Queens 081 40.6514 -73.8708 +US 11426 Bellerose New York NY Queens 081 40.7347 -73.723 +US 11427 Queens Village New York NY Queens 081 40.7277 -73.7489 +US 11428 Queens Village New York NY Queens 081 40.7208 -73.7433 +US 11429 Queens Village New York NY Queens 081 40.709 -73.7401 +US 11430 Jamaica New York NY Queens 081 40.6472 -73.7827 +US 11431 Jamaica New York NY Queens 081 40.6869 -73.8501 +US 11432 Jamaica New York NY Queens 081 40.7119 -73.7944 +US 11433 Jamaica New York NY Queens 081 40.6969 -73.7877 +US 11434 Jamaica New York NY Queens 081 40.6775 -73.7758 +US 11435 Jamaica New York NY Queens 081 40.7029 -73.8111 +US 11436 Jamaica New York NY Queens 081 40.6763 -73.7966 +US 11439 Jamaica New York NY Queens 081 40.722 -73.7908 +US 11440 Jamaica New York NY Queens County 081 40.6913 -73.8059 +US 11441 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11446 Jamaica New York NY Queens County 081 40.6913 -73.8059 +US 11447 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11450 Jamaica New York NY Queens County 081 40.6913 -73.8059 +US 11451 Jamaica New York NY Queens 081 40.6514 -73.8708 +US 11452 Jamaica New York NY Queens County 081 40.6913 -73.8059 +US 11460 Jamaica New York NY Queens County 081 40.6913 -73.8059 +US 11470 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11472 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11474 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11476 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11478 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11480 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11482 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11484 Jamaica New York NY Queens 081 40.6514 -73.8708 +US 11486 Jamaica New York NY Queens County 081 40.6913 -73.8059 +US 11488 Jamaica New York NY Queens County 081 40.6914 -73.8061 +US 11499 Jamaica New York NY Queens 081 40.6514 -73.8708 +US 11690 Far Rockaway New York NY Queens 081 40.6514 -73.8708 +US 11691 Far Rockaway New York NY Queens 081 40.6006 -73.758 +US 11692 Arverne New York NY Queens 081 40.5923 -73.7933 +US 11693 Far Rockaway New York NY Queens 081 40.6076 -73.8198 +US 11694 Rockaway Park New York NY Queens 081 40.5766 -73.8428 +US 11695 Far Rockaway New York NY Queens 081 40.6514 -73.8708 +US 11696 Inwood New York NY Queens 081 40.6514 -73.8708 +US 11697 Breezy Point New York NY Queens 081 40.5594 -73.9067 +US 12018 Averill Park New York NY Rensselaer 083 42.6365 -73.5504 +US 12022 Berlin New York NY Rensselaer 083 42.6919 -73.3702 +US 12024 Brainard New York NY Rensselaer 083 42.495 -73.5107 +US 12026 Brookview New York NY Rensselaer County 083 42.5411 -73.72 +US 12028 Buskirk New York NY Rensselaer 083 42.9601 -73.4497 +US 12033 Castleton On Hudson New York NY Rensselaer 083 42.5376 -73.7071 +US 12040 Cherry Plain New York NY Rensselaer 083 42.6467 -73.3716 +US 12052 Cropseyville New York NY Rensselaer 083 42.7667 -73.4719 +US 12061 East Greenbush New York NY Rensselaer 083 42.5951 -73.6826 +US 12062 East Nassau New York NY Rensselaer 083 42.5352 -73.4984 +US 12063 East Schodack New York NY Rensselaer 083 42.5637 -73.6274 +US 12082 Grafton New York NY Rensselaer 083 42.7726 -73.4468 +US 12089 Hoosick New York NY Rensselaer 083 42.8667 -73.3181 +US 12090 Hoosick Falls New York NY Rensselaer 083 42.8937 -73.3581 +US 12094 Johnsonville New York NY Rensselaer 083 42.8769 -73.4989 +US 12121 Melrose New York NY Rensselaer 083 42.8412 -73.6077 +US 12123 Nassau New York NY Rensselaer 083 42.5271 -73.6118 +US 12133 North Hoosick New York NY Rensselaer 083 42.9261 -73.3464 +US 12138 Petersburg New York NY Rensselaer 083 42.6859 -73.3906 +US 12140 Poestenkill New York NY Rensselaer 083 42.6918 -73.5627 +US 12144 Rensselaer New York NY Rensselaer 083 42.6359 -73.7219 +US 12153 Sand Lake New York NY Rensselaer 083 42.6379 -73.4989 +US 12154 Schaghticoke New York NY Rensselaer 083 42.9144 -73.6154 +US 12156 Schodack Landing New York NY Rensselaer 083 42.4816 -73.748 +US 12162 South Schodack New York NY Rensselaer 083 42.5139 -73.7024 +US 12168 Stephentown New York NY Rensselaer 083 42.5233 -73.4224 +US 12169 Stephentown New York NY Rensselaer 083 42.5855 -73.4154 +US 12179 Troy New York NY Rensselaer 083 42.7114 -73.5256 +US 12180 Troy New York NY Rensselaer 083 42.7287 -73.6683 +US 12181 Troy New York NY Rensselaer 083 42.7387 -73.6739 +US 12182 Troy New York NY Rensselaer 083 42.7829 -73.6648 +US 12185 Valley Falls New York NY Rensselaer 083 42.8855 -73.5437 +US 12196 West Sand Lake New York NY Rensselaer 083 42.638 -73.6109 +US 12198 Wynantskill New York NY Rensselaer 083 42.6878 -73.6383 +US 10301 Staten Island New York NY Richmond 085 40.6316 -74.0927 +US 10302 Staten Island New York NY Richmond 085 40.6306 -74.1379 +US 10303 Staten Island New York NY Richmond 085 40.6301 -74.1607 +US 10304 Staten Island New York NY Richmond 085 40.6102 -74.0878 +US 10305 Staten Island New York NY Richmond 085 40.5973 -74.0768 +US 10306 Staten Island New York NY Richmond 085 40.5682 -74.1184 +US 10307 Staten Island New York NY Richmond 085 40.5085 -74.2445 +US 10308 Staten Island New York NY Richmond 085 40.5518 -74.1526 +US 10309 Staten Island New York NY Richmond 085 40.5352 -74.2116 +US 10310 Staten Island New York NY Richmond 085 40.6324 -74.1171 +US 10311 Staten Island New York NY Richmond 085 40.6052 -74.1795 +US 10312 Staten Island New York NY Richmond 085 40.5457 -74.1792 +US 10313 Staten Island New York NY Richmond 085 40.5644 -74.1468 +US 10314 Staten Island New York NY Richmond 085 40.6039 -74.1472 +US 10901 Suffern New York NY Rockland 087 41.1177 -74.1241 +US 10911 Bear Mountain New York NY Rockland 087 41.1609 -74.0608 +US 10913 Blauvelt New York NY Rockland 087 41.0626 -73.9629 +US 10920 Congers New York NY Rockland 087 41.1487 -73.9413 +US 10923 Garnerville New York NY Rockland 087 41.2021 -74.0005 +US 10927 Haverstraw New York NY Rockland 087 41.1971 -73.969 +US 10931 Hillburn New York NY Rockland 087 41.124 -74.1702 +US 10952 Monsey New York NY Rockland 087 41.1163 -74.0736 +US 10954 Nanuet New York NY Rockland 087 41.0977 -74.0109 +US 10956 New City New York NY Rockland 087 41.1472 -73.9962 +US 10960 Nyack New York NY Rockland 087 41.0914 -73.9252 +US 10962 Orangeburg New York NY Rockland 087 41.0442 -73.9609 +US 10964 Palisades New York NY Rockland 087 41.0103 -73.925 +US 10965 Pearl River New York NY Rockland 087 41.0629 -74.0159 +US 10968 Piermont New York NY Rockland 087 41.0395 -73.9192 +US 10970 Pomona New York NY Rockland 087 41.1901 -74.0436 +US 10974 Sloatsburg New York NY Rockland 087 41.1575 -74.2008 +US 10976 Sparkill New York NY Rockland 087 41.0256 -73.9229 +US 10977 Spring Valley New York NY Rockland 087 41.1158 -74.0474 +US 10980 Stony Point New York NY Rockland 087 41.2292 -73.9962 +US 10982 Tallman New York NY Rockland 087 41.1609 -74.0608 +US 10983 Tappan New York NY Rockland 087 41.0278 -73.9491 +US 10984 Thiells New York NY Rockland 087 41.2078 -74.0154 +US 10986 Tomkins Cove New York NY Rockland 087 41.2598 -73.9892 +US 10989 Valley Cottage New York NY Rockland 087 41.1183 -73.943 +US 10993 West Haverstraw New York NY Rockland 087 41.209 -73.9821 +US 10994 West Nyack New York NY Rockland 087 41.0973 -73.9768 +US 10995 West Nyack New York NY Rockland 087 41.1609 -74.0608 +US 12922 Childwold New York NY St. Lawrence 089 44.2867 -74.6759 +US 12927 Cranberry Lake New York NY St. Lawrence 089 44.229 -74.8581 +US 12938 North Lawrence New York NY St. Lawrence County 089 44.6387 -74.5365 +US 12949 Lawrenceville New York NY St. Lawrence 089 44.7469 -74.6604 +US 12965 Nicholville New York NY St. Lawrence 089 44.703 -74.6805 +US 12967 North Lawrence New York NY St. Lawrence 089 44.775 -74.6653 +US 12973 Piercefield New York NY St. Lawrence 089 44.2343 -74.556 +US 13609 Balmat New York NY St. Lawrence County 089 44.2483 -75.3953 +US 13613 Brasher Falls New York NY St. Lawrence 089 44.8467 -74.7473 +US 13614 Brier Hill New York NY St. Lawrence 089 44.5525 -75.6722 +US 13617 Canton New York NY St. Lawrence 089 44.5924 -75.1628 +US 13621 Chase Mills New York NY St. Lawrence 089 44.8672 -75.073 +US 13623 Chippewa Bay New York NY St. Lawrence 089 44.4402 -75.7579 +US 13625 Colton New York NY St. Lawrence 089 44.5016 -74.9327 +US 13630 De Kalb Junction New York NY St. Lawrence 089 44.4896 -75.2871 +US 13633 De Peyster New York NY St. Lawrence 089 44.4989 -75.4772 +US 13635 Edwards New York NY St. Lawrence 089 44.311 -75.2522 +US 13639 Fine New York NY St. Lawrence 089 44.2541 -75.1379 +US 13642 Gouverneur New York NY St. Lawrence 089 44.3283 -75.4651 +US 13645 Hailesboro New York NY St. Lawrence 089 44.5331 -75.1929 +US 13646 Hammond New York NY St. Lawrence 089 44.4502 -75.6727 +US 13647 Hannawa Falls New York NY St. Lawrence 089 44.6087 -74.9732 +US 13649 Helena New York NY St. Lawrence 089 44.9217 -74.7068 +US 13652 Hermon New York NY St. Lawrence 089 44.4448 -75.1987 +US 13654 Heuvelton New York NY St. Lawrence 089 44.593 -75.4203 +US 13658 Lisbon New York NY St. Lawrence 089 44.7184 -75.2694 +US 13660 Madrid New York NY St. Lawrence 089 44.769 -75.1413 +US 13662 Massena New York NY St. Lawrence 089 44.9322 -74.8845 +US 13664 Morristown New York NY St. Lawrence 089 44.5843 -75.6453 +US 13666 Newton Falls New York NY St. Lawrence 089 44.2177 -74.9423 +US 13667 Norfolk New York NY St. Lawrence 089 44.8424 -74.9577 +US 13668 Norwood New York NY St. Lawrence 089 44.7472 -74.9992 +US 13669 Ogdensburg New York NY St. Lawrence 089 44.6902 -75.4774 +US 13670 Oswegatchie New York NY St. Lawrence 089 44.1933 -75.0659 +US 13672 Parishville New York NY St. Lawrence 089 44.5927 -74.7941 +US 13676 Potsdam New York NY St. Lawrence 089 44.6592 -74.9681 +US 13677 Pyrites New York NY St. Lawrence 089 44.6734 -75.082 +US 13678 Raymondville New York NY St. Lawrence 089 44.8287 -74.9798 +US 13680 Rensselaer Falls New York NY St. Lawrence 089 44.5943 -75.3237 +US 13681 Richville New York NY St. Lawrence 089 44.44 -75.3777 +US 13683 Rooseveltown New York NY St. Lawrence 089 44.5331 -75.1929 +US 13684 Russell New York NY St. Lawrence 089 44.3824 -75.1043 +US 13687 South Colton New York NY St. Lawrence 089 44.5041 -74.8607 +US 13690 Star Lake New York NY St. Lawrence 089 44.1578 -75.033 +US 13694 Waddington New York NY St. Lawrence 089 44.8564 -75.2049 +US 13695 Wanakena New York NY St. Lawrence 089 44.1408 -74.9125 +US 13696 West Stockholm New York NY St. Lawrence 089 44.6956 -74.9 +US 13697 Winthrop New York NY St. Lawrence 089 44.7583 -74.8066 +US 13699 Potsdam New York NY St. Lawrence 089 44.4966 -75.073 +US 12019 Ballston Lake New York NY Saratoga 091 42.9192 -73.8552 +US 12020 Ballston Spa New York NY Saratoga 091 43.005 -73.8486 +US 12027 Burnt Hills New York NY Saratoga 091 42.9329 -73.896 +US 12065 Clifton Park New York NY Saratoga 091 42.8499 -73.7851 +US 12074 Galway New York NY Saratoga 091 43.0217 -74.029 +US 12118 Mechanicville New York NY Saratoga 091 42.9168 -73.7214 +US 12148 Rexford New York NY Saratoga 091 42.8524 -73.8701 +US 12151 Round Lake New York NY Saratoga 091 42.9247 -73.7859 +US 12170 Stillwater New York NY Saratoga 091 43.0019 -73.6609 +US 12188 Waterford New York NY Saratoga 091 42.81 -73.6995 +US 12803 South Glens Falls New York NY Saratoga 091 43.2836 -73.6294 +US 12822 Corinth New York NY Saratoga 091 43.2426 -73.8369 +US 12831 Gansevoort New York NY Saratoga 091 43.1803 -73.7053 +US 12833 Greenfield Center New York NY Saratoga 091 43.1401 -73.8398 +US 12835 Hadley New York NY Saratoga 091 43.2876 -73.977 +US 12850 Middle Grove New York NY Saratoga 091 43.0975 -74.0167 +US 12859 Porter Corners New York NY Saratoga 091 43.1724 -73.8839 +US 12863 Rock City Falls New York NY Saratoga 091 43.0662 -73.9215 +US 12866 Saratoga Springs New York NY Saratoga 091 43.0708 -73.7408 +US 12871 Schuylerville New York NY Saratoga 091 43.0878 -73.6007 +US 12884 Victory Mills New York NY Saratoga 091 43.0884 -73.5917 +US 12008 Alplaus New York NY Schenectady 093 42.8573 -73.9002 +US 12053 Delanson New York NY Schenectady 093 42.748 -74.1868 +US 12056 Duanesburg New York NY Schenectady 093 42.7708 -74.0839 +US 12137 Pattersonville New York NY Schenectady 093 42.8499 -74.1231 +US 12141 Quaker Street New York NY Schenectady 093 42.7318 -74.1854 +US 12150 Rotterdam Junction New York NY Schenectady 093 42.87 -74.0501 +US 12301 Schenectady New York NY Schenectady 093 42.8333 -74.058 +US 12302 Schenectady New York NY Schenectady 093 42.88 -73.9913 +US 12303 Schenectady New York NY Schenectady 093 42.7823 -73.9448 +US 12304 Schenectady New York NY Schenectady 093 42.7841 -73.9094 +US 12305 Schenectady New York NY Schenectady 093 42.8161 -73.9398 +US 12306 Schenectady New York NY Schenectady 093 42.7904 -73.9809 +US 12307 Schenectady New York NY Schenectady 093 42.8047 -73.9363 +US 12308 Schenectady New York NY Schenectady 093 42.8179 -73.9206 +US 12309 Schenectady New York NY Schenectady 093 42.8091 -73.8693 +US 12325 Schenectady New York NY Schenectady 093 42.8333 -74.058 +US 12345 Schenectady New York NY Schenectady 093 42.8333 -74.058 +US 12031 Carlisle New York NY Schoharie 095 42.7648 -74.4569 +US 12035 Central Bridge New York NY Schoharie 095 42.737 -74.3451 +US 12036 Charlotteville New York NY Schoharie 095 42.533 -74.6819 +US 12043 Cobleskill New York NY Schoharie 095 42.684 -74.4939 +US 12071 Fultonham New York NY Schoharie 095 42.5923 -74.4381 +US 12073 Gallupville New York NY Schoharie 095 42.5923 -74.4381 +US 12076 Gilboa New York NY Schoharie 095 42.4108 -74.4003 +US 12092 Howes Cave New York NY Schoharie 095 42.7045 -74.3648 +US 12093 Jefferson New York NY Schoharie 095 42.4999 -74.6117 +US 12113 Lawyersville New York NY Schoharie County 095 42.6927 -74.5074 +US 12122 Middleburgh New York NY Schoharie 095 42.5637 -74.3292 +US 12131 North Blenheim New York NY Schoharie 095 42.4899 -74.4282 +US 12149 Richmondville New York NY Schoharie 095 42.6424 -74.571 +US 12157 Schoharie New York NY Schoharie 095 42.6615 -74.3047 +US 12160 Sloansville New York NY Schoharie 095 42.7599 -74.3642 +US 12175 Summit New York NY Schoharie 095 42.535 -74.5452 +US 12187 Warnerville New York NY Schoharie 095 42.5923 -74.4381 +US 12194 West Fulton New York NY Schoharie 095 42.5506 -74.4631 +US 13459 Sharon Springs New York NY Schoharie 095 42.7634 -74.5919 +US 14805 Alpine New York NY Schuyler 097 42.351 -76.7348 +US 14812 Beaver Dams New York NY Schuyler 097 42.2798 -76.972 +US 14818 Burdett New York NY Schuyler 097 42.4394 -76.8292 +US 14824 Cayuta New York NY Schuyler 097 42.2774 -76.6974 +US 14841 Hector New York NY Schuyler 097 42.4966 -76.8786 +US 14863 Mecklenburg New York NY Schuyler 097 42.4516 -76.7067 +US 14865 Montour Falls New York NY Schuyler 097 42.3437 -76.8396 +US 14869 Odessa New York NY Schuyler 097 42.3609 -76.7717 +US 14876 Reading Center New York NY Schuyler 097 42.4297 -76.9258 +US 14887 Tyrone New York NY Schuyler 097 42.3994 -77.0268 +US 14888 Valois New York NY Schuyler County 097 42.5249 -76.8607 +US 14891 Watkins Glen New York NY Schuyler 097 42.3771 -76.9022 +US 14893 Wayne New York NY Schuyler 097 42.4741 -77.0977 +US 13065 Fayette New York NY Seneca 099 42.8227 -76.802 +US 13148 Seneca Falls New York NY Seneca 099 42.9094 -76.7925 +US 13165 Waterloo New York NY Seneca 099 42.9045 -76.8755 +US 14521 Ovid New York NY Seneca 099 42.6898 -76.7941 +US 14541 Romulus New York NY Seneca 099 42.7497 -76.8449 +US 14588 Willard New York NY Seneca 099 42.6835 -76.8724 +US 14847 Interlaken New York NY Seneca 099 42.6165 -76.7268 +US 14860 Lodi New York NY Seneca 099 42.5966 -76.8339 +US 14529 Perkinsville New York NY Steuben 101 42.5354 -77.6289 +US 14572 Wayland New York NY Steuben 101 42.5593 -77.5906 +US 14801 Addison New York NY Steuben 101 42.0983 -77.266 +US 14807 Arkport New York NY Steuben 101 42.4225 -77.6918 +US 14808 Atlanta New York NY Steuben 101 42.5596 -77.4669 +US 14809 Avoca New York NY Steuben 101 42.3679 -77.4641 +US 14810 Bath New York NY Steuben 101 42.3575 -77.3028 +US 14815 Bradford New York NY Steuben 101 42.3825 -77.0913 +US 14819 Cameron New York NY Steuben 101 42.2128 -77.4403 +US 14820 Cameron Mills New York NY Steuben 101 42.1925 -77.365 +US 14821 Campbell New York NY Steuben 101 42.2386 -77.2066 +US 14823 Canisteo New York NY Steuben 101 42.2635 -77.5897 +US 14826 Cohocton New York NY Steuben 101 42.5003 -77.4998 +US 14827 Coopers Plains New York NY Steuben 101 42.1785 -77.1414 +US 14830 Corning New York NY Steuben 101 42.1383 -77.0475 +US 14831 Corning New York NY Steuben 101 42.1453 -77.5668 +US 14839 Greenwood New York NY Steuben 101 42.1398 -77.636 +US 14840 Hammondsport New York NY Steuben 101 42.4312 -77.1977 +US 14843 Hornell New York NY Steuben 101 42.3274 -77.6569 +US 14855 Jasper New York NY Steuben 101 42.129 -77.4999 +US 14856 Kanona New York NY Steuben 101 42.3742 -77.3648 +US 14858 Lindley New York NY Steuben 101 42.0425 -77.1541 +US 14868 Cohocton New York NY Steuben County 101 42.5611 -77.4648 +US 14870 Painted Post New York NY Steuben 101 42.171 -77.1194 +US 14873 Prattsburgh New York NY Steuben 101 42.5224 -77.2983 +US 14874 Pulteney New York NY Steuben 101 42.5233 -77.1691 +US 14877 Rexville New York NY Steuben 101 42.0726 -77.6767 +US 14879 Savona New York NY Steuben 101 42.3041 -77.2083 +US 14885 Troupsburg New York NY Steuben 101 42.0501 -77.5502 +US 14898 Woodhull New York NY Steuben 101 42.0736 -77.4203 +US 00501 Holtsville New York NY Suffolk 103 40.9223 -72.6371 +US 00544 Holtsville New York NY Suffolk 103 40.9223 -72.6371 +US 06390 Fishers Island New York NY Suffolk 103 41.2639 -72.0178 +US 11701 Amityville New York NY Suffolk 103 40.6842 -73.4171 +US 11702 Babylon New York NY Suffolk 103 40.6641 -73.341 +US 11703 North Babylon New York NY Suffolk 103 40.7321 -73.3236 +US 11704 West Babylon New York NY Suffolk 103 40.7135 -73.3546 +US 11705 Bayport New York NY Suffolk 103 40.7444 -73.0542 +US 11706 Bay Shore New York NY Suffolk 103 40.7051 -73.243 +US 11707 West Babylon New York NY Suffolk 103 40.9223 -72.6371 +US 11708 Amityville New York NY Suffolk 103 40.9223 -72.6371 +US 11713 Bellport New York NY Suffolk 103 40.7733 -72.9469 +US 11715 Blue Point New York NY Suffolk 103 40.7501 -73.0352 +US 11716 Bohemia New York NY Suffolk 103 40.7678 -73.1163 +US 11717 Brentwood New York NY Suffolk 103 40.7809 -73.2503 +US 11718 Brightwaters New York NY Suffolk 103 40.728 -73.2646 +US 11719 Brookhaven New York NY Suffolk 103 40.7843 -72.8921 +US 11720 Centereach New York NY Suffolk 103 40.8705 -73.0822 +US 11721 Centerport New York NY Suffolk 103 40.8929 -73.3754 +US 11722 Central Islip New York NY Suffolk 103 40.7866 -73.1961 +US 11724 Cold Spring Harbor New York NY Suffolk 103 40.8601 -73.4423 +US 11725 Commack New York NY Suffolk 103 40.843 -73.2799 +US 11726 Copiague New York NY Suffolk 103 40.6778 -73.3963 +US 11727 Coram New York NY Suffolk 103 40.885 -73.0069 +US 11729 Deer Park New York NY Suffolk 103 40.7591 -73.3257 +US 11730 East Islip New York NY Suffolk 103 40.7282 -73.1805 +US 11731 East Northport New York NY Suffolk 103 40.857 -73.3146 +US 11733 East Setauket New York NY Suffolk 103 40.9426 -73.1116 +US 11738 Farmingville New York NY Suffolk 103 40.8366 -73.0413 +US 11739 Great River New York NY Suffolk 103 40.7297 -73.1607 +US 11740 Greenlawn New York NY Suffolk 103 40.8621 -73.3646 +US 11741 Holbrook New York NY Suffolk 103 40.7964 -73.0718 +US 11742 Holtsville New York NY Suffolk 103 40.8105 -73.0416 +US 11743 Huntington New York NY Suffolk 103 40.8676 -73.4102 +US 11745 Smithtown New York NY Suffolk 103 40.9223 -72.6371 +US 11746 Huntington Station New York NY Suffolk 103 40.8143 -73.3634 +US 11747 Melville New York NY Suffolk 103 40.7946 -73.403 +US 11749 Islandia New York NY Suffolk 103 40.8067 -73.1709 +US 11750 Huntington Station New York NY Suffolk 103 40.9223 -72.6371 +US 11751 Islip New York NY Suffolk 103 40.7348 -73.2221 +US 11752 Islip Terrace New York NY Suffolk 103 40.7548 -73.1827 +US 11754 Kings Park New York NY Suffolk 103 40.8861 -73.2438 +US 11755 Lake Grove New York NY Suffolk 103 40.8567 -73.1168 +US 11757 Lindenhurst New York NY Suffolk 103 40.6884 -73.3745 +US 11760 Hauppauge New York NY Suffolk 103 40.8102 -73.1918 +US 11763 Medford New York NY Suffolk 103 40.8174 -72.9852 +US 11764 Miller Place New York NY Suffolk 103 40.9436 -72.9913 +US 11766 Mount Sinai New York NY Suffolk 103 40.9271 -73.0127 +US 11767 Nesconset New York NY Suffolk 103 40.8462 -73.1482 +US 11768 Northport New York NY Suffolk 103 40.9051 -73.3309 +US 11769 Oakdale New York NY Suffolk 103 40.7382 -73.1297 +US 11770 Ocean Beach New York NY Suffolk 103 40.6443 -73.1613 +US 11772 Patchogue New York NY Suffolk 103 40.7609 -72.9871 +US 11775 Melville New York NY Suffolk 103 40.9223 -72.6371 +US 11776 Port Jefferson Station New York NY Suffolk 103 40.9136 -73.0464 +US 11777 Port Jefferson New York NY Suffolk 103 40.9457 -73.0611 +US 11778 Rocky Point New York NY Suffolk 103 40.9492 -72.9357 +US 11779 Ronkonkoma New York NY Suffolk 103 40.8083 -73.1305 +US 11780 Saint James New York NY Suffolk 103 40.8813 -73.1591 +US 11782 Sayville New York NY Suffolk 103 40.7459 -73.0859 +US 11784 Selden New York NY Suffolk 103 40.8699 -73.0448 +US 11786 Shoreham New York NY Suffolk 103 40.9485 -72.8927 +US 11787 Smithtown New York NY Suffolk 103 40.8542 -73.2138 +US 11788 Hauppauge New York NY Suffolk 103 40.8231 -73.1958 +US 11789 Sound Beach New York NY Suffolk 103 40.9567 -72.9742 +US 11790 Stony Brook New York NY Suffolk 103 40.9068 -73.1277 +US 11792 Wading River New York NY Suffolk 103 40.952 -72.8348 +US 11794 Stony Brook New York NY Suffolk 103 40.9223 -72.6371 +US 11795 West Islip New York NY Suffolk 103 40.7117 -73.3007 +US 11796 West Sayville New York NY Suffolk 103 40.732 -73.1 +US 11798 Wyandanch New York NY Suffolk 103 40.7523 -73.3761 +US 11805 Mid Island New York NY Suffolk 103 40.9223 -72.6371 +US 11901 Riverhead New York NY Suffolk 103 40.9262 -72.652 +US 11930 Amagansett New York NY Suffolk 103 40.9895 -72.0959 +US 11931 Aquebogue New York NY Suffolk 103 40.9223 -72.6371 +US 11932 Bridgehampton New York NY Suffolk 103 40.9339 -72.3077 +US 11933 Calverton New York NY Suffolk 103 40.9297 -72.7423 +US 11934 Center Moriches New York NY Suffolk 103 40.7997 -72.797 +US 11935 Cutchogue New York NY Suffolk 103 41.0139 -72.4803 +US 11937 East Hampton New York NY Suffolk 103 40.993 -72.179 +US 11939 East Marion New York NY Suffolk 103 41.1264 -72.3419 +US 11940 East Moriches New York NY Suffolk 103 40.809 -72.7538 +US 11941 Eastport New York NY Suffolk 103 40.8297 -72.7283 +US 11942 East Quogue New York NY Suffolk 103 40.8428 -72.5813 +US 11944 Greenport New York NY Suffolk 103 41.1039 -72.3674 +US 11946 Hampton Bays New York NY Suffolk 103 40.8726 -72.5202 +US 11947 Jamesport New York NY Suffolk 103 40.9223 -72.6371 +US 11948 Laurel New York NY Suffolk 103 40.9674 -72.554 +US 11949 Manorville New York NY Suffolk 103 40.8421 -72.8002 +US 11950 Mastic New York NY Suffolk 103 40.8064 -72.8566 +US 11951 Mastic Beach New York NY Suffolk 103 40.7657 -72.8537 +US 11952 Mattituck New York NY Suffolk 103 40.9943 -72.5363 +US 11953 Middle Island New York NY Suffolk 103 40.8782 -72.9525 +US 11954 Montauk New York NY Suffolk 103 41.0459 -71.944 +US 11955 Moriches New York NY Suffolk 103 40.8095 -72.8229 +US 11956 New Suffolk New York NY Suffolk 103 40.9223 -72.6371 +US 11957 Orient New York NY Suffolk 103 41.1437 -72.2879 +US 11958 Peconic New York NY Suffolk 103 41.0392 -72.4666 +US 11959 Quogue New York NY Suffolk 103 40.8226 -72.6012 +US 11960 Remsenburg New York NY Suffolk 103 40.8086 -72.7064 +US 11961 Ridge New York NY Suffolk 103 40.9018 -72.8881 +US 11962 Sagaponack New York NY Suffolk 103 40.9305 -72.2707 +US 11963 Sag Harbor New York NY Suffolk 103 40.982 -72.3067 +US 11964 Shelter Island New York NY Suffolk 103 41.064 -72.3366 +US 11965 Shelter Island Heights New York NY Suffolk 103 40.9223 -72.6371 +US 11967 Shirley New York NY Suffolk 103 40.7439 -72.876 +US 11968 Southampton New York NY Suffolk 103 40.9043 -72.4103 +US 11969 Southampton New York NY Suffolk 103 40.9223 -72.6371 +US 11970 South Jamesport New York NY Suffolk 103 40.9223 -72.6371 +US 11971 Southold New York NY Suffolk 103 41.0555 -72.429 +US 11972 Speonk New York NY Suffolk 103 40.9223 -72.6371 +US 11973 Upton New York NY Suffolk 103 40.8678 -72.8822 +US 11975 Wainscott New York NY Suffolk 103 40.9396 -72.2425 +US 11976 Water Mill New York NY Suffolk 103 40.9209 -72.3491 +US 11977 Westhampton New York NY Suffolk 103 40.818 -72.6699 +US 11978 Westhampton Beach New York NY Suffolk 103 40.8295 -72.6473 +US 11980 Yaphank New York NY Suffolk 103 40.837 -72.9174 +US 12701 Monticello New York NY Sullivan 105 41.6516 -74.7007 +US 12719 Barryville New York NY Sullivan 105 41.4912 -74.9152 +US 12720 Bethel New York NY Sullivan 105 41.6693 -74.894 +US 12721 Bloomingburg New York NY Sullivan 105 41.5644 -74.4304 +US 12722 Burlingham New York NY Sullivan 105 41.719 -74.7554 +US 12723 Callicoon New York NY Sullivan 105 41.7754 -75.0257 +US 12724 Callicoon Center New York NY Sullivan 105 41.719 -74.7554 +US 12725 Claryville New York NY Sullivan 105 41.9657 -74.5293 +US 12726 Cochecton New York NY Sullivan 105 41.692 -74.9741 +US 12727 Cochecton Center New York NY Sullivan 105 41.719 -74.7554 +US 12732 Eldred New York NY Sullivan 105 41.5328 -74.8968 +US 12733 Fallsburg New York NY Sullivan 105 41.7273 -74.6154 +US 12734 Ferndale New York NY Sullivan 105 41.7349 -74.7345 +US 12736 Fremont Center New York NY Sullivan 105 41.8782 -75.0343 +US 12737 Glen Spey New York NY Sullivan 105 41.4858 -74.7995 +US 12738 Glen Wild New York NY Sullivan 105 41.6545 -74.5833 +US 12740 Grahamsville New York NY Sullivan 105 41.8807 -74.5127 +US 12741 Hankins New York NY Sullivan 105 41.8391 -75.0534 +US 12742 Harris New York NY Sullivan 105 41.7141 -74.7218 +US 12743 Highland Lake New York NY Sullivan 105 41.5309 -74.8516 +US 12745 Hortonville New York NY Sullivan 105 41.7629 -75.0306 +US 12747 Hurleyville New York NY Sullivan 105 41.7703 -74.7261 +US 12748 Jeffersonville New York NY Sullivan 105 41.7784 -74.9196 +US 12749 Kauneonga Lake New York NY Sullivan 105 41.6874 -74.8358 +US 12750 Kenoza Lake New York NY Sullivan 105 41.7296 -74.9611 +US 12751 Kiamesha Lake New York NY Sullivan 105 41.6838 -74.6724 +US 12752 Lake Huntington New York NY Sullivan 105 41.6782 -74.9949 +US 12754 Liberty New York NY Sullivan 105 41.7962 -74.7484 +US 12758 Livingston Manor New York NY Sullivan 105 41.8778 -74.827 +US 12759 Loch Sheldrake New York NY Sullivan 105 41.7789 -74.6614 +US 12760 Long Eddy New York NY Sullivan 105 41.8644 -75.0942 +US 12762 Mongaup Valley New York NY Sullivan 105 41.681 -74.8028 +US 12763 Mountain Dale New York NY Sullivan 105 41.6918 -74.5358 +US 12764 Narrowsburg New York NY Sullivan 105 41.5921 -75.0107 +US 12765 Neversink New York NY Sullivan 105 41.8492 -74.6127 +US 12766 North Branch New York NY Sullivan 105 41.8142 -74.9824 +US 12767 Obernburg New York NY Sullivan 105 41.719 -74.7554 +US 12768 Parksville New York NY Sullivan 105 41.8517 -74.7359 +US 12769 Phillipsport New York NY Sullivan 105 41.6515 -74.4362 +US 12770 Pond Eddy New York NY Sullivan 105 41.4511 -74.841 +US 12775 Rock Hill New York NY Sullivan 105 41.6134 -74.5872 +US 12776 Roscoe New York NY Sullivan 105 41.9609 -74.9346 +US 12777 Forestburgh New York NY Sullivan 105 41.5691 -74.7241 +US 12778 Smallwood New York NY Sullivan 105 41.6615 -74.8178 +US 12779 South Fallsburg New York NY Sullivan 105 41.7042 -74.6444 +US 12781 Summitville New York NY Sullivan 105 41.719 -74.7554 +US 12783 Swan Lake New York NY Sullivan 105 41.7285 -74.8341 +US 12784 Thompsonville New York NY Sullivan 105 41.7143 -74.5841 +US 12785 Westbrookville New York NY Sullivan 105 41.719 -74.7554 +US 12786 White Lake New York NY Sullivan 105 41.6485 -74.8654 +US 12787 White Sulphur Springs New York NY Sullivan 105 41.8002 -74.8286 +US 12788 Woodbourne New York NY Sullivan 105 41.7708 -74.5928 +US 12789 Woodridge New York NY Sullivan 105 41.717 -74.5815 +US 12790 Wurtsboro New York NY Sullivan 105 41.5877 -74.5039 +US 12791 Youngsville New York NY Sullivan 105 41.8032 -74.8888 +US 12792 Yulan New York NY Sullivan 105 41.5911 -74.7497 +US 13732 Apalachin New York NY Tioga 107 42.0556 -76.1519 +US 13734 Barton New York NY Tioga 107 42.0695 -76.3983 +US 13736 Berkshire New York NY Tioga 107 42.3074 -76.192 +US 13743 Candor New York NY Tioga 107 42.2063 -76.3322 +US 13811 Newark Valley New York NY Tioga 107 42.2281 -76.1625 +US 13812 Nichols New York NY Tioga 107 42.0301 -76.354 +US 13827 Owego New York NY Tioga 107 42.1138 -76.2528 +US 13835 Richford New York NY Tioga 107 42.3945 -76.1865 +US 13840 Smithboro New York NY Tioga 107 42.0395 -76.4004 +US 13845 Tioga Center New York NY Tioga 107 42.0658 -76.3819 +US 13864 Willseyville New York NY Tioga 107 42.3029 -76.3897 +US 14859 Lockwood New York NY Tioga 107 42.1149 -76.5366 +US 14883 Spencer New York NY Tioga 107 42.2467 -76.4899 +US 14892 Waverly New York NY Tioga 107 42.0172 -76.5333 +US 13053 Dryden New York NY Tompkins 109 42.4861 -76.2872 +US 13062 Etna New York NY Tompkins 109 42.4844 -76.389 +US 13068 Freeville New York NY Tompkins 109 42.4998 -76.3636 +US 13073 Groton New York NY Tompkins 109 42.5855 -76.3633 +US 13102 Mc Lean New York NY Tompkins 109 42.5542 -76.2927 +US 14817 Brooktondale New York NY Tompkins 109 42.3765 -76.3668 +US 14850 Ithaca New York NY Tompkins 109 42.4028 -76.484 +US 14851 Ithaca New York NY Tompkins 109 42.4607 -76.5054 +US 14852 Ithaca New York NY Tompkins 109 42.4451 -76.4672 +US 14853 Ithaca New York NY Tompkins 109 42.4474 -76.4837 +US 14854 Jacksonville New York NY Tompkins 109 42.5063 -76.6082 +US 14867 Newfield New York NY Tompkins 109 42.3621 -76.592 +US 14881 Slaterville Springs New York NY Tompkins 109 42.4025 -76.3608 +US 14882 Lansing New York NY Tompkins 109 42.5645 -76.5375 +US 14886 Trumansburg New York NY Tompkins 109 42.521 -76.6681 +US 12401 Kingston New York NY Ulster 111 41.9697 -74.0668 +US 12402 Kingston New York NY Ulster 111 41.8788 -74.3457 +US 12404 Accord New York NY Ulster 111 41.8083 -74.2353 +US 12409 Bearsville New York NY Ulster 111 42.0547 -74.1925 +US 12410 Big Indian New York NY Ulster 111 42.074 -74.453 +US 12411 Bloomington New York NY Ulster 111 41.8752 -74.0436 +US 12412 Boiceville New York NY Ulster 111 42.0048 -74.2658 +US 12415 Saugerties New York NY Ulster County 111 42.135 -73.9248 +US 12416 Chichester New York NY Ulster 111 42.095 -74.2717 +US 12417 Connelly New York NY Ulster 111 41.9076 -73.9893 +US 12419 Cottekill New York NY Ulster 111 41.8467 -74.1038 +US 12420 Cragsmoor New York NY Ulster 111 41.6698 -74.3801 +US 12428 Ellenville New York NY Ulster 111 41.7218 -74.4141 +US 12429 Esopus New York NY Ulster 111 41.8162 -73.9926 +US 12432 Glasco New York NY Ulster 111 41.9498 -74.0032 +US 12433 Glenford New York NY Ulster 111 42.0053 -74.1532 +US 12435 Greenfield Park New York NY Ulster 111 41.7281 -74.5201 +US 12440 High Falls New York NY Ulster 111 41.8167 -74.1311 +US 12441 Highmount New York NY Ulster 111 41.8788 -74.3457 +US 12443 Hurley New York NY Ulster 111 41.9327 -74.0687 +US 12446 Kerhonkson New York NY Ulster 111 41.7939 -74.3035 +US 12448 Lake Hill New York NY Ulster 111 42.0733 -74.2123 +US 12449 Lake Katrine New York NY Ulster 111 41.9918 -73.9924 +US 12453 Malden On Hudson New York NY Ulster 111 42.0987 -73.9354 +US 12456 Mount Marion New York NY Ulster 111 42.0357 -74.0002 +US 12457 Mount Tremper New York NY Ulster 111 42.0435 -74.2485 +US 12458 Napanoch New York NY Ulster 111 41.759 -74.3804 +US 12461 Olivebridge New York NY Ulster 111 41.875 -74.2734 +US 12464 Phoenicia New York NY Ulster 111 42.0544 -74.3393 +US 12465 Pine Hill New York NY Ulster 111 42.1363 -74.4736 +US 12466 Port Ewen New York NY Ulster 111 41.8948 -73.9767 +US 12471 Rifton New York NY Ulster 111 41.8403 -74.0306 +US 12472 Rosendale New York NY Ulster 111 41.8402 -74.073 +US 12475 Ruby New York NY Ulster 111 42.0176 -74.0079 +US 12477 Saugerties New York NY Ulster 111 42.0738 -73.9797 +US 12480 Shandaken New York NY Ulster 111 42.1363 -74.3774 +US 12481 Shokan New York NY Ulster 111 41.9767 -74.2119 +US 12483 Spring Glen New York NY Ulster 111 41.6639 -74.4245 +US 12484 Stone Ridge New York NY Ulster 111 41.8616 -74.1697 +US 12486 Tillson New York NY Ulster 111 41.8338 -74.0626 +US 12487 Ulster Park New York NY Ulster 111 41.8651 -73.9948 +US 12489 Wawarsing New York NY Ulster 111 41.7606 -74.3535 +US 12490 West Camp New York NY Ulster 111 42.1087 -73.9346 +US 12491 West Hurley New York NY Ulster 111 41.9838 -74.1244 +US 12493 West Park New York NY Ulster 111 41.7953 -73.9809 +US 12494 West Shokan New York NY Ulster 111 41.9726 -74.2676 +US 12495 Willow New York NY Ulster 111 42.0849 -74.2407 +US 12498 Woodstock New York NY Ulster 111 42.0348 -74.112 +US 12515 Clintondale New York NY Ulster 111 41.6749 -74.0557 +US 12525 Gardiner New York NY Ulster 111 41.6576 -74.1672 +US 12528 Highland New York NY Ulster 111 41.7167 -73.9928 +US 12542 Marlboro New York NY Ulster 111 41.6056 -73.988 +US 12547 Milton New York NY Ulster 111 41.6535 -73.9772 +US 12548 Modena New York NY Ulster 111 41.6503 -74.1036 +US 12561 New Paltz New York NY Ulster 111 41.7464 -74.1092 +US 12568 Plattekill New York NY Ulster 111 41.6412 -74.0781 +US 12588 Walker Valley New York NY Ulster 111 41.8788 -74.3457 +US 12589 Wallkill New York NY Ulster 111 41.616 -74.1439 +US 12782 Sundown New York NY Ulster 111 41.8815 -74.4301 +US 12801 Glens Falls New York NY Warren 113 43.3115 -73.6448 +US 12804 Queensbury New York NY Warren 113 43.329 -73.6818 +US 12808 Adirondack New York NY Warren 113 43.7165 -73.7825 +US 12810 Athol New York NY Warren 113 43.4839 -73.8817 +US 12811 Bakers Mills New York NY Warren 113 43.6242 -74.0612 +US 12814 Bolton Landing New York NY Warren 113 43.5766 -73.6714 +US 12815 Brant Lake New York NY Warren 113 43.6989 -73.7205 +US 12817 Chestertown New York NY Warren 113 43.6451 -73.8066 +US 12820 Cleverdale New York NY Warren 113 43.4718 -73.6393 +US 12824 Diamond Point New York NY Warren 113 43.5156 -73.7001 +US 12836 Hague New York NY Warren 113 43.7463 -73.5282 +US 12843 Johnsburg New York NY Warren 113 43.586 -73.9165 +US 12844 Kattskill Bay New York NY Warren 113 43.4754 -73.6272 +US 12845 Lake George New York NY Warren 113 43.4167 -73.6975 +US 12846 Lake Luzerne New York NY Warren 113 43.3165 -73.8228 +US 12853 North Creek New York NY Warren 113 43.7138 -73.8928 +US 12856 North River New York NY Warren 113 43.7237 -74.0873 +US 12860 Pottersville New York NY Warren 113 43.5928 -73.7844 +US 12862 Riparius New York NY Warren 113 43.6754 -73.9325 +US 12874 Silver Bay New York NY Warren 113 43.6978 -73.5071 +US 12878 Stony Creek New York NY Warren 113 43.4214 -73.9495 +US 12885 Warrensburg New York NY Warren 113 43.5003 -73.792 +US 12886 Wevertown New York NY Warren 113 43.6313 -73.9364 +US 12057 Eagle Bridge New York NY Washington 115 42.9808 -73.3522 +US 12809 Argyle New York NY Washington 115 43.2381 -73.4641 +US 12816 Cambridge New York NY Washington 115 43.0466 -73.3814 +US 12819 Clemons New York NY Washington 115 43.6435 -73.4326 +US 12821 Comstock New York NY Washington 115 43.4614 -73.4033 +US 12823 Cossayuna New York NY Washington 115 43.1751 -73.4124 +US 12826 East Greenwich New York NY Washington County 115 43.1572 -73.3925 +US 12827 Fort Ann New York NY Washington 115 43.4285 -73.4784 +US 12828 Fort Edward New York NY Washington 115 43.2653 -73.5822 +US 12832 Granville New York NY Washington 115 43.3776 -73.2978 +US 12834 Greenwich New York NY Washington 115 43.0947 -73.503 +US 12837 Hampton New York NY Washington 115 43.4621 -73.2731 +US 12838 Hartford New York NY Washington 115 43.3493 -73.4049 +US 12839 Hudson Falls New York NY Washington 115 43.3149 -73.5746 +US 12841 Huletts Landing New York NY Washington 115 43.647 -73.5083 +US 12848 Middle Falls New York NY Washington 115 43.1001 -73.5246 +US 12849 Middle Granville New York NY Washington 115 43.4508 -73.3031 +US 12854 North Granville New York NY Washington 115 43.4525 -73.341 +US 12861 Putnam Station New York NY Washington 115 43.756 -73.4123 +US 12865 Salem New York NY Washington 115 43.1828 -73.3327 +US 12873 Shushan New York NY Washington 115 43.1106 -73.3231 +US 12887 Whitehall New York NY Washington 115 43.5531 -73.3864 +US 13143 Red Creek New York NY Wayne 117 43.2291 -76.7146 +US 13146 Savannah New York NY Wayne 117 43.0934 -76.7565 +US 13154 South Butler New York NY Wayne 117 43.1344 -76.7656 +US 14413 Alton New York NY Wayne 117 43.2227 -76.9821 +US 14433 Clyde New York NY Wayne 117 43.0855 -76.8725 +US 14444 East Palmyra New York NY Wayne County 117 43.085 -77.1571 +US 14449 East Williamson New York NY Wayne 117 43.2354 -77.1376 +US 14489 Lyons New York NY Wayne 117 43.0777 -76.9896 +US 14502 Macedon New York NY Wayne 117 43.0784 -77.3372 +US 14505 Marion New York NY Wayne 117 43.1546 -77.1863 +US 14513 Newark New York NY Wayne 117 43.0519 -77.0946 +US 14516 North Rose New York NY Wayne 117 43.1964 -76.9152 +US 14519 Ontario New York NY Wayne 117 43.2291 -77.3088 +US 14520 Ontario Center New York NY Wayne 117 43.3484 -77.0453 +US 14522 Palmyra New York NY Wayne 117 43.0622 -77.2218 +US 14538 Pultneyville New York NY Wayne 117 43.2836 -77.142 +US 14542 Rose New York NY Wayne 117 43.1448 -76.8608 +US 14551 Sodus New York NY Wayne 117 43.2217 -77.0514 +US 14554 Sodus Center New York NY Wayne County 117 43.236 -77.0631 +US 14555 Sodus Point New York NY Wayne 117 43.2546 -76.9835 +US 14563 Union Hill New York NY Wayne 117 43.3484 -77.0453 +US 14568 Walworth New York NY Wayne 117 43.1402 -77.2858 +US 14584 Webster Crossing New York NY Wayne County 117 42.6697 -77.6353 +US 14589 Williamson New York NY Wayne 117 43.2421 -77.17 +US 14590 Wolcott New York NY Wayne 117 43.2341 -76.8217 +US 00401 Pleasantville New York NY Westchester County 119 41.1381 -73.7847 +US 10501 Amawalk New York NY Westchester 119 41.2946 -73.7611 +US 10502 Ardsley New York NY Westchester 119 41.0113 -73.8413 +US 10503 Ardsley On Hudson New York NY Westchester 119 41.0259 -73.8718 +US 10504 Armonk New York NY Westchester 119 41.136 -73.7009 +US 10505 Baldwin Place New York NY Westchester 119 41.3421 -73.7454 +US 10506 Bedford New York NY Westchester 119 41.1909 -73.6355 +US 10507 Bedford Hills New York NY Westchester 119 41.2344 -73.6915 +US 10510 Briarcliff Manor New York NY Westchester 119 41.1444 -73.835 +US 10511 Buchanan New York NY Westchester 119 41.2583 -73.9412 +US 10514 Chappaqua New York NY Westchester 119 41.1705 -73.7715 +US 10517 Crompond New York NY Westchester 119 41.3006 -73.8612 +US 10518 Cross River New York NY Westchester 119 41.2722 -73.602 +US 10519 Croton Falls New York NY Westchester 119 41.3477 -73.661 +US 10520 Croton On Hudson New York NY Westchester 119 41.218 -73.8924 +US 10521 Croton On Hudson New York NY Westchester 119 41.2343 -73.9262 +US 10522 Dobbs Ferry New York NY Westchester 119 41.0118 -73.8665 +US 10523 Elmsford New York NY Westchester 119 41.0572 -73.8136 +US 10526 Goldens Bridge New York NY Westchester 119 41.3004 -73.6479 +US 10527 Granite Springs New York NY Westchester 119 41.3098 -73.753 +US 10528 Harrison New York NY Westchester 119 40.9719 -73.7181 +US 10530 Hartsdale New York NY Westchester 119 41.0197 -73.8074 +US 10532 Hawthorne New York NY Westchester 119 41.0953 -73.8017 +US 10533 Irvington New York NY Westchester 119 41.0381 -73.8597 +US 10535 Jefferson Valley New York NY Westchester 119 41.3385 -73.7947 +US 10536 Katonah New York NY Westchester 119 41.2709 -73.6841 +US 10538 Larchmont New York NY Westchester 119 40.9351 -73.7571 +US 10540 Lincolndale New York NY Westchester 119 41.3334 -73.7243 +US 10543 Mamaroneck New York NY Westchester 119 40.9525 -73.735 +US 10545 Maryknoll New York NY Westchester 119 41.119 -73.733 +US 10546 Millwood New York NY Westchester 119 41.2015 -73.7926 +US 10547 Mohegan Lake New York NY Westchester 119 41.3143 -73.8508 +US 10548 Montrose New York NY Westchester 119 41.2496 -73.9446 +US 10549 Mount Kisco New York NY Westchester 119 41.205 -73.7299 +US 10550 Mount Vernon New York NY Westchester 119 40.9079 -73.838 +US 10551 Mount Vernon New York NY Westchester 119 41.119 -73.733 +US 10552 Mount Vernon New York NY Westchester 119 40.9231 -73.8299 +US 10553 Mount Vernon New York NY Westchester 119 40.9086 -73.8221 +US 10557 Mount Vernon New York NY Westchester 119 41.119 -73.733 +US 10558 Mount Vernon New York NY Westchester 119 41.119 -73.733 +US 10559 Mount Vernon New York NY Westchester 119 41.119 -73.733 +US 10560 North Salem New York NY Westchester 119 41.3414 -73.5929 +US 10562 Ossining New York NY Westchester 119 41.1673 -73.8538 +US 10566 Peekskill New York NY Westchester 119 41.2892 -73.9184 +US 10567 Cortlandt Manor New York NY Westchester 119 41.284 -73.8931 +US 10570 Pleasantville New York NY Westchester 119 41.135 -73.7845 +US 10571 Pleasantville New York NY Westchester 119 41.119 -73.733 +US 10572 Pleasantville New York NY Westchester 119 41.119 -73.733 +US 10573 Port Chester New York NY Westchester 119 41.0222 -73.6798 +US 10576 Pound Ridge New York NY Westchester 119 41.2042 -73.5732 +US 10577 Purchase New York NY Westchester 119 41.0384 -73.7156 +US 10578 Purdys New York NY Westchester 119 41.3158 -73.6451 +US 10580 Rye New York NY Westchester 119 40.9734 -73.6907 +US 10581 Rye New York NY Westchester 119 41.119 -73.733 +US 10583 Scarsdale New York NY Westchester 119 40.9927 -73.7995 +US 10587 Shenorock New York NY Westchester 119 41.3287 -73.7423 +US 10588 Shrub Oak New York NY Westchester 119 41.3286 -73.8273 +US 10589 Somers New York NY Westchester 119 41.3346 -73.6951 +US 10590 South Salem New York NY Westchester 119 41.2553 -73.5402 +US 10591 Tarrytown New York NY Westchester 119 41.0897 -73.844 +US 10592 Tarrytown New York NY Westchester 119 41.119 -73.733 +US 10594 Thornwood New York NY Westchester 119 41.1182 -73.7733 +US 10595 Valhalla New York NY Westchester 119 41.0856 -73.7776 +US 10596 Verplanck New York NY Westchester 119 41.2548 -73.9587 +US 10597 Waccabuc New York NY Westchester 119 41.3032 -73.6032 +US 10598 Yorktown Heights New York NY Westchester 119 41.2999 -73.7924 +US 10601 White Plains New York NY Westchester 119 41.033 -73.7652 +US 10602 White Plains New York NY Westchester 119 41.119 -73.733 +US 10603 White Plains New York NY Westchester 119 41.0499 -73.7776 +US 10604 West Harrison New York NY Westchester 119 41.0592 -73.7395 +US 10605 White Plains New York NY Westchester 119 41.0141 -73.7552 +US 10606 White Plains New York NY Westchester 119 41.0247 -73.7781 +US 10607 White Plains New York NY Westchester 119 41.0398 -73.8117 +US 10610 White Plains New York NY Westchester 119 41.119 -73.733 +US 10625 White Plains New York NY Westchester 119 41.119 -73.733 +US 10629 White Plains New York NY Westchester 119 41.119 -73.733 +US 10633 White Plains New York NY Westchester 119 41.119 -73.733 +US 10650 White Plains New York NY Westchester 119 41.0137 -73.706 +US 10701 Yonkers New York NY Westchester 119 40.9461 -73.8669 +US 10702 Yonkers New York NY Westchester 119 41.119 -73.733 +US 10703 Yonkers New York NY Westchester 119 40.9518 -73.8852 +US 10704 Yonkers New York NY Westchester 119 40.9176 -73.8593 +US 10705 Yonkers New York NY Westchester 119 40.9177 -73.895 +US 10706 Hastings On Hudson New York NY Westchester 119 40.9878 -73.863 +US 10707 Tuckahoe New York NY Westchester 119 40.9569 -73.8198 +US 10708 Bronxville New York NY Westchester 119 40.9391 -73.8353 +US 10709 Eastchester New York NY Westchester 119 40.955 -73.8086 +US 10710 Yonkers New York NY Westchester 119 40.9656 -73.8434 +US 10801 New Rochelle New York NY Westchester 119 40.9166 -73.7877 +US 10802 New Rochelle New York NY Westchester 119 40.9483 -73.7954 +US 10803 Pelham New York NY Westchester 119 40.9045 -73.8073 +US 10804 Wykagyl New York NY Westchester 119 40.9491 -73.7863 +US 10804 New Rochelle New York NY Westchester 119 40.9491 -73.7863 +US 10805 New Rochelle New York NY Westchester 119 40.9002 -73.781 +US 14009 Arcade New York NY Wyoming 121 42.563 -78.4134 +US 14011 Attica New York NY Wyoming 121 42.8499 -78.2798 +US 14024 Bliss New York NY Wyoming 121 42.5799 -78.2581 +US 14037 Cowlesville New York NY Wyoming 121 42.8112 -78.4481 +US 14039 Dale New York NY Wyoming 121 42.8263 -78.1749 +US 14066 Gainesville New York NY Wyoming 121 42.619 -78.1795 +US 14082 Java Center New York NY Wyoming 121 42.6634 -78.3925 +US 14083 Java Village New York NY Wyoming 121 42.6769 -78.441 +US 14113 North Java New York NY Wyoming 121 42.6776 -78.338 +US 14130 Pike New York NY Wyoming 121 42.5431 -78.1538 +US 14145 Strykersville New York NY Wyoming 121 42.7249 -78.4347 +US 14167 Varysburg New York NY Wyoming 121 42.7459 -78.3167 +US 14427 Castile New York NY Wyoming 121 42.6359 -78.0547 +US 14530 Perry New York NY Wyoming 121 42.7229 -78.0059 +US 14536 Portageville New York NY Wyoming 121 42.557 -78.0856 +US 14549 Silver Lake New York NY Wyoming 121 42.6929 -78.0224 +US 14550 Silver Springs New York NY Wyoming 121 42.6742 -78.0845 +US 14569 Warsaw New York NY Wyoming 121 42.741 -78.1429 +US 14591 Wyoming New York NY Wyoming 121 42.8317 -78.0833 +US 14415 Bellona New York NY Yates 123 42.7554 -77.0217 +US 14418 Branchport New York NY Yates 123 42.6065 -77.2052 +US 14441 Dresden New York NY Yates 123 42.6846 -76.9564 +US 14478 Keuka Park New York NY Yates 123 42.5708 -77.1226 +US 14507 Middlesex New York NY Yates 123 42.6976 -77.2805 +US 14527 Penn Yan New York NY Yates 123 42.6645 -77.0569 +US 14544 Rushville New York NY Yates 123 42.7597 -77.2395 +US 14837 Dundee New York NY Yates 123 42.5053 -77.0028 +US 14842 Himrod New York NY Yates 123 42.5945 -76.9508 +US 14857 Lakemont New York NY Yates 123 42.5126 -76.927 +US 14878 Rock Stream New York NY Yates 123 42.4485 -76.9364 +US 45105 Bentonville Ohio OH Adams 001 38.7498 -83.6126 +US 45144 Manchester Ohio OH Adams 001 38.6982 -83.6181 +US 45616 Blue Creek Ohio OH Adams 001 38.7534 -83.3076 +US 45618 Cherry Fork Ohio OH Adams 001 38.8922 -83.6218 +US 45650 Lynx Ohio OH Adams 001 38.7391 -83.4262 +US 45660 Peebles Ohio OH Adams 001 38.9869 -83.3687 +US 45679 Seaman Ohio OH Adams 001 38.9621 -83.5936 +US 45693 West Union Ohio OH Adams 001 38.8017 -83.5333 +US 45697 Winchester Ohio OH Adams 001 38.9353 -83.6661 +US 45801 Lima Ohio OH Allen 003 40.7641 -84.0973 +US 45802 Lima Ohio OH Allen 003 40.7818 -84.1386 +US 45804 Lima Ohio OH Allen 003 40.7275 -84.089 +US 45805 Lima Ohio OH Allen 003 40.7399 -84.1459 +US 45807 Lima Ohio OH Allen 003 40.7955 -84.1383 +US 45808 Beaverdam Ohio OH Allen 003 40.8314 -83.9758 +US 45809 Gomer Ohio OH Allen 003 40.8479 -84.1832 +US 45817 Bluffton Ohio OH Allen 003 40.879 -83.8914 +US 45820 Cairo Ohio OH Allen 003 40.8304 -84.0852 +US 45833 Delphos Ohio OH Allen 003 40.8336 -84.3247 +US 45850 Harrod Ohio OH Allen 003 40.7177 -83.9436 +US 45854 Lafayette Ohio OH Allen 003 40.7582 -83.9499 +US 45887 Spencerville Ohio OH Allen 003 40.7038 -84.3413 +US 44805 Ashland Ohio OH Ashland 005 40.8559 -82.3189 +US 44838 Hayesville Ohio OH Ashland 005 40.768 -82.25 +US 44840 Jeromesville Ohio OH Ashland 005 40.8134 -82.1861 +US 44842 Loudonville Ohio OH Ashland 005 40.6361 -82.2356 +US 44848 Nankin Ohio OH Ashland 005 40.9206 -82.2817 +US 44859 Nova Ohio OH Ashland 005 41.0282 -82.3384 +US 44864 Perrysville Ohio OH Ashland 005 40.6606 -82.3213 +US 44866 Polk Ohio OH Ashland 005 40.9343 -82.2126 +US 44874 Savannah Ohio OH Ashland 005 40.9645 -82.3885 +US 44880 Sullivan Ohio OH Ashland 005 41.0368 -82.2172 +US 44003 Andover Ohio OH Ashtabula 007 41.6225 -80.5754 +US 44004 Ashtabula Ohio OH Ashtabula 007 41.8679 -80.7947 +US 44005 Ashtabula Ohio OH Ashtabula 007 41.7301 -80.9553 +US 44010 Austinburg Ohio OH Ashtabula 007 41.7554 -80.8584 +US 44030 Conneaut Ohio OH Ashtabula 007 41.9345 -80.5803 +US 44032 Dorset Ohio OH Ashtabula 007 41.659 -80.6683 +US 44041 Geneva Ohio OH Ashtabula 007 41.8029 -80.9474 +US 44047 Jefferson Ohio OH Ashtabula 007 41.7335 -80.7562 +US 44048 Kingsville Ohio OH Ashtabula 007 41.8723 -80.6601 +US 44068 North Kingsville Ohio OH Ashtabula 007 41.9046 -80.685 +US 44076 Orwell Ohio OH Ashtabula 007 41.5293 -80.8208 +US 44082 Pierpont Ohio OH Ashtabula 007 41.7677 -80.5741 +US 44084 Rock Creek Ohio OH Ashtabula 007 41.6898 -80.9051 +US 44085 Rome Ohio OH Ashtabula 007 41.6053 -80.8709 +US 44088 Unionville Ohio OH Ashtabula 007 41.7833 -81.0034 +US 44093 Williamsfield Ohio OH Ashtabula 007 41.5383 -80.5964 +US 44099 Windsor Ohio OH Ashtabula 007 41.5623 -80.9667 +US 45701 Athens Ohio OH Athens 009 39.3178 -82.102 +US 45710 Albany Ohio OH Athens 009 39.2097 -82.2177 +US 45711 Amesville Ohio OH Athens 009 39.4086 -81.965 +US 45716 Buchtel Ohio OH Athens 009 39.4522 -82.1794 +US 45717 Carbondale Ohio OH Athens 009 39.3682 -82.0101 +US 45719 Chauncey Ohio OH Athens 009 39.4002 -82.1302 +US 45723 Coolville Ohio OH Athens 009 39.2141 -81.8329 +US 45732 Glouster Ohio OH Athens 009 39.4978 -82.0871 +US 45735 Guysville Ohio OH Athens 009 39.2493 -81.922 +US 45739 Hockingport Ohio OH Athens 009 39.1979 -81.7446 +US 45740 Jacksonville Ohio OH Athens 009 39.477 -82.0794 +US 45761 Millfield Ohio OH Athens 009 39.4077 -82.1113 +US 45764 Nelsonville Ohio OH Athens 009 39.4556 -82.2309 +US 45766 New Marshfield Ohio OH Athens 009 39.3228 -82.2594 +US 45776 Shade Ohio OH Athens 009 39.2129 -82.0218 +US 45777 Sharpsburg Ohio OH Athens 009 39.3682 -82.0101 +US 45778 Stewart Ohio OH Athens 009 39.3213 -81.8929 +US 45780 The Plains Ohio OH Athens 009 39.3662 -82.1341 +US 45781 Torch Ohio OH Athens 009 39.3682 -82.0101 +US 45782 Trimble Ohio OH Athens 009 39.4845 -82.0805 +US 45806 Lima Ohio OH Auglaize 011 40.6752 -84.1244 +US 45819 Buckland Ohio OH Auglaize 011 40.6241 -84.2603 +US 45865 Minster Ohio OH Auglaize 011 40.391 -84.3729 +US 45869 New Bremen Ohio OH Auglaize 011 40.4389 -84.3821 +US 45870 New Hampshire Ohio OH Auglaize 011 40.5563 -83.9514 +US 45871 New Knoxville Ohio OH Auglaize 011 40.5039 -84.3118 +US 45884 Saint Johns Ohio OH Auglaize 011 40.5203 -84.168 +US 45885 Saint Marys Ohio OH Auglaize 011 40.544 -84.3944 +US 45888 Uniopolis Ohio OH Auglaize 011 40.6023 -84.086 +US 45895 Wapakoneta Ohio OH Auglaize 011 40.569 -84.1774 +US 45896 Waynesfield Ohio OH Auglaize 011 40.6072 -83.9585 +US 43713 Barnesville Ohio OH Belmont 013 39.9853 -81.1375 +US 43718 Belmont Ohio OH Belmont 013 40.032 -81.0066 +US 43719 Bethesda Ohio OH Belmont 013 40.0192 -81.0767 +US 43759 Morristown Ohio OH Belmont 013 40.0113 -80.9701 +US 43902 Alledonia Ohio OH Belmont 013 39.9053 -80.9578 +US 43905 Barton Ohio OH Belmont 013 40.1074 -80.8444 +US 43906 Bellaire Ohio OH Belmont 013 40.0204 -80.7638 +US 43909 Blaine Ohio OH Belmont 013 40.0701 -80.8176 +US 43912 Bridgeport Ohio OH Belmont 013 40.0752 -80.7747 +US 43916 Colerain Ohio OH Belmont 013 40.1224 -80.8149 +US 43927 Fairpoint Ohio OH Belmont 013 40.1225 -80.938 +US 43928 Glencoe Ohio OH Belmont 013 40.0109 -80.8993 +US 43933 Jacobsburg Ohio OH Belmont 013 39.9372 -80.888 +US 43934 Lansing Ohio OH Belmont 013 40.08 -80.8003 +US 43935 Martins Ferry Ohio OH Belmont 013 40.1036 -80.7361 +US 43937 Maynard Ohio OH Belmont 013 40.1302 -80.8773 +US 43940 Neffs Ohio OH Belmont 013 40.0284 -80.8245 +US 43942 Powhatan Point Ohio OH Belmont 013 39.8679 -80.8168 +US 43947 Shadyside Ohio OH Belmont 013 39.9675 -80.7643 +US 43950 Saint Clairsville Ohio OH Belmont 013 40.0778 -80.9788 +US 43951 Lafferty Ohio OH Belmont 013 40.111 -81.0102 +US 43960 Stewartsville Ohio OH Belmont County 013 40.0119 -80.8582 +US 43967 Warnock Ohio OH Belmont 013 40.02 -80.9169 +US 43972 Bannock Ohio OH Belmont 013 40.1032 -80.9756 +US 43977 Flushing Ohio OH Belmont 013 40.1451 -81.0757 +US 43983 Piedmont Ohio OH Belmont 013 40.1507 -81.2145 +US 43985 Holloway Ohio OH Belmont 013 40.0113 -80.9701 +US 45101 Aberdeen Ohio OH Brown 015 38.6709 -83.7637 +US 45115 Decatur Ohio OH Brown 015 38.8237 -83.6995 +US 45118 Fayetteville Ohio OH Brown 015 39.1862 -83.9501 +US 45119 Feesburg Ohio OH Brown 015 38.8806 -84.0087 +US 45121 Georgetown Ohio OH Brown 015 38.8717 -83.9092 +US 45130 Hamersville Ohio OH Brown 015 38.92 -83.9931 +US 45131 Higginsport Ohio OH Brown 015 38.7903 -83.9666 +US 45154 Mount Orab Ohio OH Brown 015 39.0454 -83.948 +US 45167 Ripley Ohio OH Brown 015 38.7551 -83.8227 +US 45168 Russellville Ohio OH Brown 015 38.8511 -83.7625 +US 45171 Sardinia Ohio OH Brown 015 38.9832 -83.7966 +US 45275 Cincinnati Ohio OH Brown 015 38.9469 -83.8629 +US 45003 College Corner Ohio OH Butler 017 39.5755 -84.805 +US 45004 Collinsville Ohio OH Butler 017 39.441 -84.5757 +US 45011 Hamilton Ohio OH Butler 017 39.4059 -84.5221 +US 45012 Hamilton Ohio OH Butler 017 39.441 -84.5757 +US 45013 Hamilton Ohio OH Butler 017 39.4361 -84.6185 +US 45014 Fairfield Ohio OH Butler 017 39.3266 -84.5479 +US 45015 Hamilton Ohio OH Butler 017 39.3494 -84.5376 +US 45018 Fairfield Ohio OH Butler 017 39.441 -84.5757 +US 45020 Hamilton Ohio OH Butler 017 39.441 -84.5757 +US 45023 Hamilton Ohio OH Butler 017 39.441 -84.5757 +US 45025 Hamilton Ohio OH Butler 017 39.441 -84.5757 +US 45026 Hamilton Ohio OH Butler 017 39.441 -84.5757 +US 45042 Middletown Ohio OH Butler 017 39.5321 -84.3896 +US 45043 Middletown Ohio OH Butler 017 39.441 -84.5757 +US 45044 Middletown Ohio OH Butler 017 39.4182 -84.4245 +US 45050 Monroe Ohio OH Butler 017 39.4413 -84.3652 +US 45053 Okeana Ohio OH Butler 017 39.3537 -84.7761 +US 45055 Overpeck Ohio OH Butler 017 39.4518 -84.5152 +US 45056 Oxford Ohio OH Butler 017 39.4792 -84.6857 +US 45061 Ross Ohio OH Butler 017 39.3124 -84.6483 +US 45062 Seven Mile Ohio OH Butler 017 39.479 -84.5512 +US 45063 Shandon Ohio OH Butler 017 39.3258 -84.7121 +US 45064 Somerville Ohio OH Butler 017 39.5554 -84.6219 +US 45067 Trenton Ohio OH Butler 017 39.4799 -84.4598 +US 45069 West Chester Ohio OH Butler 017 39.3402 -84.3998 +US 45071 West Chester Ohio OH Butler 017 39.441 -84.5757 +US 45073 Monroe Ohio OH Butler 017 39.441 -84.5757 +US 45099 Monroe Ohio OH Butler 017 39.441 -84.5757 +US 44607 Augusta Ohio OH Carroll 019 40.686 -81.0219 +US 44615 Carrollton Ohio OH Carroll 019 40.5787 -81.0818 +US 44620 Dellroy Ohio OH Carroll 019 40.5861 -81.1986 +US 44631 Harlem Springs Ohio OH Carroll 019 40.5219 -81.0036 +US 44639 Leesville Ohio OH Carroll 019 40.5477 -81.2435 +US 44644 Malvern Ohio OH Carroll 019 40.6845 -81.1838 +US 44651 Mechanicstown Ohio OH Carroll 019 40.6263 -80.956 +US 44675 Sherrodsville Ohio OH Carroll 019 40.5184 -81.2339 +US 43009 Cable Ohio OH Champaign 021 40.1784 -83.647 +US 43044 Mechanicsburg Ohio OH Champaign 021 40.0647 -83.5724 +US 43047 Mingo Ohio OH Champaign 021 40.2049 -83.6466 +US 43060 North Lewisburg Ohio OH Champaign 021 40.2229 -83.5615 +US 43070 Rosewood Ohio OH Champaign 021 40.2158 -83.9579 +US 43072 Saint Paris Ohio OH Champaign 021 40.1058 -83.9631 +US 43078 Urbana Ohio OH Champaign 021 40.1066 -83.7671 +US 43083 Westville Ohio OH Champaign 021 40.1022 -83.8379 +US 43084 Woodstock Ohio OH Champaign 021 40.1816 -83.5461 +US 45389 Christiansburg Ohio OH Champaign 021 40.0564 -84.0254 +US 43010 Catawba Ohio OH Clark 023 39.9991 -83.6222 +US 45319 Donnelsville Ohio OH Clark 023 39.9189 -83.9449 +US 45323 Enon Ohio OH Clark 023 39.8663 -83.9385 +US 45341 Medway Ohio OH Clark 023 39.8789 -84.0218 +US 45344 New Carlisle Ohio OH Clark 023 39.93 -84.0217 +US 45349 North Hampton Ohio OH Clark 023 39.9893 -83.9389 +US 45368 South Charleston Ohio OH Clark 023 39.8543 -83.6653 +US 45369 South Vienna Ohio OH Clark 023 39.9473 -83.6157 +US 45372 Tremont City Ohio OH Clark 023 40.0139 -83.8333 +US 45501 Springfield Ohio OH Clark 023 39.9271 -83.8132 +US 45502 Springfield Ohio OH Clark 023 39.9172 -83.8546 +US 45503 Springfield Ohio OH Clark 023 39.9528 -83.7804 +US 45504 Springfield Ohio OH Clark 023 39.9408 -83.8343 +US 45505 Springfield Ohio OH Clark 023 39.9106 -83.7856 +US 45506 Springfield Ohio OH Clark 023 39.9104 -83.8275 +US 45102 Amelia Ohio OH Clermont 025 39.0211 -84.2112 +US 45103 Batavia Ohio OH Clermont 025 39.0957 -84.1451 +US 45106 Bethel Ohio OH Clermont 025 38.9424 -84.0919 +US 45112 Chilo Ohio OH Clermont 025 38.7926 -84.1382 +US 45120 Felicity Ohio OH Clermont 025 38.8262 -84.0986 +US 45122 Goshen Ohio OH Clermont 025 39.2209 -84.1188 +US 45140 Loveland Ohio OH Clermont 025 39.2445 -84.2588 +US 45145 Marathon Ohio OH Clermont 025 39.1453 -84.0052 +US 45147 Miamiville Ohio OH Clermont 025 39.2137 -84.3002 +US 45150 Milford Ohio OH Clermont 025 39.1657 -84.233 +US 45153 Moscow Ohio OH Clermont 025 38.8583 -84.1958 +US 45156 Neville Ohio OH Clermont 025 38.8156 -84.2049 +US 45157 New Richmond Ohio OH Clermont 025 38.9537 -84.2379 +US 45158 Newtonsville Ohio OH Clermont 025 39.1878 -84.0783 +US 45160 Owensville Ohio OH Clermont 025 39.1232 -84.135 +US 45176 Williamsburg Ohio OH Clermont 025 39.0753 -84.0432 +US 45245 Cincinnati Ohio OH Clermont 025 39.0688 -84.2802 +US 45107 Blanchester Ohio OH Clinton 027 39.3034 -83.974 +US 45113 Clarksville Ohio OH Clinton 027 39.4042 -83.9594 +US 45114 Cuba Ohio OH Clinton 027 39.3568 -83.8572 +US 45138 Lees Creek Ohio OH Clinton 027 39.4167 -83.6476 +US 45146 Martinsville Ohio OH Clinton 027 39.3127 -83.8005 +US 45148 Midland Ohio OH Clinton 027 39.2917 -83.8931 +US 45159 New Vienna Ohio OH Clinton 027 39.3321 -83.6882 +US 45164 Port William Ohio OH Clinton 027 39.5514 -83.7881 +US 45166 Reesville Ohio OH Clinton 027 39.4805 -83.6772 +US 45169 Sabina Ohio OH Clinton 027 39.49 -83.6503 +US 45177 Wilmington Ohio OH Clinton 027 39.4488 -83.8417 +US 43920 East Liverpool Ohio OH Columbiana 029 40.6774 -80.6006 +US 43945 Salineville Ohio OH Columbiana 029 40.6195 -80.835 +US 43962 Summitville Ohio OH Columbiana 029 40.6795 -80.8816 +US 43968 Wellsville Ohio OH Columbiana 029 40.6171 -80.6621 +US 44408 Columbiana Ohio OH Columbiana 029 40.8853 -80.6975 +US 44413 East Palestine Ohio OH Columbiana 029 40.8406 -80.5465 +US 44415 Elkton Ohio OH Columbiana 029 40.763 -80.7042 +US 44423 Hanoverton Ohio OH Columbiana 029 40.7731 -80.9144 +US 44427 Kensington Ohio OH Columbiana 029 40.7142 -80.9381 +US 44431 Leetonia Ohio OH Columbiana 029 40.8631 -80.7585 +US 44432 Lisbon Ohio OH Columbiana 029 40.7592 -80.7587 +US 44441 Negley Ohio OH Columbiana 029 40.7579 -80.553 +US 44445 New Waterford Ohio OH Columbiana 029 40.8489 -80.6209 +US 44455 Rogers Ohio OH Columbiana 029 40.7789 -80.6202 +US 44460 Salem Ohio OH Columbiana 029 40.9 -80.8619 +US 44490 Washingtonville Ohio OH Columbiana 029 40.8973 -80.7631 +US 44492 West Point Ohio OH Columbiana 029 40.7093 -80.7014 +US 44493 Winona Ohio OH Columbiana 029 40.8286 -80.8967 +US 44625 East Rochester Ohio OH Columbiana 029 40.7563 -81.0175 +US 44634 Homeworth Ohio OH Columbiana 029 40.8301 -81.0333 +US 44665 North Georgetown Ohio OH Columbiana 029 40.8436 -80.9794 +US 43803 Bakersville Ohio OH Coshocton 031 40.3572 -81.6436 +US 43805 Blissfield Ohio OH Coshocton 031 40.3983 -81.9688 +US 43811 Conesville Ohio OH Coshocton 031 40.1804 -81.8951 +US 43812 Coshocton Ohio OH Coshocton 031 40.2754 -81.866 +US 43824 Fresno Ohio OH Coshocton 031 40.3711 -81.7623 +US 43828 Keene Ohio OH Coshocton 031 40.3513 -81.8736 +US 43836 Plainfield Ohio OH Coshocton 031 40.2087 -81.7197 +US 43843 Walhonding Ohio OH Coshocton 031 40.3407 -82.1559 +US 43844 Warsaw Ohio OH Coshocton 031 40.3172 -82.056 +US 43845 West Lafayette Ohio OH Coshocton 031 40.2718 -81.7361 +US 44820 Bucyrus Ohio OH Crawford 033 40.8103 -82.9698 +US 44825 Chatfield Ohio OH Crawford 033 40.9542 -82.9432 +US 44827 Crestline Ohio OH Crawford 033 40.7927 -82.7367 +US 44833 Galion Ohio OH Crawford 033 40.7303 -82.7939 +US 44854 New Washington Ohio OH Crawford 033 40.9571 -82.8504 +US 44856 North Robinson Ohio OH Crawford 033 40.7934 -82.8566 +US 44860 Oceola Ohio OH Crawford 033 40.8357 -83.1029 +US 44881 Sulphur Springs Ohio OH Crawford 033 40.8686 -82.875 +US 44887 Tiro Ohio OH Crawford 033 40.881 -82.797 +US 44017 Berea Ohio OH Cuyahoga 035 41.3676 -81.8618 +US 44022 Chagrin Falls Ohio OH Cuyahoga 035 41.4494 -81.4314 +US 44040 Gates Mills Ohio OH Cuyahoga 035 41.5324 -81.415 +US 44070 North Olmsted Ohio OH Cuyahoga 035 41.4201 -81.9131 +US 44101 Cleveland Ohio OH Cuyahoga 035 41.5234 -81.5996 +US 44102 Cleveland Ohio OH Cuyahoga 035 41.4735 -81.7398 +US 44103 Cleveland Ohio OH Cuyahoga 035 41.5157 -81.6405 +US 44104 Cleveland Ohio OH Cuyahoga 035 41.4809 -81.6245 +US 44105 Cleveland Ohio OH Cuyahoga 035 41.4509 -81.619 +US 44106 Cleveland Ohio OH Cuyahoga 035 41.5084 -81.6076 +US 44107 Lakewood Ohio OH Cuyahoga 035 41.4847 -81.8018 +US 44108 Cleveland Ohio OH Cuyahoga 035 41.5349 -81.609 +US 44109 Cleveland Ohio OH Cuyahoga 035 41.4458 -81.7033 +US 44110 Cleveland Ohio OH Cuyahoga 035 41.5636 -81.5733 +US 44111 Cleveland Ohio OH Cuyahoga 035 41.4571 -81.7844 +US 44112 Cleveland Ohio OH Cuyahoga 035 41.5356 -81.5737 +US 44113 Cleveland Ohio OH Cuyahoga 035 41.4816 -81.7018 +US 44114 Cleveland Ohio OH Cuyahoga 035 41.5064 -81.6743 +US 44115 Cleveland Ohio OH Cuyahoga 035 41.4946 -81.667 +US 44116 Rocky River Ohio OH Cuyahoga 035 41.4694 -81.8512 +US 44117 Euclid Ohio OH Cuyahoga 035 41.5696 -81.5257 +US 44118 Cleveland Ohio OH Cuyahoga 035 41.5008 -81.5516 +US 44119 Cleveland Ohio OH Cuyahoga 035 41.5882 -81.5468 +US 44120 Cleveland Ohio OH Cuyahoga 035 41.4714 -81.5839 +US 44121 Cleveland Ohio OH Cuyahoga 035 41.5277 -81.5323 +US 44122 Beachwood Ohio OH Cuyahoga 035 41.4701 -81.5232 +US 44123 Euclid Ohio OH Cuyahoga 035 41.6025 -81.5258 +US 44124 Cleveland Ohio OH Cuyahoga 035 41.501 -81.4694 +US 44125 Cleveland Ohio OH Cuyahoga 035 41.4335 -81.6323 +US 44126 Cleveland Ohio OH Cuyahoga 035 41.4429 -81.853 +US 44127 Cleveland Ohio OH Cuyahoga 035 41.4701 -81.649 +US 44128 Cleveland Ohio OH Cuyahoga 035 41.4416 -81.5486 +US 44129 Cleveland Ohio OH Cuyahoga 035 41.3897 -81.7351 +US 44130 Cleveland Ohio OH Cuyahoga 035 41.3826 -81.7964 +US 44131 Independence Ohio OH Cuyahoga 035 41.3809 -81.6642 +US 44132 Euclid Ohio OH Cuyahoga 035 41.6069 -81.4993 +US 44133 North Royalton Ohio OH Cuyahoga 035 41.3232 -81.7457 +US 44134 Cleveland Ohio OH Cuyahoga 035 41.3853 -81.7044 +US 44135 Cleveland Ohio OH Cuyahoga 035 41.4342 -81.8044 +US 44136 Strongsville Ohio OH Cuyahoga 035 41.3132 -81.8285 +US 44137 Maple Heights Ohio OH Cuyahoga 035 41.4105 -81.5603 +US 44138 Olmsted Falls Ohio OH Cuyahoga 035 41.3734 -81.9158 +US 44139 Solon Ohio OH Cuyahoga 035 41.3866 -81.4421 +US 44140 Bay Village Ohio OH Cuyahoga 035 41.4841 -81.9289 +US 44141 Brecksville Ohio OH Cuyahoga 035 41.3166 -81.6261 +US 44142 Brookpark Ohio OH Cuyahoga 035 41.3979 -81.8118 +US 44143 Cleveland Ohio OH Cuyahoga 035 41.5592 -81.4828 +US 44144 Cleveland Ohio OH Cuyahoga 035 41.4385 -81.7398 +US 44145 Westlake Ohio OH Cuyahoga 035 41.4535 -81.9218 +US 44146 Bedford Ohio OH Cuyahoga 035 41.3921 -81.5232 +US 44147 Broadview Heights Ohio OH Cuyahoga 035 41.3141 -81.6731 +US 44177 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44178 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44179 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44181 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44184 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44185 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44186 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44188 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44189 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44190 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44191 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44192 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44193 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44194 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44195 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44197 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44198 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 44199 Cleveland Ohio OH Cuyahoga 035 41.6857 -81.6728 +US 45303 Ansonia Ohio OH Darke 037 40.2151 -84.6406 +US 45304 Arcanum Ohio OH Darke 037 39.9888 -84.5312 +US 45328 Gettysburg Ohio OH Darke 037 40.1147 -84.4934 +US 45329 Gordon Ohio OH Darke 037 40.1354 -84.6191 +US 45331 Greenville Ohio OH Darke 037 40.0987 -84.6342 +US 45332 Hollansburg Ohio OH Darke 037 39.9899 -84.7901 +US 45346 New Madison Ohio OH Darke 037 39.9687 -84.7222 +US 45348 New Weston Ohio OH Darke 037 40.3349 -84.6308 +US 45350 North Star Ohio OH Darke 037 40.3243 -84.5737 +US 45351 Osgood Ohio OH Darke 037 40.3406 -84.4963 +US 45352 Palestine Ohio OH Darke 037 40.0503 -84.7457 +US 45358 Pitsburg Ohio OH Darke 037 39.987 -84.4866 +US 45362 Rossburg Ohio OH Darke 037 40.2946 -84.6264 +US 45380 Versailles Ohio OH Darke 037 40.2273 -84.4957 +US 45388 Yorkshire Ohio OH Darke 037 40.3283 -84.4836 +US 45390 Union City Ohio OH Darke 037 40.2018 -84.7832 +US 43512 Defiance Ohio OH Defiance 039 41.2799 -84.3626 +US 43519 Evansport Ohio OH Defiance 039 41.4222 -84.3966 +US 43520 Farmer Ohio OH Defiance 039 41.3907 -84.6313 +US 43526 Hicksville Ohio OH Defiance 039 41.3034 -84.7589 +US 43530 Jewell Ohio OH Defiance 039 41.3258 -84.2793 +US 43536 Mark Center Ohio OH Defiance 039 41.2917 -84.6278 +US 43549 Ney Ohio OH Defiance 039 41.3781 -84.5269 +US 43556 Sherwood Ohio OH Defiance 039 41.2946 -84.5417 +US 43003 Ashley Ohio OH Delaware 041 40.4163 -82.9542 +US 43015 Delaware Ohio OH Delaware 041 40.2932 -83.0723 +US 43021 Galena Ohio OH Delaware 041 40.2011 -82.8749 +US 43032 Kilbourne Ohio OH Delaware 041 40.3286 -82.9588 +US 43035 Lewis Center Ohio OH Delaware 041 40.1879 -82.9878 +US 43061 Ostrander Ohio OH Delaware 041 40.274 -83.1978 +US 43065 Powell Ohio OH Delaware 041 40.1834 -83.0912 +US 43066 Radnor Ohio OH Delaware 041 40.3918 -83.1781 +US 43074 Sunbury Ohio OH Delaware 041 40.2655 -82.8511 +US 43082 Westerville Ohio OH Delaware 041 40.1524 -82.882 +US 43438 Kelleys Island Ohio OH Erie 043 41.6008 -82.7068 +US 44089 Vermilion Ohio OH Erie 043 41.41 -82.3554 +US 44814 Berlin Heights Ohio OH Erie 043 41.3205 -82.4777 +US 44816 Birmingham Ohio OH Erie 043 41.3349 -82.355 +US 44824 Castalia Ohio OH Erie 043 41.3872 -82.7994 +US 44839 Huron Ohio OH Erie 043 41.3757 -82.5386 +US 44846 Milan Ohio OH Erie 043 41.3111 -82.6126 +US 44870 Sandusky Ohio OH Erie 043 41.4349 -82.7063 +US 44871 Sandusky Ohio OH Erie 043 41.4918 -82.6478 +US 43046 Millersport Ohio OH Fairfield 045 39.8993 -82.5283 +US 43102 Amanda Ohio OH Fairfield 045 39.6251 -82.7552 +US 43105 Baltimore Ohio OH Fairfield 045 39.8645 -82.624 +US 43107 Bremen Ohio OH Fairfield 045 39.6909 -82.4096 +US 43110 Canal Winchester Ohio OH Fairfield 045 39.8349 -82.8044 +US 43112 Carroll Ohio OH Fairfield 045 39.7957 -82.7084 +US 43130 Lancaster Ohio OH Fairfield 045 39.7187 -82.6031 +US 43136 Lithopolis Ohio OH Fairfield 045 39.8013 -82.8125 +US 43147 Pickerington Ohio OH Fairfield 045 39.9061 -82.7563 +US 43148 Pleasantville Ohio OH Fairfield 045 39.8227 -82.5043 +US 43150 Rushville Ohio OH Fairfield 045 39.7674 -82.428 +US 43154 Stoutsville Ohio OH Fairfield 045 39.6067 -82.8193 +US 43155 Sugar Grove Ohio OH Fairfield 045 39.6277 -82.5321 +US 43157 Thurston Ohio OH Fairfield 045 39.8427 -82.5462 +US 43163 West Rushville Ohio OH Fairfield 045 39.7631 -82.447 +US 43106 Bloomingburg Ohio OH Fayette 047 39.6286 -83.4095 +US 43128 Jeffersonville Ohio OH Fayette 047 39.659 -83.5687 +US 43142 Milledgeville Ohio OH Fayette 047 39.5937 -83.5873 +US 43160 Washington Court House Ohio OH Fayette 047 39.537 -83.455 +US 43002 Amlin Ohio OH Franklin 049 40.072 -83.1792 +US 43004 Blacklick Ohio OH Franklin 049 40.021 -82.8079 +US 43016 Dublin Ohio OH Franklin 049 40.0985 -83.1537 +US 43017 Dublin Ohio OH Franklin 049 40.1093 -83.1146 +US 43026 Hilliard Ohio OH Franklin 049 40.0322 -83.1383 +US 43054 New Albany Ohio OH Franklin 049 40.0847 -82.7988 +US 43068 Reynoldsburg Ohio OH Franklin 049 39.9551 -82.8035 +US 43069 Reynoldsburg Ohio OH Franklin County 049 39.9555 -82.7992 +US 43081 Westerville Ohio OH Franklin 049 40.1146 -82.9105 +US 43085 Columbus Ohio OH Franklin 049 40.0999 -83.0157 +US 43086 Westerville Ohio OH Franklin 049 39.969 -83.0114 +US 43099 Blacklick Ohio OH Franklin County 049 39.9956 -82.8114 +US 43109 Brice Ohio OH Franklin 049 39.9242 -82.8461 +US 43119 Galloway Ohio OH Franklin 049 39.9366 -83.1838 +US 43123 Grove City Ohio OH Franklin 049 39.8814 -83.0839 +US 43125 Groveport Ohio OH Franklin 049 39.8581 -82.8872 +US 43126 Harrisburg Ohio OH Franklin 049 39.8139 -83.1664 +US 43195 Groveport Ohio OH Franklin County 049 39.8614 -82.8916 +US 43196 Groveport Ohio OH Franklin County 049 39.831 -82.8992 +US 43198 Groveport Ohio OH Franklin County 049 39.7499 -82.915 +US 43199 Groveport Ohio OH Franklin 049 39.969 -83.0114 +US 43201 Columbus Ohio OH Franklin 049 39.9952 -83.0047 +US 43202 Columbus Ohio OH Franklin 049 40.0201 -83.0118 +US 43203 Columbus Ohio OH Franklin 049 39.9719 -82.9691 +US 43204 Columbus Ohio OH Franklin 049 39.9523 -83.078 +US 43205 Columbus Ohio OH Franklin 049 39.9569 -82.9644 +US 43206 Columbus Ohio OH Franklin 049 39.9426 -82.9748 +US 43207 Columbus Ohio OH Franklin 049 39.9046 -82.9703 +US 43209 Columbus Ohio OH Franklin 049 39.9539 -82.9301 +US 43210 Columbus Ohio OH Franklin 049 40.0028 -83.0164 +US 43211 Columbus Ohio OH Franklin 049 40.0118 -82.9732 +US 43212 Columbus Ohio OH Franklin 049 39.9874 -83.0456 +US 43213 Columbus Ohio OH Franklin 049 39.9727 -82.8329 +US 43214 Columbus Ohio OH Franklin 049 40.0535 -83.0187 +US 43215 Columbus Ohio OH Franklin 049 39.9671 -83.0044 +US 43216 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43217 Columbus Ohio OH Franklin 049 39.8277 -82.9342 +US 43218 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43219 Columbus Ohio OH Franklin 049 40.0326 -82.9103 +US 43220 Columbus Ohio OH Franklin 049 40.0495 -83.0669 +US 43221 Columbus Ohio OH Franklin 049 40.0226 -83.0776 +US 43222 Columbus Ohio OH Franklin 049 39.9576 -83.0311 +US 43223 Columbus Ohio OH Franklin 049 39.9388 -83.0463 +US 43224 Columbus Ohio OH Franklin 049 40.0425 -82.9689 +US 43226 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43227 Columbus Ohio OH Franklin 049 39.9444 -82.8903 +US 43228 Columbus Ohio OH Franklin 049 39.9648 -83.126 +US 43229 Columbus Ohio OH Franklin 049 40.0839 -82.9726 +US 43230 Columbus Ohio OH Franklin 049 40.0347 -82.8726 +US 43231 Columbus Ohio OH Franklin 049 40.081 -82.9383 +US 43232 Columbus Ohio OH Franklin 049 39.923 -82.8664 +US 43234 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43235 Columbus Ohio OH Franklin 049 40.1088 -82.9742 +US 43236 Columbus Ohio OH Franklin 049 40.1357 -83.0076 +US 43240 Columbus Ohio OH Franklin 049 40.1454 -82.9817 +US 43251 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43260 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43265 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43266 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43268 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43270 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43271 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43272 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43279 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43284 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43287 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43291 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43299 Columbus Ohio OH Franklin 049 39.969 -83.0114 +US 43502 Archbold Ohio OH Fulton 051 41.5333 -84.3048 +US 43515 Delta Ohio OH Fulton 051 41.5577 -83.9866 +US 43521 Fayette Ohio OH Fulton 051 41.6717 -84.325 +US 43533 Lyons Ohio OH Fulton 051 41.6905 -84.0624 +US 43540 Metamora Ohio OH Fulton 051 41.6952 -83.926 +US 43553 Pettisville Ohio OH Fulton 051 41.531 -84.2256 +US 43558 Swanton Ohio OH Fulton 051 41.5945 -83.8718 +US 43567 Wauseon Ohio OH Fulton 051 41.5668 -84.1537 +US 45614 Bidwell Ohio OH Gallia 053 38.9276 -82.2701 +US 45620 Cheshire Ohio OH Gallia 053 38.9587 -82.1235 +US 45623 Crown City Ohio OH Gallia 053 38.6135 -82.2657 +US 45631 Gallipolis Ohio OH Gallia 053 38.8148 -82.229 +US 45643 Kerr Ohio OH Gallia 053 38.8683 -82.2562 +US 45658 Patriot Ohio OH Gallia 053 38.777 -82.4275 +US 45674 Rio Grande Ohio OH Gallia 053 38.8814 -82.3782 +US 45685 Thurman Ohio OH Gallia 053 38.8705 -82.4063 +US 45686 Vinton Ohio OH Gallia 053 38.9783 -82.357 +US 44021 Burton Ohio OH Geauga 055 41.4527 -81.1526 +US 44023 Chagrin Falls Ohio OH Geauga 055 41.3872 -81.3042 +US 44024 Chardon Ohio OH Geauga 055 41.5719 -81.2056 +US 44026 Chesterland Ohio OH Geauga 055 41.5344 -81.3421 +US 44033 East Claridon Ohio OH Geauga 055 41.5333 -81.1112 +US 44046 Huntsburg Ohio OH Geauga 055 41.5384 -81.0734 +US 44062 Middlefield Ohio OH Geauga 055 41.4455 -81.0373 +US 44064 Montville Ohio OH Geauga 055 41.6034 -81.057 +US 44065 Newbury Ohio OH Geauga 055 41.475 -81.2345 +US 44072 Novelty Ohio OH Geauga 055 41.4763 -81.3342 +US 44073 Novelty Ohio OH Geauga 055 41.837 -80.9555 +US 44080 Parkman Ohio OH Geauga 055 41.3645 -81.0534 +US 44086 Thompson Ohio OH Geauga 055 41.6762 -81.0573 +US 45301 Alpha Ohio OH Greene 057 39.7065 -84.0162 +US 45305 Bellbrook Ohio OH Greene 057 39.6402 -84.0824 +US 45307 Bowersville Ohio OH Greene 057 39.5756 -83.7153 +US 45314 Cedarville Ohio OH Greene 057 39.7484 -83.8013 +US 45316 Clifton Ohio OH Greene 057 39.797 -83.8256 +US 45324 Fairborn Ohio OH Greene 057 39.8053 -84.0198 +US 45335 Jamestown Ohio OH Greene 057 39.6428 -83.7504 +US 45370 Spring Valley Ohio OH Greene 057 39.6083 -84.026 +US 45384 Wilberforce Ohio OH Greene 057 39.7128 -83.8781 +US 45385 Xenia Ohio OH Greene 057 39.6842 -83.9369 +US 45387 Yellow Springs Ohio OH Greene 057 39.7996 -83.8891 +US 45431 Dayton Ohio OH Greene 057 39.7574 -84.0569 +US 45433 Dayton Ohio OH Greene 057 39.8138 -84.059 +US 45730 Fly Ohio OH Greene County 057 39.5732 -81.0137 +US 43722 Buffalo Ohio OH Guernsey 059 39.9194 -81.5311 +US 43723 Byesville Ohio OH Guernsey 059 39.9623 -81.5485 +US 43725 Cambridge Ohio OH Guernsey 059 40.027 -81.582 +US 43732 Cumberland Ohio OH Guernsey 059 39.8741 -81.6259 +US 43733 Derwent Ohio OH Guernsey 059 39.9236 -81.543 +US 43736 Fairview Ohio OH Guernsey 059 40.065 -81.2558 +US 43749 Kimbolton Ohio OH Guernsey 059 40.1589 -81.549 +US 43750 Kipling Ohio OH Guernsey 059 39.9945 -81.5006 +US 43755 Lore City Ohio OH Guernsey 059 40.0459 -81.4479 +US 43768 Old Washington Ohio OH Guernsey 059 40.0392 -81.4522 +US 43772 Pleasant City Ohio OH Guernsey 059 39.9095 -81.558 +US 43773 Quaker City Ohio OH Guernsey 059 39.9866 -81.2899 +US 43778 Salesville Ohio OH Guernsey 059 40.0081 -81.3728 +US 43780 Senecaville Ohio OH Guernsey 059 39.9337 -81.458 +US 45001 Addyston Ohio OH Hamilton 061 39.1374 -84.7096 +US 45002 Cleves Ohio OH Hamilton 061 39.1937 -84.734 +US 45030 Harrison Ohio OH Hamilton 061 39.2592 -84.7837 +US 45033 Hooven Ohio OH Hamilton 061 39.1773 -84.7627 +US 45041 Miamitown Ohio OH Hamilton 061 39.1761 -84.7085 +US 45051 Mount Saint Joseph Ohio OH Hamilton 061 39.0965 -84.6431 +US 45052 North Bend Ohio OH Hamilton 061 39.1536 -84.7273 +US 45111 Camp Dennison Ohio OH Hamilton 061 39.1962 -84.2897 +US 45174 Terrace Park Ohio OH Hamilton 061 39.1602 -84.3098 +US 45201 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45202 Cincinnati Ohio OH Hamilton 061 39.1072 -84.502 +US 45203 Cincinnati Ohio OH Hamilton 061 39.1075 -84.5257 +US 45204 Cincinnati Ohio OH Hamilton 061 39.0963 -84.5719 +US 45205 Cincinnati Ohio OH Hamilton 061 39.1104 -84.5757 +US 45206 Cincinnati Ohio OH Hamilton 061 39.1269 -84.4853 +US 45207 Cincinnati Ohio OH Hamilton 061 39.1397 -84.4706 +US 45208 Cincinnati Ohio OH Hamilton 061 39.1361 -84.4355 +US 45209 Cincinnati Ohio OH Hamilton 061 39.1516 -84.4278 +US 45210 Cincinnati Ohio OH Hamilton 061 39.1126 -84.5135 +US 45211 Cincinnati Ohio OH Hamilton 061 39.1524 -84.5967 +US 45212 Cincinnati Ohio OH Hamilton 061 39.1642 -84.4522 +US 45213 Cincinnati Ohio OH Hamilton 061 39.1802 -84.4204 +US 45214 Cincinnati Ohio OH Hamilton 061 39.1219 -84.5506 +US 45215 Cincinnati Ohio OH Hamilton 061 39.2353 -84.4619 +US 45216 Cincinnati Ohio OH Hamilton 061 39.2003 -84.4859 +US 45217 Cincinnati Ohio OH Hamilton 061 39.1661 -84.4959 +US 45218 Cincinnati Ohio OH Hamilton 061 39.2663 -84.5221 +US 45219 Cincinnati Ohio OH Hamilton 061 39.127 -84.5131 +US 45220 Cincinnati Ohio OH Hamilton 061 39.1432 -84.5217 +US 45221 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45222 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45223 Cincinnati Ohio OH Hamilton 061 39.1696 -84.5478 +US 45224 Cincinnati Ohio OH Hamilton 061 39.1991 -84.5251 +US 45225 Cincinnati Ohio OH Hamilton 061 39.1447 -84.5533 +US 45226 Cincinnati Ohio OH Hamilton 061 39.1174 -84.4312 +US 45227 Cincinnati Ohio OH Hamilton 061 39.1539 -84.3854 +US 45228 Cincinnati Ohio OH Hamilton 061 39.0706 -84.4179 +US 45229 Cincinnati Ohio OH Hamilton 061 39.149 -84.4892 +US 45230 Cincinnati Ohio OH Hamilton 061 39.0713 -84.3758 +US 45231 Cincinnati Ohio OH Hamilton 061 39.2418 -84.5437 +US 45232 Cincinnati Ohio OH Hamilton 061 39.1859 -84.5141 +US 45233 Cincinnati Ohio OH Hamilton 061 39.111 -84.6594 +US 45234 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45235 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45236 Cincinnati Ohio OH Hamilton 061 39.21 -84.395 +US 45237 Cincinnati Ohio OH Hamilton 061 39.188 -84.458 +US 45238 Cincinnati Ohio OH Hamilton 061 39.1092 -84.6108 +US 45239 Cincinnati Ohio OH Hamilton 061 39.2045 -84.5799 +US 45240 Cincinnati Ohio OH Hamilton 061 39.2851 -84.5288 +US 45241 Cincinnati Ohio OH Hamilton 061 39.2638 -84.4092 +US 45242 Cincinnati Ohio OH Hamilton 061 39.2447 -84.3455 +US 45243 Cincinnati Ohio OH Hamilton 061 39.1848 -84.3448 +US 45244 Cincinnati Ohio OH Hamilton 061 39.1191 -84.351 +US 45246 Cincinnati Ohio OH Hamilton 061 39.2839 -84.4744 +US 45247 Cincinnati Ohio OH Hamilton 061 39.2208 -84.6418 +US 45248 Cincinnati Ohio OH Hamilton 061 39.1652 -84.6625 +US 45249 Cincinnati Ohio OH Hamilton 061 39.2692 -84.3307 +US 45250 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45251 Cincinnati Ohio OH Hamilton 061 39.2672 -84.5993 +US 45252 Cincinnati Ohio OH Hamilton 061 39.2668 -84.6283 +US 45253 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45254 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45255 Cincinnati Ohio OH Hamilton 061 39.0584 -84.3396 +US 45258 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45262 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45263 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45264 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45267 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45268 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45269 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45270 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45271 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45273 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45274 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45277 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45280 Cincinnati Ohio OH Hamilton County 061 39.1581 -84.4942 +US 45296 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45298 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45299 Cincinnati Ohio OH Hamilton 061 39.2622 -84.5093 +US 45944 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 45950 Cincinnati Ohio OH Hamilton County 061 39.1619 -84.4569 +US 45999 Cincinnati Ohio OH Hamilton 061 39.1668 -84.5382 +US 44804 Arcadia Ohio OH Hancock 063 41.1116 -83.5019 +US 45814 Arlington Ohio OH Hancock 063 40.8761 -83.6685 +US 45816 Benton Ridge Ohio OH Hancock 063 41.0031 -83.7931 +US 45839 Findlay Ohio OH Hancock 063 40.9933 -83.6507 +US 45840 Findlay Ohio OH Hancock 063 41.0449 -83.6457 +US 45841 Jenera Ohio OH Hancock 063 40.9004 -83.7256 +US 45858 Mc Comb Ohio OH Hancock 063 41.1125 -83.8014 +US 45867 Mount Blanchard Ohio OH Hancock 063 40.8929 -83.5553 +US 45868 Mount Cory Ohio OH Hancock 063 40.9437 -83.8093 +US 45881 Rawson Ohio OH Hancock 063 41.0001 -83.807 +US 45889 Van Buren Ohio OH Hancock 063 41.1327 -83.6473 +US 45890 Vanlue Ohio OH Hancock 063 40.9583 -83.4971 +US 45897 Williamstown Ohio OH Hancock 063 40.834 -83.6518 +US 43326 Kenton Ohio OH Hardin 065 40.6404 -83.6111 +US 43340 Mount Victory Ohio OH Hardin 065 40.5232 -83.4942 +US 43345 Ridgeway Ohio OH Hardin 065 40.5209 -83.5702 +US 43346 Roundhead Ohio OH Hardin 065 40.5732 -83.8462 +US 45810 Ada Ohio OH Hardin 065 40.7709 -83.8154 +US 45812 Alger Ohio OH Hardin 065 40.706 -83.825 +US 45835 Dola Ohio OH Hardin 065 40.7598 -83.7001 +US 45836 Dunkirk Ohio OH Hardin 065 40.7824 -83.6339 +US 45843 Forest Ohio OH Hardin 065 40.7816 -83.5351 +US 45859 Mc Guffey Ohio OH Hardin 065 40.6899 -83.8111 +US 43907 Cadiz Ohio OH Harrison 067 40.2632 -81.0307 +US 43973 Freeport Ohio OH Harrison 067 40.1925 -81.277 +US 43974 Harrisville Ohio OH Harrison 067 40.1815 -80.8882 +US 43976 Hopedale Ohio OH Harrison 067 40.3496 -80.9021 +US 43981 New Athens Ohio OH Harrison 067 40.1839 -80.9959 +US 43984 New Rumley Ohio OH Harrison 067 40.2965 -81.1025 +US 43986 Jewett Ohio OH Harrison 067 40.3745 -81.0004 +US 43988 Scio Ohio OH Harrison 067 40.4012 -81.1016 +US 43989 Short Creek Ohio OH Harrison 067 40.2965 -81.1025 +US 44693 Deersville Ohio OH Harrison 067 40.2947 -81.1839 +US 44695 Bowerston Ohio OH Harrison 067 40.4371 -81.1862 +US 44699 Tippecanoe Ohio OH Harrison 067 40.2797 -81.2919 +US 43510 Colton Ohio OH Henry 069 41.4199 -84.0137 +US 43516 Deshler Ohio OH Henry 069 41.2239 -83.8964 +US 43523 Grelton Ohio OH Henry 069 41.3411 -84.0005 +US 43524 Hamler Ohio OH Henry 069 41.2129 -84.072 +US 43527 Holgate Ohio OH Henry 069 41.2549 -84.1447 +US 43532 Liberty Center Ohio OH Henry 069 41.4514 -83.9859 +US 43534 Mc Clure Ohio OH Henry 069 41.3773 -83.9425 +US 43535 Malinta Ohio OH Henry 069 41.3084 -84.0457 +US 43545 Napoleon Ohio OH Henry 069 41.391 -84.1433 +US 43548 New Bavaria Ohio OH Henry 069 41.2086 -84.1913 +US 43550 Okolona Ohio OH Henry 069 41.3267 -84.1117 +US 43555 Ridgeville Corners Ohio OH Henry 069 41.4351 -84.2544 +US 45110 Buford Ohio OH Highland 071 39.0743 -83.8484 +US 45123 Greenfield Ohio OH Highland 071 39.3478 -83.3898 +US 45132 Highland Ohio OH Highland 071 39.3527 -83.6024 +US 45133 Hillsboro Ohio OH Highland 071 39.1679 -83.6064 +US 45135 Leesburg Ohio OH Highland 071 39.3458 -83.5481 +US 45142 Lynchburg Ohio OH Highland 071 39.2119 -83.8021 +US 45155 Mowrystown Ohio OH Highland 071 39.0388 -83.7505 +US 45165 Greenfield Ohio OH Highland 071 39.1988 -83.6079 +US 45172 Sinking Spring Ohio OH Highland 071 39.0738 -83.3853 +US 43111 Carbon Hill Ohio OH Hocking 073 39.5045 -82.2429 +US 43127 Haydenville Ohio OH Hocking 073 39.4766 -82.3281 +US 43135 Laurelville Ohio OH Hocking 073 39.4757 -82.7212 +US 43138 Logan Ohio OH Hocking 073 39.5372 -82.4126 +US 43144 Murray City Ohio OH Hocking 073 39.5055 -82.1711 +US 43149 Rockbridge Ohio OH Hocking 073 39.5509 -82.5626 +US 43152 South Bloomingville Ohio OH Hocking 073 39.4174 -82.5923 +US 43158 Union Furnace Ohio OH Hocking 073 39.4338 -82.3667 +US 44610 Berlin Ohio OH Holmes 075 40.5474 -81.8766 +US 44611 Big Prairie Ohio OH Holmes 075 40.6188 -82.072 +US 44617 Charm Ohio OH Holmes 075 40.5071 -81.7829 +US 44628 Glenmont Ohio OH Holmes 075 40.5217 -82.1505 +US 44633 Holmesville Ohio OH Holmes 075 40.633 -81.9275 +US 44637 Killbuck Ohio OH Holmes 075 40.4933 -81.9837 +US 44638 Lakeville Ohio OH Holmes 075 40.652 -82.1455 +US 44654 Millersburg Ohio OH Holmes 075 40.5567 -81.8324 +US 44660 Mount Hope Ohio OH Holmes 075 40.6223 -81.7825 +US 44661 Nashville Ohio OH Holmes 075 40.5956 -82.113 +US 44687 Walnut Creek Ohio OH Holmes 075 40.5516 -81.7284 +US 44690 Winesburg Ohio OH Holmes 075 40.6165 -81.6817 +US 44811 Bellevue Ohio OH Huron 077 41.2684 -82.8577 +US 44826 Collins Ohio OH Huron 077 41.245 -82.4904 +US 44837 Greenwich Ohio OH Huron 077 41.0407 -82.5133 +US 44847 Monroeville Ohio OH Huron 077 41.2181 -82.7023 +US 44850 New Haven Ohio OH Huron 077 41.035 -82.677 +US 44851 New London Ohio OH Huron 077 41.0906 -82.3966 +US 44855 North Fairfield Ohio OH Huron 077 41.103 -82.5998 +US 44857 Norwalk Ohio OH Huron 077 41.2403 -82.6078 +US 44888 Willard Ohio OH Huron 077 41.1415 -82.5889 +US 44889 Wakeman Ohio OH Huron 077 41.2637 -82.3782 +US 44890 Willard Ohio OH Huron 077 41.0628 -82.7288 +US 45621 Coalton Ohio OH Jackson 079 39.1108 -82.6077 +US 45640 Jackson Ohio OH Jackson 079 39.0428 -82.6472 +US 45656 Oak Hill Ohio OH Jackson 079 38.8916 -82.5883 +US 45692 Wellston Ohio OH Jackson 079 39.1189 -82.5485 +US 43901 Adena Ohio OH Jefferson 081 40.2126 -80.8815 +US 43903 Amsterdam Ohio OH Jefferson 081 40.4731 -80.9596 +US 43908 Bergholz Ohio OH Jefferson 081 40.5002 -80.8565 +US 43910 Bloomingdale Ohio OH Jefferson 081 40.3742 -80.8072 +US 43913 Brilliant Ohio OH Jefferson 081 40.2683 -80.6319 +US 43917 Dillonvale Ohio OH Jefferson 081 40.2251 -80.8031 +US 43925 East Springfield Ohio OH Jefferson 081 40.4151 -80.7567 +US 43926 Empire Ohio OH Jefferson 081 40.5092 -80.6241 +US 43930 Hammondsville Ohio OH Jefferson 081 40.5676 -80.7659 +US 43932 Irondale Ohio OH Jefferson 081 40.5111 -80.7915 +US 43938 Mingo Junction Ohio OH Jefferson 081 40.3203 -80.625 +US 43939 Mount Pleasant Ohio OH Jefferson 081 40.177 -80.7827 +US 43941 Piney Fork Ohio OH Jefferson 081 40.2639 -80.8358 +US 43943 Rayland Ohio OH Jefferson 081 40.2083 -80.7125 +US 43944 Richmond Ohio OH Jefferson 081 40.4261 -80.7613 +US 43948 Smithfield Ohio OH Jefferson 081 40.2801 -80.7849 +US 43952 Steubenville Ohio OH Jefferson 081 40.398 -80.6617 +US 43953 Steubenville Ohio OH Jefferson 081 40.3524 -80.6781 +US 43961 Stratton Ohio OH Jefferson 081 40.5185 -80.6285 +US 43963 Tiltonsville Ohio OH Jefferson 081 40.1681 -80.6996 +US 43964 Toronto Ohio OH Jefferson 081 40.4733 -80.6325 +US 43966 Unionport Ohio OH Jefferson 081 40.361 -80.8395 +US 43970 Wolf Run Ohio OH Jefferson 081 40.4695 -80.8892 +US 43971 Yorkville Ohio OH Jefferson 081 40.1581 -80.7077 +US 43005 Bladensburg Ohio OH Knox 083 40.2962 -82.2736 +US 43006 Brinkhaven Ohio OH Knox 083 40.4583 -82.1553 +US 43011 Centerburg Ohio OH Knox 083 40.2865 -82.68 +US 43014 Danville Ohio OH Knox 083 40.4557 -82.2639 +US 43019 Fredericktown Ohio OH Knox 083 40.4976 -82.5857 +US 43022 Gambier Ohio OH Knox 083 40.3782 -82.3828 +US 43028 Howard Ohio OH Knox 083 40.4158 -82.3334 +US 43037 Martinsburg Ohio OH Knox 083 40.268 -82.3567 +US 43048 Mount Liberty Ohio OH Knox 083 40.4061 -82.4658 +US 43050 Mount Vernon Ohio OH Knox 083 40.3849 -82.4873 +US 44045 Grand River Ohio OH Lake 085 41.7427 -81.2821 +US 44057 Madison Ohio OH Lake 085 41.8054 -81.0588 +US 44060 Mentor Ohio OH Lake 085 41.6895 -81.3421 +US 44061 Mentor Ohio OH Lake 085 41.9107 -81.249 +US 44077 Painesville Ohio OH Lake 085 41.7079 -81.199 +US 44081 Perry Ohio OH Lake 085 41.7679 -81.1433 +US 44092 Wickliffe Ohio OH Lake 085 41.6046 -81.4692 +US 44094 Willoughby Ohio OH Lake 085 41.6302 -81.4076 +US 44095 Eastlake Ohio OH Lake 085 41.6587 -81.4445 +US 44096 Willoughby Ohio OH Lake 085 41.9107 -81.249 +US 44097 Eastlake Ohio OH Lake 085 41.9107 -81.249 +US 45619 Chesapeake Ohio OH Lawrence 087 38.4551 -82.4504 +US 45638 Ironton Ohio OH Lawrence 087 38.5294 -82.6654 +US 45645 Kitts Hill Ohio OH Lawrence 087 38.5649 -82.5489 +US 45659 Pedro Ohio OH Lawrence 087 38.6503 -82.6477 +US 45669 Proctorville Ohio OH Lawrence 087 38.4635 -82.3523 +US 45675 Rock Camp Ohio OH Lawrence 087 38.5367 -82.5327 +US 45678 Scottown Ohio OH Lawrence 087 38.594 -82.3967 +US 45680 South Point Ohio OH Lawrence 087 38.4339 -82.5529 +US 45688 Waterloo Ohio OH Lawrence 087 38.7182 -82.5174 +US 45696 Willow Wood Ohio OH Lawrence 087 38.594 -82.453 +US 43001 Alexandria Ohio OH Licking 089 40.106 -82.6077 +US 43008 Buckeye Lake Ohio OH Licking 089 39.9447 -82.4797 +US 43013 Croton Ohio OH Licking 089 40.2376 -82.6989 +US 43018 Etna Ohio OH Licking 089 39.9572 -82.6837 +US 43023 Granville Ohio OH Licking 089 40.0788 -82.5194 +US 43025 Hebron Ohio OH Licking 089 39.9535 -82.4919 +US 43027 Homer Ohio OH Licking 089 40.1328 -82.5616 +US 43030 Jacksontown Ohio OH Licking 089 39.9688 -82.43 +US 43031 Johnstown Ohio OH Licking 089 40.1445 -82.6973 +US 43033 Kirkersville Ohio OH Licking 089 39.961 -82.5998 +US 43055 Newark Ohio OH Licking 089 40.0724 -82.4046 +US 43056 Heath Ohio OH Licking 089 40.0197 -82.3875 +US 43057 Newark Ohio OH Licking County 089 40.0596 -82.4009 +US 43058 Newark Ohio OH Licking 089 40.0951 -82.4827 +US 43062 Pataskala Ohio OH Licking 089 40.0009 -82.6687 +US 43071 Saint Louisville Ohio OH Licking 089 40.1818 -82.356 +US 43073 Summit Station Ohio OH Licking 089 39.9965 -82.754 +US 43080 Utica Ohio OH Licking 089 40.2441 -82.4135 +US 43093 Newark Ohio OH Licking 089 40.0951 -82.4827 +US 43098 Hebron Ohio OH Licking 089 40.0951 -82.4827 +US 43721 Brownsville Ohio OH Licking 089 39.9452 -82.256 +US 43740 Gratiot Ohio OH Licking 089 39.9522 -82.2128 +US 43310 Belle Center Ohio OH Logan 091 40.5024 -83.7688 +US 43311 Bellefontaine Ohio OH Logan 091 40.3605 -83.7571 +US 43318 De Graff Ohio OH Logan 091 40.3058 -83.9153 +US 43319 East Liberty Ohio OH Logan 091 40.3077 -83.5862 +US 43324 Huntsville Ohio OH Logan 091 40.4413 -83.7927 +US 43331 Lakeview Ohio OH Logan 091 40.5019 -83.9202 +US 43333 Lewistown Ohio OH Logan 091 40.4277 -83.9209 +US 43336 Middleburg Ohio OH Logan 091 40.2948 -83.5773 +US 43343 Quincy Ohio OH Logan 091 40.2876 -83.9744 +US 43347 Rushsylvania Ohio OH Logan 091 40.4658 -83.6598 +US 43348 Russells Point Ohio OH Logan 091 40.4675 -83.887 +US 43357 West Liberty Ohio OH Logan 091 40.2625 -83.7528 +US 43358 West Mansfield Ohio OH Logan 091 40.4043 -83.5243 +US 43360 Zanesfield Ohio OH Logan 091 40.3211 -83.6405 +US 44001 Amherst Ohio OH Lorain 093 41.3617 -82.2538 +US 44011 Avon Ohio OH Lorain 093 41.4467 -82.0204 +US 44012 Avon Lake Ohio OH Lorain 093 41.5019 -82.0111 +US 44028 Columbia Station Ohio OH Lorain 093 41.3187 -81.9344 +US 44035 Elyria Ohio OH Lorain 093 41.3724 -82.1051 +US 44036 Elyria Ohio OH Lorain 093 41.4015 -82.0771 +US 44039 North Ridgeville Ohio OH Lorain 093 41.3964 -82.0033 +US 44044 Grafton Ohio OH Lorain 093 41.2854 -82.0431 +US 44049 Kipton Ohio OH Lorain 093 41.2664 -82.3064 +US 44050 Lagrange Ohio OH Lorain 093 41.2423 -82.1279 +US 44052 Lorain Ohio OH Lorain 093 41.4578 -82.171 +US 44053 Lorain Ohio OH Lorain 093 41.432 -82.2038 +US 44054 Sheffield Lake Ohio OH Lorain 093 41.4823 -82.0965 +US 44055 Lorain Ohio OH Lorain 093 41.4361 -82.135 +US 44074 Oberlin Ohio OH Lorain 093 41.2899 -82.2229 +US 44090 Wellington Ohio OH Lorain 093 41.1712 -82.2269 +US 43434 Harbor View Ohio OH Lucas 095 41.6457 -83.6202 +US 43504 Berkey Ohio OH Lucas 095 41.6989 -83.831 +US 43528 Holland Ohio OH Lucas 095 41.6226 -83.7257 +US 43537 Maumee Ohio OH Lucas 095 41.5817 -83.6628 +US 43542 Monclova Ohio OH Lucas 095 41.5684 -83.7757 +US 43547 Neapolis Ohio OH Lucas 095 41.492 -83.8706 +US 43560 Sylvania Ohio OH Lucas 095 41.708 -83.7068 +US 43566 Waterville Ohio OH Lucas 095 41.5022 -83.7331 +US 43571 Whitehouse Ohio OH Lucas 095 41.5194 -83.8115 +US 43601 Toledo Ohio OH Lucas 095 41.7207 -83.5694 +US 43602 Toledo Ohio OH Lucas 095 41.648 -83.5547 +US 43603 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43604 Toledo Ohio OH Lucas 095 41.6614 -83.5249 +US 43605 Toledo Ohio OH Lucas 095 41.6525 -83.5085 +US 43606 Toledo Ohio OH Lucas 095 41.6712 -83.606 +US 43607 Toledo Ohio OH Lucas 095 41.6504 -83.5974 +US 43608 Toledo Ohio OH Lucas 095 41.6779 -83.5344 +US 43609 Toledo Ohio OH Lucas 095 41.6298 -83.5773 +US 43610 Toledo Ohio OH Lucas 095 41.6767 -83.5573 +US 43611 Toledo Ohio OH Lucas 095 41.7045 -83.4892 +US 43612 Toledo Ohio OH Lucas 095 41.7046 -83.5656 +US 43613 Toledo Ohio OH Lucas 095 41.7039 -83.6034 +US 43614 Toledo Ohio OH Lucas 095 41.6028 -83.6292 +US 43615 Toledo Ohio OH Lucas 095 41.6492 -83.6706 +US 43616 Oregon Ohio OH Lucas 095 41.6418 -83.4714 +US 43617 Toledo Ohio OH Lucas 095 41.6668 -83.717 +US 43618 Oregon Ohio OH Lucas 095 41.6569 -83.3991 +US 43620 Toledo Ohio OH Lucas 095 41.6654 -83.5536 +US 43623 Toledo Ohio OH Lucas 095 41.708 -83.6434 +US 43624 Toledo Ohio OH Lucas 095 41.6563 -83.545 +US 43635 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43652 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43653 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43654 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43655 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43656 Toledo Ohio OH Lucas 095 41.6782 -83.4972 +US 43657 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43659 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43660 Toledo Ohio OH Lucas 095 41.6546 -83.5329 +US 43661 Toledo Ohio OH Lucas 095 41.6782 -83.4972 +US 43666 Toledo Ohio OH Lucas 095 41.6782 -83.4972 +US 43667 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43681 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43682 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43697 Toledo Ohio OH Lucas 095 41.6868 -83.4394 +US 43699 Toledo Ohio OH Lucas 095 41.6538 -83.6589 +US 43064 Plain City Ohio OH Madison 097 40.0974 -83.269 +US 43140 London Ohio OH Madison 097 39.9001 -83.4439 +US 43143 Mount Sterling Ohio OH Madison 097 39.7175 -83.2806 +US 43151 Sedalia Ohio OH Madison 097 39.733 -83.4764 +US 43153 South Solon Ohio OH Madison 097 39.7423 -83.597 +US 43162 West Jefferson Ohio OH Madison 097 39.9424 -83.2853 +US 44401 Berlin Center Ohio OH Mahoning 099 41.0243 -80.9341 +US 44405 Campbell Ohio OH Mahoning 099 41.0778 -80.5897 +US 44406 Canfield Ohio OH Mahoning 099 41.0293 -80.7564 +US 44416 Ellsworth Ohio OH Mahoning 099 41.0171 -80.8029 +US 44422 Greenford Ohio OH Mahoning 099 41.0171 -80.8029 +US 44429 Lake Milton Ohio OH Mahoning 099 41.1014 -80.9724 +US 44436 Lowellville Ohio OH Mahoning 099 41.0503 -80.5416 +US 44442 New Middletown Ohio OH Mahoning 099 40.9646 -80.5534 +US 44443 New Springfield Ohio OH Mahoning 099 40.9265 -80.5856 +US 44449 North Benton Ohio OH Mahoning 099 40.9876 -81.0162 +US 44451 North Jackson Ohio OH Mahoning 099 41.088 -80.8623 +US 44452 North Lima Ohio OH Mahoning 099 40.9649 -80.6549 +US 44454 Petersburg Ohio OH Mahoning 099 40.9049 -80.54 +US 44471 Struthers Ohio OH Mahoning 099 41.0508 -80.5985 +US 44501 Youngstown Ohio OH Mahoning 099 41.0171 -80.8029 +US 44502 Youngstown Ohio OH Mahoning 099 41.0774 -80.6409 +US 44503 Youngstown Ohio OH Mahoning 099 41.102 -80.65 +US 44504 Youngstown Ohio OH Mahoning 099 41.1237 -80.6539 +US 44505 Youngstown Ohio OH Mahoning 099 41.1257 -80.6277 +US 44506 Youngstown Ohio OH Mahoning 099 41.096 -80.6259 +US 44507 Youngstown Ohio OH Mahoning 099 41.0732 -80.6553 +US 44509 Youngstown Ohio OH Mahoning 099 41.105 -80.6945 +US 44510 Youngstown Ohio OH Mahoning 099 41.1197 -80.6672 +US 44511 Youngstown Ohio OH Mahoning 099 41.0704 -80.6931 +US 44512 Youngstown Ohio OH Mahoning 099 41.0252 -80.6687 +US 44513 Youngstown Ohio OH Mahoning 099 41.0171 -80.8029 +US 44514 Youngstown Ohio OH Mahoning 099 41.0093 -80.6183 +US 44515 Youngstown Ohio OH Mahoning 099 41.0979 -80.7598 +US 44555 Youngstown Ohio OH Mahoning 099 41.1039 -80.6436 +US 44598 Youngstown Ohio OH Mahoning 099 41.0171 -80.8029 +US 44599 Youngstown Ohio OH Mahoning 099 41.0171 -80.8029 +US 44609 Beloit Ohio OH Mahoning 099 40.8957 -80.9897 +US 44619 Damascus Ohio OH Mahoning 099 40.9021 -80.9628 +US 44672 Sebring Ohio OH Mahoning 099 40.9227 -81.0232 +US 43301 Marion Ohio OH Marion 101 40.6166 -83.0693 +US 43302 Marion Ohio OH Marion 101 40.5876 -83.1271 +US 43305 Marion Ohio OH Marion County 101 40.5886 -83.1285 +US 43306 Marion Ohio OH Marion 101 40.5694 -83.1393 +US 43307 Marion Ohio OH Marion 101 40.5694 -83.1393 +US 43314 Caledonia Ohio OH Marion 101 40.6272 -82.9925 +US 43322 Green Camp Ohio OH Marion 101 40.5322 -83.2078 +US 43332 La Rue Ohio OH Marion 101 40.5789 -83.3734 +US 43335 Martel Ohio OH Marion 101 40.6685 -82.91 +US 43337 Morral Ohio OH Marion 101 40.6954 -83.2046 +US 43341 New Bloomington Ohio OH Marion 101 40.6073 -83.3224 +US 43342 Prospect Ohio OH Marion 101 40.4727 -83.1763 +US 43356 Waldo Ohio OH Marion 101 40.4605 -83.0706 +US 44149 Strongsville Ohio OH Medina 103 41.3134 -81.8562 +US 44212 Brunswick Ohio OH Medina 103 41.2471 -81.828 +US 44215 Chippewa Lake Ohio OH Medina 103 41.0653 -81.9017 +US 44233 Hinckley Ohio OH Medina 103 41.2419 -81.7453 +US 44235 Homerville Ohio OH Medina 103 41.0267 -82.125 +US 44251 Westfield Center Ohio OH Medina 103 41.0288 -81.9283 +US 44253 Litchfield Ohio OH Medina 103 41.1668 -82.0157 +US 44254 Lodi Ohio OH Medina 103 41.0327 -82.0147 +US 44256 Medina Ohio OH Medina 103 41.1404 -81.8584 +US 44258 Medina Ohio OH Medina 103 41.1276 -81.8411 +US 44273 Seville Ohio OH Medina 103 41.0227 -81.8562 +US 44274 Sharon Center Ohio OH Medina 103 41.0992 -81.7343 +US 44275 Spencer Ohio OH Medina 103 41.0983 -82.0999 +US 44280 Valley City Ohio OH Medina 103 41.2368 -81.9245 +US 44281 Wadsworth Ohio OH Medina 103 41.0384 -81.7374 +US 44282 Wadsworth Ohio OH Medina 103 41.1327 -81.9292 +US 45720 Chester Ohio OH Meigs 105 39.0856 -81.9214 +US 45741 Langsville Ohio OH Meigs 105 39.0697 -82.2499 +US 45743 Long Bottom Ohio OH Meigs 105 39.0802 -81.8887 +US 45760 Middleport Ohio OH Meigs 105 38.9993 -82.06 +US 45769 Pomeroy Ohio OH Meigs 105 39.0607 -82.0331 +US 45770 Portland Ohio OH Meigs 105 38.9999 -81.8135 +US 45771 Racine Ohio OH Meigs 105 38.9786 -81.9258 +US 45772 Reedsville Ohio OH Meigs 105 39.149 -81.7924 +US 45775 Rutland Ohio OH Meigs 105 39.0909 -82.1486 +US 45779 Syracuse Ohio OH Meigs 105 39.0033 -81.9661 +US 45783 Tuppers Plains Ohio OH Meigs 105 39.1683 -81.8423 +US 45310 Burkettsville Ohio OH Mercer 107 40.3541 -84.6435 +US 45822 Celina Ohio OH Mercer 107 40.5566 -84.6287 +US 45826 Chickasaw Ohio OH Mercer 107 40.4282 -84.6335 +US 45828 Coldwater Ohio OH Mercer 107 40.4846 -84.6517 +US 45846 Fort Recovery Ohio OH Mercer 107 40.4018 -84.7613 +US 45860 Maria Stein Ohio OH Mercer 107 40.4062 -84.5076 +US 45862 Mendon Ohio OH Mercer 107 40.6777 -84.5152 +US 45866 Montezuma Ohio OH Mercer 107 40.489 -84.5494 +US 45882 Rockford Ohio OH Mercer 107 40.6771 -84.6642 +US 45883 Saint Henry Ohio OH Mercer 107 40.4091 -84.6333 +US 45308 Bradford Ohio OH Miami 109 40.1286 -84.4293 +US 45312 Casstown Ohio OH Miami 109 40.0716 -84.1088 +US 45317 Conover Ohio OH Miami 109 40.1457 -84.0283 +US 45318 Covington Ohio OH Miami 109 40.1176 -84.3496 +US 45326 Fletcher Ohio OH Miami 109 40.1445 -84.101 +US 45337 Laura Ohio OH Miami 109 39.9785 -84.3994 +US 45339 Ludlow Falls Ohio OH Miami 109 39.9871 -84.3334 +US 45356 Piqua Ohio OH Miami 109 40.1486 -84.2531 +US 45359 Pleasant Hill Ohio OH Miami 109 40.0531 -84.3436 +US 45361 Potsdam Ohio OH Miami 109 39.9635 -84.4145 +US 45371 Tipp City Ohio OH Miami 109 39.942 -84.1663 +US 45373 Troy Ohio OH Miami 109 40.0374 -84.2032 +US 45374 Troy Ohio OH Miami 109 40.04 -84.2298 +US 45383 West Milton Ohio OH Miami 109 39.9531 -84.3242 +US 43716 Beallsville Ohio OH Monroe 111 39.8726 -81.0144 +US 43747 Jerusalem Ohio OH Monroe 111 39.8488 -81.0921 +US 43752 Laings Ohio OH Monroe 111 39.7171 -81.01 +US 43754 Lewisville Ohio OH Monroe 111 39.7684 -81.2316 +US 43757 Malaga Ohio OH Monroe 111 39.8594 -81.1516 +US 43786 Stafford Ohio OH Monroe 111 39.7112 -81.2758 +US 43789 Sycamore Valley Ohio OH Monroe 111 39.6544 -81.2407 +US 43793 Woodsfield Ohio OH Monroe 111 39.7515 -81.0759 +US 43914 Cameron Ohio OH Monroe 111 39.7687 -80.9454 +US 43915 Clarington Ohio OH Monroe 111 39.7819 -80.9113 +US 43931 Hannibal Ohio OH Monroe 111 39.6763 -80.8914 +US 43946 Sardis Ohio OH Monroe 111 39.6526 -80.9243 +US 45734 Graysville Ohio OH Monroe 111 39.663 -81.1822 +US 45309 Brookville Ohio OH Montgomery 113 39.8414 -84.4165 +US 45315 Clayton Ohio OH Montgomery 113 39.8551 -84.3399 +US 45322 Englewood Ohio OH Montgomery 113 39.877 -84.3319 +US 45325 Farmersville Ohio OH Montgomery 113 39.6867 -84.4205 +US 45327 Germantown Ohio OH Montgomery 113 39.6244 -84.3764 +US 45342 Miamisburg Ohio OH Montgomery 113 39.6321 -84.2675 +US 45343 Miamisburg Ohio OH Montgomery 113 39.7505 -84.2686 +US 45345 New Lebanon Ohio OH Montgomery 113 39.7398 -84.3956 +US 45354 Phillipsburg Ohio OH Montgomery 113 39.9054 -84.4028 +US 45377 Vandalia Ohio OH Montgomery 113 39.8883 -84.2023 +US 45401 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45402 Dayton Ohio OH Montgomery 113 39.7563 -84.1895 +US 45403 Dayton Ohio OH Montgomery 113 39.7617 -84.1498 +US 45404 Dayton Ohio OH Montgomery 113 39.7862 -84.1622 +US 45405 Dayton Ohio OH Montgomery 113 39.7899 -84.2135 +US 45406 Dayton Ohio OH Montgomery 113 39.7821 -84.2373 +US 45407 Dayton Ohio OH Montgomery 113 39.7627 -84.2242 +US 45408 Dayton Ohio OH Montgomery 113 39.7395 -84.229 +US 45409 Dayton Ohio OH Montgomery 113 39.7238 -84.1854 +US 45410 Dayton Ohio OH Montgomery 113 39.7474 -84.16 +US 45412 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45413 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45414 Dayton Ohio OH Montgomery 113 39.8285 -84.2024 +US 45415 Dayton Ohio OH Montgomery 113 39.8355 -84.2613 +US 45416 Dayton Ohio OH Montgomery 113 39.8011 -84.2578 +US 45417 Dayton Ohio OH Montgomery 113 39.7528 -84.247 +US 45418 Dayton Ohio OH Montgomery 113 39.6957 -84.2652 +US 45419 Dayton Ohio OH Montgomery 113 39.7155 -84.1637 +US 45420 Dayton Ohio OH Montgomery 113 39.7171 -84.1342 +US 45422 Dayton Ohio OH Montgomery 113 39.7581 -84.2001 +US 45423 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45424 Dayton Ohio OH Montgomery 113 39.8353 -84.1123 +US 45426 Dayton Ohio OH Montgomery 113 39.7982 -84.3211 +US 45427 Dayton Ohio OH Montgomery 113 39.7545 -84.2819 +US 45428 Dayton Ohio OH Montgomery 113 39.7467 -84.2593 +US 45429 Dayton Ohio OH Montgomery 113 39.6841 -84.1633 +US 45430 Dayton Ohio OH Montgomery 113 39.7092 -84.1048 +US 45432 Dayton Ohio OH Montgomery 113 39.739 -84.0856 +US 45434 Dayton Ohio OH Montgomery 113 39.7216 -84.029 +US 45435 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45437 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45439 Dayton Ohio OH Montgomery 113 39.701 -84.2187 +US 45440 Dayton Ohio OH Montgomery 113 39.6749 -84.1136 +US 45441 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45444 Dayton Ohio OH Montgomery County 113 39.7159 -84.1403 +US 45448 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45449 Dayton Ohio OH Montgomery 113 39.6651 -84.2401 +US 45454 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45458 Dayton Ohio OH Montgomery 113 39.6062 -84.1695 +US 45459 Dayton Ohio OH Montgomery 113 39.6464 -84.1717 +US 45463 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45469 Dayton Ohio OH Montgomery 113 39.7405 -84.1789 +US 45470 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45475 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45479 Dayton Ohio OH Montgomery 113 39.7344 -84.1944 +US 45481 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45482 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 45490 Dayton Ohio OH Montgomery 113 39.7505 -84.2686 +US 43728 Chesterhill Ohio OH Morgan 115 39.4953 -81.8773 +US 43756 Mc Connelsville Ohio OH Morgan 115 39.67 -81.8376 +US 43758 Malta Ohio OH Morgan 115 39.6482 -81.9127 +US 43787 Stockport Ohio OH Morgan 115 39.549 -81.8262 +US 43315 Cardington Ohio OH Morrow 117 40.5066 -82.9337 +US 43317 Chesterville Ohio OH Morrow 117 40.4789 -82.6828 +US 43320 Edison Ohio OH Morrow 117 40.5905 -82.9023 +US 43321 Fulton Ohio OH Morrow 117 40.4971 -82.8342 +US 43325 Iberia Ohio OH Morrow 117 40.608 -82.873 +US 43334 Marengo Ohio OH Morrow 117 40.3895 -82.8121 +US 43338 Mount Gilead Ohio OH Morrow 117 40.5384 -82.8062 +US 43349 Shauck Ohio OH Morrow 117 40.6142 -82.6619 +US 43350 Sparta Ohio OH Morrow 117 40.5289 -82.8229 +US 43701 Zanesville Ohio OH Muskingum 119 39.9274 -82.0041 +US 43702 Zanesville Ohio OH Muskingum 119 39.9612 -81.9625 +US 43720 Blue Rock Ohio OH Muskingum 119 39.8 -81.891 +US 43727 Chandlersville Ohio OH Muskingum 119 39.8897 -81.8301 +US 43734 Duncan Falls Ohio OH Muskingum 119 39.8778 -81.9117 +US 43735 East Fultonham Ohio OH Muskingum 119 39.8539 -82.1213 +US 43738 Fultonham Ohio OH Muskingum 119 39.8555 -82.1378 +US 43746 Hopewell Ohio OH Muskingum 119 39.9601 -82.1756 +US 43762 New Concord Ohio OH Muskingum 119 40.0088 -81.7387 +US 43767 Norwich Ohio OH Muskingum 119 39.9934 -81.8024 +US 43771 Philo Ohio OH Muskingum 119 39.8458 -81.9175 +US 43777 Roseville Ohio OH Muskingum 119 39.8187 -82.0792 +US 43791 White Cottage Ohio OH Muskingum 119 39.8713 -82.0987 +US 43802 Adamsville Ohio OH Muskingum 119 40.0793 -81.8718 +US 43821 Dresden Ohio OH Muskingum 119 40.1069 -81.9998 +US 43822 Frazeysburg Ohio OH Muskingum 119 40.1316 -82.1293 +US 43830 Nashport Ohio OH Muskingum 119 40.0386 -82.0998 +US 43842 Trinway Ohio OH Muskingum 119 40.1433 -81.995 +US 43711 Ava Ohio OH Noble 121 39.8276 -81.5549 +US 43717 Belle Valley Ohio OH Noble 121 39.7685 -81.4658 +US 43724 Caldwell Ohio OH Noble 121 39.7467 -81.5153 +US 43770 Pennsville Ohio OH Noble County 121 39.5752 -81.8554 +US 43779 Sarahsville Ohio OH Noble 121 39.8162 -81.4243 +US 43788 Summerfield Ohio OH Noble 121 39.8036 -81.332 +US 45727 Dexter City Ohio OH Noble 121 39.6526 -81.4672 +US 43408 Clay Center Ohio OH Ottawa 123 41.5686 -83.3632 +US 43412 Curtice Ohio OH Ottawa 123 41.6477 -83.2858 +US 43416 Elmore Ohio OH Ottawa 123 41.4681 -83.2767 +US 43430 Genoa Ohio OH Ottawa 123 41.53 -83.359 +US 43432 Graytown Ohio OH Ottawa 123 41.5647 -83.2613 +US 43433 Gypsum Ohio OH Ottawa 123 41.5038 -82.8708 +US 43436 Isle Saint George Ohio OH Ottawa 123 41.7153 -82.8227 +US 43439 Lacarne Ohio OH Ottawa 123 41.5181 -83.0413 +US 43440 Lakeside Marblehead Ohio OH Ottawa 123 41.5247 -82.7766 +US 43445 Martin Ohio OH Ottawa 123 41.5694 -83.3116 +US 43446 Middle Bass Ohio OH Ottawa 123 41.6835 -82.8047 +US 43449 Oak Harbor Ohio OH Ottawa 123 41.5236 -83.1278 +US 43452 Port Clinton Ohio OH Ottawa 123 41.5583 -83.0502 +US 43456 Put In Bay Ohio OH Ottawa 123 41.6514 -82.8226 +US 43458 Rocky Ridge Ohio OH Ottawa 123 41.5302 -83.2128 +US 43468 Williston Ohio OH Ottawa 123 41.605 -83.3381 +US 45813 Antwerp Ohio OH Paulding 125 41.1887 -84.7448 +US 45821 Cecil Ohio OH Paulding 125 41.2174 -84.6296 +US 45849 Grover Hill Ohio OH Paulding 125 41.0245 -84.4956 +US 45851 Haviland Ohio OH Paulding 125 41.0329 -84.6139 +US 45855 Latty Ohio OH Paulding 125 41.0879 -84.5841 +US 45861 Melrose Ohio OH Paulding 125 41.0812 -84.4287 +US 45873 Oakwood Ohio OH Paulding 125 41.0908 -84.3969 +US 45879 Paulding Ohio OH Paulding 125 41.141 -84.5722 +US 45880 Payne Ohio OH Paulding 125 41.0807 -84.7341 +US 43076 Thornville Ohio OH Perry 127 39.8974 -82.4071 +US 43730 Corning Ohio OH Perry 127 39.6361 -82.1102 +US 43731 Crooksville Ohio OH Perry 127 39.7623 -82.084 +US 43739 Glenford Ohio OH Perry 127 39.8699 -82.3026 +US 43748 Junction City Ohio OH Perry 127 39.6965 -82.3155 +US 43760 Mount Perry Ohio OH Perry 127 39.8788 -82.188 +US 43761 Moxahala Ohio OH Perry 127 39.7403 -82.2484 +US 43764 New Lexington Ohio OH Perry 127 39.7174 -82.2019 +US 43766 New Straitsville Ohio OH Perry 127 39.5869 -82.2488 +US 43782 Shawnee Ohio OH Perry 127 39.611 -82.2085 +US 43783 Somerset Ohio OH Perry 127 39.7936 -82.2991 +US 43103 Ashville Ohio OH Pickaway 129 39.7316 -82.9446 +US 43113 Circleville Ohio OH Pickaway 129 39.5988 -82.93 +US 43116 Commercial Point Ohio OH Pickaway 129 39.7699 -83.0602 +US 43117 Derby Ohio OH Pickaway 129 39.773 -83.1995 +US 43137 Lockbourne Ohio OH Pickaway 129 39.8142 -82.9764 +US 43145 New Holland Ohio OH Pickaway 129 39.5589 -83.2504 +US 43146 Orient Ohio OH Pickaway 129 39.7954 -83.1543 +US 43156 Tarlton Ohio OH Pickaway 129 39.5535 -82.7763 +US 43164 Williamsport Ohio OH Pickaway 129 39.6117 -83.1251 +US 45613 Beaver Ohio OH Pike 131 39.0332 -82.8514 +US 45624 Cynthiana Ohio OH Pike 131 39.1638 -83.3429 +US 45642 Jasper Ohio OH Pike 131 39.0523 -83.05 +US 45646 Latham Ohio OH Pike 131 39.0804 -83.3283 +US 45661 Piketon Ohio OH Pike 131 39.0437 -83.121 +US 45683 Stockdale Ohio OH Pike 131 38.9555 -82.8584 +US 45687 Wakefield Ohio OH Pike 131 39.0728 -83.0858 +US 45690 Waverly Ohio OH Pike 131 39.1264 -83.0049 +US 44201 Atwater Ohio OH Portage 133 41.0335 -81.1985 +US 44202 Aurora Ohio OH Portage 133 41.3117 -81.293 +US 44211 Brady Lake Ohio OH Portage 133 41.1698 -81.3124 +US 44231 Garrettsville Ohio OH Portage 133 41.2988 -81.0704 +US 44234 Hiram Ohio OH Portage 133 41.3323 -81.1464 +US 44240 Kent Ohio OH Portage 133 41.1449 -81.3498 +US 44241 Streetsboro Ohio OH Portage 133 41.2491 -81.3383 +US 44242 Kent Ohio OH Portage 133 41.17 -81.1966 +US 44243 Kent Ohio OH Portage 133 41.1475 -81.3415 +US 44255 Mantua Ohio OH Portage 133 41.2941 -81.2283 +US 44265 Randolph Ohio OH Portage 133 41.0109 -81.2977 +US 44266 Ravenna Ohio OH Portage 133 41.1649 -81.2337 +US 44272 Rootstown Ohio OH Portage 133 41.0995 -81.2026 +US 44285 Wayland Ohio OH Portage 133 41.1597 -81.07 +US 44288 Windham Ohio OH Portage 133 41.2392 -81.0535 +US 44411 Deerfield Ohio OH Portage 133 41.0359 -81.0528 +US 44412 Diamond Ohio OH Portage 133 41.0935 -81.0425 +US 45070 West Elkton Ohio OH Preble 135 39.5897 -84.5581 +US 45311 Camden Ohio OH Preble 135 39.6134 -84.61 +US 45320 Eaton Ohio OH Preble 135 39.7426 -84.6508 +US 45321 Eldorado Ohio OH Preble 135 39.8882 -84.6786 +US 45330 Gratis Ohio OH Preble 135 39.6483 -84.5282 +US 45338 Lewisburg Ohio OH Preble 135 39.8534 -84.5369 +US 45347 New Paris Ohio OH Preble 135 39.8617 -84.7793 +US 45378 Verona Ohio OH Preble 135 39.9029 -84.4887 +US 45381 West Alexandria Ohio OH Preble 135 39.7259 -84.5352 +US 45382 West Manchester Ohio OH Preble 135 39.9026 -84.6194 +US 45815 Belmore Ohio OH Putnam 137 41.1539 -83.9413 +US 45827 Cloverdale Ohio OH Putnam 137 41.0379 -84.2938 +US 45830 Columbus Grove Ohio OH Putnam 137 40.9137 -84.0705 +US 45831 Continental Ohio OH Putnam 137 41.1148 -84.2358 +US 45837 Dupont Ohio OH Putnam 137 41.0463 -84.3195 +US 45844 Fort Jennings Ohio OH Putnam 137 40.9484 -84.2374 +US 45848 Glandorf Ohio OH Putnam 137 41.0964 -84.112 +US 45853 Kalida Ohio OH Putnam 137 40.9796 -84.2192 +US 45856 Leipsic Ohio OH Putnam 137 41.1092 -83.9957 +US 45864 Miller City Ohio OH Putnam 137 41.1038 -84.1315 +US 45875 Ottawa Ohio OH Putnam 137 41.0197 -84.1115 +US 45876 Ottoville Ohio OH Putnam 137 41.0276 -84.2388 +US 45877 Pandora Ohio OH Putnam 137 40.9509 -83.9521 +US 45893 Vaughnsville Ohio OH Putnam 137 40.8821 -84.148 +US 44813 Bellville Ohio OH Richland 139 40.6136 -82.5175 +US 44822 Butler Ohio OH Richland 139 40.5438 -82.399 +US 44843 Lucas Ohio OH Richland 139 40.7039 -82.4087 +US 44862 Ontario Ohio OH Richland 139 40.7729 -82.5321 +US 44865 Plymouth Ohio OH Richland 139 41.0003 -82.6635 +US 44875 Shelby Ohio OH Richland 139 40.8784 -82.6549 +US 44878 Shiloh Ohio OH Richland 139 40.934 -82.5222 +US 44901 Mansfield Ohio OH Richland 139 40.8508 -82.5114 +US 44902 Mansfield Ohio OH Richland 139 40.7559 -82.5123 +US 44903 Mansfield Ohio OH Richland 139 40.7623 -82.5254 +US 44904 Mansfield Ohio OH Richland 139 40.6824 -82.5286 +US 44905 Mansfield Ohio OH Richland 139 40.7779 -82.4613 +US 44906 Mansfield Ohio OH Richland 139 40.7627 -82.5593 +US 44907 Mansfield Ohio OH Richland 139 40.7345 -82.5198 +US 44999 Mansfield Ohio OH Richland 139 40.7729 -82.5321 +US 43101 Adelphi Ohio OH Ross 141 39.4665 -82.7547 +US 43115 Clarksburg Ohio OH Ross 141 39.4904 -83.1563 +US 45601 Chillicothe Ohio OH Ross 141 39.338 -82.9895 +US 45612 Bainbridge Ohio OH Ross 141 39.2131 -83.2763 +US 45617 Bourneville Ohio OH Ross 141 39.2804 -83.159 +US 45628 Frankfort Ohio OH Ross 141 39.391 -83.2034 +US 45633 Hallsville Ohio OH Ross 141 39.4656 -82.7479 +US 45644 Kingston Ohio OH Ross 141 39.4414 -82.8488 +US 45647 Londonderry Ohio OH Ross 141 39.2723 -82.7833 +US 45673 Richmond Dale Ohio OH Ross 141 39.2039 -82.812 +US 45681 South Salem Ohio OH Ross 141 39.3021 -83.272 +US 43407 Burgoon Ohio OH Sandusky 143 41.268 -83.2475 +US 43410 Clyde Ohio OH Sandusky 143 41.3024 -82.9918 +US 43420 Fremont Ohio OH Sandusky 143 41.3498 -83.1181 +US 43431 Gibsonburg Ohio OH Sandusky 143 41.3805 -83.3358 +US 43435 Helena Ohio OH Sandusky 143 41.326 -83.3186 +US 43442 Lindsey Ohio OH Sandusky 143 41.4147 -83.2135 +US 43464 Vickery Ohio OH Sandusky 143 41.391 -82.899 +US 43469 Woodville Ohio OH Sandusky 143 41.4512 -83.3646 +US 45629 Franklin Furnace Ohio OH Scioto 145 38.6282 -82.8145 +US 45630 Friendship Ohio OH Scioto 145 38.6991 -83.0916 +US 45636 Haverhill Ohio OH Scioto 145 38.5924 -82.8288 +US 45648 Lucasville Ohio OH Scioto 145 38.8938 -82.994 +US 45652 Mc Dermott Ohio OH Scioto 145 38.8362 -83.0689 +US 45653 Minford Ohio OH Scioto 145 38.8751 -82.8555 +US 45657 Otway Ohio OH Scioto 145 38.852 -83.2222 +US 45662 Portsmouth Ohio OH Scioto 145 38.7932 -82.9306 +US 45663 West Portsmouth Ohio OH Scioto 145 38.7495 -83.1335 +US 45671 Rarden Ohio OH Scioto 145 38.9577 -83.2365 +US 45677 Scioto Furnace Ohio OH Scioto 145 38.7941 -82.7555 +US 45682 South Webster Ohio OH Scioto 145 38.82 -82.7202 +US 45684 Stout Ohio OH Scioto 145 38.6546 -83.209 +US 45694 Wheelersburg Ohio OH Scioto 145 38.7418 -82.8204 +US 45699 Lucasville Ohio OH Scioto 145 38.7933 -82.9605 +US 44801 Adrian Ohio OH Seneca 147 41.0907 -83.3654 +US 44802 Alvada Ohio OH Seneca 147 41.0463 -83.377 +US 44803 Amsden Ohio OH Seneca 147 41.0375 -82.9106 +US 44807 Attica Ohio OH Seneca 147 41.0773 -82.9032 +US 44809 Bascom Ohio OH Seneca 147 41.1328 -83.2854 +US 44815 Bettsville Ohio OH Seneca 147 41.2469 -83.2398 +US 44818 Bloomville Ohio OH Seneca 147 41.0182 -82.9899 +US 44828 Flat Rock Ohio OH Seneca 147 41.2371 -82.8597 +US 44830 Fostoria Ohio OH Seneca 147 41.1623 -83.4139 +US 44836 Green Springs Ohio OH Seneca 147 41.2281 -83.0885 +US 44841 Kansas Ohio OH Seneca 147 41.2512 -83.306 +US 44845 Melmore Ohio OH Seneca 147 41.0242 -83.1098 +US 44853 New Riegel Ohio OH Seneca 147 41.0361 -83.2418 +US 44861 Old Fort Ohio OH Seneca 147 41.2395 -83.1479 +US 44867 Republic Ohio OH Seneca 147 41.1259 -83.0194 +US 44883 Tiffin Ohio OH Seneca 147 41.1238 -83.1844 +US 45302 Anna Ohio OH Shelby 149 40.4051 -84.2103 +US 45306 Botkins Ohio OH Shelby 149 40.4659 -84.178 +US 45333 Houston Ohio OH Shelby 149 40.2535 -84.3521 +US 45334 Jackson Center Ohio OH Shelby 149 40.4358 -84.0457 +US 45336 Kettlersville Ohio OH Shelby 149 40.4413 -84.2626 +US 45340 Maplewood Ohio OH Shelby 149 40.3643 -84.0565 +US 45353 Pemberton Ohio OH Shelby 149 40.2952 -84.0323 +US 45360 Port Jefferson Ohio OH Shelby 149 40.3307 -84.0926 +US 45363 Russia Ohio OH Shelby 149 40.2341 -84.4123 +US 45365 Sidney Ohio OH Shelby 149 40.2874 -84.1622 +US 45367 Sidney Ohio OH Shelby 149 40.3336 -84.2183 +US 45845 Fort Loramie Ohio OH Shelby 149 40.3306 -84.3741 +US 44601 Alliance Ohio OH Stark 151 40.9158 -81.1182 +US 44608 Beach City Ohio OH Stark 151 40.6562 -81.5851 +US 44613 Brewster Ohio OH Stark 151 40.7142 -81.5957 +US 44614 Canal Fulton Ohio OH Stark 151 40.8887 -81.5773 +US 44626 East Sparta Ohio OH Stark 151 40.6971 -81.3687 +US 44630 Greentown Ohio OH Stark 151 40.9295 -81.4001 +US 44632 Hartville Ohio OH Stark 151 40.9618 -81.3239 +US 44640 Limaville Ohio OH Stark 151 40.9836 -81.1497 +US 44641 Louisville Ohio OH Stark 151 40.8477 -81.2595 +US 44643 Magnolia Ohio OH Stark 151 40.6514 -81.3076 +US 44646 Massillon Ohio OH Stark 151 40.8116 -81.4973 +US 44647 Massillon Ohio OH Stark 151 40.7959 -81.5533 +US 44648 Massillon Ohio OH Stark 151 40.8118 -81.3683 +US 44650 Maximo Ohio OH Stark 151 40.8746 -81.1739 +US 44652 Middlebranch Ohio OH Stark 151 40.8951 -81.3262 +US 44657 Minerva Ohio OH Stark 151 40.742 -81.1031 +US 44662 Navarre Ohio OH Stark 151 40.7204 -81.5338 +US 44666 North Lawrence Ohio OH Stark 151 40.8387 -81.6299 +US 44669 Paris Ohio OH Stark 151 40.8014 -81.154 +US 44670 Robertsville Ohio OH Stark 151 40.7647 -81.1879 +US 44688 Waynesburg Ohio OH Stark 151 40.6829 -81.2659 +US 44689 Wilmot Ohio OH Stark 151 40.6567 -81.6352 +US 44701 Canton Ohio OH Stark 151 40.7824 -81.3712 +US 44702 Canton Ohio OH Stark 151 40.8027 -81.3739 +US 44703 Canton Ohio OH Stark 151 40.8098 -81.3814 +US 44704 Canton Ohio OH Stark 151 40.7991 -81.3537 +US 44705 Canton Ohio OH Stark 151 40.8259 -81.3399 +US 44706 Canton Ohio OH Stark 151 40.768 -81.4119 +US 44707 Canton Ohio OH Stark 151 40.7598 -81.35 +US 44708 Canton Ohio OH Stark 151 40.812 -81.4241 +US 44709 Canton Ohio OH Stark 151 40.8423 -81.3862 +US 44710 Canton Ohio OH Stark 151 40.7911 -81.4169 +US 44711 Canton Ohio OH Stark 151 40.8118 -81.3683 +US 44712 Canton Ohio OH Stark 151 40.8118 -81.3683 +US 44714 Canton Ohio OH Stark 151 40.8272 -81.361 +US 44718 Canton Ohio OH Stark 151 40.8465 -81.4408 +US 44720 Canton Ohio OH Stark 151 40.8956 -81.433 +US 44721 Canton Ohio OH Stark 151 40.8834 -81.3328 +US 44730 Canton Ohio OH Stark 151 40.7705 -81.266 +US 44735 Canton Ohio OH Stark 151 40.8118 -81.3683 +US 44750 Canton Ohio OH Stark 151 40.7846 -81.4189 +US 44760 Canton Ohio OH Stark 151 40.854 -81.4278 +US 44767 Canton Ohio OH Stark 151 40.8957 -81.4246 +US 44798 Canton Ohio OH Stark 151 40.8118 -81.3683 +US 44799 Canton Ohio OH Stark 151 40.8118 -81.3683 +US 44056 Macedonia Ohio OH Summit 153 41.3222 -81.4996 +US 44067 Northfield Ohio OH Summit 153 41.3208 -81.5429 +US 44087 Twinsburg Ohio OH Summit 153 41.3289 -81.4559 +US 44203 Barberton Ohio OH Summit 153 41.0197 -81.6212 +US 44210 Bath Ohio OH Summit 153 41.1287 -81.54 +US 44216 Clinton Ohio OH Summit 153 40.9391 -81.5871 +US 44221 Cuyahoga Falls Ohio OH Summit 153 41.1401 -81.479 +US 44222 Cuyahoga Falls Ohio OH Summit 153 41.1287 -81.54 +US 44223 Cuyahoga Falls Ohio OH Summit 153 41.1464 -81.5107 +US 44224 Stow Ohio OH Summit 153 41.1748 -81.438 +US 44232 Green Ohio OH Summit 153 40.9325 -81.462 +US 44236 Hudson Ohio OH Summit 153 41.2458 -81.4367 +US 44237 Hudson Ohio OH Summit 153 41.1287 -81.54 +US 44238 Hudson Ohio OH Summit 153 41.1287 -81.54 +US 44250 Lakemore Ohio OH Summit 153 41.0222 -81.4279 +US 44260 Mogadore Ohio OH Summit 153 41.0382 -81.359 +US 44262 Munroe Falls Ohio OH Summit 153 41.142 -81.4376 +US 44264 Peninsula Ohio OH Summit 153 41.2256 -81.54 +US 44278 Tallmadge Ohio OH Summit 153 41.0975 -81.426 +US 44286 Richfield Ohio OH Summit 153 41.2371 -81.6467 +US 44301 Akron Ohio OH Summit 153 41.0449 -81.52 +US 44302 Akron Ohio OH Summit 153 41.092 -81.542 +US 44303 Akron Ohio OH Summit 153 41.1025 -81.5386 +US 44304 Akron Ohio OH Summit 153 41.0808 -81.5085 +US 44305 Akron Ohio OH Summit 153 41.076 -81.4644 +US 44306 Akron Ohio OH Summit 153 41.0479 -81.4916 +US 44307 Akron Ohio OH Summit 153 41.0695 -81.5488 +US 44308 Akron Ohio OH Summit 153 41.0796 -81.5194 +US 44309 Akron Ohio OH Summit 153 41.0962 -81.5123 +US 44310 Akron Ohio OH Summit 153 41.1075 -81.5006 +US 44311 Akron Ohio OH Summit 153 41.0638 -81.52 +US 44312 Akron Ohio OH Summit 153 41.0334 -81.4385 +US 44313 Akron Ohio OH Summit 153 41.122 -81.5685 +US 44314 Akron Ohio OH Summit 153 41.0408 -81.5598 +US 44315 Akron Ohio OH Summit 153 41.028 -81.4632 +US 44316 Akron Ohio OH Summit 153 41.0675 -81.4847 +US 44317 Akron Ohio OH Summit 153 41.0525 -81.5291 +US 44319 Akron Ohio OH Summit 153 40.9791 -81.5347 +US 44320 Akron Ohio OH Summit 153 41.0835 -81.5674 +US 44321 Akron Ohio OH Summit 153 41.1002 -81.6443 +US 44322 Akron Ohio OH Summit 153 41.0491 -81.581 +US 44325 Akron Ohio OH Summit 153 41.0764 -81.5103 +US 44326 Akron Ohio OH Summit 153 41.1727 -81.4727 +US 44328 Akron Ohio OH Summit 153 41.076 -81.5206 +US 44329 Akron Ohio OH Summit County 153 41.0655 -81.5203 +US 44331 Akron Ohio OH Summit County 153 41.0655 -81.5203 +US 44333 Akron Ohio OH Summit 153 41.1552 -81.6314 +US 44334 Akron Ohio OH Summit 153 41.1287 -81.54 +US 44372 Akron Ohio OH Summit 153 41.1287 -81.54 +US 44393 Akron Ohio OH Summit 153 41.1287 -81.54 +US 44396 Akron Ohio OH Summit 153 41.1287 -81.54 +US 44397 Akron Ohio OH Summit 153 41.0716 -81.5256 +US 44398 Akron Ohio OH Summit 153 41.1287 -81.54 +US 44399 Akron Ohio OH Summit 153 41.1287 -81.54 +US 44685 Uniontown Ohio OH Summit 153 40.9637 -81.4211 +US 44402 Bristolville Ohio OH Trumbull 155 41.3797 -80.8568 +US 44403 Brookfield Ohio OH Trumbull 155 41.248 -80.5788 +US 44404 Burghill Ohio OH Trumbull 155 41.3347 -80.5441 +US 44410 Cortland Ohio OH Trumbull 155 41.3251 -80.7327 +US 44417 Farmdale Ohio OH Trumbull 155 41.3923 -80.6628 +US 44418 Fowler Ohio OH Trumbull 155 41.3349 -80.6059 +US 44420 Girard Ohio OH Trumbull 155 41.1611 -80.6933 +US 44424 Hartford Ohio OH Trumbull 155 41.3091 -80.5847 +US 44425 Hubbard Ohio OH Trumbull 155 41.1624 -80.5762 +US 44428 Kinsman Ohio OH Trumbull 155 41.4354 -80.5765 +US 44430 Leavittsburg Ohio OH Trumbull 155 41.2445 -80.8869 +US 44437 Mc Donald Ohio OH Trumbull 155 41.158 -80.7312 +US 44438 Masury Ohio OH Trumbull 155 41.2255 -80.5326 +US 44439 Mesopotamia Ohio OH Trumbull 155 41.4594 -80.9427 +US 44440 Mineral Ridge Ohio OH Trumbull 155 41.1318 -80.7553 +US 44444 Newton Falls Ohio OH Trumbull 155 41.191 -80.9701 +US 44446 Niles Ohio OH Trumbull 155 41.1824 -80.7558 +US 44450 North Bloomfield Ohio OH Trumbull 155 41.4569 -80.8068 +US 44453 Orangeville Ohio OH Trumbull 155 41.3252 -80.5336 +US 44470 Southington Ohio OH Trumbull 155 41.2983 -80.9485 +US 44473 Vienna Ohio OH Trumbull 155 41.2175 -80.655 +US 44481 Warren Ohio OH Trumbull 155 41.1724 -80.8718 +US 44482 Warren Ohio OH Trumbull 155 41.3174 -80.7613 +US 44483 Warren Ohio OH Trumbull 155 41.2639 -80.8164 +US 44484 Warren Ohio OH Trumbull 155 41.2318 -80.7642 +US 44485 Warren Ohio OH Trumbull 155 41.2405 -80.8441 +US 44486 Warren Ohio OH Trumbull 155 41.3174 -80.7613 +US 44487 Warren Ohio OH Trumbull 155 41.3174 -80.7613 +US 44488 Warren Ohio OH Trumbull 155 41.3174 -80.7613 +US 44491 West Farmington Ohio OH Trumbull 155 41.3508 -80.9672 +US 43804 Baltic Ohio OH Tuscarawas 157 40.4476 -81.6792 +US 43832 Newcomerstown Ohio OH Tuscarawas 157 40.2739 -81.594 +US 43837 Port Washington Ohio OH Tuscarawas 157 40.3404 -81.5215 +US 43840 Stone Creek Ohio OH Tuscarawas 157 40.4052 -81.589 +US 44612 Bolivar Ohio OH Tuscarawas 157 40.6347 -81.4464 +US 44621 Dennison Ohio OH Tuscarawas 157 40.4089 -81.3203 +US 44622 Dover Ohio OH Tuscarawas 157 40.5343 -81.4763 +US 44624 Dundee Ohio OH Tuscarawas 157 40.589 -81.6058 +US 44629 Gnadenhutten Ohio OH Tuscarawas 157 40.3721 -81.4059 +US 44653 Midvale Ohio OH Tuscarawas 157 40.438 -81.3729 +US 44656 Mineral City Ohio OH Tuscarawas 157 40.5705 -81.3436 +US 44663 New Philadelphia Ohio OH Tuscarawas 157 40.4845 -81.4358 +US 44671 Sandyville Ohio OH Tuscarawas 157 40.6442 -81.3653 +US 44678 Somerdale Ohio OH Tuscarawas 157 40.5649 -81.3524 +US 44679 Stillwater Ohio OH Tuscarawas 157 40.4404 -81.4885 +US 44680 Strasburg Ohio OH Tuscarawas 157 40.6003 -81.5366 +US 44681 Sugarcreek Ohio OH Tuscarawas 157 40.5148 -81.6604 +US 44682 Tuscarawas Ohio OH Tuscarawas 157 40.3959 -81.4069 +US 44683 Uhrichsville Ohio OH Tuscarawas 157 40.3905 -81.3374 +US 44697 Zoar Ohio OH Tuscarawas 157 40.6183 -81.4142 +US 43007 Broadway Ohio OH Union 159 40.3406 -83.4163 +US 43029 Irwin Ohio OH Union 159 40.1284 -83.4587 +US 43036 Magnetic Springs Ohio OH Union 159 40.3528 -83.2634 +US 43040 Marysville Ohio OH Union 159 40.2477 -83.3622 +US 43041 Marysville Ohio OH Union 159 40.3069 -83.3606 +US 43045 Milford Center Ohio OH Union 159 40.1817 -83.4373 +US 43067 Raymond Ohio OH Union 159 40.338 -83.4655 +US 43077 Unionville Center Ohio OH Union 159 40.1367 -83.3408 +US 43344 Richwood Ohio OH Union 159 40.437 -83.3136 +US 44334 Fairlawn Ohio OH Union 159 40.3974 -83.328 +US 45832 Convoy Ohio OH Van Wert 161 40.927 -84.7238 +US 45838 Elgin Ohio OH Van Wert 161 40.7355 -84.485 +US 45863 Middle Point Ohio OH Van Wert 161 40.8993 -84.4541 +US 45874 Ohio City Ohio OH Van Wert 161 40.7854 -84.6731 +US 45886 Scott Ohio OH Van Wert 161 40.9892 -84.5845 +US 45891 Van Wert Ohio OH Van Wert 161 40.8689 -84.5904 +US 45894 Venedocia Ohio OH Van Wert 161 40.7685 -84.462 +US 45898 Willshire Ohio OH Van Wert 161 40.7346 -84.7777 +US 45899 Wren Ohio OH Van Wert 161 40.794 -84.7857 +US 45622 Creola Ohio OH Vinton 163 39.3543 -82.503 +US 45634 Hamden Ohio OH Vinton 163 39.1685 -82.51 +US 45651 Mc Arthur Ohio OH Vinton 163 39.28 -82.4753 +US 45654 New Plymouth Ohio OH Vinton 163 39.3884 -82.3892 +US 45670 Radcliff Ohio OH Vinton County 163 39.1052 -82.3542 +US 45672 Ray Ohio OH Vinton 163 39.2077 -82.6908 +US 45695 Wilkesville Ohio OH Vinton 163 39.1416 -82.3682 +US 45698 Zaleski Ohio OH Vinton 163 39.283 -82.3977 +US 45005 Franklin Ohio OH Warren 165 39.5357 -84.303 +US 45032 Harveysburg Ohio OH Warren 165 39.5013 -84.0067 +US 45034 Kings Mills Ohio OH Warren 165 39.358 -84.2473 +US 45036 Lebanon Ohio OH Warren 165 39.4293 -84.1735 +US 45039 Maineville Ohio OH Warren 165 39.317 -84.2438 +US 45040 Mason Ohio OH Warren 165 39.3357 -84.3149 +US 45054 Oregonia Ohio OH Warren 165 39.4145 -84.0511 +US 45065 South Lebanon Ohio OH Warren 165 39.3715 -84.2108 +US 45066 Springboro Ohio OH Warren 165 39.563 -84.2288 +US 45068 Waynesville Ohio OH Warren 165 39.5285 -84.0815 +US 45152 Morrow Ohio OH Warren 165 39.3476 -84.1181 +US 45162 Pleasant Plain Ohio OH Warren 165 39.2884 -84.0967 +US 45712 Barlow Ohio OH Washington 167 39.3868 -81.3952 +US 45713 Bartlett Ohio OH Washington 167 39.4307 -81.4451 +US 45714 Belpre Ohio OH Washington 167 39.2868 -81.5968 +US 45715 Beverly Ohio OH Washington 167 39.5714 -81.6346 +US 45721 Coal Run Ohio OH Washington 167 39.4307 -81.4451 +US 45724 Cutler Ohio OH Washington 167 39.4042 -81.7657 +US 45729 Fleming Ohio OH Washington 167 39.4136 -81.6078 +US 45742 Little Hocking Ohio OH Washington 167 39.28 -81.7071 +US 45744 Lowell Ohio OH Washington 167 39.5385 -81.5197 +US 45745 Lower Salem Ohio OH Washington 167 39.5611 -81.3968 +US 45746 Macksburg Ohio OH Washington 167 39.6204 -81.4471 +US 45750 Marietta Ohio OH Washington 167 39.4281 -81.4644 +US 45767 New Matamoras Ohio OH Washington 167 39.5288 -81.094 +US 45768 Newport Ohio OH Washington 167 39.3971 -81.2402 +US 45773 Reno Ohio OH Washington 167 39.4585 -81.2673 +US 45784 Vincent Ohio OH Washington 167 39.3374 -81.6743 +US 45786 Waterford Ohio OH Washington 167 39.5159 -81.6559 +US 45787 Watertown Ohio OH Washington 167 39.4307 -81.4451 +US 45788 Whipple Ohio OH Washington 167 39.5136 -81.3668 +US 45789 Wingett Run Ohio OH Washington 167 39.5428 -81.284 +US 44214 Burbank Ohio OH Wayne 169 40.9637 -81.9958 +US 44217 Creston Ohio OH Wayne 169 40.9788 -81.9211 +US 44230 Doylestown Ohio OH Wayne 169 40.965 -81.6848 +US 44270 Rittman Ohio OH Wayne 169 40.9684 -81.7826 +US 44276 Sterling Ohio OH Wayne 169 40.9369 -81.8305 +US 44287 West Salem Ohio OH Wayne 169 40.9485 -82.1066 +US 44606 Apple Creek Ohio OH Wayne 169 40.7551 -81.8093 +US 44618 Dalton Ohio OH Wayne 169 40.7793 -81.7008 +US 44627 Fredericksburg Ohio OH Wayne 169 40.686 -81.8518 +US 44636 Kidron Ohio OH Wayne 169 40.7384 -81.7428 +US 44645 Marshallville Ohio OH Wayne 169 40.9067 -81.7225 +US 44659 Mount Eaton Ohio OH Wayne 169 40.6949 -81.7026 +US 44667 Orrville Ohio OH Wayne 169 40.8458 -81.7741 +US 44676 Shreve Ohio OH Wayne 169 40.6926 -82.0325 +US 44677 Smithville Ohio OH Wayne 169 40.8592 -81.8633 +US 44691 Wooster Ohio OH Wayne 169 40.8094 -81.9483 +US 43501 Alvordton Ohio OH Williams 171 41.6625 -84.4355 +US 43505 Blakeslee Ohio OH Williams 171 41.5239 -84.7303 +US 43506 Bryan Ohio OH Williams 171 41.4748 -84.5629 +US 43517 Edgerton Ohio OH Williams 171 41.4425 -84.7349 +US 43518 Edon Ohio OH Williams 171 41.5842 -84.757 +US 43531 Kunkle Ohio OH Williams 171 41.634 -84.5026 +US 43543 Montpelier Ohio OH Williams 171 41.5982 -84.6147 +US 43554 Pioneer Ohio OH Williams 171 41.6656 -84.5363 +US 43557 Stryker Ohio OH Williams 171 41.4861 -84.4089 +US 43570 West Unity Ohio OH Williams 171 41.5756 -84.4421 +US 43402 Bowling Green Ohio OH Wood 173 41.3815 -83.6507 +US 43403 Bowling Green Ohio OH Wood 173 41.377 -83.6371 +US 43406 Bradner Ohio OH Wood 173 41.3298 -83.4456 +US 43413 Cygnet Ohio OH Wood 173 41.247 -83.6142 +US 43414 Dunbridge Ohio OH Wood 173 41.3924 -83.649 +US 43437 Jerry City Ohio OH Wood 173 41.2559 -83.6022 +US 43441 Lemoyne Ohio OH Wood 173 41.5361 -83.4594 +US 43443 Luckey Ohio OH Wood 173 41.4517 -83.4674 +US 43447 Millbury Ohio OH Wood 173 41.5611 -83.4381 +US 43450 Pemberville Ohio OH Wood 173 41.4023 -83.4736 +US 43451 Portage Ohio OH Wood 173 41.3127 -83.6143 +US 43457 Risingsun Ohio OH Wood 173 41.2706 -83.4326 +US 43460 Rossford Ohio OH Wood 173 41.6049 -83.5638 +US 43462 Rudolph Ohio OH Wood 173 41.2967 -83.6832 +US 43463 Stony Ridge Ohio OH Wood 173 41.5091 -83.5085 +US 43465 Walbridge Ohio OH Wood 173 41.5861 -83.493 +US 43466 Wayne Ohio OH Wood 173 41.2993 -83.4701 +US 43467 West Millgrove Ohio OH Wood 173 41.2426 -83.4896 +US 43511 Custar Ohio OH Wood 173 41.2953 -83.8349 +US 43522 Grand Rapids Ohio OH Wood 173 41.4379 -83.8552 +US 43525 Haskins Ohio OH Wood 173 41.4667 -83.7055 +US 43529 Hoytville Ohio OH Wood 173 41.1872 -83.7847 +US 43541 Milton Center Ohio OH Wood 173 41.3009 -83.8296 +US 43551 Perrysburg Ohio OH Wood 173 41.5429 -83.5927 +US 43552 Perrysburg Ohio OH Wood 173 41.3924 -83.649 +US 43565 Tontogany Ohio OH Wood 173 41.4231 -83.7479 +US 43569 Weston Ohio OH Wood 173 41.3516 -83.7973 +US 43619 Northwood Ohio OH Wood 173 41.608 -83.4806 +US 44817 Bloomdale Ohio OH Wood 173 41.1815 -83.5724 +US 45872 North Baltimore Ohio OH Wood 173 41.1867 -83.6806 +US 43316 Carey Ohio OH Wyandot 175 40.9486 -83.3836 +US 43323 Harpster Ohio OH Wyandot 175 40.7475 -83.2343 +US 43330 Kirby Ohio OH Wyandot 175 40.813 -83.4196 +US 43351 Upper Sandusky Ohio OH Wyandot 175 40.8249 -83.2977 +US 43359 Wharton Ohio OH Wyandot 175 40.8612 -83.463 +US 44844 Mc Cutchenville Ohio OH Wyandot 175 40.9752 -83.2637 +US 44849 Nevada Ohio OH Wyandot 175 40.8259 -83.1266 +US 44882 Sycamore Ohio OH Wyandot 175 40.9413 -83.1492 +US 74457 Proctor Oklahoma OK Adair 001 36.0308 -94.7613 +US 74931 Bunch Oklahoma OK Adair 001 35.723 -94.7454 +US 74960 Stilwell Oklahoma OK Adair 001 35.8107 -94.6313 +US 74964 Watts Oklahoma OK Adair 001 36.1152 -94.6345 +US 74965 Westville Oklahoma OK Adair 001 35.9912 -94.5926 +US 73716 Aline Oklahoma OK Alfalfa 003 36.5056 -98.4574 +US 73719 Amorita Oklahoma OK Alfalfa 003 36.9412 -98.2458 +US 73722 Burlington Oklahoma OK Alfalfa 003 36.9036 -98.4215 +US 73723 Byron Oklahoma OK Alfalfa County 003 36.8799 -98.2445 +US 73726 Carmen Oklahoma OK Alfalfa 003 36.5842 -98.4578 +US 73728 Cherokee Oklahoma OK Alfalfa 003 36.7564 -98.3594 +US 73739 Goltry Oklahoma OK Alfalfa 003 36.5314 -98.154 +US 73741 Helena Oklahoma OK Alfalfa 003 36.5438 -98.2778 +US 73749 Jet Oklahoma OK Alfalfa 003 36.6929 -98.1721 +US 74525 Atoka Oklahoma OK Atoka 005 34.3445 -96.1418 +US 74533 Caney Oklahoma OK Atoka 005 34.2221 -96.2584 +US 74540 Daisy Oklahoma OK Atoka 005 34.5384 -95.7088 +US 74542 Atoka Oklahoma OK Atoka 005 34.4187 -96.0397 +US 74555 Lane Oklahoma OK Atoka 005 34.2691 -95.9685 +US 74569 Stringtown Oklahoma OK Atoka 005 34.4676 -96.0002 +US 73844 Gate Oklahoma OK Beaver 007 36.8757 -100.0734 +US 73847 Knowles Oklahoma OK Beaver 007 36.8393 -100.2179 +US 73849 Logan Oklahoma OK Beaver County 007 36.641 -100.1804 +US 73931 Balko Oklahoma OK Beaver 007 36.5996 -100.7103 +US 73932 Beaver Oklahoma OK Beaver 007 36.8341 -100.5177 +US 73938 Forgan Oklahoma OK Beaver 007 36.9086 -100.5409 +US 73950 Turpin Oklahoma OK Beaver 007 36.8664 -100.8779 +US 73627 Carter Oklahoma OK Beckham 009 35.2208 -99.4822 +US 73644 Elk City Oklahoma OK Beckham 009 35.4104 -99.4211 +US 73645 Erick Oklahoma OK Beckham 009 35.2286 -99.8635 +US 73648 Elk City Oklahoma OK Beckham 009 35.2695 -99.6801 +US 73656 Mayfield Oklahoma OK Beckham 009 35.2695 -99.6801 +US 73662 Sayre Oklahoma OK Beckham 009 35.3047 -99.6429 +US 73668 Texola Oklahoma OK Beckham 009 35.2161 -99.9915 +US 73040 Geary Oklahoma OK Blaine 011 35.6217 -98.3905 +US 73043 Greenfield Oklahoma OK Blaine 011 35.7333 -98.3841 +US 73724 Canton Oklahoma OK Blaine 011 36.0372 -98.5778 +US 73744 Hitchcock Oklahoma OK Blaine 011 35.9712 -98.3315 +US 73755 Longdale Oklahoma OK Blaine 011 36.1212 -98.55 +US 73763 Okeene Oklahoma OK Blaine 011 36.1165 -98.3254 +US 73770 Southard Oklahoma OK Blaine 011 36.0581 -98.5884 +US 73772 Watonga Oklahoma OK Blaine 011 35.8538 -98.4175 +US 73449 Mead Oklahoma OK Bryan 013 33.9944 -96.5299 +US 74701 Durant Oklahoma OK Bryan 013 34.0061 -96.3847 +US 74702 Durant Oklahoma OK Bryan 013 33.922 -96.1918 +US 74720 Achille Oklahoma OK Bryan 013 33.8396 -96.3648 +US 74721 Albany Oklahoma OK Bryan 013 33.922 -96.1918 +US 74723 Bennington Oklahoma OK Bryan 013 33.9771 -96.0188 +US 74726 Bokchito Oklahoma OK Bryan 013 33.9859 -96.1621 +US 74729 Caddo Oklahoma OK Bryan 013 34.1157 -96.26 +US 74730 Calera Oklahoma OK Bryan 013 33.9322 -96.4308 +US 74731 Cartwright Oklahoma OK Bryan 013 33.8668 -96.5672 +US 74733 Colbert Oklahoma OK Bryan 013 33.8575 -96.4953 +US 74741 Hendrix Oklahoma OK Bryan 013 33.8016 -96.3581 +US 74747 Kemp Oklahoma OK Bryan 013 33.773 -96.3555 +US 74748 Kenefic Oklahoma OK Bryan 013 34.1792 -96.4998 +US 74753 Platter Oklahoma OK Bryan 013 33.9171 -96.5501 +US 73001 Albert Oklahoma OK Caddo 015 35.2032 -98.3574 +US 73005 Anadarko Oklahoma OK Caddo 015 35.0728 -98.2429 +US 73006 Apache Oklahoma OK Caddo 015 34.9034 -98.3695 +US 73009 Binger Oklahoma OK Caddo 015 35.3106 -98.3148 +US 73015 Carnegie Oklahoma OK Caddo 015 35.1235 -98.5755 +US 73017 Cement Oklahoma OK Caddo 015 34.9321 -98.1466 +US 73029 Cyril Oklahoma OK Caddo 015 34.8959 -98.2083 +US 73033 Eakly Oklahoma OK Caddo 015 35.303 -98.5554 +US 73038 Fort Cobb Oklahoma OK Caddo 015 35.1161 -98.4303 +US 73042 Gracemont Oklahoma OK Caddo 015 35.1875 -98.2835 +US 73047 Hinton Oklahoma OK Caddo 015 35.4675 -98.3313 +US 73048 Hydro Oklahoma OK Caddo 015 35.452 -98.5604 +US 73053 Lookeba Oklahoma OK Caddo 015 35.3679 -98.3898 +US 73094 Washita Oklahoma OK Caddo 015 35.2032 -98.3574 +US 73014 Calumet Oklahoma OK Canadian 017 35.5476 -98.1512 +US 73022 Concho Oklahoma OK Canadian 017 35.6193 -97.9796 +US 73036 El Reno Oklahoma OK Canadian 017 35.5335 -97.9591 +US 73064 Mustang Oklahoma OK Canadian 017 35.3885 -97.7309 +US 73078 Piedmont Oklahoma OK Canadian 017 35.6695 -97.7431 +US 73085 Yukon Oklahoma OK Canadian 017 35.4895 -97.75 +US 73090 Union City Oklahoma OK Canadian 017 35.3913 -97.9398 +US 73099 Yukon Oklahoma OK Canadian 017 35.4977 -97.7323 +US 73081 Ratliff City Oklahoma OK Carter County 019 34.4213 -97.5151 +US 73087 Tatums Oklahoma OK Carter County 019 34.4826 -97.4612 +US 73088 Tussy Oklahoma OK Carter County 019 34.4847 -97.5325 +US 73401 Ardmore Oklahoma OK Carter 019 34.1566 -97.1792 +US 73402 Ardmore Oklahoma OK Carter 019 34.2889 -97.2481 +US 73403 Ardmore Oklahoma OK Carter 019 34.2889 -97.2481 +US 73435 Fox Oklahoma OK Carter 019 34.3488 -97.4924 +US 73436 Gene Autry Oklahoma OK Carter 019 34.2939 -97.0339 +US 73437 Graham Oklahoma OK Carter 019 34.3762 -97.4255 +US 73438 Healdton Oklahoma OK Carter 019 34.229 -97.4889 +US 73443 Lone Grove Oklahoma OK Carter 019 34.1774 -97.2685 +US 73458 Springer Oklahoma OK Carter 019 34.3038 -97.1223 +US 73463 Wilson Oklahoma OK Carter 019 34.1364 -97.4273 +US 73481 Ratliff City Oklahoma OK Carter 019 34.4344 -97.4925 +US 73487 Tatums Oklahoma OK Carter 019 34.4777 -97.457 +US 73488 Tussy Oklahoma OK Carter 019 34.4852 -97.5423 +US 74427 Cookson Oklahoma OK Cherokee 021 35.7116 -94.9132 +US 74441 Hulbert Oklahoma OK Cherokee 021 35.9254 -95.1651 +US 74444 Moodys Oklahoma OK Cherokee 021 36.0458 -94.9669 +US 74451 Park Hill Oklahoma OK Cherokee 021 35.7977 -94.9822 +US 74452 Peggs Oklahoma OK Cherokee 021 36.1154 -95.1199 +US 74464 Tahlequah Oklahoma OK Cherokee 021 35.9094 -94.9787 +US 74465 Tahlequah Oklahoma OK Cherokee 021 35.9001 -95.04 +US 74471 Welling Oklahoma OK Cherokee 021 35.8819 -94.8653 +US 74727 Boswell Oklahoma OK Choctaw 023 34.0245 -95.8403 +US 74735 Fort Towson Oklahoma OK Choctaw 023 34.052 -95.253 +US 74738 Grant Oklahoma OK Choctaw 023 33.9302 -95.4893 +US 74743 Hugo Oklahoma OK Choctaw 023 34.0113 -95.5139 +US 74756 Sawyer Oklahoma OK Choctaw 023 34.0277 -95.3558 +US 74759 Soper Oklahoma OK Choctaw 023 34.0366 -95.6916 +US 74760 Spencerville Oklahoma OK Choctaw 023 34.1508 -95.3771 +US 74761 Swink Oklahoma OK Choctaw 023 33.9902 -95.1913 +US 73933 Boise City Oklahoma OK Cimarron 025 36.7283 -102.5355 +US 73937 Felt Oklahoma OK Cimarron 025 36.5666 -102.7974 +US 73946 Kenton Oklahoma OK Cimarron 025 36.9031 -102.9653 +US 73947 Keyes Oklahoma OK Cimarron 025 36.8003 -102.2361 +US 73019 Norman Oklahoma OK Cleveland 027 35.2086 -97.4445 +US 73026 Norman Oklahoma OK Cleveland 027 35.2343 -97.2914 +US 73037 Hall Park Oklahoma OK Cleveland County 027 35.2211 -97.4448 +US 73051 Lexington Oklahoma OK Cleveland 027 35.0377 -97.2609 +US 73068 Noble Oklahoma OK Cleveland 027 35.1417 -97.3409 +US 73069 Norman Oklahoma OK Cleveland 027 35.2204 -97.4577 +US 73070 Norman Oklahoma OK Cleveland 027 35.1876 -97.3975 +US 73071 Norman Oklahoma OK Cleveland 027 35.233 -97.4067 +US 73072 Norman Oklahoma OK Cleveland 027 35.199 -97.4841 +US 73139 Oklahoma City Oklahoma OK Cleveland 027 35.3792 -97.5362 +US 73160 Oklahoma City Oklahoma OK Cleveland 027 35.334 -97.4768 +US 73165 Oklahoma City Oklahoma OK Cleveland 027 35.3267 -97.3534 +US 73170 Oklahoma City Oklahoma OK Cleveland 027 35.327 -97.5556 +US 73173 Oklahoma City Oklahoma OK Cleveland 027 35.3425 -97.6317 +US 74534 Centrahoma Oklahoma OK Coal 029 34.6066 -96.3386 +US 74535 Clarita Oklahoma OK Coal 029 34.4979 -96.4246 +US 74538 Coalgate Oklahoma OK Coal 029 34.5344 -96.2167 +US 74556 Lehigh Oklahoma OK Coal 029 34.4756 -96.1889 +US 74572 Tupelo Oklahoma OK Coal 029 34.5598 -96.4274 +US 73501 Lawton Oklahoma OK Comanche 031 34.5915 -98.3698 +US 73502 Lawton Oklahoma OK Comanche 031 34.6309 -98.4576 +US 73503 Fort Sill Oklahoma OK Comanche 031 34.6595 -98.4004 +US 73505 Lawton Oklahoma OK Comanche 031 34.6179 -98.4552 +US 73506 Lawton Oklahoma OK Comanche 031 34.6309 -98.4576 +US 73507 Lawton Oklahoma OK Comanche 031 34.6246 -98.3895 +US 73527 Cache Oklahoma OK Comanche 031 34.6131 -98.6154 +US 73528 Chattanooga Oklahoma OK Comanche 031 34.4262 -98.6514 +US 73538 Elgin Oklahoma OK Comanche 031 34.772 -98.4073 +US 73540 Faxon Oklahoma OK Comanche 031 34.4645 -98.5577 +US 73541 Fletcher Oklahoma OK Comanche 031 34.7847 -98.2002 +US 73543 Geronimo Oklahoma OK Comanche 031 34.4805 -98.3875 +US 73552 Indiahoma Oklahoma OK Comanche 031 34.6242 -98.7349 +US 73557 Medicine Park Oklahoma OK Comanche 031 34.7461 -98.5309 +US 73558 Meers Oklahoma OK Comanche 031 34.6309 -98.4576 +US 73567 Sterling Oklahoma OK Comanche 031 34.7496 -98.1679 +US 73531 Devol Oklahoma OK Cotton 033 34.1956 -98.577 +US 73562 Randlett Oklahoma OK Cotton 033 34.174 -98.46 +US 73568 Temple Oklahoma OK Cotton 033 34.2607 -98.2371 +US 73572 Walters Oklahoma OK Cotton 033 34.3605 -98.314 +US 74301 Vinita Oklahoma OK Craig 035 36.6334 -95.1382 +US 74332 Big Cabin Oklahoma OK Craig 035 36.534 -95.2246 +US 74333 Bluejacket Oklahoma OK Craig 035 36.7975 -95.1018 +US 74369 Welch Oklahoma OK Craig 035 36.902 -95.1295 +US 74010 Bristow Oklahoma OK Creek 037 35.8209 -96.3758 +US 74028 Depew Oklahoma OK Creek 037 35.7561 -96.4897 +US 74030 Drumright Oklahoma OK Creek 037 35.9931 -96.5198 +US 74039 Kellyville Oklahoma OK Creek 037 35.9171 -96.218 +US 74041 Kiefer Oklahoma OK Creek 037 35.9528 -96.061 +US 74044 Mannford Oklahoma OK Creek 037 36.0927 -96.3576 +US 74046 Milfay Oklahoma OK Creek 037 35.9013 -96.3261 +US 74047 Mounds Oklahoma OK Creek 037 35.8896 -96.0887 +US 74052 Oilton Oklahoma OK Creek 037 36.0685 -96.5958 +US 74066 Sapulpa Oklahoma OK Creek 037 36.003 -96.1106 +US 74067 Sapulpa Oklahoma OK Creek 037 36.0196 -96.0937 +US 74068 Shamrock Oklahoma OK Creek 037 35.9124 -96.578 +US 74071 Slick Oklahoma OK Creek 037 35.7861 -96.2806 +US 74131 Tulsa Oklahoma OK Creek 037 36.0557 -96.0602 +US 73096 Weatherford Oklahoma OK Custer 039 35.535 -98.6996 +US 73601 Clinton Oklahoma OK Custer 039 35.5115 -98.9795 +US 73620 Arapaho Oklahoma OK Custer 039 35.5789 -98.9595 +US 73625 Butler Oklahoma OK Custer 039 35.6336 -99.2427 +US 73639 Custer City Oklahoma OK Custer 039 35.6894 -98.912 +US 73669 Thomas Oklahoma OK Custer 039 35.7382 -98.7388 +US 74338 Colcord Oklahoma OK Delaware 041 36.2333 -94.6547 +US 74342 Eucha Oklahoma OK Delaware 041 36.4063 -94.9157 +US 74344 Grove Oklahoma OK Delaware 041 36.5929 -94.7565 +US 74345 Grove Oklahoma OK Delaware 041 36.6036 -94.7297 +US 74346 Jay Oklahoma OK Delaware 041 36.4363 -94.7763 +US 74347 Kansas Oklahoma OK Delaware 041 36.2161 -94.8114 +US 74359 Oaks Oklahoma OK Delaware 041 36.4159 -94.7871 +US 74368 Twin Oaks Oklahoma OK Delaware 041 36.2031 -94.8511 +US 73646 Fay Oklahoma OK Dewey 043 35.8204 -98.6587 +US 73654 Leedey Oklahoma OK Dewey 043 35.8698 -99.3491 +US 73658 Oakwood Oklahoma OK Dewey 043 35.9328 -98.7065 +US 73659 Putnam Oklahoma OK Dewey 043 35.8539 -98.9638 +US 73663 Seiling Oklahoma OK Dewey 043 36.1278 -98.8875 +US 73667 Taloga Oklahoma OK Dewey 043 35.9972 -98.9825 +US 73835 Camargo Oklahoma OK Dewey 043 36.0212 -99.2781 +US 73859 Vici Oklahoma OK Dewey 043 36.1372 -99.267 +US 73832 Arnett Oklahoma OK Ellis 045 36.0522 -99.6514 +US 73840 Fargo Oklahoma OK Ellis 045 36.4053 -99.6506 +US 73843 Gage Oklahoma OK Ellis 045 36.318 -99.76 +US 73858 Shattuck Oklahoma OK Ellis 045 36.2889 -99.8793 +US 73701 Enid Oklahoma OK Garfield 047 36.4028 -97.8623 +US 73702 Enid Oklahoma OK Garfield 047 36.3791 -97.7826 +US 73703 Enid Oklahoma OK Garfield 047 36.3975 -97.9157 +US 73705 Enid Oklahoma OK Garfield 047 36.3382 -97.9026 +US 73706 Enid Oklahoma OK Garfield 047 36.3791 -97.7826 +US 73720 Bison Oklahoma OK Garfield 047 36.1962 -97.8805 +US 73727 Carrier Oklahoma OK Garfield 047 36.4922 -98.0422 +US 73730 Covington Oklahoma OK Garfield 047 36.3099 -97.5752 +US 73733 Douglas Oklahoma OK Garfield 047 36.2481 -97.6896 +US 73735 Drummond Oklahoma OK Garfield 047 36.2841 -98.0358 +US 73736 Fairmont Oklahoma OK Garfield 047 36.34 -97.6848 +US 73738 Garber Oklahoma OK Garfield 047 36.4392 -97.5789 +US 73743 Hillsdale Oklahoma OK Garfield 047 36.5501 -98.0059 +US 73753 Kremlin Oklahoma OK Garfield 047 36.5207 -97.8542 +US 73754 Lahoma Oklahoma OK Garfield 047 36.385 -98.0727 +US 73773 Waukomis Oklahoma OK Garfield 047 36.2781 -97.8996 +US 74640 Hunter Oklahoma OK Garfield 047 36.5603 -97.6425 +US 73035 Elmore City Oklahoma OK Garvin County 049 34.6066 -97.3904 +US 73046 Hennepin Oklahoma OK Garvin County 049 34.4836 -97.4081 +US 73052 Lindsay Oklahoma OK Garvin 049 34.8211 -97.5998 +US 73057 Maysville Oklahoma OK Garvin 049 34.8113 -97.4131 +US 73074 Paoli Oklahoma OK Garvin 049 34.8285 -97.2608 +US 73075 Pauls Valley Oklahoma OK Garvin 049 34.7385 -97.2195 +US 73076 Pernell Oklahoma OK Garvin County 049 34.5612 -97.5096 +US 73098 Wynnewood Oklahoma OK Garvin 049 34.6385 -97.177 +US 73433 Elmore City Oklahoma OK Garvin 049 34.6265 -97.4142 +US 73444 Hennepin Oklahoma OK Garvin 049 34.4719 -97.3879 +US 73476 Pernell Oklahoma OK Garvin 049 34.6809 -97.3004 +US 74872 Stratford Oklahoma OK Garvin 049 34.7714 -96.9763 +US 73002 Alex Oklahoma OK Grady 051 34.9612 -97.7571 +US 73004 Amber Oklahoma OK Grady 051 35.1526 -97.8532 +US 73011 Bradley Oklahoma OK Grady 051 34.8741 -97.7118 +US 73018 Chickasha Oklahoma OK Grady 051 35.0268 -97.9518 +US 73023 Chickasha Oklahoma OK Grady 051 35.0312 -97.882 +US 73059 Minco Oklahoma OK Grady 051 35.3067 -97.9664 +US 73067 Ninnekah Oklahoma OK Grady 051 34.9143 -97.9333 +US 73079 Pocasset Oklahoma OK Grady 051 35.1544 -97.979 +US 73082 Rush Springs Oklahoma OK Grady 051 34.7708 -97.9431 +US 73089 Tuttle Oklahoma OK Grady 051 35.2674 -97.7446 +US 73092 Verden Oklahoma OK Grady 051 35.0836 -98.0792 +US 73758 Manchester Oklahoma OK Grant 053 36.9744 -98.0383 +US 73759 Medford Oklahoma OK Grant 053 36.8142 -97.7202 +US 73761 Nash Oklahoma OK Grant 053 36.6961 -98.0258 +US 73766 Pond Creek Oklahoma OK Grant 053 36.6643 -97.8019 +US 73771 Wakita Oklahoma OK Grant 053 36.8753 -97.9427 +US 74636 Deer Creek Oklahoma OK Grant 053 36.8048 -97.5136 +US 74643 Lamont Oklahoma OK Grant 053 36.6939 -97.5601 +US 73547 Granite Oklahoma OK Greer 055 34.9712 -99.3881 +US 73554 Mangum Oklahoma OK Greer 055 34.9126 -99.4606 +US 73673 Willow Oklahoma OK Greer 055 35.0702 -99.5421 +US 73544 Gould Oklahoma OK Harmon 057 34.665 -99.7843 +US 73550 Hollis Oklahoma OK Harmon 057 34.6953 -99.9177 +US 73571 Vinson Oklahoma OK Harmon 057 34.9062 -99.8339 +US 73834 Buffalo Oklahoma OK Harper 059 36.8523 -99.5538 +US 73848 Laverne Oklahoma OK Harper 059 36.7062 -99.8918 +US 73851 May Oklahoma OK Harper 059 36.6226 -99.7858 +US 73855 Rosston Oklahoma OK Harper 059 36.8789 -99.9003 +US 74440 Hoyt Oklahoma OK Haskell 061 35.2685 -95.2994 +US 74462 Stigler Oklahoma OK Haskell 061 35.2686 -95.1071 +US 74472 Whitefield Oklahoma OK Haskell 061 35.2646 -95.2645 +US 74552 Kinta Oklahoma OK Haskell 061 35.1971 -95.3175 +US 74941 Keota Oklahoma OK Haskell 061 35.2645 -94.9028 +US 74943 Lequire Oklahoma OK Haskell 061 35.0867 -95.0974 +US 74944 Mccurtain Oklahoma OK Haskell 061 35.1404 -95.0127 +US 74531 Calvin Oklahoma OK Hughes 063 34.878 -96.271 +US 74570 Stuart Oklahoma OK Hughes 063 34.8826 -96.1381 +US 74827 Atwood Oklahoma OK Hughes 063 34.9192 -96.3577 +US 74839 Dustin Oklahoma OK Hughes 063 35.2519 -96.0573 +US 74848 Holdenville Oklahoma OK Hughes 063 35.0839 -96.377 +US 74850 Lamar Oklahoma OK Hughes 063 35.0836 -96.1142 +US 74883 Wetumka Oklahoma OK Hughes 063 35.2396 -96.2421 +US 73521 Altus Oklahoma OK Jackson 065 34.6484 -99.3205 +US 73522 Altus Oklahoma OK Jackson 065 34.7238 -99.3839 +US 73523 Altus Afb Oklahoma OK Jackson 065 34.5982 -99.4408 +US 73526 Blair Oklahoma OK Jackson 065 34.7788 -99.3334 +US 73532 Duke Oklahoma OK Jackson 065 34.6668 -99.5482 +US 73537 Eldorado Oklahoma OK Jackson 065 34.4727 -99.646 +US 73539 Elmer Oklahoma OK Jackson 065 34.5137 -99.3167 +US 73549 Headrick Oklahoma OK Jackson 065 34.6265 -99.139 +US 73556 Martha Oklahoma OK Jackson 065 34.7192 -99.4154 +US 73560 Olustee Oklahoma OK Jackson 065 34.5496 -99.4287 +US 73456 Ringling Oklahoma OK Jefferson 067 34.1679 -97.6029 +US 73520 Addington Oklahoma OK Jefferson 067 34.2459 -97.8922 +US 73548 Hastings Oklahoma OK Jefferson 067 34.2251 -98.1075 +US 73561 Oscar Oklahoma OK Jefferson 067 34.0313 -97.6481 +US 73565 Ryan Oklahoma OK Jefferson 067 34.0238 -97.9461 +US 73569 Terral Oklahoma OK Jefferson 067 33.9379 -97.8053 +US 73573 Waurika Oklahoma OK Jefferson 067 34.1745 -97.9973 +US 73432 Coleman Oklahoma OK Johnston 069 34.2625 -96.4588 +US 73447 Mannsville Oklahoma OK Johnston 069 34.1899 -96.8778 +US 73450 Milburn Oklahoma OK Johnston 069 34.1952 -96.5429 +US 73455 Ravia Oklahoma OK Johnston 069 34.244 -96.7529 +US 73460 Tishomingo Oklahoma OK Johnston 069 34.2643 -96.6675 +US 73461 Wapanucka Oklahoma OK Johnston 069 34.3866 -96.4532 +US 74530 Bromide Oklahoma OK Johnston 069 34.4233 -96.4867 +US 74836 Connerville Oklahoma OK Johnston 069 34.4194 -96.6291 +US 74856 Mill Creek Oklahoma OK Johnston 069 34.3098 -96.7884 +US 74601 Ponca City Oklahoma OK Kay 071 36.7031 -97.0784 +US 74602 Ponca City Oklahoma OK Kay 071 36.6954 -97.1377 +US 74603 Ponca City Oklahoma OK Kay 071 36.7963 -97.1062 +US 74604 Ponca City Oklahoma OK Kay 071 36.7299 -97.0454 +US 74631 Blackwell Oklahoma OK Kay 071 36.8006 -97.2867 +US 74632 Braman Oklahoma OK Kay 071 36.9331 -97.3082 +US 74641 Kaw City Oklahoma OK Kay 071 36.8382 -96.8833 +US 74646 Nardin Oklahoma OK Kay 071 36.8155 -97.4325 +US 74647 Newkirk Oklahoma OK Kay 071 36.84 -97.0561 +US 74653 Tonkawa Oklahoma OK Kay 071 36.6806 -97.3063 +US 73016 Cashion Oklahoma OK Kingfisher 073 35.8 -97.6795 +US 73734 Dover Oklahoma OK Kingfisher 073 35.9848 -97.9067 +US 73742 Hennessey Oklahoma OK Kingfisher 073 36.0868 -97.8926 +US 73750 Kingfisher Oklahoma OK Kingfisher 073 35.8636 -97.9473 +US 73756 Loyal Oklahoma OK Kingfisher 073 35.9705 -98.1155 +US 73762 Okarche Oklahoma OK Kingfisher 073 35.7502 -97.93 +US 73764 Omega Oklahoma OK Kingfisher 073 35.8507 -98.1863 +US 73041 Gotebo Oklahoma OK Kiowa 075 35.0759 -98.876 +US 73062 Mountain View Oklahoma OK Kiowa 075 35.0654 -98.7307 +US 73559 Mountain Park Oklahoma OK Kiowa 075 34.7032 -98.9591 +US 73564 Roosevelt Oklahoma OK Kiowa 075 34.847 -98.9836 +US 73566 Snyder Oklahoma OK Kiowa 075 34.6548 -98.9508 +US 73651 Hobart Oklahoma OK Kiowa 075 35.0255 -99.0944 +US 73655 Lone Wolf Oklahoma OK Kiowa 075 34.9806 -99.2502 +US 74545 Gowen Oklahoma OK Latimer 077 34.8724 -95.469 +US 74559 Panola Oklahoma OK Latimer 077 34.8695 -95.2211 +US 74563 Red Oak Oklahoma OK Latimer 077 34.9422 -95.0904 +US 74578 Wilburton Oklahoma OK Latimer 077 34.9128 -95.3389 +US 74549 Honobia Oklahoma OK Le Flore 079 34.5519 -94.9428 +US 74571 Talihina Oklahoma OK Le Flore 079 34.7381 -94.9978 +US 74577 Whitesboro Oklahoma OK Le Flore 079 34.6843 -94.87 +US 74901 Arkoma Oklahoma OK Le Flore 079 35.3434 -94.4403 +US 74902 Pocola Oklahoma OK Le Flore 079 35.2436 -94.476 +US 74930 Bokoshe Oklahoma OK Le Flore 079 35.1609 -94.7222 +US 74932 Cameron Oklahoma OK Le Flore 079 35.1494 -94.506 +US 74935 Fanshawe Oklahoma OK Le Flore 079 34.9537 -94.8998 +US 74937 Heavener Oklahoma OK Le Flore 079 34.8353 -94.6185 +US 74939 Hodgen Oklahoma OK Le Flore 079 34.7538 -94.6391 +US 74940 Howe Oklahoma OK Le Flore 079 34.9299 -94.6571 +US 74942 Leflore Oklahoma OK Le Flore 079 34.8979 -94.9758 +US 74947 Monroe Oklahoma OK Le Flore 079 34.9906 -94.515 +US 74949 Muse Oklahoma OK Le Flore 079 34.6641 -94.719 +US 74951 Panama Oklahoma OK Le Flore 079 35.1535 -94.6709 +US 74953 Poteau Oklahoma OK Le Flore 079 35.0606 -94.6096 +US 74956 Shady Point Oklahoma OK Le Flore 079 35.1293 -94.6665 +US 74959 Spiro Oklahoma OK Le Flore 079 35.2492 -94.6265 +US 74966 Wister Oklahoma OK Le Flore 079 34.9556 -94.7832 +US 74026 Davenport Oklahoma OK Lincoln 081 35.7089 -96.767 +US 74079 Stroud Oklahoma OK Lincoln 081 35.7398 -96.6719 +US 74824 Agra Oklahoma OK Lincoln 081 35.909 -96.8738 +US 74832 Carney Oklahoma OK Lincoln 081 35.8054 -97.0159 +US 74834 Chandler Oklahoma OK Lincoln 081 35.7043 -96.8583 +US 74835 Clearview Oklahoma OK Lincoln County 081 35.3926 -96.1714 +US 74855 Meeker Oklahoma OK Lincoln 081 35.5211 -96.9981 +US 74864 Prague Oklahoma OK Lincoln 081 35.5105 -96.7009 +US 74869 Sparks Oklahoma OK Lincoln 081 35.6138 -96.8163 +US 74875 Tryon Oklahoma OK Lincoln 081 35.8759 -96.9623 +US 74881 Wellston Oklahoma OK Lincoln 081 35.6757 -97.0597 +US 73027 Coyle Oklahoma OK Logan 083 35.8985 -97.2607 +US 73028 Crescent Oklahoma OK Logan 083 35.942 -97.5969 +US 73044 Guthrie Oklahoma OK Logan 083 35.833 -97.436 +US 73050 Langston Oklahoma OK Logan 083 35.9419 -97.2557 +US 73056 Marshall Oklahoma OK Logan 083 36.1485 -97.6171 +US 73058 Meridian Oklahoma OK Logan 083 35.8451 -97.2462 +US 73063 Mulhall Oklahoma OK Logan 083 36.0537 -97.4098 +US 73073 Orlando Oklahoma OK Logan 083 36.142 -97.396 +US 73430 Burneyville Oklahoma OK Love 085 33.9515 -97.3249 +US 73441 Leon Oklahoma OK Love 085 33.9243 -97.4471 +US 73448 Marietta Oklahoma OK Love 085 33.9431 -97.1148 +US 73453 Overbrook Oklahoma OK Love 085 34.0539 -97.1324 +US 73459 Thackerville Oklahoma OK Love 085 33.7882 -97.1363 +US 73010 Blanchard Oklahoma OK McClain 087 35.1192 -97.6401 +US 73031 Dibble Oklahoma OK McClain 087 35.009 -97.6318 +US 73065 Newcastle Oklahoma OK McClain 087 35.2453 -97.6216 +US 73080 Purcell Oklahoma OK McClain 087 35.0103 -97.4255 +US 73093 Washington Oklahoma OK McClain 087 35.1324 -97.487 +US 73095 Wayne Oklahoma OK McClain 087 34.9154 -97.329 +US 74831 Byars Oklahoma OK McClain 087 34.8904 -97.0997 +US 74722 Battiest Oklahoma OK McCurtain 089 34.4246 -94.947 +US 74724 Bethel Oklahoma OK McCurtain 089 34.4197 -94.7834 +US 74728 Broken Bow Oklahoma OK McCurtain 089 34.027 -94.7623 +US 74734 Eagletown Oklahoma OK McCurtain 089 34.0364 -94.5596 +US 74736 Garvin Oklahoma OK McCurtain 089 33.9192 -94.986 +US 74737 Golden Oklahoma OK McCurtain 089 34.0303 -94.8986 +US 74740 Haworth Oklahoma OK McCurtain 089 33.785 -94.633 +US 74745 Idabel Oklahoma OK McCurtain 089 33.8851 -94.802 +US 74750 Millerton Oklahoma OK McCurtain 089 33.9801 -95.0025 +US 74752 Pickens Oklahoma OK McCurtain 089 34.0617 -94.8089 +US 74754 Ringold Oklahoma OK McCurtain 089 34.1799 -95.0704 +US 74755 Rufe Oklahoma OK McCurtain 089 34.1272 -95.1174 +US 74764 Valliant Oklahoma OK McCurtain 089 34.0091 -95.0686 +US 74766 Wright City Oklahoma OK McCurtain 089 34.0799 -94.9929 +US 74957 Smithville Oklahoma OK McCurtain 089 34.4954 -94.6981 +US 74963 Watson Oklahoma OK McCurtain 089 34.4193 -94.5562 +US 74426 Checotah Oklahoma OK McIntosh 091 35.4358 -95.535 +US 74432 Eufaula Oklahoma OK McIntosh 091 35.2911 -95.6472 +US 74438 Hitchita Oklahoma OK McIntosh 091 35.5297 -95.7596 +US 74459 Rentiesville Oklahoma OK McIntosh 091 35.5214 -95.495 +US 74461 Stidham Oklahoma OK McIntosh 091 35.3814 -95.7056 +US 74845 Hanna Oklahoma OK McIntosh 091 35.2604 -95.8675 +US 73718 Ames Oklahoma OK Major 093 36.2423 -98.182 +US 73729 Cleo Springs Oklahoma OK Major 093 36.409 -98.4423 +US 73737 Fairview Oklahoma OK Major 093 36.2871 -98.604 +US 73747 Isabella Oklahoma OK Major 093 36.2341 -98.3374 +US 73760 Meno Oklahoma OK Major 093 36.3815 -98.1635 +US 73768 Ringwood Oklahoma OK Major 093 36.3753 -98.2706 +US 73838 Chester Oklahoma OK Major 093 36.2621 -98.8838 +US 73439 Kingston Oklahoma OK Marshall 095 33.9517 -96.712 +US 73440 Lebanon Oklahoma OK Marshall 095 33.9687 -96.9064 +US 73446 Madill Oklahoma OK Marshall 095 34.0784 -96.7597 +US 74330 Adair Oklahoma OK Mayes 097 36.4115 -95.2732 +US 74337 Chouteau Oklahoma OK Mayes 097 36.1669 -95.3416 +US 74340 Disney Oklahoma OK Mayes 097 36.4759 -95.024 +US 74349 Ketchum Oklahoma OK Mayes 097 36.5178 -95.0258 +US 74350 Langley Oklahoma OK Mayes 097 36.4645 -95.0478 +US 74352 Locust Grove Oklahoma OK Mayes 097 36.1819 -95.1689 +US 74353 Mazie Oklahoma OK Mayes 097 36.2925 -95.2228 +US 74361 Pryor Oklahoma OK Mayes 097 36.2921 -95.3129 +US 74362 Pryor Oklahoma OK Mayes 097 36.2925 -95.2228 +US 74364 Rose Oklahoma OK Mayes 097 36.1951 -94.9643 +US 74365 Salina Oklahoma OK Mayes 097 36.3116 -95.1158 +US 74366 Spavinaw Oklahoma OK Mayes 097 36.4155 -95.0285 +US 74367 Strang Oklahoma OK Mayes 097 36.4141 -95.0773 +US 73030 Davis Oklahoma OK Murray 099 34.4953 -97.1084 +US 73032 Dougherty Oklahoma OK Murray 099 34.402 -97.051 +US 73086 Sulphur Oklahoma OK Murray 099 34.5116 -96.9797 +US 74401 Muskogee Oklahoma OK Muskogee 101 35.7058 -95.5002 +US 74402 Muskogee Oklahoma OK Muskogee 101 35.7642 -95.3069 +US 74403 Muskogee Oklahoma OK Muskogee 101 35.7411 -95.3449 +US 74422 Boynton Oklahoma OK Muskogee 101 35.6577 -95.66 +US 74423 Braggs Oklahoma OK Muskogee 101 35.6574 -95.2033 +US 74428 Council Hill Oklahoma OK Muskogee 101 35.5322 -95.7113 +US 74434 Fort Gibson Oklahoma OK Muskogee 101 35.7943 -95.2297 +US 74436 Haskell Oklahoma OK Muskogee 101 35.8108 -95.684 +US 74439 Braggs Oklahoma OK Muskogee County 101 35.6767 -95.1775 +US 74450 Oktaha Oklahoma OK Muskogee 101 35.625 -95.4856 +US 74455 Porum Oklahoma OK Muskogee 101 35.3631 -95.2607 +US 74463 Taft Oklahoma OK Muskogee 101 35.7581 -95.5494 +US 74468 Wainwright Oklahoma OK Muskogee 101 35.6299 -95.6002 +US 74469 Warner Oklahoma OK Muskogee 101 35.4945 -95.3064 +US 74470 Webbers Falls Oklahoma OK Muskogee 101 35.5138 -95.1659 +US 73061 Morrison Oklahoma OK Noble 103 36.2902 -97.0228 +US 73077 Perry Oklahoma OK Noble 103 36.2875 -97.2842 +US 73757 Lucien Oklahoma OK Noble 103 36.2753 -97.4526 +US 74630 Billings Oklahoma OK Noble 103 36.5246 -97.4189 +US 74644 Marland Oklahoma OK Noble 103 36.5591 -97.0976 +US 74651 Red Rock Oklahoma OK Noble 103 36.4748 -97.164 +US 74027 Delaware Oklahoma OK Nowata 105 36.7804 -95.6181 +US 74042 Lenapah Oklahoma OK Nowata 105 36.8801 -95.6233 +US 74048 Nowata Oklahoma OK Nowata 105 36.6946 -95.6404 +US 74072 S Coffeyville Oklahoma OK Nowata 105 36.9837 -95.6065 +US 74083 Wann Oklahoma OK Nowata 105 36.9402 -95.7768 +US 74829 Boley Oklahoma OK Okfuskee 107 35.4913 -96.4704 +US 74833 Castle Oklahoma OK Okfuskee 107 35.4732 -96.3791 +US 74859 Okemah Oklahoma OK Okfuskee 107 35.4647 -96.3287 +US 74860 Paden Oklahoma OK Okfuskee 107 35.5182 -96.5719 +US 74862 Clearview Oklahoma OK Okfuskee County 107 35.4201 -96.1226 +US 74880 Weleetka Oklahoma OK Okfuskee 107 35.3416 -96.1136 +US 74882 Welty Oklahoma OK Okfuskee County 107 35.6088 -96.4264 +US 73003 Edmond Oklahoma OK Oklahoma 109 35.6748 -97.4997 +US 73007 Arcadia Oklahoma OK Oklahoma 109 35.6543 -97.3243 +US 73008 Bethany Oklahoma OK Oklahoma 109 35.5043 -97.6399 +US 73012 Edmond Oklahoma OK Oklahoma 109 35.6215 -97.4733 +US 73013 Edmond Oklahoma OK Oklahoma 109 35.6215 -97.4733 +US 73020 Choctaw Oklahoma OK Oklahoma 109 35.4718 -97.2726 +US 73025 Edmond Oklahoma OK Oklahoma County 109 35.722 -97.5133 +US 73034 Edmond Oklahoma OK Oklahoma 109 35.6665 -97.4798 +US 73039 Davis Oklahoma OK Oklahoma County 109 34.506 -97.1131 +US 73045 Harrah Oklahoma OK Oklahoma 109 35.4833 -97.1734 +US 73049 Jones Oklahoma OK Oklahoma 109 35.5753 -97.2891 +US 73054 Luther Oklahoma OK Oklahoma 109 35.6315 -97.1823 +US 73066 Nicoma Park Oklahoma OK Oklahoma 109 35.4928 -97.3276 +US 73083 Edmond Oklahoma OK Oklahoma 109 35.6665 -97.4654 +US 73084 Spencer Oklahoma OK Oklahoma 109 35.5183 -97.3488 +US 73097 Wheatland Oklahoma OK Oklahoma 109 35.397 -97.6519 +US 73100 Oklahoma City Oklahoma OK Oklahoma County 109 35.3513 -97.4953 +US 73101 Oklahoma City Oklahoma OK Oklahoma 109 35.4916 -97.5628 +US 73102 Oklahoma City Oklahoma OK Oklahoma 109 35.4726 -97.5199 +US 73103 Oklahoma City Oklahoma OK Oklahoma 109 35.491 -97.5196 +US 73104 Oklahoma City Oklahoma OK Oklahoma 109 35.4794 -97.5017 +US 73105 Oklahoma City Oklahoma OK Oklahoma 109 35.5108 -97.5003 +US 73106 Oklahoma City Oklahoma OK Oklahoma 109 35.4853 -97.5372 +US 73107 Oklahoma City Oklahoma OK Oklahoma 109 35.4874 -97.574 +US 73108 Oklahoma City Oklahoma OK Oklahoma 109 35.4445 -97.5619 +US 73109 Oklahoma City Oklahoma OK Oklahoma 109 35.4259 -97.5261 +US 73110 Oklahoma City Oklahoma OK Oklahoma 109 35.4605 -97.3974 +US 73111 Oklahoma City Oklahoma OK Oklahoma 109 35.5042 -97.4806 +US 73112 Oklahoma City Oklahoma OK Oklahoma 109 35.5184 -97.5746 +US 73113 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73114 Oklahoma City Oklahoma OK Oklahoma 109 35.5704 -97.5257 +US 73115 Oklahoma City Oklahoma OK Oklahoma 109 35.4449 -97.446 +US 73116 Oklahoma City Oklahoma OK Oklahoma 109 35.5463 -97.5642 +US 73117 Oklahoma City Oklahoma OK Oklahoma 109 35.4797 -97.4722 +US 73118 Oklahoma City Oklahoma OK Oklahoma 109 35.5136 -97.5319 +US 73119 Oklahoma City Oklahoma OK Oklahoma 109 35.421 -97.5616 +US 73120 Oklahoma City Oklahoma OK Oklahoma 109 35.5835 -97.5638 +US 73121 Oklahoma City Oklahoma OK Oklahoma 109 35.5062 -97.4452 +US 73122 Oklahoma City Oklahoma OK Oklahoma 109 35.5184 -97.6167 +US 73123 Oklahoma City Oklahoma OK Oklahoma 109 35.536 -97.2023 +US 73124 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73125 Oklahoma City Oklahoma OK Oklahoma 109 35.4654 -97.5218 +US 73126 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73127 Oklahoma City Oklahoma OK Oklahoma 109 35.4834 -97.6299 +US 73128 Oklahoma City Oklahoma OK Oklahoma 109 35.4444 -97.6164 +US 73129 Oklahoma City Oklahoma OK Oklahoma 109 35.4312 -97.4913 +US 73130 Oklahoma City Oklahoma OK Oklahoma 109 35.4604 -97.3419 +US 73131 Oklahoma City Oklahoma OK Oklahoma 109 35.5797 -97.4691 +US 73132 Oklahoma City Oklahoma OK Oklahoma 109 35.5583 -97.6375 +US 73134 Oklahoma City Oklahoma OK Oklahoma 109 35.6174 -97.5583 +US 73135 Oklahoma City Oklahoma OK Oklahoma 109 35.411 -97.4388 +US 73136 Oklahoma City Oklahoma OK Oklahoma 109 35.6153 -97.3262 +US 73137 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73140 Oklahoma City Oklahoma OK Oklahoma 109 35.5185 -97.4275 +US 73141 Oklahoma City Oklahoma OK Oklahoma 109 35.4918 -97.3666 +US 73142 Oklahoma City Oklahoma OK Oklahoma 109 35.599 -97.6251 +US 73143 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73144 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73145 Oklahoma City Oklahoma OK Oklahoma 109 35.4304 -97.3962 +US 73146 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73147 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73148 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73149 Oklahoma City Oklahoma OK Oklahoma 109 35.395 -97.4972 +US 73150 Oklahoma City Oklahoma OK Oklahoma 109 35.4123 -97.3331 +US 73151 Oklahoma City Oklahoma OK Oklahoma 109 35.5676 -97.4111 +US 73152 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73153 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73154 Oklahoma City Oklahoma OK Oklahoma 109 35.5238 -97.5255 +US 73155 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73156 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73157 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73159 Oklahoma City Oklahoma OK Oklahoma 109 35.3922 -97.5567 +US 73162 Oklahoma City Oklahoma OK Oklahoma 109 35.5806 -97.6419 +US 73163 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73164 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73167 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73169 Oklahoma City Oklahoma OK Oklahoma 109 35.3882 -97.6587 +US 73172 Oklahoma City Oklahoma OK Oklahoma 109 35.5175 -97.6218 +US 73177 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73178 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73179 Oklahoma City Oklahoma OK Oklahoma 109 35.4242 -97.6547 +US 73180 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73184 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73185 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73189 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73190 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73193 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73194 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73195 Oklahoma City Oklahoma OK Oklahoma County 109 35.474 -97.5227 +US 73196 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73197 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73198 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 73199 Oklahoma City Oklahoma OK Oklahoma 109 35.5514 -97.4075 +US 74857 Newalla Oklahoma OK Oklahoma 109 35.3734 -97.1971 +US 74421 Beggs Oklahoma OK Okmulgee 111 35.7896 -96.0264 +US 74431 Dewar Oklahoma OK Okmulgee 111 35.4551 -95.9498 +US 74437 Henryetta Oklahoma OK Okmulgee 111 35.4622 -96.0122 +US 74445 Morris Oklahoma OK Okmulgee 111 35.6619 -95.8319 +US 74447 Okmulgee Oklahoma OK Okmulgee 111 35.6288 -95.9697 +US 74456 Preston Oklahoma OK Okmulgee 111 35.6983 -96.0112 +US 74460 Schulter Oklahoma OK Okmulgee 111 35.5132 -95.9583 +US 74001 Avant Oklahoma OK Osage 113 36.4901 -96.0616 +US 74002 Barnsdall Oklahoma OK Osage 113 36.5429 -96.1318 +US 74009 Bowring Oklahoma OK Osage 113 36.6658 -96.3984 +US 74035 Hominy Oklahoma OK Osage 113 36.4111 -96.3878 +US 74054 Osage Oklahoma OK Osage 113 36.2832 -96.3774 +US 74056 Pawhuska Oklahoma OK Osage 113 36.6904 -96.3121 +US 74060 Prue Oklahoma OK Osage 113 36.2501 -96.2701 +US 74070 Skiatook Oklahoma OK Osage 113 36.3725 -96.0123 +US 74084 Wynona Oklahoma OK Osage 113 36.5085 -96.3689 +US 74127 Tulsa Oklahoma OK Osage 113 36.1576 -96.0311 +US 74633 Burbank Oklahoma OK Osage 113 36.6966 -96.7869 +US 74637 Fairfax Oklahoma OK Osage 113 36.5577 -96.6997 +US 74652 Shidler Oklahoma OK Osage 113 36.7819 -96.6607 +US 74331 Afton Oklahoma OK Ottawa 115 36.6296 -94.9432 +US 74335 Cardin Oklahoma OK Ottawa 115 36.9795 -94.8557 +US 74339 Commerce Oklahoma OK Ottawa 115 36.9331 -94.873 +US 74343 Fairland Oklahoma OK Ottawa 115 36.7418 -94.8279 +US 74354 Miami Oklahoma OK Ottawa 115 36.8764 -94.8719 +US 74355 Miami Oklahoma OK Ottawa 115 36.8341 -94.877 +US 74358 North Miami Oklahoma OK Ottawa 115 36.9136 -94.8817 +US 74360 Picher Oklahoma OK Ottawa 115 36.98 -94.8173 +US 74363 Quapaw Oklahoma OK Ottawa 115 36.9282 -94.743 +US 74370 Wyandotte Oklahoma OK Ottawa 115 36.7796 -94.7002 +US 74020 Cleveland Oklahoma OK Pawnee 117 36.2553 -96.423 +US 74034 Hallett Oklahoma OK Pawnee 117 36.2319 -96.562 +US 74038 Jennings Oklahoma OK Pawnee 117 36.1863 -96.5732 +US 74045 Maramec Oklahoma OK Pawnee 117 36.2246 -96.6939 +US 74058 Pawnee Oklahoma OK Pawnee 117 36.3362 -96.7923 +US 74081 Terlton Oklahoma OK Pawnee 117 36.1889 -96.4876 +US 74650 Ralston Oklahoma OK Pawnee 117 36.4992 -96.7755 +US 74023 Cushing Oklahoma OK Payne 119 35.9822 -96.7526 +US 74032 Glencoe Oklahoma OK Payne 119 36.2158 -96.9138 +US 74059 Perkins Oklahoma OK Payne 119 35.9768 -97.0441 +US 74062 Ripley Oklahoma OK Payne 119 35.9985 -96.8967 +US 74074 Stillwater Oklahoma OK Payne 119 36.1043 -97.0609 +US 74075 Stillwater Oklahoma OK Payne 119 36.1396 -97.063 +US 74076 Stillwater Oklahoma OK Payne 119 36.0724 -97.0551 +US 74077 Stillwater Oklahoma OK Payne 119 36.0937 -96.9875 +US 74078 Stillwater Oklahoma OK Payne 119 36.1241 -97.0705 +US 74085 Yale Oklahoma OK Payne 119 36.1101 -96.7022 +US 74425 Canadian Oklahoma OK Pittsburg 121 35.1571 -95.6215 +US 74430 Crowder Oklahoma OK Pittsburg 121 35.1334 -95.6602 +US 74442 Indianola Oklahoma OK Pittsburg 121 35.1314 -95.8158 +US 74501 Mcalester Oklahoma OK Pittsburg 121 34.9262 -95.7592 +US 74502 Mcalester Oklahoma OK Pittsburg 121 34.9473 -95.7207 +US 74522 Alderson Oklahoma OK Pittsburg 121 34.9045 -95.6981 +US 74526 Alderson Oklahoma OK Pittsburg County 121 34.894 -95.6482 +US 74528 Blanco Oklahoma OK Pittsburg 121 34.7276 -95.7283 +US 74529 Blocker Oklahoma OK Pittsburg 121 34.9473 -95.7207 +US 74546 Haileyville Oklahoma OK Pittsburg 121 34.85 -95.5777 +US 74547 Hartshorne Oklahoma OK Pittsburg 121 34.8452 -95.574 +US 74548 Haywood Oklahoma OK Pittsburg County 121 34.9547 -95.9723 +US 74553 Kiowa Oklahoma OK Pittsburg 121 34.7278 -95.9328 +US 74554 Krebs Oklahoma OK Pittsburg 121 34.9255 -95.7216 +US 74560 Pittsburg Oklahoma OK Pittsburg 121 34.6975 -95.8439 +US 74561 Quinton Oklahoma OK Pittsburg 121 35.1547 -95.4671 +US 74565 Savanna Oklahoma OK Pittsburg 121 34.8354 -95.838 +US 74576 Wardville Oklahoma OK Pittsburg 121 34.6695 -96.0258 +US 74820 Ada Oklahoma OK Pontotoc 123 34.78 -96.6924 +US 74821 Ada Oklahoma OK Pontotoc 123 34.7353 -96.6693 +US 74825 Allen Oklahoma OK Pontotoc 123 34.8691 -96.4151 +US 74842 Fittstown Oklahoma OK Pontotoc 123 34.5969 -96.636 +US 74843 Fitzhugh Oklahoma OK Pontotoc 123 34.6615 -96.7745 +US 74844 Francis Oklahoma OK Pontotoc 123 34.8784 -96.5763 +US 74865 Roff Oklahoma OK Pontotoc 123 34.6153 -96.8423 +US 74871 Stonewall Oklahoma OK Pontotoc 123 34.6511 -96.5273 +US 74801 Shawnee Oklahoma OK Pottawatomie 125 35.2958 -96.9601 +US 74802 Shawnee Oklahoma OK Pottawatomie 125 35.3656 -96.9596 +US 74804 Shawnee Oklahoma OK Pottawatomie 125 35.3868 -96.9331 +US 74826 Asher Oklahoma OK Pottawatomie 125 34.9849 -96.8763 +US 74840 Earlsboro Oklahoma OK Pottawatomie 125 35.2628 -96.8041 +US 74851 Mcloud Oklahoma OK Pottawatomie 125 35.4262 -97.079 +US 74852 Macomb Oklahoma OK Pottawatomie 125 35.1205 -97.034 +US 74854 Maud Oklahoma OK Pottawatomie 125 35.1292 -96.7627 +US 74866 Saint Louis Oklahoma OK Pottawatomie 125 35.0588 -96.8444 +US 74873 Tecumseh Oklahoma OK Pottawatomie 125 35.2502 -96.9667 +US 74878 Wanette Oklahoma OK Pottawatomie 125 34.9983 -97.0419 +US 74521 Albion Oklahoma OK Pushmataha 127 34.6516 -95.0924 +US 74523 Antlers Oklahoma OK Pushmataha 127 34.2349 -95.6254 +US 74536 Clayton Oklahoma OK Pushmataha 127 34.5906 -95.38 +US 74543 Finley Oklahoma OK Pushmataha 127 34.3407 -95.5385 +US 74557 Moyers Oklahoma OK Pushmataha 127 34.3386 -95.6639 +US 74558 Nashoba Oklahoma OK Pushmataha 127 34.5072 -95.2075 +US 74562 Rattan Oklahoma OK Pushmataha 127 34.2454 -95.3442 +US 74567 Snow Oklahoma OK Pushmataha 127 34.4419 -95.4622 +US 74574 Tuskahoma Oklahoma OK Pushmataha 127 34.6622 -95.2362 +US 73628 Cheyenne Oklahoma OK Roger Mills 129 35.6081 -99.6725 +US 73638 Crawford Oklahoma OK Roger Mills 129 35.8368 -99.8064 +US 73642 Durham Oklahoma OK Roger Mills 129 35.8364 -99.9088 +US 73650 Hammon Oklahoma OK Roger Mills 129 35.6461 -99.4027 +US 73660 Reydon Oklahoma OK Roger Mills 129 35.6576 -99.9166 +US 73666 Sweetwater Oklahoma OK Roger Mills 129 35.4488 -99.9006 +US 74015 Catoosa Oklahoma OK Rogers 131 36.1721 -95.7273 +US 74016 Chelsea Oklahoma OK Rogers 131 36.5356 -95.4489 +US 74017 Claremore Oklahoma OK Rogers 131 36.3242 -95.5985 +US 74018 Claremore Oklahoma OK Rogers 131 36.3436 -95.606 +US 74031 Foyil Oklahoma OK Rogers 131 36.3365 -95.5716 +US 74036 Inola Oklahoma OK Rogers 131 36.1503 -95.5205 +US 74053 Oologah Oklahoma OK Rogers 131 36.4482 -95.7047 +US 74080 Talala Oklahoma OK Rogers 131 36.5429 -95.7142 +US 74818 Seminole Oklahoma OK Seminole 133 35.1622 -96.6091 +US 74830 Bowlegs Oklahoma OK Seminole 133 35.1595 -96.6683 +US 74837 Cromwell Oklahoma OK Seminole 133 35.3405 -96.4546 +US 74849 Konawa Oklahoma OK Seminole 133 34.9708 -96.7343 +US 74867 Sasakwa Oklahoma OK Seminole 133 34.951 -96.5387 +US 74868 Seminole Oklahoma OK Seminole 133 35.2521 -96.6683 +US 74884 Wewoka Oklahoma OK Seminole 133 35.1463 -96.628 +US 74435 Gore Oklahoma OK Sequoyah 135 35.5418 -95.1095 +US 74936 Gans Oklahoma OK Sequoyah 135 35.3946 -94.6901 +US 74945 Marble City Oklahoma OK Sequoyah 135 35.5972 -94.8094 +US 74946 Moffett Oklahoma OK Sequoyah 135 35.3898 -94.4462 +US 74948 Muldrow Oklahoma OK Sequoyah 135 35.402 -94.6332 +US 74954 Roland Oklahoma OK Sequoyah 135 35.4538 -94.5291 +US 74955 Sallisaw Oklahoma OK Sequoyah 135 35.4852 -94.779 +US 74962 Vian Oklahoma OK Sequoyah 135 35.5404 -94.9888 +US 73055 Marlow Oklahoma OK Stephens 137 34.6387 -97.941 +US 73055 Bray Oklahoma OK Stephens 137 34.6379 -97.8175 +US 73091 Velma Oklahoma OK Stephens County 137 34.4599 -97.6736 +US 73425 Countyline Oklahoma OK Stephens 137 34.4541 -97.5668 +US 73434 Foster Oklahoma OK Stephens 137 34.6379 -97.5455 +US 73442 Loco Oklahoma OK Stephens 137 34.3214 -97.6658 +US 73491 Velma Oklahoma OK Stephens 137 34.4565 -97.6689 +US 73529 Comanche Oklahoma OK Stephens 137 34.3765 -97.9793 +US 73533 Duncan Oklahoma OK Stephens 137 34.5073 -97.9403 +US 73534 Duncan Oklahoma OK Stephens 137 34.5189 -97.9733 +US 73536 Duncan Oklahoma OK Stephens 137 34.4853 -97.8522 +US 73575 Duncan Oklahoma OK Stephens 137 34.4853 -97.8522 +US 73901 Adams Oklahoma OK Texas 139 36.755 -101.078 +US 73939 Goodwell Oklahoma OK Texas 139 36.6744 -101.7137 +US 73942 Guymon Oklahoma OK Texas 139 36.6961 -101.4778 +US 73944 Hardesty Oklahoma OK Texas 139 36.6018 -101.1539 +US 73945 Hooker Oklahoma OK Texas 139 36.8109 -101.2163 +US 73949 Texhoma Oklahoma OK Texas 139 36.5253 -101.8394 +US 73951 Tyrone Oklahoma OK Texas 139 36.9558 -101.0594 +US 73530 Davidson Oklahoma OK Tillman 141 34.2514 -99.064 +US 73542 Frederick Oklahoma OK Tillman 141 34.4012 -99.0119 +US 73546 Grandfield Oklahoma OK Tillman 141 34.2282 -98.6867 +US 73551 Hollister Oklahoma OK Tillman 141 34.3525 -98.8814 +US 73553 Loveland Oklahoma OK Tillman 141 34.391 -98.7235 +US 73555 Manitou Oklahoma OK Tillman 141 34.5075 -98.9792 +US 73570 Tipton Oklahoma OK Tillman 141 34.5098 -99.1315 +US 74008 Bixby Oklahoma OK Tulsa 143 35.9173 -95.8729 +US 74011 Broken Arrow Oklahoma OK Tulsa 143 35.9908 -95.8143 +US 74012 Broken Arrow Oklahoma OK Tulsa 143 36.0447 -95.8079 +US 74013 Broken Arrow Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74021 Collinsville Oklahoma OK Tulsa 143 36.3701 -95.8469 +US 74033 Glenpool Oklahoma OK Tulsa 143 35.9591 -95.9997 +US 74037 Jenks Oklahoma OK Tulsa 143 36.0148 -95.9797 +US 74043 Leonard Oklahoma OK Tulsa 143 35.9183 -95.7988 +US 74050 Oakhurst Oklahoma OK Tulsa 143 36.0731 -96.0621 +US 74055 Owasso Oklahoma OK Tulsa 143 36.2863 -95.8222 +US 74063 Sand Springs Oklahoma OK Tulsa 143 36.1341 -96.1426 +US 74073 Sperry Oklahoma OK Tulsa 143 36.2955 -95.9804 +US 74101 Tulsa Oklahoma OK Tulsa 143 36.0391 -95.8687 +US 74102 Tulsa Oklahoma OK Tulsa 143 36.0631 -95.8042 +US 74103 Tulsa Oklahoma OK Tulsa 143 36.1539 -95.9954 +US 74104 Tulsa Oklahoma OK Tulsa 143 36.1464 -95.9526 +US 74105 Tulsa Oklahoma OK Tulsa 143 36.0948 -95.9655 +US 74106 Tulsa Oklahoma OK Tulsa 143 36.1883 -95.986 +US 74107 Tulsa Oklahoma OK Tulsa 143 36.1042 -96.0244 +US 74108 Tulsa Oklahoma OK Tulsa 143 36.1499 -95.7923 +US 74110 Tulsa Oklahoma OK Tulsa 143 36.1803 -95.9525 +US 74112 Tulsa Oklahoma OK Tulsa 143 36.147 -95.907 +US 74114 Tulsa Oklahoma OK Tulsa 143 36.1262 -95.9408 +US 74115 Tulsa Oklahoma OK Tulsa 143 36.1754 -95.9112 +US 74116 Tulsa Oklahoma OK Tulsa 143 36.175 -95.8477 +US 74117 Tulsa Oklahoma OK Tulsa 143 36.2393 -95.8979 +US 74119 Tulsa Oklahoma OK Tulsa 143 36.1407 -95.9902 +US 74120 Tulsa Oklahoma OK Tulsa 143 36.1442 -95.9734 +US 74121 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74126 Tulsa Oklahoma OK Tulsa 143 36.2383 -95.9931 +US 74128 Tulsa Oklahoma OK Tulsa 143 36.1459 -95.8514 +US 74129 Tulsa Oklahoma OK Tulsa 143 36.1259 -95.8654 +US 74130 Tulsa Oklahoma OK Tulsa 143 36.2395 -95.9596 +US 74132 Tulsa Oklahoma OK Tulsa 143 36.064 -96.0251 +US 74133 Tulsa Oklahoma OK Tulsa 143 36.0467 -95.8841 +US 74134 Tulsa Oklahoma OK Tulsa 143 36.1162 -95.8225 +US 74135 Tulsa Oklahoma OK Tulsa 143 36.0976 -95.9228 +US 74136 Tulsa Oklahoma OK Tulsa 143 36.0605 -95.9452 +US 74137 Tulsa Oklahoma OK Tulsa 143 36.0284 -95.9306 +US 74141 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74145 Tulsa Oklahoma OK Tulsa 143 36.0934 -95.8856 +US 74146 Tulsa Oklahoma OK Tulsa 143 36.1093 -95.8506 +US 74147 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74148 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74149 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74150 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74152 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74153 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74155 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74156 Tulsa Oklahoma OK Tulsa 143 36.3024 -95.9605 +US 74157 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74158 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74159 Tulsa Oklahoma OK Tulsa 143 36.0772 -96.0835 +US 74169 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74170 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74171 Tulsa Oklahoma OK Tulsa 143 36.0543 -95.9577 +US 74172 Tulsa Oklahoma OK Tulsa 143 36.1543 -95.9923 +US 74182 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74183 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74184 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74186 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74187 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74189 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74192 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74193 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74194 Tulsa Oklahoma OK Tulsa 143 36.1398 -96.0297 +US 74014 Broken Arrow Oklahoma OK Wagoner 145 36.0544 -95.7223 +US 74019 Claremore Oklahoma OK Wagoner County 145 36.2806 -95.6039 +US 74429 Coweta Oklahoma OK Wagoner 145 35.9578 -95.6526 +US 74446 Okay Oklahoma OK Wagoner 145 35.8628 -95.3495 +US 74454 Porter Oklahoma OK Wagoner 145 35.8567 -95.5082 +US 74458 Redbird Oklahoma OK Wagoner 145 35.8836 -95.5917 +US 74466 Tullahassee Oklahoma OK Wagoner 145 35.9636 -95.5139 +US 74467 Wagoner Oklahoma OK Wagoner 145 35.9549 -95.354 +US 74477 Wagoner Oklahoma OK Wagoner 145 35.9636 -95.5139 +US 74003 Bartlesville Oklahoma OK Washington 147 36.744 -95.9921 +US 74004 Bartlesville Oklahoma OK Washington 147 36.7114 -95.894 +US 74005 Bartlesville Oklahoma OK Washington 147 36.7114 -95.894 +US 74006 Bartlesville Oklahoma OK Washington 147 36.7366 -95.9251 +US 74022 Copan Oklahoma OK Washington 147 36.9062 -95.913 +US 74029 Dewey Oklahoma OK Washington 147 36.8013 -95.9345 +US 74051 Ochelata Oklahoma OK Washington 147 36.5947 -95.9691 +US 74061 Ramona Oklahoma OK Washington 147 36.5752 -95.8962 +US 74082 Vera Oklahoma OK Washington 147 36.4501 -95.8814 +US 73021 Colony Oklahoma OK Washita 149 35.3448 -98.6707 +US 73024 Corn Oklahoma OK Washita 149 35.3784 -98.7818 +US 73622 Bessie Oklahoma OK Washita 149 35.3854 -98.9896 +US 73624 Burns Flat Oklahoma OK Washita 149 35.3492 -99.188 +US 73626 Canute Oklahoma OK Washita 149 35.4037 -99.2816 +US 73632 Cordell Oklahoma OK Washita 149 35.2788 -98.9511 +US 73641 Dill City Oklahoma OK Washita 149 35.2787 -99.1537 +US 73647 Foss Oklahoma OK Washita 149 35.3736 -99.1526 +US 73661 Rocky Oklahoma OK Washita 149 35.1526 -99.048 +US 73664 Sentinel Oklahoma OK Washita 149 35.1617 -99.1706 +US 73717 Alva Oklahoma OK Woods 151 36.8016 -98.6722 +US 73725 Capron Oklahoma OK Woods County 151 36.927 -98.631 +US 73731 Dacoma Oklahoma OK Woods 151 36.6606 -98.5942 +US 73746 Hopeton Oklahoma OK Woods 151 36.6887 -98.6464 +US 73842 Freedom Oklahoma OK Woods 151 36.809 -99.1319 +US 73860 Waynoka Oklahoma OK Woods 151 36.5858 -98.8487 +US 73801 Woodward Oklahoma OK Woodward 153 36.4268 -99.402 +US 73802 Woodward Oklahoma OK Woodward 153 36.544 -99.3003 +US 73841 Fort Supply Oklahoma OK Woodward 153 36.5722 -99.5738 +US 73852 Mooreland Oklahoma OK Woodward 153 36.4428 -99.1832 +US 73853 Mutual Oklahoma OK Woodward 153 36.214 -99.1145 +US 73857 Sharon Oklahoma OK Woodward 153 36.2699 -99.3587 +US 97814 Baker City Oregon OR Baker 001 44.7542 -117.7427 +US 97819 Bridgeport Oregon OR Baker 001 44.4931 -117.7655 +US 97833 Haines Oregon OR Baker 001 44.8776 -117.9756 +US 97834 Halfway Oregon OR Baker 001 44.8953 -117.1132 +US 97837 Hereford Oregon OR Baker 001 44.5304 -118.0293 +US 97840 Oxbow Oregon OR Baker 001 44.9633 -116.8436 +US 97870 Richland Oregon OR Baker 001 44.797 -117.3018 +US 97877 Sumpter Oregon OR Baker 001 44.7926 -118.3394 +US 97884 Unity Oregon OR Baker 001 44.4491 -118.1627 +US 97905 Durkee Oregon OR Baker 001 44.4988 -117.4129 +US 97907 Huntington Oregon OR Baker 001 44.3811 -117.3097 +US 97324 Alsea Oregon OR Benton 003 44.3691 -123.6089 +US 97326 Blodgett Oregon OR Benton 003 44.6281 -123.6067 +US 97330 Corvallis Oregon OR Benton 003 44.5904 -123.2722 +US 97331 Corvallis Oregon OR Benton 003 44.5638 -123.2779 +US 97333 Corvallis Oregon OR Benton 003 44.5393 -123.2799 +US 97339 Corvallis Oregon OR Benton 003 44.4989 -123.445 +US 97370 Philomath Oregon OR Benton 003 44.5488 -123.3923 +US 97456 Monroe Oregon OR Benton 003 44.3245 -123.3203 +US 97004 Beavercreek Oregon OR Clackamas 005 45.2597 -122.4751 +US 97009 Boring Oregon OR Clackamas 005 45.4297 -122.3807 +US 97011 Brightwood Oregon OR Clackamas 005 45.3652 -122.0036 +US 97013 Canby Oregon OR Clackamas 005 45.2514 -122.6832 +US 97015 Clackamas Oregon OR Clackamas 005 45.415 -122.52 +US 97017 Colton Oregon OR Clackamas 005 45.1573 -122.4248 +US 97022 Eagle Creek Oregon OR Clackamas 005 45.3582 -122.3381 +US 97023 Estacada Oregon OR Clackamas 005 45.2872 -122.3259 +US 97027 Gladstone Oregon OR Clackamas 005 45.3899 -122.5902 +US 97028 Government Camp Oregon OR Clackamas 005 45.2972 -121.739 +US 97034 Lake Oswego Oregon OR Clackamas 005 45.4093 -122.6847 +US 97035 Lake Oswego Oregon OR Clackamas 005 45.4147 -122.7227 +US 97036 Marylhurst Oregon OR Clackamas 005 45.1733 -122.2599 +US 97038 Molalla Oregon OR Clackamas 005 45.1223 -122.5756 +US 97042 Mulino Oregon OR Clackamas 005 45.213 -122.5351 +US 97045 Oregon City Oregon OR Clackamas 005 45.3377 -122.57 +US 97049 Rhododendron Oregon OR Clackamas 005 45.3465 -121.9151 +US 97055 Sandy Oregon OR Clackamas 005 45.379 -122.223 +US 97067 Welches Oregon OR Clackamas 005 45.3399 -121.9598 +US 97068 West Linn Oregon OR Clackamas 005 45.3669 -122.648 +US 97070 Wilsonville Oregon OR Clackamas 005 45.2986 -122.7699 +US 97222 Portland Oregon OR Clackamas 005 45.4373 -122.6147 +US 97267 Portland Oregon OR Clackamas 005 45.4021 -122.6144 +US 97268 Portland Oregon OR Clackamas 005 45.1733 -122.2599 +US 97269 Portland Oregon OR Clackamas 005 45.1733 -122.2599 +US 97102 Arch Cape Oregon OR Clatsop 007 45.8109 -123.963 +US 97103 Astoria Oregon OR Clatsop 007 46.1558 -123.798 +US 97110 Cannon Beach Oregon OR Clatsop 007 45.9466 -123.9315 +US 97121 Hammond Oregon OR Clatsop 007 46.198 -123.9527 +US 97138 Seaside Oregon OR Clatsop 007 45.9027 -123.6736 +US 97145 Tolovana Park Oregon OR Clatsop 007 45.8663 -123.9595 +US 97146 Warrenton Oregon OR Clatsop 007 46.145 -123.9254 +US 97016 Clatskanie Oregon OR Columbia 009 46.0665 -123.2059 +US 97018 Columbia City Oregon OR Columbia 009 45.8925 -122.8122 +US 97048 Rainier Oregon OR Columbia 009 46.0646 -122.9671 +US 97051 Saint Helens Oregon OR Columbia 009 45.8608 -122.8282 +US 97053 Warren Oregon OR Columbia 009 45.826 -122.8634 +US 97054 Deer Island Oregon OR Columbia 009 45.9356 -122.8985 +US 97056 Scappoose Oregon OR Columbia 009 45.7655 -122.8928 +US 97064 Vernonia Oregon OR Columbia 009 45.8573 -123.1967 +US 97407 Allegany Oregon OR Coos 011 43.2469 -124.2311 +US 97411 Bandon Oregon OR Coos 011 43.0968 -124.4037 +US 97414 Broadbent Oregon OR Coos 011 42.985 -124.1189 +US 97420 Coos Bay Oregon OR Coos 011 43.2151 -124.1984 +US 97423 Coquille Oregon OR Coos 011 43.1884 -124.2014 +US 97449 Lakeside Oregon OR Coos 011 43.5833 -124.1624 +US 97458 Myrtle Point Oregon OR Coos 011 43.0667 -124.1213 +US 97459 North Bend Oregon OR Coos 011 43.4327 -124.2131 +US 97460 Norway Oregon OR Coos 011 43.1388 -124.1271 +US 97466 Powers Oregon OR Coos 011 42.88 -124.0709 +US 97468 Remote Oregon OR Coos 011 43.1388 -124.1271 +US 97751 Paulina Oregon OR Crook 013 44.2102 -119.7828 +US 97752 Post Oregon OR Crook 013 44.0793 -120.2998 +US 97753 Powell Butte Oregon OR Crook 013 44.2415 -121.0113 +US 97754 Prineville Oregon OR Crook 013 44.3045 -120.8336 +US 97406 Agness Oregon OR Curry 015 42.5748 -124.0648 +US 97415 Brookings Oregon OR Curry 015 42.1378 -124.2492 +US 97444 Gold Beach Oregon OR Curry 015 42.4101 -124.3344 +US 97450 Langlois Oregon OR Curry 015 42.9154 -124.4413 +US 97464 Ophir Oregon OR Curry 015 42.7399 -124.5106 +US 97465 Port Orford Oregon OR Curry 015 42.7572 -124.4913 +US 97476 Sixes Oregon OR Curry 015 42.825 -124.4409 +US 97491 Wedderburn Oregon OR Curry 015 42.6093 -124.3886 +US 97701 Bend Oregon OR Deschutes 017 44.0928 -121.2936 +US 97702 Bend Oregon OR Deschutes 017 44.0223 -121.2985 +US 97707 Bend Oregon OR Deschutes 017 43.8431 -121.5764 +US 97708 Bend Oregon OR Deschutes 017 44.0018 -120.9495 +US 97709 Bend Oregon OR Deschutes 017 44.0018 -120.9495 +US 97712 Brothers Oregon OR Deschutes 017 43.7789 -120.477 +US 97739 La Pine Oregon OR Deschutes 017 43.7091 -121.5194 +US 97756 Redmond Oregon OR Deschutes 017 44.2767 -121.1896 +US 97759 Sisters Oregon OR Deschutes 017 44.3165 -121.5091 +US 97760 Terrebonne Oregon OR Deschutes 017 44.3909 -121.2379 +US 97410 Azalea Oregon OR Douglas 019 42.845 -123.155 +US 97416 Camas Valley Oregon OR Douglas 019 43.0557 -123.6655 +US 97417 Canyonville Oregon OR Douglas 019 42.9307 -123.278 +US 97428 Curtin Oregon OR Douglas 019 43.7476 -123.1962 +US 97429 Days Creek Oregon OR Douglas 019 42.9819 -123.1439 +US 97432 Dillard Oregon OR Douglas 019 43.1135 -123.4181 +US 97435 Drain Oregon OR Douglas 019 43.6877 -123.2929 +US 97436 Elkton Oregon OR Douglas 019 43.6378 -123.59 +US 97441 Gardiner Oregon OR Douglas 019 43.7857 -124.1437 +US 97442 Glendale Oregon OR Douglas 019 42.7518 -123.3943 +US 97443 Glide Oregon OR Douglas 019 43.2774 -122.9638 +US 97447 Idleyld Park Oregon OR Douglas 019 43.2753 -122.5155 +US 97457 Myrtle Creek Oregon OR Douglas 019 43.0162 -123.2851 +US 97462 Oakland Oregon OR Douglas 019 43.453 -123.3558 +US 97467 Reedsport Oregon OR Douglas 019 43.7104 -123.9565 +US 97469 Riddle Oregon OR Douglas 019 42.9389 -123.3612 +US 97470 Roseburg Oregon OR Douglas 019 43.2297 -123.2343 +US 97471 Roseburg Oregon OR Douglas 019 43.227 -123.5158 5 +US 97473 Scottsburg Oregon OR Douglas 019 43.6765 -123.8041 +US 97479 Sutherlin Oregon OR Douglas 019 43.3904 -123.2974 +US 97481 Tenmile Oregon OR Douglas 019 43.114 -123.5294 +US 97484 Tiller Oregon OR Douglas 019 42.9177 -122.9079 +US 97486 Umpqua Oregon OR Douglas 019 43.3745 -123.5358 +US 97494 Wilbur Oregon OR Douglas 019 43.3284 -123.3332 +US 97495 Winchester Oregon OR Douglas 019 43.2878 -123.3055 +US 97496 Winston Oregon OR Douglas 019 43.1049 -123.4325 +US 97499 Yoncalla Oregon OR Douglas 019 43.6043 -123.2926 +US 97812 Arlington Oregon OR Gilliam 021 45.6664 -120.1971 +US 97823 Condon Oregon OR Gilliam 021 45.2306 -120.1898 +US 97861 Mikkalo Oregon OR Gilliam 021 45.4388 -120.2067 +US 97817 Bates Oregon OR Grant 023 44.7138 -118.6469 +US 97820 Canyon City Oregon OR Grant 023 44.3911 -118.9465 +US 97825 Dayville Oregon OR Grant 023 44.4663 -119.5312 +US 97831 Fox Oregon OR Grant 023 44.4778 -118.9478 +US 97845 John Day Oregon OR Grant 023 44.55 -118.9148 +US 97848 Kimberly Oregon OR Grant 023 44.7226 -119.5965 +US 97856 Long Creek Oregon OR Grant 023 44.7554 -119.097 +US 97864 Monument Oregon OR Grant 023 44.8189 -119.4192 +US 97865 Mount Vernon Oregon OR Grant 023 44.4171 -119.1121 +US 97869 Prairie City Oregon OR Grant 023 44.457 -118.6952 +US 97872 Ritter Oregon OR Grant 023 44.4778 -118.9478 +US 97873 Seneca Oregon OR Grant 023 44.1196 -119.1223 +US 97710 Fields Oregon OR Harney 025 42.1862 -118.4758 +US 97720 Burns Oregon OR Harney 025 43.5145 -119.0504 +US 97721 Princeton Oregon OR Harney 025 43.0198 -119.0696 +US 97722 Diamond Oregon OR Harney 025 42.9508 -118.695 +US 97732 Crane Oregon OR Harney 025 43.4262 -118.4642 +US 97736 Frenchglen Oregon OR Harney 025 42.7147 -119.0058 +US 97738 Hines Oregon OR Harney 025 43.5558 -119.0816 +US 97740 Lawen Oregon OR Harney 025 43.0198 -119.0696 +US 97758 Riley Oregon OR Harney 025 43.3886 -119.8798 +US 97904 Drewsey Oregon OR Harney 025 43.8643 -118.4707 +US 97014 Cascade Locks Oregon OR Hood River 027 45.671 -121.8686 +US 97031 Hood River Oregon OR Hood River 027 45.6711 -121.5391 +US 97041 Mount Hood Parkdale Oregon OR Hood River 027 45.4929 -121.5983 +US 97044 Odell Oregon OR Hood River 027 45.6437 -121.5367 +US 97501 Medford Oregon OR Jackson 029 42.2818 -122.9054 +US 97502 Central Point Oregon OR Jackson 029 42.3899 -122.9222 +US 97503 White City Oregon OR Jackson 029 42.4319 -122.8296 +US 97504 Medford Oregon OR Jackson 029 42.3363 -122.8398 +US 97520 Ashland Oregon OR Jackson 029 42.1885 -122.693 +US 97522 Butte Falls Oregon OR Jackson 029 42.5492 -122.5638 +US 97524 Eagle Point Oregon OR Jackson 029 42.4935 -122.8088 +US 97525 Gold Hill Oregon OR Jackson 029 42.4244 -123.0854 +US 97530 Jacksonville Oregon OR Jackson 029 42.1813 -123.0241 +US 97535 Phoenix Oregon OR Jackson 029 42.2766 -122.8227 +US 97536 Prospect Oregon OR Jackson 029 42.7544 -122.509 +US 97537 Rogue River Oregon OR Jackson 029 42.4889 -123.1587 +US 97539 Shady Cove Oregon OR Jackson 029 42.6212 -122.7561 +US 97540 Talent Oregon OR Jackson 029 42.2363 -122.7861 +US 97541 Trail Oregon OR Jackson 029 42.6864 -122.816 +US 97711 Ashwood Oregon OR Jefferson 031 44.7195 -120.7192 +US 97730 Camp Sherman Oregon OR Jefferson 031 44.455 -121.6394 +US 97734 Culver Oregon OR Jefferson 031 44.4818 -121.2344 +US 97741 Madras Oregon OR Jefferson 031 44.6376 -121.1349 +US 97761 Warm Springs Oregon OR Jefferson 031 44.7468 -121.2909 +US 97497 Wolf Creek Oregon OR Josephine 033 42.6522 -123.425 +US 97523 Cave Junction Oregon OR Josephine 033 42.1348 -123.6272 +US 97526 Grants Pass Oregon OR Josephine 033 42.4638 -123.3457 +US 97527 Grants Pass Oregon OR Josephine 033 42.3989 -123.3538 +US 97528 Grants Pass Oregon OR Josephine 033 42.3964 -123.535 +US 97531 Kerby Oregon OR Josephine 033 42.2093 -123.6573 +US 97532 Merlin Oregon OR Josephine 033 42.5297 -123.4393 +US 97533 Murphy Oregon OR Josephine 033 42.308 -123.3273 +US 97534 O Brien Oregon OR Josephine 033 42.0879 -123.689 +US 97538 Selma Oregon OR Josephine 033 42.2654 -123.5515 +US 97543 Wilderville Oregon OR Josephine 033 42.3751 -123.5621 +US 97544 Williams Oregon OR Josephine 033 42.223 -123.2829 +US 97425 Crescent Lake Oregon OR Klamath 035 43.518 -121.9495 +US 97601 Klamath Falls Oregon OR Klamath 035 42.2933 -121.8169 +US 97602 Klamath Falls Oregon OR Klamath 035 42.805 -121.5848 +US 97603 Klamath Falls Oregon OR Klamath 035 42.1919 -121.7241 +US 97604 Crater Lake Oregon OR Klamath 035 42.9465 -122.1769 +US 97621 Beatty Oregon OR Klamath 035 42.4369 -121.22 +US 97622 Bly Oregon OR Klamath 035 42.3995 -121.0806 +US 97623 Bonanza Oregon OR Klamath 035 42.2463 -121.3336 +US 97624 Chiloquin Oregon OR Klamath 035 42.5463 -121.745 +US 97625 Dairy Oregon OR Klamath 035 42.291 -121.5078 +US 97626 Fort Klamath Oregon OR Klamath 035 42.6415 -122.038 +US 97627 Keno Oregon OR Klamath 035 42.1194 -122.0081 +US 97632 Malin Oregon OR Klamath 035 42.0195 -121.4221 +US 97633 Merrill Oregon OR Klamath 035 42.0295 -121.5985 +US 97634 Midland Oregon OR Klamath 035 42.1284 -121.871 +US 97639 Sprague River Oregon OR Klamath 035 42.4514 -121.4365 +US 97731 Chemult Oregon OR Klamath 035 43.146 -121.7974 +US 97733 Crescent Oregon OR Klamath 035 43.4442 -121.7109 +US 97737 Gilchrist Oregon OR Klamath 035 43.3725 -121.6583 +US 97620 Adel Oregon OR Lake 037 42.1487 -119.8833 +US 97630 Lakeview Oregon OR Lake 037 42.1854 -120.3775 +US 97635 New Pine Creek Oregon OR Lake 037 42.0278 -120.2894 +US 97636 Paisley Oregon OR Lake 037 42.7031 -120.5532 +US 97637 Plush Oregon OR Lake 037 42.5035 -119.8947 +US 97638 Silver Lake Oregon OR Lake 037 43.1395 -120.9984 +US 97640 Summer Lake Oregon OR Lake 037 42.9447 -120.7946 +US 97641 Christmas Valley Oregon OR Lake 037 43.1579 -120.7244 +US 97735 Fort Rock Oregon OR Lake 037 42.8053 -120.3553 +US 97401 Eugene Oregon OR Lane 039 44.0682 -123.0819 +US 97402 Eugene Oregon OR Lane 039 44.0612 -123.1555 +US 97403 Eugene Oregon OR Lane 039 44.0385 -123.0614 +US 97404 Eugene Oregon OR Lane 039 44.1005 -123.1334 +US 97405 Eugene Oregon OR Lane 039 44.0185 -123.0998 +US 97408 Eugene Oregon OR Lane 039 44.1445 -123.0545 +US 97409 Alvadore Oregon OR Lane 039 44.1276 -123.2666 +US 97412 Blachly Oregon OR Lane 039 44.1966 -123.5348 +US 97413 Blue River Oregon OR Lane 039 44.1755 -122.1217 +US 97419 Cheshire Oregon OR Lane 039 44.1782 -123.3715 +US 97424 Cottage Grove Oregon OR Lane 039 43.7839 -123.0529 +US 97426 Creswell Oregon OR Lane 039 43.9058 -123.0284 +US 97427 Culp Creek Oregon OR Lane 039 43.6579 -122.7871 +US 97430 Deadwood Oregon OR Lane 039 44.1462 -123.6816 +US 97431 Dexter Oregon OR Lane 039 43.9217 -122.8424 +US 97434 Dorena Oregon OR Lane 039 43.7361 -122.8946 +US 97437 Elmira Oregon OR Lane 039 44.0873 -123.3671 +US 97438 Fall Creek Oregon OR Lane 039 43.9509 -122.6884 +US 97439 Florence Oregon OR Lane 039 43.9881 -124.0993 +US 97440 Eugene Oregon OR Lane 039 43.8638 -122.9988 +US 97448 Junction City Oregon OR Lane 039 44.1988 -123.23 +US 97451 Lorane Oregon OR Lane 039 43.829 -123.2477 +US 97452 Lowell Oregon OR Lane 039 43.921 -122.7806 +US 97453 Mapleton Oregon OR Lane 039 44.0312 -123.8657 +US 97454 Marcola Oregon OR Lane 039 44.2064 -122.8246 +US 97455 Pleasant Hill Oregon OR Lane 039 43.9458 -122.9285 +US 97461 Noti Oregon OR Lane 039 44.0992 -123.4684 +US 97463 Oakridge Oregon OR Lane 039 43.7376 -122.4377 +US 97472 Saginaw Oregon OR Lane 039 43.8638 -122.9988 +US 97475 Springfield Oregon OR Lane County 039 44.0437 -122.9748 +US 97477 Springfield Oregon OR Lane 039 44.0611 -123.0153 +US 97478 Springfield Oregon OR Lane 039 44.0561 -122.9171 +US 97480 Swisshome Oregon OR Lane 039 44.0899 -123.8279 +US 97482 Thurston Oregon OR Lane 039 43.8638 -122.9988 +US 97487 Veneta Oregon OR Lane 039 44.0382 -123.3516 +US 97488 Vida Oregon OR Lane 039 44.13 -122.5044 +US 97489 Walterville Oregon OR Lane 039 44.1288 -122.6376 +US 97490 Walton Oregon OR Lane 039 44.0282 -123.5893 +US 97492 Westfir Oregon OR Lane 039 43.7575 -122.481 +US 97493 Westlake Oregon OR Lane 039 43.914 -124.0334 +US 97341 Depoe Bay Oregon OR Lincoln 041 44.8322 -124.0503 +US 97343 Eddyville Oregon OR Lincoln 041 44.6371 -123.7531 +US 97357 Logsden Oregon OR Lincoln 041 44.7082 -123.8051 +US 97364 Neotsu Oregon OR Lincoln 041 44.9988 -123.9843 +US 97365 Newport Oregon OR Lincoln 041 44.6487 -124.0509 +US 97366 South Beach Oregon OR Lincoln 041 44.5712 -124.06 +US 97367 Lincoln City Oregon OR Lincoln 041 44.9089 -123.9888 +US 97368 Otis Oregon OR Lincoln 041 45.0138 -123.9332 +US 97369 Otter Rock Oregon OR Lincoln 041 44.7588 -124.0633 +US 97372 Rose Lodge Oregon OR Lincoln 041 44.66 -123.892 +US 97376 Seal Rock Oregon OR Lincoln 041 44.4874 -123.9567 +US 97380 Siletz Oregon OR Lincoln 041 44.7313 -123.9062 +US 97388 Gleneden Beach Oregon OR Lincoln 041 44.885 -123.9942 +US 97390 Tidewater Oregon OR Lincoln 041 44.4055 -123.9149 +US 97391 Toledo Oregon OR Lincoln 041 44.6271 -123.9301 +US 97394 Waldport Oregon OR Lincoln 041 44.4085 -124.0351 +US 97498 Yachats Oregon OR Lincoln 041 44.3256 -124.0863 +US 97321 Albany Oregon OR Linn 043 44.652 -123.1333 +US 97322 Albany Oregon OR Linn County 043 44.626 -123.057 +US 97327 Brownsville Oregon OR Linn 043 44.377 -122.9485 +US 97329 Cascadia Oregon OR Linn 043 44.3995 -122.3636 +US 97335 Crabtree Oregon OR Linn 043 44.6344 -122.8933 +US 97336 Crawfordsville Oregon OR Linn 043 44.3593 -122.8508 +US 97345 Foster Oregon OR Linn 043 44.3836 -122.5449 +US 97348 Halsey Oregon OR Linn 043 44.3862 -123.1251 +US 97355 Lebanon Oregon OR Linn 043 44.5316 -122.8821 +US 97358 Lyons Oregon OR Linn 043 44.7499 -122.595 +US 97360 Mill City Oregon OR Linn 043 44.7516 -122.4768 +US 97374 Scio Oregon OR Linn 043 44.7168 -122.7684 +US 97377 Shedd Oregon OR Linn 043 44.453 -123.1065 +US 97386 Sweet Home Oregon OR Linn 043 44.3981 -122.7286 +US 97389 Tangent Oregon OR Linn 043 44.5497 -123.1108 +US 97446 Harrisburg Oregon OR Linn 043 44.2717 -123.1432 +US 97901 Adrian Oregon OR Malheur 045 43.6537 -117.0602 +US 97902 Arock Oregon OR Malheur 045 42.9156 -117.498 +US 97903 Brogan Oregon OR Malheur 045 44.1994 -117.5904 +US 97906 Harper Oregon OR Malheur 045 43.8734 -117.5284 +US 97908 Ironside Oregon OR Malheur 045 44.3009 -117.9444 +US 97909 Jamieson Oregon OR Malheur 045 44.2161 -117.4813 +US 97910 Jordan Valley Oregon OR Malheur 045 42.8801 -117.281 +US 97911 Juntura Oregon OR Malheur 045 43.8253 -118.0921 +US 97913 Nyssa Oregon OR Malheur 045 43.8604 -117.0251 +US 97914 Ontario Oregon OR Malheur 045 44.0416 -116.9783 +US 97917 Riverside Oregon OR Malheur 045 43.5099 -118.0986 +US 97918 Vale Oregon OR Malheur 045 44.0039 -117.2674 +US 97920 Westfall Oregon OR Malheur 045 43.9922 -117.6877 +US 97002 Aurora Oregon OR Marion 047 45.2284 -122.8039 +US 97020 Donald Oregon OR Marion 047 45.2199 -122.8405 +US 97026 Gervais Oregon OR Marion 047 45.1086 -122.8962 +US 97032 Hubbard Oregon OR Marion 047 45.1604 -122.7541 +US 97071 Woodburn Oregon OR Marion 047 45.1446 -122.8583 +US 97137 Saint Paul Oregon OR Marion 047 45.196 -122.9674 +US 97301 Salem Oregon OR Marion 047 44.949 -123.004 +US 97302 Salem Oregon OR Marion 047 44.9039 -123.0445 +US 97303 Salem Oregon OR Marion 047 44.9927 -123.0167 +US 97305 Salem Oregon OR Marion 047 44.9961 -122.9124 +US 97306 Salem Oregon OR Marion 047 44.8685 -123.0438 +US 97307 Keizer Oregon OR Marion 047 44.9845 -122.457 +US 97308 Salem Oregon OR Marion 047 44.9845 -122.457 +US 97309 Salem Oregon OR Marion 047 44.9845 -122.457 +US 97310 Salem Oregon OR Marion 047 44.9271 -122.9861 +US 97311 Salem Oregon OR Marion 047 44.9438 -123.0286 +US 97312 Salem Oregon OR Marion 047 44.9364 -123.0381 +US 97313 Salem Oregon OR Marion 047 44.9849 -122.9988 +US 97314 Salem Oregon OR Marion 047 44.9655 -123.0066 +US 97317 Salem Oregon OR Marion County 047 44.9026 -122.9074 +US 97325 Aumsville Oregon OR Marion 047 44.8313 -122.8517 +US 97342 Detroit Oregon OR Marion 047 44.7358 -122.0669 +US 97346 Gates Oregon OR Marion 047 44.7527 -122.3995 +US 97350 Idanha Oregon OR Marion 047 44.7001 -122.074 +US 97352 Jefferson Oregon OR Marion 047 44.7495 -123.006 +US 97359 Marion Oregon OR Marion 047 44.9845 -122.457 +US 97362 Mount Angel Oregon OR Marion 047 45.0737 -122.7856 +US 97373 Saint Benedict Oregon OR Marion 047 44.9845 -122.457 +US 97375 Scotts Mills Oregon OR Marion 047 44.9897 -122.6187 +US 97381 Silverton Oregon OR Marion 047 44.991 -122.7627 +US 97383 Stayton Oregon OR Marion 047 44.8021 -122.7624 +US 97384 Mehama Oregon OR Marion 047 44.7903 -122.6187 +US 97385 Sublimity Oregon OR Marion 047 44.8425 -122.8007 +US 97392 Turner Oregon OR Marion 047 44.8476 -122.9501 +US 97818 Boardman Oregon OR Morrow 049 45.8272 -119.7206 +US 97836 Heppner Oregon OR Morrow 049 45.3486 -119.5369 +US 97839 Lexington Oregon OR Morrow 049 45.4264 -119.7464 +US 97843 Ione Oregon OR Morrow 049 45.5403 -119.769 +US 97844 Irrigon Oregon OR Morrow 049 45.8877 -119.507 +US 97010 Bridal Veil Oregon OR Multnomah 051 45.583 -122.1011 +US 97019 Corbett Oregon OR Multnomah 051 45.5221 -122.2417 +US 97024 Fairview Oregon OR Multnomah 051 45.5473 -122.4414 +US 97030 Gresham Oregon OR Multnomah 051 45.5154 -122.4203 +US 97060 Troutdale Oregon OR Multnomah 051 45.5254 -122.3739 +US 97080 Gresham Oregon OR Multnomah 051 45.4817 -122.4156 +US 97086 Happy Valley Oregon OR Multnomah County 051 45.4446 -122.5372 +US 97089 Boring Oregon OR Multnomah County 051 45.4242 -122.4509 +US 97201 Portland Oregon OR Multnomah 051 45.5078 -122.6897 +US 97202 Portland Oregon OR Multnomah 051 45.484 -122.6365 +US 97203 Portland Oregon OR Multnomah 051 45.5889 -122.7347 +US 97204 Portland Oregon OR Multnomah 051 45.5181 -122.6745 +US 97205 Portland Oregon OR Multnomah 051 45.5207 -122.6888 +US 97206 Portland Oregon OR Multnomah 051 45.484 -122.5973 +US 97207 Portland Oregon OR Multnomah 051 45.4803 -122.7111 +US 97208 Portland Oregon OR Multnomah 051 45.5322 -122.5648 +US 97209 Portland Oregon OR Multnomah 051 45.527 -122.6854 +US 97210 Portland Oregon OR Multnomah 051 45.5303 -122.7033 +US 97211 Portland Oregon OR Multnomah 051 45.5653 -122.6448 +US 97212 Portland Oregon OR Multnomah 051 45.5441 -122.6423 +US 97213 Portland Oregon OR Multnomah 051 45.5373 -122.5987 +US 97214 Portland Oregon OR Multnomah 051 45.5142 -122.6364 +US 97215 Portland Oregon OR Multnomah 051 45.5143 -122.599 +US 97216 Portland Oregon OR Multnomah 051 45.5137 -122.5569 +US 97217 Portland Oregon OR Multnomah 051 45.5742 -122.6842 +US 97218 Portland Oregon OR Multnomah 051 45.56 -122.6001 +US 97219 Portland Oregon OR Multnomah 051 45.458 -122.7074 +US 97220 Portland Oregon OR Multnomah 051 45.5411 -122.5566 +US 97221 Portland Oregon OR Multnomah 051 45.4918 -122.7267 +US 97227 Portland Oregon OR Multnomah 051 45.5496 -122.6743 +US 97228 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97230 Portland Oregon OR Multnomah 051 45.5472 -122.5001 +US 97231 Portland Oregon OR Multnomah 051 45.6401 -122.838 +US 97232 Portland Oregon OR Multnomah 051 45.5287 -122.6363 +US 97233 Portland Oregon OR Multnomah 051 45.5142 -122.4985 +US 97236 Portland Oregon OR Multnomah 051 45.4887 -122.5091 +US 97238 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97239 Portland Oregon OR Multnomah County 051 45.4983 -122.6913 +US 97240 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97242 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97251 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97253 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97254 Portland Oregon OR Multnomah 051 45.5967 -122.5942 +US 97255 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97256 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97258 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97259 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97266 Portland Oregon OR Multnomah 051 45.4762 -122.5596 +US 97271 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97272 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97280 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97282 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97283 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97286 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97290 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97292 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97293 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97294 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97296 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97299 Portland Oregon OR Multnomah 051 45.5806 -122.3748 +US 97304 Salem Oregon OR Polk 053 44.9588 -123.0753 +US 97338 Dallas Oregon OR Polk 053 44.9225 -123.32 +US 97344 Falls City Oregon OR Polk 053 44.8706 -123.4461 +US 97347 Grand Ronde Oregon OR Polk 053 45.075 -123.6335 +US 97351 Independence Oregon OR Polk 053 44.8481 -123.1879 +US 97361 Monmouth Oregon OR Polk 053 44.8377 -123.2512 +US 97371 Rickreall Oregon OR Polk 053 45.02 -123.2064 +US 97029 Grass Valley Oregon OR Sherman 055 45.3013 -120.7478 +US 97033 Kent Oregon OR Sherman 055 45.0838 -120.6649 +US 97039 Moro Oregon OR Sherman 055 45.4853 -120.6957 +US 97050 Rufus Oregon OR Sherman 055 45.6852 -120.7268 +US 97065 Wasco Oregon OR Sherman 055 45.5974 -120.7304 +US 97107 Bay City Oregon OR Tillamook 057 45.5197 -123.8761 +US 97108 Beaver Oregon OR Tillamook 057 45.2767 -123.8234 +US 97112 Cloverdale Oregon OR Tillamook 057 45.2858 -123.8356 +US 97118 Garibaldi Oregon OR Tillamook 057 45.5626 -123.9001 +US 97122 Hebo Oregon OR Tillamook 057 45.1768 -123.846 +US 97130 Manzanita Oregon OR Tillamook 057 45.7366 -123.9231 +US 97131 Nehalem Oregon OR Tillamook 057 45.7216 -123.9049 +US 97134 Oceanside Oregon OR Tillamook 057 45.4549 -123.965 +US 97135 Pacific City Oregon OR Tillamook 057 45.205 -123.959 +US 97136 Rockaway Beach Oregon OR Tillamook 057 45.6352 -123.913 +US 97141 Tillamook Oregon OR Tillamook 057 45.4492 -123.8189 +US 97143 Netarts Oregon OR Tillamook 057 45.434 -123.9458 +US 97147 Wheeler Oregon OR Tillamook 057 45.6888 -123.8816 +US 97149 Neskowin Oregon OR Tillamook 057 45.097 -123.9434 +US 97801 Pendleton Oregon OR Umatilla 059 45.6605 -118.7831 +US 97810 Adams Oregon OR Umatilla 059 45.7497 -118.6176 +US 97813 Athena Oregon OR Umatilla 059 45.8289 -118.4971 +US 97821 Cayuse Oregon OR Umatilla 059 45.6833 -118.4581 +US 97826 Echo Oregon OR Umatilla 059 45.7411 -119.1949 +US 97835 Helix Oregon OR Umatilla 059 45.8665 -118.7222 +US 97838 Hermiston Oregon OR Umatilla 059 45.845 -119.2849 +US 97859 Meacham Oregon OR Umatilla 059 45.5215 -118.4335 +US 97862 Milton Freewater Oregon OR Umatilla 059 45.9486 -118.3912 +US 97868 Pilot Rock Oregon OR Umatilla 059 45.4227 -118.8483 +US 97875 Stanfield Oregon OR Umatilla 059 45.786 -119.2116 +US 97880 Ukiah Oregon OR Umatilla 059 45.0836 -118.894 +US 97882 Umatilla Oregon OR Umatilla 059 45.8998 -119.3553 +US 97886 Weston Oregon OR Umatilla 059 45.8074 -118.3733 +US 97824 Cove Oregon OR Union 061 45.3199 -117.8147 +US 97827 Elgin Oregon OR Union 061 45.5941 -117.9112 +US 97841 Imbler Oregon OR Union 061 45.4599 -117.9544 +US 97850 La Grande Oregon OR Union 061 45.3304 -118.0852 +US 97867 North Powder Oregon OR Union 061 45.0317 -117.9337 +US 97876 Summerville Oregon OR Union 061 45.5077 -118.027 +US 97883 Union Oregon OR Union 061 45.2019 -117.8536 +US 97828 Enterprise Oregon OR Wallowa 063 45.437 -117.2888 +US 97842 Imnaha Oregon OR Wallowa 063 45.5137 -116.8257 +US 97846 Joseph Oregon OR Wallowa 063 45.3494 -117.2128 +US 97857 Lostine Oregon OR Wallowa 063 45.4939 -117.4359 +US 97885 Wallowa Oregon OR Wallowa 063 45.5717 -117.5357 +US 97001 Antelope Oregon OR Wasco 065 44.8892 -120.7914 +US 97021 Dufur Oregon OR Wasco 065 45.3913 -121.1432 +US 97037 Maupin Oregon OR Wasco 065 45.0742 -121.2282 +US 97040 Mosier Oregon OR Wasco 065 45.6508 -121.379 +US 97057 Shaniko Oregon OR Wasco 065 45.0027 -120.75 +US 97058 The Dalles Oregon OR Wasco 065 45.5995 -121.1905 +US 97063 Tygh Valley Oregon OR Wasco 065 45.2229 -121.2927 +US 97003 Beaverton Oregon OR Washington 067 45.5201 -122.8604 +US 97005 Beaverton Oregon OR Washington 067 45.4963 -122.8001 +US 97006 Beaverton Oregon OR Washington 067 45.5201 -122.8604 +US 97007 Beaverton Oregon OR Washington 067 45.4505 -122.8652 +US 97008 Beaverton Oregon OR Washington 067 45.456 -122.7996 +US 97062 Tualatin Oregon OR Washington 067 45.3727 -122.7631 +US 97075 Beaverton Oregon OR Washington 067 45.5486 -123.1147 +US 97076 Beaverton Oregon OR Washington 067 45.5486 -123.1147 +US 97077 Beaverton Oregon OR Washington 067 45.5486 -123.1147 +US 97078 Beaverton Oregon OR Washington 067 45.452 -122.7893 +US 97106 Banks Oregon OR Washington 067 45.6535 -123.121 +US 97109 Buxton Oregon OR Washington 067 45.737 -123.2146 +US 97113 Cornelius Oregon OR Washington 067 45.529 -123.0415 +US 97116 Forest Grove Oregon OR Washington 067 45.5981 -123.1818 +US 97117 Gales Creek Oregon OR Washington 067 45.5957 -123.234 +US 97119 Gaston Oregon OR Washington 067 45.4427 -123.1666 +US 97123 Hillsboro Oregon OR Washington 067 45.4984 -122.957 +US 97124 Hillsboro Oregon OR Washington 067 45.5387 -122.9636 +US 97125 Manning Oregon OR Washington 067 45.6592 -123.1917 +US 97133 North Plains Oregon OR Washington 067 45.6686 -123.0281 +US 97140 Sherwood Oregon OR Washington 067 45.3514 -122.8567 +US 97144 Timber Oregon OR Washington 067 45.727 -123.3119 +US 97223 Portland Oregon OR Washington 067 45.4403 -122.7793 +US 97224 Portland Oregon OR Washington 067 45.4094 -122.8014 +US 97225 Portland Oregon OR Washington 067 45.4985 -122.7787 +US 97229 Portland Oregon OR Washington 067 45.5483 -122.8276 +US 97281 Portland Oregon OR Washington 067 45.5486 -123.1147 +US 97291 Portland Oregon OR Washington 067 45.5486 -123.1147 +US 97298 Portland Oregon OR Washington 067 45.5486 -123.1147 +US 97750 Mitchell Oregon OR Wheeler 069 44.5657 -120.1456 +US 97830 Fossil Oregon OR Wheeler 069 44.9286 -120.1309 +US 97874 Spray Oregon OR Wheeler 069 44.8242 -119.8303 +US 97101 Amity Oregon OR Yamhill 071 45.1157 -123.1744 +US 97111 Carlton Oregon OR Yamhill 071 45.2859 -123.1523 +US 97114 Dayton Oregon OR Yamhill 071 45.1977 -123.0753 +US 97115 Dundee Oregon OR Yamhill 071 45.2776 -123.0152 +US 97127 Lafayette Oregon OR Yamhill 071 45.2466 -123.1114 +US 97128 Mcminnville Oregon OR Yamhill 071 45.2097 -123.2043 +US 97132 Newberg Oregon OR Yamhill 071 45.3099 -122.9685 +US 97148 Yamhill Oregon OR Yamhill 071 45.335 -123.2036 +US 97378 Sheridan Oregon OR Yamhill 071 45.0897 -123.4003 +US 97396 Willamina Oregon OR Yamhill 071 45.0826 -123.5047 +US 17301 Abbottstown Pennsylvania PA Adams 001 39.8881 -76.9931 +US 17303 Arendtsville Pennsylvania PA Adams 001 39.9236 -77.3001 +US 17304 Aspers Pennsylvania PA Adams 001 39.9765 -77.2287 +US 17306 Bendersville Pennsylvania PA Adams 001 39.9792 -77.2496 +US 17307 Biglerville Pennsylvania PA Adams 001 39.9281 -77.2885 +US 17310 Cashtown Pennsylvania PA Adams 001 39.8906 -77.3566 +US 17316 East Berlin Pennsylvania PA Adams 001 39.9645 -77.0073 +US 17320 Fairfield Pennsylvania PA Adams 001 39.7808 -77.3619 +US 17324 Gardners Pennsylvania PA Adams 001 40.0428 -77.1877 +US 17325 Gettysburg Pennsylvania PA Adams 001 39.832 -77.2223 +US 17326 Gettysburg Pennsylvania PA Adams 001 39.8948 -77.2135 +US 17337 Idaville Pennsylvania PA Adams 001 40.0157 -77.2001 +US 17340 Littlestown Pennsylvania PA Adams 001 39.7495 -77.1003 +US 17343 Mc Knightstown Pennsylvania PA Adams 001 39.8692 -77.3292 +US 17344 Mc Sherrystown Pennsylvania PA Adams 001 39.801 -77.0229 +US 17350 New Oxford Pennsylvania PA Adams 001 39.8775 -77.0643 +US 17353 Orrtanna Pennsylvania PA Adams 001 39.881 -77.3806 +US 17372 York Springs Pennsylvania PA Adams 001 40.0084 -77.1061 +US 17375 Peach Glen Pennsylvania PA Adams 001 39.8948 -77.2135 +US 15006 Bairdford Pennsylvania PA Allegheny 003 40.4931 -79.9031 +US 15007 Bakerstown Pennsylvania PA Allegheny 003 40.6478 -79.931 +US 15014 Brackenridge Pennsylvania PA Allegheny 003 40.6082 -79.7414 +US 15015 Bradfordwoods Pennsylvania PA Allegheny 003 40.6372 -80.0811 +US 15017 Bridgeville Pennsylvania PA Allegheny 003 40.3472 -80.1153 +US 15018 Buena Vista Pennsylvania PA Allegheny 003 40.4577 -80.2084 +US 15020 Bunola Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15024 Cheswick Pennsylvania PA Allegheny 003 40.5681 -79.841 +US 15025 Clairton Pennsylvania PA Allegheny 003 40.3243 -79.9317 +US 15026 Clinton Pennsylvania PA Allegheny 003 40.5131 -80.3423 +US 15028 Coulters Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15030 Creighton Pennsylvania PA Allegheny 003 40.5821 -79.7818 +US 15031 Cuddy Pennsylvania PA Allegheny 003 40.3547 -80.1669 +US 15032 Curtisville Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15034 Dravosburg Pennsylvania PA Allegheny 003 40.3527 -79.8895 +US 15035 East Mc Keesport Pennsylvania PA Allegheny 003 40.3839 -79.8079 +US 15037 Elizabeth Pennsylvania PA Allegheny 003 40.2656 -79.8568 +US 15044 Gibsonia Pennsylvania PA Allegheny 003 40.6252 -79.9443 +US 15045 Glassport Pennsylvania PA Allegheny 003 40.326 -79.8883 +US 15046 Crescent Pennsylvania PA Allegheny 003 40.5563 -80.2286 +US 15047 Greenock Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15049 Harwick Pennsylvania PA Allegheny 003 40.5574 -79.8051 +US 15051 Indianola Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15056 Leetsdale Pennsylvania PA Allegheny 003 40.5662 -80.2099 +US 15064 Morgan Pennsylvania PA Allegheny 003 40.3559 -80.1415 +US 15065 Natrona Heights Pennsylvania PA Allegheny 003 40.6421 -79.7273 +US 15071 Oakdale Pennsylvania PA Allegheny 003 40.4033 -80.1842 +US 15075 Rural Ridge Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15076 Russellton Pennsylvania PA Allegheny 003 40.6073 -79.8347 +US 15082 Sturgeon Pennsylvania PA Allegheny 003 40.3863 -80.2083 +US 15084 Tarentum Pennsylvania PA Allegheny 003 40.6187 -79.7852 +US 15086 Warrendale Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15088 West Elizabeth Pennsylvania PA Allegheny 003 40.2716 -79.8966 +US 15090 Wexford Pennsylvania PA Allegheny 003 40.612 -80.0649 +US 15091 Wildwood Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15095 Warrendale Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15096 Warrendale Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15101 Allison Park Pennsylvania PA Allegheny 003 40.57 -79.9665 +US 15102 Bethel Park Pennsylvania PA Allegheny 003 40.321 -80.0398 +US 15104 Braddock Pennsylvania PA Allegheny 003 40.4038 -79.8625 +US 15106 Carnegie Pennsylvania PA Allegheny 003 40.4029 -80.0915 +US 15108 Coraopolis Pennsylvania PA Allegheny 003 40.5 -80.1996 +US 15110 Duquesne Pennsylvania PA Allegheny 003 40.3704 -79.8522 +US 15112 East Pittsburgh Pennsylvania PA Allegheny 003 40.4036 -79.8389 +US 15116 Glenshaw Pennsylvania PA Allegheny 003 40.5375 -79.9644 +US 15120 Homestead Pennsylvania PA Allegheny 003 40.3926 -79.9052 +US 15122 West Mifflin Pennsylvania PA Allegheny 003 40.3606 -79.9086 +US 15123 West Mifflin Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15126 Imperial Pennsylvania PA Allegheny 003 40.4584 -80.2649 +US 15127 Ingomar Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15129 South Park Pennsylvania PA Allegheny 003 40.2932 -79.996 +US 15129 Library Pennsylvania PA Allegheny 003 40.2932 -79.996 +US 15130 Mc Keesport Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15131 Mc Keesport Pennsylvania PA Allegheny 003 40.336 -79.8002 +US 15132 Mc Keesport Pennsylvania PA Allegheny 003 40.3417 -79.8452 +US 15133 Mc Keesport Pennsylvania PA Allegheny 003 40.3328 -79.8668 +US 15134 Mc Keesport Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15135 Mc Keesport Pennsylvania PA Allegheny 003 40.3016 -79.8154 +US 15136 Mc Kees Rocks Pennsylvania PA Allegheny 003 40.4717 -80.0876 +US 15137 North Versailles Pennsylvania PA Allegheny 003 40.3762 -79.8124 +US 15139 Oakmont Pennsylvania PA Allegheny 003 40.5196 -79.8369 +US 15140 Pitcairn Pennsylvania PA Allegheny 003 40.4048 -79.777 +US 15142 Presto Pennsylvania PA Allegheny 003 40.3847 -80.1209 +US 15143 Sewickley Pennsylvania PA Allegheny 003 40.557 -80.1578 +US 15144 Springdale Pennsylvania PA Allegheny 003 40.544 -79.7844 +US 15145 Turtle Creek Pennsylvania PA Allegheny 003 40.4113 -79.822 +US 15146 Monroeville Pennsylvania PA Allegheny 003 40.429 -79.7623 +US 15147 Verona Pennsylvania PA Allegheny 003 40.4927 -79.8345 +US 15148 Wilmerding Pennsylvania PA Allegheny 003 40.3934 -79.7951 +US 15189 Sewickley Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15201 Pittsburgh Pennsylvania PA Allegheny 003 40.4752 -79.9528 +US 15202 Pittsburgh Pennsylvania PA Allegheny 003 40.5053 -80.0685 +US 15203 Pittsburgh Pennsylvania PA Allegheny 003 40.4254 -79.9799 +US 15204 Pittsburgh Pennsylvania PA Allegheny 003 40.4554 -80.0644 +US 15205 Pittsburgh Pennsylvania PA Allegheny 003 40.4322 -80.1021 +US 15206 Pittsburgh Pennsylvania PA Allegheny 003 40.4723 -79.9132 +US 15207 Pittsburgh Pennsylvania PA Allegheny 003 40.4003 -79.9338 +US 15208 Pittsburgh Pennsylvania PA Allegheny 003 40.4532 -79.8995 +US 15209 Pittsburgh Pennsylvania PA Allegheny 003 40.4999 -79.9739 +US 15210 Pittsburgh Pennsylvania PA Allegheny 003 40.4072 -79.9839 +US 15211 Pittsburgh Pennsylvania PA Allegheny 003 40.4295 -80.0144 +US 15212 Pittsburgh Pennsylvania PA Allegheny 003 40.4282 -80.075 +US 15213 Pittsburgh Pennsylvania PA Allegheny 003 40.444 -79.9552 +US 15214 Pittsburgh Pennsylvania PA Allegheny 003 40.4865 -80.014 +US 15215 Pittsburgh Pennsylvania PA Allegheny 003 40.5048 -79.9138 +US 15216 Pittsburgh Pennsylvania PA Allegheny 003 40.4001 -80.0462 +US 15217 Pittsburgh Pennsylvania PA Allegheny 003 40.4308 -79.9205 +US 15218 Pittsburgh Pennsylvania PA Allegheny 003 40.4237 -79.89 +US 15219 Pittsburgh Pennsylvania PA Allegheny 003 40.4423 -79.983 +US 15220 Pittsburgh Pennsylvania PA Allegheny 003 40.4181 -80.0526 +US 15221 Pittsburgh Pennsylvania PA Allegheny 003 40.4346 -79.8655 +US 15222 Pittsburgh Pennsylvania PA Allegheny 003 40.4477 -79.9933 +US 15223 Pittsburgh Pennsylvania PA Allegheny 003 40.5051 -79.9528 +US 15224 Pittsburgh Pennsylvania PA Allegheny 003 40.4642 -79.9448 +US 15225 Pittsburgh Pennsylvania PA Allegheny 003 40.5051 -80.1155 +US 15226 Pittsburgh Pennsylvania PA Allegheny 003 40.4001 -80.0161 +US 15227 Pittsburgh Pennsylvania PA Allegheny 003 40.3805 -79.9667 +US 15228 Pittsburgh Pennsylvania PA Allegheny 003 40.3696 -80.0439 +US 15229 Pittsburgh Pennsylvania PA Allegheny 003 40.5203 -80.037 +US 15230 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15231 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15232 Pittsburgh Pennsylvania PA Allegheny 003 40.4525 -79.9319 +US 15233 Pittsburgh Pennsylvania PA Allegheny 003 40.4608 -80.0348 +US 15234 Pittsburgh Pennsylvania PA Allegheny 003 40.3688 -80.0224 +US 15235 Pittsburgh Pennsylvania PA Allegheny 003 40.4598 -79.8224 +US 15236 Pittsburgh Pennsylvania PA Allegheny 003 40.3351 -79.9832 +US 15237 Pittsburgh Pennsylvania PA Allegheny 003 40.5488 -80.0474 +US 15238 Pittsburgh Pennsylvania PA Allegheny 003 40.5346 -79.8805 +US 15239 Pittsburgh Pennsylvania PA Allegheny 003 40.4837 -79.7381 +US 15240 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15241 Pittsburgh Pennsylvania PA Allegheny 003 40.3323 -80.081 +US 15242 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15243 Pittsburgh Pennsylvania PA Allegheny 003 40.3748 -80.0731 +US 15244 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15250 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15251 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15252 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15253 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15254 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15255 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15257 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15258 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15259 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15260 Pittsburgh Pennsylvania PA Allegheny 003 40.4432 -79.9531 +US 15261 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15262 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15263 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15264 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15265 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15266 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15267 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15268 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15270 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15272 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15274 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15275 Pittsburgh Pennsylvania PA Allegheny 003 40.4495 -80.1795 +US 15276 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15277 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15278 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15279 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15281 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15282 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15283 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15285 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15286 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15289 Pittsburgh Pennsylvania PA Allegheny County 003 40.4446 -79.9451 +US 15290 Pittsburgh Pennsylvania PA Allegheny 003 40.4344 -80.0248 +US 15295 Pittsburgh Pennsylvania PA Allegheny County 003 40.463 -80.0108 +US 15630 Edmon Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 15656 Leechburg Pennsylvania PA Armstrong 005 40.6344 -79.6201 +US 15673 North Apollo Pennsylvania PA Armstrong 005 40.593 -79.5581 +US 15682 Schenley Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 15686 Spring Church Pennsylvania PA Armstrong 005 40.6153 -79.4545 +US 15736 Elderton Pennsylvania PA Armstrong 005 40.6922 -79.3422 +US 15774 Shelocta Pennsylvania PA Armstrong 005 40.6388 -79.3191 +US 16049 Parker Pennsylvania PA Armstrong 005 41.1009 -79.6889 +US 16201 Kittanning Pennsylvania PA Armstrong 005 40.8155 -79.5107 +US 16210 Adrian Pennsylvania PA Armstrong 005 40.9049 -79.5074 +US 16212 Cadogan Pennsylvania PA Armstrong 005 40.7539 -79.5798 +US 16215 Kittanning Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 16216 Climax Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 16218 Cowansville Pennsylvania PA Armstrong 005 40.923 -79.5946 +US 16222 Dayton Pennsylvania PA Armstrong 005 40.8741 -79.2686 +US 16223 Distant Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 16226 Ford City Pennsylvania PA Armstrong 005 40.7384 -79.5122 +US 16228 Ford Cliff Pennsylvania PA Armstrong 005 40.7608 -79.5358 +US 16229 Freeport Pennsylvania PA Armstrong 005 40.7033 -79.663 +US 16236 Mc Grann Pennsylvania PA Armstrong 005 40.7818 -79.5218 +US 16238 Manorville Pennsylvania PA Armstrong 005 40.7863 -79.5213 +US 16244 Nu Mine Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 16245 Oak Ridge Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 16249 Rural Valley Pennsylvania PA Armstrong 005 40.7885 -79.2991 +US 16250 Sagamore Pennsylvania PA Armstrong 005 40.7774 -79.2336 +US 16253 Seminole Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 16259 Templeton Pennsylvania PA Armstrong 005 40.9419 -79.4499 +US 16261 Widnoon Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 16262 Worthington Pennsylvania PA Armstrong 005 40.8378 -79.6298 +US 16263 Yatesboro Pennsylvania PA Armstrong 005 40.8478 -79.4516 +US 15001 Aliquippa Pennsylvania PA Beaver 007 40.5921 -80.3197 +US 15003 Ambridge Pennsylvania PA Beaver 007 40.6005 -80.2105 +US 15005 Baden Pennsylvania PA Beaver 007 40.6416 -80.1985 +US 15009 Beaver Pennsylvania PA Beaver 007 40.6972 -80.3365 +US 15010 Beaver Falls Pennsylvania PA Beaver 007 40.7687 -80.3592 +US 15027 Conway Pennsylvania PA Beaver 007 40.6649 -80.2349 +US 15042 Freedom Pennsylvania PA Beaver 007 40.683 -80.2147 +US 15043 Georgetown Pennsylvania PA Beaver 007 40.5743 -80.49 +US 15050 Hookstown Pennsylvania PA Beaver 007 40.5622 -80.4388 +US 15052 Industry Pennsylvania PA Beaver 007 40.6671 -80.4151 +US 15059 Midland Pennsylvania PA Beaver 007 40.6793 -80.4908 +US 15061 Monaca Pennsylvania PA Beaver 007 40.6718 -80.2917 +US 15066 New Brighton Pennsylvania PA Beaver 007 40.7393 -80.2972 +US 15074 Rochester Pennsylvania PA Beaver 007 40.7157 -80.2603 +US 15077 Shippingport Pennsylvania PA Beaver 007 40.6025 -80.3863 +US 15081 South Heights Pennsylvania PA Beaver 007 40.5763 -80.2383 +US 16115 Darlington Pennsylvania PA Beaver 007 40.7968 -80.4556 +US 16123 Fombell Pennsylvania PA Beaver 007 40.8125 -80.2073 +US 16136 Koppel Pennsylvania PA Beaver 007 40.8348 -80.328 +US 16141 New Galilee Pennsylvania PA Beaver 007 40.8569 -80.3939 +US 15521 Alum Bank Pennsylvania PA Bedford 009 40.1858 -78.6206 +US 15522 Bedford Pennsylvania PA Bedford 009 39.9908 -78.5261 +US 15533 Breezewood Pennsylvania PA Bedford 009 39.9905 -78.2453 +US 15534 Buffalo Mills Pennsylvania PA Bedford 009 39.922 -78.6996 +US 15535 Clearville Pennsylvania PA Bedford 009 39.8533 -78.4392 +US 15537 Everett Pennsylvania PA Bedford 009 40.0098 -78.3713 +US 15539 Fishertown Pennsylvania PA Bedford 009 40.1302 -78.5915 +US 15545 Hyndman Pennsylvania PA Bedford 009 39.8049 -78.7335 +US 15550 Manns Choice Pennsylvania PA Bedford 009 39.9808 -78.6423 +US 15554 New Paris Pennsylvania PA Bedford 009 40.1254 -78.6184 +US 15559 Schellsburg Pennsylvania PA Bedford 009 40.0487 -78.6482 +US 16614 Bakers Summit Pennsylvania PA Bedford 009 40.2623 -78.4214 +US 16633 Defiance Pennsylvania PA Bedford 009 40.1601 -78.2346 +US 16650 Hopewell Pennsylvania PA Bedford 009 40.1192 -78.3129 +US 16655 Imler Pennsylvania PA Bedford 009 40.2504 -78.5378 +US 16659 Loysburg Pennsylvania PA Bedford 009 40.1703 -78.3853 +US 16664 New Enterprise Pennsylvania PA Bedford 009 40.2 -78.4259 +US 16667 Osterburg Pennsylvania PA Bedford 009 40.1818 -78.4934 +US 16670 Queen Pennsylvania PA Bedford 009 40.2549 -78.5125 +US 16672 Riddlesburg Pennsylvania PA Bedford 009 40.1753 -78.2493 +US 16678 Saxton Pennsylvania PA Bedford 009 40.2233 -78.2471 +US 16679 Six Mile Run Pennsylvania PA Bedford 009 40.1576 -78.2108 +US 16694 Wood Pennsylvania PA Bedford 009 40.166 -78.1381 +US 16695 Woodbury Pennsylvania PA Bedford 009 40.2185 -78.3666 +US 17211 Artemas Pennsylvania PA Bedford 009 39.7575 -78.4031 +US 18056 Hereford Pennsylvania PA Berks 011 40.4491 -75.5491 +US 19503 Bally Pennsylvania PA Berks 011 40.405 -75.5769 +US 19504 Barto Pennsylvania PA Berks 011 40.3815 -75.5749 +US 19505 Bechtelsville Pennsylvania PA Berks 011 40.3795 -75.6257 +US 19506 Bernville Pennsylvania PA Berks 011 40.4551 -76.1247 +US 19507 Bethel Pennsylvania PA Berks 011 40.4808 -76.2742 +US 19508 Birdsboro Pennsylvania PA Berks 011 40.2563 -75.8344 +US 19510 Blandon Pennsylvania PA Berks 011 40.4435 -75.8837 +US 19511 Bowers Pennsylvania PA Berks 011 40.4821 -75.7435 +US 19512 Boyertown Pennsylvania PA Berks 011 40.3339 -75.6604 +US 19516 Centerport Pennsylvania PA Berks 011 40.4858 -76.006 +US 19517 Dauberville Pennsylvania PA Berks 011 40.4072 -75.9849 +US 19518 Douglassville Pennsylvania PA Berks 011 40.2709 -75.7397 +US 19519 Earlville Pennsylvania PA Berks 011 40.319 -75.7334 +US 19522 Fleetwood Pennsylvania PA Berks 011 40.4473 -75.8185 +US 19523 Geigertown Pennsylvania PA Berks 011 40.1897 -75.8881 +US 19526 Hamburg Pennsylvania PA Berks 011 40.5488 -75.9874 +US 19529 Kempton Pennsylvania PA Berks 011 40.6328 -75.8513 +US 19530 Kutztown Pennsylvania PA Berks 011 40.5214 -75.7774 +US 19533 Leesport Pennsylvania PA Berks 011 40.4152 -75.9944 +US 19534 Lenhartsville Pennsylvania PA Berks 011 40.5736 -75.865 +US 19535 Limekiln Pennsylvania PA Berks 011 40.3356 -75.801 +US 19536 Lyon Station Pennsylvania PA Berks 011 40.5218 -75.7419 +US 19538 Maxatawny Pennsylvania PA Berks 011 40.5698 -75.7409 +US 19539 Mertztown Pennsylvania PA Berks 011 40.4992 -75.6872 +US 19540 Mohnton Pennsylvania PA Berks 011 40.2584 -75.9833 +US 19541 Mohrsville Pennsylvania PA Berks 011 40.4783 -76.0125 +US 19542 Monocacy Station Pennsylvania PA Berks 011 40.261 -75.7684 +US 19543 Morgantown Pennsylvania PA Berks 011 40.1552 -75.8998 +US 19544 Mount Aetna Pennsylvania PA Berks 011 40.4187 -76.2944 +US 19545 New Berlinville Pennsylvania PA Berks 011 40.3397 -75.6302 +US 19547 Oley Pennsylvania PA Berks 011 40.3833 -75.7706 +US 19548 Pine Forge Pennsylvania PA Berks 011 40.4072 -75.9849 +US 19550 Rehrersburg Pennsylvania PA Berks 011 40.4553 -76.2453 +US 19551 Robesonia Pennsylvania PA Berks 011 40.3553 -76.1366 +US 19554 Shartlesville Pennsylvania PA Berks 011 40.5052 -76.1413 +US 19555 Shoemakersville Pennsylvania PA Berks 011 40.4955 -75.9603 +US 19557 Stony Run Pennsylvania PA Berks 011 40.6139 -75.815 +US 19559 Strausstown Pennsylvania PA Berks 011 40.4945 -76.1825 +US 19560 Temple Pennsylvania PA Berks 011 40.4025 -75.9046 +US 19562 Topton Pennsylvania PA Berks 011 40.5029 -75.7015 +US 19564 Virginville Pennsylvania PA Berks 011 40.5268 -75.8697 +US 19565 Wernersville Pennsylvania PA Berks 011 40.3293 -76.0901 +US 19567 Womelsdorf Pennsylvania PA Berks 011 40.3743 -76.1985 +US 19601 Reading Pennsylvania PA Berks 011 40.3466 -75.9351 +US 19602 Reading Pennsylvania PA Berks 011 40.3306 -75.9192 +US 19603 Reading Pennsylvania PA Berks 011 40.3884 -75.9631 +US 19604 Reading Pennsylvania PA Berks 011 40.3507 -75.9143 +US 19605 Reading Pennsylvania PA Berks 011 40.3886 -75.9328 +US 19606 Reading Pennsylvania PA Berks 011 40.3351 -75.875 +US 19607 Reading Pennsylvania PA Berks 011 40.2995 -75.9876 +US 19608 Reading Pennsylvania PA Berks 011 40.3113 -76.0345 +US 19609 Reading Pennsylvania PA Berks 011 40.328 -75.9908 +US 19610 Reading Pennsylvania PA Berks 011 40.338 -75.978 +US 19611 Reading Pennsylvania PA Berks 011 40.325 -75.9442 +US 19612 Reading Pennsylvania PA Berks 011 40.4389 -75.8853 +US 19640 Reading Pennsylvania PA Berks 011 40.4072 -75.9849 +US 16601 Altoona Pennsylvania PA Blair 013 40.5209 -78.4089 +US 16602 Altoona Pennsylvania PA Blair 013 40.5052 -78.3905 +US 16603 Altoona Pennsylvania PA Blair 013 40.5018 -78.41 +US 16617 Bellwood Pennsylvania PA Blair 013 40.6039 -78.3372 +US 16625 Claysburg Pennsylvania PA Blair 013 40.2821 -78.5083 +US 16631 Curryville Pennsylvania PA Blair 013 40.4935 -78.3682 +US 16635 Duncansville Pennsylvania PA Blair 013 40.4262 -78.4383 +US 16637 East Freedom Pennsylvania PA Blair 013 40.3282 -78.4475 +US 16648 Hollidaysburg Pennsylvania PA Blair 013 40.4387 -78.3686 +US 16662 Martinsburg Pennsylvania PA Blair 013 40.2951 -78.3244 +US 16665 Newry Pennsylvania PA Blair 013 40.3855 -78.4472 +US 16673 Roaring Spring Pennsylvania PA Blair 013 40.3277 -78.3928 +US 16682 Sproul Pennsylvania PA Blair 013 40.2711 -78.4588 +US 16684 Tipton Pennsylvania PA Blair 013 40.6367 -78.3036 +US 16686 Tyrone Pennsylvania PA Blair 013 40.6619 -78.2419 +US 16693 Williamsburg Pennsylvania PA Blair 013 40.4025 -78.2558 +US 16910 Alba Pennsylvania PA Bradford 015 41.772 -76.5213 +US 16914 Columbia Cross Roads Pennsylvania PA Bradford 015 41.8638 -76.7825 +US 16925 Gillett Pennsylvania PA Bradford 015 41.9568 -76.7713 +US 16926 Granville Summit Pennsylvania PA Bradford 015 41.6973 -76.7218 +US 16945 Sylvania Pennsylvania PA Bradford 015 41.772 -76.5213 +US 16947 Troy Pennsylvania PA Bradford 015 41.7781 -76.7711 +US 17724 Canton Pennsylvania PA Bradford 015 41.6538 -76.8582 +US 17735 Grover Pennsylvania PA Bradford 015 41.772 -76.5213 +US 17743 Leroy Pennsylvania PA Bradford 015 41.772 -76.5213 +US 18810 Athens Pennsylvania PA Bradford 015 41.949 -76.4889 +US 18814 Burlington Pennsylvania PA Bradford 015 41.7817 -76.6056 +US 18815 Camptown Pennsylvania PA Bradford 015 41.772 -76.5213 +US 18817 East Smithfield Pennsylvania PA Bradford 015 41.772 -76.5213 +US 18829 Le Raysville Pennsylvania PA Bradford 015 41.8434 -76.1796 +US 18831 Milan Pennsylvania PA Bradford 015 41.8966 -76.5328 +US 18832 Monroeton Pennsylvania PA Bradford 015 41.7135 -76.4872 +US 18833 New Albany Pennsylvania PA Bradford 015 41.5987 -76.4398 +US 18837 Rome Pennsylvania PA Bradford 015 41.8634 -76.3015 +US 18840 Sayre Pennsylvania PA Bradford 015 41.9842 -76.5218 +US 18845 Stevensville Pennsylvania PA Bradford 015 41.7718 -76.1717 +US 18846 Sugar Run Pennsylvania PA Bradford 015 41.6041 -76.2598 +US 18848 Towanda Pennsylvania PA Bradford 015 41.7638 -76.4645 +US 18850 Ulster Pennsylvania PA Bradford 015 41.8408 -76.4876 +US 18851 Warren Center Pennsylvania PA Bradford 015 41.9394 -76.1964 +US 18853 Wyalusing Pennsylvania PA Bradford 015 41.7015 -76.2754 +US 18854 Wysox Pennsylvania PA Bradford 015 41.7826 -76.3834 +US 18039 Durham Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18077 Riegelsville Pennsylvania PA Bucks 017 40.5782 -75.2191 +US 18081 Springtown Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18901 Doylestown Pennsylvania PA Bucks 017 40.3054 -75.1489 +US 18902 Doylestown Pennsylvania PA Bucks County 017 40.3477 -75.0968 +US 18910 Bedminster Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18911 Blooming Glen Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18912 Buckingham Pennsylvania PA Bucks 017 40.3099 -75.0743 +US 18913 Carversville Pennsylvania PA Bucks 017 40.3765 -75.0413 +US 18914 Chalfont Pennsylvania PA Bucks 017 40.2892 -75.2149 +US 18916 Danboro Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18917 Dublin Pennsylvania PA Bucks 017 40.375 -75.2045 +US 18920 Erwinna Pennsylvania PA Bucks 017 40.5087 -75.0804 +US 18921 Ferndale Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18922 Forest Grove Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18923 Fountainville Pennsylvania PA Bucks 017 40.3578 -75.1711 +US 18925 Furlong Pennsylvania PA Bucks 017 40.2945 -75.0649 +US 18926 Gardenville Pennsylvania PA Bucks 017 40.3947 -75.0985 +US 18927 Hilltown Pennsylvania PA Bucks 017 40.3235 -75.2548 +US 18928 Holicong Pennsylvania PA Bucks 017 40.336 -75.0429 +US 18929 Jamison Pennsylvania PA Bucks 017 40.2566 -75.0961 +US 18930 Kintnersville Pennsylvania PA Bucks 017 40.531 -75.2117 +US 18931 Lahaska Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18932 Line Lexington Pennsylvania PA Bucks 017 40.2888 -75.2555 +US 18933 Lumberville Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18934 Mechanicsville Pennsylvania PA Bucks 017 40.3494 -75.0676 +US 18935 Milford Square Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18938 New Hope Pennsylvania PA Bucks 017 40.3556 -74.9839 +US 18940 Newtown Pennsylvania PA Bucks 017 40.263 -74.9555 +US 18942 Ottsville Pennsylvania PA Bucks 017 40.4592 -75.157 +US 18943 Penns Park Pennsylvania PA Bucks 017 40.269 -75.0094 +US 18944 Perkasie Pennsylvania PA Bucks 017 40.3765 -75.2648 +US 18946 Pineville Pennsylvania PA Bucks 017 40.2711 -75.0622 +US 18947 Pipersville Pennsylvania PA Bucks 017 40.4262 -75.1074 +US 18949 Plumsteadville Pennsylvania PA Bucks 017 40.388 -75.1425 +US 18950 Point Pleasant Pennsylvania PA Bucks 017 40.4165 -75.0748 +US 18951 Quakertown Pennsylvania PA Bucks 017 40.4411 -75.3507 +US 18953 Revere Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18954 Richboro Pennsylvania PA Bucks 017 40.2167 -75.0029 +US 18955 Richlandtown Pennsylvania PA Bucks 017 40.4796 -75.3146 +US 18956 Rushland Pennsylvania PA Bucks 017 40.2628 -75.0157 +US 18960 Sellersville Pennsylvania PA Bucks 017 40.362 -75.319 +US 18962 Silverdale Pennsylvania PA Bucks 017 40.3445 -75.2687 +US 18963 Solebury Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18966 Southampton Pennsylvania PA Bucks 017 40.1868 -75.0071 +US 18968 Spinnerstown Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18970 Trumbauersville Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18972 Upper Black Eddy Pennsylvania PA Bucks 017 40.5411 -75.1259 +US 18974 Warminster Pennsylvania PA Bucks 017 40.2067 -75.0905 +US 18976 Warrington Pennsylvania PA Bucks 017 40.2464 -75.1354 +US 18977 Washington Crossing Pennsylvania PA Bucks 017 40.2849 -74.8778 +US 18980 Wycombe Pennsylvania PA Bucks 017 40.2742 -75.0205 +US 18981 Zionhill Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 18991 Warminster Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 19007 Bristol Pennsylvania PA Bucks 017 40.1159 -74.8536 +US 19020 Bensalem Pennsylvania PA Bucks 017 40.1109 -74.9378 +US 19021 Croydon Pennsylvania PA Bucks 017 40.0933 -74.8991 +US 19030 Fairless Hills Pennsylvania PA Bucks 017 40.1748 -74.8519 +US 19047 Langhorne Pennsylvania PA Bucks 017 40.1813 -74.9104 +US 19048 Langhorne Pennsylvania PA Bucks 017 40.1735 -74.9246 +US 19049 Langhorne Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 19053 Feasterville Trevose Pennsylvania PA Bucks 017 40.1547 -74.9904 +US 19054 Levittown Pennsylvania PA Bucks 017 40.1681 -74.8231 +US 19055 Levittown Pennsylvania PA Bucks 017 40.1483 -74.8371 +US 19056 Levittown Pennsylvania PA Bucks 017 40.1519 -74.8826 +US 19057 Levittown Pennsylvania PA Bucks 017 40.1434 -74.8614 +US 19058 Levittown Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 19059 Levittown Pennsylvania PA Bucks 017 40.3286 -75.1028 +US 19067 Morrisville Pennsylvania PA Bucks 017 40.2084 -74.8291 +US 16001 Butler Pennsylvania PA Butler 019 40.8859 -79.934 +US 16002 Butler Pennsylvania PA Butler 019 40.8409 -79.8592 +US 16003 Butler Pennsylvania PA Butler 019 40.9211 -79.9276 +US 16016 Boyers Pennsylvania PA Butler 019 40.9211 -79.9276 +US 16017 Boyers Pennsylvania PA Butler 019 40.9211 -79.9276 +US 16018 Boyers Pennsylvania PA Butler 019 40.9211 -79.9276 +US 16020 Boyers Pennsylvania PA Butler 019 41.1092 -79.9047 +US 16021 Branchton Pennsylvania PA Butler 019 40.9211 -79.9276 +US 16022 Bruin Pennsylvania PA Butler 019 41.0571 -79.7291 +US 16023 Cabot Pennsylvania PA Butler 019 40.7924 -79.76 +US 16024 Callery Pennsylvania PA Butler 019 40.9219 -79.9947 +US 16025 Chicora Pennsylvania PA Butler 019 40.9458 -79.7462 +US 16027 Connoquenessing Pennsylvania PA Butler 019 40.8264 -80.0138 +US 16029 East Butler Pennsylvania PA Butler 019 40.7802 -79.7808 +US 16030 Eau Claire Pennsylvania PA Butler 019 41.1348 -79.7981 +US 16033 Evans City Pennsylvania PA Butler 019 40.7808 -80.0592 +US 16034 Fenelton Pennsylvania PA Butler 019 40.8555 -79.7372 +US 16035 Forestville Pennsylvania PA Butler 019 41.1068 -80.007 +US 16037 Harmony Pennsylvania PA Butler 019 40.8496 -80.1381 +US 16038 Harrisville Pennsylvania PA Butler 019 41.1631 -79.9796 +US 16039 Herman Pennsylvania PA Butler 019 40.9211 -79.9276 +US 16040 Hilliards Pennsylvania PA Butler 019 41.1009 -79.8215 +US 16041 Karns City Pennsylvania PA Butler 019 41.0022 -79.716 +US 16045 Lyndora Pennsylvania PA Butler 019 40.8528 -79.9167 +US 16046 Mars Pennsylvania PA Butler 019 40.7005 -80.0358 +US 16048 North Washington Pennsylvania PA Butler 019 41.0472 -79.8089 +US 16050 Petrolia Pennsylvania PA Butler 019 41.0442 -79.7711 +US 16051 Portersville Pennsylvania PA Butler 019 40.9468 -80.139 +US 16052 Prospect Pennsylvania PA Butler 019 40.9049 -80.0679 +US 16053 Renfrew Pennsylvania PA Butler 019 40.81 -79.977 +US 16055 Sarver Pennsylvania PA Butler 019 40.7143 -79.7424 +US 16056 Saxonburg Pennsylvania PA Butler 019 40.7361 -79.8352 +US 16057 Slippery Rock Pennsylvania PA Butler 019 41.0454 -80.0468 +US 16059 Valencia Pennsylvania PA Butler 019 40.7018 -79.9235 +US 16061 West Sunbury Pennsylvania PA Butler 019 41.0026 -79.8751 +US 16063 Zelienople Pennsylvania PA Butler 019 40.7609 -80.1094 +US 16066 Cranberry Twp Pennsylvania PA Butler 019 40.7097 -80.1046 +US 15714 Northern Cambria Pennsylvania PA Cambria 021 40.6661 -78.792 +US 15714 Barnesboro Pennsylvania PA Cambria 021 40.6733 -78.7771 +US 15722 Carrolltown Pennsylvania PA Cambria 021 40.5891 -78.7037 +US 15737 Elmora Pennsylvania PA Cambria 021 40.6076 -78.7524 +US 15738 Emeigh Pennsylvania PA Cambria 021 40.6936 -78.7751 +US 15760 Marsteller Pennsylvania PA Cambria 021 40.6522 -78.8054 +US 15762 Nicktown Pennsylvania PA Cambria 021 40.6016 -78.8114 +US 15773 Saint Benedict Pennsylvania PA Cambria 021 40.6298 -78.7329 +US 15775 Spangler Pennsylvania PA Cambria 021 40.6351 -78.7692 +US 15901 Johnstown Pennsylvania PA Cambria 021 40.326 -78.9141 +US 15902 Johnstown Pennsylvania PA Cambria 021 40.3078 -78.8969 +US 15904 Johnstown Pennsylvania PA Cambria 021 40.285 -78.8654 +US 15905 Johnstown Pennsylvania PA Cambria 021 40.3072 -78.943 +US 15906 Johnstown Pennsylvania PA Cambria 021 40.3522 -78.9383 +US 15907 Johnstown Pennsylvania PA Cambria 021 40.3254 -78.9151 +US 15909 Johnstown Pennsylvania PA Cambria 021 40.4096 -78.8712 +US 15915 Johnstown Pennsylvania PA Cambria 021 40.4845 -78.7022 +US 15921 Beaverdale Pennsylvania PA Cambria 021 40.3173 -78.7009 +US 15922 Belsano Pennsylvania PA Cambria 021 40.5176 -78.8767 +US 15925 Cassandra Pennsylvania PA Cambria 021 40.4085 -78.6407 +US 15927 Colver Pennsylvania PA Cambria 021 40.5383 -78.7865 +US 15930 Dunlo Pennsylvania PA Cambria 021 40.2939 -78.7192 +US 15931 Ebensburg Pennsylvania PA Cambria 021 40.4801 -78.7263 +US 15934 Elton Pennsylvania PA Cambria 021 40.2799 -78.8032 +US 15938 Lilly Pennsylvania PA Cambria 021 40.4238 -78.6231 +US 15940 Loretto Pennsylvania PA Cambria 021 40.5105 -78.6294 +US 15942 Mineral Point Pennsylvania PA Cambria 021 40.3793 -78.8352 +US 15943 Nanty Glo Pennsylvania PA Cambria 021 40.4704 -78.8375 +US 15945 Parkhill Pennsylvania PA Cambria 021 40.3567 -78.8733 +US 15946 Portage Pennsylvania PA Cambria 021 40.3724 -78.6328 +US 15948 Revloc Pennsylvania PA Cambria 021 40.49 -78.7646 +US 15951 Saint Michael Pennsylvania PA Cambria 021 40.3386 -78.7761 +US 15952 Salix Pennsylvania PA Cambria 021 40.2986 -78.7816 +US 15955 Sidman Pennsylvania PA Cambria 021 40.3299 -78.746 +US 15956 South Fork Pennsylvania PA Cambria 021 40.3629 -78.7887 +US 15958 Summerhill Pennsylvania PA Cambria 021 40.389 -78.756 +US 15960 Twin Rocks Pennsylvania PA Cambria 021 40.4996 -78.8613 +US 15961 Vintondale Pennsylvania PA Cambria 021 40.4939 -78.9427 +US 15962 Wilmore Pennsylvania PA Cambria 021 40.3802 -78.719 +US 16613 Ashville Pennsylvania PA Cambria 021 40.5513 -78.5346 +US 16619 Blandburg Pennsylvania PA Cambria 021 40.6847 -78.4137 +US 16624 Chest Springs Pennsylvania PA Cambria 021 40.5702 -78.5991 +US 16629 Coupon Pennsylvania PA Cambria 021 40.5218 -78.5263 +US 16630 Cresson Pennsylvania PA Cambria 021 40.4608 -78.5861 +US 16636 Dysart Pennsylvania PA Cambria 021 40.6088 -78.5271 +US 16639 Fallentimber Pennsylvania PA Cambria 021 40.6719 -78.4659 +US 16640 Flinton Pennsylvania PA Cambria 021 40.6876 -78.5523 +US 16641 Gallitzin Pennsylvania PA Cambria 021 40.5076 -78.5762 +US 16644 Glasgow Pennsylvania PA Cambria 021 40.7178 -78.4637 +US 16646 Hastings Pennsylvania PA Cambria 021 40.6659 -78.7029 +US 16668 Patton Pennsylvania PA Cambria 021 40.623 -78.635 +US 16675 Saint Boniface Pennsylvania PA Cambria 021 40.6712 -78.6755 +US 16699 Cresson Pennsylvania PA Cambria 021 40.4845 -78.7022 +US 15832 Driftwood Pennsylvania PA Cameron 023 41.3764 -78.1632 +US 15834 Emporium Pennsylvania PA Cameron 023 41.5177 -78.2536 +US 15861 Sinnamahoning Pennsylvania PA Cameron 023 41.3762 -78.0661 +US 18012 Aquashicola Pennsylvania PA Carbon 025 40.8133 -75.592 +US 18030 Bowmanstown Pennsylvania PA Carbon 025 40.8011 -75.6614 +US 18071 Palmerton Pennsylvania PA Carbon 025 40.817 -75.6011 +US 18210 Albrightsville Pennsylvania PA Carbon 025 40.9748 -75.5842 +US 18212 Ashfield Pennsylvania PA Carbon 025 40.7841 -75.7083 +US 18216 Beaver Meadows Pennsylvania PA Carbon 025 40.9227 -75.9406 +US 18229 Jim Thorpe Pennsylvania PA Carbon 025 40.87 -75.7397 +US 18230 Junedale Pennsylvania PA Carbon 025 40.9348 -75.7358 +US 18232 Lansford Pennsylvania PA Carbon 025 40.8314 -75.8828 +US 18235 Lehighton Pennsylvania PA Carbon 025 40.8299 -75.6974 +US 18240 Nesquehoning Pennsylvania PA Carbon 025 40.8626 -75.8239 +US 18244 Parryville Pennsylvania PA Carbon 025 40.8245 -75.6651 +US 18250 Summit Hill Pennsylvania PA Carbon 025 40.8255 -75.8693 +US 18254 Tresckow Pennsylvania PA Carbon 025 40.9159 -75.9657 +US 18255 Weatherly Pennsylvania PA Carbon 025 40.9411 -75.8306 +US 18624 Lake Harmony Pennsylvania PA Carbon 025 41.0542 -75.6331 +US 16677 Sandy Ridge Pennsylvania PA Centre 027 40.8136 -78.239 +US 16801 State College Pennsylvania PA Centre 027 40.7925 -77.8523 +US 16802 University Park Pennsylvania PA Centre 027 40.7997 -77.8623 +US 16803 State College Pennsylvania PA Centre 027 40.8082 -77.8926 +US 16804 State College Pennsylvania PA Centre 027 40.9722 -77.7602 +US 16805 State College Pennsylvania PA Centre 027 40.9722 -77.7602 +US 16820 Aaronsburg Pennsylvania PA Centre 027 40.8987 -77.4562 +US 16823 Bellefonte Pennsylvania PA Centre 027 40.8978 -77.7732 +US 16826 Blanchard Pennsylvania PA Centre 027 41.0642 -77.595 +US 16827 Boalsburg Pennsylvania PA Centre 027 40.7793 -77.7822 +US 16828 Centre Hall Pennsylvania PA Centre 027 40.8254 -77.6742 +US 16829 Clarence Pennsylvania PA Centre 027 41.0585 -77.9312 +US 16832 Coburn Pennsylvania PA Centre 027 40.8383 -77.4509 +US 16835 Fleming Pennsylvania PA Centre 027 40.9046 -77.8752 +US 16841 Howard Pennsylvania PA Centre 027 41.0203 -77.6702 +US 16844 Julian Pennsylvania PA Centre 027 40.8917 -77.9332 +US 16851 Lemont Pennsylvania PA Centre 027 40.8082 -77.8125 +US 16852 Madisonburg Pennsylvania PA Centre 027 40.9334 -77.495 +US 16853 Milesburg Pennsylvania PA Centre 027 40.9541 -77.7815 +US 16854 Millheim Pennsylvania PA Centre 027 40.8935 -77.4733 +US 16856 Mingoville Pennsylvania PA Centre 027 40.9299 -77.6389 +US 16859 Moshannon Pennsylvania PA Centre 027 41.0342 -78.0095 +US 16864 Orviston Pennsylvania PA Centre 027 40.9722 -77.7602 +US 16865 Pennsylvania Furnace Pennsylvania PA Centre 027 40.71 -77.996 +US 16866 Philipsburg Pennsylvania PA Centre 027 40.8863 -78.219 +US 16868 Pine Grove Mills Pennsylvania PA Centre 027 40.7264 -77.9118 +US 16870 Port Matilda Pennsylvania PA Centre 027 40.8018 -78.0788 +US 16872 Rebersburg Pennsylvania PA Centre 027 40.9549 -77.4053 +US 16874 Snow Shoe Pennsylvania PA Centre 027 41.0376 -77.9523 +US 16875 Spring Mills Pennsylvania PA Centre 027 40.8578 -77.574 +US 16882 Woodward Pennsylvania PA Centre 027 40.9116 -77.3483 +US 19301 Paoli Pennsylvania PA Chester 029 40.0426 -75.4827 +US 19310 Atglen Pennsylvania PA Chester 029 39.9458 -75.9703 +US 19311 Avondale Pennsylvania PA Chester 029 39.8219 -75.7687 +US 19312 Berwyn Pennsylvania PA Chester 029 40.0412 -75.4475 +US 19316 Brandamore Pennsylvania PA Chester 029 40.055 -75.8378 +US 19318 Chatham Pennsylvania PA Chester 029 39.8524 -75.8118 +US 19320 Coatesville Pennsylvania PA Chester 029 39.9843 -75.8253 +US 19330 Cochranville Pennsylvania PA Chester 029 39.8757 -75.9214 +US 19333 Devon Pennsylvania PA Chester 029 40.0452 -75.4227 +US 19335 Downingtown Pennsylvania PA Chester 029 40.0161 -75.7183 +US 19341 Exton Pennsylvania PA Chester 029 40.0468 -75.6432 +US 19343 Glenmoore Pennsylvania PA Chester 029 40.0846 -75.7711 +US 19344 Honey Brook Pennsylvania PA Chester 029 40.0832 -75.8843 +US 19345 Immaculata Pennsylvania PA Chester 029 39.8478 -75.7193 +US 19346 Kelton Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19347 Kemblesville Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19348 Kennett Square Pennsylvania PA Chester 029 39.855 -75.7 +US 19350 Landenberg Pennsylvania PA Chester 029 39.7696 -75.7807 +US 19351 Lewisville Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19352 Lincoln University Pennsylvania PA Chester 029 39.7787 -75.8876 +US 19353 Lionville Pennsylvania PA Chester 029 40.0132 -75.499 +US 19354 Lyndell Pennsylvania PA Chester 029 40.0582 -75.7433 +US 19355 Malvern Pennsylvania PA Chester 029 40.0468 -75.531 +US 19357 Mendenhall Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19358 Modena Pennsylvania PA Chester 029 39.9621 -75.8025 +US 19360 New London Pennsylvania PA Chester 029 39.7261 -75.7857 +US 19362 Nottingham Pennsylvania PA Chester 029 39.7441 -76.0356 +US 19363 Oxford Pennsylvania PA Chester 029 39.7827 -75.9815 +US 19365 Parkesburg Pennsylvania PA Chester 029 39.9654 -75.926 +US 19366 Pocopson Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19367 Pomeroy Pennsylvania PA Chester 029 39.9706 -75.8958 +US 19369 Sadsburyville Pennsylvania PA Chester 029 39.9903 -75.8936 +US 19370 Steelville Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19371 Suplee Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19372 Thorndale Pennsylvania PA Chester 029 39.9984 -75.759 +US 19374 Toughkenamon Pennsylvania PA Chester 029 39.8728 -75.8481 +US 19375 Unionville Pennsylvania PA Chester 029 39.9012 -75.7502 +US 19376 Wagontown Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19380 West Chester Pennsylvania PA Chester 029 39.9845 -75.5962 +US 19381 West Chester Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19382 West Chester Pennsylvania PA Chester 029 39.9441 -75.5882 +US 19383 West Chester Pennsylvania PA Chester 029 39.9455 -75.6024 +US 19388 West Chester Pennsylvania PA Chester County 029 39.9598 -75.6061 +US 19390 West Grove Pennsylvania PA Chester 029 39.8253 -75.8374 +US 19395 Westtown Pennsylvania PA Chester 029 39.9328 -75.5448 +US 19397 Southeastern Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19398 Southeastern Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19399 Southeastern Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19421 Birchrunville Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19425 Chester Springs Pennsylvania PA Chester 029 40.0978 -75.6398 +US 19432 Devault Pennsylvania PA Chester 029 40.0796 -75.56 +US 19442 Kimberton Pennsylvania PA Chester 029 40.1465 -75.6177 +US 19457 Parker Ford Pennsylvania PA Chester 029 40.209 -75.5984 +US 19460 Phoenixville Pennsylvania PA Chester 029 40.1267 -75.5272 +US 19465 Pottstown Pennsylvania PA Chester 029 40.1919 -75.6653 +US 19470 Saint Peters Pennsylvania PA Chester 029 40.1867 -75.7288 +US 19475 Spring City Pennsylvania PA Chester 029 40.1765 -75.5697 +US 19480 Uwchland Pennsylvania PA Chester 029 40.098 -75.688 +US 19481 Valley Forge Pennsylvania PA Chester 029 40.0923 -75.4537 +US 19482 Valley Forge Pennsylvania PA Chester 029 40.0803 -75.4554 +US 19487 King Of Prussia Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19488 Norristown Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19489 Norristown Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19493 Valley Forge Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19494 Valley Forge Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19495 Valley Forge Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19496 Valley Forge Pennsylvania PA Chester 029 39.9832 -75.7481 +US 19520 Elverson Pennsylvania PA Chester 029 40.1568 -75.7866 +US 16028 East Brady Pennsylvania PA Clarion 031 40.9744 -79.6302 +US 16036 Foxburg Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16054 Saint Petersburg Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16058 Turkey City Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16213 Callensburg Pennsylvania PA Clarion 031 41.1236 -79.5685 +US 16214 Clarion Pennsylvania PA Clarion 031 41.2123 -79.3773 +US 16220 Crown Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16221 Curllsville Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16224 Fairmount City Pennsylvania PA Clarion 031 41.0429 -79.2784 +US 16225 Fisher Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16230 Hawthorn Pennsylvania PA Clarion 031 41.0178 -79.2799 +US 16232 Knox Pennsylvania PA Clarion 031 41.2245 -79.5194 +US 16233 Leeper Pennsylvania PA Clarion 031 41.3671 -79.3022 +US 16234 Limestone Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16235 Lucinda Pennsylvania PA Clarion 031 41.3124 -79.3754 +US 16240 Mayport Pennsylvania PA Clarion 031 40.9906 -79.2617 +US 16242 New Bethlehem Pennsylvania PA Clarion 031 40.9999 -79.3527 +US 16248 Rimersburg Pennsylvania PA Clarion 031 41.0411 -79.5017 +US 16254 Shippenville Pennsylvania PA Clarion 031 41.2475 -79.4332 +US 16255 Sligo Pennsylvania PA Clarion 031 41.1139 -79.4805 +US 16257 Snydersburg Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16258 Strattanville Pennsylvania PA Clarion 031 41.1955 -79.3082 +US 16260 Vowinckel Pennsylvania PA Clarion 031 41.3957 -79.2266 +US 16326 Fryburg Pennsylvania PA Clarion 031 41.3717 -79.4134 +US 16331 Kossuth Pennsylvania PA Clarion 031 41.2926 -79.5655 +US 16332 Lickingville Pennsylvania PA Clarion 031 41.3789 -79.3715 +US 16334 Marble Pennsylvania PA Clarion 031 41.3261 -79.4459 +US 16361 Tylersburg Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 16375 Lamartine Pennsylvania PA Clarion 031 41.2023 -79.4538 +US 15721 Burnside Pennsylvania PA Clearfield 033 40.8134 -78.7865 +US 15753 La Jose Pennsylvania PA Clearfield 033 40.7876 -78.6514 +US 15757 Mahaffey Pennsylvania PA Clearfield 033 40.8875 -78.7353 +US 15801 Du Bois Pennsylvania PA Clearfield 033 41.126 -78.7527 +US 15848 Luthersburg Pennsylvania PA Clearfield 033 41.0532 -78.7428 +US 15849 Penfield Pennsylvania PA Clearfield 033 41.2085 -78.5791 +US 15856 Rockton Pennsylvania PA Clearfield 033 41.0806 -78.6577 +US 15866 Troutville Pennsylvania PA Clearfield 033 41.0117 -78.7857 +US 16616 Beccaria Pennsylvania PA Clearfield 033 40.7683 -78.4455 +US 16620 Brisbin Pennsylvania PA Clearfield 033 40.8387 -78.3526 +US 16627 Coalport Pennsylvania PA Clearfield 033 40.7503 -78.5352 +US 16645 Glen Hope Pennsylvania PA Clearfield 033 40.7984 -78.4999 +US 16651 Houtzdale Pennsylvania PA Clearfield 033 40.8305 -78.3618 +US 16656 Irvona Pennsylvania PA Clearfield 033 40.8017 -78.5602 +US 16661 Madera Pennsylvania PA Clearfield 033 40.8271 -78.4275 +US 16663 Morann Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16666 Osceola Mills Pennsylvania PA Clearfield 033 40.8722 -78.2757 +US 16671 Ramey Pennsylvania PA Clearfield 033 40.8015 -78.3998 +US 16680 Smithmill Pennsylvania PA Clearfield 033 40.7507 -78.4012 +US 16681 Smokerun Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16692 Westover Pennsylvania PA Clearfield 033 40.7615 -78.7355 +US 16698 Houtzdale Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16821 Allport Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16825 Bigler Pennsylvania PA Clearfield 033 40.99 -78.3606 +US 16830 Clearfield Pennsylvania PA Clearfield 033 41.021 -78.4435 +US 16833 Curwensville Pennsylvania PA Clearfield 033 40.966 -78.5272 +US 16834 Drifting Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16836 Frenchville Pennsylvania PA Clearfield 033 41.1038 -78.2345 +US 16837 Glen Richey Pennsylvania PA Clearfield 033 40.9458 -78.475 +US 16838 Grampian Pennsylvania PA Clearfield 033 40.9818 -78.5949 +US 16839 Grassflat Pennsylvania PA Clearfield 033 41.0036 -78.1104 +US 16840 Hawk Run Pennsylvania PA Clearfield 033 40.923 -78.2037 +US 16843 Hyde Pennsylvania PA Clearfield 033 41.003 -78.4642 +US 16845 Karthaus Pennsylvania PA Clearfield 033 41.1136 -78.0875 +US 16847 Kylertown Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16849 Lanse Pennsylvania PA Clearfield 033 40.9605 -78.1144 +US 16850 Lecontes Mills Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16855 Mineral Springs Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16858 Morrisdale Pennsylvania PA Clearfield 033 41.0001 -78.2357 +US 16860 Munson Pennsylvania PA Clearfield 033 40.9468 -78.1718 +US 16861 New Millport Pennsylvania PA Clearfield 033 40.8652 -78.5237 +US 16863 Olanta Pennsylvania PA Clearfield 033 40.9056 -78.5001 +US 16871 Pottersdale Pennsylvania PA Clearfield 033 41.1868 -78.0341 +US 16873 Shawville Pennsylvania PA Clearfield 033 40.9891 -78.4224 +US 16876 Wallaceton Pennsylvania PA Clearfield 033 40.9616 -78.2926 +US 16878 West Decatur Pennsylvania PA Clearfield 033 40.9493 -78.3129 +US 16879 Winburne Pennsylvania PA Clearfield 033 40.9696 -78.1508 +US 16881 Woodland Pennsylvania PA Clearfield 033 41.0098 -78.3214 +US 16822 Beech Creek Pennsylvania PA Clinton 035 41.0845 -77.5851 +US 16848 Lamar Pennsylvania PA Clinton 035 41.2206 -77.6185 +US 17721 Avis Pennsylvania PA Clinton 035 41.186 -77.3162 +US 17726 Castanea Pennsylvania PA Clinton 035 41.1227 -77.4317 +US 17734 Farrandsville Pennsylvania PA Clinton County 035 41.175 -77.5126 +US 17738 Hyner Pennsylvania PA Clinton 035 41.2206 -77.6185 +US 17745 Lock Haven Pennsylvania PA Clinton 035 41.1425 -77.4436 +US 17747 Loganton Pennsylvania PA Clinton 035 41.0283 -77.3204 +US 17748 Mc Elhattan Pennsylvania PA Clinton 035 41.1355 -77.37 +US 17750 Mackeyville Pennsylvania PA Clinton 035 41.0325 -77.4951 +US 17751 Mill Hall Pennsylvania PA Clinton 035 41.0867 -77.4836 +US 17760 North Bend Pennsylvania PA Clinton 035 41.4083 -77.6641 +US 17764 Renovo Pennsylvania PA Clinton 035 41.3334 -77.7448 +US 17767 Salona Pennsylvania PA Clinton 035 41.2206 -77.6185 +US 17773 Tylersville Pennsylvania PA Clinton 035 41.2206 -77.6185 +US 17778 Westport Pennsylvania PA Clinton 035 41.2745 -77.9315 +US 17779 Woolrich Pennsylvania PA Clinton 035 41.1874 -77.3728 +US 17814 Benton Pennsylvania PA Columbia 037 41.2231 -76.3406 +US 17815 Bloomsburg Pennsylvania PA Columbia 037 41.0115 -76.4384 +US 17820 Catawissa Pennsylvania PA Columbia 037 40.918 -76.4416 +US 17839 Light Street Pennsylvania PA Columbia 037 41.0201 -76.4384 +US 17846 Millville Pennsylvania PA Columbia 037 41.1261 -76.5208 +US 17858 Numidia Pennsylvania PA Columbia 037 41.0421 -76.4243 +US 17859 Orangeville Pennsylvania PA Columbia 037 41.1016 -76.381 +US 17878 Stillwater Pennsylvania PA Columbia 037 41.1515 -76.3696 +US 17888 Wilburton Pennsylvania PA Columbia 037 40.8121 -76.3929 +US 17920 Aristes Pennsylvania PA Columbia 037 40.8167 -76.3503 +US 17927 Centralia Pennsylvania PA Columbia 037 40.8049 -76.3412 +US 18603 Berwick Pennsylvania PA Columbia 037 41.0665 -76.2443 +US 18631 Mifflinville Pennsylvania PA Columbia 037 40.9871 -76.2877 +US 16110 Adamsville Pennsylvania PA Crawford 039 41.5067 -80.3765 +US 16111 Atlantic Pennsylvania PA Crawford 039 41.5333 -80.2863 +US 16131 Hartstown Pennsylvania PA Crawford 039 41.5509 -80.3813 +US 16314 Cochranton Pennsylvania PA Crawford 039 41.5205 -80.0573 +US 16316 Conneaut Lake Pennsylvania PA Crawford 039 41.6189 -80.3086 +US 16327 Guys Mills Pennsylvania PA Crawford 039 41.6333 -79.9714 +US 16328 Hydetown Pennsylvania PA Crawford 039 41.6661 -80.0658 +US 16335 Meadville Pennsylvania PA Crawford 039 41.6338 -80.1488 +US 16354 Titusville Pennsylvania PA Crawford 039 41.6382 -79.6855 +US 16360 Townville Pennsylvania PA Crawford 039 41.6856 -79.8767 +US 16388 Meadville Pennsylvania PA Crawford 039 41.6596 -80.1576 +US 16403 Cambridge Springs Pennsylvania PA Crawford 039 41.8034 -80.0594 +US 16404 Centerville Pennsylvania PA Crawford 039 41.7243 -79.79 +US 16406 Conneautville Pennsylvania PA Crawford 039 41.7455 -80.3445 +US 16422 Harmonsburg Pennsylvania PA Crawford 039 41.6431 -80.3943 +US 16424 Linesville Pennsylvania PA Crawford 039 41.6244 -80.4523 +US 16432 Riceville Pennsylvania PA Crawford 039 41.6661 -80.0658 +US 16433 Saegertown Pennsylvania PA Crawford 039 41.7268 -80.1479 +US 16434 Spartansburg Pennsylvania PA Crawford 039 41.7936 -79.6849 +US 16435 Springboro Pennsylvania PA Crawford 039 41.8113 -80.3753 +US 16440 Venango Pennsylvania PA Crawford 039 41.764 -80.0982 +US 17001 Camp Hill Pennsylvania PA Cumberland 041 40.216 -76.925 +US 17007 Boiling Springs Pennsylvania PA Cumberland 041 40.1449 -77.1195 +US 17008 Bowmansdale Pennsylvania PA Cumberland 041 40.1671 -76.9784 +US 17011 Camp Hill Pennsylvania PA Cumberland 041 40.2352 -76.9291 +US 17012 Camp Hill Pennsylvania PA Cumberland 041 40.1367 -77.2428 +US 17013 Carlisle Pennsylvania PA Cumberland 041 40.2417 -77.1983 +US 17025 Enola Pennsylvania PA Cumberland 041 40.2922 -76.9432 +US 17027 Grantham Pennsylvania PA Cumberland 041 40.158 -76.9964 +US 17043 Lemoyne Pennsylvania PA Cumberland 041 40.2469 -76.9001 +US 17050 Mechanicsburg Pennsylvania PA Cumberland 041 40.2122 -77.0265 +US 17055 Mechanicsburg Pennsylvania PA Cumberland 041 40.179 -77.0036 +US 17065 Mount Holly Springs Pennsylvania PA Cumberland 041 40.1115 -77.1902 +US 17070 New Cumberland Pennsylvania PA Cumberland 041 40.2151 -76.8689 +US 17072 New Kingstown Pennsylvania PA Cumberland 041 40.2306 -77.0794 +US 17081 Plainfield Pennsylvania PA Cumberland 041 40.203 -77.2848 +US 17089 Camp Hill Pennsylvania PA Cumberland 041 40.2697 -76.936 +US 17091 Camp Hill Pennsylvania PA Cumberland 041 40.1367 -77.2428 +US 17093 Summerdale Pennsylvania PA Cumberland 041 40.3078 -76.9312 +US 17218 Dickinson Pennsylvania PA Cumberland County 041 40.1133 -77.3353 +US 17240 Newburg Pennsylvania PA Cumberland 041 40.1333 -77.5669 +US 17241 Newville Pennsylvania PA Cumberland 041 40.1855 -77.4114 +US 17257 Shippensburg Pennsylvania PA Cumberland 041 40.0514 -77.5195 +US 17266 Walnut Bottom Pennsylvania PA Cumberland 041 40.086 -77.409 +US 17005 Berrysburg Pennsylvania PA Dauphin 043 40.601 -76.8117 +US 17018 Dauphin Pennsylvania PA Dauphin 043 40.3846 -76.9283 +US 17023 Elizabethville Pennsylvania PA Dauphin 043 40.555 -76.8355 +US 17028 Grantville Pennsylvania PA Dauphin 043 40.3606 -76.6713 +US 17030 Gratz Pennsylvania PA Dauphin 043 40.6082 -76.7375 +US 17032 Halifax Pennsylvania PA Dauphin 043 40.476 -76.894 +US 17033 Hershey Pennsylvania PA Dauphin 043 40.2638 -76.6545 +US 17034 Highspire Pennsylvania PA Dauphin 043 40.2083 -76.7853 +US 17036 Hummelstown Pennsylvania PA Dauphin 043 40.2782 -76.7094 +US 17048 Lykens Pennsylvania PA Dauphin 043 40.5909 -76.7074 +US 17057 Middletown Pennsylvania PA Dauphin 043 40.2041 -76.7331 +US 17061 Millersburg Pennsylvania PA Dauphin 043 40.5587 -76.9305 +US 17080 Pillow Pennsylvania PA Dauphin 043 40.6392 -76.8029 +US 17097 Wiconisco Pennsylvania PA Dauphin 043 40.5737 -76.6569 +US 17098 Williamstown Pennsylvania PA Dauphin 043 40.5808 -76.6223 +US 17101 Harrisburg Pennsylvania PA Dauphin 043 40.2618 -76.8831 +US 17102 Harrisburg Pennsylvania PA Dauphin 043 40.2728 -76.891 +US 17103 Harrisburg Pennsylvania PA Dauphin 043 40.2724 -76.861 +US 17104 Harrisburg Pennsylvania PA Dauphin 043 40.2597 -76.8594 +US 17105 Harrisburg Pennsylvania PA Dauphin 043 40.2785 -76.8752 +US 17106 Harrisburg Pennsylvania PA Dauphin 043 40.2927 -76.8501 +US 17107 Harrisburg Pennsylvania PA Dauphin 043 40.297 -76.8764 +US 17108 Harrisburg Pennsylvania PA Dauphin 043 40.3086 -76.8017 +US 17109 Harrisburg Pennsylvania PA Dauphin 043 40.291 -76.8203 +US 17110 Harrisburg Pennsylvania PA Dauphin 043 40.303 -76.8862 +US 17111 Harrisburg Pennsylvania PA Dauphin 043 40.2721 -76.8017 +US 17112 Harrisburg Pennsylvania PA Dauphin 043 40.3352 -76.7914 +US 17113 Harrisburg Pennsylvania PA Dauphin 043 40.239 -76.8416 +US 17120 Harrisburg Pennsylvania PA Dauphin 043 40.2657 -76.8827 +US 17121 Harrisburg Pennsylvania PA Dauphin 043 40.2944 -76.8938 +US 17122 Harrisburg Pennsylvania PA Dauphin 043 40.2498 -76.8712 +US 17123 Harrisburg Pennsylvania PA Dauphin 043 40.2675 -76.8837 +US 17124 Harrisburg Pennsylvania PA Dauphin 043 40.2675 -76.886 +US 17125 Harrisburg Pennsylvania PA Dauphin 043 40.2662 -76.8829 +US 17126 Harrisburg Pennsylvania PA Dauphin 043 40.2618 -76.88 +US 17127 Harrisburg Pennsylvania PA Dauphin 043 40.2615 -76.8809 +US 17128 Harrisburg Pennsylvania PA Dauphin 043 40.3899 -76.7823 +US 17129 Harrisburg Pennsylvania PA Dauphin 043 40.2615 -76.8809 +US 17130 Harrisburg Pennsylvania PA Dauphin 043 40.2702 -76.8829 +US 17140 Harrisburg Pennsylvania PA Dauphin 043 40.3086 -76.8464 +US 17177 Harrisburg Pennsylvania PA Dauphin 043 40.299 -76.8472 +US 19003 Ardmore Pennsylvania PA Delaware 045 40.002 -75.2966 +US 19008 Broomall Pennsylvania PA Delaware 045 39.9747 -75.3602 +US 19010 Bryn Mawr Pennsylvania PA Delaware 045 40.0236 -75.3295 +US 19013 Chester Pennsylvania PA Delaware 045 39.8498 -75.3747 +US 19014 Aston Pennsylvania PA Delaware 045 39.8643 -75.4332 +US 19015 Brookhaven Pennsylvania PA Delaware 045 39.8654 -75.3885 +US 19016 Chester Pennsylvania PA Delaware 045 39.934 -75.406 +US 19017 Chester Heights Pennsylvania PA Delaware 045 39.8839 -75.4669 +US 19018 Clifton Heights Pennsylvania PA Delaware 045 39.9218 -75.2876 +US 19018 Primos Pennsylvania PA Delaware 045 39.9216 -75.295 +US 19022 Crum Lynne Pennsylvania PA Delaware 045 39.8685 -75.3374 +US 19023 Darby Pennsylvania PA Delaware 045 39.9176 -75.2696 +US 19026 Drexel Hill Pennsylvania PA Delaware 045 39.9503 -75.304 +US 19028 Edgemont Pennsylvania PA Delaware 045 39.934 -75.406 +US 19029 Essington Pennsylvania PA Delaware 045 39.8676 -75.2859 +US 19032 Folcroft Pennsylvania PA Delaware 045 39.8905 -75.2821 +US 19033 Folsom Pennsylvania PA Delaware 045 39.8901 -75.3296 +US 19036 Glenolden Pennsylvania PA Delaware 045 39.9048 -75.2946 +US 19037 Glen Riddle Lima Pennsylvania PA Delaware 045 39.934 -75.406 +US 19039 Gradyville Pennsylvania PA Delaware 045 39.8821 -75.3372 +US 19041 Haverford Pennsylvania PA Delaware 045 40.0097 -75.3121 +US 19043 Holmes Pennsylvania PA Delaware 045 39.9003 -75.3087 +US 19050 Lansdowne Pennsylvania PA Delaware 045 39.9375 -75.2637 +US 19052 Lenni Pennsylvania PA Delaware 045 39.8942 -75.4456 +US 19060 Garnet Valley Pennsylvania PA Delaware 045 39.852 -75.5007 5 +US 19061 Marcus Hook Pennsylvania PA Delaware 045 39.8295 -75.4354 +US 19063 Media Pennsylvania PA Delaware 045 39.9188 -75.3991 +US 19064 Springfield Pennsylvania PA Delaware 045 39.9296 -75.3338 +US 19065 Media Pennsylvania PA Delaware 045 39.9211 -75.3861 +US 19070 Morton Pennsylvania PA Delaware 045 39.9063 -75.3238 +US 19073 Newtown Square Pennsylvania PA Delaware 045 39.9863 -75.407 +US 19074 Norwood Pennsylvania PA Delaware 045 39.887 -75.2972 +US 19076 Prospect Park Pennsylvania PA Delaware 045 39.8857 -75.3082 +US 19078 Ridley Park Pennsylvania PA Delaware 045 39.8784 -75.3215 +US 19079 Sharon Hill Pennsylvania PA Delaware 045 39.9035 -75.2695 +US 19080 Wayne Pennsylvania PA Delaware 045 40.0432 -75.3577 +US 19081 Swarthmore Pennsylvania PA Delaware 045 39.8967 -75.3474 +US 19082 Upper Darby Pennsylvania PA Delaware 045 39.9579 -75.2681 +US 19083 Havertown Pennsylvania PA Delaware 045 39.9774 -75.3106 +US 19085 Villanova Pennsylvania PA Delaware 045 40.0399 -75.3459 +US 19086 Wallingford Pennsylvania PA Delaware 045 39.8871 -75.3721 +US 19087 Wayne Pennsylvania PA Delaware 045 40.0612 -75.3999 +US 19088 Wayne Pennsylvania PA Delaware 045 39.934 -75.406 +US 19089 Wayne Pennsylvania PA Delaware 045 40.0434 -75.3573 +US 19091 Media Pennsylvania PA Delaware 045 39.934 -75.406 +US 19094 Woodlyn Pennsylvania PA Delaware 045 39.876 -75.3463 +US 19098 Holmes Pennsylvania PA Delaware 045 39.8954 -75.3107 +US 19113 Philadelphia Pennsylvania PA Delaware 045 39.865 -75.2752 +US 19317 Chadds Ford Pennsylvania PA Delaware 045 39.8648 -75.5885 +US 19319 Cheyney Pennsylvania PA Delaware 045 39.9209 -75.5222 +US 19331 Concordville Pennsylvania PA Delaware 045 39.8823 -75.5165 +US 19339 Concordville Pennsylvania PA Delaware 045 39.934 -75.406 +US 19340 Concordville Pennsylvania PA Delaware 045 39.934 -75.406 +US 19342 Glen Mills Pennsylvania PA Delaware 045 39.9015 -75.5049 +US 19373 Thornton Pennsylvania PA Delaware 045 39.9041 -75.5313 +US 15821 Benezett Pennsylvania PA Elk 047 41.3253 -78.3576 +US 15822 Brandy Camp Pennsylvania PA Elk 047 41.4159 -78.6651 +US 15823 Brockport Pennsylvania PA Elk 047 41.2822 -78.7128 +US 15827 Byrnedale Pennsylvania PA Elk 047 41.2865 -78.5051 +US 15831 Dagus Mines Pennsylvania PA Elk 047 41.3048 -78.6213 +US 15841 Force Pennsylvania PA Elk 047 41.2629 -78.5298 +US 15845 Johnsonburg Pennsylvania PA Elk 047 41.4928 -78.6783 +US 15846 Kersey Pennsylvania PA Elk 047 41.3563 -78.6015 +US 15853 Ridgway Pennsylvania PA Elk 047 41.3621 -78.7262 +US 15857 Saint Marys Pennsylvania PA Elk 047 41.4289 -78.5505 +US 15868 Weedville Pennsylvania PA Elk 047 41.2685 -78.4952 +US 15870 Wilcox Pennsylvania PA Elk 047 41.5735 -78.6823 +US 16728 De Young Pennsylvania PA Elk 047 41.4159 -78.6651 +US 16734 James City Pennsylvania PA Elk 047 41.6192 -78.8394 +US 16401 Albion Pennsylvania PA Erie 049 41.8947 -80.3111 +US 16407 Corry Pennsylvania PA Erie 049 41.9226 -79.6567 +US 16410 Cranesville Pennsylvania PA Erie 049 41.9162 -80.3085 +US 16411 East Springfield Pennsylvania PA Erie 049 41.9794 -80.4303 +US 16412 Edinboro Pennsylvania PA Erie 049 41.8756 -80.1356 +US 16413 Elgin Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16415 Fairview Pennsylvania PA Erie 049 42.0407 -80.2395 +US 16417 Girard Pennsylvania PA Erie 049 41.9896 -80.3178 +US 16421 Harborcreek Pennsylvania PA Erie 049 42.1767 -79.9416 +US 16423 Lake City Pennsylvania PA Erie 049 42.0204 -80.3388 +US 16426 Mc Kean Pennsylvania PA Erie 049 41.999 -80.1473 +US 16427 Mill Village Pennsylvania PA Erie 049 41.8773 -79.9692 +US 16428 North East Pennsylvania PA Erie 049 42.2008 -79.8332 +US 16430 North Springfield Pennsylvania PA Erie 049 41.9999 -80.4258 +US 16438 Union City Pennsylvania PA Erie 049 41.8939 -79.8455 +US 16441 Waterford Pennsylvania PA Erie 049 41.9603 -79.9996 +US 16442 Wattsburg Pennsylvania PA Erie 049 42.0391 -79.8363 +US 16443 West Springfield Pennsylvania PA Erie 049 41.9465 -80.465 +US 16444 Edinboro Pennsylvania PA Erie 049 41.8707 -80.1218 +US 16475 Albion Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16501 Erie Pennsylvania PA Erie 049 42.126 -80.086 +US 16502 Erie Pennsylvania PA Erie 049 42.1133 -80.0976 +US 16503 Erie Pennsylvania PA Erie 049 42.1265 -80.064 +US 16504 Erie Pennsylvania PA Erie 049 42.1108 -80.0521 +US 16505 Erie Pennsylvania PA Erie 049 42.1109 -80.1534 +US 16506 Erie Pennsylvania PA Erie 049 42.0738 -80.1484 +US 16507 Erie Pennsylvania PA Erie 049 42.1316 -80.0864 +US 16508 Erie Pennsylvania PA Erie 049 42.0976 -80.0935 +US 16509 Erie Pennsylvania PA Erie 049 42.0763 -80.0668 +US 16510 Erie Pennsylvania PA Erie 049 42.1087 -79.9535 +US 16511 Erie Pennsylvania PA Erie 049 42.1553 -80.0177 +US 16512 Erie Pennsylvania PA Erie 049 42.0302 -80.2579 +US 16514 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16515 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16522 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16530 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16531 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16532 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16533 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16534 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16538 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16541 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16544 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16546 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16550 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16553 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16554 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16558 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 16563 Erie Pennsylvania PA Erie 049 42.1192 -79.9865 +US 16565 Erie Pennsylvania PA Erie 049 42.1827 -80.0649 +US 15012 Belle Vernon Pennsylvania PA Fayette 051 40.1588 -79.8122 +US 15401 Uniontown Pennsylvania PA Fayette 051 39.8897 -79.7282 +US 15410 Adah Pennsylvania PA Fayette 051 39.8831 -79.8908 +US 15413 Allison Pennsylvania PA Fayette 051 39.9868 -79.8637 +US 15415 Brier Hill Pennsylvania PA Fayette 051 39.9808 -79.8504 +US 15416 Brownfield Pennsylvania PA Fayette 051 39.9321 -79.6522 +US 15417 Brownsville Pennsylvania PA Fayette 051 39.9216 -79.6905 +US 15420 Cardale Pennsylvania PA Fayette 051 39.9321 -79.6522 +US 15421 Chalk Hill Pennsylvania PA Fayette 051 39.8451 -79.5991 +US 15422 Chestnut Ridge Pennsylvania PA Fayette 051 39.9812 -79.8116 +US 15425 Connellsville Pennsylvania PA Fayette 051 40.0265 -79.5566 +US 15428 Dawson Pennsylvania PA Fayette 051 40.0638 -79.6602 +US 15430 Dickerson Run Pennsylvania PA Fayette 051 40.0418 -79.66 +US 15431 Dunbar Pennsylvania PA Fayette 051 39.9722 -79.6431 +US 15433 East Millsboro Pennsylvania PA Fayette 051 39.9822 -79.9664 +US 15435 Fairbank Pennsylvania PA Fayette 051 39.9501 -79.8585 +US 15436 Fairchance Pennsylvania PA Fayette 051 39.8229 -79.7551 +US 15437 Farmington Pennsylvania PA Fayette 051 39.807 -79.5832 +US 15438 Fayette City Pennsylvania PA Fayette 051 40.0988 -79.8366 +US 15439 Gans Pennsylvania PA Fayette 051 39.7713 -79.6358 +US 15440 Gibbon Glade Pennsylvania PA Fayette 051 39.7364 -79.5736 +US 15442 Grindstone Pennsylvania PA Fayette 051 40.0084 -79.8404 +US 15443 Hibbs Pennsylvania PA Fayette 051 39.9263 -79.9013 +US 15444 Hiller Pennsylvania PA Fayette 051 40.012 -79.9088 +US 15445 Hopwood Pennsylvania PA Fayette 051 39.8728 -79.6568 +US 15446 Indian Head Pennsylvania PA Fayette 051 40.0335 -79.3992 +US 15447 Isabella Pennsylvania PA Fayette 051 39.946 -79.9393 +US 15449 Keisterville Pennsylvania PA Fayette 051 39.9636 -79.7853 +US 15450 La Belle Pennsylvania PA Fayette 051 39.9983 -79.9754 +US 15451 Lake Lynn Pennsylvania PA Fayette 051 39.7501 -79.8618 +US 15454 Leckrone Pennsylvania PA Fayette 051 39.9321 -79.6522 +US 15455 Leisenring Pennsylvania PA Fayette 051 39.9985 -79.6435 +US 15456 Lemont Furnace Pennsylvania PA Fayette 051 39.9311 -79.6477 +US 15458 Mc Clellandtown Pennsylvania PA Fayette 051 39.8882 -79.8694 +US 15459 Markleysburg Pennsylvania PA Fayette 051 39.7597 -79.46 +US 15460 Martin Pennsylvania PA Fayette 051 39.9321 -79.6522 +US 15461 Masontown Pennsylvania PA Fayette 051 39.8424 -79.9003 +US 15462 Melcroft Pennsylvania PA Fayette 051 40.0569 -79.3902 +US 15463 Merrittstown Pennsylvania PA Fayette 051 39.8825 -79.8336 +US 15464 Mill Run Pennsylvania PA Fayette 051 39.968 -79.4622 +US 15465 Mount Braddock Pennsylvania PA Fayette 051 39.9321 -79.6522 +US 15466 Newell Pennsylvania PA Fayette 051 40.0751 -79.8943 +US 15467 New Geneva Pennsylvania PA Fayette 051 39.9321 -79.6522 +US 15468 New Salem Pennsylvania PA Fayette 051 39.9418 -79.841 +US 15469 Normalville Pennsylvania PA Fayette 051 40.0418 -79.4151 +US 15470 Ohiopyle Pennsylvania PA Fayette 051 39.8507 -79.523 +US 15472 Oliver Pennsylvania PA Fayette 051 39.9183 -79.7158 +US 15473 Perryopolis Pennsylvania PA Fayette 051 40.0646 -79.7756 +US 15474 Point Marion Pennsylvania PA Fayette 051 39.7351 -79.899 +US 15475 Republic Pennsylvania PA Fayette 051 39.9847 -79.8814 +US 15476 Ronco Pennsylvania PA Fayette 051 39.8697 -79.9206 +US 15478 Smithfield Pennsylvania PA Fayette 051 39.7923 -79.8127 +US 15480 Smock Pennsylvania PA Fayette 051 39.9961 -79.7678 +US 15482 Star Junction Pennsylvania PA Fayette 051 40.0651 -79.769 +US 15484 Uledi Pennsylvania PA Fayette 051 39.8936 -79.7856 +US 15486 Vanderbilt Pennsylvania PA Fayette 051 40.0246 -79.6955 +US 15488 Waltersburg Pennsylvania PA Fayette 051 39.9763 -79.7689 +US 15489 West Leisenring Pennsylvania PA Fayette 051 39.9561 -79.7007 +US 15490 White Pennsylvania PA Fayette 051 40.0726 -79.4251 +US 15492 Wickhaven Pennsylvania PA Fayette 051 40.1194 -79.7623 +US 15631 Everson Pennsylvania PA Fayette 051 40.0911 -79.5873 +US 15828 Clarington Pennsylvania PA Forest 053 41.3233 -79.1466 +US 16217 Cooksburg Pennsylvania PA Forest 053 41.3384 -79.1971 +US 16239 Marienville Pennsylvania PA Forest 053 41.4622 -79.1306 +US 16321 East Hickory Pennsylvania PA Forest 053 41.5691 -79.3855 +US 16322 Endeavor Pennsylvania PA Forest 053 41.4759 -79.2391 +US 16353 Tionesta Pennsylvania PA Forest 053 41.5116 -79.3663 +US 16370 West Hickory Pennsylvania PA Forest 053 41.4759 -79.2391 +US 17201 Chambersburg Pennsylvania PA Franklin 055 39.9313 -77.6579 +US 17202 Chambersburg Pennsylvania PA Franklin County 055 39.9072 -77.636 +US 17210 Amberson Pennsylvania PA Franklin 055 40.1717 -77.6614 +US 17214 Blue Ridge Summit Pennsylvania PA Franklin 055 39.7399 -77.4707 +US 17217 Concord Pennsylvania PA Franklin 055 40.2252 -77.725 +US 17219 Doylesburg Pennsylvania PA Franklin 055 40.2184 -77.6797 +US 17220 Dry Run Pennsylvania PA Franklin 055 40.1781 -77.7353 +US 17221 Fannettsburg Pennsylvania PA Franklin 055 40.0717 -77.821 +US 17222 Fayetteville Pennsylvania PA Franklin 055 39.9065 -77.531 +US 17224 Fort Loudon Pennsylvania PA Franklin 055 39.9547 -77.8984 +US 17225 Greencastle Pennsylvania PA Franklin 055 39.7818 -77.747 +US 17231 Lemasters Pennsylvania PA Franklin 055 39.8594 -77.8579 +US 17232 Lurgan Pennsylvania PA Franklin 055 40.1055 -77.6405 +US 17235 Marion Pennsylvania PA Franklin 055 39.8587 -77.6981 +US 17236 Mercersburg Pennsylvania PA Franklin 055 39.8195 -77.9073 +US 17237 Mont Alto Pennsylvania PA Franklin 055 39.8417 -77.5537 +US 17244 Orrstown Pennsylvania PA Franklin 055 40.0731 -77.6398 +US 17246 Pleasant Hall Pennsylvania PA Franklin 055 40.0491 -77.6718 +US 17247 Quincy Pennsylvania PA Franklin 055 39.7995 -77.5811 +US 17250 Rouzerville Pennsylvania PA Franklin 055 39.7364 -77.5247 +US 17251 Roxbury Pennsylvania PA Franklin 055 40.1127 -77.6706 +US 17252 Saint Thomas Pennsylvania PA Franklin 055 39.9241 -77.7908 +US 17254 Scotland Pennsylvania PA Franklin 055 39.9696 -77.5848 +US 17256 Shady Grove Pennsylvania PA Franklin 055 39.7834 -77.6749 +US 17261 South Mountain Pennsylvania PA Franklin 055 39.8331 -77.4886 +US 17262 Spring Run Pennsylvania PA Franklin 055 40.1734 -77.7092 +US 17263 State Line Pennsylvania PA Franklin 055 39.7248 -77.7186 +US 17265 Upperstrasburg Pennsylvania PA Franklin 055 40.058 -77.7368 +US 17268 Waynesboro Pennsylvania PA Franklin 055 39.7635 -77.5674 +US 17270 Williamson Pennsylvania PA Franklin 055 39.854 -77.7997 +US 17271 Willow Hill Pennsylvania PA Franklin 055 40.1137 -77.7969 +US 17272 Zullinger Pennsylvania PA Franklin 055 39.7714 -77.627 +US 17294 Blue Ridge Summit Pennsylvania PA Franklin 055 40.0049 -77.7764 +US 15536 Crystal Spring Pennsylvania PA Fulton 057 39.92 -78.2258 +US 16689 Waterfall Pennsylvania PA Fulton 057 39.9438 -78.1223 +US 16691 Wells Tannery Pennsylvania PA Fulton 057 40.101 -78.1403 +US 17212 Big Cove Tannery Pennsylvania PA Fulton 057 39.8127 -78.0645 +US 17215 Burnt Cabins Pennsylvania PA Fulton 057 40.0753 -77.9017 +US 17223 Fort Littleton Pennsylvania PA Fulton 057 40.078 -77.9532 +US 17228 Harrisonville Pennsylvania PA Fulton 057 39.9761 -78.0841 +US 17229 Hustontown Pennsylvania PA Fulton 057 40.0441 -78.0148 +US 17233 Mc Connellsburg Pennsylvania PA Fulton 057 39.9443 -77.9901 +US 17238 Needmore Pennsylvania PA Fulton 057 39.8713 -78.1439 +US 17267 Warfordsburg Pennsylvania PA Fulton 057 39.7698 -78.1986 +US 15310 Aleppo Pennsylvania PA Greene 059 39.8246 -80.4579 +US 15315 Bobtown Pennsylvania PA Greene 059 39.817 -79.9567 +US 15316 Brave Pennsylvania PA Greene 059 39.7245 -80.2537 +US 15320 Carmichaels Pennsylvania PA Greene 059 39.8825 -79.971 +US 15322 Clarksville Pennsylvania PA Greene 059 39.9667 -80.0452 +US 15325 Crucible Pennsylvania PA Greene 059 39.9502 -79.9676 +US 15327 Dilliner Pennsylvania PA Greene 059 39.7555 -79.9771 +US 15334 Garards Fort Pennsylvania PA Greene 059 39.8083 -79.9679 +US 15337 Graysville Pennsylvania PA Greene 059 39.9092 -80.3952 +US 15338 Greensboro Pennsylvania PA Greene 059 39.8045 -79.9399 +US 15341 Holbrook Pennsylvania PA Greene 059 39.8489 -80.3385 +US 15344 Jefferson Pennsylvania PA Greene 059 39.9334 -80.0503 +US 15346 Mather Pennsylvania PA Greene 059 39.9354 -80.0753 +US 15349 Mount Morris Pennsylvania PA Greene 059 39.774 -80.0246 +US 15351 Nemacolin Pennsylvania PA Greene 059 39.8779 -79.9258 +US 15352 New Freeport Pennsylvania PA Greene 059 39.7507 -80.4542 +US 15353 Nineveh Pennsylvania PA Greene 059 39.8706 -80.2113 +US 15354 Pine Bank Pennsylvania PA Greene 059 39.8706 -80.2113 +US 15357 Rices Landing Pennsylvania PA Greene 059 39.944 -79.9857 +US 15359 Rogersville Pennsylvania PA Greene 059 39.8765 -80.2758 +US 15362 Spraggs Pennsylvania PA Greene 059 39.7447 -80.2145 +US 15364 Sycamore Pennsylvania PA Greene 059 39.9415 -80.2906 +US 15370 Waynesburg Pennsylvania PA Greene 059 39.8917 -80.1795 +US 15380 Wind Ridge Pennsylvania PA Greene 059 39.8971 -80.4647 +US 16611 Alexandria Pennsylvania PA Huntingdon 061 40.5485 -78.0951 +US 16621 Broad Top Pennsylvania PA Huntingdon 061 40.2019 -78.1406 +US 16622 Calvin Pennsylvania PA Huntingdon 061 40.4025 -77.967 +US 16623 Cassville Pennsylvania PA Huntingdon 061 40.294 -78.0272 +US 16634 Dudley Pennsylvania PA Huntingdon 061 40.4025 -77.967 +US 16638 Entriken Pennsylvania PA Huntingdon 061 40.4025 -77.967 +US 16647 Hesston Pennsylvania PA Huntingdon 061 40.4121 -78.1281 +US 16652 Huntingdon Pennsylvania PA Huntingdon 061 40.5023 -78.005 +US 16654 Huntingdon Pennsylvania PA Huntingdon 061 40.4025 -77.967 +US 16657 James Creek Pennsylvania PA Huntingdon 061 40.3567 -78.1887 +US 16660 Mc Connellstown Pennsylvania PA Huntingdon 061 40.4025 -77.967 +US 16669 Petersburg Pennsylvania PA Huntingdon 061 40.603 -77.9984 +US 16674 Robertsdale Pennsylvania PA Huntingdon 061 40.1787 -78.1117 +US 16683 Spruce Creek Pennsylvania PA Huntingdon 061 40.6218 -78.1361 +US 16685 Todd Pennsylvania PA Huntingdon 061 40.271 -78.0772 +US 16877 Warriors Mark Pennsylvania PA Huntingdon 061 40.7414 -78.0775 +US 17052 Mapleton Depot Pennsylvania PA Huntingdon 061 40.3864 -77.9604 +US 17060 Mill Creek Pennsylvania PA Huntingdon 061 40.4679 -77.8967 +US 17066 Mount Union Pennsylvania PA Huntingdon 061 40.3901 -77.8637 +US 17213 Blairs Mills Pennsylvania PA Huntingdon 061 40.2548 -77.7695 +US 17239 Neelyton Pennsylvania PA Huntingdon 061 40.1371 -77.858 +US 17243 Orbisonia Pennsylvania PA Huntingdon 061 40.2389 -77.9069 +US 17249 Rockhill Furnace Pennsylvania PA Huntingdon 061 40.2414 -77.8995 +US 17253 Saltillo Pennsylvania PA Huntingdon 061 40.2133 -78.0069 +US 17255 Shade Gap Pennsylvania PA Huntingdon 061 40.173 -77.868 +US 17260 Shirleysburg Pennsylvania PA Huntingdon 061 40.3168 -77.8701 +US 17264 Three Springs Pennsylvania PA Huntingdon 061 40.1834 -77.9941 +US 15681 Saltsburg Pennsylvania PA Indiana 063 40.5429 -79.3978 +US 15701 Indiana Pennsylvania PA Indiana 063 40.6196 -79.1596 +US 15705 Indiana Pennsylvania PA Indiana 063 40.64 -79.1294 +US 15710 Alverda Pennsylvania PA Indiana 063 40.6333 -78.8723 +US 15712 Arcadia Pennsylvania PA Indiana 063 40.7817 -78.8536 +US 15713 Aultman Pennsylvania PA Indiana 063 40.5698 -79.2617 +US 15716 Black Lick Pennsylvania PA Indiana 063 40.4836 -79.2063 +US 15717 Blairsville Pennsylvania PA Indiana 063 40.4413 -79.2533 +US 15720 Brush Valley Pennsylvania PA Indiana 063 40.5292 -79.0846 +US 15723 Chambersville Pennsylvania PA Indiana 063 40.7056 -79.1615 +US 15724 Cherry Tree Pennsylvania PA Indiana 063 40.7554 -78.8474 +US 15725 Clarksburg Pennsylvania PA Indiana 063 40.5039 -79.3677 +US 15727 Clune Pennsylvania PA Indiana 063 40.5503 -79.3237 +US 15728 Clymer Pennsylvania PA Indiana 063 40.6688 -79.0119 +US 15729 Commodore Pennsylvania PA Indiana 063 40.7016 -78.9134 +US 15731 Coral Pennsylvania PA Indiana 063 40.4986 -79.1739 +US 15732 Creekside Pennsylvania PA Indiana 063 40.7199 -79.2014 +US 15734 Dixonville Pennsylvania PA Indiana 063 40.7188 -78.9795 +US 15739 Ernest Pennsylvania PA Indiana 063 40.678 -79.1657 +US 15741 Gipsy Pennsylvania PA Indiana 063 40.796 -78.8586 +US 15742 Glen Campbell Pennsylvania PA Indiana 063 40.8508 -78.8555 +US 15745 Heilwood Pennsylvania PA Indiana 063 40.6207 -78.9186 +US 15746 Hillsdale Pennsylvania PA Indiana 063 40.7679 -78.8773 +US 15747 Home Pennsylvania PA Indiana 063 40.7834 -79.1641 +US 15748 Homer City Pennsylvania PA Indiana 063 40.5245 -79.0843 +US 15750 Josephine Pennsylvania PA Indiana 063 40.4828 -79.185 +US 15751 Juneau Pennsylvania PA Indiana 063 40.64 -79.1294 +US 15752 Kent Pennsylvania PA Indiana 063 40.5412 -79.282 +US 15754 Lucernemines Pennsylvania PA Indiana 063 40.5567 -79.1515 +US 15756 Mc Intyre Pennsylvania PA Indiana 063 40.5684 -79.2999 +US 15758 Marchand Pennsylvania PA Indiana 063 40.64 -79.1294 +US 15759 Marion Center Pennsylvania PA Indiana 063 40.7814 -79.0252 +US 15761 Mentcle Pennsylvania PA Indiana 063 40.6201 -78.887 +US 15763 Northpoint Pennsylvania PA Indiana 063 40.9037 -79.1257 +US 15765 Penn Run Pennsylvania PA Indiana 063 40.6213 -78.9943 +US 15771 Rochester Mills Pennsylvania PA Indiana 063 40.8308 -78.9892 +US 15772 Rossiter Pennsylvania PA Indiana 063 40.8846 -78.9414 +US 15777 Starford Pennsylvania PA Indiana 063 40.7027 -78.9588 +US 15783 West Lebanon Pennsylvania PA Indiana 063 40.5838 -79.3423 +US 15920 Armagh Pennsylvania PA Indiana 063 40.4603 -79.0097 +US 15929 Dilltown Pennsylvania PA Indiana 063 40.4625 -79.0128 +US 15949 Robinson Pennsylvania PA Indiana 063 40.4037 -79.122 +US 15957 Strongstown Pennsylvania PA Indiana 063 40.5727 -78.9 +US 16211 Beyer Pennsylvania PA Indiana 063 40.64 -79.1294 +US 16246 Plumville Pennsylvania PA Indiana 063 40.64 -79.1294 +US 16256 Smicksburg Pennsylvania PA Indiana 063 40.8372 -79.1614 +US 15711 Anita Pennsylvania PA Jefferson 065 41.0018 -78.9666 +US 15715 Big Run Pennsylvania PA Jefferson 065 40.9704 -78.8758 +US 15730 Coolspring Pennsylvania PA Jefferson 065 40.9671 -78.9256 +US 15733 De Lancey Pennsylvania PA Jefferson 065 41.1411 -78.9629 +US 15740 Frostburg Pennsylvania PA Jefferson 065 41.1411 -78.9629 +US 15744 Hamilton Pennsylvania PA Jefferson 065 40.9233 -79.0831 +US 15764 Oliveburg Pennsylvania PA Jefferson 065 40.9926 -79.0291 +US 15767 Punxsutawney Pennsylvania PA Jefferson 065 40.9479 -78.9681 +US 15770 Ringgold Pennsylvania PA Jefferson 065 40.9997 -79.1766 +US 15776 Sprankle Mills Pennsylvania PA Jefferson 065 41.0133 -79.114 +US 15778 Timblin Pennsylvania PA Jefferson 065 40.9684 -79.2014 +US 15780 Valier Pennsylvania PA Jefferson 065 40.9161 -79.0568 +US 15781 Walston Pennsylvania PA Jefferson 065 41.1411 -78.9629 +US 15784 Worthville Pennsylvania PA Jefferson 065 41.0238 -79.1387 +US 15824 Brockway Pennsylvania PA Jefferson 065 41.2406 -78.8116 +US 15825 Brookville Pennsylvania PA Jefferson 065 41.1627 -79.0816 +US 15829 Corsica Pennsylvania PA Jefferson 065 41.1762 -79.1976 +US 15840 Falls Creek Pennsylvania PA Jefferson 065 41.1455 -78.8128 +US 15847 Knox Dale Pennsylvania PA Jefferson 065 41.1411 -78.9629 +US 15851 Reynoldsville Pennsylvania PA Jefferson 065 41.0629 -78.8961 +US 15860 Sigel Pennsylvania PA Jefferson 065 41.3099 -79.054 +US 15863 Stump Creek Pennsylvania PA Jefferson 065 41.1411 -78.9629 +US 15864 Summerville Pennsylvania PA Jefferson 065 41.1058 -79.1726 +US 15865 Sykesville Pennsylvania PA Jefferson 065 41.0514 -78.8195 +US 17014 Cocolamus Pennsylvania PA Juniata 067 40.4787 -77.3455 +US 17021 East Waterford Pennsylvania PA Juniata 067 40.3542 -77.6528 +US 17035 Honey Grove Pennsylvania PA Juniata 067 40.4309 -77.5761 +US 17049 Mc Alisterville Pennsylvania PA Juniata 067 40.6469 -77.2602 +US 17056 Mexico Pennsylvania PA Juniata 067 40.5373 -77.3543 +US 17058 Mifflin Pennsylvania PA Juniata 067 40.5553 -77.4001 +US 17059 Mifflintown Pennsylvania PA Juniata 067 40.5727 -77.3761 +US 17076 Oakland Mills Pennsylvania PA Juniata 067 40.6147 -77.3192 +US 17082 Port Royal Pennsylvania PA Juniata 067 40.5107 -77.431 +US 17086 Richfield Pennsylvania PA Juniata 067 40.6884 -77.1223 +US 17094 Thompsontown Pennsylvania PA Juniata 067 40.5908 -77.2076 +US 18403 Archbald Pennsylvania PA Lackawanna 069 41.4876 -75.5334 +US 18407 Carbondale Pennsylvania PA Lackawanna 069 41.5831 -75.5056 +US 18410 Chinchilla Pennsylvania PA Lackawanna 069 41.4865 -75.6933 +US 18411 Clarks Summit Pennsylvania PA Lackawanna 069 41.4878 -75.7057 +US 18414 Dalton Pennsylvania PA Lackawanna 069 41.5395 -75.7037 +US 18416 Elmhurst Pennsylvania PA Lackawanna 069 41.3756 -75.548 +US 18420 Fleetville Pennsylvania PA Lackawanna 069 41.4019 -75.6376 +US 18433 Jermyn Pennsylvania PA Lackawanna 069 41.5744 -75.5881 +US 18434 Jessup Pennsylvania PA Lackawanna 069 41.4724 -75.5689 +US 18440 La Plume Pennsylvania PA Lackawanna 069 41.5516 -75.7676 +US 18444 Moscow Pennsylvania PA Lackawanna 069 41.3432 -75.5301 +US 18447 Olyphant Pennsylvania PA Lackawanna 069 41.4677 -75.6015 +US 18448 Olyphant Pennsylvania PA Lackawanna 069 41.4649 -75.5962 +US 18452 Peckville Pennsylvania PA Lackawanna 069 41.4821 -75.5899 +US 18471 Waverly Pennsylvania PA Lackawanna 069 41.5238 -75.6906 +US 18501 Scranton Pennsylvania PA Lackawanna 069 41.4019 -75.6376 +US 18502 Scranton Pennsylvania PA Lackawanna 069 41.3503 -75.69 +US 18503 Scranton Pennsylvania PA Lackawanna 069 41.4095 -75.6642 +US 18504 Scranton Pennsylvania PA Lackawanna 069 41.4128 -75.6861 +US 18505 Scranton Pennsylvania PA Lackawanna 069 41.3914 -75.6657 +US 18507 Moosic Pennsylvania PA Lackawanna 069 41.3554 -75.6805 +US 18508 Scranton Pennsylvania PA Lackawanna 069 41.4389 -75.6625 +US 18509 Scranton Pennsylvania PA Lackawanna 069 41.4274 -75.6465 +US 18510 Scranton Pennsylvania PA Lackawanna 069 41.408 -75.6484 +US 18512 Scranton Pennsylvania PA Lackawanna 069 41.435 -75.6103 +US 18514 Scranton Pennsylvania PA Lackawanna 069 41.4019 -75.6376 +US 18515 Scranton Pennsylvania PA Lackawanna 069 41.4035 -75.7065 +US 18517 Taylor Pennsylvania PA Lackawanna 069 41.3904 -75.7158 +US 18518 Old Forge Pennsylvania PA Lackawanna 069 41.3701 -75.7391 +US 18519 Dickson City Pennsylvania PA Lackawanna 069 41.4623 -75.6243 +US 18522 Scranton Pennsylvania PA Lackawanna 069 41.4019 -75.6376 +US 18540 Scranton Pennsylvania PA Lackawanna 069 41.4019 -75.6376 +US 18577 Scranton Pennsylvania PA Lackawanna 069 41.4019 -75.6376 +US 18653 Ransom Pennsylvania PA Lackawanna 069 41.3945 -75.8242 +US 17022 Elizabethtown Pennsylvania PA Lancaster 071 40.1553 -76.6025 +US 17501 Akron Pennsylvania PA Lancaster 071 40.1573 -76.2042 +US 17502 Bainbridge Pennsylvania PA Lancaster 071 40.1086 -76.6726 +US 17503 Bart Pennsylvania PA Lancaster 071 40.0185 -76.2976 +US 17504 Bausman Pennsylvania PA Lancaster 071 40.024 -76.3281 +US 17505 Bird In Hand Pennsylvania PA Lancaster 071 40.0561 -76.183 +US 17506 Blue Ball Pennsylvania PA Lancaster 071 40.1173 -76.0524 +US 17507 Bowmansville Pennsylvania PA Lancaster 071 40.1966 -76.016 +US 17508 Brownstown Pennsylvania PA Lancaster 071 40.124 -76.2176 +US 17509 Christiana Pennsylvania PA Lancaster 071 39.904 -76.0401 +US 17512 Columbia Pennsylvania PA Lancaster 071 40.0391 -76.4862 +US 17516 Conestoga Pennsylvania PA Lancaster 071 39.9403 -76.3575 +US 17517 Denver Pennsylvania PA Lancaster 071 40.2297 -76.1157 +US 17518 Drumore Pennsylvania PA Lancaster 071 39.8183 -76.2499 +US 17519 East Earl Pennsylvania PA Lancaster 071 40.1395 -76.0276 +US 17520 East Petersburg Pennsylvania PA Lancaster 071 40.1008 -76.3512 +US 17521 Elm Pennsylvania PA Lancaster 071 40.2044 -76.3464 +US 17522 Ephrata Pennsylvania PA Lancaster 071 40.1756 -76.1821 +US 17527 Gap Pennsylvania PA Lancaster 071 40.002 -75.9978 +US 17528 Goodville Pennsylvania PA Lancaster 071 40.0435 -76.2388 +US 17529 Gordonville Pennsylvania PA Lancaster 071 40.0353 -76.1106 +US 17532 Holtwood Pennsylvania PA Lancaster 071 39.8631 -76.3008 +US 17533 Hopeland Pennsylvania PA Lancaster 071 40.2339 -76.2607 +US 17534 Intercourse Pennsylvania PA Lancaster 071 40.0367 -76.1069 +US 17535 Kinzers Pennsylvania PA Lancaster 071 40.0053 -76.0493 +US 17536 Kirkwood Pennsylvania PA Lancaster 071 39.8257 -76.0933 +US 17537 Lampeter Pennsylvania PA Lancaster 071 39.9885 -76.2387 +US 17538 Landisville Pennsylvania PA Lancaster 071 40.0892 -76.4156 +US 17540 Leola Pennsylvania PA Lancaster 071 40.0964 -76.1921 +US 17543 Lititz Pennsylvania PA Lancaster 071 40.1846 -76.3015 +US 17545 Manheim Pennsylvania PA Lancaster 071 40.1702 -76.4168 +US 17547 Marietta Pennsylvania PA Lancaster 071 40.0664 -76.5645 +US 17549 Martindale Pennsylvania PA Lancaster 071 40.1545 -76.0876 +US 17550 Maytown Pennsylvania PA Lancaster 071 40.0721 -76.5778 +US 17551 Millersville Pennsylvania PA Lancaster 071 39.9982 -76.3566 +US 17552 Mount Joy Pennsylvania PA Lancaster 071 40.1083 -76.5103 +US 17554 Mountville Pennsylvania PA Lancaster 071 40.0427 -76.4277 +US 17555 Narvon Pennsylvania PA Lancaster 071 40.1252 -75.9756 +US 17557 New Holland Pennsylvania PA Lancaster 071 40.1005 -76.0801 +US 17560 New Providence Pennsylvania PA Lancaster 071 39.9098 -76.2243 +US 17562 Paradise Pennsylvania PA Lancaster 071 39.9852 -76.1081 +US 17563 Peach Bottom Pennsylvania PA Lancaster 071 39.7705 -76.1791 +US 17564 Penryn Pennsylvania PA Lancaster 071 40.0185 -76.2976 +US 17565 Pequea Pennsylvania PA Lancaster 071 39.9058 -76.3209 +US 17566 Quarryville Pennsylvania PA Lancaster 071 39.8949 -76.1465 +US 17567 Reamstown Pennsylvania PA Lancaster 071 40.2099 -76.1164 +US 17568 Refton Pennsylvania PA Lancaster 071 39.9469 -76.2322 +US 17569 Reinholds Pennsylvania PA Lancaster 071 40.2688 -76.1013 +US 17570 Rheems Pennsylvania PA Lancaster 071 40.1296 -76.5717 +US 17572 Ronks Pennsylvania PA Lancaster 071 40.0208 -76.1661 +US 17573 Ronks Pennsylvania PA Lancaster 071 40.0185 -76.2976 +US 17575 Silver Spring Pennsylvania PA Lancaster 071 40.0647 -76.4343 +US 17576 Smoketown Pennsylvania PA Lancaster 071 40.0376 -76.1969 +US 17577 Soudersburg Pennsylvania PA Lancaster 071 40.0185 -76.2976 +US 17578 Stevens Pennsylvania PA Lancaster 071 40.2194 -76.1626 +US 17579 Strasburg Pennsylvania PA Lancaster 071 39.9701 -76.1848 +US 17580 Talmage Pennsylvania PA Lancaster 071 40.1168 -76.2131 +US 17581 Terre Hill Pennsylvania PA Lancaster 071 40.1585 -76.0511 +US 17582 Washington Boro Pennsylvania PA Lancaster 071 39.9881 -76.4402 +US 17583 West Willow Pennsylvania PA Lancaster 071 39.9723 -76.2873 +US 17584 Willow Street Pennsylvania PA Lancaster 071 39.967 -76.2752 +US 17585 Witmer Pennsylvania PA Lancaster 071 40.0484 -76.2114 +US 17601 Lancaster Pennsylvania PA Lancaster 071 40.0766 -76.3107 +US 17602 Lancaster Pennsylvania PA Lancaster 071 40.0335 -76.2844 +US 17603 Lancaster Pennsylvania PA Lancaster 071 40.0091 -76.3671 +US 17604 Lancaster Pennsylvania PA Lancaster 071 40.0651 -76.3356 +US 17605 Lancaster Pennsylvania PA Lancaster 071 40.0185 -76.2976 +US 17606 Lancaster Pennsylvania PA Lancaster 071 40.1102 -76.3054 +US 17607 Lancaster Pennsylvania PA Lancaster 071 40.0185 -76.2976 +US 17608 Lancaster Pennsylvania PA Lancaster 071 40.0185 -76.2976 +US 17611 Lancaster Pennsylvania PA Lancaster County 071 40.079 -76.3794 +US 17622 Lancaster Pennsylvania PA Lancaster County 071 40.0418 -76.3012 +US 17699 Lancaster Pennsylvania PA Lancaster 071 40.0185 -76.2976 +US 19501 Adamstown Pennsylvania PA Lancaster 071 40.2423 -76.0577 +US 16101 New Castle Pennsylvania PA Lawrence 073 40.9922 -80.3284 +US 16102 New Castle Pennsylvania PA Lawrence 073 40.9677 -80.3907 +US 16103 New Castle Pennsylvania PA Lawrence 073 40.9897 -80.3084 +US 16105 New Castle Pennsylvania PA Lawrence 073 41.0241 -80.3454 +US 16107 New Castle Pennsylvania PA Lawrence 073 40.9897 -80.3084 +US 16108 New Castle Pennsylvania PA Lawrence 073 40.9897 -80.3084 +US 16112 Bessemer Pennsylvania PA Lawrence 073 40.9755 -80.4937 +US 16116 Edinburg Pennsylvania PA Lawrence 073 41.0276 -80.4632 +US 16117 Ellwood City Pennsylvania PA Lawrence 073 40.8729 -80.2559 +US 16120 Enon Valley Pennsylvania PA Lawrence 073 40.8721 -80.4612 +US 16132 Hillsville Pennsylvania PA Lawrence 073 41.0113 -80.4975 +US 16140 New Bedford Pennsylvania PA Lawrence 073 40.9897 -80.3084 +US 16142 New Wilmington Pennsylvania PA Lawrence 073 41.1382 -80.3245 +US 16143 Pulaski Pennsylvania PA Lawrence 073 41.0942 -80.4685 +US 16155 Villa Maria Pennsylvania PA Lawrence 073 40.9897 -80.3084 +US 16156 Volant Pennsylvania PA Lawrence 073 41.0938 -80.2441 +US 16157 Wampum Pennsylvania PA Lawrence 073 40.8819 -80.3392 +US 16160 West Pittsburg Pennsylvania PA Lawrence 073 40.9301 -80.3611 +US 16172 New Wilmington Pennsylvania PA Lawrence 073 41.12 -80.3332 +US 17003 Annville Pennsylvania PA Lebanon 075 40.3456 -76.5447 +US 17010 Campbelltown Pennsylvania PA Lebanon 075 40.2712 -76.582 +US 17016 Cornwall Pennsylvania PA Lebanon 075 40.2755 -76.4053 +US 17026 Fredericksburg Pennsylvania PA Lebanon 075 40.4524 -76.4267 +US 17038 Jonestown Pennsylvania PA Lebanon 075 40.4361 -76.5038 +US 17039 Kleinfeltersville Pennsylvania PA Lebanon 075 40.3005 -76.2584 +US 17041 Lawn Pennsylvania PA Lebanon 075 40.2236 -76.538 +US 17042 Lebanon Pennsylvania PA Lebanon 075 40.3316 -76.3976 +US 17046 Lebanon Pennsylvania PA Lebanon 075 40.3812 -76.4368 +US 17064 Mount Gretna Pennsylvania PA Lebanon 075 40.2546 -76.4615 +US 17067 Myerstown Pennsylvania PA Lebanon 075 40.3789 -76.3143 +US 17073 Newmanstown Pennsylvania PA Lebanon 075 40.3141 -76.2605 +US 17077 Ono Pennsylvania PA Lebanon 075 40.3754 -76.4148 +US 17078 Palmyra Pennsylvania PA Lebanon 075 40.3011 -76.5886 +US 17083 Quentin Pennsylvania PA Lebanon 075 40.2764 -76.4112 +US 17085 Rexmont Pennsylvania PA Lebanon 075 40.2771 -76.3857 +US 17087 Richland Pennsylvania PA Lebanon 075 40.3806 -76.2654 +US 17088 Schaefferstown Pennsylvania PA Lebanon 075 40.3087 -76.2963 +US 18011 Alburtis Pennsylvania PA Lehigh 077 40.5145 -75.6029 +US 18025 Bethlehem Pennsylvania PA Lehigh 077 40.6934 -75.4712 +US 18031 Breinigsville Pennsylvania PA Lehigh 077 40.5526 -75.6553 +US 18032 Catasauqua Pennsylvania PA Lehigh 077 40.6557 -75.4693 +US 18034 Center Valley Pennsylvania PA Lehigh 077 40.5396 -75.4242 +US 18036 Coopersburg Pennsylvania PA Lehigh 077 40.5076 -75.3888 +US 18037 Coplay Pennsylvania PA Lehigh 077 40.6166 -75.4896 +US 18046 East Texas Pennsylvania PA Lehigh 077 40.5388 -75.5685 +US 18049 Emmaus Pennsylvania PA Lehigh 077 40.5293 -75.501 +US 18051 Fogelsville Pennsylvania PA Lehigh 077 40.593 -75.6568 +US 18052 Whitehall Pennsylvania PA Lehigh 077 40.6567 -75.5041 +US 18053 Germansville Pennsylvania PA Lehigh 077 40.7118 -75.7147 +US 18059 Laurys Station Pennsylvania PA Lehigh 077 40.7177 -75.5335 +US 18060 Limeport Pennsylvania PA Lehigh 077 40.5348 -75.5786 +US 18062 Macungie Pennsylvania PA Lehigh 077 40.5285 -75.5666 +US 18065 Neffs Pennsylvania PA Lehigh 077 40.6967 -75.6116 +US 18066 New Tripoli Pennsylvania PA Lehigh 077 40.6545 -75.7417 +US 18068 Old Zionsville Pennsylvania PA Lehigh 077 40.6934 -75.4712 +US 18069 Orefield Pennsylvania PA Lehigh 077 40.6248 -75.5974 +US 18078 Schnecksville Pennsylvania PA Lehigh 077 40.6819 -75.6239 +US 18079 Slatedale Pennsylvania PA Lehigh 077 40.7455 -75.6592 +US 18080 Slatington Pennsylvania PA Lehigh 077 40.7345 -75.6186 +US 18087 Trexlertown Pennsylvania PA Lehigh 077 40.5482 -75.5961 +US 18092 Zionsville Pennsylvania PA Lehigh 077 40.4734 -75.5261 +US 18098 Emmaus Pennsylvania PA Lehigh 077 40.6934 -75.4712 +US 18099 Emmaus Pennsylvania PA Lehigh 077 40.6934 -75.4712 +US 18101 Allentown Pennsylvania PA Lehigh 077 40.6026 -75.4691 +US 18102 Allentown Pennsylvania PA Lehigh 077 40.6068 -75.4781 +US 18103 Allentown Pennsylvania PA Lehigh 077 40.5891 -75.4645 +US 18104 Allentown Pennsylvania PA Lehigh 077 40.6018 -75.5225 +US 18105 Allentown Pennsylvania PA Lehigh 077 40.6934 -75.4712 +US 18106 Allentown Pennsylvania PA Lehigh 077 40.5824 -75.5911 +US 18109 Allentown Pennsylvania PA Lehigh 077 40.6366 -75.4405 +US 18175 Allentown Pennsylvania PA Lehigh 077 40.5856 -75.6211 +US 18195 Allentown Pennsylvania PA Lehigh 077 40.5843 -75.6248 +US 18201 Hazleton Pennsylvania PA Luzerne 079 40.9488 -75.9563 +US 18202 Hazleton Pennsylvania PA Luzerne 079 40.9506 -76.0487 +US 18219 Conyngham Pennsylvania PA Luzerne 079 40.9907 -76.0564 +US 18221 Drifton Pennsylvania PA Luzerne 079 41.0016 -75.9057 +US 18222 Drums Pennsylvania PA Luzerne 079 41.0255 -75.9768 +US 18223 Ebervale Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18224 Freeland Pennsylvania PA Luzerne 079 41.0196 -75.888 +US 18225 Harleigh Pennsylvania PA Luzerne 079 40.9888 -75.9617 +US 18234 Lattimer Mines Pennsylvania PA Luzerne 079 40.9925 -75.9626 +US 18239 Milnesville Pennsylvania PA Luzerne 079 40.9961 -75.9815 +US 18243 Pardeesville Pennsylvania PA Luzerne 079 41.0017 -75.9661 +US 18246 Rock Glen Pennsylvania PA Luzerne 079 40.954 -76.1747 +US 18247 Saint Johns Pennsylvania PA Luzerne 079 41.0148 -76.0584 +US 18249 Sugarloaf Pennsylvania PA Luzerne 079 40.9971 -76.0717 +US 18251 Sybertsville Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18256 Weston Pennsylvania PA Luzerne 079 40.9448 -76.1452 +US 18601 Beach Haven Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18602 Bear Creek Pennsylvania PA Luzerne 079 41.1922 -75.7161 +US 18611 Cambra Pennsylvania PA Luzerne 079 41.1103 -75.7755 +US 18612 Dallas Pennsylvania PA Luzerne 079 41.3494 -75.9834 +US 18617 Glen Lyon Pennsylvania PA Luzerne 079 41.1746 -76.0746 +US 18618 Harveys Lake Pennsylvania PA Luzerne 079 41.3592 -76.0451 +US 18621 Hunlock Creek Pennsylvania PA Luzerne 079 41.2459 -76.0879 +US 18622 Huntington Mills Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18627 Lehman Pennsylvania PA Luzerne 079 41.3166 -76.021 +US 18634 Nanticoke Pennsylvania PA Luzerne 079 41.1963 -76.0044 +US 18635 Nescopeck Pennsylvania PA Luzerne 079 41.0469 -76.1981 +US 18637 Nuangola Pennsylvania PA Luzerne County 079 41.2401 -75.8912 +US 18640 Pittston Pennsylvania PA Luzerne 079 41.3175 -75.7885 +US 18641 Pittston Pennsylvania PA Luzerne 079 41.3361 -75.7304 +US 18642 Duryea Pennsylvania PA Luzerne 079 41.3486 -75.7611 +US 18643 Pittston Pennsylvania PA Luzerne 079 41.3665 -75.8362 +US 18644 Wyoming Pennsylvania PA Luzerne 079 41.3197 -75.8541 +US 18651 Plymouth Pennsylvania PA Luzerne 079 41.2458 -75.9481 +US 18654 Shawanese Pennsylvania PA Luzerne 079 41.3501 -76.0319 +US 18655 Shickshinny Pennsylvania PA Luzerne 079 41.1513 -76.1081 +US 18656 Sweet Valley Pennsylvania PA Luzerne 079 41.3066 -76.1339 +US 18660 Wapwallopen Pennsylvania PA Luzerne 079 41.068 -76.0857 +US 18661 White Haven Pennsylvania PA Luzerne 079 41.079 -75.7715 +US 18690 Dallas Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18701 Wilkes Barre Pennsylvania PA Luzerne 079 41.2436 -75.885 +US 18702 Wilkes Barre Pennsylvania PA Luzerne 079 41.2208 -75.7736 +US 18703 Wilkes Barre Pennsylvania PA Luzerne 079 41.2421 -75.8857 +US 18704 Kingston Pennsylvania PA Luzerne 079 41.2742 -75.8903 +US 18705 Wilkes Barre Pennsylvania PA Luzerne 079 41.2689 -75.8453 +US 18706 Wilkes Barre Pennsylvania PA Luzerne 079 41.2044 -75.9113 +US 18707 Mountain Top Pennsylvania PA Luzerne 079 41.135 -75.9376 +US 18708 Shavertown Pennsylvania PA Luzerne 079 41.2998 -75.9711 +US 18709 Luzerne Pennsylvania PA Luzerne 079 41.2843 -75.8935 +US 18710 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18711 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18761 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18762 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18763 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18764 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18765 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18766 Wilkes Barre Pennsylvania PA Luzerne 079 41.2448 -75.8896 +US 18767 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18768 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18769 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18773 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 18774 Wilkes Barre Pennsylvania PA Luzerne 079 41.2722 -75.8801 +US 17701 Williamsport Pennsylvania PA Lycoming 081 41.2667 -76.9583 +US 17702 Williamsport Pennsylvania PA Lycoming 081 41.1943 -77.0547 +US 17703 Williamsport Pennsylvania PA Lycoming 081 41.3327 -77.0236 +US 17705 Williamsport Pennsylvania PA Lycoming 081 41.3327 -77.0236 +US 17720 Antes Fort Pennsylvania PA Lycoming 081 41.1865 -77.2184 +US 17722 Bodines Pennsylvania PA Lycoming 081 41.3327 -77.0236 +US 17723 Jersey Shore Pennsylvania PA Lycoming 081 41.432 -77.4562 +US 17727 Cedar Run Pennsylvania PA Lycoming 081 41.5299 -77.4917 +US 17728 Cogan Station Pennsylvania PA Lycoming 081 41.3152 -77.069 +US 17737 Hughesville Pennsylvania PA Lycoming 081 41.256 -76.7141 +US 17739 Jersey Mills Pennsylvania PA Lycoming 081 41.3327 -77.0236 +US 17740 Jersey Shore Pennsylvania PA Lycoming 081 41.247 -77.2706 +US 17742 Lairdsville Pennsylvania PA Lycoming 081 41.2359 -76.605 +US 17744 Linden Pennsylvania PA Lycoming 081 41.2472 -77.1527 +US 17752 Montgomery Pennsylvania PA Lycoming 081 41.1788 -76.8839 +US 17754 Montoursville Pennsylvania PA Lycoming 081 41.2663 -76.903 +US 17756 Muncy Pennsylvania PA Lycoming 081 41.2137 -76.7633 +US 17759 Nisbet Pennsylvania PA Lycoming 081 41.2183 -77.1214 +US 17762 Picture Rocks Pennsylvania PA Lycoming 081 41.2215 -76.6595 +US 17763 Ralston Pennsylvania PA Lycoming 081 41.5038 -76.9583 +US 17769 Slate Run Pennsylvania PA Lycoming 081 41.3327 -77.0236 +US 17771 Trout Run Pennsylvania PA Lycoming 081 41.4125 -77.0098 +US 17774 Unityville Pennsylvania PA Lycoming 081 41.2436 -76.5183 +US 17776 Waterville Pennsylvania PA Lycoming 081 41.3114 -77.3604 +US 16333 Ludlow Pennsylvania PA McKean 083 41.7428 -78.7873 +US 16701 Bradford Pennsylvania PA McKean 083 41.9547 -78.654 +US 16724 Crosby Pennsylvania PA McKean 083 41.8011 -78.5797 +US 16725 Custer City Pennsylvania PA McKean 083 41.8855 -78.7232 +US 16726 Cyclone Pennsylvania PA McKean 083 41.8186 -78.5957 +US 16727 Derrick City Pennsylvania PA McKean 083 41.9726 -78.5626 +US 16729 Duke Center Pennsylvania PA McKean 083 41.954 -78.4923 +US 16730 East Smethport Pennsylvania PA McKean 083 41.8011 -78.5797 +US 16731 Eldred Pennsylvania PA McKean 083 41.9489 -78.3884 +US 16732 Gifford Pennsylvania PA McKean 083 41.8011 -78.5797 +US 16733 Hazel Hurst Pennsylvania PA McKean 083 41.8011 -78.5797 +US 16735 Kane Pennsylvania PA McKean 083 41.6619 -78.7978 +US 16738 Lewis Run Pennsylvania PA McKean 083 41.8211 -78.6805 +US 16740 Mount Jewett Pennsylvania PA McKean 083 41.7247 -78.6446 +US 16743 Port Allegany Pennsylvania PA McKean 083 41.8169 -78.2799 +US 16744 Rew Pennsylvania PA McKean 083 41.8783 -78.5572 +US 16745 Rixford Pennsylvania PA McKean 083 41.9346 -78.4586 +US 16749 Smethport Pennsylvania PA McKean 083 41.8021 -78.4702 +US 16750 Turtlepoint Pennsylvania PA McKean 083 41.8847 -78.3308 +US 16751 Westline Pennsylvania PA McKean 083 41.8011 -78.5797 +US 16113 Clark Pennsylvania PA Mercer 085 41.2866 -80.4237 +US 16114 Clarks Mills Pennsylvania PA Mercer 085 41.3851 -80.1752 +US 16121 Farrell Pennsylvania PA Mercer 085 41.211 -80.4944 +US 16124 Fredonia Pennsylvania PA Mercer 085 41.3241 -80.2699 +US 16125 Greenville Pennsylvania PA Mercer 085 41.4057 -80.3739 +US 16127 Grove City Pennsylvania PA Mercer 085 41.1607 -80.0841 +US 16130 Hadley Pennsylvania PA Mercer 085 41.4432 -80.2153 +US 16133 Jackson Center Pennsylvania PA Mercer 085 41.2801 -80.1037 +US 16134 Jamestown Pennsylvania PA Mercer 085 41.4566 -80.4492 +US 16137 Mercer Pennsylvania PA Mercer 085 41.2325 -80.234 +US 16145 Sandy Lake Pennsylvania PA Mercer 085 41.3383 -80.0497 +US 16146 Sharon Pennsylvania PA Mercer 085 41.2316 -80.4993 +US 16148 Hermitage Pennsylvania PA Mercer 085 41.2326 -80.453 +US 16150 Sharpsville Pennsylvania PA Mercer 085 41.2676 -80.4656 +US 16151 Sheakleyville Pennsylvania PA Mercer 085 41.4435 -80.2055 +US 16153 Stoneboro Pennsylvania PA Mercer 085 41.3439 -80.0976 +US 16154 Transfer Pennsylvania PA Mercer 085 41.3244 -80.4197 +US 16159 West Middlesex Pennsylvania PA Mercer 085 41.1741 -80.4528 +US 16161 Wheatland Pennsylvania PA Mercer 085 41.2003 -80.5027 +US 16311 Carlton Pennsylvania PA Mercer 085 41.4815 -80.0203 +US 17002 Allensville Pennsylvania PA Mifflin 087 40.5075 -77.8392 +US 17004 Belleville Pennsylvania PA Mifflin 087 40.6016 -77.7358 +US 17009 Burnham Pennsylvania PA Mifflin 087 40.6361 -77.5625 +US 17029 Granville Pennsylvania PA Mifflin 087 40.5509 -77.6261 +US 17044 Lewistown Pennsylvania PA Mifflin 087 40.5994 -77.5756 +US 17051 Mc Veytown Pennsylvania PA Mifflin 087 40.5046 -77.7186 +US 17054 Mattawana Pennsylvania PA Mifflin 087 40.496 -77.7237 +US 17063 Milroy Pennsylvania PA Mifflin 087 40.7203 -77.5567 +US 17075 Newton Hamilton Pennsylvania PA Mifflin 087 40.3931 -77.8316 +US 17084 Reedsville Pennsylvania PA Mifflin 087 40.6722 -77.6116 +US 17099 Yeagertown Pennsylvania PA Mifflin 087 40.6452 -77.5757 +US 18058 Kunkletown Pennsylvania PA Monroe 089 40.8999 -75.476 +US 18301 East Stroudsburg Pennsylvania PA Monroe 089 41.0367 -75.1735 +US 18320 Analomink Pennsylvania PA Monroe 089 41.0712 -75.2364 +US 18321 Bartonsville Pennsylvania PA Monroe 089 41.008 -75.2967 +US 18322 Brodheadsville Pennsylvania PA Monroe 089 40.9309 -75.4104 +US 18323 Buck Hill Falls Pennsylvania PA Monroe 089 41.0338 -75.308 +US 18325 Canadensis Pennsylvania PA Monroe 089 41.2338 -75.2573 +US 18326 Cresco Pennsylvania PA Monroe 089 41.1606 -75.2682 +US 18327 Delaware Water Gap Pennsylvania PA Monroe 089 40.9886 -75.1512 +US 18330 Effort Pennsylvania PA Monroe 089 40.9669 -75.4523 +US 18331 Gilbert Pennsylvania PA Monroe 089 40.9089 -75.4314 +US 18332 Henryville Pennsylvania PA Monroe 089 41.0889 -75.2798 +US 18333 Kresgeville Pennsylvania PA Monroe 089 40.8982 -75.5074 +US 18334 Long Pond Pennsylvania PA Monroe 089 41.0677 -75.4482 +US 18335 Marshalls Creek Pennsylvania PA Monroe 089 41.0508 -75.2083 +US 18341 Minisink Hills Pennsylvania PA Monroe 089 40.9911 -75.2993 +US 18342 Mountainhome Pennsylvania PA Monroe 089 41.1458 -75.2941 +US 18344 Mount Pocono Pennsylvania PA Monroe 089 41.1216 -75.3529 +US 18346 Pocono Summit Pennsylvania PA Monroe 089 41.1353 -75.4079 +US 18347 Pocono Lake Pennsylvania PA Monroe 089 41.1187 -75.5559 +US 18348 Pocono Lake Preserve Pennsylvania PA Monroe 089 41.0338 -75.308 +US 18349 Pocono Manor Pennsylvania PA Monroe 089 41.1226 -75.4588 +US 18350 Pocono Pines Pennsylvania PA Monroe 089 41.1054 -75.476 +US 18352 Reeders Pennsylvania PA Monroe 089 40.9863 -75.348 +US 18353 Saylorsburg Pennsylvania PA Monroe 089 40.8965 -75.367 +US 18354 Sciota Pennsylvania PA Monroe 089 40.9257 -75.325 +US 18355 Scotrun Pennsylvania PA Monroe 089 41.0751 -75.3265 +US 18356 Shawnee On Delaware Pennsylvania PA Monroe 089 41.0312 -75.0974 +US 18357 Skytop Pennsylvania PA Monroe 089 41.2336 -75.2389 +US 18360 Stroudsburg Pennsylvania PA Monroe 089 40.9877 -75.2485 +US 18370 Swiftwater Pennsylvania PA Monroe 089 41.0879 -75.3483 +US 18372 Tannersville Pennsylvania PA Monroe 089 41.0472 -75.3244 +US 18466 Tobyhanna Pennsylvania PA Monroe 089 41.1836 -75.3918 +US 18610 Blakeslee Pennsylvania PA Monroe 089 41.0485 -75.5343 +US 18041 East Greenville Pennsylvania PA Montgomery 091 40.4119 -75.5056 +US 18054 Green Lane Pennsylvania PA Montgomery 091 40.3534 -75.4351 +US 18070 Palm Pennsylvania PA Montgomery 091 40.4317 -75.5331 +US 18073 Pennsburg Pennsylvania PA Montgomery 091 40.3911 -75.4866 +US 18074 Perkiomenville Pennsylvania PA Montgomery 091 40.3157 -75.5022 +US 18076 Red Hill Pennsylvania PA Montgomery 091 40.3758 -75.4846 +US 18084 Sumneytown Pennsylvania PA Montgomery 091 40.3278 -75.454 +US 18915 Colmar Pennsylvania PA Montgomery 091 40.2728 -75.2563 +US 18918 Earlington Pennsylvania PA Montgomery 091 40.32 -75.3742 +US 18924 Franconia Pennsylvania PA Montgomery 091 40.3081 -75.3586 +US 18936 Montgomeryville Pennsylvania PA Montgomery 091 40.2241 -75.231 +US 18957 Salford Pennsylvania PA Montgomery 091 40.3029 -75.4486 +US 18958 Salfordville Pennsylvania PA Montgomery 091 40.2904 -75.4355 +US 18964 Souderton Pennsylvania PA Montgomery 091 40.2884 -75.341 +US 18969 Telford Pennsylvania PA Montgomery 091 40.3205 -75.352 +US 18971 Tylersport Pennsylvania PA Montgomery 091 40.347 -75.377 +US 18979 Woxall Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19001 Abington Pennsylvania PA Montgomery 091 40.1238 -75.1148 +US 19002 Ambler Pennsylvania PA Montgomery 091 40.1809 -75.2156 +US 19004 Bala Cynwyd Pennsylvania PA Montgomery 091 40.0118 -75.2342 +US 19006 Huntingdon Valley Pennsylvania PA Montgomery 091 40.1284 -75.0607 +US 19009 Bryn Athyn Pennsylvania PA Montgomery 091 40.135 -75.0623 +US 19012 Cheltenham Pennsylvania PA Montgomery 091 40.0603 -75.1048 +US 19025 Dresher Pennsylvania PA Montgomery 091 40.1431 -75.1624 +US 19027 Elkins Park Pennsylvania PA Montgomery 091 40.075 -75.1315 +US 19031 Flourtown Pennsylvania PA Montgomery 091 40.1068 -75.2115 +US 19034 Fort Washington Pennsylvania PA Montgomery 091 40.1386 -75.2022 +US 19035 Gladwyne Pennsylvania PA Montgomery 091 40.0451 -75.2821 +US 19038 Glenside Pennsylvania PA Montgomery 091 40.1096 -75.155 +US 19040 Hatboro Pennsylvania PA Montgomery 091 40.1785 -75.1072 +US 19044 Horsham Pennsylvania PA Montgomery 091 40.1821 -75.1479 +US 19046 Jenkintown Pennsylvania PA Montgomery 091 40.098 -75.1078 +US 19066 Merion Station Pennsylvania PA Montgomery 091 40.003 -75.2503 +US 19072 Narberth Pennsylvania PA Montgomery 091 40.0177 -75.2594 +US 19075 Oreland Pennsylvania PA Montgomery 091 40.1132 -75.1869 +US 19090 Willow Grove Pennsylvania PA Montgomery 091 40.1567 -75.1269 +US 19095 Wyncote Pennsylvania PA Montgomery 091 40.0867 -75.1524 +US 19096 Wynnewood Pennsylvania PA Montgomery 091 40 -75.276 +US 19126 Philadelphia Pennsylvania PA Montgomery 091 40.0568 -75.1379 +US 19401 Norristown Pennsylvania PA Montgomery 091 40.1245 -75.3304 +US 19403 Norristown Pennsylvania PA Montgomery 091 40.1496 -75.3796 +US 19404 Norristown Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19405 Bridgeport Pennsylvania PA Montgomery 091 40.103 -75.3402 +US 19406 King Of Prussia Pennsylvania PA Montgomery 091 40.0956 -75.3737 +US 19407 Audubon Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19408 Eagleville Pennsylvania PA Montgomery 091 40.1566 -75.4131 +US 19409 Fairview Village Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19415 Eagleville Pennsylvania PA Montgomery County 091 40.1572 -75.406 +US 19420 Arcola Pennsylvania PA Montgomery 091 40.1529 -75.4567 +US 19422 Blue Bell Pennsylvania PA Montgomery 091 40.1576 -75.2799 +US 19423 Cedars Pennsylvania PA Montgomery 091 40.2174 -75.365 +US 19424 Blue Bell Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19426 Collegeville Pennsylvania PA Montgomery 091 40.1913 -75.4373 +US 19428 Conshohocken Pennsylvania PA Montgomery 091 40.0825 -75.3044 +US 19429 Conshohocken Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19430 Creamery Pennsylvania PA Montgomery 091 40.1851 -75.42 +US 19435 Frederick Pennsylvania PA Montgomery 091 40.3275 -75.5692 +US 19436 Gwynedd Pennsylvania PA Montgomery 091 40.2021 -75.2507 +US 19437 Gwynedd Valley Pennsylvania PA Montgomery 091 40.1811 -75.2579 +US 19438 Harleysville Pennsylvania PA Montgomery 091 40.2659 -75.3883 +US 19440 Hatfield Pennsylvania PA Montgomery 091 40.2778 -75.2975 +US 19441 Harleysville Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19443 Kulpsville Pennsylvania PA Montgomery 091 40.241 -75.3439 +US 19444 Lafayette Hill Pennsylvania PA Montgomery 091 40.0896 -75.2601 +US 19446 Lansdale Pennsylvania PA Montgomery 091 40.2378 -75.2955 +US 19450 Lederach Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19451 Mainland Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19452 Miquon Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19453 Mont Clare Pennsylvania PA Montgomery 091 40.1364 -75.4999 +US 19454 North Wales Pennsylvania PA Montgomery 091 40.2166 -75.2565 +US 19455 North Wales Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19456 Oaks Pennsylvania PA Montgomery 091 40.1334 -75.4536 +US 19462 Plymouth Meeting Pennsylvania PA Montgomery 091 40.1077 -75.2796 +US 19464 Pottstown Pennsylvania PA Montgomery 091 40.2635 -75.6172 +US 19468 Royersford Pennsylvania PA Montgomery 091 40.2075 -75.5329 +US 19472 Sassamansville Pennsylvania PA Montgomery 091 40.3448 -75.5775 +US 19473 Schwenksville Pennsylvania PA Montgomery 091 40.2471 -75.4602 +US 19474 Skippack Pennsylvania PA Montgomery 091 40.2251 -75.4031 +US 19477 Spring House Pennsylvania PA Montgomery 091 40.1839 -75.2327 +US 19478 Spring Mount Pennsylvania PA Montgomery 091 40.2759 -75.4618 +US 19483 Valley Forge Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19484 Valley Forge Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19485 Valley Forge Pennsylvania PA Montgomery 091 40.2119 -75.3559 +US 19486 West Point Pennsylvania PA Montgomery 091 40.2033 -75.3019 +US 19490 Worcester Pennsylvania PA Montgomery 091 40.1929 -75.3576 +US 19492 Zieglerville Pennsylvania PA Montgomery 091 40.2901 -75.503 +US 19525 Gilbertsville Pennsylvania PA Montgomery 091 40.3059 -75.5953 +US 17821 Danville Pennsylvania PA Montour 093 40.9799 -76.6229 +US 17822 Danville Pennsylvania PA Montour 093 40.9674 -76.6049 +US 17884 Washingtonville Pennsylvania PA Montour 093 41.0273 -76.6536 +US 18001 Lehigh Valley Pennsylvania PA Northampton 095 40.6934 -75.4712 +US 18002 Lehigh Valley Pennsylvania PA Northampton 095 40.6656 -75.4262 +US 18003 Lehigh Valley Pennsylvania PA Northampton 095 40.6934 -75.4712 +US 18010 Ackermanville Pennsylvania PA Northampton 095 40.6934 -75.4712 +US 18013 Bangor Pennsylvania PA Northampton 095 40.853 -75.1718 +US 18014 Bath Pennsylvania PA Northampton 095 40.7551 -75.4086 +US 18015 Bethlehem Pennsylvania PA Northampton 095 40.6002 -75.3805 +US 18016 Bethlehem Pennsylvania PA Northampton 095 40.6934 -75.4712 +US 18017 Bethlehem Pennsylvania PA Northampton 095 40.6622 -75.3903 +US 18018 Bethlehem Pennsylvania PA Northampton 095 40.6278 -75.3928 +US 18020 Bethlehem Pennsylvania PA Northampton 095 40.6693 -75.3349 +US 18035 Cherryville Pennsylvania PA Northampton 095 40.751 -75.5394 +US 18038 Danielsville Pennsylvania PA Northampton 095 40.7866 -75.5186 +US 18040 Easton Pennsylvania PA Northampton 095 40.7449 -75.2217 +US 18042 Easton Pennsylvania PA Northampton 095 40.6516 -75.224 +US 18043 Easton Pennsylvania PA Northampton 095 40.7928 -75.1372 +US 18044 Easton Pennsylvania PA Northampton 095 40.6934 -75.4712 +US 18045 Easton Pennsylvania PA Northampton 095 40.6957 -75.2865 +US 18050 Flicksville Pennsylvania PA Northampton 095 40.6934 -75.4712 +US 18055 Hellertown Pennsylvania PA Northampton 095 40.5817 -75.3255 +US 18063 Martins Creek Pennsylvania PA Northampton 095 40.7825 -75.1735 +US 18064 Nazareth Pennsylvania PA Northampton 095 40.745 -75.3199 +US 18067 Northampton Pennsylvania PA Northampton 095 40.6998 -75.4874 +US 18072 Pen Argyl Pennsylvania PA Northampton 095 40.8518 -75.2701 +US 18083 Stockertown Pennsylvania PA Northampton 095 40.7729 -75.3635 +US 18085 Tatamy Pennsylvania PA Northampton 095 40.7406 -75.2549 +US 18086 Treichlers Pennsylvania PA Northampton 095 40.7361 -75.5449 +US 18088 Walnutport Pennsylvania PA Northampton 095 40.7615 -75.5657 +US 18091 Wind Gap Pennsylvania PA Northampton 095 40.8169 -75.3264 +US 18343 Mount Bethel Pennsylvania PA Northampton 095 40.9008 -75.1115 +US 18351 Portland Pennsylvania PA Northampton 095 40.9214 -75.097 +US 17017 Dalmatia Pennsylvania PA Northumberland 097 40.6483 -76.8797 +US 17730 Dewart Pennsylvania PA Northumberland 097 41.1089 -76.8775 +US 17749 Mc Ewensville Pennsylvania PA Northumberland 097 41.072 -76.8184 +US 17772 Turbotville Pennsylvania PA Northumberland 097 41.1119 -76.7425 +US 17777 Watsontown Pennsylvania PA Northumberland 097 41.102 -76.8532 +US 17801 Sunbury Pennsylvania PA Northumberland 097 40.8551 -76.7776 +US 17823 Dornsife Pennsylvania PA Northumberland 097 40.7571 -76.7626 +US 17824 Elysburg Pennsylvania PA Northumberland 097 40.8639 -76.5569 +US 17825 Excelsior Pennsylvania PA Northumberland 097 40.8896 -76.6646 +US 17828 Gowen City Pennsylvania PA Northumberland 097 40.8896 -76.6646 +US 17830 Herndon Pennsylvania PA Northumberland 097 40.6918 -76.8008 +US 17832 Marion Heights Pennsylvania PA Northumberland 097 40.8046 -76.4651 +US 17834 Kulpmont Pennsylvania PA Northumberland 097 40.7933 -76.4744 +US 17836 Leck Kill Pennsylvania PA Northumberland 097 40.7101 -76.6271 +US 17840 Locust Gap Pennsylvania PA Northumberland 097 40.7727 -76.4383 +US 17847 Milton Pennsylvania PA Northumberland 097 41.0168 -76.8398 +US 17850 Montandon Pennsylvania PA Northumberland 097 40.9661 -76.8575 +US 17851 Mount Carmel Pennsylvania PA Northumberland 097 40.7955 -76.4195 +US 17857 Northumberland Pennsylvania PA Northumberland 097 40.9044 -76.7908 +US 17860 Paxinos Pennsylvania PA Northumberland 097 40.8448 -76.635 +US 17865 Potts Grove Pennsylvania PA Northumberland 097 40.8896 -76.6646 +US 17866 Coal Township Pennsylvania PA Northumberland 097 40.7917 -76.5519 +US 17867 Rebuck Pennsylvania PA Northumberland 097 40.7141 -76.6886 +US 17868 Riverside Pennsylvania PA Northumberland 097 40.9529 -76.6311 +US 17872 Shamokin Pennsylvania PA Northumberland 097 40.792 -76.6016 +US 17877 Snydertown Pennsylvania PA Northumberland 097 40.879 -76.6673 +US 17881 Trevorton Pennsylvania PA Northumberland 097 40.7819 -76.6702 +US 17939 Helfenstein Pennsylvania PA Northumberland County 097 40.7492 -76.4536 +US 17006 Blain Pennsylvania PA Perry 099 40.3293 -77.5117 +US 17015 Carlisle Pennsylvania PA Perry County 099 40.1772 -77.2312 +US 17020 Duncannon Pennsylvania PA Perry 099 40.4087 -77.0473 +US 17024 Elliottsburg Pennsylvania PA Perry 099 40.4096 -77.3121 +US 17031 Green Park Pennsylvania PA Perry 099 40.4068 -77.2926 +US 17037 Ickesburg Pennsylvania PA Perry 099 40.4363 -77.397 +US 17040 Landisburg Pennsylvania PA Perry 099 40.3326 -77.3191 +US 17045 Liverpool Pennsylvania PA Perry 099 40.5753 -77.0083 +US 17047 Loysville Pennsylvania PA Perry 099 40.3658 -77.4138 +US 17053 Marysville Pennsylvania PA Perry 099 40.3351 -76.9722 +US 17062 Millerstown Pennsylvania PA Perry 099 40.5505 -77.1298 +US 17068 New Bloomfield Pennsylvania PA Perry 099 40.4193 -77.1938 +US 17069 New Buffalo Pennsylvania PA Perry 099 40.4553 -76.9709 +US 17071 New Germantown Pennsylvania PA Perry 099 40.4068 -77.2926 +US 17074 Newport Pennsylvania PA Perry 099 40.4827 -77.1659 +US 17090 Shermans Dale Pennsylvania PA Perry 099 40.3299 -77.1809 +US 19019 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19092 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19093 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19099 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19101 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19102 Philadelphia Pennsylvania PA Philadelphia 101 39.9489 -75.1661 +US 19103 Philadelphia Pennsylvania PA Philadelphia 101 39.9513 -75.1741 +US 19104 Philadelphia Pennsylvania PA Philadelphia 101 39.9597 -75.2024 +US 19105 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19106 Philadelphia Pennsylvania PA Philadelphia 101 39.9474 -75.1473 +US 19107 Philadelphia Pennsylvania PA Philadelphia 101 39.9487 -75.1593 +US 19108 Philadelphia Pennsylvania PA Philadelphia 101 39.9598 -75.1616 +US 19109 Philadelphia Pennsylvania PA Philadelphia 101 39.9496 -75.1637 +US 19110 Philadelphia Pennsylvania PA Philadelphia 101 39.9502 -75.1636 +US 19111 Philadelphia Pennsylvania PA Philadelphia 101 40.0596 -75.0818 +US 19112 Philadelphia Pennsylvania PA Philadelphia 101 39.8893 -75.1782 +US 19114 Philadelphia Pennsylvania PA Philadelphia 101 40.0634 -74.999 +US 19115 Philadelphia Pennsylvania PA Philadelphia 101 40.0903 -75.041 +US 19116 Philadelphia Pennsylvania PA Philadelphia 101 40.1166 -75.0198 +US 19117 Philadelphia Pennsylvania PA Philadelphia County 101 40.0758 -75.1277 +US 19118 Philadelphia Pennsylvania PA Philadelphia 101 40.0723 -75.2034 +US 19119 Philadelphia Pennsylvania PA Philadelphia 101 40.0547 -75.1866 +US 19120 Philadelphia Pennsylvania PA Philadelphia 101 40.0343 -75.1213 +US 19121 Philadelphia Pennsylvania PA Philadelphia 101 39.9811 -75.174 +US 19122 Philadelphia Pennsylvania PA Philadelphia 101 39.978 -75.1459 +US 19123 Philadelphia Pennsylvania PA Philadelphia 101 39.966 -75.151 +US 19124 Philadelphia Pennsylvania PA Philadelphia 101 40.0178 -75.0895 +US 19125 Philadelphia Pennsylvania PA Philadelphia 101 39.9788 -75.1262 +US 19127 Philadelphia Pennsylvania PA Philadelphia 101 40.0275 -75.2242 +US 19128 Philadelphia Pennsylvania PA Philadelphia 101 40.0402 -75.2231 +US 19129 Philadelphia Pennsylvania PA Philadelphia 101 40.0118 -75.1861 +US 19130 Philadelphia Pennsylvania PA Philadelphia 101 39.9677 -75.1735 +US 19131 Philadelphia Pennsylvania PA Philadelphia 101 39.9845 -75.2282 +US 19132 Philadelphia Pennsylvania PA Philadelphia 101 39.9954 -75.1698 +US 19133 Philadelphia Pennsylvania PA Philadelphia 101 39.9925 -75.1415 +US 19134 Philadelphia Pennsylvania PA Philadelphia 101 39.9925 -75.1133 +US 19135 Philadelphia Pennsylvania PA Philadelphia 101 40.0247 -75.0518 +US 19136 Philadelphia Pennsylvania PA Philadelphia 101 40.0422 -75.0244 +US 19137 Philadelphia Pennsylvania PA Philadelphia 101 40.0008 -75.0727 +US 19138 Philadelphia Pennsylvania PA Philadelphia 101 40.0568 -75.1569 +US 19139 Philadelphia Pennsylvania PA Philadelphia 101 39.9612 -75.2303 +US 19140 Philadelphia Pennsylvania PA Philadelphia 101 40.0118 -75.1456 +US 19141 Philadelphia Pennsylvania PA Philadelphia 101 40.0365 -75.1451 +US 19142 Philadelphia Pennsylvania PA Philadelphia 101 39.9223 -75.2338 +US 19143 Philadelphia Pennsylvania PA Philadelphia 101 39.9448 -75.2288 +US 19144 Philadelphia Pennsylvania PA Philadelphia 101 40.0338 -75.1731 +US 19145 Philadelphia Pennsylvania PA Philadelphia 101 39.9227 -75.1812 +US 19146 Philadelphia Pennsylvania PA Philadelphia 101 39.9379 -75.1794 +US 19147 Philadelphia Pennsylvania PA Philadelphia 101 39.9362 -75.1563 +US 19148 Philadelphia Pennsylvania PA Philadelphia 101 39.9207 -75.1595 +US 19149 Philadelphia Pennsylvania PA Philadelphia 101 40.0369 -75.0664 +US 19150 Philadelphia Pennsylvania PA Philadelphia 101 40.0726 -75.1706 +US 19151 Philadelphia Pennsylvania PA Philadelphia 101 39.9772 -75.2545 +US 19152 Philadelphia Pennsylvania PA Philadelphia 101 40.0606 -75.0471 +US 19153 Philadelphia Pennsylvania PA Philadelphia 101 39.9055 -75.2444 +US 19154 Philadelphia Pennsylvania PA Philadelphia 101 40.0897 -74.9781 +US 19155 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19160 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19161 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19162 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19170 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19171 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19172 Philadelphia Pennsylvania PA Philadelphia 101 39.9473 -75.15 +US 19173 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19175 Philadelphia Pennsylvania PA Philadelphia 101 39.9906 -75.1296 +US 19176 Philadelphia Pennsylvania PA Philadelphia County 101 39.9522 -75.1642 +US 19177 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19178 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19179 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19181 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19182 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19183 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19184 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19185 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19187 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19188 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19190 Philadelphia Pennsylvania PA Philadelphia County 101 39.9484 -75.1442 +US 19191 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19192 Philadelphia Pennsylvania PA Philadelphia 101 39.9511 -75.1676 +US 19193 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19194 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19195 Philadelphia Pennsylvania PA Philadelphia County 101 39.9525 -75.1645 +US 19196 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19197 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19244 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 19255 Philadelphia Pennsylvania PA Philadelphia 101 40.0018 -75.1179 +US 18302 East Stroudsburg Pennsylvania PA Pike County 103 41.0936 -75.1187 +US 18324 Bushkill Pennsylvania PA Pike 103 41.1285 -75.0132 +US 18328 Dingmans Ferry Pennsylvania PA Pike 103 41.24 -74.938 +US 18336 Matamoras Pennsylvania PA Pike 103 41.3674 -74.7154 +US 18337 Milford Pennsylvania PA Pike 103 41.3228 -74.8824 +US 18340 Millrift Pennsylvania PA Pike 103 41.4137 -74.7511 +US 18371 Tamiment Pennsylvania PA Pike 103 41.3409 -75.0241 +US 18373 Unity House Pennsylvania PA Pike 103 41.3409 -75.0241 +US 18425 Greeley Pennsylvania PA Pike 103 41.4372 -75.0125 +US 18426 Greentown Pennsylvania PA Pike 103 41.3321 -75.2819 +US 18435 Lackawaxen Pennsylvania PA Pike 103 41.4754 -75.0094 +US 18451 Paupack Pennsylvania PA Pike 103 41.3409 -75.0241 +US 18457 Rowland Pennsylvania PA Pike 103 41.4719 -75.0485 +US 18458 Shohola Pennsylvania PA Pike 103 41.4182 -74.918 +US 18464 Tafton Pennsylvania PA Pike 103 41.397 -75.1869 +US 16720 Austin Pennsylvania PA Potter 105 41.6296 -78.0908 +US 16746 Roulette Pennsylvania PA Potter 105 41.7738 -78.1538 +US 16748 Shinglehouse Pennsylvania PA Potter 105 41.9572 -78.1906 +US 16915 Coudersport Pennsylvania PA Potter 105 41.7762 -77.9567 +US 16922 Galeton Pennsylvania PA Potter 105 41.723 -77.6548 +US 16923 Genesee Pennsylvania PA Potter 105 41.9401 -77.8725 +US 16927 Harrison Valley Pennsylvania PA Potter 105 41.9587 -77.6587 +US 16937 Mills Pennsylvania PA Potter 105 41.9656 -77.7111 +US 16941 Genesee Pennsylvania PA Potter 105 41.9883 -77.758 +US 16948 Ulysses Pennsylvania PA Potter 105 41.8459 -77.7126 +US 17729 Cross Fork Pennsylvania PA Potter 105 41.4737 -77.8095 +US 17901 Pottsville Pennsylvania PA Schuylkill 107 40.684 -76.2123 +US 17921 Ashland Pennsylvania PA Schuylkill 107 40.7732 -76.343 +US 17922 Auburn Pennsylvania PA Schuylkill 107 40.5962 -76.1344 +US 17923 Branchdale Pennsylvania PA Schuylkill 107 40.6643 -76.3328 +US 17925 Brockton Pennsylvania PA Schuylkill 107 40.7508 -76.0629 +US 17929 Cressona Pennsylvania PA Schuylkill 107 40.6284 -76.195 +US 17930 Cumbola Pennsylvania PA Schuylkill 107 40.7114 -76.1392 +US 17931 Frackville Pennsylvania PA Schuylkill 107 40.7825 -76.2311 +US 17932 Frackville Pennsylvania PA Schuylkill 107 40.6491 -76.5033 +US 17933 Friedensburg Pennsylvania PA Schuylkill 107 40.5955 -76.2464 +US 17934 Gilberton Pennsylvania PA Schuylkill 107 40.7986 -76.2155 +US 17935 Girardville Pennsylvania PA Schuylkill 107 40.7922 -76.2858 +US 17936 Gordon Pennsylvania PA Schuylkill 107 40.7489 -76.3355 +US 17938 Hegins Pennsylvania PA Schuylkill 107 40.6669 -76.4732 +US 17941 Klingerstown Pennsylvania PA Schuylkill 107 40.6676 -76.6507 +US 17942 Landingville Pennsylvania PA Schuylkill 107 40.7226 -76.2296 +US 17943 Lavelle Pennsylvania PA Schuylkill 107 40.7614 -76.3872 +US 17944 Llewellyn Pennsylvania PA Schuylkill 107 40.6758 -76.2819 +US 17945 Locustdale Pennsylvania PA Schuylkill 107 40.7745 -76.3704 +US 17946 Lost Creek Pennsylvania PA Schuylkill 107 40.8081 -76.2407 +US 17948 Mahanoy City Pennsylvania PA Schuylkill 107 40.8123 -76.1396 +US 17949 Mahanoy Plane Pennsylvania PA Schuylkill 107 40.794 -76.2433 +US 17951 Mar Lin Pennsylvania PA Schuylkill 107 40.683 -76.2387 +US 17952 Mary D Pennsylvania PA Schuylkill 107 40.7473 -76.0628 +US 17953 Middleport Pennsylvania PA Schuylkill 107 40.7331 -76.0858 +US 17954 Minersville Pennsylvania PA Schuylkill 107 40.6904 -76.2597 +US 17957 Muir Pennsylvania PA Schuylkill 107 40.5926 -76.5161 +US 17959 New Philadelphia Pennsylvania PA Schuylkill 107 40.6754 -76.1558 +US 17960 New Ringgold Pennsylvania PA Schuylkill 107 40.7149 -75.9484 +US 17961 Orwigsburg Pennsylvania PA Schuylkill 107 40.6431 -76.084 +US 17963 Pine Grove Pennsylvania PA Schuylkill 107 40.5671 -76.3269 +US 17964 Pitman Pennsylvania PA Schuylkill 107 40.7049 -76.5233 +US 17965 Port Carbon Pennsylvania PA Schuylkill 107 40.6977 -76.166 +US 17966 Ravine Pennsylvania PA Schuylkill 107 40.7226 -76.2296 +US 17967 Ringtown Pennsylvania PA Schuylkill 107 40.8559 -76.2349 +US 17968 Sacramento Pennsylvania PA Schuylkill 107 40.6352 -76.6128 +US 17970 Saint Clair Pennsylvania PA Schuylkill 107 40.7193 -76.1924 +US 17972 Schuylkill Haven Pennsylvania PA Schuylkill 107 40.6306 -76.17 +US 17974 Seltzer Pennsylvania PA Schuylkill 107 40.6906 -76.2273 +US 17976 Shenandoah Pennsylvania PA Schuylkill 107 40.8167 -76.2035 +US 17978 Spring Glen Pennsylvania PA Schuylkill 107 40.6258 -76.6218 +US 17979 Summit Station Pennsylvania PA Schuylkill 107 40.5545 -76.2038 +US 17980 Tower City Pennsylvania PA Schuylkill 107 40.5845 -76.55 +US 17981 Tremont Pennsylvania PA Schuylkill 107 40.6343 -76.3905 +US 17982 Tuscarora Pennsylvania PA Schuylkill 107 40.7815 -76.0134 +US 17983 Valley View Pennsylvania PA Schuylkill 107 40.6445 -76.5448 +US 17985 Zion Grove Pennsylvania PA Schuylkill 107 40.9141 -76.1931 +US 18211 Andreas Pennsylvania PA Schuylkill 107 40.7465 -75.8342 +US 18214 Barnesville Pennsylvania PA Schuylkill 107 40.8138 -76.0611 +US 18218 Coaldale Pennsylvania PA Schuylkill 107 40.8219 -75.9104 +US 18220 Delano Pennsylvania PA Schuylkill 107 40.8389 -76.0694 +US 18231 Kelayres Pennsylvania PA Schuylkill 107 40.9002 -76.0054 +US 18237 Mcadoo Pennsylvania PA Schuylkill 107 40.8979 -75.9971 +US 18241 Nuremberg Pennsylvania PA Schuylkill 107 40.9454 -76.146 +US 18242 Oneida Pennsylvania PA Schuylkill 107 40.911 -76.1223 +US 18245 Quakake Pennsylvania PA Schuylkill 107 40.7226 -76.2296 +US 18248 Sheppton Pennsylvania PA Schuylkill 107 40.902 -76.1188 +US 18252 Tamaqua Pennsylvania PA Schuylkill 107 40.7983 -75.9735 +US 19549 Port Clinton Pennsylvania PA Schuylkill 107 40.5818 -76.0267 +US 17812 Beaver Springs Pennsylvania PA Snyder 109 40.7528 -77.2318 +US 17813 Beavertown Pennsylvania PA Snyder 109 40.7774 -77.1691 +US 17827 Freeburg Pennsylvania PA Snyder 109 40.765 -76.9395 +US 17831 Hummels Wharf Pennsylvania PA Snyder 109 40.8344 -76.8354 +US 17833 Kreamer Pennsylvania PA Snyder 109 40.7627 -77.0775 +US 17841 Mc Clure Pennsylvania PA Snyder 109 40.6991 -77.3758 +US 17842 Middleburg Pennsylvania PA Snyder 109 40.7977 -77.0468 +US 17843 Beaver Springs Pennsylvania PA Snyder 109 40.7627 -77.0775 +US 17853 Mount Pleasant Mills Pennsylvania PA Snyder 109 40.7237 -77.0135 +US 17861 Paxtonville Pennsylvania PA Snyder 109 40.7725 -77.0833 +US 17862 Penns Creek Pennsylvania PA Snyder 109 40.8574 -77.0649 +US 17864 Port Trevorton Pennsylvania PA Snyder 109 40.6996 -76.9082 +US 17870 Selinsgrove Pennsylvania PA Snyder 109 40.8224 -76.8683 +US 17876 Shamokin Dam Pennsylvania PA Snyder 109 40.8459 -76.8224 +US 17882 Troxelville Pennsylvania PA Snyder 109 40.7627 -77.0775 +US 15411 Addison Pennsylvania PA Somerset 111 39.7476 -79.3454 +US 15424 Confluence Pennsylvania PA Somerset 111 39.8243 -79.3064 +US 15485 Ursina Pennsylvania PA Somerset 111 39.8173 -79.3306 +US 15501 Somerset Pennsylvania PA Somerset 111 40.0248 -79.0808 +US 15502 Hidden Valley Pennsylvania PA Somerset 111 40.046 -79.2585 +US 15510 Somerset Pennsylvania PA Somerset 111 39.9633 -79.0409 +US 15520 Acosta Pennsylvania PA Somerset 111 40.113 -79.0702 +US 15530 Berlin Pennsylvania PA Somerset 111 39.9188 -78.9637 +US 15531 Boswell Pennsylvania PA Somerset 111 40.1918 -79.0362 +US 15532 Boynton Pennsylvania PA Somerset 111 39.7673 -79.062 +US 15538 Fairhope Pennsylvania PA Somerset 111 39.868 -78.8362 +US 15540 Fort Hill Pennsylvania PA Somerset 111 39.7961 -79.2472 +US 15541 Friedens Pennsylvania PA Somerset 111 40.011 -78.9033 +US 15542 Garrett Pennsylvania PA Somerset 111 39.8646 -79.0616 +US 15544 Gray Pennsylvania PA Somerset 111 40.1377 -79.0926 +US 15546 Jenners Pennsylvania PA Somerset 111 40.1459 -79.0676 +US 15547 Jennerstown Pennsylvania PA Somerset 111 40.1595 -79.0616 +US 15548 Kantner Pennsylvania PA Somerset 111 40.1011 -78.9387 +US 15549 Listie Pennsylvania PA Somerset 111 40.0208 -79.0123 +US 15551 Markleton Pennsylvania PA Somerset 111 39.8691 -79.2879 +US 15552 Meyersdale Pennsylvania PA Somerset 111 39.7905 -79.0261 +US 15553 New Baltimore Pennsylvania PA Somerset 111 39.9828 -78.7719 +US 15555 Quecreek Pennsylvania PA Somerset 111 40.0914 -79.0872 +US 15557 Rockwood Pennsylvania PA Somerset 111 39.9373 -79.1865 +US 15558 Salisbury Pennsylvania PA Somerset 111 39.7531 -79.0835 +US 15560 Shanksville Pennsylvania PA Somerset 111 40.0171 -78.9077 +US 15561 Sipesville Pennsylvania PA Somerset 111 40.0964 -79.0902 +US 15562 Springs Pennsylvania PA Somerset 111 39.748 -79.1237 +US 15563 Stoystown Pennsylvania PA Somerset 111 40.0948 -78.9658 +US 15564 Wellersburg Pennsylvania PA Somerset 111 39.7299 -78.8441 +US 15565 West Salisbury Pennsylvania PA Somerset 111 40.0035 -79.038 +US 15924 Cairnbrook Pennsylvania PA Somerset 111 40.1149 -78.7851 +US 15926 Central City Pennsylvania PA Somerset 111 40.0913 -78.8448 +US 15928 Davidsville Pennsylvania PA Somerset 111 40.2245 -78.9363 +US 15935 Hollsopple Pennsylvania PA Somerset 111 40.2343 -78.9515 +US 15936 Hooversville Pennsylvania PA Somerset 111 40.1488 -78.9141 +US 15937 Jerome Pennsylvania PA Somerset 111 40.2084 -78.9873 +US 15953 Seanor Pennsylvania PA Somerset 111 40.2064 -78.9005 +US 15959 Tire Hill Pennsylvania PA Somerset 111 40.268 -78.9156 +US 15963 Windber Pennsylvania PA Somerset 111 40.2287 -78.8303 +US 17731 Eagles Mere Pennsylvania PA Sullivan 113 41.4329 -76.5169 +US 17758 Muncy Valley Pennsylvania PA Sullivan 113 41.3812 -76.5415 +US 17768 Shunk Pennsylvania PA Sullivan 113 41.5536 -76.7455 +US 17770 Sonestown Pennsylvania PA Sullivan County 113 41.3536 -76.5543 +US 18614 Dushore Pennsylvania PA Sullivan 113 41.5232 -76.4021 +US 18616 Forksville Pennsylvania PA Sullivan 113 41.5269 -76.6008 +US 18619 Hillsgrove Pennsylvania PA Sullivan 113 41.4482 -76.6979 +US 18626 Laporte Pennsylvania PA Sullivan 113 41.4329 -76.5169 +US 18628 Lopez Pennsylvania PA Sullivan 113 41.418 -76.3002 +US 18632 Mildred Pennsylvania PA Sullivan 113 41.4792 -76.3831 +US 18413 Clifford Pennsylvania PA Susquehanna 115 41.6543 -75.6145 +US 18421 Forest City Pennsylvania PA Susquehanna 115 41.6523 -75.5313 +US 18430 Herrick Center Pennsylvania PA Susquehanna 115 41.7643 -75.5044 +US 18441 Lenoxville Pennsylvania PA Susquehanna 115 41.6595 -75.6282 +US 18465 Thompson Pennsylvania PA Susquehanna 115 41.834 -75.5342 +US 18470 Union Dale Pennsylvania PA Susquehanna 115 41.7079 -75.5465 +US 18801 Montrose Pennsylvania PA Susquehanna 115 41.8396 -75.8821 +US 18812 Brackney Pennsylvania PA Susquehanna 115 41.9666 -75.9375 +US 18813 Brooklyn Pennsylvania PA Susquehanna 115 41.8203 -75.8046 +US 18816 Dimock Pennsylvania PA Susquehanna 115 41.8203 -75.8046 +US 18818 Friendsville Pennsylvania PA Susquehanna 115 41.9164 -76.0257 +US 18820 Gibson Pennsylvania PA Susquehanna 115 41.8203 -75.8046 +US 18821 Great Bend Pennsylvania PA Susquehanna 115 41.9775 -75.7327 +US 18822 Hallstead Pennsylvania PA Susquehanna 115 41.9598 -75.7826 +US 18823 Harford Pennsylvania PA Susquehanna 115 41.7761 -75.6935 +US 18824 Hop Bottom Pennsylvania PA Susquehanna 115 41.6932 -75.7897 +US 18825 Jackson Pennsylvania PA Susquehanna 115 41.8203 -75.8046 +US 18826 Kingsley Pennsylvania PA Susquehanna 115 41.7659 -75.7831 +US 18827 Lanesboro Pennsylvania PA Susquehanna 115 41.9575 -75.6373 +US 18828 Lawton Pennsylvania PA Susquehanna 115 41.7573 -76.0912 +US 18830 Little Meadows Pennsylvania PA Susquehanna 115 41.9766 -76.1185 +US 18834 New Milford Pennsylvania PA Susquehanna 115 41.8664 -75.7171 +US 18839 Rushville Pennsylvania PA Susquehanna 115 41.8203 -75.8046 +US 18842 South Gibson Pennsylvania PA Susquehanna 115 41.8203 -75.8046 +US 18843 South Montrose Pennsylvania PA Susquehanna 115 41.8237 -75.8831 +US 18844 Springville Pennsylvania PA Susquehanna 115 41.7147 -75.9025 +US 18847 Susquehanna Pennsylvania PA Susquehanna 115 41.9487 -75.5862 +US 16901 Wellsboro Pennsylvania PA Tioga 117 41.7373 -77.308 +US 16911 Arnot Pennsylvania PA Tioga 117 41.772 -77.2422 +US 16912 Blossburg Pennsylvania PA Tioga 117 41.6698 -77.0797 +US 16917 Covington Pennsylvania PA Tioga 117 41.7695 -77.0005 +US 16918 Cowanesque Pennsylvania PA Tioga 117 41.772 -77.2422 +US 16920 Elkland Pennsylvania PA Tioga 117 41.9882 -77.3134 +US 16921 Gaines Pennsylvania PA Tioga 117 41.7471 -77.568 +US 16928 Knoxville Pennsylvania PA Tioga 117 41.9596 -77.4357 +US 16929 Lawrenceville Pennsylvania PA Tioga 117 41.9783 -77.1136 +US 16930 Liberty Pennsylvania PA Tioga 117 41.5656 -77.1195 +US 16932 Mainesburg Pennsylvania PA Tioga 117 41.79 -76.9682 +US 16933 Mansfield Pennsylvania PA Tioga 117 41.8123 -77.0716 +US 16935 Middlebury Center Pennsylvania PA Tioga 117 41.8664 -77.3128 +US 16936 Millerton Pennsylvania PA Tioga 117 41.9625 -76.9748 +US 16938 Morris Pennsylvania PA Tioga 117 41.5475 -77.292 +US 16939 Morris Run Pennsylvania PA Tioga 117 41.6775 -77.0152 +US 16940 Nelson Pennsylvania PA Tioga 117 41.9787 -77.2419 +US 16942 Osceola Pennsylvania PA Tioga 117 41.9848 -77.354 +US 16943 Sabinsville Pennsylvania PA Tioga 117 41.8408 -77.6155 +US 16946 Tioga Pennsylvania PA Tioga 117 41.9125 -77.1393 +US 16950 Westfield Pennsylvania PA Tioga 117 41.9193 -77.523 +US 17765 Roaring Branch Pennsylvania PA Tioga 117 41.5692 -76.9421 +US 17810 Allenwood Pennsylvania PA Union 119 41.1264 -76.9724 +US 17829 Hartleton Pennsylvania PA Union 119 40.9005 -77.1558 +US 17835 Laurelton Pennsylvania PA Union 119 40.9781 -77.0818 +US 17837 Lewisburg Pennsylvania PA Union 119 40.9702 -76.9099 +US 17844 Mifflinburg Pennsylvania PA Union 119 40.9218 -77.0505 +US 17845 Millmont Pennsylvania PA Union 119 40.8803 -77.1941 +US 17855 New Berlin Pennsylvania PA Union 119 40.8802 -76.9861 +US 17856 New Columbia Pennsylvania PA Union 119 41.0541 -76.9019 +US 17880 Swengel Pennsylvania PA Union 119 40.9781 -77.0818 +US 17883 Vicksburg Pennsylvania PA Union 119 40.9781 -77.0818 +US 17885 Weikert Pennsylvania PA Union 119 40.9781 -77.0818 +US 17886 West Milton Pennsylvania PA Union 119 41.0179 -76.8708 +US 17887 White Deer Pennsylvania PA Union 119 40.9781 -77.0818 +US 17889 Winfield Pennsylvania PA Union 119 40.8908 -76.8718 +US 16301 Oil City Pennsylvania PA Venango 121 41.4319 -79.6916 +US 16317 Cooperstown Pennsylvania PA Venango 121 41.498 -79.8757 +US 16319 Cranberry Pennsylvania PA Venango 121 41.3197 -79.6317 +US 16323 Franklin Pennsylvania PA Venango 121 41.4048 -79.8309 +US 16341 Pleasantville Pennsylvania PA Venango 121 41.5867 -79.5685 +US 16342 Polk Pennsylvania PA Venango 121 41.3583 -79.9346 +US 16343 Reno Pennsylvania PA Venango 121 41.411 -79.7493 +US 16344 Rouseville Pennsylvania PA Venango 121 41.4717 -79.6881 +US 16346 Seneca Pennsylvania PA Venango 121 41.3744 -79.6759 +US 16362 Utica Pennsylvania PA Venango 121 41.4798 -79.9403 +US 16364 Venus Pennsylvania PA Venango 121 41.3761 -79.5048 +US 16372 Clintonville Pennsylvania PA Venango 121 41.2002 -79.8734 +US 16373 Emlenton Pennsylvania PA Venango 121 41.2028 -79.747 +US 16374 Kennerdell Pennsylvania PA Venango 121 41.2848 -79.7393 +US 16312 Chandlers Valley Pennsylvania PA Warren 123 41.9358 -79.3097 +US 16313 Clarendon Pennsylvania PA Warren 123 41.7302 -79.1719 +US 16329 Irvine Pennsylvania PA Warren 123 41.8117 -79.2643 +US 16340 Pittsfield Pennsylvania PA Warren 123 41.8366 -79.4196 +US 16345 Russell Pennsylvania PA Warren 123 41.9461 -79.1271 +US 16347 Sheffield Pennsylvania PA Warren 123 41.7005 -79.0348 +US 16350 Sugar Grove Pennsylvania PA Warren 123 41.9475 -79.3186 +US 16351 Tidioute Pennsylvania PA Warren 123 41.703 -79.3752 +US 16352 Tiona Pennsylvania PA Warren 123 41.7434 -79.0528 +US 16365 Warren Pennsylvania PA Warren 123 41.8436 -79.1726 +US 16366 Warren Pennsylvania PA Warren 123 41.8117 -79.2643 +US 16367 Warren Pennsylvania PA Warren 123 41.8117 -79.2643 +US 16368 Irvine Pennsylvania PA Warren 123 41.8117 -79.2643 +US 16369 Irvine Pennsylvania PA Warren 123 41.8117 -79.2643 +US 16371 Youngsville Pennsylvania PA Warren 123 41.8537 -79.3187 +US 16402 Bear Lake Pennsylvania PA Warren 123 41.9701 -79.4614 +US 16405 Columbus Pennsylvania PA Warren 123 41.9382 -79.5731 +US 16416 Garland Pennsylvania PA Warren 123 41.8188 -79.4463 +US 16420 Grand Valley Pennsylvania PA Warren 123 41.6963 -79.5473 +US 16436 Spring Creek Pennsylvania PA Warren 123 41.92 -79.4482 +US 15004 Atlasburg Pennsylvania PA Washington 125 40.3413 -80.3822 +US 15019 Bulger Pennsylvania PA Washington 125 40.4051 -80.3622 +US 15021 Burgettstown Pennsylvania PA Washington 125 40.3821 -80.4044 +US 15022 Charleroi Pennsylvania PA Washington 125 40.1404 -79.92 +US 15029 New Eagle Pennsylvania PA Washington County 125 40.2186 -79.9687 +US 15033 Donora Pennsylvania PA Washington 125 40.1768 -79.8619 +US 15036 Eldersville Pennsylvania PA Washington 125 40.2149 -80.1791 +US 15038 Elrama Pennsylvania PA Washington 125 40.2521 -79.9252 +US 15053 Joffre Pennsylvania PA Washington 125 40.38 -80.3605 +US 15054 Langeloth Pennsylvania PA Washington 125 40.3625 -80.4086 +US 15055 Lawrence Pennsylvania PA Washington 125 40.3058 -80.1219 +US 15057 Mc Donald Pennsylvania PA Washington 125 40.3697 -80.2562 +US 15060 Midway Pennsylvania PA Washington 125 40.368 -80.2921 +US 15063 Monongahela Pennsylvania PA Washington 125 40.1937 -79.9241 +US 15067 New Eagle Pennsylvania PA Washington 125 40.2066 -79.9534 +US 15078 Slovan Pennsylvania PA Washington 125 40.3584 -80.3879 +US 15301 Washington Pennsylvania PA Washington 125 40.1717 -80.256 +US 15311 Amity Pennsylvania PA Washington 125 40.0498 -80.1681 +US 15312 Avella Pennsylvania PA Washington 125 40.2734 -80.4565 +US 15313 Beallsville Pennsylvania PA Washington 125 40.0655 -80.0221 +US 15314 Bentleyville Pennsylvania PA Washington 125 40.1187 -80.007 +US 15317 Canonsburg Pennsylvania PA Washington 125 40.2706 -80.1668 +US 15321 Cecil Pennsylvania PA Washington 125 40.3234 -80.1879 +US 15323 Claysville Pennsylvania PA Washington 125 40.1376 -80.3859 +US 15324 Cokeburg Pennsylvania PA Washington 125 40.1008 -80.0652 +US 15329 Prosperity Pennsylvania PA Washington 125 40.0224 -80.2613 +US 15330 Eighty Four Pennsylvania PA Washington 125 40.1868 -80.0627 +US 15331 Ellsworth Pennsylvania PA Washington 125 40.1073 -80.0204 +US 15332 Finleyville Pennsylvania PA Washington 125 40.2593 -79.9753 +US 15333 Fredericktown Pennsylvania PA Washington 125 40.0237 -80.0309 +US 15336 Gastonville Pennsylvania PA Washington 125 40.2601 -79.9927 +US 15339 Hendersonville Pennsylvania PA Washington 125 40.3018 -80.1543 +US 15340 Hickory Pennsylvania PA Washington 125 40.2925 -80.3025 +US 15342 Houston Pennsylvania PA Washington 125 40.2425 -80.2209 +US 15345 Marianna Pennsylvania PA Washington 125 40.0331 -80.1145 +US 15347 Meadow Lands Pennsylvania PA Washington 125 40.2174 -80.2269 +US 15348 Millsboro Pennsylvania PA Washington 125 39.9883 -79.9961 +US 15350 Muse Pennsylvania PA Washington 125 40.2937 -80.2005 +US 15356 West Middletown Pennsylvania PA Washington County 125 40.2772 -80.3974 +US 15358 Richeyville Pennsylvania PA Washington 125 40.0563 -79.9926 +US 15360 Scenery Hill Pennsylvania PA Washington 125 40.0923 -80.0995 +US 15361 Southview Pennsylvania PA Washington 125 40.3282 -80.2563 +US 15363 Strabane Pennsylvania PA Washington 125 40.2505 -80.1984 +US 15365 Taylorstown Pennsylvania PA Washington 125 40.1611 -80.3781 +US 15366 Van Voorhis Pennsylvania PA Washington 125 40.1101 -80.0318 +US 15367 Venetia Pennsylvania PA Washington 125 40.2755 -80.0598 +US 15368 Vestaburg Pennsylvania PA Washington 125 40.0144 -79.9889 +US 15376 West Alexander Pennsylvania PA Washington 125 40.1065 -80.4978 +US 15377 West Finley Pennsylvania PA Washington 125 39.9914 -80.4408 +US 15378 Westland Pennsylvania PA Washington 125 40.2775 -80.2731 +US 15379 West Middletown Pennsylvania PA Washington 125 40.2417 -80.4242 +US 15412 Allenport Pennsylvania PA Washington 125 40.0959 -79.8499 +US 15419 California Pennsylvania PA Washington 125 40.0625 -79.8953 +US 15423 Coal Center Pennsylvania PA Washington 125 40.0973 -79.8839 +US 15427 Daisytown Pennsylvania PA Washington 125 40.0743 -79.967 +US 15429 Denbo Pennsylvania PA Washington 125 40.0081 -79.9392 +US 15432 Dunlevy Pennsylvania PA Washington 125 40.1151 -79.8627 +US 15434 Elco Pennsylvania PA Washington 125 40.0797 -79.8758 +US 15477 Roscoe Pennsylvania PA Washington 125 40.0787 -79.8656 +US 15483 Stockdale Pennsylvania PA Washington 125 40.0826 -79.8501 +US 18401 Aldenville Pennsylvania PA Wayne 127 41.616 -75.2747 +US 18405 Beach Lake Pennsylvania PA Wayne 127 41.6034 -75.1165 +US 18415 Damascus Pennsylvania PA Wayne 127 41.7366 -75.1312 +US 18417 Equinunk Pennsylvania PA Wayne 127 41.8117 -75.1891 +US 18424 Gouldsboro Pennsylvania PA Wayne 127 41.2448 -75.5037 +US 18427 Hamlin Pennsylvania PA Wayne 127 41.4047 -75.4069 +US 18428 Hawley Pennsylvania PA Wayne 127 41.4787 -75.1978 +US 18431 Honesdale Pennsylvania PA Wayne 127 41.5792 -75.2528 +US 18436 Lake Ariel Pennsylvania PA Wayne 127 41.4395 -75.4313 +US 18437 Lake Como Pennsylvania PA Wayne 127 41.8666 -75.3231 +US 18438 Lakeville Pennsylvania PA Wayne 127 41.4223 -75.2607 +US 18439 Lakewood Pennsylvania PA Wayne 127 41.8171 -75.3838 +US 18443 Milanville Pennsylvania PA Wayne 127 41.667 -75.1185 +US 18445 Newfoundland Pennsylvania PA Wayne 127 41.3041 -75.3384 +US 18449 Orson Pennsylvania PA Wayne 127 41.616 -75.2747 +US 18453 Pleasant Mount Pennsylvania PA Wayne 127 41.7322 -75.3989 +US 18454 Poyntelle Pennsylvania PA Wayne 127 41.616 -75.2747 +US 18455 Preston Park Pennsylvania PA Wayne 127 41.8867 -75.356 +US 18456 Prompton Pennsylvania PA Wayne 127 41.582 -75.3207 +US 18459 South Canaan Pennsylvania PA Wayne 127 41.616 -75.2747 +US 18460 South Sterling Pennsylvania PA Wayne 127 41.2592 -75.3731 +US 18461 Starlight Pennsylvania PA Wayne 127 41.9251 -75.3212 +US 18462 Starrucca Pennsylvania PA Wayne 127 41.8907 -75.449 +US 18463 Sterling Pennsylvania PA Wayne 127 41.377 -75.316 +US 18469 Tyler Hill Pennsylvania PA Wayne 127 41.7011 -75.1422 +US 18472 Waymart Pennsylvania PA Wayne 127 41.5703 -75.4065 +US 18473 White Mills Pennsylvania PA Wayne 127 41.5406 -75.2229 +US 15062 Monessen Pennsylvania PA Westmoreland 129 40.1524 -79.8835 +US 15068 New Kensington Pennsylvania PA Westmoreland 129 40.5616 -79.7129 +US 15069 New Kensington Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15072 Pricedale Pennsylvania PA Westmoreland 129 40.1393 -79.8562 +US 15083 Sutersville Pennsylvania PA Westmoreland 129 40.2382 -79.7922 +US 15085 Trafford Pennsylvania PA Westmoreland 129 40.3857 -79.7223 +US 15087 Webster Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15089 West Newton Pennsylvania PA Westmoreland 129 40.2075 -79.758 +US 15448 Jacobs Creek Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15479 Smithton Pennsylvania PA Westmoreland 129 40.1553 -79.7381 +US 15601 Greensburg Pennsylvania PA Westmoreland 129 40.3074 -79.5424 +US 15605 Greensburg Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15606 Greensburg Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15610 Acme Pennsylvania PA Westmoreland 129 40.1201 -79.4051 +US 15611 Adamsburg Pennsylvania PA Westmoreland 129 40.3126 -79.6565 +US 15612 Alverton Pennsylvania PA Westmoreland 129 40.1373 -79.5997 +US 15613 Apollo Pennsylvania PA Westmoreland 129 40.5565 -79.5772 +US 15615 Ardara Pennsylvania PA Westmoreland 129 40.3606 -79.7433 +US 15616 Armbrust Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15617 Arona Pennsylvania PA Westmoreland 129 40.268 -79.6591 +US 15618 Avonmore Pennsylvania PA Westmoreland 129 40.5221 -79.4853 +US 15619 Bovard Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15620 Bradenville Pennsylvania PA Westmoreland 129 40.3238 -79.3434 +US 15621 Calumet Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15622 Champion Pennsylvania PA Westmoreland 129 40.044 -79.3247 +US 15623 Claridge Pennsylvania PA Westmoreland 129 40.3692 -79.619 +US 15624 Crabtree Pennsylvania PA Westmoreland 129 40.3578 -79.484 +US 15625 Darragh Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15626 Delmont Pennsylvania PA Westmoreland 129 40.4139 -79.5764 +US 15627 Derry Pennsylvania PA Westmoreland 129 40.3349 -79.3326 +US 15628 Donegal Pennsylvania PA Westmoreland 129 40.0996 -79.381 +US 15629 East Vandergrift Pennsylvania PA Westmoreland 129 40.598 -79.5624 +US 15632 Export Pennsylvania PA Westmoreland 129 40.4252 -79.611 +US 15633 Forbes Road Pennsylvania PA Westmoreland 129 40.3575 -79.5225 +US 15634 Grapeville Pennsylvania PA Westmoreland 129 40.3239 -79.6049 +US 15635 Hannastown Pennsylvania PA Westmoreland 129 40.352 -79.4979 +US 15636 Harrison City Pennsylvania PA Westmoreland 129 40.366 -79.6565 +US 15637 Herminie Pennsylvania PA Westmoreland 129 40.2455 -79.7172 +US 15638 Hostetter Pennsylvania PA Westmoreland 129 40.2611 -79.1431 +US 15639 Hunker Pennsylvania PA Westmoreland 129 40.2149 -79.5824 +US 15640 Hutchinson Pennsylvania PA Westmoreland 129 40.2251 -79.7328 +US 15641 Hyde Park Pennsylvania PA Westmoreland 129 40.6311 -79.5899 +US 15642 Irwin Pennsylvania PA Westmoreland 129 40.3191 -79.7205 +US 15644 Jeannette Pennsylvania PA Westmoreland 129 40.3295 -79.6144 +US 15646 Jones Mills Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15647 Larimer Pennsylvania PA Westmoreland 129 40.3415 -79.7272 +US 15650 Latrobe Pennsylvania PA Westmoreland 129 40.2926 -79.4103 +US 15655 Laughlintown Pennsylvania PA Westmoreland 129 40.208 -79.1806 +US 15658 Ligonier Pennsylvania PA Westmoreland 129 40.2713 -79.2511 +US 15660 Lowber Pennsylvania PA Westmoreland 129 40.2488 -79.7646 +US 15661 Loyalhanna Pennsylvania PA Westmoreland 129 40.3222 -79.3601 +US 15662 Luxor Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15663 Madison Pennsylvania PA Westmoreland 129 40.2467 -79.676 +US 15664 Mammoth Pennsylvania PA Westmoreland 129 40.3108 -79.6172 +US 15665 Manor Pennsylvania PA Westmoreland 129 40.3359 -79.6607 +US 15666 Mount Pleasant Pennsylvania PA Westmoreland 129 40.1742 -79.5134 +US 15668 Murrysville Pennsylvania PA Westmoreland 129 40.4467 -79.6842 +US 15670 New Alexandria Pennsylvania PA Westmoreland 129 40.3981 -79.3966 +US 15671 New Derry Pennsylvania PA Westmoreland 129 40.3494 -79.3225 +US 15672 New Stanton Pennsylvania PA Westmoreland 129 40.2233 -79.6182 +US 15674 Norvelt Pennsylvania PA Westmoreland 129 40.216 -79.4872 +US 15675 Penn Pennsylvania PA Westmoreland 129 40.3301 -79.6413 +US 15676 Pleasant Unity Pennsylvania PA Westmoreland 129 40.2424 -79.4542 +US 15677 Rector Pennsylvania PA Westmoreland 129 40.1864 -79.2473 +US 15678 Rillton Pennsylvania PA Westmoreland 129 40.2872 -79.7262 +US 15679 Ruffs Dale Pennsylvania PA Westmoreland 129 40.1585 -79.6277 +US 15680 Salina Pennsylvania PA Westmoreland 129 40.5189 -79.4959 +US 15683 Scottdale Pennsylvania PA Westmoreland 129 40.1029 -79.593 +US 15684 Slickville Pennsylvania PA Westmoreland 129 40.4653 -79.5067 +US 15685 Southwest Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15687 Stahlstown Pennsylvania PA Westmoreland 129 40.1386 -79.3445 +US 15688 Tarrs Pennsylvania PA Westmoreland 129 40.1686 -79.5848 +US 15689 United Pennsylvania PA Westmoreland 129 40.3602 -79.4398 +US 15690 Vandergrift Pennsylvania PA Westmoreland 129 40.6418 -79.5399 +US 15691 Wendel Pennsylvania PA Westmoreland 129 40.294 -79.6866 +US 15692 Westmoreland City Pennsylvania PA Westmoreland 129 40.3294 -79.6806 +US 15693 Whitney Pennsylvania PA Westmoreland 129 40.2483 -79.4086 +US 15695 Wyano Pennsylvania PA Westmoreland 129 40.1962 -79.6942 +US 15696 Youngstown Pennsylvania PA Westmoreland 129 40.2793 -79.3661 +US 15697 Youngwood Pennsylvania PA Westmoreland 129 40.2395 -79.5823 +US 15698 Yukon Pennsylvania PA Westmoreland 129 40.2155 -79.6849 +US 15779 Torrance Pennsylvania PA Westmoreland 129 40.3992 -79.2177 +US 15923 Bolivar Pennsylvania PA Westmoreland 129 40.3673 -79.1605 +US 15944 New Florence Pennsylvania PA Westmoreland 129 40.3823 -79.0968 +US 15954 Seward Pennsylvania PA Westmoreland 129 40.4099 -79.0232 +US 18419 Factoryville Pennsylvania PA Wyoming 131 41.5762 -75.7652 +US 18446 Nicholson Pennsylvania PA Wyoming 131 41.6412 -75.7641 +US 18615 Falls Pennsylvania PA Wyoming 131 41.4667 -75.856 +US 18623 Laceyville Pennsylvania PA Wyoming 131 41.6662 -76.1426 +US 18625 Lake Winola Pennsylvania PA Wyoming 131 41.5096 -75.8508 +US 18629 Mehoopany Pennsylvania PA Wyoming 131 41.5587 -76.1035 +US 18630 Meshoppen Pennsylvania PA Wyoming 131 41.6392 -76.0155 +US 18636 Noxen Pennsylvania PA Wyoming 131 41.4181 -76.046 +US 18657 Tunkhannock Pennsylvania PA Wyoming 131 41.5664 -75.9757 +US 17019 Dillsburg Pennsylvania PA York 133 40.0964 -77.0339 +US 17302 Airville Pennsylvania PA York 133 39.821 -76.4012 +US 17309 Brogue Pennsylvania PA York 133 39.8608 -76.4673 +US 17311 Codorus Pennsylvania PA York 133 39.8718 -76.7599 +US 17312 Craley Pennsylvania PA York 133 39.9467 -76.5066 +US 17313 Dallastown Pennsylvania PA York 133 39.9124 -76.6535 +US 17314 Delta Pennsylvania PA York 133 39.7518 -76.3441 +US 17315 Dover Pennsylvania PA York 133 40.0062 -76.8555 +US 17317 East Prospect Pennsylvania PA York 133 39.9701 -76.5217 +US 17318 Emigsville Pennsylvania PA York 133 40.0215 -76.7266 +US 17319 Etters Pennsylvania PA York 133 40.1545 -76.8019 +US 17321 Fawn Grove Pennsylvania PA York 133 39.751 -76.4392 +US 17322 Felton Pennsylvania PA York 133 39.836 -76.5937 +US 17323 Franklintown Pennsylvania PA York 133 40.075 -77.0279 +US 17327 Glen Rock Pennsylvania PA York 133 39.7813 -76.7477 +US 17329 Glenville Pennsylvania PA York 133 39.7669 -76.8777 +US 17331 Hanover Pennsylvania PA York 133 39.7943 -76.9812 +US 17332 Hanover Pennsylvania PA York 133 39.775 -76.7351 +US 17333 Hanover Pennsylvania PA York 133 39.973 -76.6878 +US 17334 Hanover Pennsylvania PA York County 133 39.805 -76.9736 +US 17339 Lewisberry Pennsylvania PA York 133 40.1463 -76.87 +US 17342 Loganville Pennsylvania PA York 133 39.8536 -76.708 +US 17345 Manchester Pennsylvania PA York 133 40.0695 -76.7332 +US 17346 Menges Mills Pennsylvania PA York 133 40.0796 -76.7036 +US 17347 Mount Wolf Pennsylvania PA York 133 40.0711 -76.6966 +US 17349 New Freedom Pennsylvania PA York 133 39.7423 -76.6841 +US 17352 New Park Pennsylvania PA York 133 39.76 -76.5042 +US 17354 Porters Sideling Pennsylvania PA York 133 39.8246 -76.8993 +US 17355 Railroad Pennsylvania PA York 133 39.7573 -76.6994 +US 17356 Red Lion Pennsylvania PA York 133 39.9026 -76.6081 +US 17358 Rossville Pennsylvania PA York 133 39.973 -76.6878 +US 17360 Seven Valleys Pennsylvania PA York 133 39.8556 -76.7383 +US 17361 Shrewsbury Pennsylvania PA York 133 39.7601 -76.6748 +US 17362 Spring Grove Pennsylvania PA York 133 39.8572 -76.8774 +US 17363 Stewartstown Pennsylvania PA York 133 39.772 -76.597 +US 17364 Thomasville Pennsylvania PA York 133 39.9346 -76.8822 +US 17365 Wellsville Pennsylvania PA York 133 40.0557 -76.9443 +US 17366 Windsor Pennsylvania PA York 133 39.9233 -76.5591 +US 17368 Wrightsville Pennsylvania PA York 133 39.9966 -76.527 +US 17370 York Haven Pennsylvania PA York 133 40.1222 -76.7737 +US 17371 York New Salem Pennsylvania PA York 133 39.9006 -76.7896 +US 17401 York Pennsylvania PA York 133 39.9635 -76.7269 +US 17402 York Pennsylvania PA York 133 39.959 -76.6592 +US 17403 York Pennsylvania PA York 133 39.9494 -76.713 +US 17404 York Pennsylvania PA York 133 40.0023 -76.7712 +US 17405 York Pennsylvania PA York 133 40.0086 -76.5972 +US 17406 York Pennsylvania PA York 133 40.0046 -76.5947 +US 17407 York Pennsylvania PA York 133 39.8833 -76.712 +US 17408 York Pennsylvania PA York County 133 39.9492 -76.8018 +US 17415 York Pennsylvania PA York 133 39.973 -76.6878 +US 96940 Palau PW 150 7.2257 134.3622 +US 02806 Barrington Rhode Island RI Bristol 001 41.7443 -71.3175 +US 02809 Bristol Rhode Island RI Bristol 001 41.6825 -71.2676 +US 02872 Prudence Island Rhode Island RI Bristol 001 41.7071 -71.2868 +US 02885 Warren Rhode Island RI Bristol 001 41.7256 -71.2702 +US 02816 Coventry Rhode Island RI Kent 003 41.6914 -71.5768 +US 02817 West Greenwich Rhode Island RI Kent 003 41.64 -71.6435 +US 02818 East Greenwich Rhode Island RI Kent 003 41.6498 -71.474 +US 02827 Greene Rhode Island RI Kent 003 41.7062 -71.7356 +US 02886 Warwick Rhode Island RI Kent 003 41.7026 -71.4476 +US 02887 Warwick Rhode Island RI Kent 003 41.6825 -71.5577 +US 02888 Warwick Rhode Island RI Kent 003 41.7494 -71.4084 +US 02889 Warwick Rhode Island RI Kent 003 41.7141 -71.3901 +US 02893 West Warwick Rhode Island RI Kent 003 41.7004 -71.5183 +US 02801 Adamsville Rhode Island RI Newport 005 41.5301 -71.2841 +US 02835 Jamestown Rhode Island RI Newport 005 41.5164 -71.3761 +US 02837 Little Compton Rhode Island RI Newport 005 41.522 -71.1612 +US 02840 Newport Rhode Island RI Newport 005 41.4876 -71.3271 +US 02841 Newport Rhode Island RI Newport 005 41.499 -71.299 +US 02842 Middletown Rhode Island RI Newport 005 41.5198 -71.2731 +US 02871 Portsmouth Rhode Island RI Newport 005 41.5944 -71.252 +US 02878 Tiverton Rhode Island RI Newport 005 41.6338 -71.1808 +US 02802 Albion Rhode Island RI Providence 007 41.9541 -71.4621 +US 02814 Chepachet Rhode Island RI Providence 007 41.9155 -71.6795 +US 02815 Clayville Rhode Island RI Providence 007 41.7778 -71.6706 +US 02823 Fiskeville Rhode Island RI Providence 007 41.7312 -71.5468 +US 02824 Forestdale Rhode Island RI Providence 007 42.0002 -71.5631 +US 02825 Foster Rhode Island RI Providence 007 41.7815 -71.7187 +US 02826 Glendale Rhode Island RI Providence 007 41.9824 -71.6008 +US 02828 Greenville Rhode Island RI Providence 007 41.8734 -71.5569 +US 02829 Harmony Rhode Island RI Providence 007 41.8793 -71.5894 +US 02830 Harrisville Rhode Island RI Providence 007 41.9764 -71.6534 +US 02831 Hope Rhode Island RI Providence 007 41.7516 -71.5612 +US 02838 Manville Rhode Island RI Providence 007 41.9689 -71.4741 +US 02839 Mapleville Rhode Island RI Providence 007 41.9417 -71.6376 +US 02857 North Scituate Rhode Island RI Providence 007 41.8439 -71.6242 +US 02858 Oakland Rhode Island RI Providence 007 41.9636 -71.6429 +US 02859 Pascoag Rhode Island RI Providence 007 41.9627 -71.7099 +US 02860 Pawtucket Rhode Island RI Providence 007 41.8729 -71.3907 +US 02861 Pawtucket Rhode Island RI Providence 007 41.8814 -71.356 +US 02862 Pawtucket Rhode Island RI Providence 007 41.8612 -71.3691 +US 02863 Central Falls Rhode Island RI Providence 007 41.8883 -71.3945 +US 02864 Cumberland Rhode Island RI Providence 007 41.9484 -71.4154 +US 02865 Lincoln Rhode Island RI Providence 007 41.9089 -71.4348 +US 02876 Slatersville Rhode Island RI Providence 007 41.9984 -71.5763 +US 02895 Woonsocket Rhode Island RI Providence 007 41.9846 -71.5194 +US 02896 North Smithfield Rhode Island RI Providence 007 41.9724 -71.5508 +US 02901 Providence Rhode Island RI Providence 007 41.8227 -71.4145 +US 02902 Providence Rhode Island RI Providence 007 41.8184 -71.4249 +US 02903 Providence Rhode Island RI Providence 007 41.82 -71.4158 +US 02904 Providence Rhode Island RI Providence 007 41.8541 -71.4378 +US 02905 Providence Rhode Island RI Providence 007 41.7845 -71.3959 +US 02906 Providence Rhode Island RI Providence 007 41.8351 -71.3971 +US 02907 Providence Rhode Island RI Providence 007 41.7971 -71.4255 +US 02908 Providence Rhode Island RI Providence 007 41.8383 -71.4377 +US 02909 Providence Rhode Island RI Providence 007 41.8206 -71.4443 +US 02910 Cranston Rhode Island RI Providence 007 41.7766 -71.4383 +US 02911 North Providence Rhode Island RI Providence 007 41.8547 -71.4735 +US 02912 Providence Rhode Island RI Providence 007 41.8267 -71.3977 +US 02914 East Providence Rhode Island RI Providence 007 41.8138 -71.3688 +US 02915 Riverside Rhode Island RI Providence 007 41.7723 -71.3542 +US 02916 Rumford Rhode Island RI Providence 007 41.8425 -71.3559 +US 02917 Smithfield Rhode Island RI Providence 007 41.8964 -71.5207 +US 02918 Providence Rhode Island RI Providence 007 41.8415 -71.4404 +US 02919 Johnston Rhode Island RI Providence 007 41.8274 -71.52 +US 02920 Cranston Rhode Island RI Providence 007 41.7716 -71.4659 +US 02921 Cranston Rhode Island RI Providence 007 41.7614 -71.5061 +US 02940 Providence Rhode Island RI Providence 007 41.8718 -71.5585 +US 02804 Ashaway Rhode Island RI Washington 009 41.4231 -71.7837 +US 02807 Block Island Rhode Island RI Washington 009 41.1715 -71.5748 +US 02808 Bradford Rhode Island RI Washington 009 41.4114 -71.7465 +US 02812 Carolina Rhode Island RI Washington 009 41.4691 -71.6751 +US 02813 Charlestown Rhode Island RI Washington 009 41.4007 -71.6615 +US 02822 Exeter Rhode Island RI Washington 009 41.574 -71.6076 +US 02832 Hope Valley Rhode Island RI Washington 009 41.5096 -71.7339 +US 02833 Hopkinton Rhode Island RI Washington 009 41.4751 -71.7726 +US 02836 Kenyon Rhode Island RI Washington 009 41.4474 -71.6204 +US 02852 North Kingstown Rhode Island RI Washington 009 41.5894 -71.4625 +US 02854 North Kingstown Rhode Island RI Washington 009 41.3753 -71.6439 +US 02873 Rockville Rhode Island RI Washington 009 41.5199 -71.774 +US 02874 Saunderstown Rhode Island RI Washington 009 41.5105 -71.4427 +US 02875 Shannock Rhode Island RI Washington 009 41.456 -71.6355 +US 02877 Slocum Rhode Island RI Washington 009 41.5289 -71.5299 +US 02879 Wakefield Rhode Island RI Washington 009 41.4437 -71.5342 +US 02880 Wakefield Rhode Island RI Washington 009 41.3753 -71.6439 +US 02881 Kingston Rhode Island RI Washington 009 41.4803 -71.5292 +US 02882 Narragansett Rhode Island RI Washington 009 41.4353 -71.4616 +US 02883 Peace Dale Rhode Island RI Washington 009 41.3753 -71.6439 +US 02891 Westerly Rhode Island RI Washington 009 41.3691 -71.8126 +US 02892 West Kingston Rhode Island RI Washington 009 41.5058 -71.6211 +US 02894 Wood River Junction Rhode Island RI Washington 009 41.45 -71.7074 +US 02898 Wyoming Rhode Island RI Washington 009 41.5041 -71.663 +US 29620 Abbeville South Carolina SC Abbeville 001 34.1819 -82.3785 +US 29628 Calhoun Falls South Carolina SC Abbeville 001 34.0999 -82.5805 +US 29638 Donalds South Carolina SC Abbeville 001 34.3304 -82.3367 +US 29639 Due West South Carolina SC Abbeville 001 34.3344 -82.4002 +US 29659 Lowndesville South Carolina SC Abbeville 001 34.2213 -82.6318 +US 29124 Perry South Carolina SC Aiken 003 33.6448 -81.3125 +US 29137 Salley South Carolina SC Aiken 003 33.5972 -81.3184 +US 29164 Wagener South Carolina SC Aiken 003 33.6494 -81.3995 +US 29801 Aiken South Carolina SC Aiken 003 33.553 -81.7194 +US 29802 Aiken South Carolina SC Aiken 003 33.7235 -81.5907 +US 29803 Aiken South Carolina SC Aiken 003 33.5059 -81.6951 +US 29804 Aiken South Carolina SC Aiken 003 33.5377 -81.5999 +US 29805 Aiken South Carolina SC Aiken 003 33.6993 -81.6465 +US 29808 Aiken South Carolina SC Aiken 003 33.5377 -81.5999 +US 29809 New Ellenton South Carolina SC Aiken 003 33.413 -81.69 +US 29814 Kline South Carolina SC Aiken County 003 33.1257 -81.3426 +US 29816 Bath South Carolina SC Aiken 003 33.497 -81.8509 +US 29822 Clearwater South Carolina SC Aiken 003 33.4997 -81.8649 +US 29828 Gloverville South Carolina SC Aiken 003 33.5182 -81.8277 +US 29829 Graniteville South Carolina SC Aiken 003 33.563 -81.8147 +US 29831 Jackson South Carolina SC Aiken 003 33.3389 -81.7976 +US 29834 Langley South Carolina SC Aiken 003 33.4979 -81.8445 +US 29839 Montmorenci South Carolina SC Aiken 003 33.5073 -81.5992 +US 29841 North Augusta South Carolina SC Aiken 003 33.5251 -81.9394 +US 29842 Beech Island South Carolina SC Aiken 003 33.4707 -81.8639 +US 29850 Vaucluse South Carolina SC Aiken 003 33.5458 -81.6862 +US 29851 Warrenville South Carolina SC Aiken 003 33.526 -81.7956 +US 29856 Windsor South Carolina SC Aiken 003 33.4674 -81.5136 +US 29860 North Augusta South Carolina SC Aiken 003 33.6028 -81.9748 +US 29861 North Augusta South Carolina SC Aiken 003 33.5377 -81.5999 +US 29810 Allendale South Carolina SC Allendale 005 33.0077 -81.3203 +US 29827 Fairfax South Carolina SC Allendale 005 32.9515 -81.2586 +US 29836 Martin South Carolina SC Allendale 005 33.1093 -81.5003 +US 29846 Sycamore South Carolina SC Allendale 005 33.0241 -81.2258 +US 29849 Ulmer South Carolina SC Allendale 005 33.0988 -81.2068 +US 29621 Anderson South Carolina SC Anderson 007 34.5261 -82.6304 +US 29622 Anderson South Carolina SC Anderson 007 34.492 -82.7829 +US 29623 Anderson South Carolina SC Anderson 007 34.4381 -82.8354 +US 29624 Anderson South Carolina SC Anderson 007 34.4373 -82.6251 +US 29625 Anderson South Carolina SC Anderson 007 34.5271 -82.7087 +US 29626 Anderson South Carolina SC Anderson 007 34.4596 -82.7614 +US 29627 Belton South Carolina SC Anderson 007 34.5087 -82.5101 +US 29654 Honea Path South Carolina SC Anderson 007 34.4417 -82.4255 +US 29655 Iva South Carolina SC Anderson 007 34.3198 -82.6574 +US 29656 La France South Carolina SC Anderson 007 34.6252 -82.7654 +US 29669 Pelzer South Carolina SC Anderson 007 34.6461 -82.4673 +US 29670 Pendleton South Carolina SC Anderson 007 34.6369 -82.7406 +US 29677 Sandy Springs South Carolina SC Anderson 007 34.5975 -82.7568 +US 29684 Starr South Carolina SC Anderson 007 34.3962 -82.6897 +US 29689 Townville South Carolina SC Anderson 007 34.5226 -82.8963 +US 29697 Williamston South Carolina SC Anderson 007 34.6206 -82.511 +US 29003 Bamberg South Carolina SC Bamberg 009 33.2779 -81.0177 +US 29042 Denmark South Carolina SC Bamberg 009 33.3209 -81.1407 +US 29081 Ehrhardt South Carolina SC Bamberg 009 33.1044 -81.0221 +US 29843 Olar South Carolina SC Bamberg 009 33.1836 -81.164 +US 29812 Barnwell South Carolina SC Barnwell 011 33.2335 -81.3523 +US 29813 Hilda South Carolina SC Barnwell 011 33.2917 -81.4827 +US 29817 Blackville South Carolina SC Barnwell 011 33.3645 -81.2718 +US 29826 Elko South Carolina SC Barnwell 011 33.386 -81.3785 +US 29853 Williston South Carolina SC Barnwell 011 33.3926 -81.4161 +US 29901 Beaufort South Carolina SC Beaufort 013 32.4244 -80.5653 +US 29902 Beaufort South Carolina SC Beaufort 013 32.4047 -80.6531 +US 29903 Beaufort South Carolina SC Beaufort 013 32.444 -80.7352 +US 29904 Beaufort South Carolina SC Beaufort 013 32.3906 -80.661 +US 29905 Beaufort South Carolina SC Beaufort 013 32.3401 -80.689 +US 29906 Beaufort South Carolina SC Beaufort 013 32.3823 -80.7603 +US 29907 Ladys Island South Carolina SC Beaufort 013 32.4541 -80.6003 +US 29910 Bluffton South Carolina SC Beaufort 013 32.2513 -80.8721 +US 29914 Dale South Carolina SC Beaufort 013 32.5527 -80.677 +US 29915 Daufuskie Island South Carolina SC Beaufort 013 32.1145 -80.8686 +US 29920 Saint Helena Island South Carolina SC Beaufort 013 32.3716 -80.5383 +US 29925 Hilton Head Island South Carolina SC Beaufort 013 32.2132 -80.7997 +US 29926 Hilton Head Island South Carolina SC Beaufort 013 32.2077 -80.7476 +US 29928 Hilton Head Island South Carolina SC Beaufort 013 32.1665 -80.7569 +US 29931 Lobeco South Carolina SC Beaufort 013 32.5384 -80.7026 +US 29935 Port Royal South Carolina SC Beaufort 013 32.3874 -80.6844 +US 29938 Hilton Head Island South Carolina SC Beaufort 013 32.3906 -80.661 +US 29940 Seabrook South Carolina SC Beaufort 013 32.5693 -80.7192 +US 29941 Sheldon South Carolina SC Beaufort 013 32.5431 -80.8126 +US 29410 Charleston South Carolina SC Berkeley 015 32.9302 -80.0027 +US 29430 Bethera South Carolina SC Berkeley 015 33.2146 -79.8169 +US 29431 Bonneau South Carolina SC Berkeley 015 33.2703 -79.8736 +US 29434 Cordesville South Carolina SC Berkeley 015 33.1362 -79.8826 +US 29436 Cross South Carolina SC Berkeley 015 33.3364 -80.1859 +US 29445 Goose Creek South Carolina SC Berkeley 015 33.058 -80.0101 +US 29450 Huger South Carolina SC Berkeley 015 33.0439 -79.7841 +US 29453 Jamestown South Carolina SC Berkeley 015 33.2221 -79.6282 +US 29456 Ladson South Carolina SC Berkeley 015 32.993 -80.1257 +US 29461 Moncks Corner South Carolina SC Berkeley 015 33.1971 -80.0233 +US 29468 Pineville South Carolina SC Berkeley 015 33.4199 -80.0932 +US 29469 Pinopolis South Carolina SC Berkeley 015 33.2241 -80.0398 +US 29476 Russellville South Carolina SC Berkeley 015 33.1642 -79.9042 +US 29479 Saint Stephen South Carolina SC Berkeley 015 33.3362 -79.9236 +US 29492 Charleston South Carolina SC Berkeley 015 32.9668 -79.8528 +US 29030 Cameron South Carolina SC Calhoun 017 33.5703 -80.7081 +US 29077 Lone Star South Carolina SC Calhoun County 017 33.6799 -80.6413 +US 29135 Saint Matthews South Carolina SC Calhoun 017 33.6967 -80.8678 +US 29401 Charleston South Carolina SC Charleston 019 32.7795 -79.9371 +US 29402 Charleston South Carolina SC Charleston 019 32.8488 -79.8577 +US 29403 Charleston South Carolina SC Charleston 019 32.7976 -79.9493 +US 29404 Charleston Afb South Carolina SC Charleston 019 32.8982 -80.0686 +US 29405 North Charleston South Carolina SC Charleston 019 32.853 -79.9913 +US 29406 Charleston South Carolina SC Charleston 019 32.9352 -80.0325 +US 29407 Charleston South Carolina SC Charleston 019 32.7993 -80.006 +US 29408 Charleston South Carolina SC Charleston County 019 32.7762 -79.931 +US 29409 Charleston South Carolina SC Charleston 019 32.7961 -79.9605 +US 29411 Charleston South Carolina SC Charleston County 019 32.8715 -79.9947 +US 29412 Charleston South Carolina SC Charleston 019 32.718 -79.9537 +US 29413 Charleston South Carolina SC Charleston 019 32.8488 -79.8577 +US 29414 Charleston South Carolina SC Charleston 019 32.8215 -80.0568 +US 29415 Charleston South Carolina SC Charleston 019 32.8488 -79.8577 +US 29416 Charleston South Carolina SC Charleston 019 32.8488 -79.8577 +US 29417 Charleston South Carolina SC Charleston 019 32.8488 -79.8577 +US 29418 North Charleston South Carolina SC Charleston 019 32.8929 -80.0458 +US 29419 Charleston South Carolina SC Charleston 019 32.8488 -79.8577 +US 29422 Charleston South Carolina SC Charleston 019 32.8488 -79.8577 +US 29423 Charleston South Carolina SC Charleston 019 32.8488 -79.8577 +US 29424 Charleston South Carolina SC Charleston 019 32.7831 -79.937 +US 29425 Charleston South Carolina SC Charleston 019 32.7862 -79.9471 +US 29426 Adams Run South Carolina SC Charleston 019 32.779 -80.3288 +US 29429 Awendaw South Carolina SC Charleston 019 33.0063 -79.6561 +US 29439 Folly Beach South Carolina SC Charleston 019 32.663 -79.927 +US 29449 Hollywood South Carolina SC Charleston 019 32.7105 -80.2744 +US 29451 Isle Of Palms South Carolina SC Charleston 019 32.7943 -79.7729 +US 29455 Johns Island South Carolina SC Charleston 019 32.8357 -79.8217 +US 29457 Johns Island South Carolina SC Charleston 019 32.8488 -79.8577 +US 29458 Mc Clellanville South Carolina SC Charleston 019 33.1194 -79.5074 +US 29464 Mount Pleasant South Carolina SC Charleston 019 32.8473 -79.8206 +US 29465 Mount Pleasant South Carolina SC Charleston 019 32.8488 -79.8577 +US 29466 Mount Pleasant South Carolina SC Charleston 019 32.8674 -79.8049 +US 29470 Ravenel South Carolina SC Charleston 019 32.7881 -80.2223 +US 29482 Sullivans Island South Carolina SC Charleston 019 32.7637 -79.8399 +US 29487 Wadmalaw Island South Carolina SC Charleston 019 32.6529 -80.1829 +US 29340 Gaffney South Carolina SC Cherokee 021 35.0615 -81.6491 +US 29341 Gaffney South Carolina SC Cherokee 021 35.0999 -81.7056 +US 29342 Gaffney South Carolina SC Cherokee 021 34.9963 -81.6524 +US 29702 Blacksburg South Carolina SC Cherokee 021 35.1095 -81.4942 +US 29719 Kings Creek South Carolina SC Cherokee County 021 35.0737 -81.4368 +US 29014 Blackstock South Carolina SC Chester 023 34.5779 -81.1249 +US 29055 Great Falls South Carolina SC Chester 023 34.5705 -80.9133 +US 29706 Chester South Carolina SC Chester 023 34.7149 -81.2186 +US 29712 Edgemoor South Carolina SC Chester 023 34.797 -80.9891 +US 29714 Fort Lawn South Carolina SC Chester 023 34.7006 -80.9092 +US 29724 Lando South Carolina SC Chester 023 34.7753 -81.0228 +US 29729 Richburg South Carolina SC Chester 023 34.6822 -80.9891 +US 29101 Mc Bee South Carolina SC Chesterfield 025 34.4606 -80.2544 +US 29520 Cheraw South Carolina SC Chesterfield 025 34.6863 -79.9174 +US 29584 Patrick South Carolina SC Chesterfield 025 34.5598 -80.065 +US 29709 Chesterfield South Carolina SC Chesterfield 025 34.7278 -80.0958 +US 29718 Jefferson South Carolina SC Chesterfield 025 34.6546 -80.3639 +US 29727 Mount Croghan South Carolina SC Chesterfield 025 34.7439 -80.2428 +US 29728 Pageland South Carolina SC Chesterfield 025 34.7722 -80.3966 +US 29741 Ruby South Carolina SC Chesterfield 025 34.7379 -80.191 +US 29001 Alcolu South Carolina SC Clarendon 027 33.7684 -80.1788 +US 29041 Davis Station South Carolina SC Clarendon 027 33.6884 -80.2081 +US 29051 Gable South Carolina SC Clarendon 027 33.8644 -80.1276 +US 29102 Manning South Carolina SC Clarendon 027 33.6184 -80.2116 +US 29111 New Zion South Carolina SC Clarendon 027 33.7957 -80.0148 +US 29131 Rimini South Carolina SC Clarendon County 027 33.6722 -80.4727 +US 29143 Sardinia South Carolina SC Clarendon 027 33.6884 -80.2081 +US 29148 Summerton South Carolina SC Clarendon 027 33.5946 -80.3606 +US 29162 Turbeville South Carolina SC Clarendon 027 33.8786 -79.9852 +US 29082 Lodge South Carolina SC Colleton 029 33.0377 -80.9417 +US 29433 Canadys South Carolina SC Colleton 029 33.0614 -80.6312 +US 29435 Cottageville South Carolina SC Colleton 029 32.9612 -80.4794 +US 29438 Edisto Island South Carolina SC Colleton 029 32.5486 -80.307 +US 29446 Green Pond South Carolina SC Colleton 029 32.6628 -80.528 +US 29452 Jacksonboro South Carolina SC Colleton 029 32.7305 -80.4609 +US 29474 Round O South Carolina SC Colleton 029 32.9405 -80.5739 +US 29475 Ruffin South Carolina SC Colleton 029 33.0103 -80.8137 +US 29481 Smoaks South Carolina SC Colleton 029 33.0963 -80.813 +US 29488 Walterboro South Carolina SC Colleton 029 32.9252 -80.7032 +US 29493 Williams South Carolina SC Colleton 029 33.0327 -80.8445 +US 29929 Islandton South Carolina SC Colleton 029 32.9503 -80.8916 +US 29069 Lamar South Carolina SC Darlington 031 34.1862 -80.0963 +US 29079 Lydia South Carolina SC Darlington 031 34.2783 -80.1009 +US 29532 Darlington South Carolina SC Darlington 031 34.3003 -79.8732 +US 29540 Darlington South Carolina SC Darlington 031 34.3843 -79.8422 +US 29550 Hartsville South Carolina SC Darlington 031 34.3756 -80.0842 +US 29551 Hartsville South Carolina SC Darlington 031 34.3659 -80.1324 +US 29593 Society Hill South Carolina SC Darlington 031 34.4512 -79.8865 +US 29595 Andrews South Carolina SC Darlington County 031 33.4857 -79.7176 +US 29536 Dillon South Carolina SC Dillon 033 34.4146 -79.377 +US 29542 Floyd Dale South Carolina SC Dillon 033 34.4256 -79.3523 +US 29543 Fork South Carolina SC Dillon 033 34.2873 -79.2501 +US 29547 Hamer South Carolina SC Dillon 033 34.4849 -79.3502 +US 29563 Lake View South Carolina SC Dillon 033 34.3445 -79.1929 +US 29565 Latta South Carolina SC Dillon 033 34.3398 -79.4417 +US 29567 Little Rock South Carolina SC Dillon 033 34.5613 -79.4335 +US 29573 Minturn South Carolina SC Dillon 033 34.4883 -79.4769 +US 29420 North Charleston South Carolina SC Dorchester 035 32.9336 -80.1026 +US 29437 Dorchester South Carolina SC Dorchester 035 33.1247 -80.4034 +US 29447 Grover South Carolina SC Dorchester 035 33.0863 -80.6228 +US 29448 Harleyville South Carolina SC Dorchester 035 33.2205 -80.4501 +US 29471 Reevesville South Carolina SC Dorchester 035 33.1872 -80.6672 +US 29472 Ridgeville South Carolina SC Dorchester 035 33.108 -80.3086 +US 29477 Saint George South Carolina SC Dorchester 035 33.1845 -80.5732 +US 29483 Summerville South Carolina SC Dorchester 035 33.028 -80.1739 +US 29484 Summerville South Carolina SC Dorchester 035 33.0023 -80.2267 +US 29485 Summerville South Carolina SC Dorchester 035 32.9756 -80.1831 +US 29824 Edgefield South Carolina SC Edgefield 037 33.8056 -81.966 +US 29832 Johnston South Carolina SC Edgefield 037 33.8231 -81.7972 +US 29847 Trenton South Carolina SC Edgefield 037 33.6938 -81.8534 +US 29015 Blair South Carolina SC Fairfield 039 34.4967 -81.3459 +US 29065 Jenkinsville South Carolina SC Fairfield 039 34.2717 -81.2712 +US 29106 Monticello South Carolina SC Fairfield 039 34.3736 -81.0987 +US 29130 Ridgeway South Carolina SC Fairfield 039 34.3167 -80.9288 +US 29132 Rion South Carolina SC Fairfield 039 34.3074 -81.1252 +US 29176 White Oak South Carolina SC Fairfield 039 34.3736 -81.0987 +US 29180 Winnsboro South Carolina SC Fairfield 039 34.381 -81.109 +US 29114 Olanta South Carolina SC Florence 041 33.9285 -79.9153 +US 29161 Timmonsville South Carolina SC Florence 041 34.1012 -79.9378 +US 29501 Florence South Carolina SC Florence 041 34.1838 -79.7728 +US 29502 Florence South Carolina SC Florence 041 34.201 -79.7847 +US 29503 Florence South Carolina SC Florence 041 34.063 -79.6506 +US 29504 Florence South Carolina SC Florence 041 34.0416 -79.6933 +US 29505 Florence South Carolina SC Florence 041 34.1231 -79.6893 +US 29506 Florence South Carolina SC Florence 041 34.2153 -79.6468 +US 29530 Coward South Carolina SC Florence 041 33.9905 -79.7515 +US 29541 Effingham South Carolina SC Florence 041 34.0946 -79.7918 +US 29555 Johnsonville South Carolina SC Florence 041 33.8299 -79.4783 +US 29560 Lake City South Carolina SC Florence 041 33.8655 -79.7418 +US 29583 Pamplico South Carolina SC Florence 041 33.9922 -79.5929 +US 29591 Scranton South Carolina SC Florence 041 33.9281 -79.7731 +US 29440 Georgetown South Carolina SC Georgetown 043 33.4308 -79.3235 +US 29442 Georgetown South Carolina SC Georgetown 043 33.4037 -79.2264 +US 29510 Andrews South Carolina SC Georgetown 043 33.4525 -79.5604 +US 29576 Murrells Inlet South Carolina SC Georgetown 043 33.5507 -79.0528 +US 29585 Pawleys Island South Carolina SC Georgetown 043 33.4508 -79.1341 +US 29601 Greenville South Carolina SC Greenville 045 34.8472 -82.406 +US 29602 Greenville South Carolina SC Greenville 045 34.8007 -82.3956 +US 29603 Greenville South Carolina SC Greenville 045 34.8377 -82.3715 +US 29604 Greenville South Carolina SC Greenville 045 34.8497 -82.4538 +US 29605 Greenville South Carolina SC Greenville 045 34.8001 -82.3932 +US 29606 Greenville South Carolina SC Greenville 045 34.8497 -82.4538 +US 29607 Greenville South Carolina SC Greenville 045 34.8285 -82.3516 +US 29608 Greenville South Carolina SC Greenville 045 34.8497 -82.4538 +US 29609 Greenville South Carolina SC Greenville 045 34.8921 -82.4002 +US 29610 Greenville South Carolina SC Greenville 045 34.8497 -82.4538 +US 29611 Greenville South Carolina SC Greenville 045 34.8533 -82.4493 +US 29612 Greenville South Carolina SC Greenville 045 34.8497 -82.4538 +US 29613 Greenville South Carolina SC Greenville 045 34.9249 -82.4331 +US 29614 Greenville South Carolina SC Greenville 045 34.8724 -82.3626 +US 29615 Greenville South Carolina SC Greenville 045 34.8661 -82.3198 +US 29616 Greenville South Carolina SC Greenville 045 34.8497 -82.4538 +US 29617 Greenville South Carolina SC Greenville 045 34.912 -82.4666 +US 29635 Cleveland South Carolina SC Greenville 045 35.0654 -82.6093 +US 29636 Conestee South Carolina SC Greenville 045 34.8497 -82.4538 +US 29644 Fountain Inn South Carolina SC Greenville 045 34.6578 -82.2441 +US 29650 Greer South Carolina SC Greenville 045 34.8968 -82.2674 +US 29651 Greer South Carolina SC Greenville 045 34.9453 -82.2209 +US 29652 Greer South Carolina SC Greenville 045 34.8497 -82.4538 +US 29661 Marietta South Carolina SC Greenville 045 35.0296 -82.5136 +US 29662 Mauldin South Carolina SC Greenville 045 34.7807 -82.3035 +US 29673 Piedmont South Carolina SC Greenville 045 34.7244 -82.4702 +US 29680 Simpsonville South Carolina SC Greenville 045 34.6962 -82.2893 +US 29681 Simpsonville South Carolina SC Greenville 045 34.7512 -82.255 +US 29683 Slater South Carolina SC Greenville 045 35.0289 -82.4941 +US 29687 Taylors South Carolina SC Greenville 045 34.9245 -82.3197 +US 29688 Tigerville South Carolina SC Greenville 045 35.0477 -82.353 +US 29690 Travelers Rest South Carolina SC Greenville 045 35.0039 -82.4272 +US 29646 Greenwood South Carolina SC Greenwood 047 34.1758 -82.1562 +US 29647 Greenwood South Carolina SC Greenwood 047 34.1788 -82.1631 +US 29648 Greenwood South Carolina SC Greenwood 047 34.2124 -82.1681 +US 29649 Greenwood South Carolina SC Greenwood 047 34.223 -82.1582 +US 29653 Hodges South Carolina SC Greenwood 047 34.2882 -82.2142 +US 29666 Ninety Six South Carolina SC Greenwood 047 34.1652 -82.0292 +US 29692 Ware Shoals South Carolina SC Greenwood 047 34.4025 -82.2678 +US 29695 Hodges South Carolina SC Greenwood 047 34.2186 -82.3047 +US 29819 Bradley South Carolina SC Greenwood 047 34.0326 -82.2027 +US 29848 Troy South Carolina SC Greenwood 047 33.9961 -82.151 +US 29911 Brunson South Carolina SC Hampton 049 32.9413 -81.1807 +US 29913 Crocketville South Carolina SC Hampton 049 32.9299 -81.1846 +US 29916 Early Branch South Carolina SC Hampton 049 32.723 -80.9634 +US 29918 Estill South Carolina SC Hampton 049 32.7375 -81.2178 +US 29921 Furman South Carolina SC Hampton 049 32.7182 -81.2071 +US 29922 Garnett South Carolina SC Hampton 049 32.6007 -81.2396 +US 29923 Gifford South Carolina SC Hampton 049 32.7888 -81.1269 +US 29924 Hampton South Carolina SC Hampton 049 32.8729 -81.0973 +US 29932 Luray South Carolina SC Hampton 049 32.7888 -81.1269 +US 29933 Miley South Carolina SC Hampton 049 32.7888 -81.1269 +US 29939 Scotia South Carolina SC Hampton 049 32.6786 -81.2455 +US 29944 Varnville South Carolina SC Hampton 049 32.8349 -81.0288 +US 29945 Yemassee South Carolina SC Hampton 049 32.643 -80.8129 +US 29511 Aynor South Carolina SC Horry 051 33.9823 -79.1777 +US 29526 Conway South Carolina SC Horry 051 33.8731 -79.0557 +US 29527 Conway South Carolina SC Horry 051 33.7827 -79.1473 +US 29528 Conway South Carolina SC Horry 051 33.9358 -78.9192 +US 29544 Galivants Ferry South Carolina SC Horry 051 34.0002 -79.2155 +US 29545 Green Sea South Carolina SC Horry 051 34.1668 -78.9589 +US 29566 Little River South Carolina SC Horry 051 33.8768 -78.6508 +US 29568 Longs South Carolina SC Horry 051 33.9064 -78.7934 +US 29569 Loris South Carolina SC Horry 051 34.0558 -78.9161 +US 29572 Myrtle Beach South Carolina SC Horry 051 33.7587 -78.8044 +US 29575 Myrtle Beach South Carolina SC Horry 051 33.6286 -78.9736 +US 29577 Myrtle Beach South Carolina SC Horry 051 33.6994 -78.9137 +US 29578 Myrtle Beach South Carolina SC Horry 051 33.7389 -78.9996 +US 29579 Myrtle Beach South Carolina SC Horry 051 33.7377 -78.9787 +US 29581 Nichols South Carolina SC Horry 051 34.2426 -79.1625 +US 29582 North Myrtle Beach South Carolina SC Horry 051 33.8343 -78.6606 +US 29587 Myrtle Beach South Carolina SC Horry 051 33.6211 -78.9632 +US 29588 Myrtle Beach South Carolina SC Horry 051 33.7226 -78.9782 +US 29597 North Myrtle Beach South Carolina SC Horry 051 33.7858 -78.9718 +US 29598 North Myrtle Beach South Carolina SC Horry 051 33.9358 -78.9192 +US 29909 Okatie South Carolina SC Jasper County 053 32.3301 -80.8435 +US 29912 Coosawatchie South Carolina SC Jasper 053 32.5827 -80.9307 +US 29927 Hardeeville South Carolina SC Jasper 053 32.2635 -81.0669 +US 29934 Pineland South Carolina SC Jasper 053 32.5931 -81.1078 +US 29936 Ridgeland South Carolina SC Jasper 053 32.4868 -80.9257 +US 29943 Tillman South Carolina SC Jasper 053 32.468 -81.1667 +US 29009 Bethune South Carolina SC Kershaw 055 34.4201 -80.3662 +US 29020 Camden South Carolina SC Kershaw 055 34.2696 -80.591 +US 29021 Camden South Carolina SC Kershaw County 055 34.2974 -80.6089 +US 29032 Cassatt South Carolina SC Kershaw 055 34.3424 -80.5 +US 29045 Elgin South Carolina SC Kershaw 055 34.162 -80.8113 +US 29074 Liberty Hill South Carolina SC Kershaw 055 34.457 -80.7892 +US 29078 Lugoff South Carolina SC Kershaw 055 34.2296 -80.7147 +US 29175 Westville South Carolina SC Kershaw 055 34.4418 -80.6033 +US 29058 Heath Springs South Carolina SC Lancaster 057 34.6024 -80.7103 +US 29067 Kershaw South Carolina SC Lancaster 057 34.5578 -80.5546 +US 29707 Fort Mill South Carolina SC Lancaster County 057 34.9773 -80.8584 +US 29720 Lancaster South Carolina SC Lancaster 057 34.749 -80.7616 +US 29721 Lancaster South Carolina SC Lancaster 057 34.6994 -80.7817 +US 29722 Lancaster South Carolina SC Lancaster 057 34.7673 -80.6589 +US 29744 Van Wyck South Carolina SC Lancaster 057 34.9739 -80.8518 +US 29325 Clinton South Carolina SC Laurens 059 34.4707 -81.8772 +US 29332 Cross Hill South Carolina SC Laurens 059 34.2693 -81.9843 +US 29351 Joanna South Carolina SC Laurens 059 34.4068 -81.8191 +US 29360 Laurens South Carolina SC Laurens 059 34.5289 -82.0551 +US 29370 Mountville South Carolina SC Laurens 059 34.3408 -81.9584 +US 29384 Waterloo South Carolina SC Laurens 059 34.3367 -82.088 +US 29645 Gray Court South Carolina SC Laurens 059 34.5953 -82.1147 +US 29010 Bishopville South Carolina SC Lee 061 34.2241 -80.275 +US 29046 Elliott South Carolina SC Lee 061 34.16 -80.241 +US 29080 Lynchburg South Carolina SC Lee 061 34.0526 -80.0988 +US 29006 Batesburg South Carolina SC Lexington 063 33.8702 -81.5505 +US 29033 Cayce South Carolina SC Lexington 063 33.9626 -81.0671 +US 29036 Chapin South Carolina SC Lexington 063 34.1312 -81.3318 +US 29053 Gaston South Carolina SC Lexington 063 33.8337 -81.1174 +US 29054 Gilbert South Carolina SC Lexington 063 33.9581 -81.3914 +US 29070 Leesville South Carolina SC Lexington 063 33.9132 -81.4598 +US 29071 Lexington South Carolina SC Lexington 063 33.9252 -81.2483 +US 29072 Lexington South Carolina SC Lexington 063 33.9724 -81.2359 +US 29073 Lexington South Carolina SC Lexington 063 33.8632 -81.2351 +US 29123 Pelion South Carolina SC Lexington 063 33.7766 -81.2502 +US 29160 Swansea South Carolina SC Lexington 063 33.7339 -81.0933 +US 29169 West Columbia South Carolina SC Lexington 063 33.995 -81.0888 +US 29170 West Columbia South Carolina SC Lexington 063 33.9568 -81.1405 +US 29171 West Columbia South Carolina SC Lexington 063 33.9252 -81.2483 +US 29172 West Columbia South Carolina SC Lexington 063 33.9 -81.091 +US 29212 Columbia South Carolina SC Lexington 063 34.0726 -81.1796 +US 29228 Columbia South Carolina SC Lexington 063 33.9252 -81.2483 +US 29821 Clarks Hill South Carolina SC McCormick 065 33.6505 -82.1488 +US 29835 Mc Cormick South Carolina SC McCormick 065 33.9146 -82.2719 +US 29838 Modoc South Carolina SC McCormick 065 33.7052 -82.2187 +US 29840 Mount Carmel South Carolina SC McCormick 065 34.0065 -82.5324 +US 29844 Parksville South Carolina SC McCormick 065 33.7854 -82.2111 +US 29845 Plum Branch South Carolina SC McCormick 065 33.8329 -82.248 +US 29899 Mc Cormick South Carolina SC McCormick 065 33.8356 -82.32 +US 29519 Centenary South Carolina SC Marion 067 34.027 -79.3537 +US 29546 Gresham South Carolina SC Marion 067 33.9069 -79.3564 +US 29571 Marion South Carolina SC Marion 067 34.1562 -79.3898 +US 29574 Mullins South Carolina SC Marion 067 34.2044 -79.2542 +US 29589 Rains South Carolina SC Marion 067 34.1053 -79.3221 +US 29592 Sellers South Carolina SC Marion 067 34.258 -79.4783 +US 29512 Bennettsville South Carolina SC Marlboro 069 34.6255 -79.6898 +US 29516 Blenheim South Carolina SC Marlboro 069 34.5171 -79.6442 +US 29525 Clio South Carolina SC Marlboro 069 34.5805 -79.5453 +US 29570 Mc Coll South Carolina SC Marlboro 069 34.6704 -79.5597 +US 29594 Tatum South Carolina SC Marlboro 069 34.6405 -79.5869 +US 29596 Wallace South Carolina SC Marlboro 069 34.7307 -79.8011 +US 29037 Chappells South Carolina SC Newberry 071 34.1856 -81.8644 +US 29075 Little Mountain South Carolina SC Newberry 071 34.1676 -81.4184 +US 29108 Newberry South Carolina SC Newberry 071 34.2847 -81.6157 +US 29122 Peak South Carolina SC Newberry 071 34.2386 -81.3271 +US 29126 Pomaria South Carolina SC Newberry 071 34.3063 -81.45 +US 29127 Prosperity South Carolina SC Newberry 071 34.1832 -81.5324 +US 29145 Silverstreet South Carolina SC Newberry 071 34.2207 -81.7741 +US 29178 Whitmire South Carolina SC Newberry 071 34.4955 -81.606 +US 29355 Kinards South Carolina SC Newberry 071 34.3627 -81.7638 +US 29643 Fair Play South Carolina SC Oconee 073 34.5427 -83.0297 +US 29658 Long Creek South Carolina SC Oconee 073 34.7634 -83.2776 +US 29664 Mountain Rest South Carolina SC Oconee 073 34.8541 -83.1134 +US 29665 Newry South Carolina SC Oconee 073 34.7247 -82.9106 +US 29672 Seneca South Carolina SC Oconee 073 34.774 -82.9457 +US 29675 Richland South Carolina SC Oconee 073 34.7641 -83.0883 +US 29676 Salem South Carolina SC Oconee 073 34.8728 -82.9607 +US 29678 Seneca South Carolina SC Oconee 073 34.6828 -82.9362 +US 29679 Seneca South Carolina SC Oconee 073 34.6079 -82.9397 +US 29686 Tamassee South Carolina SC Oconee 073 34.897 -83.0375 +US 29691 Walhalla South Carolina SC Oconee 073 34.8457 -83.0672 +US 29693 Westminster South Carolina SC Oconee 073 34.6965 -83.1535 +US 29696 West Union South Carolina SC Oconee 073 34.7516 -83.0399 +US 29018 Bowman South Carolina SC Orangeburg 075 33.3475 -80.6709 +US 29038 Cope South Carolina SC Orangeburg 075 33.3726 -80.9631 +US 29039 Cordova South Carolina SC Orangeburg 075 33.4275 -80.8857 +US 29047 Elloree South Carolina SC Orangeburg 075 33.4906 -80.5678 +US 29048 Eutawville South Carolina SC Orangeburg 075 33.3922 -80.32 +US 29059 Holly Hill South Carolina SC Orangeburg 075 33.3276 -80.4024 +US 29076 Livingston South Carolina SC Orangeburg County 075 33.5532 -81.1187 +US 29107 Neeses South Carolina SC Orangeburg 075 33.5343 -81.0834 +US 29112 North South Carolina SC Orangeburg 075 33.6211 -81.0601 +US 29113 Norway South Carolina SC Orangeburg 075 33.4534 -81.1097 +US 29115 Orangeburg South Carolina SC Orangeburg 075 33.5025 -80.8593 +US 29116 Orangeburg South Carolina SC Orangeburg 075 33.4959 -80.8246 +US 29117 Orangeburg South Carolina SC Orangeburg 075 33.442 -80.7975 +US 29118 Orangeburg South Carolina SC Orangeburg 075 33.5675 -80.9248 +US 29133 Rowesville South Carolina SC Orangeburg 075 33.3703 -80.8331 +US 29142 Santee South Carolina SC Orangeburg 075 33.4835 -80.4805 +US 29146 Springfield South Carolina SC Orangeburg 075 33.5343 -81.2499 +US 29163 Vance South Carolina SC Orangeburg 075 33.4139 -80.4617 +US 29432 Branchville South Carolina SC Orangeburg 075 33.2628 -80.8059 +US 29630 Central South Carolina SC Pickens 077 34.7401 -82.7947 +US 29631 Clemson South Carolina SC Pickens 077 34.6831 -82.825 +US 29632 Clemson South Carolina SC Pickens 077 34.8474 -82.7101 +US 29633 Clemson South Carolina SC Pickens 077 34.8474 -82.7101 +US 29634 Clemson South Carolina SC Pickens 077 34.8474 -82.7101 +US 29640 Easley South Carolina SC Pickens 077 34.829 -82.5796 +US 29641 Easley South Carolina SC Pickens 077 34.8135 -82.6531 +US 29642 Easley South Carolina SC Pickens 077 34.7901 -82.5937 +US 29657 Liberty South Carolina SC Pickens 077 34.7872 -82.6974 +US 29667 Norris South Carolina SC Pickens 077 34.7648 -82.7567 +US 29671 Pickens South Carolina SC Pickens 077 34.9024 -82.7058 +US 29682 Six Mile South Carolina SC Pickens 077 34.8283 -82.8278 +US 29685 Sunset South Carolina SC Pickens 077 34.9706 -82.8076 +US 29002 Ballentine South Carolina SC Richland 079 34.1265 -81.2348 +US 29016 Blythewood South Carolina SC Richland 079 34.1911 -80.9758 +US 29044 Eastover South Carolina SC Richland 079 33.9153 -80.6996 +US 29052 Gadsden South Carolina SC Richland 079 33.8455 -80.7532 +US 29061 Hopkins South Carolina SC Richland 079 33.9349 -80.8449 +US 29063 Irmo South Carolina SC Richland 079 34.1103 -81.1966 +US 29147 State Park South Carolina SC Richland 079 34.006 -80.9708 +US 29177 White Rock South Carolina SC Richland 079 34.1504 -81.2601 +US 29201 Columbia South Carolina SC Richland 079 34.0004 -81.0334 +US 29202 Columbia South Carolina SC Richland 079 33.9625 -80.9797 +US 29203 Columbia South Carolina SC Richland 079 34.0635 -81.0265 +US 29204 Columbia South Carolina SC Richland 079 34.026 -81.0046 +US 29205 Columbia South Carolina SC Richland 079 33.9903 -80.9997 +US 29206 Columbia South Carolina SC Richland 079 34.0247 -80.9532 +US 29207 Columbia South Carolina SC Richland 079 34.0197 -80.9391 +US 29208 Columbia South Carolina SC Richland 079 33.9937 -81.0199 +US 29209 Columbia South Carolina SC Richland 079 33.9659 -80.9355 +US 29210 Columbia South Carolina SC Richland 079 34.0479 -81.1101 +US 29211 Columbia South Carolina SC Richland 079 34.0967 -80.9223 +US 29214 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29215 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29216 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29217 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29218 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29219 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29220 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29221 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29222 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29223 Columbia South Carolina SC Richland 079 34.0853 -80.9167 +US 29224 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29225 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29226 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29227 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29229 Columbia South Carolina SC Richland 079 34.1388 -80.8892 +US 29230 Columbia South Carolina SC Richland 079 34.1075 -81.0626 +US 29240 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29250 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29260 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29290 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29292 Columbia South Carolina SC Richland 079 34.006 -80.9708 +US 29105 Monetta South Carolina SC Saluda 081 33.8084 -81.5956 +US 29129 Ridge Spring South Carolina SC Saluda 081 33.8714 -81.6559 +US 29138 Saluda South Carolina SC Saluda 081 34.0175 -81.7754 +US 29166 Ward South Carolina SC Saluda 081 33.8849 -81.7283 +US 29183 Ridgeville South Carolina SC Saluda County 081 33.105 -80.1967 +US 29301 Spartanburg South Carolina SC Spartanburg 083 34.9352 -81.9654 +US 29302 Spartanburg South Carolina SC Spartanburg 083 34.8939 -81.834 +US 29303 Spartanburg South Carolina SC Spartanburg 083 34.9803 -81.9168 +US 29304 Spartanburg South Carolina SC Spartanburg 083 34.9166 -81.8639 +US 29305 Spartanburg South Carolina SC Spartanburg 083 35.1114 -82.1055 +US 29306 Spartanburg South Carolina SC Spartanburg 083 34.8937 -81.9228 +US 29307 Spartanburg South Carolina SC Spartanburg 083 34.9839 -81.8313 +US 29316 Spartanburg South Carolina SC Spartanburg 083 35.0305 -81.9793 +US 29318 Spartanburg South Carolina SC Spartanburg 083 34.8882 -81.969 +US 29319 Spartanburg South Carolina SC Spartanburg 083 34.8882 -81.969 +US 29320 Arcadia South Carolina SC Spartanburg 083 34.9572 -81.9916 +US 29322 Campobello South Carolina SC Spartanburg 083 35.108 -82.1403 +US 29323 Chesnee South Carolina SC Spartanburg 083 35.1154 -81.8678 +US 29324 Clifton South Carolina SC Spartanburg 083 34.9906 -81.8327 +US 29329 Converse South Carolina SC Spartanburg 083 35.0017 -81.833 +US 29330 Cowpens South Carolina SC Spartanburg 083 35.039 -81.822 +US 29331 Cross Anchor South Carolina SC Spartanburg 083 34.6383 -81.8567 +US 29333 Drayton South Carolina SC Spartanburg 083 34.9685 -81.9064 +US 29334 Duncan South Carolina SC Spartanburg 083 34.9176 -82.1258 +US 29335 Enoree South Carolina SC Spartanburg 083 34.671 -81.9237 +US 29336 Fairforest South Carolina SC Spartanburg 083 34.8882 -81.969 +US 29338 Fingerville South Carolina SC Spartanburg 083 34.9994 -82.0571 +US 29346 Glendale South Carolina SC Spartanburg 083 35.0447 -81.9773 +US 29348 Gramling South Carolina SC Spartanburg 083 34.8882 -81.969 +US 29349 Inman South Carolina SC Spartanburg 083 35.0528 -82.054 +US 29356 Landrum South Carolina SC Spartanburg 083 35.1565 -82.2115 +US 29365 Lyman South Carolina SC Spartanburg 083 34.9684 -82.1435 +US 29368 Mayo South Carolina SC Spartanburg 083 34.9492 -81.9902 +US 29369 Moore South Carolina SC Spartanburg 083 34.8646 -82.0215 +US 29372 Pacolet South Carolina SC Spartanburg 083 34.9017 -81.7587 +US 29373 Pacolet Mills South Carolina SC Spartanburg 083 34.9124 -81.7487 +US 29374 Pauline South Carolina SC Spartanburg 083 34.7855 -81.8492 +US 29375 Reidville South Carolina SC Spartanburg 083 34.8636 -82.1101 +US 29376 Roebuck South Carolina SC Spartanburg 083 34.8688 -81.9526 +US 29377 Startex South Carolina SC Spartanburg 083 34.9875 -82.1351 +US 29378 Una South Carolina SC Spartanburg 083 34.853 -81.7727 +US 29385 Wellford South Carolina SC Spartanburg 083 34.9514 -82.0927 +US 29386 White Stone South Carolina SC Spartanburg 083 34.8882 -81.969 +US 29388 Woodruff South Carolina SC Spartanburg 083 34.7579 -82.0447 +US 29390 Duncan South Carolina SC Spartanburg 083 34.8882 -81.969 +US 29391 Duncan South Carolina SC Spartanburg 083 34.8882 -81.969 +US 29698 Greenville South Carolina SC Spartanburg 083 34.8882 -81.969 +US 29017 Borden South Carolina SC Sumter County 085 34.0674 -80.4782 +US 29040 Dalzell South Carolina SC Sumter 085 34.0144 -80.4665 +US 29062 Horatio South Carolina SC Sumter 085 34.0126 -80.5676 +US 29104 Mayesville South Carolina SC Sumter 085 33.9502 -80.2173 +US 29125 Pinewood South Carolina SC Sumter 085 33.7642 -80.4978 +US 29128 Rembert South Carolina SC Sumter 085 34.1085 -80.4945 +US 29150 Sumter South Carolina SC Sumter 085 33.9137 -80.3542 +US 29151 Sumter South Carolina SC Sumter 085 33.8999 -80.3743 +US 29152 Shaw A F B South Carolina SC Sumter 085 33.9803 -80.4811 +US 29153 Sumter South Carolina SC Sumter 085 33.9446 -80.3206 +US 29154 Sumter South Carolina SC Sumter 085 33.8821 -80.4028 +US 29168 Wedgefield South Carolina SC Sumter 085 33.8953 -80.498 +US 29031 Carlisle South Carolina SC Union 087 34.567 -81.4814 +US 29321 Buffalo South Carolina SC Union 087 34.7247 -81.6826 +US 29353 Jonesville South Carolina SC Union 087 34.8125 -81.6431 +US 29364 Lockhart South Carolina SC Union 087 34.7926 -81.4778 +US 29379 Union South Carolina SC Union 087 34.7269 -81.6202 +US 29395 Jonesville South Carolina SC Union County 087 34.8466 -81.7227 +US 29056 Greeleyville South Carolina SC Williamsburg 089 33.5966 -79.9802 +US 29518 Cades South Carolina SC Williamsburg 089 33.7886 -79.848 +US 29554 Hemingway South Carolina SC Williamsburg 089 33.7419 -79.4489 +US 29556 Kingstree South Carolina SC Williamsburg 089 33.6878 -79.7832 +US 29564 Lane South Carolina SC Williamsburg 089 33.5083 -79.8715 +US 29580 Nesmith South Carolina SC Williamsburg 089 33.6625 -79.5589 +US 29590 Salters South Carolina SC Williamsburg 089 33.5611 -79.83 +US 29703 Bowling Green South Carolina SC York 091 34.9926 -81.1787 +US 29704 Catawba South Carolina SC York 091 34.8507 -80.9342 +US 29708 Fort Mill South Carolina SC York 091 35.0502 -80.9908 +US 29710 Clover South Carolina SC York 091 35.1065 -81.2201 +US 29715 Fort Mill South Carolina SC York 091 35.0108 -80.9266 +US 29716 Fort Mill South Carolina SC York 091 35.0628 -80.969 +US 29717 Hickory Grove South Carolina SC York 091 34.9708 -81.4306 +US 29726 Mc Connells South Carolina SC York 091 34.8677 -81.2368 +US 29730 Rock Hill South Carolina SC York 091 34.9151 -81.0129 +US 29731 Rock Hill South Carolina SC York 091 34.9926 -81.1787 +US 29732 Rock Hill South Carolina SC York 091 34.9681 -81.0489 +US 29733 Rock Hill South Carolina SC York 091 34.9926 -81.1787 +US 29734 Rock Hill South Carolina SC York 091 34.9926 -81.1787 +US 29742 Sharon South Carolina SC York 091 34.9084 -81.3729 +US 29743 Smyrna South Carolina SC York 091 35.0308 -81.3896 +US 29745 York South Carolina SC York 091 34.9947 -81.2245 +US 57368 Plankinton South Dakota SD Aurora 003 43.7373 -98.4694 +US 57375 Stickney South Dakota SD Aurora 003 43.5842 -98.5088 +US 57383 White Lake South Dakota SD Aurora 003 43.7564 -98.7076 +US 57324 Cavour South Dakota SD Beadle 005 44.365 -98.0208 +US 57348 Hitchcock South Dakota SD Beadle 005 44.5834 -98.4509 +US 57350 Huron South Dakota SD Beadle 005 44.359 -98.2163 +US 57379 Virgil South Dakota SD Beadle 005 44.2838 -98.5027 +US 57381 Wessington South Dakota SD Beadle 005 44.4128 -98.692 +US 57384 Wolsey South Dakota SD Beadle 005 44.3991 -98.4743 +US 57386 Yale South Dakota SD Beadle 005 44.5225 -98.0401 +US 57399 Huron South Dakota SD Beadle 005 44.4143 -98.2795 +US 57551 Martin South Dakota SD Bennett 007 43.1722 -101.7341 +US 57574 Tuthill South Dakota SD Bennett 007 43.1196 -101.4701 +US 57714 Allen South Dakota SD Bennett 007 43.2908 -101.9329 +US 57059 Scotland South Dakota SD Bon Homme 009 43.1212 -97.7296 +US 57062 Springfield South Dakota SD Bon Homme 009 42.8687 -97.9288 +US 57063 Tabor South Dakota SD Bon Homme 009 42.9383 -97.6923 +US 57066 Tyndall South Dakota SD Bon Homme 009 42.99 -97.8633 +US 57315 Avon South Dakota SD Bon Homme 009 43.0397 -98.0283 +US 57002 Aurora South Dakota SD Brookings 011 44.2838 -96.7043 +US 57006 Brookings South Dakota SD Brookings 011 44.3056 -96.7914 +US 57007 Brookings South Dakota SD Brookings 011 44.3697 -96.7907 +US 57026 Elkton South Dakota SD Brookings 011 44.235 -96.5011 +US 57061 Sinai South Dakota SD Brookings 011 44.2428 -97.0182 +US 57071 Volga South Dakota SD Brookings 011 44.3224 -96.9251 +US 57220 Bruce South Dakota SD Brookings 011 44.4675 -96.911 +US 57276 White South Dakota SD Brookings 011 44.4132 -96.615 +US 57401 Aberdeen South Dakota SD Brown 013 45.4661 -98.4856 +US 57402 Aberdeen South Dakota SD Brown 013 45.5896 -98.352 +US 57426 Barnard South Dakota SD Brown 013 45.7205 -98.5534 +US 57427 Bath South Dakota SD Brown 013 45.4564 -98.3552 +US 57432 Claremont South Dakota SD Brown 013 45.6661 -98.0404 +US 57433 Columbia South Dakota SD Brown 013 45.6512 -98.3158 +US 57439 Ferney South Dakota SD Brown 013 45.329 -98.0837 +US 57441 Frederick South Dakota SD Brown 013 45.8493 -98.5176 +US 57445 Groton South Dakota SD Brown 013 45.4503 -98.1058 +US 57446 Hecla South Dakota SD Brown 013 45.8725 -98.1918 +US 57449 Houghton South Dakota SD Brown 013 45.7967 -98.0952 +US 57474 Stratford South Dakota SD Brown 013 45.2866 -98.2792 +US 57479 Warner South Dakota SD Brown 013 45.3486 -98.4757 +US 57481 Westport South Dakota SD Brown 013 45.6705 -98.5802 +US 57325 Chamberlain South Dakota SD Brule 015 43.7953 -99.3118 +US 57326 Chamberlain South Dakota SD Brule 015 43.7172 -99.1317 +US 57355 Kimball South Dakota SD Brule 015 43.7129 -98.9343 +US 57370 Pukwana South Dakota SD Brule 015 43.7783 -99.1779 +US 57339 Fort Thompson South Dakota SD Buffalo 017 44.0517 -99.3973 +US 57341 Gann Valley South Dakota SD Buffalo 017 44.0693 -99.0543 +US 57717 Belle Fourche South Dakota SD Butte 019 44.6723 -103.8396 +US 57742 Fruitdale South Dakota SD Butte 019 44.66 -103.6896 +US 57760 Newell South Dakota SD Butte 019 44.741 -103.3914 +US 57762 Nisland South Dakota SD Butte 019 44.6665 -103.5402 +US 57788 Vale South Dakota SD Butte 019 44.6222 -103.3795 +US 57632 Herreid South Dakota SD Campbell 021 45.8452 -100.049 +US 57646 Mound City South Dakota SD Campbell 021 45.6786 -100.0479 +US 57648 Pollock South Dakota SD Campbell 021 45.889 -100.2875 +US 57329 Dante South Dakota SD Charles Mix 023 42.9967 -98.1746 +US 57342 Geddes South Dakota SD Charles Mix 023 43.2597 -98.6926 +US 57356 Lake Andes South Dakota SD Charles Mix 023 43.1303 -98.4964 +US 57357 Ravinia South Dakota SD Charles Mix 023 43.1364 -98.4272 +US 57361 Marty South Dakota SD Charles Mix 023 43.0196 -98.4469 +US 57367 Pickstown South Dakota SD Charles Mix 023 43.0673 -98.523 +US 57369 Platte South Dakota SD Charles Mix 023 43.4251 -98.9479 +US 57380 Wagner South Dakota SD Charles Mix 023 43.0819 -98.2819 +US 57217 Bradley South Dakota SD Clark 025 45.0751 -97.6387 +US 57225 Clark South Dakota SD Clark 025 44.878 -97.7265 +US 57229 Crocker South Dakota SD Clark County 025 45.1053 -97.7844 +US 57236 Garden City South Dakota SD Clark 025 44.9841 -97.5814 +US 57258 Raymond South Dakota SD Clark 025 44.8637 -97.9168 +US 57271 Vienna South Dakota SD Clark 025 44.7362 -97.5307 +US 57278 Willow Lake South Dakota SD Clark 025 44.6272 -97.6747 +US 57322 Carpenter South Dakota SD Clark 025 44.6648 -97.9168 +US 57010 Burbank South Dakota SD Clay 027 42.7638 -96.8466 +US 57037 Irene South Dakota SD Clay 027 43.1027 -97.2558 +US 57044 Meckling South Dakota SD Clay 027 42.849 -97.0922 +US 57069 Vermillion South Dakota SD Clay 027 42.7951 -96.9258 +US 57073 Wakonda South Dakota SD Clay 027 42.996 -97.0694 +US 57201 Watertown South Dakota SD Codington 029 44.9043 -97.124 +US 57202 Waverly South Dakota SD Codington 029 44.9776 -97.1884 +US 57235 Florence South Dakota SD Codington 029 45.0554 -97.2866 +US 57243 Henry South Dakota SD Codington 029 44.8858 -97.4442 +US 57245 Kranzburg South Dakota SD Codington 029 44.8923 -96.9174 +US 57263 South Shore South Dakota SD Codington 029 45.1049 -96.9859 +US 57272 Wallace South Dakota SD Codington 029 45.0815 -97.4458 +US 57621 Bullhead South Dakota SD Corson 031 45.8476 -101.0997 +US 57634 Keldron South Dakota SD Corson 031 45.7528 -101.8843 +US 57639 Little Eagle South Dakota SD Corson 031 45.7084 -101.1546 +US 57641 Mc Intosh South Dakota SD Corson 031 45.7084 -101.1546 +US 57642 Mc Laughlin South Dakota SD Corson 031 45.8763 -100.8915 +US 57643 Mahto South Dakota SD Corson 031 45.7084 -101.1546 +US 57645 Morristown South Dakota SD Corson 031 45.9006 -101.6998 +US 57657 Trail City South Dakota SD Corson 031 45.7084 -101.1546 +US 57658 Wakpala South Dakota SD Corson 031 45.7006 -100.5332 +US 57659 Walker South Dakota SD Corson 031 45.7084 -101.1546 +US 57660 Watauga South Dakota SD Corson 031 45.9276 -101.5129 +US 57722 Buffalo Gap South Dakota SD Custer 033 43.4958 -103.3157 +US 57730 Custer South Dakota SD Custer 033 43.6573 -103.4258 +US 57738 Fairburn South Dakota SD Custer 033 43.6623 -103.2133 +US 57744 Hermosa South Dakota SD Custer 033 43.8188 -103.206 +US 57773 Pringle South Dakota SD Custer 033 43.6668 -103.3711 +US 57301 Mitchell South Dakota SD Davison 035 43.6959 -98.0864 +US 57334 Ethan South Dakota SD Davison 035 43.5427 -98.0591 +US 57363 Mount Vernon South Dakota SD Davison 035 43.7204 -98.2633 +US 57219 Bristol South Dakota SD Day 037 45.288 -97.8086 +US 57239 Grenville South Dakota SD Day 037 45.5097 -97.3092 +US 57261 Roslyn South Dakota SD Day 037 45.5006 -97.5401 +US 57273 Waubay South Dakota SD Day 037 45.3784 -97.295 +US 57274 Webster South Dakota SD Day 037 45.3151 -97.5254 +US 57422 Andover South Dakota SD Day 037 45.4222 -97.9175 +US 57468 Pierpont South Dakota SD Day 037 45.496 -97.8128 +US 57213 Astoria South Dakota SD Deuel 039 44.5735 -96.5416 +US 57218 Brandt South Dakota SD Deuel 039 44.6738 -96.6435 +US 57226 Clear Lake South Dakota SD Deuel 039 44.7612 -96.6907 +US 57237 Gary South Dakota SD Deuel 039 44.827 -96.5044 +US 57238 Goodwin South Dakota SD Deuel 039 44.8754 -96.8608 +US 57268 Toronto South Dakota SD Deuel 039 44.5786 -96.7077 +US 57625 Eagle Butte South Dakota SD Dewey 041 45.0016 -101.2329 +US 57628 Firesteel South Dakota SD Dewey 041 45.0987 -100.8792 +US 57630 Glencross South Dakota SD Dewey 041 45.0987 -100.8792 +US 57633 Isabel South Dakota SD Dewey 041 45.3962 -101.4385 +US 57636 Lantry South Dakota SD Dewey 041 45.0987 -100.8792 +US 57647 Parade South Dakota SD Dewey 041 45.0987 -100.8792 +US 57652 Ridgeview South Dakota SD Dewey 041 45.2024 -100.605 +US 57656 Timber Lake South Dakota SD Dewey 041 45.3927 -101.0351 +US 57661 Whitehorse South Dakota SD Dewey 041 45.0987 -100.8792 +US 57313 Armour South Dakota SD Douglas 043 43.316 -98.3414 +US 57328 Corsica South Dakota SD Douglas 043 43.4213 -98.3564 +US 57330 Delmont South Dakota SD Douglas 043 43.2573 -98.1596 +US 57344 Harrison South Dakota SD Douglas 043 43.4507 -98.6339 +US 57364 New Holland South Dakota SD Douglas 043 43.4291 -98.6069 +US 57428 Bowdle South Dakota SD Edmunds 045 45.4329 -99.636 +US 57448 Hosmer South Dakota SD Edmunds 045 45.569 -99.4857 +US 57451 Ipswich South Dakota SD Edmunds 045 45.4489 -99.0148 +US 57462 Mina South Dakota SD Edmunds 045 45.4391 -98.7566 +US 57471 Roscoe South Dakota SD Edmunds 045 45.4271 -99.3326 +US 57735 Edgemont South Dakota SD Fall River 047 43.2874 -103.811 +US 57747 Hot Springs South Dakota SD Fall River 047 43.4223 -103.4766 +US 57763 Oelrichs South Dakota SD Fall River 047 43.1551 -103.2162 +US 57766 Oral South Dakota SD Fall River 047 43.3876 -103.1832 +US 57774 Provo South Dakota SD Fall River 047 43.2397 -103.5278 +US 57782 Smithwick South Dakota SD Fall River 047 43.2397 -103.5278 +US 57435 Cresbard South Dakota SD Faulk 049 45.1691 -98.9411 +US 57438 Faulkton South Dakota SD Faulk 049 45.0855 -99.1954 +US 57466 Onaka South Dakota SD Faulk 049 45.1965 -99.4551 +US 57467 Orient South Dakota SD Faulk 049 44.8343 -99.1058 +US 57470 Rockham South Dakota SD Faulk 049 44.8767 -98.8669 +US 57473 Seneca South Dakota SD Faulk 049 45.0262 -99.461 +US 57483 Zell South Dakota SD Faulk County 049 44.8537 -98.8288 +US 57216 Big Stone City South Dakota SD Grant 051 45.285 -96.5614 +US 57246 Labolt South Dakota SD Grant 051 45.0415 -96.6892 +US 57251 Marvin South Dakota SD Grant 051 45.2727 -96.91 +US 57252 Milbank South Dakota SD Grant 051 45.2061 -96.6255 +US 57253 Milbank South Dakota SD Grant 051 45.1515 -96.8392 +US 57259 Revillo South Dakota SD Grant 051 45.0805 -96.5557 +US 57264 Stockholm South Dakota SD Grant 051 45.1031 -96.8106 +US 57265 Strandburg South Dakota SD Grant 051 45.0389 -96.7901 +US 57269 Twin Brooks South Dakota SD Grant 051 45.2309 -96.8237 +US 57317 Bonesteel South Dakota SD Gregory 053 43.0695 -98.988 +US 57335 Fairfax South Dakota SD Gregory 053 43.0351 -98.8308 +US 57523 Burke South Dakota SD Gregory 053 43.1825 -99.2937 +US 57529 Dallas South Dakota SD Gregory 053 43.2351 -99.514 +US 57533 Gregory South Dakota SD Gregory 053 43.2136 -99.3622 +US 57538 Herrick South Dakota SD Gregory 053 43.1012 -99.2173 +US 57571 Saint Charles South Dakota SD Gregory 053 43.0852 -99.0925 +US 57552 Midland South Dakota SD Haakon 055 44.3707 -101.5272 +US 57553 Milesville South Dakota SD Haakon 055 44.4283 -101.7523 +US 57567 Philip South Dakota SD Haakon 055 44.055 -101.6876 +US 57221 Bryant South Dakota SD Hamlin 057 44.5987 -97.4537 +US 57223 Castlewood South Dakota SD Hamlin 057 44.7313 -97.0204 +US 57234 Estelline South Dakota SD Hamlin 057 44.6029 -96.8928 +US 57241 Hayti South Dakota SD Hamlin 057 44.6647 -97.2305 +US 57242 Hazel South Dakota SD Hamlin 057 44.7572 -97.3083 +US 57248 Lake Norden South Dakota SD Hamlin 057 44.5844 -97.2009 +US 57362 Miller South Dakota SD Hand 059 44.4966 -98.9894 +US 57371 Ree Heights South Dakota SD Hand 059 44.5603 -99.2286 +US 57373 Saint Lawrence South Dakota SD Hand 059 44.5215 -98.8754 +US 57311 Alexandria South Dakota SD Hanson 061 43.6684 -97.7563 +US 57332 Emery South Dakota SD Hanson 061 43.5656 -97.6475 +US 57340 Fulton South Dakota SD Hanson 061 43.7588 -97.8712 +US 57650 Ralph South Dakota SD Harding 063 45.8554 -103.0356 +US 57651 Reva South Dakota SD Harding 063 45.5277 -103.0692 +US 57720 Buffalo South Dakota SD Harding 063 45.574 -103.5826 +US 57724 Camp Crook South Dakota SD Harding 063 45.6402 -104.0278 +US 57755 Ludlow South Dakota SD Harding 063 45.8366 -103.3491 +US 57776 Redig South Dakota SD Harding 063 45.5789 -103.4937 +US 57501 Pierre South Dakota SD Hughes 065 44.3695 -100.3211 +US 57522 Blunt South Dakota SD Hughes 065 44.5026 -99.9463 +US 57536 Harrold South Dakota SD Hughes 065 44.5215 -99.7382 +US 57029 Freeman South Dakota SD Hutchinson 067 43.3605 -97.4601 +US 57045 Menno South Dakota SD Hutchinson 067 43.234 -97.565 +US 57052 Olivet South Dakota SD Hutchinson 067 43.2928 -97.7184 +US 57331 Dimock South Dakota SD Hutchinson 067 43.4705 -97.9988 +US 57354 Kaylor South Dakota SD Hutchinson 067 43.3341 -97.7569 +US 57366 Parkston South Dakota SD Hutchinson 067 43.3978 -97.9678 +US 57376 Tripp South Dakota SD Hutchinson 067 43.2404 -97.9713 +US 57345 Highmore South Dakota SD Hyde 069 44.5326 -99.4543 +US 57346 Stephan South Dakota SD Hyde 069 44.5451 -99.4882 +US 57540 Holabird South Dakota SD Hyde 069 44.5173 -99.5943 +US 57521 Belvidere South Dakota SD Jackson 071 43.886 -101.2387 +US 57543 Kadoka South Dakota SD Jackson 071 43.8446 -101.5523 +US 57547 Long Valley South Dakota SD Jackson 071 43.4754 -101.4294 +US 57577 Wanblee South Dakota SD Jackson 071 43.5589 -101.7219 +US 57750 Interior South Dakota SD Jackson 071 43.7319 -101.9642 +US 57312 Alpena South Dakota SD Jerauld 073 44.1709 -98.3962 +US 57358 Lane South Dakota SD Jerauld 073 44.0696 -98.4252 +US 57382 Wessington Springs South Dakota SD Jerauld 073 44.0664 -98.6751 +US 57531 Draper South Dakota SD Jones 075 43.926 -100.5085 +US 57559 Murdo South Dakota SD Jones 075 43.8961 -100.7121 +US 57562 Okaton South Dakota SD Jones 075 43.938 -100.7017 +US 57051 Oldham South Dakota SD Kingsbury 077 44.2457 -97.2696 +US 57212 Arlington South Dakota SD Kingsbury 077 44.3668 -97.0687 +US 57214 Badger South Dakota SD Kingsbury 077 44.4918 -97.2184 +US 57231 De Smet South Dakota SD Kingsbury 077 44.3852 -97.5634 +US 57233 Erwin South Dakota SD Kingsbury 077 44.4915 -97.4103 +US 57244 Hetland South Dakota SD Kingsbury 077 44.4254 -97.2899 +US 57249 Lake Preston South Dakota SD Kingsbury 077 44.3692 -97.3828 +US 57316 Bancroft South Dakota SD Kingsbury County 077 44.4922 -97.76 +US 57353 Iroquois South Dakota SD Kingsbury 077 44.3455 -97.8542 +US 57016 Chester South Dakota SD Lake 079 43.8981 -96.9759 +US 57042 Madison South Dakota SD Lake 079 44.0054 -97.1149 +US 57050 Nunda South Dakota SD Lake 079 44.1525 -96.9942 +US 57054 Ramona South Dakota SD Lake 079 44.1229 -97.2349 +US 57057 Rutland South Dakota SD Lake 079 44.0683 -96.9519 +US 57075 Wentworth South Dakota SD Lake 079 43.9852 -96.9615 +US 57076 Winfred South Dakota SD Lake 079 43.9595 -97.3093 +US 57732 Deadwood South Dakota SD Lawrence 081 44.3566 -103.6999 +US 57754 Lead South Dakota SD Lawrence 081 44.263 -103.8712 +US 57759 Nemo South Dakota SD Lawrence 081 44.2097 -103.5449 +US 57779 Saint Onge South Dakota SD Lawrence 081 44.5473 -103.7232 +US 57783 Spearfish South Dakota SD Lawrence 081 44.4946 -103.865 +US 57793 Whitewood South Dakota SD Lawrence 081 44.4589 -103.637 +US 57799 Spearfish South Dakota SD Lawrence 081 44.4958 -103.8703 +US 57013 Canton South Dakota SD Lincoln 083 43.3038 -96.5938 +US 57027 Fairview South Dakota SD Lincoln 083 43.197 -96.5135 +US 57032 Harrisburg South Dakota SD Lincoln 083 43.446 -96.6864 +US 57034 Hudson South Dakota SD Lincoln 083 43.1284 -96.5306 +US 57039 Lennox South Dakota SD Lincoln 083 43.3451 -96.8821 +US 57064 Tea South Dakota SD Lincoln 083 43.4711 -96.8177 +US 57077 Worthing South Dakota SD Lincoln 083 43.2925 -96.7529 +US 57365 Oacoma South Dakota SD Lyman 085 43.7975 -99.3947 +US 57542 Iona South Dakota SD Lyman 085 43.5758 -99.4881 +US 57544 Kennebec South Dakota SD Lyman 085 43.8921 -99.8502 +US 57548 Lower Brule South Dakota SD Lyman 085 44.0937 -99.6139 +US 57568 Presho South Dakota SD Lyman 085 43.8995 -100.0746 +US 57569 Reliance South Dakota SD Lyman 085 43.8302 -99.4857 +US 57576 Vivian South Dakota SD Lyman 085 43.9535 -100.286 +US 57012 Canistota South Dakota SD McCook 087 43.5856 -97.2889 +US 57048 Montrose South Dakota SD McCook 087 43.7063 -97.1885 +US 57058 Salem South Dakota SD McCook 087 43.7356 -97.3797 +US 57319 Bridgewater South Dakota SD McCook 087 43.5503 -97.4691 +US 57374 Spencer South Dakota SD McCook 087 43.7557 -97.5936 +US 57437 Eureka South Dakota SD McPherson 089 45.7707 -99.3308 +US 57456 Leola South Dakota SD McPherson 089 45.7323 -98.9015 +US 57457 Longlake South Dakota SD McPherson 089 45.8823 -99.1698 +US 57232 Eden South Dakota SD Marshall 091 45.6211 -97.3741 +US 57247 Lake City South Dakota SD Marshall 091 45.6899 -97.3481 +US 57270 Veblen South Dakota SD Marshall 091 45.8535 -97.3122 +US 57421 Amherst South Dakota SD Marshall 091 45.7585 -97.9274 +US 57430 Britton South Dakota SD Marshall 091 45.8023 -97.7418 +US 57454 Langford South Dakota SD Marshall 091 45.6174 -97.7925 +US 57626 Faith South Dakota SD Meade 093 44.9926 -102.0541 +US 57706 Ellsworth Afb South Dakota SD Meade 093 44.1447 -103.0759 +US 57708 Bethlehem South Dakota SD Meade 093 44.2711 -103.4201 +US 57718 Black Hawk South Dakota SD Meade 093 44.1512 -103.3486 +US 57736 Elm Springs South Dakota SD Meade 093 44.3488 -102.5239 +US 57737 Enning South Dakota SD Meade 093 44.5898 -102.7872 +US 57741 Fort Meade South Dakota SD Meade 093 44.4093 -103.4554 +US 57748 Howes South Dakota SD Meade 093 44.5838 -102.0229 +US 57757 Marcus South Dakota SD Meade County 093 44.6463 -102.317 +US 57758 Mud Butte South Dakota SD Meade 093 45.031 -102.8031 +US 57765 Opal South Dakota SD Meade 093 44.5898 -102.7872 +US 57769 Piedmont South Dakota SD Meade 093 44.2287 -103.3688 +US 57777 Red Owl South Dakota SD Meade 093 44.691 -102.587 +US 57785 Sturgis South Dakota SD Meade 093 44.3692 -103.3617 +US 57787 Union Center South Dakota SD Meade 093 44.6539 -102.7252 +US 57792 White Owl South Dakota SD Meade 093 44.6182 -102.4452 +US 57560 Norris South Dakota SD Mellette 095 43.4662 -101.1517 +US 57579 White River South Dakota SD Mellette 095 43.5666 -100.7449 +US 57585 Wood South Dakota SD Mellette 095 43.5366 -100.4379 +US 57321 Canova South Dakota SD Miner 097 43.8855 -97.5342 +US 57323 Carthage South Dakota SD Miner 097 44.1496 -97.7116 +US 57337 Fedora South Dakota SD Miner 097 43.9841 -97.789 +US 57349 Howard South Dakota SD Miner 097 44.0371 -97.5603 +US 57003 Baltic South Dakota SD Minnehaha 099 43.7309 -96.7563 +US 57005 Brandon South Dakota SD Minnehaha 099 43.5926 -96.586 +US 57018 Colton South Dakota SD Minnehaha 099 43.7951 -96.9572 +US 57020 Crooks South Dakota SD Minnehaha 099 43.6669 -96.8221 +US 57022 Dell Rapids South Dakota SD Minnehaha 099 43.8228 -96.7223 +US 57030 Garretson South Dakota SD Minnehaha 099 43.7162 -96.5196 +US 57033 Hartford South Dakota SD Minnehaha 099 43.6155 -96.9501 +US 57035 Humboldt South Dakota SD Minnehaha 099 43.612 -97.0697 +US 57041 Lyons South Dakota SD Minnehaha 099 43.7285 -96.8709 +US 57055 Renner South Dakota SD Minnehaha 099 43.6366 -96.7119 +US 57056 Rowena South Dakota SD Minnehaha 099 43.5216 -96.5587 +US 57060 Sherman South Dakota SD Minnehaha County 099 43.7987 -96.5444 +US 57068 Valley Springs South Dakota SD Minnehaha 099 43.5773 -96.4956 +US 57101 Sioux Falls South Dakota SD Minnehaha 099 43.5464 -96.6906 +US 57102 Sioux Falls South Dakota SD Minnehaha County 099 43.5467 -96.7266 +US 57103 Sioux Falls South Dakota SD Minnehaha 099 43.5374 -96.6864 +US 57104 Sioux Falls South Dakota SD Minnehaha 099 43.5514 -96.7375 +US 57105 Sioux Falls South Dakota SD Minnehaha 099 43.524 -96.7341 +US 57106 Sioux Falls South Dakota SD Minnehaha 099 43.5179 -96.7924 +US 57107 Sioux Falls South Dakota SD Minnehaha 099 43.5566 -96.8028 +US 57108 Sioux Falls South Dakota SD Minnehaha 099 43.4775 -96.7041 +US 57109 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57110 Sioux Falls South Dakota SD Minnehaha 099 43.5486 -96.6332 +US 57115 Buffalo Ridge South Dakota SD Minnehaha 099 43.5219 -96.8685 +US 57116 Sioux Falls South Dakota SD Minnehaha County 099 43.5123 -96.7686 +US 57117 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57118 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57186 Sioux Falls South Dakota SD Minnehaha County 099 43.5424 -96.7312 +US 57188 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57189 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57190 Sioux Falls South Dakota SD Minnehaha County 099 43.5444 -96.7231 +US 57191 Sioux Falls South Dakota SD Minnehaha County 099 43.5444 -96.7231 +US 57192 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57193 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57194 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57195 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57196 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57197 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57198 Sioux Falls South Dakota SD Minnehaha 099 43.6746 -96.7913 +US 57017 Colman South Dakota SD Moody 101 43.9558 -96.8189 +US 57024 Egan South Dakota SD Moody 101 43.9866 -96.6493 +US 57028 Flandreau South Dakota SD Moody 101 44.0658 -96.6222 +US 57065 Trent South Dakota SD Moody 101 43.8942 -96.6326 +US 57074 Ward South Dakota SD Moody 101 44.1559 -96.4813 +US 57701 Rapid City South Dakota SD Pennington 103 44.1415 -103.2052 +US 57702 Rapid City South Dakota SD Pennington 103 44.0036 -103.3589 +US 57703 Rapid City South Dakota SD Pennington 103 44.048 -103.1763 +US 57709 Rapid City South Dakota SD Pennington 103 44.0761 -103.3171 +US 57719 Box Elder South Dakota SD Pennington 103 44.1199 -103.0682 +US 57725 Caputa South Dakota SD Pennington 103 43.9481 -102.7935 +US 57729 Creighton South Dakota SD Pennington 103 44.2831 -102.177 +US 57745 Hill City South Dakota SD Pennington 103 43.9377 -103.5782 +US 57751 Keystone South Dakota SD Pennington 103 43.8848 -103.3995 +US 57761 New Underwood South Dakota SD Pennington 103 44.0874 -102.8136 +US 57767 Owanka South Dakota SD Pennington 103 44.0631 -102.5628 +US 57775 Quinn South Dakota SD Pennington 103 44.1035 -102.0159 +US 57778 Rochford South Dakota SD Pennington 103 44.1176 -103.7611 +US 57780 Scenic South Dakota SD Pennington 103 43.7994 -102.5353 +US 57790 Wall South Dakota SD Pennington 103 43.9812 -102.2245 +US 57791 Wasta South Dakota SD Pennington 103 44.225 -102.4311 +US 57795 Zeona South Dakota SD Pennington County 103 45.2609 -102.8229 +US 57620 Bison South Dakota SD Perkins 105 45.5161 -102.4827 +US 57638 Lemmon South Dakota SD Perkins 105 45.9159 -102.1928 +US 57640 Lodgepole South Dakota SD Perkins 105 45.8232 -102.7599 +US 57644 Meadow South Dakota SD Perkins 105 45.3538 -102.2844 +US 57649 Prairie City South Dakota SD Perkins 105 45.5813 -102.8085 +US 57653 Shadehill South Dakota SD Perkins 105 45.6699 -102.1891 +US 57442 Gettysburg South Dakota SD Potter 107 45.0259 -99.9766 +US 57450 Hoven South Dakota SD Potter 107 45.2278 -99.7763 +US 57455 Lebanon South Dakota SD Potter 107 45.0123 -99.7366 +US 57475 Tolstoy South Dakota SD Potter 107 45.1702 -99.6176 +US 57224 Claire City South Dakota SD Roberts 109 45.8755 -97.1073 +US 57227 Corona South Dakota SD Roberts 109 45.3595 -96.6649 +US 57255 New Effington South Dakota SD Roberts 109 45.8659 -96.915 +US 57256 Ortley South Dakota SD Roberts 109 45.2657 -97.1925 +US 57257 Peever South Dakota SD Roberts 109 45.5206 -97.0012 +US 57260 Rosholt South Dakota SD Roberts 109 45.8753 -96.7174 +US 57262 Sisseton South Dakota SD Roberts 109 45.6732 -97.0715 +US 57266 Summit South Dakota SD Roberts 109 45.3521 -97.0427 +US 57279 Wilmot South Dakota SD Roberts 109 45.4125 -96.856 +US 57314 Artesian South Dakota SD Sanborn 111 44.021 -98.0114 +US 57359 Letcher South Dakota SD Sanborn 111 43.8923 -98.1743 +US 57385 Woonsocket South Dakota SD Sanborn 111 44.0572 -98.243 +US 57716 Batesland South Dakota SD Shannon 113 43.1085 -102.2006 +US 57752 Kyle South Dakota SD Shannon 113 43.4394 -102.2124 +US 57756 Manderson South Dakota SD Shannon 113 43.3526 -102.5411 +US 57764 Oglala South Dakota SD Shannon 113 43.3526 -102.5411 +US 57770 Pine Ridge South Dakota SD Shannon 113 43.1124 -102.5984 +US 57772 Porcupine South Dakota SD Shannon 113 43.3526 -102.5411 +US 57794 Wounded Knee South Dakota SD Shannon 113 43.3526 -102.5411 +US 57424 Ashton South Dakota SD Spink 115 45.0465 -98.3973 +US 57429 Brentford South Dakota SD Spink 115 45.1635 -98.3193 +US 57434 Conde South Dakota SD Spink 115 45.1393 -98.1534 +US 57436 Doland South Dakota SD Spink 115 44.8159 -98.0947 +US 57440 Frankfort South Dakota SD Spink 115 44.8084 -98.2935 +US 57460 Mansfield South Dakota SD Spink 115 45.2267 -98.6066 +US 57461 Mellette South Dakota SD Spink 115 45.1631 -98.4824 +US 57465 Northville South Dakota SD Spink 115 45.1611 -98.6589 +US 57469 Redfield South Dakota SD Spink 115 44.8719 -98.5112 +US 57476 Tulare South Dakota SD Spink 115 44.7305 -98.5539 +US 57477 Turton South Dakota SD Spink 115 45.0379 -98.0996 +US 57532 Fort Pierre South Dakota SD Stanley 117 44.3426 -100.4043 +US 57537 Hayes South Dakota SD Stanley 117 44.5313 -101.0141 +US 57557 Mission Ridge South Dakota SD Stanley 117 44.4758 -100.5295 +US 57520 Agar South Dakota SD Sully 119 44.8393 -100.0712 +US 57564 Onida South Dakota SD Sully 119 44.7125 -100.0957 +US 57555 Mission South Dakota SD Todd 121 43.285 -100.5954 +US 57563 Okreek South Dakota SD Todd 121 43.3633 -100.3809 +US 57566 Parmelee South Dakota SD Todd 121 43.3117 -101.0081 +US 57570 Rosebud South Dakota SD Todd 121 43.3024 -100.6269 +US 57572 Saint Francis South Dakota SD Todd 121 43.191 -100.885 +US 57526 Carter South Dakota SD Tripp 123 43.3821 -99.8823 +US 57527 Cedarbutte South Dakota SD Tripp County 123 43.6473 -101.1316 +US 57528 Colome South Dakota SD Tripp 123 43.2273 -99.6933 +US 57534 Hamill South Dakota SD Tripp 123 43.6439 -99.6918 +US 57541 Ideal South Dakota SD Tripp 123 43.5596 -99.9279 +US 57545 Keyapaha South Dakota SD Tripp County 123 43.0916 -100.1682 +US 57578 Wewela South Dakota SD Tripp 123 43.3821 -99.8823 +US 57580 Winner South Dakota SD Tripp 123 43.3318 -99.8033 +US 57584 Witten South Dakota SD Tripp 123 43.4498 -100.0783 +US 57014 Centerville South Dakota SD Turner 125 43.1176 -96.9636 +US 57015 Chancellor South Dakota SD Turner 125 43.408 -96.9827 +US 57021 Davis South Dakota SD Turner 125 43.2864 -96.9792 +US 57036 Hurley South Dakota SD Turner 125 43.2893 -97.1904 +US 57043 Marion South Dakota SD Turner 125 43.4188 -97.2771 +US 57047 Monroe South Dakota SD Turner 125 43.5207 -97.212 +US 57053 Parker South Dakota SD Turner 125 43.402 -97.1333 +US 57070 Viborg South Dakota SD Turner 125 43.1815 -97.114 +US 57001 Alcester South Dakota SD Union 127 43.0047 -96.6332 +US 57004 Beresford South Dakota SD Union 127 43.0874 -96.7813 +US 57025 Elk Point South Dakota SD Union 127 42.7382 -96.687 +US 57038 Jefferson South Dakota SD Union 127 42.6013 -96.5784 +US 57049 North Sioux City South Dakota SD Union 127 42.5249 -96.5074 +US 57420 Akaska South Dakota SD Walworth 129 45.3324 -100.1186 +US 57452 Java South Dakota SD Walworth 129 45.4492 -99.822 +US 57472 Selby South Dakota SD Walworth 129 45.4786 -100.0541 +US 57601 Mobridge South Dakota SD Walworth 129 45.5407 -100.4315 +US 57631 Glenham South Dakota SD Walworth 129 45.5335 -100.2716 +US 57031 Gayville South Dakota SD Yankton 135 42.8835 -97.183 +US 57040 Lesterville South Dakota SD Yankton 135 43.055 -97.5483 +US 57046 Mission Hill South Dakota SD Yankton 135 42.9836 -97.3349 +US 57067 Utica South Dakota SD Yankton 135 43.0164 -97.3694 +US 57072 Volin South Dakota SD Yankton 135 42.9696 -97.2282 +US 57078 Yankton South Dakota SD Yankton 135 42.8821 -97.3986 +US 57079 Yankton South Dakota SD Yankton 135 42.8676 -97.3903 +US 57622 Cherry Creek South Dakota SD Ziebach 137 44.9921 -101.5687 +US 57623 Dupree South Dakota SD Ziebach 137 45.0079 -101.6337 +US 57629 Glad Valley South Dakota SD Ziebach 137 44.9921 -101.5687 +US 37705 Andersonville Tennessee TN Anderson 001 36.1915 -84.0544 +US 37710 Briceville Tennessee TN Anderson 001 36.1626 -84.2992 +US 37716 Clinton Tennessee TN Anderson 001 36.0869 -84.1897 +US 37717 Clinton Tennessee TN Anderson 001 36.11 -84.1672 +US 37769 Lake City Tennessee TN Anderson 001 36.2032 -84.1386 +US 37828 Norris Tennessee TN Anderson 001 36.2005 -84.0858 +US 37830 Oak Ridge Tennessee TN Anderson 001 36.0159 -84.2623 +US 37831 Oak Ridge Tennessee TN Anderson 001 36.106 -84.1958 +US 37020 Bell Buckle Tennessee TN Bedford 003 35.6381 -86.3949 +US 37160 Shelbyville Tennessee TN Bedford 003 35.4863 -86.4624 +US 37161 Shelbyville Tennessee TN Bedford 003 35.4715 -86.489 +US 37162 Shelbyville Tennessee TN Bedford 003 35.5108 -86.45 +US 37180 Unionville Tennessee TN Bedford 003 35.6224 -86.5639 +US 37183 Wartrace Tennessee TN Bedford 003 35.5123 -86.3277 +US 37360 Normandy Tennessee TN Bedford 003 35.4296 -86.2557 +US 38221 Big Sandy Tennessee TN Benton 005 36.2285 -88.0627 +US 38320 Camden Tennessee TN Benton 005 36.0556 -88.1119 +US 38333 Eva Tennessee TN Benton 005 36.1142 -87.982 +US 38341 Holladay Tennessee TN Benton 005 35.8951 -88.0912 +US 37367 Pikeville Tennessee TN Bledsoe 007 35.6408 -85.2077 +US 37358 Mount Vernon Tennessee TN Blount County 009 35.4115 -84.3643 +US 37701 Alcoa Tennessee TN Blount 009 35.7852 -83.9809 +US 37737 Friendsville Tennessee TN Blount 009 35.7523 -84.1061 +US 37777 Louisville Tennessee TN Blount 009 35.8375 -84.0089 +US 37801 Maryville Tennessee TN Blount 009 35.6884 -84.0769 +US 37802 Maryville Tennessee TN Blount 009 35.7283 -83.9338 +US 37803 Maryville Tennessee TN Blount 009 35.6539 -83.9956 +US 37804 Maryville Tennessee TN Blount 009 35.7991 -83.8852 +US 37853 Rockford Tennessee TN Blount 009 35.8305 -83.9412 +US 37878 Tallassee Tennessee TN Blount 009 35.5844 -83.9923 +US 37882 Townsend Tennessee TN Blount 009 35.6784 -83.7572 +US 37886 Walland Tennessee TN Blount 009 35.7533 -83.8243 +US 37310 Charleston Tennessee TN Bradley 011 35.2556 -84.7666 +US 37311 Cleveland Tennessee TN Bradley 011 35.1313 -84.875 +US 37312 Cleveland Tennessee TN Bradley 011 35.2023 -84.8476 +US 37320 Cleveland Tennessee TN Bradley 011 35.1727 -84.8619 +US 37323 Cleveland Tennessee TN Bradley 011 35.1361 -84.8457 +US 37353 Mc Donald Tennessee TN Bradley 011 35.0869 -84.9892 +US 37364 Cleveland Tennessee TN Bradley 011 35.1727 -84.8619 +US 37714 Caryville Tennessee TN Campbell 013 36.3028 -84.203 +US 37729 Duff Tennessee TN Campbell 013 36.5086 -84.0454 +US 37757 Jacksboro Tennessee TN Campbell 013 36.3266 -84.1928 +US 37762 Jellico Tennessee TN Campbell 013 36.577 -84.126 +US 37766 La Follette Tennessee TN Campbell 013 36.4248 -84.0907 +US 37819 Newcomb Tennessee TN Campbell 013 36.5428 -84.1798 +US 37847 Pioneer Tennessee TN Campbell 013 36.4695 -84.2907 +US 37016 Auburntown Tennessee TN Cannon 015 35.9338 -86.1126 +US 37026 Bradyville Tennessee TN Cannon 015 35.7053 -86.0912 +US 37149 Readyville Tennessee TN Cannon 015 35.7989 -86.2415 +US 37190 Woodbury Tennessee TN Cannon 015 35.8143 -86.05 +US 38201 Mc Kenzie Tennessee TN Carroll 017 36.1272 -88.5134 +US 38220 Atwood Tennessee TN Carroll 017 35.9663 -88.6247 +US 38235 Mc Lemoresville Tennessee TN Carroll 017 35.9778 -88.5744 +US 38258 Trezevant Tennessee TN Carroll 017 36.0172 -88.61 +US 38317 Bruceton Tennessee TN Carroll 017 36.0268 -88.2518 +US 38318 Buena Vista Tennessee TN Carroll 017 35.9431 -88.2926 +US 38321 Cedar Grove Tennessee TN Carroll 017 35.8613 -88.5517 +US 38324 Clarksburg Tennessee TN Carroll 017 35.8675 -88.3934 +US 38342 Hollow Rock Tennessee TN Carroll 017 36.0504 -88.2919 +US 38344 Huntingdon Tennessee TN Carroll 017 36.0062 -88.4202 +US 38348 Lavinia Tennessee TN Carroll 017 35.8583 -88.6324 +US 38387 Westport Tennessee TN Carroll 017 35.8845 -88.2892 +US 38390 Yuma Tennessee TN Carroll 017 35.868 -88.3819 +US 37643 Elizabethton Tennessee TN Carter 019 36.3445 -82.2015 +US 37644 Elizabethton Tennessee TN Carter 019 36.4366 -82.0518 +US 37658 Hampton Tennessee TN Carter 019 36.2577 -82.1891 +US 37682 Milligan College Tennessee TN Carter 019 36.296 -82.3054 +US 37687 Roan Mountain Tennessee TN Carter 019 36.1773 -82.081 +US 37694 Watauga Tennessee TN Carter 019 36.3702 -82.2683 +US 37015 Ashland City Tennessee TN Cheatham 021 36.2731 -87.0447 +US 37035 Chapmansboro Tennessee TN Cheatham 021 36.3768 -87.1127 +US 37082 Kingston Springs Tennessee TN Cheatham 021 36.0953 -87.1156 +US 37143 Pegram Tennessee TN Cheatham 021 36.1129 -87.0316 +US 37146 Pleasant View Tennessee TN Cheatham 021 36.3783 -87.0395 +US 38332 Enville Tennessee TN Chester 023 35.4393 -88.4206 +US 38340 Henderson Tennessee TN Chester 023 35.4269 -88.6398 +US 38347 Jacks Creek Tennessee TN Chester 023 35.4782 -88.5019 +US 38352 Luray Tennessee TN Chester 023 35.5355 -88.5379 +US 37707 Arthur Tennessee TN Claiborne 025 36.5663 -83.6365 +US 37715 Clairfield Tennessee TN Claiborne 025 36.565 -83.9397 +US 37724 Cumberland Gap Tennessee TN Claiborne 025 36.5504 -83.681 +US 37730 Eagan Tennessee TN Claiborne 025 36.5505 -83.9646 +US 37752 Harrogate Tennessee TN Claiborne 025 36.5767 -83.6073 +US 37773 Lone Mountain Tennessee TN Claiborne 025 36.4664 -83.6786 +US 37824 New Tazewell Tennessee TN Claiborne 025 36.45 -83.5911 +US 37825 New Tazewell Tennessee TN Claiborne 025 36.4245 -83.6469 +US 37851 Pruden Tennessee TN Claiborne 025 36.5579 -83.8139 +US 37867 Shawanee Tennessee TN Claiborne 025 36.5803 -83.6473 +US 37870 Speedwell Tennessee TN Claiborne 025 36.4797 -83.8135 +US 37879 Tazewell Tennessee TN Claiborne 025 36.471 -83.5552 +US 38551 Celina Tennessee TN Clay 027 36.5475 -85.4966 +US 38575 Moss Tennessee TN Clay 027 36.5966 -85.6772 +US 37713 Bybee Tennessee TN Cocke 029 36.074 -83.1631 +US 37722 Cosby Tennessee TN Cocke 029 35.8347 -83.2187 +US 37727 Del Rio Tennessee TN Cocke 029 35.883 -83.015 +US 37753 Hartford Tennessee TN Cocke 029 35.8256 -83.0996 +US 37821 Newport Tennessee TN Cocke 029 35.9544 -83.2027 +US 37822 Newport Tennessee TN Cocke 029 35.9477 -83.1066 +US 37843 Parrottsville Tennessee TN Cocke 029 35.9983 -83.0736 +US 37018 Beechgrove Tennessee TN Coffee 031 35.6447 -86.2046 +US 37342 Hillsboro Tennessee TN Coffee 031 35.3699 -85.9724 +US 37349 Manchester Tennessee TN Coffee 031 35.4976 -86.0748 +US 37355 Manchester Tennessee TN Coffee 031 35.4958 -86.0816 +US 37382 Summitville Tennessee TN Coffee 031 35.4976 -86.0748 +US 37388 Tullahoma Tennessee TN Coffee 031 35.3468 -86.22 +US 37389 Arnold Afb Tennessee TN Coffee 031 35.4976 -86.0748 +US 38001 Alamo Tennessee TN Crockett 033 35.8017 -89.1765 +US 38006 Bells Tennessee TN Crockett 033 35.7198 -89.0729 +US 38021 Crockett Mills Tennessee TN Crockett 033 35.871 -89.1753 +US 38034 Friendship Tennessee TN Crockett 033 35.8976 -89.2041 +US 38050 Maury City Tennessee TN Crockett 033 35.8379 -89.2273 +US 38336 Fruitvale Tennessee TN Crockett 033 35.7484 -89.0327 +US 38337 Gadsden Tennessee TN Crockett 033 35.7799 -88.9929 +US 37723 Crab Orchard Tennessee TN Cumberland 035 35.9537 -84.8205 +US 37842 Ozone Tennessee TN Cumberland 035 35.8754 -84.7929 +US 38555 Crossville Tennessee TN Cumberland 035 35.9623 -85.0514 +US 38557 Crossville Tennessee TN Cumberland 035 35.9885 -85.0124 +US 38558 Crossville Tennessee TN Cumberland 035 36.0077 -84.8719 +US 38571 Crossville Tennessee TN Cumberland 035 36.0527 -85.0138 +US 38572 Crossville Tennessee TN Cumberland 035 35.8487 -85.1308 +US 38578 Pleasant Hill Tennessee TN Cumberland 035 35.9813 -85.1984 +US 37011 Antioch Tennessee TN Davidson 037 36.1706 -86.8825 +US 37013 Antioch Tennessee TN Davidson 037 36.0595 -86.6592 +US 37070 Goodlettsville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37072 Goodlettsville Tennessee TN Davidson 037 36.3417 -86.7212 +US 37076 Hermitage Tennessee TN Davidson 037 36.1848 -86.6002 +US 37080 Joelton Tennessee TN Davidson 037 36.329 -86.9163 +US 37115 Madison Tennessee TN Davidson 037 36.2604 -86.7046 +US 37116 Madison Tennessee TN Davidson 037 36.1866 -86.7852 +US 37138 Old Hickory Tennessee TN Davidson 037 36.2416 -86.6117 +US 37189 Whites Creek Tennessee TN Davidson 037 36.2744 -86.8292 +US 37201 Nashville Tennessee TN Davidson 037 36.1657 -86.7781 +US 37202 Nashville Tennessee TN Davidson 037 36.3403 -86.8273 +US 37203 Nashville Tennessee TN Davidson 037 36.1504 -86.7916 +US 37204 Nashville Tennessee TN Davidson 037 36.1067 -86.7743 +US 37205 Nashville Tennessee TN Davidson 037 36.1114 -86.869 +US 37206 Nashville Tennessee TN Davidson 037 36.1798 -86.7411 +US 37207 Nashville Tennessee TN Davidson 037 36.2195 -86.774 +US 37208 Nashville Tennessee TN Davidson 037 36.1762 -86.8076 +US 37209 Nashville Tennessee TN Davidson 037 36.1546 -86.8602 +US 37210 Nashville Tennessee TN Davidson 037 36.1379 -86.741 +US 37211 Nashville Tennessee TN Davidson 037 36.0725 -86.724 +US 37212 Nashville Tennessee TN Davidson 037 36.1337 -86.8006 +US 37213 Nashville Tennessee TN Davidson 037 36.1663 -86.7669 +US 37214 Nashville Tennessee TN Davidson 037 36.1633 -86.6609 +US 37215 Nashville Tennessee TN Davidson 037 36.0986 -86.8219 +US 37216 Nashville Tennessee TN Davidson 037 36.2125 -86.7257 +US 37217 Nashville Tennessee TN Davidson 037 36.1052 -86.6591 +US 37218 Nashville Tennessee TN Davidson 037 36.2071 -86.8456 +US 37219 Nashville Tennessee TN Davidson 037 36.1678 -86.7837 +US 37220 Nashville Tennessee TN Davidson 037 36.0641 -86.7697 +US 37221 Nashville Tennessee TN Davidson 037 36.0662 -86.9639 +US 37222 Nashville Tennessee TN Davidson 037 36.0562 -86.9801 +US 37224 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37227 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37228 Nashville Tennessee TN Davidson 037 36.1901 -86.8053 +US 37229 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37230 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37232 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37234 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37235 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37236 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37237 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37238 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37239 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37240 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37241 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37242 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37243 Nashville Tennessee TN Davidson 037 36.165 -86.7821 +US 37244 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37245 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37246 Nashville Tennessee TN Davidson 037 36.1586 -86.79 +US 37247 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37248 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37249 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 37250 Nashville Tennessee TN Davidson 037 36.1866 -86.7852 +US 38311 Bath Springs Tennessee TN Decatur 039 35.4521 -88.1286 +US 38329 Decaturville Tennessee TN Decatur 039 35.5585 -88.1334 +US 38363 Parsons Tennessee TN Decatur 039 35.6664 -88.1195 +US 38374 Scotts Hill Tennessee TN Decatur 039 35.505 -88.2405 +US 38380 Sugar Tree Tennessee TN Decatur 039 35.792 -88.0322 +US 37012 Alexandria Tennessee TN DeKalb 041 36.0711 -86.0372 +US 37059 Dowelltown Tennessee TN DeKalb 041 35.9725 -85.9055 +US 37095 Liberty Tennessee TN DeKalb 041 35.9993 -85.9447 +US 37166 Smithville Tennessee TN DeKalb 041 35.9299 -85.8046 +US 37029 Burns Tennessee TN Dickson 043 36.0471 -87.3061 +US 37036 Charlotte Tennessee TN Dickson 043 36.2326 -87.2816 +US 37051 Cumberland Furnace Tennessee TN Dickson 043 36.2721 -87.3914 +US 37055 Dickson Tennessee TN Dickson 043 36.076 -87.3995 +US 37056 Dickson Tennessee TN Dickson 043 36.1469 -87.353 +US 37165 Slayden Tennessee TN Dickson 043 36.2835 -87.4581 +US 37181 Vanleer Tennessee TN Dickson 043 36.2237 -87.4565 +US 37187 White Bluff Tennessee TN Dickson 043 36.1253 -87.219 +US 38007 Bogota Tennessee TN Dyer 045 36.1587 -89.4377 +US 38024 Dyersburg Tennessee TN Dyer 045 36.0444 -89.3836 +US 38025 Dyersburg Tennessee TN Dyer 045 36.0469 -89.4438 +US 38030 Finley Tennessee TN Dyer 045 36.0169 -89.5134 +US 38033 Fowlkes Tennessee TN Dyer County 045 35.9706 -89.3861 +US 38047 Lenox Tennessee TN Dyer 045 36.0638 -89.5609 +US 38056 Miston Tennessee TN Dyer 045 36.0469 -89.4438 +US 38059 Newbern Tennessee TN Dyer 045 36.1009 -89.2514 +US 38070 Tigrett Tennessee TN Dyer 045 35.942 -89.2434 +US 38259 Trimble Tennessee TN Dyer 045 36.2011 -89.1863 +US 38010 Braden Tennessee TN Fayette 047 35.2886 -89.488 +US 38036 Gallaway Tennessee TN Fayette 047 35.3274 -89.6198 +US 38043 Hickory Withe Tennessee TN Fayette 047 35.1993 -89.4141 +US 38045 Laconia Tennessee TN Fayette 047 35.2904 -89.2322 +US 38046 La Grange Tennessee TN Fayette 047 35.1049 -89.3504 +US 38048 Macon Tennessee TN Fayette 047 35.1507 -89.4814 +US 38057 Moscow Tennessee TN Fayette 047 35.0588 -89.3595 +US 38060 Oakland Tennessee TN Fayette 047 35.2229 -89.5518 +US 38066 Rossville Tennessee TN Fayette 047 35.0768 -89.5678 +US 38068 Somerville Tennessee TN Fayette 047 35.2772 -89.3918 +US 38076 Williston Tennessee TN Fayette 047 35.1416 -89.4225 +US 38504 Allardt Tennessee TN Fentress 049 36.3818 -84.7756 +US 38553 Clarkrange Tennessee TN Fentress 049 36.2112 -84.9777 +US 38556 Jamestown Tennessee TN Fentress 049 36.4245 -84.9357 +US 38565 Grimsley Tennessee TN Fentress 049 36.2598 -85.0015 +US 38577 Pall Mall Tennessee TN Fentress 049 36.5781 -85.0384 +US 38589 Wilder Tennessee TN Fentress 049 36.2822 -85.0913 +US 37306 Belvidere Tennessee TN Franklin 051 35.1415 -86.1728 +US 37318 Cowan Tennessee TN Franklin 051 35.1783 -86.0167 +US 37324 Decherd Tennessee TN Franklin 051 35.2326 -86.0589 +US 37330 Estill Springs Tennessee TN Franklin 051 35.2705 -86.1396 +US 37345 Huntland Tennessee TN Franklin 051 35.0512 -86.2694 +US 37372 Saint Andrews Tennessee TN Franklin 051 35.1755 -86.0983 +US 37375 Sewanee Tennessee TN Franklin 051 35.2011 -85.9126 +US 37376 Sherwood Tennessee TN Franklin 051 35.0452 -85.9302 +US 37383 Sewanee Tennessee TN Franklin 051 35.1805 -85.9035 +US 37398 Winchester Tennessee TN Franklin 051 35.1864 -86.113 +US 38233 Kenton Tennessee TN Gibson 053 36.1906 -89.0229 +US 38316 Bradford Tennessee TN Gibson 053 36.0645 -88.8046 +US 38330 Dyer Tennessee TN Gibson 053 36.0716 -89.0192 +US 38331 Eaton Tennessee TN Gibson 053 35.9693 -89.1319 +US 38338 Gibson Tennessee TN Gibson 053 35.8708 -88.8464 +US 38343 Humboldt Tennessee TN Gibson 053 35.837 -88.9057 +US 38346 Idlewild Tennessee TN Gibson 053 36.0306 -88.8056 +US 38355 Medina Tennessee TN Gibson 053 35.8081 -88.7627 +US 38358 Milan Tennessee TN Gibson 053 35.9251 -88.7688 +US 38369 Rutherford Tennessee TN Gibson 053 36.13 -88.9849 +US 38382 Trenton Tennessee TN Gibson 053 35.9712 -88.9507 +US 38389 Yorkville Tennessee TN Gibson 053 36.1354 -89.1117 +US 38449 Ardmore Tennessee TN Giles 055 35.0574 -86.8796 +US 38455 Elkton Tennessee TN Giles 055 35.0539 -86.8953 +US 38459 Frankewing Tennessee TN Giles 055 35.1834 -86.85 +US 38460 Goodspring Tennessee TN Giles 055 35.1167 -87.1278 +US 38472 Lynnville Tennessee TN Giles 055 35.3792 -87.0629 +US 38473 Minor Hill Tennessee TN Giles 055 35.05 -87.1522 +US 38477 Prospect Tennessee TN Giles 055 35.0666 -87.0174 +US 38478 Pulaski Tennessee TN Giles 055 35.2093 -87.0393 +US 37708 Bean Station Tennessee TN Grainger 057 36.3249 -83.3142 +US 37709 Blaine Tennessee TN Grainger 057 36.1583 -83.6783 +US 37848 Powder Springs Tennessee TN Grainger 057 36.2357 -83.6801 +US 37861 Rutledge Tennessee TN Grainger 057 36.2501 -83.5125 +US 37881 Thorn Hill Tennessee TN Grainger 057 36.3917 -83.366 +US 37888 Washburn Tennessee TN Grainger 057 36.3106 -83.5937 +US 37616 Afton Tennessee TN Greene 059 36.2265 -82.7476 +US 37641 Chuckey Tennessee TN Greene 059 36.2569 -82.6905 +US 37743 Greeneville Tennessee TN Greene 059 36.1316 -82.8692 +US 37744 Greeneville Tennessee TN Greene 059 36.1683 -82.8548 +US 37745 Greeneville Tennessee TN Greene 059 36.2455 -82.8238 +US 37809 Midway Tennessee TN Greene 059 36.151 -83.0281 +US 37810 Mohawk Tennessee TN Greene 059 36.1869 -83.0902 +US 37818 Mosheim Tennessee TN Greene 059 36.1839 -82.9674 +US 37301 Altamont Tennessee TN Grundy 061 35.4258 -85.7635 +US 37305 Beersheba Springs Tennessee TN Grundy 061 35.4652 -85.6942 +US 37313 Coalmont Tennessee TN Grundy 061 35.3516 -85.7003 +US 37339 Gruetli Laager Tennessee TN Grundy 061 35.3635 -85.6698 +US 37356 Monteagle Tennessee TN Grundy 061 35.2402 -85.8228 +US 37365 Palmer Tennessee TN Grundy 061 35.3741 -85.5643 +US 37366 Pelham Tennessee TN Grundy 061 35.314 -85.8441 +US 37387 Tracy City Tennessee TN Grundy 061 35.2721 -85.7362 +US 37778 Lowland Tennessee TN Hamblen 063 36.2133 -83.2752 +US 37813 Morristown Tennessee TN Hamblen 063 36.1957 -83.2755 +US 37814 Morristown Tennessee TN Hamblen 063 36.2248 -83.3119 +US 37815 Morristown Tennessee TN Hamblen 063 36.2133 -83.2752 +US 37816 Morristown Tennessee TN Hamblen 063 36.2133 -83.2752 +US 37860 Russellville Tennessee TN Hamblen 063 36.2567 -83.1914 +US 37877 Talbott Tennessee TN Hamblen 063 36.16 -83.4129 +US 37891 Whitesburg Tennessee TN Hamblen 063 36.2621 -83.1458 +US 37302 Apison Tennessee TN Hamilton 065 35.0149 -85.0164 +US 37304 Bakewell Tennessee TN Hamilton 065 35.3452 -85.138 +US 37308 Birchwood Tennessee TN Hamilton 065 35.352 -84.9618 +US 37315 Collegedale Tennessee TN Hamilton 065 35.0479 -85.0574 +US 37341 Harrison Tennessee TN Hamilton 065 35.1679 -85.0945 +US 37343 Hixson Tennessee TN Hamilton 065 35.1591 -85.2182 +US 37350 Lookout Mountain Tennessee TN Hamilton 065 34.9948 -85.3506 +US 37351 Lupton City Tennessee TN Hamilton 065 35.1045 -85.2631 +US 37363 Ooltewah Tennessee TN Hamilton 065 35.0781 -85.0635 +US 37373 Sale Creek Tennessee TN Hamilton 065 35.3858 -85.1023 +US 37377 Signal Mountain Tennessee TN Hamilton 065 35.1494 -85.3362 +US 37379 Soddy Daisy Tennessee TN Hamilton 065 35.2527 -85.163 +US 37384 Soddy Daisy Tennessee TN Hamilton 065 35.2211 -85.2091 +US 37401 Chattanooga Tennessee TN Hamilton 065 35.0178 -85.2064 +US 37402 Chattanooga Tennessee TN Hamilton 065 35.0463 -85.3161 +US 37403 Chattanooga Tennessee TN Hamilton 065 35.045 -85.2965 +US 37404 Chattanooga Tennessee TN Hamilton 065 35.0306 -85.2722 +US 37405 Chattanooga Tennessee TN Hamilton 065 35.0768 -85.3082 +US 37406 Chattanooga Tennessee TN Hamilton 065 35.0614 -85.2478 +US 37407 Chattanooga Tennessee TN Hamilton 065 35.0024 -85.2849 +US 37408 Chattanooga Tennessee TN Hamilton 065 35.0292 -85.3068 +US 37409 Chattanooga Tennessee TN Hamilton 065 34.9981 -85.331 +US 37410 Chattanooga Tennessee TN Hamilton 065 35.0018 -85.3138 +US 37411 Chattanooga Tennessee TN Hamilton 065 35.0271 -85.2356 +US 37412 Chattanooga Tennessee TN Hamilton 065 35.0015 -85.2384 +US 37414 Chattanooga Tennessee TN Hamilton 065 35.2211 -85.2091 +US 37415 Chattanooga Tennessee TN Hamilton 065 35.1273 -85.2802 +US 37416 Chattanooga Tennessee TN Hamilton 065 35.0942 -85.1757 +US 37419 Chattanooga Tennessee TN Hamilton 065 35.0331 -85.3687 +US 37421 Chattanooga Tennessee TN Hamilton 065 35.025 -85.1459 +US 37422 Chattanooga Tennessee TN Hamilton 065 35.2211 -85.2091 +US 37424 Chattanooga Tennessee TN Hamilton 065 35.2211 -85.2091 +US 37450 Chattanooga Tennessee TN Hamilton 065 35.2211 -85.2091 +US 37499 Chattanooga Tennessee TN Hamilton 065 35.2211 -85.2091 +US 37765 Kyles Ford Tennessee TN Hancock 067 36.5721 -83.0507 +US 37869 Sneedville Tennessee TN Hancock 067 36.5275 -83.2529 +US 38008 Bolivar Tennessee TN Hardeman 069 35.2461 -89.0007 +US 38039 Grand Junction Tennessee TN Hardeman 069 35.0659 -89.1534 +US 38042 Hickory Valley Tennessee TN Hardeman 069 35.158 -89.1309 +US 38044 Hornsby Tennessee TN Hardeman 069 35.2197 -88.8263 +US 38052 Middleton Tennessee TN Hardeman 069 35.0818 -88.9046 +US 38061 Pocahontas Tennessee TN Hardeman 069 35.0315 -88.8116 +US 38067 Saulsbury Tennessee TN Hardeman 069 35.0498 -89.0769 +US 38074 Bolivar Tennessee TN Hardeman 069 35.2134 -88.99 +US 38075 Whiteville Tennessee TN Hardeman 069 35.3191 -89.1337 +US 38377 Silerton Tennessee TN Hardeman 069 35.356 -88.8269 +US 38381 Toone Tennessee TN Hardeman 069 35.3574 -88.9353 +US 38326 Counce Tennessee TN Hardin 071 35.0394 -88.2936 +US 38327 Crump Tennessee TN Hardin 071 35.2191 -88.3192 +US 38361 Morris Chapel Tennessee TN Hardin 071 35.3026 -88.3176 +US 38365 Pickwick Dam Tennessee TN Hardin 071 35.0383 -88.2256 +US 38370 Saltillo Tennessee TN Hardin 071 35.3815 -88.2472 +US 38372 Savannah Tennessee TN Hardin 071 35.2023 -88.2005 +US 38376 Shiloh Tennessee TN Hardin 071 35.1195 -88.3507 +US 38475 Olivehill Tennessee TN Hardin 071 35.2667 -88.039 +US 37642 Church Hill Tennessee TN Hawkins 073 36.5399 -82.7252 +US 37645 Mount Carmel Tennessee TN Hawkins 073 36.5629 -82.6532 +US 37711 Bulls Gap Tennessee TN Hawkins 073 36.2832 -83.0374 +US 37731 Eidson Tennessee TN Hawkins 073 36.4995 -83.0827 +US 37811 Mooresburg Tennessee TN Hawkins 073 36.3621 -83.2095 +US 37857 Rogersville Tennessee TN Hawkins 073 36.4162 -83.0108 +US 37873 Surgoinsville Tennessee TN Hawkins 073 36.4741 -82.8306 +US 38012 Brownsville Tennessee TN Haywood 075 35.61 -89.2624 +US 38069 Stanton Tennessee TN Haywood 075 35.4482 -89.3326 +US 38328 Darden Tennessee TN Henderson 077 35.663 -88.2177 +US 38345 Huron Tennessee TN Henderson 077 35.6144 -88.5195 +US 38351 Lexington Tennessee TN Henderson 077 35.6512 -88.3927 +US 38368 Reagan Tennessee TN Henderson 077 35.5096 -88.3508 +US 38371 Sardis Tennessee TN Henderson 077 35.4386 -88.3058 +US 38388 Wildersville Tennessee TN Henderson 077 35.7698 -88.4388 +US 38222 Buchanan Tennessee TN Henry 079 36.4146 -88.1515 +US 38223 Como Tennessee TN Henry 079 36.311 -88.2604 +US 38224 Cottage Grove Tennessee TN Henry 079 36.3479 -88.4614 +US 38231 Henry Tennessee TN Henry 079 36.2013 -88.4536 +US 38236 Mansfield Tennessee TN Henry 079 36.1847 -88.2859 +US 38242 Paris Tennessee TN Henry 079 36.3005 -88.3093 +US 38251 Puryear Tennessee TN Henry 079 36.4456 -88.3472 +US 38256 Springville Tennessee TN Henry 079 36.265 -88.1459 +US 37025 Bon Aqua Tennessee TN Hickman 081 35.9471 -87.2996 +US 37033 Centerville Tennessee TN Hickman 081 35.7797 -87.4775 +US 37098 Lyles Tennessee TN Hickman 081 35.8502 -87.3127 +US 37137 Nunnelly Tennessee TN Hickman 081 35.8763 -87.5067 +US 37140 Only Tennessee TN Hickman 081 35.8679 -87.6655 +US 37147 Pleasantville Tennessee TN Hickman 081 35.6684 -87.6537 +US 38454 Duck River Tennessee TN Hickman 081 35.748 -87.3577 +US 38476 Primm Springs Tennessee TN Hickman 081 35.8104 -87.253 +US 37061 Erin Tennessee TN Houston 083 36.3067 -87.679 +US 37175 Stewart Tennessee TN Houston 083 36.3241 -87.8725 +US 37178 Tennessee Ridge Tennessee TN Houston 083 36.3297 -87.7808 +US 37054 Denver Tennessee TN Humphreys County 085 36.0469 -87.9208 +US 37078 Hurricane Mills Tennessee TN Humphreys 085 35.924 -87.8105 +US 37101 Mc Ewen Tennessee TN Humphreys 085 36.1185 -87.6422 +US 37134 New Johnsonville Tennessee TN Humphreys 085 36.0088 -87.9547 +US 37185 Waverly Tennessee TN Humphreys 085 36.0997 -87.7991 +US 38562 Gainesboro Tennessee TN Jackson 087 36.3438 -85.6355 +US 38564 Granville Tennessee TN Jackson 087 36.2768 -85.7475 +US 38588 Whitleyville Tennessee TN Jackson 087 36.5158 -85.6899 +US 37725 Dandridge Tennessee TN Jefferson 089 36.0008 -83.4233 +US 37760 Jefferson City Tennessee TN Jefferson 089 36.1163 -83.481 +US 37820 New Market Tennessee TN Jefferson 089 36.081 -83.5673 +US 37871 Strawberry Plains Tennessee TN Jefferson 089 36.0687 -83.6568 +US 37890 White Pine Tennessee TN Jefferson 089 36.0776 -83.2998 +US 37640 Butler Tennessee TN Johnson 091 36.3282 -81.9856 +US 37680 Laurel Bloomery Tennessee TN Johnson 091 36.5793 -81.7254 +US 37683 Mountain City Tennessee TN Johnson 091 36.4657 -81.814 +US 37688 Shady Valley Tennessee TN Johnson 091 36.5272 -81.9068 +US 37691 Trade Tennessee TN Johnson 091 36.3683 -81.7572 +US 37721 Corryton Tennessee TN Knox 093 36.12 -83.813 +US 37754 Heiskell Tennessee TN Knox 093 36.115 -84.0438 +US 37806 Mascot Tennessee TN Knox 093 36.0844 -83.7411 +US 37849 Powell Tennessee TN Knox 093 36.0435 -84.04 +US 37901 Knoxville Tennessee TN Knox 093 36.0323 -83.8848 +US 37902 Knoxville Tennessee TN Knox 093 35.9625 -83.9209 +US 37909 Knoxville Tennessee TN Knox 093 35.946 -84.0235 +US 37912 Knoxville Tennessee TN Knox 093 36.0055 -83.9773 +US 37914 Knoxville Tennessee TN Knox 093 35.9918 -83.8496 +US 37915 Knoxville Tennessee TN Knox 093 35.9721 -83.901 +US 37916 Knoxville Tennessee TN Knox 093 35.9556 -83.9336 +US 37917 Knoxville Tennessee TN Knox 093 35.998 -83.9152 +US 37918 Knoxville Tennessee TN Knox 093 36.0501 -83.9226 +US 37919 Knoxville Tennessee TN Knox 093 35.9244 -84.0015 +US 37920 Knoxville Tennessee TN Knox 093 35.8929 -83.9387 +US 37921 Knoxville Tennessee TN Knox 093 35.9793 -84.003 +US 37922 Knoxville Tennessee TN Knox 093 35.858 -84.1194 +US 37923 Knoxville Tennessee TN Knox 093 35.9331 -84.0761 +US 37924 Knoxville Tennessee TN Knox 093 36.032 -83.8021 +US 37927 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37928 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37929 Knoxville Tennessee TN Knox 093 35.9224 -83.7955 +US 37930 Knoxville Tennessee TN Knox 093 35.9029 -83.9536 +US 37931 Knoxville Tennessee TN Knox 093 35.9924 -84.1201 +US 37932 Knoxville Tennessee TN Knox 093 35.9335 -84.1481 +US 37933 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37934 Knoxville Tennessee TN Knox County 093 35.8762 -84.1746 +US 37938 Knoxville Tennessee TN Knox 093 36.1055 -83.946 +US 37939 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37940 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37950 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37955 Knoxville Tennessee TN Knox County 093 35.9626 -83.9168 +US 37990 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37995 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37996 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37997 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 37998 Knoxville Tennessee TN Knox 093 35.9351 -83.7503 +US 37999 Knoxville Tennessee TN Knox 093 35.9901 -83.9622 +US 38077 Wynnburg Tennessee TN Lake 095 36.3281 -89.4744 +US 38079 Tiptonville Tennessee TN Lake 095 36.3846 -89.4649 +US 38080 Ridgely Tennessee TN Lake 095 36.2638 -89.4858 +US 38037 Gates Tennessee TN Lauderdale 097 35.796 -89.3938 +US 38040 Halls Tennessee TN Lauderdale 097 35.8862 -89.4147 +US 38041 Henning Tennessee TN Lauderdale 097 35.6593 -89.6962 +US 38063 Ripley Tennessee TN Lauderdale 097 35.7527 -89.535 +US 38456 Ethridge Tennessee TN Lawrence 099 35.3326 -87.3039 +US 38457 Five Points Tennessee TN Lawrence 099 35.031 -87.2961 +US 38463 Iron City Tennessee TN Lawrence 099 35.0563 -87.6473 +US 38464 Lawrenceburg Tennessee TN Lawrence 099 35.2507 -87.3526 +US 38468 Leoma Tennessee TN Lawrence 099 35.1382 -87.3168 +US 38469 Loretto Tennessee TN Lawrence 099 35.0728 -87.427 +US 38481 Saint Joseph Tennessee TN Lawrence 099 35.0376 -87.5018 +US 38483 Summertown Tennessee TN Lawrence 099 35.4307 -87.3198 +US 38486 Westpoint Tennessee TN Lawrence 099 35.1393 -87.538 +US 38462 Hohenwald Tennessee TN Lewis 101 35.5266 -87.4891 +US 37144 Petersburg Tennessee TN Lincoln 103 35.2924 -86.6447 +US 37328 Elora Tennessee TN Lincoln 103 35.0295 -86.3481 +US 37334 Fayetteville Tennessee TN Lincoln 103 35.1527 -86.5664 +US 37335 Flintville Tennessee TN Lincoln 103 35.0581 -86.413 +US 37348 Kelso Tennessee TN Lincoln 103 35.1024 -86.4683 +US 37359 Mulberry Tennessee TN Lincoln 103 35.1941 -86.4217 +US 38453 Dellrose Tennessee TN Lincoln 103 35.1214 -86.8121 +US 38488 Taft Tennessee TN Lincoln 103 35.0517 -86.6447 +US 37742 Greenback Tennessee TN Loudon 105 35.6567 -84.171 +US 37771 Lenoir City Tennessee TN Loudon 105 35.8104 -84.2665 +US 37772 Lenoir City Tennessee TN Loudon 105 35.7883 -84.2188 +US 37774 Loudon Tennessee TN Loudon 105 35.7292 -84.3436 +US 37846 Philadelphia Tennessee TN Loudon 105 35.6781 -84.4312 +US 37303 Athens Tennessee TN McMinn 107 35.4574 -84.6043 +US 37309 Calhoun Tennessee TN McMinn 107 35.3228 -84.7364 +US 37329 Englewood Tennessee TN McMinn 107 35.4272 -84.4833 +US 37331 Etowah Tennessee TN McMinn 107 35.3314 -84.5283 +US 37370 Riceville Tennessee TN McMinn 107 35.3731 -84.6951 +US 37371 Athens Tennessee TN McMinn 107 35.4414 -84.6416 +US 37826 Niota Tennessee TN McMinn 107 35.5819 -84.5721 +US 38310 Adamsville Tennessee TN McNairy 109 35.2556 -88.4134 +US 38315 Bethel Springs Tennessee TN McNairy 109 35.2289 -88.644 +US 38334 Finger Tennessee TN McNairy 109 35.3544 -88.5876 +US 38339 Guys Tennessee TN McNairy 109 35.0142 -88.5208 +US 38357 Michie Tennessee TN McNairy 109 35.0603 -88.4405 +US 38359 Milledgeville Tennessee TN McNairy 109 35.3672 -88.3881 +US 38367 Ramer Tennessee TN McNairy 109 35.0642 -88.6017 +US 38375 Selmer Tennessee TN McNairy 109 35.1691 -88.5958 +US 38379 Stantonville Tennessee TN McNairy 109 35.1809 -88.4364 +US 38393 Chewalla Tennessee TN McNairy 109 34.9969 -88.6456 +US 37083 Lafayette Tennessee TN Macon 111 36.539 -86.0242 +US 37150 Red Boiling Springs Tennessee TN Macon 111 36.5177 -85.8662 +US 38301 Jackson Tennessee TN Madison 113 35.6102 -88.814 +US 38302 Jackson Tennessee TN Madison 113 35.6124 -88.8412 +US 38303 Jackson Tennessee TN Madison 113 35.6124 -88.8412 +US 38305 Jackson Tennessee TN Madison 113 35.6829 -88.8281 +US 38308 Jackson Tennessee TN Madison 113 35.6124 -88.8412 +US 38313 Beech Bluff Tennessee TN Madison 113 35.5922 -88.6396 +US 38314 Jackson Tennessee TN Madison 113 35.6124 -88.8412 +US 38356 Medon Tennessee TN Madison 113 35.4345 -88.8953 +US 38362 Oakfield Tennessee TN Madison 113 35.7242 -88.7801 +US 38366 Pinson Tennessee TN Madison 113 35.4781 -88.7304 +US 38378 Spring Creek Tennessee TN Madison 113 35.7668 -88.6839 +US 38391 Denmark Tennessee TN Madison 113 35.5571 -88.9759 +US 38392 Mercer Tennessee TN Madison 113 35.4816 -89.0271 +US 37340 Guild Tennessee TN Marion 115 35.0178 -85.5116 +US 37347 Jasper Tennessee TN Marion 115 35.097 -85.5897 +US 37374 Sequatchie Tennessee TN Marion 115 35.1634 -85.6371 +US 37380 South Pittsburg Tennessee TN Marion 115 35.028 -85.7225 +US 37396 Whiteside Tennessee TN Marion 115 35.0206 -85.529 +US 37397 Whitwell Tennessee TN Marion 115 35.1972 -85.5011 +US 37019 Belfast Tennessee TN Marshall 117 35.4069 -86.7095 +US 37034 Chapel Hill Tennessee TN Marshall 117 35.6354 -86.6836 +US 37047 Cornersville Tennessee TN Marshall 117 35.3409 -86.8286 +US 37091 Lewisburg Tennessee TN Marshall 117 35.4596 -86.7812 +US 37174 Spring Hill Tennessee TN Maury 119 35.7173 -86.9048 +US 38401 Columbia Tennessee TN Maury 119 35.6156 -87.038 +US 38402 Columbia Tennessee TN Maury 119 35.6294 -87.0682 +US 38451 Culleoka Tennessee TN Maury 119 35.4749 -87.0005 +US 38461 Hampshire Tennessee TN Maury 119 35.5915 -87.3251 +US 38474 Mount Pleasant Tennessee TN Maury 119 35.5301 -87.2037 +US 38482 Santa Fe Tennessee TN Maury 119 35.7588 -87.1515 +US 38487 Williamsport Tennessee TN Maury 119 35.6494 -87.2257 +US 37322 Decatur Tennessee TN Meigs 121 35.5072 -84.8081 +US 37336 Georgetown Tennessee TN Meigs 121 35.2932 -84.9127 +US 37880 Ten Mile Tennessee TN Meigs 121 35.6862 -84.6548 +US 37314 Cokercreek Tennessee TN Monroe 123 35.2467 -84.3031 +US 37354 Madisonville Tennessee TN Monroe 123 35.4916 -84.3395 +US 37385 Tellico Plains Tennessee TN Monroe 123 35.3562 -84.3068 +US 37874 Sweetwater Tennessee TN Monroe 123 35.5957 -84.4304 +US 37885 Vonore Tennessee TN Monroe 123 35.5354 -84.1778 +US 37040 Clarksville Tennessee TN Montgomery 125 36.522 -87.349 +US 37041 Clarksville Tennessee TN Montgomery 125 36.4774 -87.3772 +US 37042 Clarksville Tennessee TN Montgomery 125 36.5853 -87.4186 +US 37043 Clarksville Tennessee TN Montgomery 125 36.5107 -87.2757 +US 37044 Clarksville Tennessee TN Montgomery 125 36.5314 -87.353 +US 37052 Cunningham Tennessee TN Montgomery 125 36.3789 -87.4245 +US 37142 Palmyra Tennessee TN Montgomery 125 36.4176 -87.4914 +US 37155 Saint Bethlehem Tennessee TN Montgomery 125 36.4774 -87.3772 +US 37171 Southside Tennessee TN Montgomery 125 36.3626 -87.3061 +US 37191 Woodlawn Tennessee TN Montgomery 125 36.5147 -87.5393 +US 37352 Lynchburg Tennessee TN Moore 127 35.2706 -86.372 +US 37719 Coalfield Tennessee TN Morgan 129 36.0352 -84.3907 +US 37726 Deer Lodge Tennessee TN Morgan 129 36.2176 -84.8191 +US 37733 Rugby Tennessee TN Morgan 129 36.3519 -84.7137 +US 37770 Lancing Tennessee TN Morgan 129 36.1456 -84.7135 +US 37829 Oakdale Tennessee TN Morgan 129 36.01 -84.5753 +US 37840 Oliver Springs Tennessee TN Morgan 129 36.0366 -84.3486 +US 37845 Petros Tennessee TN Morgan 129 36.0814 -84.443 +US 37872 Sunbright Tennessee TN Morgan 129 36.2622 -84.6984 +US 37887 Wartburg Tennessee TN Morgan 129 36.1016 -84.5652 +US 38227 Elbridge Tennessee TN Obion County 131 36.2603 -89.3219 +US 38232 Hornbeak Tennessee TN Obion 131 36.3596 -89.3056 +US 38240 Obion Tennessee TN Obion 131 36.2657 -89.2805 +US 38253 Rives Tennessee TN Obion 131 36.3108 -89.0731 +US 38254 Samburg Tennessee TN Obion 131 36.3791 -89.3538 +US 38257 South Fulton Tennessee TN Obion 131 36.4814 -88.8808 +US 38260 Troy Tennessee TN Obion 131 36.3416 -89.1611 +US 38261 Union City Tennessee TN Obion 131 36.4263 -89.0667 +US 38271 Woodland Mills Tennessee TN Obion 131 36.4583 -89.2332 +US 38281 Union City Tennessee TN Obion 131 36.3544 -89.1499 +US 38541 Allons Tennessee TN Overton 133 36.497 -85.3197 +US 38542 Allred Tennessee TN Overton 133 36.324 -85.2031 +US 38543 Alpine Tennessee TN Overton 133 36.3803 -85.1522 +US 38554 Crawford Tennessee TN Overton 133 36.2361 -85.1688 +US 38568 Hilham Tennessee TN Overton 133 36.4227 -85.4464 +US 38570 Livingston Tennessee TN Overton 133 36.389 -85.3205 +US 38573 Monroe Tennessee TN Overton 133 36.4642 -85.2164 +US 38580 Rickman Tennessee TN Overton 133 36.2812 -85.3048 +US 37096 Linden Tennessee TN Perry 135 35.5944 -87.8567 +US 37097 Lobelville Tennessee TN Perry 135 35.7467 -87.8251 +US 38549 Byrdstown Tennessee TN Pickett 137 36.5709 -85.1456 +US 37307 Benton Tennessee TN Polk 139 35.173 -84.6544 +US 37316 Conasauga Tennessee TN Polk 139 34.9971 -84.7327 +US 37317 Copperhill Tennessee TN Polk 139 35.0207 -84.3748 +US 37325 Delano Tennessee TN Polk 139 35.2612 -84.6024 +US 37326 Ducktown Tennessee TN Polk 139 35.0339 -84.3792 +US 37333 Farner Tennessee TN Polk 139 35.1449 -84.3209 +US 37346 Isabella Tennessee TN Polk County 139 35.0276 -84.3551 +US 37361 Ocoee Tennessee TN Polk 139 35.1025 -84.7136 +US 37362 Oldfort Tennessee TN Polk 139 35.0365 -84.7219 +US 37369 Reliance Tennessee TN Polk 139 35.1807 -84.541 +US 37391 Turtletown Tennessee TN Polk 139 35.1081 -84.3544 +US 38501 Cookeville Tennessee TN Putnam 141 36.2178 -85.5423 +US 38502 Cookeville Tennessee TN Putnam 141 36.1418 -85.4548 +US 38503 Cookeville Tennessee TN Putnam 141 36.1418 -85.4548 +US 38505 Cookeville Tennessee TN Putnam 141 36.1418 -85.4548 +US 38506 Cookeville Tennessee TN Putnam 141 36.1819 -85.4408 +US 38544 Baxter Tennessee TN Putnam 141 36.1249 -85.6378 +US 38545 Bloomington Springs Tennessee TN Putnam 141 36.2321 -85.6628 +US 38548 Buffalo Valley Tennessee TN Putnam 141 36.1833 -85.7589 +US 38574 Monterey Tennessee TN Putnam 141 36.1509 -85.2542 +US 38582 Silver Point Tennessee TN Putnam 141 36.1006 -85.7338 +US 37321 Dayton Tennessee TN Rhea 143 35.5002 -85.0135 +US 37332 Evensville Tennessee TN Rhea 143 35.6153 -85.0228 +US 37337 Grandview Tennessee TN Rhea 143 35.7608 -84.8615 +US 37338 Graysville Tennessee TN Rhea 143 35.4484 -85.179 +US 37381 Spring City Tennessee TN Rhea 143 35.6935 -84.8198 +US 37395 Watts Bar Dam Tennessee TN Rhea 143 35.6172 -84.9289 +US 37748 Harriman Tennessee TN Roane 145 35.9348 -84.5155 +US 37763 Kingston Tennessee TN Roane 145 35.8528 -84.4971 +US 37854 Rockwood Tennessee TN Roane 145 35.8587 -84.6842 +US 37010 Adams Tennessee TN Robertson 147 36.5582 -87.1226 +US 37032 Cedar Hill Tennessee TN Robertson 147 36.5062 -87.0275 +US 37049 Cross Plains Tennessee TN Robertson 147 36.5531 -86.6761 +US 37073 Greenbrier Tennessee TN Robertson 147 36.4229 -86.7914 +US 37141 Orlinda Tennessee TN Robertson 147 36.611 -86.699 +US 37152 Ridgetop Tennessee TN Robertson 147 36.4025 -86.7722 +US 37172 Springfield Tennessee TN Robertson 147 36.5018 -86.8769 +US 37188 White House Tennessee TN Robertson 147 36.46 -86.6705 +US 37037 Christiana Tennessee TN Rutherford 149 35.696 -86.368 +US 37060 Eagleville Tennessee TN Rutherford 149 35.7492 -86.6327 +US 37063 Fosterville Tennessee TN Rutherford 149 35.8596 -86.421 +US 37085 Lascassas Tennessee TN Rutherford 149 35.9495 -86.3112 +US 37086 La Vergne Tennessee TN Rutherford 149 36.0127 -86.56 +US 37089 La Vergne Tennessee TN Rutherford 149 35.8596 -86.421 +US 37118 Milton Tennessee TN Rutherford 149 35.9221 -86.1824 +US 37127 Murfreesboro Tennessee TN Rutherford 149 35.763 -86.3722 +US 37128 Murfreesboro Tennessee TN Rutherford 149 35.8454 -86.4867 +US 37129 Murfreesboro Tennessee TN Rutherford 149 35.871 -86.4181 +US 37130 Murfreesboro Tennessee TN Rutherford 149 35.8478 -86.3647 +US 37131 Murfreesboro Tennessee TN Rutherford 149 35.8596 -86.421 +US 37132 Murfreesboro Tennessee TN Rutherford 149 35.8596 -86.421 +US 37133 Murfreesboro Tennessee TN Rutherford 149 35.8596 -86.421 +US 37153 Rockvale Tennessee TN Rutherford 149 35.745 -86.5352 +US 37167 Smyrna Tennessee TN Rutherford 149 35.9656 -86.5048 +US 37732 Elgin Tennessee TN Scott 151 36.3879 -84.6166 +US 37755 Helenwood Tennessee TN Scott 151 36.4329 -84.5381 +US 37756 Huntsville Tennessee TN Scott 151 36.3983 -84.4288 +US 37841 Oneida Tennessee TN Scott 151 36.5053 -84.5293 +US 37852 Robbins Tennessee TN Scott 151 36.3527 -84.5904 +US 37892 Winfield Tennessee TN Scott 151 36.5598 -84.434 +US 37893 Winona Tennessee TN Scott 151 36.3834 -84.5173 +US 37327 Dunlap Tennessee TN Sequatchie 153 35.3842 -85.3925 +US 37738 Gatlinburg Tennessee TN Sevier 155 35.729 -83.4874 +US 37764 Kodak Tennessee TN Sevier 155 35.9722 -83.6171 +US 37862 Sevierville Tennessee TN Sevier 155 35.8452 -83.5386 +US 37863 Pigeon Forge Tennessee TN Sevier 155 35.7922 -83.5638 +US 37864 Sevierville Tennessee TN Sevier 155 35.8542 -83.6138 +US 37865 Seymour Tennessee TN Sevier 155 35.87 -83.7495 +US 37868 Pigeon Forge Tennessee TN Sevier 155 35.8809 -83.5561 +US 37876 Sevierville Tennessee TN Sevier 155 35.866 -83.4793 +US 37883 Treadway Tennessee TN Sevier County 155 36.4282 -83.2191 +US 37501 Memphis Tennessee TN Shelby 157 35.1693 -89.9904 +US 37544 Memphis Tennessee TN Shelby County 157 35.1496 -90.0487 +US 38002 Arlington Tennessee TN Shelby 157 35.2752 -89.7295 +US 38014 Brunswick Tennessee TN Shelby 157 35.2017 -89.9715 +US 38016 Cordova Tennessee TN Shelby 157 35.1602 -89.7816 +US 38017 Collierville Tennessee TN Shelby 157 35.0551 -89.6767 +US 38018 Cordova Tennessee TN Shelby 157 35.1563 -89.7789 +US 38027 Collierville Tennessee TN Shelby 157 35.2017 -89.9715 +US 38028 Eads Tennessee TN Shelby 157 35.1551 -89.676 +US 38029 Ellendale Tennessee TN Shelby 157 35.2017 -89.9715 +US 38053 Millington Tennessee TN Shelby 157 35.3185 -89.9054 +US 38054 Millington Tennessee TN Shelby 157 35.3341 -89.8706 +US 38055 Millington Tennessee TN Shelby 157 35.2017 -89.9715 +US 38083 Millington Tennessee TN Shelby 157 35.2017 -89.9715 +US 38088 Cordova Tennessee TN Shelby 157 35.2017 -89.9715 +US 38101 Memphis Tennessee TN Shelby 157 35.0507 -89.8478 +US 38103 Memphis Tennessee TN Shelby 157 35.144 -90.048 +US 38104 Memphis Tennessee TN Shelby 157 35.1334 -90.0046 +US 38105 Memphis Tennessee TN Shelby 157 35.1497 -90.033 +US 38106 Memphis Tennessee TN Shelby 157 35.1021 -90.033 +US 38107 Memphis Tennessee TN Shelby 157 35.1831 -90.0201 +US 38108 Memphis Tennessee TN Shelby 157 35.1787 -89.9682 +US 38109 Memphis Tennessee TN Shelby 157 35.0425 -90.0732 +US 38110 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38111 Memphis Tennessee TN Shelby 157 35.1076 -89.9457 +US 38112 Memphis Tennessee TN Shelby 157 35.1483 -89.9729 +US 38113 Memphis Tennessee TN Shelby 157 35.1274 -89.9845 +US 38114 Memphis Tennessee TN Shelby 157 35.0981 -89.9825 +US 38115 Memphis Tennessee TN Shelby 157 35.0579 -89.864 +US 38116 Memphis Tennessee TN Shelby 157 35.0303 -90.0123 +US 38117 Memphis Tennessee TN Shelby 157 35.1124 -89.9034 +US 38118 Memphis Tennessee TN Shelby 157 35.0514 -89.9265 +US 38119 Memphis Tennessee TN Shelby 157 35.0821 -89.8501 +US 38120 Memphis Tennessee TN Shelby 157 35.1207 -89.8651 +US 38122 Memphis Tennessee TN Shelby 157 35.1572 -89.9268 +US 38124 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38125 Memphis Tennessee TN Shelby 157 35.0312 -89.8124 +US 38126 Memphis Tennessee TN Shelby 157 35.1255 -90.0424 +US 38127 Memphis Tennessee TN Shelby 157 35.251 -90.0296 +US 38128 Memphis Tennessee TN Shelby 157 35.2213 -89.9413 +US 38129 Memphis Tennessee TN Shelby County 157 35.1415 -90.0519 +US 38130 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38131 Memphis Tennessee TN Shelby 157 35.0664 -89.9921 +US 38132 Memphis Tennessee TN Shelby 157 35.072 -89.9886 +US 38133 Memphis Tennessee TN Shelby 157 35.2054 -89.8036 +US 38134 Memphis Tennessee TN Shelby 157 35.1845 -89.8574 +US 38135 Memphis Tennessee TN Shelby 157 35.2323 -89.8509 +US 38136 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38137 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38138 Germantown Tennessee TN Shelby 157 35.0883 -89.8053 +US 38139 Germantown Tennessee TN Shelby 157 35.0874 -89.7703 +US 38140 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38141 Memphis Tennessee TN Shelby 157 35.0231 -89.8492 +US 38142 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38143 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38145 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38146 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38147 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38148 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38150 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38151 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38152 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38157 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38159 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38161 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38163 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38165 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38166 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38167 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38168 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38173 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38174 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38175 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38177 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38181 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38182 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38183 Germantown Tennessee TN Shelby 157 35.2017 -89.9715 +US 38184 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38186 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38187 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38188 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38190 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38193 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38194 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38195 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 38197 Memphis Tennessee TN Shelby 157 35.2017 -89.9715 +US 37030 Carthage Tennessee TN Smith 159 36.2763 -85.9517 +US 37057 Dixon Springs Tennessee TN Smith 159 36.4455 -86.0533 +US 37145 Pleasant Shade Tennessee TN Smith 159 36.3462 -85.9189 +US 37151 Riddleton Tennessee TN Smith 159 36.3506 -86.0335 +US 38547 Brush Creek Tennessee TN Smith 159 36.1107 -86.0203 +US 38552 Chestnut Mound Tennessee TN Smith 159 36.1929 -85.8374 +US 38560 Elmwood Tennessee TN Smith 159 36.2355 -85.8808 +US 38563 Gordonsville Tennessee TN Smith 159 36.1843 -86.0008 +US 38567 Hickman Tennessee TN Smith 159 36.1197 -85.9023 +US 38569 Lancaster Tennessee TN Smith 159 36.0954 -85.8551 +US 37023 Big Rock Tennessee TN Stewart 161 36.5716 -87.7378 +US 37028 Bumpus Mills Tennessee TN Stewart 161 36.6226 -87.8614 +US 37050 Cumberland City Tennessee TN Stewart 161 36.3729 -87.6306 +US 37058 Dover Tennessee TN Stewart 161 36.4942 -87.8787 +US 37079 Indian Mound Tennessee TN Stewart 161 36.4946 -87.6804 +US 37617 Blountville Tennessee TN Sullivan 163 36.5356 -82.3656 +US 37618 Bluff City Tennessee TN Sullivan 163 36.4774 -82.2362 +US 37620 Bristol Tennessee TN Sullivan 163 36.5686 -82.1819 +US 37621 Bristol Tennessee TN Sullivan 163 36.5042 -82.2645 +US 37625 Bristol Tennessee TN Sullivan 163 36.5042 -82.2645 +US 37660 Kingsport Tennessee TN Sullivan 163 36.5144 -82.5476 +US 37662 Kingsport Tennessee TN Sullivan 163 36.5305 -82.5298 +US 37663 Kingsport Tennessee TN Sullivan 163 36.4715 -82.4834 +US 37664 Kingsport Tennessee TN Sullivan 163 36.5208 -82.5168 +US 37665 Kingsport Tennessee TN Sullivan 163 36.5799 -82.5733 +US 37669 Kingsport Tennessee TN Sullivan 163 36.5042 -82.2645 +US 37686 Piney Flats Tennessee TN Sullivan 163 36.4461 -82.334 +US 37699 Piney Flats Tennessee TN Sullivan 163 36.5042 -82.2645 +US 37022 Bethpage Tennessee TN Sumner 165 36.5186 -86.3146 +US 37031 Castalian Springs Tennessee TN Sumner 165 36.3806 -86.3107 +US 37048 Cottontown Tennessee TN Sumner 165 36.4912 -86.6033 +US 37066 Gallatin Tennessee TN Sumner 165 36.3834 -86.4512 +US 37075 Hendersonville Tennessee TN Sumner 165 36.3054 -86.6072 +US 37077 Hendersonville Tennessee TN Sumner 165 36.3047 -86.6211 +US 37119 Mitchellville Tennessee TN Sumner 165 36.632 -86.539 +US 37148 Portland Tennessee TN Sumner 165 36.5673 -86.5059 +US 37186 Westmoreland Tennessee TN Sumner 165 36.5756 -86.2353 +US 38004 Atoka Tennessee TN Tipton 167 35.4213 -89.8216 +US 38011 Brighton Tennessee TN Tipton 167 35.4703 -89.7525 +US 38015 Burlison Tennessee TN Tipton 167 35.5399 -89.8177 +US 38019 Covington Tennessee TN Tipton 167 35.5598 -89.6501 +US 38023 Drummonds Tennessee TN Tipton 167 35.4452 -89.9236 +US 38049 Mason Tennessee TN Tipton 167 35.438 -89.5518 +US 38058 Munford Tennessee TN Tipton 167 35.459 -89.8197 +US 38071 Tipton Tennessee TN Tipton 167 35.4143 -89.8188 +US 37074 Hartsville Tennessee TN Trousdale 169 36.3947 -86.1704 +US 37650 Erwin Tennessee TN Unicoi 171 36.1342 -82.4163 +US 37657 Flag Pond Tennessee TN Unicoi 171 36.0085 -82.5623 +US 37692 Unicoi Tennessee TN Unicoi 171 36.2066 -82.322 +US 37779 Luttrell Tennessee TN Union 173 36.2001 -83.76 +US 37807 Maynardville Tennessee TN Union 173 36.2343 -83.8403 +US 37866 Sharps Chapel Tennessee TN Union 173 36.3685 -83.8127 +US 38585 Spencer Tennessee TN Van Buren 175 35.7279 -85.4287 +US 37110 Mc Minnville Tennessee TN Warren 177 35.684 -85.7782 +US 37111 Mc Minnville Tennessee TN Warren 177 35.6784 -85.7776 +US 37357 Morrison Tennessee TN Warren 177 35.6 -85.8899 +US 37378 Smartt Tennessee TN Warren 177 35.6784 -85.7776 +US 37394 Viola Tennessee TN Warren 177 35.5276 -85.8422 +US 38550 Campaign Tennessee TN Warren 177 35.7734 -85.6192 +US 38581 Rock Island Tennessee TN Warren 177 35.7668 -85.6788 +US 37601 Johnson City Tennessee TN Washington 179 36.3339 -82.3408 +US 37602 Johnson City Tennessee TN Washington 179 36.2717 -82.5012 +US 37603 Johnson City Tennessee TN Washington County 179 36.3132 -82.3535 +US 37604 Johnson City Tennessee TN Washington 179 36.3107 -82.381 +US 37605 Johnson City Tennessee TN Washington 179 36.3158 -82.3838 +US 37614 Johnson City Tennessee TN Washington 179 36.1571 -82.5626 +US 37615 Johnson City Tennessee TN Washington 179 36.3996 -82.4523 +US 37656 Fall Branch Tennessee TN Washington 179 36.4158 -82.6256 +US 37659 Jonesborough Tennessee TN Washington 179 36.2954 -82.4902 +US 37681 Limestone Tennessee TN Washington 179 36.254 -82.625 +US 37684 Mountain Home Tennessee TN Washington 179 36.2717 -82.5012 +US 37690 Telford Tennessee TN Washington 179 36.2451 -82.5369 +US 38425 Clifton Tennessee TN Wayne 181 35.3819 -87.95 +US 38450 Collinwood Tennessee TN Wayne 181 35.1635 -87.7185 +US 38452 Cypress Inn Tennessee TN Wayne 181 35.0579 -87.7883 +US 38471 Lutts Tennessee TN Wayne 181 35.1138 -87.8923 +US 38485 Waynesboro Tennessee TN Wayne 181 35.322 -87.7395 +US 38225 Dresden Tennessee TN Weakley 183 36.295 -88.6963 +US 38226 Dukedom Tennessee TN Weakley 183 36.4796 -88.6926 +US 38229 Gleason Tennessee TN Weakley 183 36.2117 -88.6184 +US 38230 Greenfield Tennessee TN Weakley 183 36.1485 -88.7453 +US 38237 Martin Tennessee TN Weakley 183 36.3425 -88.8554 +US 38238 Martin Tennessee TN Weakley 183 36.2824 -88.7381 +US 38241 Palmersville Tennessee TN Weakley 183 36.3948 -88.6142 +US 38255 Sharon Tennessee TN Weakley 183 36.2395 -88.8477 +US 38559 Doyle Tennessee TN White 185 35.8356 -85.5191 +US 38579 Quebeck Tennessee TN White 185 35.8303 -85.552 +US 38583 Sparta Tennessee TN White 185 35.9439 -85.4392 +US 38587 Walling Tennessee TN White 185 35.8695 -85.6185 +US 37014 Arrington Tennessee TN Williamson 187 35.8566 -86.6633 +US 37024 Brentwood Tennessee TN Williamson 187 35.8746 -86.9076 +US 37027 Brentwood Tennessee TN Williamson 187 36.0063 -86.7909 +US 37046 College Grove Tennessee TN Williamson 187 35.7832 -86.7495 +US 37062 Fairview Tennessee TN Williamson 187 35.9755 -87.1321 +US 37064 Franklin Tennessee TN Williamson 187 35.9328 -86.8788 +US 37065 Franklin Tennessee TN Williamson 187 35.8951 -86.9214 +US 37067 Franklin Tennessee TN Williamson 187 35.9121 -86.7655 +US 37068 Franklin Tennessee TN Williamson 187 35.8746 -86.9076 +US 37069 Franklin Tennessee TN Williamson 187 35.9796 -86.9106 +US 37135 Nolensville Tennessee TN Williamson 187 35.9307 -86.6829 +US 37179 Thompsons Station Tennessee TN Williamson 187 35.809 -86.8913 +US 37071 Gladeville Tennessee TN Wilson 189 36.1562 -86.3049 +US 37087 Lebanon Tennessee TN Wilson 189 36.2098 -86.3024 +US 37088 Lebanon Tennessee TN Wilson 189 36.1562 -86.3049 +US 37090 Lebanon Tennessee TN Wilson 189 36.1185 -86.263 +US 37121 Mount Juliet Tennessee TN Wilson 189 36.1562 -86.3049 +US 37122 Mount Juliet Tennessee TN Wilson 189 36.1897 -86.5023 +US 37136 Norene Tennessee TN Wilson 189 36.1562 -86.3049 +US 37184 Watertown Tennessee TN Wilson 189 36.0953 -86.1434 +US 75763 Frankston Texas TX Anderson 001 32.0535 -95.5163 +US 75779 Neches Texas TX Anderson 001 31.7942 -95.662 +US 75801 Palestine Texas TX Anderson 001 31.7588 -95.6342 +US 75802 Palestine Texas TX Anderson 001 31.9268 -95.5796 +US 75803 Palestine Texas TX Anderson 001 31.7571 -95.6545 +US 75832 Cayuga Texas TX Anderson 001 31.7942 -95.662 +US 75839 Elkhart Texas TX Anderson 001 31.648 -95.5551 +US 75853 Montalba Texas TX Anderson 001 31.9329 -95.7935 +US 75861 Tennessee Colony Texas TX Anderson 001 31.7929 -95.8998 +US 75880 Tennessee Colony Texas TX Anderson 001 31.7942 -95.662 +US 75882 Palestine Texas TX Anderson 001 31.7942 -95.662 +US 75884 Tennessee Colony Texas TX Anderson 001 31.7942 -95.662 +US 75886 Tennessee Colony Texas TX Anderson 001 31.7942 -95.662 +US 79714 Andrews Texas TX Andrews 003 32.3201 -102.5409 +US 75901 Lufkin Texas TX Angelina 005 31.27 -94.6469 +US 75902 Lufkin Texas TX Angelina 005 31.3623 -94.7611 +US 75903 Lufkin Texas TX Angelina 005 31.2766 -94.5676 +US 75904 Lufkin Texas TX Angelina 005 31.3489 -94.8327 +US 75915 Lufkin Texas TX Angelina 005 31.2873 -94.5771 +US 75941 Diboll Texas TX Angelina 005 31.195 -94.7729 +US 75949 Huntington Texas TX Angelina 005 31.2837 -94.5662 +US 75969 Pollok Texas TX Angelina 005 31.4291 -94.8254 +US 75980 Zavalla Texas TX Angelina 005 31.1569 -94.3871 +US 78358 Fulton Texas TX Aransas 007 28.0865 -97.0416 +US 78381 Rockport Texas TX Aransas 007 28.0131 -97.0936 +US 78382 Rockport Texas TX Aransas 007 28.0308 -97.0688 +US 76351 Archer City Texas TX Archer 009 33.5562 -98.6249 +US 76366 Holliday Texas TX Archer 009 33.6751 -98.6576 +US 76370 Megargel Texas TX Archer 009 33.4533 -98.9297 +US 76379 Scotland Texas TX Archer 009 33.6535 -98.465 +US 76389 Windthorst Texas TX Archer 009 33.5796 -98.4376 +US 79019 Claude Texas TX Armstrong 011 35.0967 -101.3813 +US 79094 Wayside Texas TX Armstrong 011 34.9653 -101.3578 +US 78008 Campbellton Texas TX Atascosa 013 28.767 -98.2566 +US 78011 Charlotte Texas TX Atascosa 013 28.8649 -98.707 +US 78012 Christine Texas TX Atascosa 013 28.7858 -98.4886 +US 78026 Jourdanton Texas TX Atascosa 013 28.903 -98.544 +US 78050 Leming Texas TX Atascosa 013 29.077 -98.509 +US 78052 Lytle Texas TX Atascosa 013 29.2366 -98.7945 +US 78053 Mc Coy Texas TX Atascosa 013 28.8518 -98.2685 +US 78062 Peggy Texas TX Atascosa 013 28.92 -98.5529 +US 78064 Pleasanton Texas TX Atascosa 013 28.9924 -98.4831 +US 78065 Poteet Texas TX Atascosa 013 29.0994 -98.6241 +US 77418 Bellville Texas TX Austin 015 29.9658 -96.2531 +US 77452 Kenney Texas TX Austin 015 29.8493 -96.3133 +US 77473 San Felipe Texas TX Austin 015 29.8019 -96.1014 +US 77474 Sealy Texas TX Austin 015 29.7826 -96.1592 +US 77485 Wallis Texas TX Austin 015 29.6397 -96.0456 +US 78931 Bleiblerville Texas TX Austin 015 30.0292 -96.4448 +US 78933 Cat Spring Texas TX Austin 015 29.7512 -96.39 +US 78944 Industry Texas TX Austin 015 29.9904 -96.4843 +US 78950 New Ulm Texas TX Austin 015 29.9134 -96.4961 +US 79320 Bula Texas TX Bailey 017 33.897 -102.6564 +US 79324 Enochs Texas TX Bailey 017 33.8502 -102.7641 +US 79344 Maple Texas TX Bailey 017 33.8622 -102.9266 +US 79347 Muleshoe Texas TX Bailey 017 34.2193 -102.7496 +US 78003 Bandera Texas TX Bandera 019 29.7276 -99.0453 +US 78055 Medina Texas TX Bandera 019 29.8475 -99.3215 +US 78063 Pipe Creek Texas TX Bandera 019 29.6796 -98.9484 +US 78883 Tarpley Texas TX Bandera 019 29.6455 -99.2469 +US 78885 Vanderpool Texas TX Bandera 019 29.7418 -99.5555 +US 78602 Bastrop Texas TX Bastrop 021 30.1388 -97.2921 +US 78612 Cedar Creek Texas TX Bastrop 021 30.0966 -97.4976 +US 78621 Elgin Texas TX Bastrop 021 30.3231 -97.3737 +US 78650 Mc Dade Texas TX Bastrop 021 30.2968 -97.2386 +US 78659 Paige Texas TX Bastrop 021 30.1858 -97.1198 +US 78662 Red Rock Texas TX Bastrop 021 29.9906 -97.4081 +US 78953 Rosanky Texas TX Bastrop 021 29.9241 -97.3119 +US 78957 Smithville Texas TX Bastrop 021 30.0178 -97.1494 +US 76380 Seymour Texas TX Baylor 023 33.5914 -99.2587 +US 78102 Beeville Texas TX Bee 025 28.4222 -97.7616 +US 78104 Beeville Texas TX Bee 025 28.3931 -97.776 +US 78125 Mineral Texas TX Bee 025 28.5552 -97.9407 +US 78142 Normanna Texas TX Bee 025 28.5278 -97.7831 +US 78145 Pawnee Texas TX Bee 025 28.6526 -97.9921 +US 78146 Pettus Texas TX Bee 025 28.6164 -97.8082 +US 78162 Tuleta Texas TX Bee 025 28.4245 -97.7327 +US 78389 Skidmore Texas TX Bee 025 28.2121 -97.7127 +US 78391 Tynan Texas TX Bee 025 28.1693 -97.7549 +US 76501 Temple Texas TX Bell 027 31.0895 -97.3343 +US 76502 Temple Texas TX Bell 027 31.071 -97.3898 +US 76503 Temple Texas TX Bell 027 31.054 -97.3203 +US 76504 Temple Texas TX Bell 027 31.0917 -97.3648 +US 76505 Temple Texas TX Bell 027 31.0363 -97.492 +US 76508 Temple Texas TX Bell 027 31.0363 -97.492 +US 76511 Bartlett Texas TX Bell 027 30.7991 -97.4263 +US 76513 Belton Texas TX Bell 027 31.0723 -97.472 +US 76533 Heidenheimer Texas TX Bell 027 31.0496 -97.4936 +US 76534 Holland Texas TX Bell 027 30.88 -97.3857 +US 76540 Killeen Texas TX Bell 027 31.1171 -97.7278 +US 76541 Killeen Texas TX Bell 027 31.1164 -97.7278 +US 76542 Killeen Texas TX Bell 027 31.0376 -97.6809 +US 76543 Killeen Texas TX Bell 027 31.1172 -97.6651 +US 76544 Killeen Texas TX Bell 027 31.1282 -97.7469 +US 76547 Killeen Texas TX Bell 027 31.0363 -97.492 +US 76548 Harker Heights Texas TX Bell 027 31.0286 -97.6115 +US 76549 Killeen Texas TX Bell 027 31.0065 -97.841 +US 76554 Little River Texas TX Bell 027 30.963 -97.3616 +US 76559 Nolanville Texas TX Bell 027 31.0833 -97.5941 +US 76564 Pendleton Texas TX Bell 027 31.0363 -97.492 +US 76569 Rogers Texas TX Bell 027 30.955 -97.2228 +US 76571 Salado Texas TX Bell 027 30.9494 -97.533 +US 76579 Troy Texas TX Bell 027 31.1759 -97.2852 +US 78002 Atascosa Texas TX Bexar 029 29.2705 -98.7421 +US 78015 Boerne Texas TX Bexar 029 29.7327 -98.6646 +US 78023 Helotes Texas TX Bexar 029 29.6321 -98.7542 +US 78054 Macdona Texas TX Bexar 029 29.3256 -98.7322 +US 78069 Somerset Texas TX Bexar 029 29.2205 -98.6678 +US 78073 Von Ormy Texas TX Bexar 029 29.275 -98.6677 +US 78101 Adkins Texas TX Bexar 029 29.3805 -98.265 +US 78109 Converse Texas TX Bexar 029 29.5173 -98.3217 +US 78112 Elmendorf Texas TX Bexar 029 29.2308 -98.372 +US 78148 Universal City Texas TX Bexar 029 29.5465 -98.2954 +US 78150 Universal City Texas TX Bexar 029 29.4375 -98.4616 +US 78152 Saint Hedwig Texas TX Bexar 029 29.4353 -98.1952 +US 78201 San Antonio Texas TX Bexar 029 29.4711 -98.5356 +US 78202 San Antonio Texas TX Bexar 029 29.4275 -98.4601 +US 78203 San Antonio Texas TX Bexar 029 29.4148 -98.4601 +US 78204 San Antonio Texas TX Bexar 029 29.4059 -98.5078 +US 78205 San Antonio Texas TX Bexar 029 29.4237 -98.4925 +US 78206 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78207 San Antonio Texas TX Bexar 029 29.4229 -98.526 +US 78208 San Antonio Texas TX Bexar 029 29.44 -98.459 +US 78209 San Antonio Texas TX Bexar 029 29.4821 -98.4554 +US 78210 San Antonio Texas TX Bexar 029 29.3977 -98.4658 +US 78211 San Antonio Texas TX Bexar 029 29.3499 -98.5638 +US 78212 San Antonio Texas TX Bexar 029 29.4388 -98.4935 +US 78213 San Antonio Texas TX Bexar 029 29.5234 -98.5273 +US 78214 San Antonio Texas TX Bexar 029 29.3641 -98.4924 +US 78215 San Antonio Texas TX Bexar 029 29.4413 -98.4793 +US 78216 San Antonio Texas TX Bexar 029 29.5334 -98.4975 +US 78217 San Antonio Texas TX Bexar 029 29.5395 -98.4194 +US 78218 San Antonio Texas TX Bexar 029 29.4969 -98.4032 +US 78219 San Antonio Texas TX Bexar 029 29.4492 -98.3446 +US 78220 San Antonio Texas TX Bexar 029 29.4106 -98.4128 +US 78221 San Antonio Texas TX Bexar 029 29.3309 -98.5054 +US 78222 San Antonio Texas TX Bexar 029 29.3831 -98.396 +US 78223 San Antonio Texas TX Bexar 029 29.3579 -98.4356 +US 78224 San Antonio Texas TX Bexar 029 29.3374 -98.5393 +US 78225 San Antonio Texas TX Bexar 029 29.3875 -98.5245 +US 78226 San Antonio Texas TX Bexar 029 29.393 -98.5511 +US 78227 San Antonio Texas TX Bexar 029 29.4027 -98.6433 +US 78228 San Antonio Texas TX Bexar 029 29.4589 -98.5699 +US 78229 San Antonio Texas TX Bexar 029 29.5042 -98.5697 +US 78230 San Antonio Texas TX Bexar 029 29.5407 -98.5521 +US 78231 San Antonio Texas TX Bexar 029 29.5714 -98.5414 +US 78232 San Antonio Texas TX Bexar 029 29.5863 -98.4769 +US 78233 San Antonio Texas TX Bexar 029 29.5563 -98.3643 +US 78234 San Antonio Texas TX Bexar 029 29.4622 -98.4423 +US 78235 San Antonio Texas TX Bexar 029 29.3494 -98.4422 +US 78236 San Antonio Texas TX Bexar 029 29.3887 -98.6112 +US 78237 San Antonio Texas TX Bexar 029 29.4208 -98.5645 +US 78238 San Antonio Texas TX Bexar 029 29.451 -98.6169 +US 78239 San Antonio Texas TX Bexar 029 29.5182 -98.3627 +US 78240 San Antonio Texas TX Bexar 029 29.5189 -98.6006 +US 78241 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78242 San Antonio Texas TX Bexar 029 29.3509 -98.6109 +US 78243 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78244 San Antonio Texas TX Bexar 029 29.4793 -98.3476 +US 78245 San Antonio Texas TX Bexar 029 29.4189 -98.6895 +US 78246 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78247 San Antonio Texas TX Bexar 029 29.5855 -98.4071 +US 78248 San Antonio Texas TX Bexar 029 29.5894 -98.5201 +US 78249 San Antonio Texas TX Bexar 029 29.5612 -98.6117 +US 78250 San Antonio Texas TX Bexar 029 29.5054 -98.6688 +US 78251 San Antonio Texas TX Bexar 029 29.4597 -98.6555 +US 78252 San Antonio Texas TX Bexar 029 29.346 -98.6464 +US 78253 San Antonio Texas TX Bexar 029 29.4599 -98.7479 +US 78254 San Antonio Texas TX Bexar 029 29.5551 -98.7442 +US 78255 San Antonio Texas TX Bexar 029 29.6701 -98.6873 +US 78256 San Antonio Texas TX Bexar 029 29.6169 -98.6252 +US 78257 San Antonio Texas TX Bexar 029 29.6495 -98.6137 +US 78258 San Antonio Texas TX Bexar 029 29.6562 -98.4967 +US 78259 San Antonio Texas TX Bexar 029 29.6283 -98.4445 +US 78260 San Antonio Texas TX Bexar 029 29.7026 -98.4759 +US 78261 San Antonio Texas TX Bexar 029 29.7055 -98.4191 +US 78262 San Antonio Texas TX Bexar 029 29.4493 -98.2904 +US 78263 San Antonio Texas TX Bexar 029 29.3614 -98.3174 +US 78264 San Antonio Texas TX Bexar 029 29.1733 -98.4723 +US 78265 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78268 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78269 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78270 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78275 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78278 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78279 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78280 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78283 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78284 San Antonio Texas TX Bexar 029 29.4426 -98.4913 +US 78285 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78286 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78287 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78288 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78289 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78291 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78292 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78293 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78294 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78295 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78296 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78297 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78298 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78299 San Antonio Texas TX Bexar 029 29.4375 -98.4616 +US 78606 Blanco Texas TX Blanco 031 30.0874 -98.4107 +US 78635 Hye Texas TX Blanco 031 30.2269 -98.5396 +US 78636 Johnson City Texas TX Blanco 031 30.2948 -98.3691 +US 78663 Round Mountain Texas TX Blanco 031 30.4429 -98.4365 +US 79738 Gail Texas TX Borden 033 32.7523 -101.45 +US 76634 Clifton Texas TX Bosque 035 31.7918 -97.5203 +US 76637 Cranfills Gap Texas TX Bosque 035 31.7486 -97.8113 +US 76644 Laguna Park Texas TX Bosque 035 31.8974 -97.641 +US 76649 Iredell Texas TX Bosque 035 31.9722 -97.8793 +US 76652 Kopperl Texas TX Bosque 035 32.1035 -97.5421 +US 76665 Meridian Texas TX Bosque 035 31.929 -97.6443 +US 76671 Morgan Texas TX Bosque 035 32.0195 -97.5608 +US 76689 Valley Mills Texas TX Bosque 035 31.6599 -97.4935 +US 76690 Walnut Springs Texas TX Bosque 035 32.0593 -97.7514 +US 75501 Texarkana Texas TX Bowie 037 33.4113 -94.1774 +US 75503 Texarkana Texas TX Bowie 037 33.4669 -94.0774 +US 75504 Texarkana Texas TX Bowie 037 33.4766 -94.3949 +US 75505 Texarkana Texas TX Bowie 037 33.4624 -94.0715 +US 75507 Texarkana Texas TX Bowie 037 33.3934 -94.3404 +US 75559 De Kalb Texas TX Bowie 037 33.4727 -94.6211 +US 75561 Hooks Texas TX Bowie 037 33.5253 -94.2657 +US 75567 Maud Texas TX Bowie 037 33.3409 -94.3175 +US 75569 Nash Texas TX Bowie 037 33.4344 -94.1219 +US 75570 New Boston Texas TX Bowie 037 33.4619 -94.4375 +US 75573 Redwater Texas TX Bowie 037 33.358 -94.2571 +US 75574 Simms Texas TX Bowie 037 33.3359 -94.552 +US 75599 Texarkana Texas TX Bowie 037 33.4766 -94.3949 +US 77422 Brazoria Texas TX Brazoria 039 29.0236 -95.5867 +US 77430 Damon Texas TX Brazoria 039 29.3014 -95.7036 +US 77431 Danciger Texas TX Brazoria 039 29.1737 -95.8207 +US 77463 Old Ocean Texas TX Brazoria 039 29.1308 -95.7916 +US 77480 Sweeny Texas TX Brazoria 039 29.0415 -95.7004 +US 77486 West Columbia Texas TX Brazoria 039 29.1408 -95.6694 +US 77511 Alvin Texas TX Brazoria 039 29.412 -95.2515 +US 77512 Alvin Texas TX Brazoria 039 29.3629 -95.276 +US 77515 Angleton Texas TX Brazoria 039 29.181 -95.4467 +US 77516 Angleton Texas TX Brazoria 039 29.184 -95.4651 +US 77531 Clute Texas TX Brazoria 039 29.0325 -95.4026 +US 77534 Danbury Texas TX Brazoria 039 29.2291 -95.3435 +US 77541 Freeport Texas TX Brazoria 039 29.0357 -95.3379 +US 77542 Freeport Texas TX Brazoria 039 29.184 -95.4651 +US 77566 Lake Jackson Texas TX Brazoria 039 29.0393 -95.4401 +US 77577 Liverpool Texas TX Brazoria 039 29.2667 -95.2889 +US 77578 Manvel Texas TX Brazoria 039 29.4694 -95.3503 +US 77581 Pearland Texas TX Brazoria 039 29.5617 -95.2721 +US 77583 Rosharon Texas TX Brazoria 039 29.4203 -95.4537 +US 77584 Pearland Texas TX Brazoria 039 29.5405 -95.3208 +US 77588 Pearland Texas TX Brazoria 039 29.5127 -95.2542 +US 77801 Bryan Texas TX Brazos 041 30.6327 -96.3662 +US 77802 Bryan Texas TX Brazos 041 30.6582 -96.3351 +US 77803 Bryan Texas TX Brazos 041 30.6913 -96.3714 +US 77805 Bryan Texas TX Brazos 041 30.6521 -96.341 +US 77806 Bryan Texas TX Brazos 041 30.6521 -96.341 +US 77807 Bryan Texas TX Brazos 041 30.6711 -96.4799 +US 77808 Bryan Texas TX Brazos 041 30.8202 -96.3059 +US 77840 College Station Texas TX Brazos 041 30.6045 -96.3123 +US 77841 College Station Texas TX Brazos 041 30.5726 -96.327 +US 77842 College Station Texas TX Brazos 041 30.6521 -96.341 +US 77843 College Station Texas TX Brazos 041 30.6521 -96.341 +US 77844 College Station Texas TX Brazos 041 30.6521 -96.341 +US 77845 College Station Texas TX Brazos 041 30.5118 -96.3171 +US 77862 Kurten Texas TX Brazos 041 30.6521 -96.341 +US 77866 Millican Texas TX Brazos 041 30.4491 -96.217 +US 77869 Navasota Texas TX Brazos 041 30.6521 -96.341 +US 77881 Wellborn Texas TX Brazos 041 30.6521 -96.341 +US 79830 Alpine Texas TX Brewster 043 30.2631 -103.6541 +US 79831 Alpine Texas TX Brewster 043 30.3068 -103.6704 +US 79832 Alpine Texas TX Brewster 043 30.3631 -103.6539 +US 79834 Big Bend National Park Texas TX Brewster 043 29.2924 -103.2963 +US 79842 Marathon Texas TX Brewster 043 30.1886 -103.2214 +US 79852 Terlingua Texas TX Brewster 043 29.3165 -103.5597 +US 79255 Quitaque Texas TX Briscoe 045 34.3796 -101.0465 +US 79257 Silverton Texas TX Briscoe 045 34.4641 -101.3169 +US 78353 Encino Texas TX Brooks 047 26.9249 -98.1922 +US 78355 Falfurrias Texas TX Brooks 047 27.2242 -98.1408 +US 76432 Blanket Texas TX Brown 049 31.7882 -98.8311 +US 76801 Brownwood Texas TX Brown 049 31.7754 -98.9915 +US 76802 Early Texas TX Brown 049 31.7874 -98.9229 +US 76803 Brownwood Texas TX Brown 049 31.7639 -98.936 +US 76804 Brownwood Texas TX Brown 049 31.7742 -99.0921 +US 76823 Bangs Texas TX Brown 049 31.7503 -99.1568 +US 76827 Brookesmith Texas TX Brown 049 31.5176 -99.1277 +US 76857 May Texas TX Brown 049 31.9571 -98.9656 +US 76890 Zephyr Texas TX Brown 049 31.6694 -98.8182 +US 77836 Caldwell Texas TX Burleson 051 30.5298 -96.7143 +US 77838 Chriesman Texas TX Burleson 051 30.5131 -96.618 +US 77839 Clay Texas TX Burleson 051 30.3414 -96.5267 +US 77852 Deanville Texas TX Burleson 051 30.5131 -96.618 +US 77863 Lyons Texas TX Burleson 051 30.3592 -96.5915 +US 77878 Snook Texas TX Burleson 051 30.4702 -96.4804 +US 77879 Somerville Texas TX Burleson 051 30.4076 -96.5358 +US 78605 Bertram Texas TX Burnet 053 30.7411 -98.0529 +US 78608 Briggs Texas TX Burnet 053 30.9325 -97.9702 +US 78611 Burnet Texas TX Burnet 053 30.7766 -98.2642 +US 78654 Marble Falls Texas TX Burnet 053 30.5723 -98.2073 +US 78657 Marble Falls Texas TX Burnet 053 30.5373 -98.3737 +US 78616 Dale Texas TX Caldwell 055 29.9528 -97.581 +US 78622 Fentress Texas TX Caldwell 055 29.7648 -97.7728 +US 78644 Lockhart Texas TX Caldwell 055 29.8868 -97.6769 +US 78648 Luling Texas TX Caldwell 055 29.6826 -97.6499 +US 78655 Martindale Texas TX Caldwell 055 29.8394 -97.8508 +US 78656 Maxwell Texas TX Caldwell 055 29.8953 -97.8144 +US 78661 Prairie Lea Texas TX Caldwell 055 29.7239 -97.7449 +US 77972 Long Mott Texas TX Calhoun 057 28.5255 -96.6948 +US 77978 Point Comfort Texas TX Calhoun 057 28.6651 -96.5506 +US 77979 Port Lavaca Texas TX Calhoun 057 28.6011 -96.6259 +US 77982 Port O Connor Texas TX Calhoun 057 28.14 -96.7751 +US 77983 Seadrift Texas TX Calhoun 057 28.4101 -96.7023 +US 76443 Cross Plains Texas TX Callahan 059 32.1482 -99.1872 +US 76469 Putnam Texas TX Callahan 059 32.374 -99.1957 +US 79504 Baird Texas TX Callahan 059 32.3916 -99.3777 +US 79510 Clyde Texas TX Callahan 059 32.3803 -99.5184 +US 78520 Brownsville Texas TX Cameron 061 25.9337 -97.5174 +US 78521 Brownsville Texas TX Cameron 061 25.9221 -97.4612 +US 78522 Brownsville Texas TX Cameron 061 26.1889 -97.7643 +US 78523 Brownsville Texas TX Cameron 061 25.981 -97.5209 +US 78526 Brownsville Texas TX Cameron 061 25.9717 -97.4699 +US 78535 Combes Texas TX Cameron 061 26.2451 -97.7416 +US 78550 Harlingen Texas TX Cameron 061 26.1951 -97.689 +US 78551 Harlingen Texas TX Cameron 061 26.2447 -97.7206 +US 78552 Harlingen Texas TX Cameron 061 26.1831 -97.7468 +US 78553 Harlingen Texas TX Cameron 061 26.1252 -97.4757 +US 78559 La Feria Texas TX Cameron 061 26.1666 -97.8261 +US 78566 Los Fresnos Texas TX Cameron 061 26.1158 -97.4107 +US 78567 Los Indios Texas TX Cameron 061 26.0417 -97.6937 +US 78568 Lozano Texas TX Cameron 061 26.1904 -97.5423 +US 78575 Olmito Texas TX Cameron 061 26.0353 -97.5496 +US 78578 Port Isabel Texas TX Cameron 061 26.0539 -97.3125 +US 78583 Rio Hondo Texas TX Cameron 061 26.2339 -97.5513 +US 78586 San Benito Texas TX Cameron 061 26.1337 -97.6447 +US 78592 Santa Maria Texas TX Cameron 061 26.0785 -97.8351 +US 78593 Santa Rosa Texas TX Cameron 061 26.2555 -97.8257 +US 78597 South Padre Island Texas TX Cameron 061 26.2393 -97.1936 +US 75451 Leesburg Texas TX Camp 063 32.9763 -95.1079 +US 75686 Pittsburg Texas TX Camp 063 32.9623 -94.9603 +US 79039 Groom Texas TX Carson 065 35.2168 -101.1285 +US 79068 Panhandle Texas TX Carson 065 35.3808 -101.4304 +US 79080 Skellytown Texas TX Carson 065 35.5685 -101.1721 +US 79097 White Deer Texas TX Carson 065 35.4278 -101.174 +US 75551 Atlanta Texas TX Cass 067 33.109 -94.1646 +US 75555 Bivins Texas TX Cass 067 32.966 -94.1404 +US 75556 Bloomburg Texas TX Cass 067 33.1339 -94.0647 +US 75560 Douglassville Texas TX Cass 067 33.1758 -94.3467 +US 75562 Kildare Texas TX Cass 067 32.9468 -94.2539 +US 75563 Linden Texas TX Cass 067 33.0048 -94.3605 +US 75565 Mc Leod Texas TX Cass 067 32.9511 -94.0808 +US 75566 Marietta Texas TX Cass 067 33.1796 -94.5421 +US 75572 Queen City Texas TX Cass 067 33.1557 -94.1537 +US 75630 Avinger Texas TX Cass 067 32.8485 -94.5795 +US 75656 Hughes Springs Texas TX Cass 067 33.0168 -94.6228 +US 79027 Dimmitt Texas TX Castro 069 34.5341 -102.3046 +US 79043 Hart Texas TX Castro 069 34.3878 -102.1155 +US 79063 Nazareth Texas TX Castro 069 34.5444 -102.1069 +US 79085 Summerfield Texas TX Castro 069 34.7437 -102.5064 +US 77514 Anahuac Texas TX Chambers 071 29.662 -94.593 +US 77523 Baytown Texas TX Chambers 071 29.77 -94.8608 5 +US 77560 Hankamer Texas TX Chambers 071 29.8752 -94.5938 +US 77580 Mont Belvieu Texas TX Chambers 071 29.8561 -94.8429 +US 77597 Wallisville Texas TX Chambers 071 29.8591 -94.6759 +US 77661 Stowell Texas TX Chambers 071 29.7809 -94.39 +US 77665 Winnie Texas TX Chambers 071 29.8157 -94.3395 +US 75759 Cuney Texas TX Cherokee 073 32.0415 -95.42 +US 75764 Gallatin Texas TX Cherokee 073 31.8849 -95.1572 +US 75766 Jacksonville Texas TX Cherokee 073 31.9618 -95.2703 +US 75772 Maydelle Texas TX Cherokee 073 31.8008 -95.3001 +US 75780 New Summerfield Texas TX Cherokee 073 31.782 -95.164 +US 75784 Reklaw Texas TX Cherokee 073 31.8859 -95.0118 +US 75785 Rusk Texas TX Cherokee 073 31.8136 -95.0965 +US 75925 Alto Texas TX Cherokee 073 31.6103 -95.0762 +US 75976 Wells Texas TX Cherokee 073 31.4998 -94.9694 +US 79201 Childress Texas TX Childress 075 34.4104 -100.2364 +US 79222 Carey Texas TX Childress 075 34.5297 -100.2076 +US 79238 Kirkland Texas TX Childress 075 34.5297 -100.2076 +US 79259 Tell Texas TX Childress 075 34.5158 -100.3301 +US 76228 Bellevue Texas TX Clay 077 33.5879 -98.1574 +US 76352 Bluegrove Texas TX Clay 077 33.8117 -98.1848 +US 76357 Byers Texas TX Clay 077 34.0728 -98.1839 +US 76365 Henrietta Texas TX Clay 077 33.8196 -98.26 +US 76377 Petrolia Texas TX Clay 077 34.0273 -98.2692 +US 79314 Bledsoe Texas TX Cochran 079 33.5997 -103.0168 +US 79346 Morton Texas TX Cochran 079 33.7157 -102.7796 +US 79379 Whiteface Texas TX Cochran 079 33.5988 -102.6199 +US 76933 Bronte Texas TX Coke 081 31.8789 -100.2988 +US 76945 Robert Lee Texas TX Coke 081 31.8951 -100.5104 +US 76949 Silver Texas TX Coke 081 32.0484 -100.6922 +US 76953 Tennyson Texas TX Coke 081 31.7397 -100.2884 +US 76828 Burkett Texas TX Coleman 083 31.9986 -99.2553 +US 76834 Coleman Texas TX Coleman 083 31.8287 -99.427 +US 76845 Gouldbusk Texas TX Coleman 083 31.5511 -99.5136 +US 76873 Rockwood Texas TX Coleman 083 31.5037 -99.3746 +US 76878 Santa Anna Texas TX Coleman 083 31.7215 -99.3212 +US 76882 Talpa Texas TX Coleman 083 31.8034 -99.6747 +US 76884 Valera Texas TX Coleman 083 31.7731 -99.564 +US 76888 Voss Texas TX Coleman 083 31.5892 -99.6326 +US 76889 Whon Texas TX Coleman County 083 31.6446 -99.3112 +US 79519 Goldsboro Texas TX Coleman 083 32.0482 -99.6775 +US 79538 Novice Texas TX Coleman 083 31.9781 -99.6809 +US 75002 Allen Texas TX Collin 085 33.0934 -96.6454 +US 75009 Celina Texas TX Collin 085 33.3103 -96.7673 +US 75013 Allen Texas TX Collin 085 33.1186 -96.6773 +US 75023 Plano Texas TX Collin 085 33.055 -96.7365 +US 75024 Plano Texas TX Collin 085 33.0752 -96.7843 +US 75025 Plano Texas TX Collin 085 33.0784 -96.7291 +US 75026 Plano Texas TX Collin 085 33.1936 -96.5699 +US 75033 Frisco Texas TX Collin 085 33.2559 -96.8853 +US 75034 Frisco Texas TX Collin 085 33.1499 -96.8241 +US 75035 Frisco Texas TX Collin 085 33.1377 -96.7524 +US 75069 Mc Kinney Texas TX Collin 085 33.1966 -96.6085 +US 75070 Mc Kinney Texas TX Collin 085 33.1951 -96.6642 +US 75071 Mc Kinney Texas TX Collin 085 33.2141 -96.7533 +US 75074 Plano Texas TX Collin 085 33.0277 -96.6777 +US 75075 Plano Texas TX Collin 085 33.025 -96.7397 +US 75078 Prosper Texas TX Collin 085 33.2362 -96.7954 +US 75086 Plano Texas TX Collin 085 33.0024 -96.6158 +US 75093 Plano Texas TX Collin 085 33.0299 -96.7889 +US 75094 Plano Texas TX Collin 085 33.0148 -96.6189 +US 75097 Weston Texas TX Collin 085 33.3512 -96.6646 +US 75121 Copeville Texas TX Collin 085 33.0875 -96.4186 +US 75164 Josephine Texas TX Collin 085 33.0598 -96.3248 +US 75166 Lavon Texas TX Collin 085 33.0139 -96.4377 +US 75173 Nevada Texas TX Collin 085 33.0593 -96.3877 +US 75407 Princeton Texas TX Collin 085 33.1555 -96.4981 +US 75409 Anna Texas TX Collin 085 33.3445 -96.5639 +US 75424 Blue Ridge Texas TX Collin 085 33.3061 -96.3901 +US 75442 Farmersville Texas TX Collin 085 33.1659 -96.3686 +US 75454 Melissa Texas TX Collin 085 33.2841 -96.574 +US 75485 Westminster Texas TX Collin 085 33.3627 -96.4635 +US 79077 Samnorwood Texas TX Collingsworth 087 34.8405 -100.2049 +US 79095 Wellington Texas TX Collingsworth 087 34.8717 -100.2207 +US 79230 Dodson Texas TX Collingsworth 087 34.7644 -100.0286 +US 79251 Quail Texas TX Collingsworth 087 34.918 -100.4252 +US 77412 Altair Texas TX Colorado 089 29.6047 -96.5249 +US 77434 Eagle Lake Texas TX Colorado 089 29.5842 -96.3354 +US 77442 Garwood Texas TX Colorado 089 29.476 -96.4919 +US 77460 Nada Texas TX Colorado 089 29.6047 -96.5249 +US 77470 Rock Island Texas TX Colorado 089 29.4745 -96.5796 +US 77475 Sheridan Texas TX Colorado 089 29.4452 -96.6536 +US 78934 Columbus Texas TX Colorado 089 29.7032 -96.5527 +US 78935 Alleyton Texas TX Colorado 089 29.7092 -96.4865 +US 78943 Glidden Texas TX Colorado 089 29.6994 -96.5942 +US 78951 Oakland Texas TX Colorado 089 29.6047 -96.5249 +US 78962 Weimar Texas TX Colorado 089 29.6787 -96.755 +US 78964 Winchester Texas TX Colorado County 089 30.009 -97.0135 +US 78070 Spring Branch Texas TX Comal 091 29.9238 -98.3788 +US 78130 New Braunfels Texas TX Comal 091 29.7229 -98.0742 +US 78131 New Braunfels Texas TX Comal 091 29.7992 -98.3384 +US 78132 New Braunfels Texas TX Comal 091 29.7565 -98.1983 +US 78133 Canyon Lake Texas TX Comal 091 29.9112 -98.2374 +US 78135 New Braunfels Texas TX Comal 091 29.7385 -98.0872 +US 78163 Bulverde Texas TX Comal 091 29.7767 -98.4626 +US 78266 San Antonio Texas TX Comal 091 29.6643 -98.3118 +US 78623 Fischer Texas TX Comal 091 29.9627 -98.2088 +US 76442 Comanche Texas TX Comanche 093 31.9116 -98.6082 +US 76444 De Leon Texas TX Comanche 093 32.1087 -98.5489 +US 76452 Energy Texas TX Comanche 093 31.7633 -98.3999 +US 76455 Gustine Texas TX Comanche 093 31.8468 -98.4017 +US 76468 Proctor Texas TX Comanche 093 31.9963 -98.4003 +US 76474 Sidney Texas TX Comanche 093 31.932 -98.768 +US 76837 Eden Texas TX Concho 095 31.2192 -99.8407 +US 76855 Lowake Texas TX Concho 095 31.3336 -99.8584 +US 76862 Millersview Texas TX Concho 095 31.4167 -99.7171 +US 76866 Paint Rock Texas TX Concho 095 31.5048 -99.9139 +US 76937 Eola Texas TX Concho 095 31.3617 -100.0922 +US 76238 Era Texas TX Cooke 097 33.4965 -97.3859 +US 76240 Gainesville Texas TX Cooke 097 33.6547 -97.1583 +US 76241 Gainesville Texas TX Cooke 097 33.6104 -97.0369 +US 76250 Lindsay Texas TX Cooke 097 33.636 -97.2214 +US 76252 Muenster Texas TX Cooke 097 33.6595 -97.3624 +US 76253 Myra Texas TX Cooke 097 33.6178 -97.309 +US 76263 Rosston Texas TX Cooke 097 33.4674 -97.4534 +US 76272 Valley View Texas TX Cooke 097 33.5022 -97.2311 +US 76522 Copperas Cove Texas TX Coryell 099 31.2029 -97.9301 +US 76525 Evant Texas TX Coryell 099 31.4388 -98.0535 +US 76526 Flat Texas TX Coryell 099 31.2956 -97.5822 +US 76528 Gatesville Texas TX Coryell 099 31.4177 -97.833 +US 76538 Jonesboro Texas TX Coryell 099 31.5599 -97.8456 +US 76552 Leon Junction Texas TX Coryell 099 31.3512 -97.5485 +US 76558 Mound Texas TX Coryell 099 31.3514 -97.6444 +US 76561 Oglesby Texas TX Coryell 099 31.4438 -97.5501 +US 76566 Purmela Texas TX Coryell 099 31.4841 -97.9903 +US 76576 Gatesville Texas TX Coryell County 099 31.434 -97.7478 +US 76596 Gatesville Texas TX Coryell 099 31.3902 -97.7993 +US 76597 Gatesville Texas TX Coryell 099 31.3902 -97.7993 +US 76598 Gatesville Texas TX Coryell 099 31.3902 -97.7993 +US 76599 Gatesville Texas TX Coryell 099 31.4706 -97.7347 +US 79223 Cee Vee Texas TX Cottle 101 34.2295 -100.4573 +US 79224 Chalk Texas TX Cottle 101 34.0749 -100.2582 +US 79248 Paducah Texas TX Cottle 101 34.0217 -100.2986 +US 79731 Crane Texas TX Crane 103 31.3969 -102.3544 +US 76943 Ozona Texas TX Crockett 105 30.7164 -101.2388 +US 79321 Cone Texas TX Crosby County 107 33.5995 -101.3555 +US 79322 Crosbyton Texas TX Crosby 107 33.6562 -101.2287 +US 79343 Lorenzo Texas TX Crosby 107 33.6666 -101.5277 +US 79357 Ralls Texas TX Crosby 107 33.6851 -101.3836 +US 79855 Van Horn Texas TX Culberson 109 31.0391 -104.8245 +US 79022 Dalhart Texas TX Dallam 111 36.0732 -102.5177 +US 79051 Kerrick Texas TX Dallam 111 36.5663 -102.3438 +US 79087 Texline Texas TX Dallam 111 36.374 -102.9845 +US 75001 Addison Texas TX Dallas 113 32.96 -96.8385 +US 75006 Carrollton Texas TX Dallas 113 32.9657 -96.8825 +US 75011 Carrollton Texas TX Dallas 113 32.7673 -96.7776 +US 75014 Irving Texas TX Dallas 113 32.7673 -96.7776 +US 75015 Irving Texas TX Dallas 113 32.7673 -96.7776 +US 75016 Irving Texas TX Dallas 113 32.7673 -96.7776 +US 75017 Irving Texas TX Dallas 113 32.7673 -96.7776 +US 75019 Coppell Texas TX Dallas 113 32.9673 -96.9805 +US 75030 Rowlett Texas TX Dallas 113 32.9175 -96.5347 +US 75037 Irving Texas TX Dallas 113 32.7673 -96.7776 +US 75038 Irving Texas TX Dallas 113 32.8653 -96.9905 +US 75039 Irving Texas TX Dallas 113 32.8697 -96.9389 +US 75040 Garland Texas TX Dallas 113 32.9227 -96.6248 +US 75041 Garland Texas TX Dallas 113 32.8794 -96.6411 +US 75042 Garland Texas TX Dallas 113 32.9185 -96.6775 +US 75043 Garland Texas TX Dallas 113 32.8565 -96.5999 +US 75044 Garland Texas TX Dallas 113 32.9522 -96.6654 +US 75045 Garland Texas TX Dallas 113 32.9137 -96.6271 +US 75046 Garland Texas TX Dallas 113 32.7673 -96.7776 +US 75047 Garland Texas TX Dallas 113 32.7673 -96.7776 +US 75048 Garland Texas TX Dallas 113 32.9504 -96.5753 +US 75048 Sachse Texas TX Dallas 113 32.9643 -96.6012 +US 75049 Garland Texas TX Dallas 113 32.7673 -96.7776 +US 75050 Grand Prairie Texas TX Dallas 113 32.7649 -97.0112 +US 75051 Grand Prairie Texas TX Dallas 113 32.7115 -97.0069 +US 75052 Grand Prairie Texas TX Dallas 113 32.6605 -97.0311 +US 75053 Grand Prairie Texas TX Dallas 113 32.7673 -96.7776 +US 75054 Grand Prairie Texas TX Dallas 113 32.5907 -97.0405 +US 75060 Irving Texas TX Dallas 113 32.8023 -96.9597 +US 75061 Irving Texas TX Dallas 113 32.8267 -96.9633 +US 75062 Irving Texas TX Dallas 113 32.8479 -96.974 +US 75063 Irving Texas TX Dallas 113 32.9247 -96.9598 +US 75080 Richardson Texas TX Dallas 113 32.966 -96.7452 +US 75081 Richardson Texas TX Dallas 113 32.9462 -96.7058 +US 75082 Richardson Texas TX Dallas 113 32.9865 -96.686 +US 75083 Richardson Texas TX Dallas 113 32.7673 -96.7776 +US 75084 Irving Texas TX Dallas County 113 32.8137 -96.9485 +US 75085 Richardson Texas TX Dallas 113 32.7673 -96.7776 +US 75088 Rowlett Texas TX Dallas 113 32.9031 -96.5472 +US 75089 Rowlett Texas TX Dallas 113 32.9346 -96.5544 +US 75098 Wylie Texas TX Dallas 113 33.0041 -96.5394 +US 75099 Coppell Texas TX Dallas 113 32.771 -96.7996 +US 75104 Cedar Hill Texas TX Dallas 113 32.5885 -96.9438 +US 75106 Cedar Hill Texas TX Dallas 113 32.7673 -96.7776 +US 75115 Desoto Texas TX Dallas 113 32.6041 -96.8653 +US 75116 Duncanville Texas TX Dallas 113 32.6587 -96.9114 +US 75123 Desoto Texas TX Dallas 113 32.7673 -96.7776 +US 75134 Lancaster Texas TX Dallas 113 32.6161 -96.783 +US 75137 Duncanville Texas TX Dallas 113 32.6347 -96.9113 +US 75138 Duncanville Texas TX Dallas 113 32.7673 -96.7776 +US 75141 Hutchins Texas TX Dallas 113 32.6396 -96.707 +US 75146 Lancaster Texas TX Dallas 113 32.5914 -96.7728 +US 75149 Mesquite Texas TX Dallas 113 32.7678 -96.6082 +US 75150 Mesquite Texas TX Dallas 113 32.8154 -96.6307 +US 75159 Seagoville Texas TX Dallas 113 32.6525 -96.558 +US 75172 Wilmer Texas TX Dallas 113 32.5981 -96.6838 +US 75180 Mesquite Texas TX Dallas 113 32.7212 -96.6153 +US 75181 Mesquite Texas TX Dallas 113 32.7272 -96.5669 +US 75182 Sunnyvale Texas TX Dallas 113 32.797 -96.5616 +US 75185 Mesquite Texas TX Dallas 113 32.7403 -96.5618 +US 75187 Mesquite Texas TX Dallas 113 32.7673 -96.7776 +US 75201 Dallas Texas TX Dallas 113 32.7904 -96.8044 +US 75202 Dallas Texas TX Dallas 113 32.7781 -96.8054 +US 75203 Dallas Texas TX Dallas 113 32.746 -96.807 +US 75204 Dallas Texas TX Dallas 113 32.8038 -96.7851 +US 75205 Dallas Texas TX Dallas 113 32.826 -96.7843 +US 75206 Dallas Texas TX Dallas 113 32.831 -96.7692 +US 75207 Dallas Texas TX Dallas 113 32.7939 -96.8319 +US 75208 Dallas Texas TX Dallas 113 32.7492 -96.8389 +US 75209 Dallas Texas TX Dallas 113 32.8456 -96.826 +US 75210 Dallas Texas TX Dallas 113 32.7699 -96.743 +US 75211 Dallas Texas TX Dallas 113 32.7319 -96.9057 +US 75212 Dallas Texas TX Dallas 113 32.7829 -96.8714 +US 75214 Dallas Texas TX Dallas 113 32.8248 -96.7498 +US 75215 Dallas Texas TX Dallas 113 32.7582 -96.7623 +US 75216 Dallas Texas TX Dallas 113 32.7086 -96.7955 +US 75217 Dallas Texas TX Dallas 113 32.7244 -96.6755 +US 75218 Dallas Texas TX Dallas 113 32.8463 -96.6972 +US 75219 Dallas Texas TX Dallas 113 32.8132 -96.8142 +US 75220 Dallas Texas TX Dallas 113 32.8681 -96.8622 +US 75221 Dallas Texas TX Dallas 113 32.8147 -96.7877 +US 75222 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75223 Dallas Texas TX Dallas 113 32.7942 -96.7475 +US 75224 Dallas Texas TX Dallas 113 32.7114 -96.8387 +US 75225 Dallas Texas TX Dallas 113 32.8628 -96.7918 +US 75226 Dallas Texas TX Dallas 113 32.7887 -96.7676 +US 75227 Dallas Texas TX Dallas 113 32.7672 -96.6836 +US 75228 Dallas Texas TX Dallas 113 32.825 -96.6784 +US 75229 Dallas Texas TX Dallas 113 32.8958 -96.8588 +US 75230 Dallas Texas TX Dallas 113 32.8999 -96.7897 +US 75231 Dallas Texas TX Dallas 113 32.8756 -96.7495 +US 75232 Dallas Texas TX Dallas 113 32.6647 -96.8384 +US 75233 Dallas Texas TX Dallas 113 32.7046 -96.8725 +US 75234 Dallas Texas TX Dallas 113 32.9245 -96.8938 +US 75235 Dallas Texas TX Dallas 113 32.8252 -96.8388 +US 75236 Dallas Texas TX Dallas 113 32.69 -96.9177 +US 75237 Dallas Texas TX Dallas 113 32.659 -96.8765 +US 75238 Dallas Texas TX Dallas 113 32.877 -96.708 +US 75239 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75240 Dallas Texas TX Dallas 113 32.9374 -96.7872 +US 75241 Dallas Texas TX Dallas 113 32.6722 -96.7774 +US 75242 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75243 Dallas Texas TX Dallas 113 32.9103 -96.7285 +US 75244 Dallas Texas TX Dallas 113 32.9322 -96.8353 +US 75245 Dallas Texas TX Dallas 113 32.9225 -96.5352 +US 75246 Dallas Texas TX Dallas 113 32.7948 -96.7697 +US 75247 Dallas Texas TX Dallas 113 32.8152 -96.8703 +US 75248 Dallas Texas TX Dallas 113 32.9682 -96.7942 +US 75249 Dallas Texas TX Dallas 113 32.636 -96.9493 +US 75250 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75251 Dallas Texas TX Dallas 113 32.9189 -96.7751 +US 75252 Dallas Texas TX Dallas 113 32.9968 -96.7921 +US 75253 Dallas Texas TX Dallas 113 32.6833 -96.5964 +US 75254 Dallas Texas TX Dallas 113 32.9503 -96.819 +US 75258 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75260 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75261 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75262 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75263 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75264 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75265 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75266 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75267 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75270 Dallas Texas TX Dallas 113 32.7813 -96.8019 +US 75275 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75277 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75283 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75284 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75285 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75286 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75287 Dallas Texas TX Dallas 113 33.0005 -96.8314 +US 75294 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75295 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75301 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75303 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75310 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75312 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75313 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75315 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75320 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75323 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75326 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75334 Dallas Texas TX Dallas County 113 32.6746 -96.6198 +US 75336 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75339 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75342 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75343 Dallas Texas TX Dallas County 113 32.7699 -96.8641 +US 75344 Dallas Texas TX Dallas County 113 32.7825 -96.7986 +US 75346 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75350 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75353 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75354 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75355 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75356 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75357 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75358 Dallas Texas TX Dallas County 113 32.7942 -96.7652 +US 75359 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75360 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75363 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75364 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75367 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75368 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75369 Dallas Texas TX Dallas County 113 32.7835 -96.8001 +US 75370 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75371 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75372 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75373 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75374 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75376 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75378 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75379 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75380 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75381 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75382 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75386 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75387 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75388 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75389 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75390 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75391 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75392 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75393 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75394 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75395 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75396 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75397 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 75398 Dallas Texas TX Dallas 113 32.7673 -96.7776 +US 79331 Lamesa Texas TX Dawson 115 32.7367 -101.9569 +US 79377 Welch Texas TX Dawson 115 32.9298 -102.1278 +US 79713 Ackerly Texas TX Dawson 115 32.5273 -101.716 +US 79025 Dawn Texas TX Deaf Smith 117 34.9106 -102.2002 +US 79045 Hereford Texas TX Deaf Smith 117 34.837 -102.405 +US 75415 Ben Franklin Texas TX Delta 119 33.4741 -95.7591 +US 75432 Cooper Texas TX Delta 119 33.3812 -95.6623 +US 75441 Enloe Texas TX Delta 119 33.4291 -95.6518 +US 75448 Klondike Texas TX Delta 119 33.3034 -95.8018 +US 75450 Lake Creek Texas TX Delta 119 33.4116 -95.4551 +US 75469 Pecan Gap Texas TX Delta 119 33.4196 -95.8262 +US 75007 Carrollton Texas TX Denton 121 33.0033 -96.882 +US 75008 Carrollton Texas TX Denton 121 33.2074 -97.1163 +US 75010 Carrollton Texas TX Denton 121 33.0304 -96.8777 +US 75022 Flower Mound Texas TX Denton 121 33.0268 -97.1193 +US 75027 Flower Mound Texas TX Denton 121 33.2074 -97.1163 +US 75028 Flower Mound Texas TX Denton 121 33.0383 -97.0745 +US 75029 Lewisville Texas TX Denton 121 33.2074 -97.1163 +US 75056 The Colony Texas TX Denton 121 33.094 -96.8836 +US 75057 Lewisville Texas TX Denton 121 33.0532 -96.9999 +US 75065 Lake Dallas Texas TX Denton 121 33.1219 -97.0237 +US 75067 Lewisville Texas TX Denton 121 33.0198 -96.9925 +US 75068 Little Elm Texas TX Denton 121 33.1768 -96.9583 +US 75077 Lewisville Texas TX Denton 121 33.0775 -97.0704 +US 76201 Denton Texas TX Denton 121 33.2289 -97.1314 +US 76202 Denton Texas TX Denton 121 33.2255 -97.1085 +US 76203 Denton Texas TX Denton 121 33.2465 -97.127 +US 76204 Denton Texas TX Denton 121 33.2074 -97.1163 +US 76205 Denton Texas TX Denton 121 33.1903 -97.1282 +US 76206 Denton Texas TX Denton 121 33.1694 -97.1506 +US 76207 Denton Texas TX Denton 121 33.2285 -97.1813 +US 76208 Denton Texas TX Denton 121 33.2117 -97.0612 +US 76209 Denton Texas TX Denton 121 33.2346 -97.1131 +US 76210 Denton Texas TX Denton 121 33.1428 -97.0727 +US 76226 Argyle Texas TX Denton 121 33.1062 -97.16 +US 76227 Aubrey Texas TX Denton 121 33.292 -96.9879 +US 76247 Justin Texas TX Denton 121 33.0734 -97.3093 +US 76249 Krum Texas TX Denton 121 33.2734 -97.2675 +US 76258 Pilot Point Texas TX Denton 121 33.371 -96.9446 +US 76259 Ponder Texas TX Denton 121 33.1774 -97.2848 +US 76262 Roanoke Texas TX Denton 121 33.0211 -97.2127 +US 76266 Sanger Texas TX Denton 121 33.3563 -97.1814 +US 76299 Roanoke Texas TX Denton 121 33.2074 -97.1163 +US 76625 Birome Texas TX Denton County 121 31.8553 -96.9429 +US 77954 Cuero Texas TX DeWitt 123 29.091 -97.2812 +US 77967 Hochheim Texas TX DeWitt 123 29.0989 -97.3657 +US 77974 Meyersville Texas TX DeWitt 123 28.9229 -97.3042 +US 77989 Thomaston Texas TX DeWitt 123 28.9974 -97.1539 +US 77994 Westhoff Texas TX DeWitt 123 29.1792 -97.46 +US 78141 Nordheim Texas TX DeWitt 123 28.9142 -97.5946 +US 78164 Yorktown Texas TX DeWitt 123 28.9892 -97.5121 +US 79220 Afton Texas TX Dickens 125 33.7718 -100.8021 +US 79229 Dickens Texas TX Dickens 125 33.628 -100.8197 +US 79243 Mcadoo Texas TX Dickens 125 33.7413 -100.9833 +US 79370 Spur Texas TX Dickens 125 33.479 -100.8571 +US 78827 Asherton Texas TX Dimmit 127 28.4364 -99.7486 +US 78830 Big Wells Texas TX Dimmit 127 28.5693 -99.5781 +US 78834 Carrizo Springs Texas TX Dimmit 127 28.5278 -99.8635 +US 78836 Catarina Texas TX Dimmit 127 28.3598 -99.586 +US 79226 Clarendon Texas TX Donley 129 34.9529 -100.8952 +US 79237 Hedley Texas TX Donley 129 34.8698 -100.6806 +US 79240 Lelia Lake Texas TX Donley 129 34.8843 -100.7674 +US 78341 Benavides Texas TX Duval 131 27.5925 -98.4142 +US 78349 Concepcion Texas TX Duval 131 27.3849 -98.309 +US 78357 Freer Texas TX Duval 131 27.88 -98.6061 +US 78376 Realitos Texas TX Duval 131 27.4184 -98.514 +US 78384 San Diego Texas TX Duval 131 27.7654 -98.2503 +US 76435 Carbon Texas TX Eastland 133 32.2701 -98.8348 +US 76437 Cisco Texas TX Eastland 133 32.38 -98.9865 +US 76445 Desdemona Texas TX Eastland 133 32.2819 -98.5673 +US 76448 Eastland Texas TX Eastland 133 32.3994 -98.8071 +US 76454 Gorman Texas TX Eastland 133 32.2234 -98.6834 +US 76466 Olden Texas TX Eastland 133 32.4421 -98.7342 +US 76470 Ranger Texas TX Eastland 133 32.4681 -98.6747 +US 76471 Rising Star Texas TX Eastland 133 32.128 -98.9859 +US 79741 Goldsmith Texas TX Ector 135 31.9541 -102.625 +US 79758 Gardendale Texas TX Ector 135 32.0245 -102.3572 +US 79759 Notrees Texas TX Ector 135 31.8599 -102.7413 +US 79760 Odessa Texas TX Ector 135 31.7652 -102.3543 +US 79761 Odessa Texas TX Ector 135 31.8579 -102.3523 +US 79762 Odessa Texas TX Ector 135 31.889 -102.3548 +US 79763 Odessa Texas TX Ector 135 31.8341 -102.4162 +US 79764 Odessa Texas TX Ector 135 31.8767 -102.4375 +US 79765 Odessa Texas TX Ector 135 31.9375 -102.3944 +US 79766 Odessa Texas TX Ector 135 31.7827 -102.3449 +US 79767 Odessa Texas TX Ector County 135 31.8744 -102.3483 +US 79768 Odessa Texas TX Ector 135 31.8691 -102.5429 +US 79769 Odessa Texas TX Ector 135 31.7466 -102.567 +US 79776 Penwell Texas TX Ector 135 31.7334 -102.5879 +US 76883 Telegraph Texas TX Edwards 137 29.957 -100.2275 +US 78828 Barksdale Texas TX Edwards 137 29.8282 -100.105 +US 78880 Rocksprings Texas TX Edwards 137 30.0188 -100.231 +US 75101 Bardwell Texas TX Ellis 139 32.2731 -96.703 +US 75119 Ennis Texas TX Ellis 139 32.3321 -96.6224 +US 75120 Ennis Texas TX Ellis 139 32.3347 -96.6335 +US 75125 Ferris Texas TX Ellis 139 32.5223 -96.6643 +US 75152 Palmer Texas TX Ellis 139 32.4387 -96.6794 +US 75154 Red Oak Texas TX Ellis 139 32.5185 -96.8071 +US 75155 Rice Texas TX Ellis 139 32.2258 -96.4606 +US 75165 Waxahachie Texas TX Ellis 139 32.3808 -96.8374 +US 75167 Waxahachie Texas TX Ellis 139 32.3773 -96.9162 +US 75168 Waxahachie Texas TX Ellis 139 32.3749 -96.7166 +US 76041 Forreston Texas TX Ellis 139 32.2486 -96.8232 +US 76064 Maypearl Texas TX Ellis 139 32.2993 -97.0271 +US 76065 Midlothian Texas TX Ellis 139 32.4757 -96.9936 +US 76623 Avalon Texas TX Ellis 139 32.2214 -96.7832 +US 76651 Italy Texas TX Ellis 139 32.1785 -96.8823 +US 76670 Milford Texas TX Ellis 139 32.1482 -96.9612 +US 79821 Anthony Texas TX El Paso 141 31.9907 -106.5976 +US 79835 Canutillo Texas TX El Paso 141 31.9344 -106.5929 +US 79836 Clint Texas TX El Paso 141 31.5494 -106.2038 +US 79838 Fabens Texas TX El Paso 141 31.4745 -106.1589 +US 79849 San Elizario Texas TX El Paso 141 31.5508 -106.2507 +US 79853 Tornillo Texas TX El Paso 141 31.4407 -106.0765 +US 79901 El Paso Texas TX El Paso 141 31.7584 -106.4783 +US 79902 El Paso Texas TX El Paso 141 31.7763 -106.4932 +US 79903 El Paso Texas TX El Paso 141 31.7862 -106.4406 +US 79904 El Paso Texas TX El Paso 141 31.8533 -106.4381 +US 79905 El Paso Texas TX El Paso 141 31.7674 -106.4304 +US 79906 El Paso Texas TX El Paso 141 31.8092 -106.4247 +US 79907 El Paso Texas TX El Paso 141 31.7089 -106.3293 +US 79908 El Paso Texas TX El Paso 141 31.8265 -106.3857 +US 79910 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79911 El Paso Texas TX El Paso 141 31.8925 -106.5426 +US 79912 El Paso Texas TX El Paso 141 31.8383 -106.5364 +US 79913 El Paso Texas TX El Paso 141 31.9373 -106.5724 +US 79914 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79915 El Paso Texas TX El Paso 141 31.7432 -106.3686 +US 79916 El Paso Texas TX El Paso 141 31.7444 -106.2879 +US 79917 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79918 El Paso Texas TX El Paso 141 31.8318 -106.3907 +US 79920 El Paso Texas TX El Paso 141 31.8214 -106.4614 +US 79922 El Paso Texas TX El Paso 141 31.8218 -106.5732 +US 79923 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79924 El Paso Texas TX El Paso 141 31.9021 -106.4149 +US 79925 El Paso Texas TX El Paso 141 31.7814 -106.3613 +US 79926 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79927 El Paso Texas TX El Paso 141 31.6446 -106.2737 +US 79928 El Paso Texas TX El Paso 141 31.6631 -106.1401 +US 79929 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79930 El Paso Texas TX El Paso 141 31.8048 -106.4568 +US 79931 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79932 El Paso Texas TX El Paso 141 31.8623 -106.5932 +US 79934 El Paso Texas TX El Paso 141 31.9386 -106.4073 +US 79935 El Paso Texas TX El Paso 141 31.7718 -106.3303 +US 79936 El Paso Texas TX El Paso 141 31.7677 -106.3016 +US 79937 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79938 El Paso Texas TX El Paso 141 31.8045 -105.9661 +US 79940 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79941 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79942 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79943 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79944 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79945 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79946 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79947 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79948 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79949 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79950 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79951 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79952 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79953 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79954 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79955 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79958 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79960 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79961 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79966 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79968 El Paso Texas TX El Paso 141 31.7705 -106.5048 +US 79973 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79974 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79975 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79976 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79977 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79978 El Paso Texas TX El Paso 141 31.7993 -106.3828 +US 79980 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79982 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79983 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79984 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79985 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79986 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79987 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79988 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79989 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79990 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79991 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79992 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79993 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79994 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79995 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79996 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79997 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79998 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 79999 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88510 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88511 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88512 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88513 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88514 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88515 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88516 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88517 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88518 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88519 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88520 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88521 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88523 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88524 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88525 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88526 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88527 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88528 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88529 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88530 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88531 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88532 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88533 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88534 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88535 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88536 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88538 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88539 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88540 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88541 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88542 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88543 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88544 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88545 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88546 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88547 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88548 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88549 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88550 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88553 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88554 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88555 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88556 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88557 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88558 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88559 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88560 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88561 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88562 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88563 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88565 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88566 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88567 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88568 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88569 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88570 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88571 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88572 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88573 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88574 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88575 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88576 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88577 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88578 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88579 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88580 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88581 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88582 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88583 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88584 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88585 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88586 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88587 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88588 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88589 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88590 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 88595 El Paso Texas TX El Paso 141 31.6948 -106.3 +US 76401 Stephenville Texas TX Erath 143 32.2214 -98.2224 +US 76402 Stephenville Texas TX Erath 143 32.2153 -98.208 +US 76433 Bluff Dale Texas TX Erath 143 32.2884 -98.0539 +US 76446 Dublin Texas TX Erath 143 32.0909 -98.3455 +US 76461 Lingleville Texas TX Erath 143 32.2214 -98.3428 +US 76465 Morgan Mill Texas TX Erath 143 32.2153 -98.208 +US 76570 Rosebud Texas TX Falls 145 31.0922 -96.9755 +US 76632 Chilton Texas TX Falls 145 31.31 -97.09 +US 76656 Lott Texas TX Falls 145 31.1925 -97.0581 +US 76661 Marlin Texas TX Falls 145 31.3036 -96.8889 +US 76675 Otto Texas TX Falls 145 31.4023 -96.8194 +US 76677 Perry Texas TX Falls 145 31.2542 -96.9376 +US 76680 Reagan Texas TX Falls 145 31.1871 -96.7998 +US 76685 Satin Texas TX Falls 145 31.3601 -97.0108 +US 75413 Bailey Texas TX Fannin 147 33.43 -96.1662 +US 75418 Bonham Texas TX Fannin 147 33.5806 -96.1836 +US 75438 Dodd City Texas TX Fannin 147 33.5647 -96.0619 +US 75439 Ector Texas TX Fannin 147 33.5819 -96.2735 +US 75443 Gober Texas TX Fannin 147 33.4697 -96.1111 +US 75446 Honey Grove Texas TX Fannin 147 33.5985 -95.9109 +US 75447 Ivanhoe Texas TX Fannin 147 33.7612 -96.1193 +US 75449 Ladonia Texas TX Fannin 147 33.4245 -95.9455 +US 75452 Leonard Texas TX Fannin 147 33.4044 -96.2238 +US 75475 Randolph Texas TX Fannin 147 33.4846 -96.2541 +US 75476 Ravenna Texas TX Fannin 147 33.7098 -96.1452 +US 75479 Savoy Texas TX Fannin 147 33.6066 -96.3502 +US 75488 Telephone Texas TX Fannin 147 33.7979 -96.0449 +US 75490 Trenton Texas TX Fannin 147 33.4235 -96.3398 +US 75492 Windom Texas TX Fannin 147 33.5633 -96.002 +US 78932 Carmine Texas TX Fayette 149 30.1404 -96.6861 +US 78938 Ellinger Texas TX Fayette 149 29.8459 -96.6966 +US 78940 Fayetteville Texas TX Fayette 149 29.8868 -96.6463 +US 78941 Flatonia Texas TX Fayette 149 29.7095 -97.0987 +US 78945 La Grange Texas TX Fayette 149 29.904 -96.886 +US 78946 Ledbetter Texas TX Fayette 149 30.2383 -96.7613 +US 78949 Muldoon Texas TX Fayette 149 29.7993 -97.1006 +US 78952 Plum Texas TX Fayette 149 29.8962 -96.9439 +US 78954 Round Top Texas TX Fayette 149 30.0411 -96.7341 +US 78956 Schulenburg Texas TX Fayette 149 29.6882 -96.9106 +US 78960 Warda Texas TX Fayette 149 30.0702 -96.902 +US 78961 Round Top Texas TX Fayette 149 29.6655 -97.0397 +US 78963 West Point Texas TX Fayette 149 29.9523 -97.0361 +US 79534 Mc Caulley Texas TX Fisher 151 32.7787 -100.2168 +US 79543 Roby Texas TX Fisher 151 32.722 -100.4008 +US 79546 Rotan Texas TX Fisher 151 32.8555 -100.4705 +US 79560 Sylvester Texas TX Fisher 151 32.6946 -100.1706 +US 79221 Aiken Texas TX Floyd 153 34.0715 -101.3031 +US 79231 Dougherty Texas TX Floyd 153 33.9446 -101.0922 +US 79235 Floydada Texas TX Floyd 153 33.9743 -101.3346 +US 79241 Lockney Texas TX Floyd 153 34.1458 -101.4259 +US 79258 South Plains Texas TX Floyd 153 34.0715 -101.3031 +US 79227 Crowell Texas TX Foard 155 33.9912 -99.6983 +US 79260 Crowell Texas TX Foard County 155 33.7585 -99.6602 +US 77406 Richmond Texas TX Fort Bend 157 29.6436 -95.798 +US 77407 Richmond Texas TX Fort Bend 157 29.6625 -95.7272 5 +US 77417 Beasley Texas TX Fort Bend 157 29.479 -95.9681 +US 77441 Fulshear Texas TX Fort Bend 157 29.7217 -95.8977 +US 77444 Guy Texas TX Fort Bend 157 29.3327 -95.7702 +US 77451 Kendleton Texas TX Fort Bend 157 29.447 -96.0036 +US 77459 Missouri City Texas TX Fort Bend 157 29.5704 -95.5423 +US 77461 Needville Texas TX Fort Bend 157 29.4117 -95.8273 +US 77464 Orchard Texas TX Fort Bend 157 29.5948 -95.9727 +US 77469 Richmond Texas TX Fort Bend 157 29.5511 -95.7329 +US 77471 Rosenberg Texas TX Fort Bend 157 29.5497 -95.7982 +US 77476 Simonton Texas TX Fort Bend 157 29.6777 -95.9922 +US 77477 Stafford Texas TX Fort Bend 157 29.6228 -95.5678 +US 77478 Sugar Land Texas TX Fort Bend 157 29.6196 -95.607 +US 77479 Sugar Land Texas TX Fort Bend 157 29.5785 -95.6066 +US 77481 Thompsons Texas TX Fort Bend 157 29.4683 -95.5776 +US 77487 Sugar Land Texas TX Fort Bend 157 29.5255 -95.7565 +US 77489 Missouri City Texas TX Fort Bend 157 29.5962 -95.5115 +US 77496 Sugar Land Texas TX Fort Bend 157 29.5255 -95.7565 +US 77497 Stafford Texas TX Fort Bend 157 29.5255 -95.7565 +US 77498 Sugar Land Texas TX Fort Bend 157 29.6396 -95.65 5 +US 77545 Fresno Texas TX Fort Bend 157 29.5293 -95.4626 +US 75457 Mount Vernon Texas TX Franklin 159 33.1702 -95.2181 +US 75480 Scroggins Texas TX Franklin 159 33.0478 -95.1962 +US 75487 Talco Texas TX Franklin 159 33.3344 -95.0497 +US 75838 Donie Texas TX Freestone 161 31.4873 -96.2387 +US 75840 Fairfield Texas TX Freestone 161 31.7361 -96.1572 +US 75848 Kirvin Texas TX Freestone 161 31.8231 -96.3218 +US 75859 Streetman Texas TX Freestone 161 31.8885 -96.2988 +US 75860 Teague Texas TX Freestone 161 31.6328 -96.2778 +US 76693 Wortham Texas TX Freestone 161 31.7865 -96.4202 +US 78005 Bigfoot Texas TX Frio 163 29.0531 -98.8582 +US 78017 Dilley Texas TX Frio 163 28.6782 -99.1747 +US 78057 Moore Texas TX Frio 163 29.0595 -99.0204 +US 78061 Pearsall Texas TX Frio 163 28.8923 -99.0944 +US 79342 Loop Texas TX Gaines 165 32.9162 -102.4221 +US 79359 Seagraves Texas TX Gaines 165 32.9317 -102.5781 +US 79360 Seminole Texas TX Gaines 165 32.721 -102.6828 +US 77510 Santa Fe Texas TX Galveston 167 29.4032 -95.0734 +US 77517 Santa Fe Texas TX Galveston 167 29.3673 -95.1361 +US 77518 Bacliff Texas TX Galveston 167 29.5055 -94.9893 +US 77539 Dickinson Texas TX Galveston 167 29.4585 -95.0345 +US 77546 Friendswood Texas TX Galveston 167 29.5224 -95.1879 +US 77549 Friendswood Texas TX Galveston 167 29.3305 -94.8002 +US 77550 Galveston Texas TX Galveston 167 29.2983 -94.793 +US 77551 Galveston Texas TX Galveston 167 29.2766 -94.8303 +US 77552 Galveston Texas TX Galveston 167 29.2205 -94.9444 +US 77553 Galveston Texas TX Galveston 167 29.3322 -94.8002 +US 77554 Galveston Texas TX Galveston 167 29.2243 -94.9637 +US 77555 Galveston Texas TX Galveston 167 29.3305 -94.8002 +US 77563 Hitchcock Texas TX Galveston 167 29.3398 -94.9926 +US 77565 Kemah Texas TX Galveston 167 29.5236 -95.0276 +US 77568 La Marque Texas TX Galveston 167 29.3676 -94.9742 +US 77573 League City Texas TX Galveston 167 29.5173 -95.0963 +US 77574 League City Texas TX Galveston 167 29.5116 -95.0582 +US 77590 Texas City Texas TX Galveston 167 29.397 -94.9203 +US 77591 Texas City Texas TX Galveston 167 29.3891 -94.9942 +US 77592 Texas City Texas TX Galveston 167 29.3305 -94.8002 +US 77617 Gilchrist Texas TX Galveston 167 29.523 -94.4755 +US 77623 High Island Texas TX Galveston 167 29.5472 -94.4267 +US 77650 Port Bolivar Texas TX Galveston 167 29.4266 -94.6861 +US 79330 Justiceburg Texas TX Garza 169 33.0594 -101.1881 +US 79356 Post Texas TX Garza 169 33.2017 -101.3922 +US 78618 Doss Texas TX Gillespie 171 30.4613 -99.1707 +US 78624 Fredericksburg Texas TX Gillespie 171 30.2817 -98.8799 +US 78631 Harper Texas TX Gillespie 171 30.2816 -99.241 +US 78671 Stonewall Texas TX Gillespie 171 30.2088 -98.6131 +US 78675 Willow City Texas TX Gillespie 171 30.4549 -98.6646 +US 79739 Garden City Texas TX Glasscock 173 31.8491 -101.5269 +US 77960 Fannin Texas TX Goliad 175 28.6778 -97.2606 +US 77963 Goliad Texas TX Goliad 175 28.6993 -97.3783 +US 77993 Weesatche Texas TX Goliad 175 28.8358 -97.4442 +US 78107 Berclair Texas TX Goliad 175 28.5295 -97.5925 +US 78122 Leesville Texas TX Gonzales 177 29.3961 -97.7566 +US 78140 Nixon Texas TX Gonzales 177 29.3016 -97.7529 +US 78159 Smiley Texas TX Gonzales 177 29.2655 -97.6227 +US 78603 Bebe Texas TX Gonzales 177 29.4472 -97.4946 +US 78604 Belmont Texas TX Gonzales 177 29.4472 -97.4946 +US 78614 Cost Texas TX Gonzales 177 29.4321 -97.5531 +US 78629 Gonzales Texas TX Gonzales 177 29.5086 -97.4495 +US 78632 Harwood Texas TX Gonzales 177 29.6661 -97.4906 +US 78658 Ottine Texas TX Gonzales 177 29.5952 -97.5911 +US 78677 Wrightsboro Texas TX Gonzales 177 29.4472 -97.4946 +US 78959 Waelder Texas TX Gonzales 177 29.6868 -97.2958 +US 79002 Alanreed Texas TX Gray 179 35.2273 -100.7592 +US 79054 Lefors Texas TX Gray 179 35.4391 -100.8059 +US 79057 Mclean Texas TX Gray 179 35.2312 -100.6008 +US 79065 Pampa Texas TX Gray 179 35.538 -100.9579 +US 79066 Pampa Texas TX Gray 179 35.5334 -100.956 +US 75020 Denison Texas TX Grayson 181 33.745 -96.5496 +US 75021 Denison Texas TX Grayson 181 33.7169 -96.5235 +US 75058 Gunter Texas TX Grayson 181 33.4495 -96.7341 +US 75076 Pottsboro Texas TX Grayson 181 33.8095 -96.6906 +US 75090 Sherman Texas TX Grayson 181 33.6435 -96.6075 +US 75091 Sherman Texas TX Grayson 181 33.6787 -96.6623 +US 75092 Sherman Texas TX Grayson 181 33.6372 -96.6184 +US 75414 Bells Texas TX Grayson 181 33.6178 -96.4237 +US 75459 Howe Texas TX Grayson 181 33.5311 -96.6777 +US 75489 Tom Bean Texas TX Grayson 181 33.5193 -96.4843 +US 75491 Whitewright Texas TX Grayson 181 33.519 -96.451 +US 75495 Van Alstyne Texas TX Grayson 181 33.4292 -96.5486 +US 76233 Collinsville Texas TX Grayson 181 33.558 -96.9014 +US 76245 Gordonville Texas TX Grayson 181 33.8343 -96.8403 +US 76264 Sadler Texas TX Grayson 181 33.731 -96.84 +US 76268 Southmayd Texas TX Grayson 181 33.6153 -96.7618 +US 76271 Tioga Texas TX Grayson 181 33.4675 -96.9097 +US 76273 Whitesboro Texas TX Grayson 181 33.659 -96.879 +US 75601 Longview Texas TX Gregg 183 32.5178 -94.7303 +US 75602 Longview Texas TX Gregg 183 32.4724 -94.7101 +US 75603 Longview Texas TX Gregg 183 32.4264 -94.7117 +US 75604 Longview Texas TX Gregg 183 32.5251 -94.799 +US 75605 Longview Texas TX Gregg 183 32.5547 -94.7767 +US 75606 Longview Texas TX Gregg 183 32.3694 -94.6161 +US 75607 Longview Texas TX Gregg 183 32.5112 -94.7835 +US 75608 Longview Texas TX Gregg 183 32.5701 -94.8481 +US 75615 Longview Texas TX Gregg 183 32.5112 -94.7835 +US 75641 Easton Texas TX Gregg 183 32.3854 -94.5515 +US 75647 Gladewater Texas TX Gregg 183 32.5559 -94.932 +US 75660 Judson Texas TX Gregg 183 32.5112 -94.7835 +US 75662 Kilgore Texas TX Gregg 183 32.3836 -94.8653 +US 75663 Kilgore Texas TX Gregg 183 32.387 -94.8951 +US 75693 White Oak Texas TX Gregg 183 32.5383 -94.8622 +US 77363 Plantersville Texas TX Grimes 185 30.2969 -95.8498 +US 77830 Anderson Texas TX Grimes 185 30.5443 -96.0018 +US 77831 Bedias Texas TX Grimes 185 30.7065 -95.9546 +US 77861 Iola Texas TX Grimes 185 30.7326 -96.0911 +US 77868 Navasota Texas TX Grimes 185 30.3576 -96.0594 +US 77873 Richards Texas TX Grimes 185 30.5796 -95.8959 +US 77875 Roans Prairie Texas TX Grimes 185 30.6075 -95.9579 +US 77876 Shiro Texas TX Grimes 185 30.6752 -95.8285 +US 78108 Cibolo Texas TX Guadalupe 187 29.575 -98.228 +US 78115 Geronimo Texas TX Guadalupe 187 29.5451 -98.0408 +US 78123 Mc Queeney Texas TX Guadalupe 187 29.6023 -98.0492 +US 78124 Marion Texas TX Guadalupe 187 29.5683 -98.1517 +US 78154 Schertz Texas TX Guadalupe 187 29.579 -98.2778 +US 78155 Seguin Texas TX Guadalupe 187 29.5613 -97.9628 +US 78156 Seguin Texas TX Guadalupe 187 29.6118 -97.9712 +US 78638 Kingsbury Texas TX Guadalupe 187 29.6726 -97.8306 +US 78670 Staples Texas TX Guadalupe 187 29.7706 -97.8186 +US 79021 Cotton Center Texas TX Hale 189 33.9753 -102.0314 +US 79032 Edmonson Texas TX Hale 189 34.2789 -101.8941 +US 79041 Hale Center Texas TX Hale 189 34.0669 -101.8736 +US 79072 Plainview Texas TX Hale 189 34.1962 -101.7259 +US 79073 Plainview Texas TX Hale 189 34.0689 -101.827 +US 79250 Petersburg Texas TX Hale 189 33.8768 -101.6046 +US 79311 Abernathy Texas TX Hale 189 33.85 -101.8611 +US 79489 Reese Air Force Base Texas TX Hale County 189 33.5936 -102.0291 +US 79233 Estelline Texas TX Hall 191 34.5303 -100.4455 +US 79239 Lakeview Texas TX Hall 191 34.6724 -100.7259 +US 79245 Memphis Texas TX Hall 191 34.7122 -100.5347 +US 79261 Turkey Texas TX Hall 191 34.4036 -100.8449 +US 76436 Carlton Texas TX Hamilton 193 31.8949 -98.1842 +US 76456 Hasse Texas TX Hamilton County 193 31.9082 -98.6579 +US 76457 Hico Texas TX Hamilton 193 31.9597 -98.0249 +US 76531 Hamilton Texas TX Hamilton 193 31.6781 -98.1131 +US 76565 Pottsville Texas TX Hamilton 193 31.6837 -98.3561 +US 79040 Gruver Texas TX Hansford 195 36.2868 -101.4089 +US 79062 Morse Texas TX Hansford 195 36.0596 -101.4729 +US 79081 Spearman Texas TX Hansford 195 36.1927 -101.1952 +US 79225 Chillicothe Texas TX Hardeman 197 34.2439 -99.5157 +US 79252 Quanah Texas TX Hardeman 197 34.2955 -99.7494 +US 77374 Thicket Texas TX Hardin 199 30.3765 -94.6361 +US 77376 Votaw Texas TX Hardin 199 30.4334 -94.6804 +US 77519 Batson Texas TX Hardin 199 30.225 -94.6096 +US 77585 Saratoga Texas TX Hardin 199 30.3398 -94.5717 +US 77625 Kountze Texas TX Hardin 199 30.3703 -94.3259 +US 77656 Silsbee Texas TX Hardin 199 30.3244 -94.1907 +US 77657 Lumberton Texas TX Hardin 199 30.2818 -94.2191 +US 77659 Sour Lake Texas TX Hardin 199 30.1491 -94.3733 +US 77663 Village Mills Texas TX Hardin 199 30.5185 -94.4458 +US 77711 Lumberton Texas TX Hardin County 199 30.2595 -94.2012 +US 77001 Houston Texas TX Harris 201 29.8131 -95.3098 +US 77002 Houston Texas TX Harris 201 29.7594 -95.3594 +US 77003 Houston Texas TX Harris 201 29.7489 -95.3391 +US 77004 Houston Texas TX Harris 201 29.7247 -95.3625 +US 77005 Houston Texas TX Harris 201 29.7179 -95.4263 +US 77006 Houston Texas TX Harris 201 29.7409 -95.3923 +US 77007 Houston Texas TX Harris 201 29.7736 -95.4034 +US 77008 Houston Texas TX Harris 201 29.7991 -95.4118 +US 77009 Houston Texas TX Harris 201 29.7936 -95.3675 +US 77010 Houston Texas TX Harris 201 29.7543 -95.3609 +US 77011 Houston Texas TX Harris 201 29.742 -95.3073 +US 77012 Houston Texas TX Harris 201 29.7149 -95.2819 +US 77013 Houston Texas TX Harris 201 29.7842 -95.2301 +US 77014 Houston Texas TX Harris 201 29.9796 -95.4625 +US 77015 Houston Texas TX Harris 201 29.7853 -95.1852 +US 77016 Houston Texas TX Harris 201 29.8579 -95.3032 +US 77017 Houston Texas TX Harris 201 29.6863 -95.2555 +US 77018 Houston Texas TX Harris 201 29.8272 -95.4266 +US 77019 Houston Texas TX Harris 201 29.7517 -95.4054 +US 77020 Houston Texas TX Harris 201 29.7758 -95.3121 +US 77021 Houston Texas TX Harris 201 29.6954 -95.3562 +US 77022 Houston Texas TX Harris 201 29.8299 -95.3769 +US 77023 Houston Texas TX Harris 201 29.7242 -95.3178 +US 77024 Houston Texas TX Harris 201 29.7696 -95.5201 +US 77025 Houston Texas TX Harris 201 29.6889 -95.4341 +US 77026 Houston Texas TX Harris 201 29.7972 -95.3288 +US 77027 Houston Texas TX Harris 201 29.7396 -95.446 +US 77028 Houston Texas TX Harris 201 29.8297 -95.2879 +US 77029 Houston Texas TX Harris 201 29.763 -95.2567 +US 77030 Houston Texas TX Harris 201 29.7041 -95.401 +US 77031 Houston Texas TX Harris 201 29.6581 -95.5413 +US 77032 Houston Texas TX Harris 201 29.9368 -95.3299 +US 77033 Houston Texas TX Harris 201 29.6686 -95.3382 +US 77034 Houston Texas TX Harris 201 29.6364 -95.2216 +US 77035 Houston Texas TX Harris 201 29.6518 -95.4854 +US 77036 Houston Texas TX Harris 201 29.6984 -95.5405 +US 77037 Houston Texas TX Harris 201 29.8892 -95.3935 +US 77038 Houston Texas TX Harris 201 29.9196 -95.4386 +US 77039 Houston Texas TX Harris 201 29.9067 -95.3334 +US 77040 Houston Texas TX Harris 201 29.8744 -95.5278 +US 77041 Houston Texas TX Harris 201 29.8602 -95.5817 +US 77042 Houston Texas TX Harris 201 29.7404 -95.5589 +US 77043 Houston Texas TX Harris 201 29.8052 -95.5607 +US 77044 Houston Texas TX Harris 201 29.8635 -95.1976 +US 77045 Houston Texas TX Harris 201 29.6297 -95.4382 +US 77046 Houston Texas TX Harris 201 29.733 -95.4306 +US 77047 Houston Texas TX Harris 201 29.6254 -95.375 +US 77048 Houston Texas TX Harris 201 29.6321 -95.3416 +US 77049 Houston Texas TX Harris 201 29.8235 -95.1848 +US 77050 Houston Texas TX Harris 201 29.9015 -95.2848 +US 77051 Houston Texas TX Harris 201 29.6579 -95.3688 +US 77052 Houston Texas TX Harris 201 29.6768 -95.1776 +US 77053 Houston Texas TX Harris 201 29.5962 -95.4587 +US 77054 Houston Texas TX Harris 201 29.6852 -95.4017 +US 77055 Houston Texas TX Harris 201 29.7971 -95.4958 +US 77056 Houston Texas TX Harris 201 29.7446 -95.4683 +US 77057 Houston Texas TX Harris 201 29.7422 -95.4903 +US 77058 Houston Texas TX Harris 201 29.5716 -95.0998 +US 77059 Houston Texas TX Harris 201 29.5975 -95.1134 +US 77060 Houston Texas TX Harris 201 29.9335 -95.3981 +US 77061 Houston Texas TX Harris 201 29.6652 -95.279 +US 77062 Houston Texas TX Harris 201 29.5721 -95.1303 +US 77063 Houston Texas TX Harris 201 29.7348 -95.522 +US 77064 Houston Texas TX Harris 201 29.919 -95.5569 +US 77065 Houston Texas TX Harris 201 29.9319 -95.6106 +US 77066 Houston Texas TX Harris 201 29.961 -95.4947 +US 77067 Houston Texas TX Harris 201 29.9547 -95.4522 +US 77068 Houston Texas TX Harris 201 30.0069 -95.4897 +US 77069 Houston Texas TX Harris 201 29.9863 -95.5208 +US 77070 Houston Texas TX Harris 201 29.9781 -95.5803 +US 77071 Houston Texas TX Harris 201 29.6518 -95.5176 +US 77072 Houston Texas TX Harris 201 29.699 -95.5862 +US 77073 Houston Texas TX Harris 201 30.0198 -95.4087 +US 77074 Houston Texas TX Harris 201 29.6896 -95.5106 +US 77075 Houston Texas TX Harris 201 29.6223 -95.26 +US 77076 Houston Texas TX Harris 201 29.858 -95.3834 +US 77077 Houston Texas TX Harris 201 29.7477 -95.603 +US 77078 Houston Texas TX Harris 201 29.8497 -95.2582 +US 77079 Houston Texas TX Harris 201 29.7738 -95.598 +US 77080 Houston Texas TX Harris 201 29.8159 -95.523 +US 77081 Houston Texas TX Harris 201 29.7119 -95.4845 +US 77082 Houston Texas TX Harris 201 29.7223 -95.6285 +US 77083 Houston Texas TX Harris 201 29.6947 -95.6511 +US 77084 Houston Texas TX Harris 201 29.844 -95.6623 +US 77085 Houston Texas TX Harris 201 29.6218 -95.4819 +US 77086 Houston Texas TX Harris 201 29.9227 -95.4939 +US 77087 Houston Texas TX Harris 201 29.6876 -95.3011 +US 77088 Houston Texas TX Harris 201 29.8817 -95.4539 +US 77089 Houston Texas TX Harris 201 29.594 -95.2218 +US 77090 Houston Texas TX Harris 201 30.0167 -95.447 +US 77091 Houston Texas TX Harris 201 29.8534 -95.4435 +US 77092 Houston Texas TX Harris 201 29.8324 -95.472 +US 77093 Houston Texas TX Harris 201 29.8617 -95.3403 +US 77094 Houston Texas TX Harris 201 29.7705 -95.7107 +US 77095 Houston Texas TX Harris 201 29.8941 -95.6481 +US 77096 Houston Texas TX Harris 201 29.6722 -95.4861 +US 77097 Houston Texas TX Harris 201 29.834 -95.4342 +US 77098 Houston Texas TX Harris 201 29.735 -95.4118 +US 77099 Houston Texas TX Harris 201 29.6709 -95.5866 +US 77201 Houston Texas TX Harris 201 29.834 -95.4342 +US 77202 Houston Texas TX Harris 201 29.834 -95.4342 +US 77203 Houston Texas TX Harris 201 29.834 -95.4342 +US 77204 Houston Texas TX Harris 201 29.834 -95.4342 +US 77205 Houston Texas TX Harris 201 29.834 -95.4342 +US 77206 Houston Texas TX Harris 201 29.834 -95.4342 +US 77207 Houston Texas TX Harris 201 29.834 -95.4342 +US 77208 Houston Texas TX Harris 201 29.834 -95.4342 +US 77209 Houston Texas TX Harris 201 29.6128 -95.1585 +US 77210 Houston Texas TX Harris 201 29.834 -95.4342 +US 77212 Houston Texas TX Harris 201 29.834 -95.4342 +US 77213 Houston Texas TX Harris 201 29.834 -95.4342 +US 77215 Houston Texas TX Harris 201 29.834 -95.4342 +US 77216 Houston Texas TX Harris 201 29.834 -95.4342 +US 77217 Houston Texas TX Harris 201 29.834 -95.4342 +US 77218 Houston Texas TX Harris 201 29.834 -95.4342 +US 77219 Houston Texas TX Harris 201 29.834 -95.4342 +US 77220 Houston Texas TX Harris 201 29.834 -95.4342 +US 77221 Houston Texas TX Harris 201 29.834 -95.4342 +US 77222 Houston Texas TX Harris 201 29.834 -95.4342 +US 77223 Houston Texas TX Harris 201 29.834 -95.4342 +US 77224 Houston Texas TX Harris 201 29.834 -95.4342 +US 77225 Houston Texas TX Harris 201 29.834 -95.4342 +US 77226 Houston Texas TX Harris 201 29.834 -95.4342 +US 77227 Houston Texas TX Harris 201 29.834 -95.4342 +US 77228 Houston Texas TX Harris 201 29.834 -95.4342 +US 77229 Houston Texas TX Harris 201 29.834 -95.4342 +US 77230 Houston Texas TX Harris 201 29.834 -95.4342 +US 77231 Houston Texas TX Harris 201 29.834 -95.4342 +US 77233 Houston Texas TX Harris 201 29.834 -95.4342 +US 77234 Houston Texas TX Harris 201 29.834 -95.4342 +US 77235 Houston Texas TX Harris 201 29.834 -95.4342 +US 77236 Houston Texas TX Harris 201 29.834 -95.4342 +US 77237 Houston Texas TX Harris 201 29.834 -95.4342 +US 77238 Houston Texas TX Harris 201 29.834 -95.4342 +US 77240 Houston Texas TX Harris 201 29.834 -95.4342 +US 77241 Houston Texas TX Harris 201 29.834 -95.4342 +US 77242 Houston Texas TX Harris 201 29.834 -95.4342 +US 77243 Houston Texas TX Harris 201 29.834 -95.4342 +US 77244 Houston Texas TX Harris 201 29.834 -95.4342 +US 77245 Houston Texas TX Harris 201 29.834 -95.4342 +US 77246 Houston Texas TX Harris County 201 29.6403 -95.4359 +US 77247 Houston Texas TX Harris County 201 29.6403 -95.4359 +US 77248 Houston Texas TX Harris 201 29.834 -95.4342 +US 77249 Houston Texas TX Harris 201 29.834 -95.4342 +US 77250 Houston Texas TX Harris County 201 29.7629 -95.3629 +US 77251 Houston Texas TX Harris 201 29.834 -95.4342 +US 77252 Houston Texas TX Harris 201 29.834 -95.4342 +US 77253 Houston Texas TX Harris 201 29.834 -95.4342 +US 77254 Houston Texas TX Harris 201 29.834 -95.4342 +US 77255 Houston Texas TX Harris 201 29.834 -95.4342 +US 77256 Houston Texas TX Harris 201 29.834 -95.4342 +US 77257 Houston Texas TX Harris 201 29.834 -95.4342 +US 77258 Houston Texas TX Harris 201 29.834 -95.4342 +US 77259 Houston Texas TX Harris 201 29.834 -95.4342 +US 77260 Houston Texas TX Harris County 201 29.7687 -95.3867 +US 77261 Houston Texas TX Harris 201 29.834 -95.4342 +US 77262 Houston Texas TX Harris 201 29.834 -95.4342 +US 77263 Houston Texas TX Harris 201 29.834 -95.4342 +US 77265 Houston Texas TX Harris 201 29.834 -95.4342 +US 77266 Houston Texas TX Harris 201 29.834 -95.4342 +US 77267 Houston Texas TX Harris 201 29.834 -95.4342 +US 77268 Houston Texas TX Harris 201 29.834 -95.4342 +US 77269 Houston Texas TX Harris 201 29.834 -95.4342 +US 77270 Houston Texas TX Harris 201 29.834 -95.4342 +US 77271 Houston Texas TX Harris 201 29.834 -95.4342 +US 77272 Houston Texas TX Harris 201 29.834 -95.4342 +US 77273 Houston Texas TX Harris 201 29.834 -95.4342 +US 77274 Houston Texas TX Harris 201 29.834 -95.4342 +US 77275 Houston Texas TX Harris 201 29.834 -95.4342 +US 77276 Houston Texas TX Harris County 201 29.7575 -95.3668 +US 77277 Houston Texas TX Harris 201 29.834 -95.4342 +US 77278 Houston Texas TX Harris County 201 29.7699 -95.5113 +US 77279 Houston Texas TX Harris 201 29.834 -95.4342 +US 77280 Houston Texas TX Harris 201 29.834 -95.4342 +US 77281 Houston Texas TX Harris 201 29.834 -95.4342 +US 77282 Houston Texas TX Harris 201 29.834 -95.4342 +US 77284 Houston Texas TX Harris 201 29.834 -95.4342 +US 77285 Houston Texas TX Harris County 201 29.7554 -95.3678 +US 77287 Houston Texas TX Harris 201 29.834 -95.4342 +US 77288 Houston Texas TX Harris 201 29.834 -95.4342 +US 77289 Houston Texas TX Harris 201 29.834 -95.4342 +US 77290 Houston Texas TX Harris 201 29.834 -95.4342 +US 77291 Houston Texas TX Harris 201 29.834 -95.4342 +US 77292 Houston Texas TX Harris 201 29.7443 -95.3326 +US 77293 Houston Texas TX Harris 201 29.834 -95.4342 +US 77294 Houston Texas TX Harris County 201 29.8615 -95.2476 +US 77296 Houston Texas TX Harris County 201 29.7626 -95.3641 +US 77297 Houston Texas TX Harris 201 29.834 -95.4342 +US 77298 Houston Texas TX Harris 201 29.834 -95.4342 +US 77299 Houston Texas TX Harris 201 29.834 -95.4342 +US 77315 North Houston Texas TX Harris 201 29.834 -95.4342 +US 77325 Humble Texas TX Harris 201 29.834 -95.4342 +US 77336 Huffman Texas TX Harris 201 30.0565 -95.1051 +US 77337 Hufsmith Texas TX Harris 201 29.834 -95.4342 +US 77338 Humble Texas TX Harris 201 30.0041 -95.2825 +US 77339 Humble Texas TX Harris 201 30.0563 -95.2107 +US 77345 Humble Texas TX Harris 201 30.0566 -95.1707 +US 77346 Humble Texas TX Harris 201 30.0042 -95.1728 +US 77347 Humble Texas TX Harris 201 29.834 -95.4342 +US 77373 Spring Texas TX Harris 201 30.0532 -95.3773 +US 77375 Tomball Texas TX Harris 201 30.0739 -95.6201 +US 77377 Tomball Texas TX Harris 201 30.0615 -95.6821 +US 77379 Spring Texas TX Harris 201 30.0377 -95.5326 +US 77382 Spring Texas TX Harris 201 30.2106 -95.5257 +US 77383 Spring Texas TX Harris 201 29.834 -95.4342 +US 77388 Spring Texas TX Harris 201 30.0505 -95.4695 +US 77389 Spring Texas TX Harris 201 30.1044 -95.5066 +US 77391 Spring Texas TX Harris 201 29.834 -95.4342 +US 77396 Humble Texas TX Harris 201 29.9507 -95.2622 +US 77401 Bellaire Texas TX Harris 201 29.7023 -95.4611 +US 77402 Bellaire Texas TX Harris 201 29.834 -95.4342 +US 77410 Cypress Texas TX Harris 201 29.834 -95.4342 +US 77411 Alief Texas TX Harris 201 29.834 -95.4342 +US 77413 Barker Texas TX Harris 201 29.834 -95.4342 +US 77429 Cypress Texas TX Harris 201 29.9766 -95.6358 +US 77433 Cypress Texas TX Harris 201 29.8836 -95.7025 +US 77447 Hockley Texas TX Harris 201 30.0729 -95.8104 +US 77449 Katy Texas TX Harris 201 29.8323 -95.736 +US 77450 Katy Texas TX Harris 201 29.745 -95.7326 +US 77491 Katy Texas TX Harris 201 29.834 -95.4342 +US 77492 Katy Texas TX Harris 201 29.834 -95.4342 +US 77493 Katy Texas TX Harris 201 29.8678 -95.8298 +US 77494 Katy Texas TX Harris 201 29.7404 -95.8304 +US 77501 Pasadena Texas TX Harris 201 29.834 -95.4342 +US 77502 Pasadena Texas TX Harris 201 29.6789 -95.1982 +US 77503 Pasadena Texas TX Harris 201 29.6877 -95.1572 +US 77504 Pasadena Texas TX Harris 201 29.6501 -95.1885 +US 77505 Pasadena Texas TX Harris 201 29.6518 -95.1464 +US 77506 Pasadena Texas TX Harris 201 29.7009 -95.1989 +US 77507 Pasadena Texas TX Harris 201 29.6224 -95.0545 +US 77508 Pasadena Texas TX Harris 201 29.5699 -95.1066 +US 77520 Baytown Texas TX Harris 201 29.7461 -94.9653 +US 77521 Baytown Texas TX Harris 201 29.7705 -94.9695 +US 77522 Baytown Texas TX Harris 201 29.834 -95.4342 +US 77530 Channelview Texas TX Harris 201 29.7914 -95.1317 +US 77532 Crosby Texas TX Harris 201 29.9249 -95.0578 +US 77536 Deer Park Texas TX Harris 201 29.6826 -95.1222 +US 77547 Galena Park Texas TX Harris 201 29.7392 -95.24 +US 77562 Highlands Texas TX Harris 201 29.8296 -95.0393 +US 77571 La Porte Texas TX Harris 201 29.6884 -95.0513 +US 77572 La Porte Texas TX Harris 201 29.834 -95.4342 +US 77586 Seabrook Texas TX Harris 201 29.5832 -95.037 +US 77587 South Houston Texas TX Harris 201 29.6601 -95.2258 +US 77598 Webster Texas TX Harris 201 29.5564 -95.144 +US 75642 Elysian Fields Texas TX Harrison 203 32.3863 -94.2105 +US 75650 Hallsville Texas TX Harrison 203 32.5073 -94.5333 +US 75651 Harleton Texas TX Harrison 203 32.6579 -94.4652 +US 75659 Jonesville Texas TX Harrison 203 32.5075 -94.1106 +US 75661 Karnack Texas TX Harrison 203 32.6205 -94.2001 +US 75670 Marshall Texas TX Harrison 203 32.5338 -94.3619 +US 75671 Marshall Texas TX Harrison 203 32.5227 -94.3895 +US 75672 Marshall Texas TX Harrison 203 32.5165 -94.3251 +US 75688 Scottsville Texas TX Harrison 203 32.554 -94.2394 +US 75692 Waskom Texas TX Harrison 203 32.5184 -94.1355 +US 75694 Woodlawn Texas TX Harrison 203 32.6537 -94.3427 +US 79018 Channing Texas TX Hartley 205 35.7826 -102.3343 +US 79044 Hartley Texas TX Hartley 205 35.9311 -102.5221 +US 76388 Weinert Texas TX Haskell 207 33.3249 -99.6664 +US 79521 Haskell Texas TX Haskell 207 33.158 -99.7309 +US 79539 O Brien Texas TX Haskell 207 33.3749 -99.8473 +US 79544 Rochester Texas TX Haskell 207 33.3105 -99.8594 +US 79547 Rule Texas TX Haskell 207 33.1842 -99.8894 +US 79548 Rule Texas TX Haskell 207 33.0771 -99.959 +US 78610 Buda Texas TX Hays 209 30.0918 -97.8534 +US 78619 Driftwood Texas TX Hays 209 30.1072 -98.0327 +US 78620 Dripping Springs Texas TX Hays 209 30.2268 -98.1029 +US 78640 Kyle Texas TX Hays 209 29.9966 -97.8335 +US 78666 San Marcos Texas TX Hays 209 29.8754 -97.9404 +US 78667 San Marcos Texas TX Hays 209 30.0544 -98.0036 +US 78676 Wimberley Texas TX Hays 209 30.0265 -98.1123 +US 79014 Canadian Texas TX Hemphill 211 35.9045 -100.3841 +US 75124 Eustace Texas TX Henderson 213 32.2965 -96.0137 +US 75143 Kemp Texas TX Henderson 213 32.2486 -96.2161 +US 75148 Malakoff Texas TX Henderson 213 32.1705 -96.006 +US 75163 Trinidad Texas TX Henderson 213 32.1383 -96.0831 +US 75751 Athens Texas TX Henderson 213 32.1935 -95.8432 +US 75752 Athens Texas TX Henderson 213 32.2151 -95.79 +US 75756 Brownsboro Texas TX Henderson 213 32.304 -95.6 +US 75758 Chandler Texas TX Henderson 213 32.2572 -95.5393 +US 75770 Larue Texas TX Henderson 213 32.1608 -95.5927 +US 75778 Murchison Texas TX Henderson 213 32.3257 -95.7737 +US 75782 Poynor Texas TX Henderson 213 32.0797 -95.5938 +US 78501 Mcallen Texas TX Hidalgo 215 26.2154 -98.2359 +US 78502 Mcallen Texas TX Hidalgo 215 26.2567 -98.1989 +US 78503 Mcallen Texas TX Hidalgo 215 26.1771 -98.252 +US 78504 Mcallen Texas TX Hidalgo 215 26.2556 -98.2303 +US 78505 Mcallen Texas TX Hidalgo 215 26.4097 -98.2242 +US 78516 Alamo Texas TX Hidalgo 215 26.1906 -98.1164 +US 78537 Donna Texas TX Hidalgo 215 26.1671 -98.0529 +US 78538 Edcouch Texas TX Hidalgo 215 26.3328 -97.9622 +US 78539 Edinburg Texas TX Hidalgo 215 26.2792 -98.1832 +US 78540 Edinburg Texas TX Hidalgo 215 26.3194 -98.1909 +US 78541 Edinburg Texas TX Hidalgo County 215 26.4481 -98.2842 +US 78542 Edinburg Texas TX Hidalgo 215 26.4661 -98.0695 5 +US 78543 Elsa Texas TX Hidalgo 215 26.2974 -97.9884 +US 78549 Hargill Texas TX Hidalgo 215 26.4671 -98.0393 +US 78557 Hidalgo Texas TX Hidalgo 215 26.1028 -98.2536 +US 78558 La Blanca Texas TX Hidalgo 215 26.3125 -98.0335 +US 78560 La Joya Texas TX Hidalgo 215 26.2426 -98.4747 +US 78562 La Villa Texas TX Hidalgo 215 26.2999 -97.9247 +US 78563 Linn Texas TX Hidalgo 215 26.6279 -98.2498 +US 78565 Los Ebanos Texas TX Hidalgo 215 26.246 -98.5553 +US 78570 Mercedes Texas TX Hidalgo 215 26.1513 -97.9185 +US 78572 Mission Texas TX Hidalgo 215 26.2644 -98.3909 +US 78573 Mission Texas TX Hidalgo 215 26.2937 -98.3008 +US 78576 Penitas Texas TX Hidalgo 215 26.278 -98.4469 +US 78577 Pharr Texas TX Hidalgo 215 26.1771 -98.187 +US 78579 Progreso Texas TX Hidalgo 215 26.0922 -97.9533 +US 78589 San Juan Texas TX Hidalgo 215 26.2044 -98.1537 +US 78595 Sullivan City Texas TX Hidalgo 215 26.272 -98.5627 +US 78596 Weslaco Texas TX Hidalgo 215 26.1694 -97.9887 +US 78599 Weslaco Texas TX Hidalgo 215 26.4097 -98.2242 +US 79542 Peacock Texas TX Hidalgo County 215 33.2562 -100.4222 +US 76055 Itasca Texas TX Hill 217 32.1636 -97.146 +US 76621 Abbott Texas TX Hill 217 31.8916 -97.0671 +US 76622 Aquilla Texas TX Hill 217 31.8589 -97.2258 +US 76627 Blum Texas TX Hill 217 32.1052 -97.3652 +US 76628 Brandon Texas TX Hill 217 32.0544 -96.9756 +US 76631 Bynum Texas TX Hill 217 31.9907 -96.9837 +US 76636 Covington Texas TX Hill 217 32.1595 -97.2591 +US 76645 Hillsboro Texas TX Hill 217 32.0149 -97.1198 +US 76648 Hubbard Texas TX Hill 217 31.8436 -96.8 +US 76650 Irene Texas TX Hill 217 31.9872 -97.1081 +US 76660 Malone Texas TX Hill 217 31.924 -96.8907 +US 76666 Mertens Texas TX Hill 217 32.0275 -96.8981 +US 76673 Mount Calm Texas TX Hill 217 31.7575 -96.8944 +US 76676 Penelope Texas TX Hill 217 31.8551 -96.9372 +US 76692 Whitney Texas TX Hill 217 31.9713 -97.3463 +US 79313 Anton Texas TX Hockley 219 33.8043 -102.1652 +US 79336 Levelland Texas TX Hockley 219 33.5788 -102.3676 +US 79338 Levelland Texas TX Hockley 219 33.5932 -102.3627 +US 79353 Pep Texas TX Hockley 219 33.8104 -102.5656 +US 79358 Ropesville Texas TX Hockley 219 33.4575 -102.1584 +US 79367 Smyer Texas TX Hockley 219 33.5918 -102.1692 +US 79372 Sundown Texas TX Hockley 219 33.4482 -102.4898 +US 79380 Whitharral Texas TX Hockley 219 33.7354 -102.3419 +US 76035 Cresson Texas TX Hood 221 32.5343 -97.6158 +US 76048 Granbury Texas TX Hood 221 32.425 -97.7742 +US 76049 Granbury Texas TX Hood 221 32.4488 -97.7285 +US 76462 Lipan Texas TX Hood 221 32.5072 -97.9536 +US 76467 Paluxy Texas TX Hood 221 32.3414 -97.9321 +US 76476 Tolar Texas TX Hood 221 32.3772 -97.8802 +US 75420 Brashear Texas TX Hopkins 223 33.1155 -95.7345 +US 75431 Como Texas TX Hopkins 223 33.0107 -95.4734 +US 75433 Cumby Texas TX Hopkins 223 33.1118 -95.7945 +US 75437 Dike Texas TX Hopkins 223 33.2648 -95.4423 +US 75471 Pickton Texas TX Hopkins 223 33.0519 -95.3851 +US 75478 Saltillo Texas TX Hopkins 223 33.1767 -95.3433 +US 75481 Sulphur Bluff Texas TX Hopkins 223 33.3334 -95.374 +US 75482 Sulphur Springs Texas TX Hopkins 223 33.1345 -95.5922 +US 75483 Sulphur Springs Texas TX Hopkins 223 33.1686 -95.5855 +US 75835 Crockett Texas TX Houston 225 31.3208 -95.3928 +US 75844 Grapeland Texas TX Houston 225 31.4972 -95.4447 +US 75847 Kennard Texas TX Houston 225 31.3384 -95.1541 +US 75849 Latexo Texas TX Houston 225 31.4064 -95.4719 +US 75851 Lovelady Texas TX Houston 225 31.0564 -95.5501 +US 75858 Ratcliff Texas TX Houston 225 31.3833 -95.0619 +US 79511 Coahoma Texas TX Howard 227 32.2942 -101.3197 +US 79720 Big Spring Texas TX Howard 227 32.2787 -101.4578 +US 79721 Big Spring Texas TX Howard 227 32.2733 -101.374 +US 79733 Forsan Texas TX Howard 227 32.1105 -101.3669 +US 79748 Knott Texas TX Howard 227 32.4125 -101.6517 +US 79837 Dell City Texas TX Hudspeth 229 31.924 -105.2099 +US 79839 Fort Hancock Texas TX Hudspeth 229 31.2969 -105.8234 +US 79847 Salt Flat Texas TX Hudspeth 229 31.8244 -105.2212 +US 79851 Sierra Blanca Texas TX Hudspeth 229 31.1938 -105.3219 +US 75135 Caddo Mills Texas TX Hunt 231 33.0683 -96.2391 +US 75401 Greenville Texas TX Hunt 231 33.1854 -96.1304 +US 75402 Greenville Texas TX Hunt 231 33.1047 -96.0927 +US 75403 Greenville Texas TX Hunt 231 33.2185 -96.0487 +US 75404 Greenville Texas TX Hunt 231 33.0563 -96.081 +US 75422 Campbell Texas TX Hunt 231 33.151 -95.9439 +US 75423 Celeste Texas TX Hunt 231 33.2649 -96.2076 +US 75428 Commerce Texas TX Hunt 231 33.2493 -95.9097 +US 75429 Commerce Texas TX Hunt 231 33.2377 -95.9089 +US 75453 Lone Oak Texas TX Hunt 231 32.9916 -95.9434 +US 75458 Merit Texas TX Hunt 231 33.2427 -96.2916 +US 75474 Quinlan Texas TX Hunt 231 32.8983 -96.1261 +US 75496 Wolfe City Texas TX Hunt 231 33.3605 -96.0691 +US 79007 Borger Texas TX Hutchinson 233 35.6767 -101.431 +US 79008 Borger Texas TX Hutchinson 233 35.6316 -101.5994 +US 79036 Fritch Texas TX Hutchinson 233 35.6441 -101.5845 +US 79078 Sanford Texas TX Hutchinson 233 35.7011 -101.56 +US 79083 Stinnett Texas TX Hutchinson 233 35.8377 -101.45 +US 76930 Barnhart Texas TX Irion 235 31.1596 -101.1918 +US 76941 Mertzon Texas TX Irion 235 31.2829 -100.8221 +US 76427 Bryson Texas TX Jack 237 33.1615 -98.3874 +US 76458 Jacksboro Texas TX Jack 237 33.2347 -98.1681 +US 76459 Jermyn Texas TX Jack 237 33.2636 -98.3931 +US 76486 Perrin Texas TX Jack 237 33.0585 -98.044 +US 77957 Edna Texas TX Jackson 239 28.9527 -96.6488 +US 77961 Francitas Texas TX Jackson 239 28.8652 -96.3618 +US 77962 Ganado Texas TX Jackson 239 29.0308 -96.5031 +US 77969 La Salle Texas TX Jackson 239 28.7671 -96.6492 +US 77970 La Ward Texas TX Jackson 239 28.8381 -96.4135 +US 77971 Lolita Texas TX Jackson 239 28.7724 -96.4793 +US 77991 Vanderbilt Texas TX Jackson 239 28.8068 -96.6042 +US 75951 Jasper Texas TX Jasper 241 30.8673 -93.9977 +US 75956 Kirbyville Texas TX Jasper 241 30.6583 -93.8984 +US 75957 Magnolia Springs Texas TX Jasper County 241 30.7629 -94.0709 +US 77612 Buna Texas TX Jasper 241 30.4132 -93.9913 +US 77615 Evadale Texas TX Jasper 241 30.3129 -94.0731 +US 79734 Fort Davis Texas TX Jeff Davis 243 30.6131 -103.9364 +US 79854 Valentine Texas TX Jeff Davis 243 30.62 -104.4811 +US 77613 China Texas TX Jefferson 245 30.0108 -94.363 +US 77619 Groves Texas TX Jefferson 245 29.9448 -93.9152 +US 77622 Hamshire Texas TX Jefferson 245 29.8668 -94.3187 +US 77627 Nederland Texas TX Jefferson 245 29.9716 -94.0012 +US 77629 Nome Texas TX Jefferson 245 30.0015 -94.4189 +US 77640 Port Arthur Texas TX Jefferson 245 29.8709 -93.9643 +US 77641 Port Arthur Texas TX Jefferson 245 29.8476 -94.1297 +US 77642 Port Arthur Texas TX Jefferson 245 29.9212 -93.927 +US 77643 Port Arthur Texas TX Jefferson 245 29.9621 -93.8679 +US 77651 Port Neches Texas TX Jefferson 245 29.977 -93.9626 +US 77655 Sabine Pass Texas TX Jefferson 245 29.6682 -94.096 +US 77701 Beaumont Texas TX Jefferson 245 30.0688 -94.1039 +US 77702 Beaumont Texas TX Jefferson 245 30.0871 -94.1254 +US 77703 Beaumont Texas TX Jefferson 245 30.1132 -94.1197 +US 77704 Beaumont Texas TX Jefferson 245 30.1236 -94.1539 +US 77705 Beaumont Texas TX Jefferson 245 30.0211 -94.1157 +US 77706 Beaumont Texas TX Jefferson 245 30.0948 -94.1648 +US 77707 Beaumont Texas TX Jefferson 245 30.0686 -94.1755 +US 77708 Beaumont Texas TX Jefferson 245 30.14 -94.1604 +US 77709 Voth Texas TX Jefferson 245 30.1764 -94.1877 +US 77710 Beaumont Texas TX Jefferson 245 29.8476 -94.1297 +US 77713 Beaumont Texas TX Jefferson 245 30.085 -94.2607 +US 77720 Beaumont Texas TX Jefferson 245 29.8476 -94.1297 +US 77725 Beaumont Texas TX Jefferson 245 29.8476 -94.1297 +US 77726 Beaumont Texas TX Jefferson 245 30.1118 -94.1901 +US 78360 Guerra Texas TX Jim Hogg 247 27.0713 -98.6863 +US 78361 Hebbronville Texas TX Jim Hogg 247 27.2997 -98.6829 +US 78332 Alice Texas TX Jim Wells 249 27.7432 -98.0836 +US 78333 Alice Texas TX Jim Wells 249 27.6595 -98.0123 +US 78342 Ben Bolt Texas TX Jim Wells 249 27.6595 -98.0123 +US 78372 Orange Grove Texas TX Jim Wells 249 27.9487 -97.9838 +US 78375 Premont Texas TX Jim Wells 249 27.3544 -98.133 +US 78383 Sandia Texas TX Jim Wells 249 28.025 -97.8705 +US 76009 Alvarado Texas TX Johnson 251 32.4395 -97.213 +US 76028 Burleson Texas TX Johnson 251 32.5316 -97.309 +US 76031 Cleburne Texas TX Johnson 251 32.3485 -97.3311 +US 76033 Cleburne Texas TX Johnson 251 32.3509 -97.4103 +US 76044 Godley Texas TX Johnson 251 32.4282 -97.5349 +US 76050 Grandview Texas TX Johnson 251 32.2779 -97.2351 +US 76058 Joshua Texas TX Johnson 251 32.4663 -97.4011 +US 76059 Keene Texas TX Johnson 251 32.3937 -97.3287 +US 76061 Lillian Texas TX Johnson 251 32.5036 -97.1748 +US 76084 Venus Texas TX Johnson 251 32.433 -97.1087 +US 76093 Rio Vista Texas TX Johnson 251 32.2532 -97.3678 +US 76097 Burleson Texas TX Johnson 251 32.5244 -97.2609 +US 79501 Anson Texas TX Jones 253 32.7489 -99.8953 +US 79503 Avoca Texas TX Jones 253 32.8832 -99.6964 +US 79520 Hamlin Texas TX Jones 253 32.8799 -100.128 +US 79525 Hawley Texas TX Jones 253 32.6423 -99.9239 +US 79533 Lueders Texas TX Jones 253 32.8712 -99.5783 +US 79553 Stamford Texas TX Jones 253 32.9453 -99.7859 +US 78111 Ecleto Texas TX Karnes 255 28.9449 -97.8828 +US 78113 Falls City Texas TX Karnes 255 28.9814 -98.0156 +US 78116 Gillett Texas TX Karnes 255 29.0514 -97.8343 +US 78117 Hobson Texas TX Karnes 255 28.9445 -97.9707 +US 78118 Karnes City Texas TX Karnes 255 28.8828 -97.9071 +US 78119 Kenedy Texas TX Karnes 255 28.8046 -97.8456 +US 78144 Panna Maria Texas TX Karnes 255 28.9562 -97.8982 +US 78151 Runge Texas TX Karnes 255 28.8876 -97.7138 +US 75114 Crandall Texas TX Kaufman 257 32.5975 -96.4637 +US 75118 Elmo Texas TX Kaufman 257 32.5996 -96.3027 +US 75126 Forney Texas TX Kaufman 257 32.7491 -96.4598 +US 75142 Kaufman Texas TX Kaufman 257 32.546 -96.2852 +US 75147 Mabank Texas TX Kaufman 257 32.3685 -96.0685 +US 75156 Mabank Texas TX Kaufman County 257 32.2972 -96.1184 +US 75157 Rosser Texas TX Kaufman 257 32.4554 -96.4395 +US 75158 Scurry Texas TX Kaufman 257 32.4818 -96.3925 +US 75160 Terrell Texas TX Kaufman 257 32.7515 -96.2831 +US 75161 Terrell Texas TX Kaufman 257 32.7332 -96.195 +US 78004 Bergheim Texas TX Kendall 259 29.8979 -98.5642 +US 78006 Boerne Texas TX Kendall 259 29.8931 -98.6857 +US 78013 Comfort Texas TX Kendall 259 29.9791 -98.8438 +US 78027 Kendalia Texas TX Kendall 259 29.9406 -98.5166 +US 78074 Waring Texas TX Kendall 259 29.9523 -98.7944 +US 78338 Armstrong Texas TX Kenedy 261 26.8698 -97.7698 +US 78385 Sarita Texas TX Kenedy 261 27.1496 -97.8576 +US 79518 Girard Texas TX Kent 263 33.3632 -100.6937 +US 79528 Jayton Texas TX Kent 263 33.2518 -100.5825 +US 78010 Center Point Texas TX Kerr 265 29.929 -99.0736 +US 78024 Hunt Texas TX Kerr 265 30.0027 -99.4823 +US 78025 Ingram Texas TX Kerr 265 30.0731 -99.269 +US 78028 Kerrville Texas TX Kerr 265 30.0416 -99.1408 +US 78029 Kerrville Texas TX Kerr 265 30.0332 -99.141 +US 78058 Mountain Home Texas TX Kerr 265 30.1725 -99.485 +US 76849 Junction Texas TX Kimble 267 30.4754 -99.7473 +US 76854 London Texas TX Kimble 267 30.5888 -99.5441 +US 76874 Roosevelt Texas TX Kimble 267 30.47 -100.0901 +US 79232 Dumont Texas TX King 269 33.7262 -100.6166 +US 79236 Guthrie Texas TX King 269 33.6845 -100.3359 +US 78832 Brackettville Texas TX Kinney 271 29.3096 -100.4155 +US 78363 Kingsville Texas TX Kleberg 273 27.4229 -97.8407 +US 78364 Kingsville Texas TX Kleberg 273 27.3442 -97.7115 +US 78379 Riviera Texas TX Kleberg 273 27.3217 -97.7787 +US 76363 Goree Texas TX Knox 275 33.4748 -99.5258 +US 76371 Munday Texas TX Knox 275 33.4561 -99.6326 +US 76383 Vera Texas TX Knox County 275 33.6337 -99.8039 +US 79505 Benjamin Texas TX Knox 275 33.5556 -99.8271 +US 79529 Knox City Texas TX Knox 275 33.4183 -99.8137 +US 75411 Arthur City Texas TX Lamar 277 33.8643 -95.6111 +US 75416 Blossom Texas TX Lamar 277 33.6945 -95.3823 +US 75421 Brookston Texas TX Lamar 277 33.6246 -95.6888 +US 75425 Chicota Texas TX Lamar 277 33.6597 -95.5829 +US 75434 Cunningham Texas TX Lamar 277 33.409 -95.3711 +US 75435 Deport Texas TX Lamar 277 33.5221 -95.3654 +US 75460 Paris Texas TX Lamar 277 33.6581 -95.5379 +US 75461 Paris Texas TX Lamar 277 33.6632 -95.4608 +US 75462 Paris Texas TX Lamar 277 33.6805 -95.4905 +US 75468 Pattonville Texas TX Lamar 277 33.5702 -95.3908 +US 75470 Petty Texas TX Lamar 277 33.6098 -95.7891 +US 75473 Powderly Texas TX Lamar 277 33.7779 -95.5307 +US 75477 Roxton Texas TX Lamar 277 33.5429 -95.7416 +US 75486 Sumner Texas TX Lamar 277 33.7589 -95.6807 +US 79031 Earth Texas TX Lamb 279 34.2415 -102.4213 +US 79064 Olton Texas TX Lamb 279 34.1844 -102.1414 +US 79082 Springlake Texas TX Lamb 279 34.2393 -102.309 +US 79312 Amherst Texas TX Lamb 279 33.9976 -102.4416 +US 79326 Fieldton Texas TX Lamb 279 34.053 -102.206 +US 79339 Littlefield Texas TX Lamb 279 33.9212 -102.3207 +US 79369 Spade Texas TX Lamb 279 33.9256 -102.1564 +US 79371 Sudan Texas TX Lamb 279 34.0697 -102.5255 +US 76539 Kempner Texas TX Lampasas 281 31.0887 -98.0099 +US 76550 Lampasas Texas TX Lampasas 281 31.068 -98.1834 +US 76824 Bend Texas TX Lampasas 281 31.1123 -98.4821 +US 76853 Lometa Texas TX Lampasas 281 31.2167 -98.4006 +US 78001 Artesia Wells Texas TX La Salle 283 28.2639 -99.2802 +US 78014 Cotulla Texas TX La Salle 283 28.4398 -99.2328 +US 78019 Encinal Texas TX La Salle 283 28.0405 -99.3563 +US 78021 Fowlerton Texas TX La Salle 283 28.4887 -98.8518 +US 77964 Hallettsville Texas TX Lavaca 285 29.4426 -96.9234 +US 77975 Moulton Texas TX Lavaca 285 29.57 -97.1031 +US 77984 Shiner Texas TX Lavaca 285 29.428 -97.164 +US 77985 Speaks Texas TX Lavaca 285 29.348 -96.9003 +US 77986 Sublime Texas TX Lavaca 285 29.4876 -96.7946 +US 77987 Sweet Home Texas TX Lavaca 285 29.3426 -97.0756 +US 77995 Yoakum Texas TX Lavaca 285 29.284 -97.1306 +US 77853 Dime Box Texas TX Lee 287 30.3579 -96.8248 +US 78942 Giddings Texas TX Lee 287 30.1777 -96.9332 +US 78947 Lexington Texas TX Lee 287 30.4191 -97.0524 +US 78948 Lincoln Texas TX Lee 287 30.3177 -96.9702 +US 75831 Buffalo Texas TX Leon 289 31.4121 -95.9904 +US 75833 Centerville Texas TX Leon 289 31.272 -95.9213 +US 75846 Jewett Texas TX Leon 289 31.3739 -96.1918 +US 75850 Leona Texas TX Leon 289 31.1421 -95.9284 +US 75855 Oakwood Texas TX Leon 289 31.6023 -95.9022 +US 77850 Concord Texas TX Leon 289 31.3138 -95.9935 +US 77855 Flynn Texas TX Leon 289 31.1593 -96.1234 +US 77865 Marquez Texas TX Leon 289 31.2309 -96.2375 +US 77871 Normangee Texas TX Leon 289 31.0705 -96.125 +US 77327 Cleveland Texas TX Liberty 291 30.33 -95.0202 +US 77328 Cleveland Texas TX Liberty 291 30.3963 -95.194 +US 77368 Romayor Texas TX Liberty 291 30.4359 -94.8222 +US 77369 Rye Texas TX Liberty 291 30.4596 -94.7436 +US 77533 Daisetta Texas TX Liberty 291 30.1104 -94.66 +US 77535 Dayton Texas TX Liberty 291 30.0102 -94.8787 +US 77538 Devers Texas TX Liberty 291 29.9978 -94.5746 +US 77561 Hardin Texas TX Liberty 291 30.151 -94.7338 +US 77564 Hull Texas TX Liberty 291 30.1334 -94.6604 +US 77575 Liberty Texas TX Liberty 291 30.0946 -94.7378 +US 77582 Raywood Texas TX Liberty 291 30.0542 -94.6764 +US 76635 Coolidge Texas TX Limestone 293 31.7438 -96.6577 +US 76642 Groesbeck Texas TX Limestone 293 31.5357 -96.5234 +US 76653 Kosse Texas TX Limestone 293 31.3147 -96.6195 +US 76667 Mexia Texas TX Limestone 293 31.6784 -96.4952 +US 76678 Prairie Hill Texas TX Limestone 293 31.6591 -96.8094 +US 76686 Tehuacana Texas TX Limestone 293 31.7504 -96.5416 +US 76687 Thornton Texas TX Limestone 293 31.4083 -96.5024 +US 79005 Booker Texas TX Lipscomb 295 36.4429 -100.5238 +US 79024 Darrouzett Texas TX Lipscomb 295 36.4453 -100.3254 +US 79034 Follett Texas TX Lipscomb 295 36.4309 -100.2068 +US 79046 Higgins Texas TX Lipscomb 295 36.1365 -100.0952 +US 79056 Lipscomb Texas TX Lipscomb 295 36.223 -100.2702 +US 78022 George West Texas TX Live Oak 297 28.3204 -98.1162 +US 78060 Oakville Texas TX Live Oak 297 28.4218 -98.0719 +US 78071 Three Rivers Texas TX Live Oak 297 28.4756 -98.1782 +US 78075 Whitsett Texas TX Live Oak 297 28.6373 -98.2565 +US 78350 Dinero Texas TX Live Oak 297 28.4218 -98.0719 +US 76831 Castell Texas TX Llano 299 30.7565 -98.9712 +US 76885 Valley Spring Texas TX Llano 299 30.866 -98.8357 +US 78607 Bluffton Texas TX Llano 299 30.8256 -98.515 +US 78609 Buchanan Dam Texas TX Llano 299 30.7538 -98.4295 +US 78639 Kingsland Texas TX Llano 299 30.6662 -98.4475 +US 78643 Llano Texas TX Llano 299 30.7151 -98.6109 +US 78672 Tow Texas TX Llano 299 30.8609 -98.4596 +US 79754 Mentone Texas TX Loving 301 31.7384 -103.5503 +US 79329 Idalou Texas TX Lubbock 303 33.6504 -101.6786 +US 79350 New Deal Texas TX Lubbock 303 33.7296 -101.8355 +US 79363 Shallowater Texas TX Lubbock 303 33.6919 -101.9836 +US 79364 Slaton Texas TX Lubbock 303 33.4629 -101.6732 +US 79366 Ransom Canyon Texas TX Lubbock 303 33.533 -101.6908 +US 79382 Wolfforth Texas TX Lubbock 303 33.5304 -102.0261 +US 79401 Lubbock Texas TX Lubbock 303 33.5865 -101.8606 +US 79402 Lubbock Texas TX Lubbock 303 33.5922 -101.8511 +US 79403 Lubbock Texas TX Lubbock 303 33.6196 -101.8098 +US 79404 Lubbock Texas TX Lubbock 303 33.526 -101.8333 +US 79405 Lubbock Texas TX Lubbock 303 33.571 -101.8507 +US 79406 Lubbock Texas TX Lubbock 303 33.5819 -101.8778 +US 79407 Lubbock Texas TX Lubbock 303 33.5684 -101.9423 +US 79408 Lubbock Texas TX Lubbock 303 33.5659 -101.9267 +US 79409 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79410 Lubbock Texas TX Lubbock 303 33.5693 -101.8904 +US 79411 Lubbock Texas TX Lubbock 303 33.5704 -101.8626 +US 79412 Lubbock Texas TX Lubbock 303 33.5463 -101.8577 +US 79413 Lubbock Texas TX Lubbock 303 33.5466 -101.8871 +US 79414 Lubbock Texas TX Lubbock 303 33.5497 -101.9187 +US 79415 Lubbock Texas TX Lubbock 303 33.6021 -101.876 +US 79416 Lubbock Texas TX Lubbock 303 33.5924 -101.9367 +US 79423 Lubbock Texas TX Lubbock 303 33.5146 -101.8795 +US 79424 Lubbock Texas TX Lubbock 303 33.5159 -101.9344 +US 79430 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79452 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79453 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79457 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79464 Lubbock Texas TX Lubbock 303 33.4896 -102.0109 +US 79490 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79491 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79493 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79499 Lubbock Texas TX Lubbock 303 33.61 -101.8213 +US 79351 Odonnell Texas TX Lynn 305 32.9773 -101.8271 +US 79373 Tahoka Texas TX Lynn 305 33.1988 -101.822 +US 79381 Wilson Texas TX Lynn 305 33.3299 -101.7122 +US 79383 New Home Texas TX Lynn 305 33.3451 -101.9203 +US 76825 Brady Texas TX McCulloch 307 31.1509 -99.3372 +US 76836 Doole Texas TX McCulloch 307 31.2172 -99.3472 +US 76852 Lohn Texas TX McCulloch 307 31.3173 -99.3833 +US 76858 Melvin Texas TX McCulloch 307 31.1851 -99.5439 +US 76867 Pear Valley Texas TX McCulloch 307 31.2172 -99.3472 +US 76872 Rochelle Texas TX McCulloch 307 31.3 -99.1572 +US 76887 Voca Texas TX McCulloch 307 30.9959 -99.1682 +US 76524 Eddy Texas TX McLennan 309 31.3088 -97.2774 +US 76557 Moody Texas TX McLennan 309 31.2533 -97.41 +US 76624 Axtell Texas TX McLennan 309 31.661 -96.9882 +US 76630 Bruceville Texas TX McLennan 309 31.3267 -97.2342 +US 76633 China Spring Texas TX McLennan 309 31.6673 -97.3002 +US 76638 Crawford Texas TX McLennan 309 31.5598 -97.39 +US 76640 Elm Mott Texas TX McLennan 309 31.6725 -97.1138 +US 76643 Hewitt Texas TX McLennan 309 31.4582 -97.1966 +US 76654 Leroy Texas TX McLennan 309 31.5536 -97.2032 +US 76655 Lorena Texas TX McLennan 309 31.4093 -97.2302 +US 76657 Mc Gregor Texas TX McLennan 309 31.4431 -97.3943 +US 76664 Mart Texas TX McLennan 309 31.5458 -96.8381 +US 76682 Riesel Texas TX McLennan 309 31.5002 -96.9476 +US 76684 Ross Texas TX McLennan 309 31.7173 -97.1188 +US 76691 West Texas TX McLennan 309 31.7754 -97.1258 +US 76701 Waco Texas TX McLennan 309 31.5525 -97.1396 +US 76702 Waco Texas TX McLennan 309 31.5475 -97.1443 +US 76703 Waco Texas TX McLennan 309 31.5536 -97.2032 +US 76704 Waco Texas TX McLennan 309 31.5773 -97.1241 +US 76705 Waco Texas TX McLennan 309 31.6403 -97.0963 +US 76706 Waco Texas TX McLennan 309 31.5171 -97.1198 +US 76707 Waco Texas TX McLennan 309 31.5527 -97.1588 +US 76708 Waco Texas TX McLennan 309 31.5765 -97.1786 +US 76710 Waco Texas TX McLennan 309 31.535 -97.1899 +US 76711 Waco Texas TX McLennan 309 31.5175 -97.1547 +US 76712 Woodway Texas TX McLennan 309 31.5051 -97.2311 +US 76714 Waco Texas TX McLennan 309 31.5536 -97.2032 +US 76715 Waco Texas TX McLennan 309 31.5536 -97.2032 +US 76716 Waco Texas TX McLennan 309 31.5536 -97.2032 +US 76795 Waco Texas TX McLennan 309 31.5536 -97.2032 +US 76796 Waco Texas TX McLennan County 309 31.5915 -97.0823 +US 76797 Waco Texas TX McLennan 309 31.5536 -97.2032 +US 76798 Waco Texas TX McLennan 309 31.547 -97.1203 +US 76799 Waco Texas TX McLennan 309 31.5411 -97.1615 +US 78007 Calliham Texas TX McMullen 311 28.4553 -98.4098 +US 78072 Tilden Texas TX McMullen 311 28.4198 -98.5693 +US 75852 Midway Texas TX Madison 313 30.9806 -95.7089 +US 77864 Madisonville Texas TX Madison 313 30.9533 -95.9091 +US 77872 North Zulch Texas TX Madison 313 30.9285 -96.0925 +US 75564 Lodi Texas TX Marion 315 32.8718 -94.2729 +US 75657 Jefferson Texas TX Marion 315 32.8059 -94.3655 +US 79749 Lenorah Texas TX Martin 317 32.2589 -101.8442 +US 79782 Stanton Texas TX Martin 317 32.14 -101.8099 +US 79783 Tarzan Texas TX Martin 317 32.3575 -101.9607 +US 76820 Art Texas TX Mason 319 30.767 -99.0486 +US 76842 Fredonia Texas TX Mason 319 30.9214 -99.1216 +US 76856 Mason Texas TX Mason 319 30.7434 -99.2261 +US 76869 Pontotoc Texas TX Mason 319 30.8906 -99.0212 +US 77404 Bay City Texas TX Matagorda 321 28.7982 -95.6511 +US 77414 Bay City Texas TX Matagorda 321 28.8636 -95.9173 +US 77415 Cedar Lane Texas TX Matagorda 321 28.9235 -95.7247 +US 77419 Blessing Texas TX Matagorda 321 28.8649 -96.218 +US 77428 Collegeport Texas TX Matagorda 321 28.7175 -96.1434 +US 77440 Elmaton Texas TX Matagorda 321 28.876 -96.1434 +US 77456 Markham Texas TX Matagorda 321 28.9547 -96.0928 +US 77457 Matagorda Texas TX Matagorda 321 28.6496 -95.9623 +US 77458 Midfield Texas TX Matagorda 321 28.9362 -96.2265 +US 77465 Palacios Texas TX Matagorda 321 28.715 -96.2154 +US 77468 Pledger Texas TX Matagorda 321 29.1792 -95.8986 +US 77482 Van Vleck Texas TX Matagorda 321 29.016 -95.8905 +US 77483 Wadsworth Texas TX Matagorda 321 28.8259 -95.9046 +US 78852 Eagle Pass Texas TX Maverick 323 28.7028 -100.4818 +US 78853 Eagle Pass Texas TX Maverick 323 28.679 -100.4784 +US 78860 El Indio Texas TX Maverick 323 28.5331 -100.342 +US 78877 Quemado Texas TX Maverick 323 28.9256 -100.5912 +US 78009 Castroville Texas TX Medina 325 29.3553 -98.8824 +US 78016 Devine Texas TX Medina 325 29.1521 -98.909 +US 78039 La Coste Texas TX Medina 325 29.3082 -98.8125 +US 78056 Mico Texas TX Medina 325 29.591 -98.8821 +US 78059 Natalia Texas TX Medina 325 29.2117 -98.8552 +US 78066 Rio Medina Texas TX Medina 325 29.4612 -98.8694 +US 78850 D Hanis Texas TX Medina 325 29.3398 -99.2835 +US 78861 Hondo Texas TX Medina 325 29.3986 -99.1762 +US 78886 Yancey Texas TX Medina 325 29.1404 -99.1428 +US 76841 Fort Mc Kavett Texas TX Menard 327 30.829 -100.0809 +US 76848 Hext Texas TX Menard 327 30.8816 -99.554 +US 76859 Menard Texas TX Menard 327 30.9119 -99.7847 +US 79701 Midland Texas TX Midland 329 31.9896 -102.0626 +US 79702 Midland Texas TX Midland 329 31.9637 -102.0801 +US 79703 Midland Texas TX Midland 329 31.9721 -102.1369 +US 79704 Midland Texas TX Midland 329 31.8693 -102.0317 +US 79705 Midland Texas TX Midland 329 32.0295 -102.0915 +US 79706 Midland Texas TX Midland 329 31.8816 -102.0134 +US 79707 Midland Texas TX Midland 329 32.0199 -102.1476 +US 79708 Midland Texas TX Midland 329 31.8693 -102.0317 +US 79709 Midland Texas TX Midland County 329 32.0265 -102.1002 +US 79710 Midland Texas TX Midland 329 31.8693 -102.0317 +US 79711 Midland Texas TX Midland 329 31.8693 -102.0317 +US 79712 Midland Texas TX Midland 329 31.8693 -102.0317 +US 76517 Ben Arnold Texas TX Milam County 331 30.9635 -96.9876 +US 76518 Buckholts Texas TX Milam 331 30.8858 -97.1241 +US 76519 Burlington Texas TX Milam 331 30.9736 -96.9642 +US 76520 Cameron Texas TX Milam 331 30.8527 -96.9766 +US 76523 Davilla Texas TX Milam 331 30.7824 -97.298 +US 76555 Maysfield Texas TX Milam 331 30.7842 -96.9638 +US 76556 Milano Texas TX Milam 331 30.7304 -96.8807 +US 76567 Rockdale Texas TX Milam 331 30.6583 -97.0079 +US 76577 Thorndale Texas TX Milam 331 30.6082 -97.1764 +US 77857 Gause Texas TX Milam 331 30.7833 -96.7237 +US 76844 Goldthwaite Texas TX Mills 333 31.4458 -98.5744 +US 76864 Mullin Texas TX Mills 333 31.5748 -98.6635 +US 76870 Priddy Texas TX Mills 333 31.641 -98.5276 +US 76880 Star Texas TX Mills 333 31.4771 -98.6309 +US 79512 Colorado City Texas TX Mitchell 335 32.3987 -100.8609 +US 79532 Loraine Texas TX Mitchell 335 32.385 -100.7285 +US 79565 Westbrook Texas TX Mitchell 335 32.3627 -101.043 +US 76230 Bowie Texas TX Montague 337 33.5568 -97.8373 +US 76239 Forestburg Texas TX Montague 337 33.5398 -97.5848 +US 76251 Montague Texas TX Montague 337 33.6639 -97.7282 +US 76255 Nocona Texas TX Montague 337 33.7982 -97.727 +US 76261 Ringgold Texas TX Montague 337 33.8164 -97.944 +US 76265 Saint Jo Texas TX Montague 337 33.744 -97.5568 +US 76270 Sunset Texas TX Montague 337 33.4539 -97.7709 +US 77286 Houston Texas TX Montgomery County 339 29.6745 -95.3679 +US 77301 Conroe Texas TX Montgomery 339 30.3125 -95.4527 +US 77302 Conroe Texas TX Montgomery 339 30.2238 -95.3577 +US 77303 Conroe Texas TX Montgomery 339 30.3814 -95.3749 +US 77304 Conroe Texas TX Montgomery 339 30.3217 -95.5285 +US 77305 Conroe Texas TX Montgomery 339 30.2906 -95.3832 +US 77306 Conroe Texas TX Montgomery 339 30.2277 -95.2851 +US 77316 Montgomery Texas TX Montgomery 339 30.3587 -95.6857 +US 77318 Willis Texas TX Montgomery 339 30.4416 -95.5394 +US 77333 Dobbin Texas TX Montgomery 339 30.3365 -95.7723 +US 77353 Magnolia Texas TX Montgomery 339 30.1806 -95.7092 +US 77354 Magnolia Texas TX Montgomery 339 30.2333 -95.5502 +US 77355 Magnolia Texas TX Montgomery 339 30.1598 -95.7402 +US 77356 Montgomery Texas TX Montgomery 339 30.4411 -95.7097 +US 77357 New Caney Texas TX Montgomery 339 30.1579 -95.198 +US 77362 Pinehurst Texas TX Montgomery 339 30.1581 -95.6814 +US 77365 Porter Texas TX Montgomery 339 30.1237 -95.2686 +US 77372 Splendora Texas TX Montgomery 339 30.2326 -95.1993 +US 77378 Willis Texas TX Montgomery 339 30.4441 -95.4506 +US 77380 Spring Texas TX Montgomery 339 30.1441 -95.4703 +US 77381 Spring Texas TX Montgomery 339 30.1716 -95.4985 +US 77384 Conroe Texas TX Montgomery 339 30.2257 -95.4924 +US 77385 Conroe Texas TX Montgomery 339 30.1877 -95.4288 +US 77386 Spring Texas TX Montgomery 339 30.1288 -95.4239 +US 77387 Spring Texas TX Montgomery 339 30.3784 -95.557 +US 77393 Spring Texas TX Montgomery 339 30.329 -95.4635 +US 79013 Cactus Texas TX Moore 341 36.0412 -102.0007 +US 79029 Dumas Texas TX Moore 341 35.8823 -101.968 +US 79058 Masterson Texas TX Moore 341 35.8378 -101.8928 +US 79086 Sunray Texas TX Moore 341 36.0097 -101.8123 +US 75568 Naples Texas TX Morris 343 33.1912 -94.6891 +US 75571 Omaha Texas TX Morris 343 33.1808 -94.7639 +US 75636 Cason Texas TX Morris 343 33.024 -94.8249 +US 75638 Daingerfield Texas TX Morris 343 33.0313 -94.7359 +US 75668 Lone Star Texas TX Morris 343 32.9252 -94.7049 +US 79234 Flomot Texas TX Motley 345 34.2321 -101.0038 +US 79244 Matador Texas TX Motley 345 34.0525 -100.8361 +US 79256 Roaring Springs Texas TX Motley 345 33.8977 -100.8528 +US 75760 Cushing Texas TX Nacogdoches 347 31.7978 -94.8539 +US 75788 Sacul Texas TX Nacogdoches 347 31.8254 -94.9189 +US 75937 Chireno Texas TX Nacogdoches 347 31.5119 -94.4302 +US 75943 Douglass Texas TX Nacogdoches 347 31.6578 -94.8696 +US 75944 Etoile Texas TX Nacogdoches 347 31.3601 -94.4064 +US 75946 Garrison Texas TX Nacogdoches 347 31.8111 -94.5266 +US 75958 Martinsville Texas TX Nacogdoches 347 31.5342 -94.639 +US 75961 Nacogdoches Texas TX Nacogdoches 347 31.5611 -94.5 +US 75962 Nacogdoches Texas TX Nacogdoches 347 31.6995 -94.6074 +US 75963 Nacogdoches Texas TX Nacogdoches 347 31.6046 -94.6641 +US 75964 Nacogdoches Texas TX Nacogdoches 347 31.6737 -94.6932 +US 75965 Nacogdoches Texas TX Nacogdoches 347 31.7195 -94.6168 +US 75978 Woden Texas TX Nacogdoches 347 31.5037 -94.525 +US 75102 Barry Texas TX Navarro 349 32.1014 -96.6251 +US 75105 Chatfield Texas TX Navarro 349 32.2954 -96.3887 +US 75109 Corsicana Texas TX Navarro 349 31.9937 -96.4199 +US 75110 Corsicana Texas TX Navarro 349 32.0868 -96.4762 +US 75144 Kerens Texas TX Navarro 349 32.1275 -96.2298 +US 75151 Corsicana Texas TX Navarro 349 32.0624 -96.4735 +US 75153 Powell Texas TX Navarro 349 32.1196 -96.3327 +US 76626 Blooming Grove Texas TX Navarro 349 32.0758 -96.701 +US 76639 Dawson Texas TX Navarro 349 31.8974 -96.7085 +US 76641 Frost Texas TX Navarro 349 32.0275 -96.7684 +US 76679 Purdon Texas TX Navarro 349 31.9483 -96.5856 +US 76681 Richland Texas TX Navarro 349 31.9018 -96.4373 +US 75928 Bon Wier Texas TX Newton 351 30.6876 -93.7665 +US 75932 Burkeville Texas TX Newton 351 31.0099 -93.6585 +US 75933 Call Texas TX Newton 351 30.5741 -93.8334 +US 75966 Newton Texas TX Newton 351 30.8351 -93.7497 +US 75977 Wiergate Texas TX Newton 351 31.0414 -93.8039 +US 77614 Deweyville Texas TX Newton 351 30.2894 -93.7488 +US 79506 Blackwell Texas TX Nolan 353 32.082 -100.3111 +US 79535 Maryneal Texas TX Nolan 353 32.2026 -100.4972 +US 79537 Nolan Texas TX Nolan 353 32.2919 -100.2107 +US 79545 Roscoe Texas TX Nolan 353 32.4276 -100.5391 +US 79556 Sweetwater Texas TX Nolan 353 32.4726 -100.3979 +US 78330 Agua Dulce Texas TX Nueces 355 27.781 -97.8551 +US 78339 Banquete Texas TX Nueces 355 27.8051 -97.7922 +US 78343 Bishop Texas TX Nueces 355 27.5886 -97.783 +US 78347 Chapman Ranch Texas TX Nueces 355 27.5988 -97.462 +US 78351 Driscoll Texas TX Nueces 355 27.6868 -97.7427 +US 78373 Port Aransas Texas TX Nueces 355 27.7707 -97.1051 +US 78380 Robstown Texas TX Nueces 355 27.7984 -97.6995 +US 78401 Corpus Christi Texas TX Nueces 355 27.7941 -97.403 +US 78402 Corpus Christi Texas TX Nueces 355 27.8262 -97.3857 +US 78403 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78404 Corpus Christi Texas TX Nueces 355 27.7683 -97.4013 +US 78405 Corpus Christi Texas TX Nueces 355 27.7762 -97.4271 +US 78406 Corpus Christi Texas TX Nueces 355 27.7684 -97.5144 +US 78407 Corpus Christi Texas TX Nueces 355 27.8042 -97.4356 +US 78408 Corpus Christi Texas TX Nueces 355 27.7945 -97.4381 +US 78409 Corpus Christi Texas TX Nueces 355 27.8146 -97.527 +US 78410 Corpus Christi Texas TX Nueces 355 27.8458 -97.596 +US 78411 Corpus Christi Texas TX Nueces 355 27.7311 -97.3877 +US 78412 Corpus Christi Texas TX Nueces 355 27.7061 -97.3537 +US 78413 Corpus Christi Texas TX Nueces 355 27.691 -97.3983 +US 78414 Corpus Christi Texas TX Nueces 355 27.677 -97.365 +US 78415 Corpus Christi Texas TX Nueces 355 27.7262 -97.4078 +US 78416 Corpus Christi Texas TX Nueces 355 27.7536 -97.4347 +US 78417 Corpus Christi Texas TX Nueces 355 27.729 -97.4494 +US 78418 Corpus Christi Texas TX Nueces 355 27.6349 -97.3103 +US 78419 Corpus Christi Texas TX Nueces 355 27.6952 -97.2694 +US 78426 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78427 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78460 Corpus Christi Texas TX Nueces 355 27.8899 -97.8797 +US 78461 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78463 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78465 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78466 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78467 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78468 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78469 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78470 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78471 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78472 Corpus Christi Texas TX Nueces 355 27.7402 -97.5792 +US 78473 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78474 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78475 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78476 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78477 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78478 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 78480 Corpus Christi Texas TX Nueces 355 27.777 -97.4632 +US 79033 Farnsworth Texas TX Ochiltree 357 36.2963 -100.9843 +US 79070 Perryton Texas TX Ochiltree 357 36.3748 -100.8156 +US 79093 Waka Texas TX Ochiltree 357 36.2716 -101.0443 +US 79001 Adrian Texas TX Oldham 359 35.2758 -102.697 +US 79010 Boys Ranch Texas TX Oldham 359 35.4471 -102.1721 +US 79092 Vega Texas TX Oldham 359 35.2241 -102.4214 +US 79098 Wildorado Texas TX Oldham 359 35.1916 -102.2118 +US 77611 Bridge City Texas TX Orange 361 30.0192 -93.8326 +US 77626 Mauriceville Texas TX Orange 361 30.204 -93.8866 +US 77630 Orange Texas TX Orange 361 30.0709 -93.8659 +US 77631 Orange Texas TX Orange 361 30.0548 -93.9031 +US 77632 Orange Texas TX Orange 361 30.1775 -93.8409 +US 77639 Orangefield Texas TX Orange 361 30.0631 -93.8599 +US 77662 Vidor Texas TX Orange 361 30.1502 -94.0008 +US 77670 Vidor Texas TX Orange 361 30.0548 -93.9031 +US 76067 Mineral Wells Texas TX Palo Pinto 363 32.8103 -98.0631 +US 76068 Mineral Wells Texas TX Palo Pinto 363 32.7598 -98.3162 +US 76449 Graford Texas TX Palo Pinto 363 32.9242 -98.337 +US 76453 Gordon Texas TX Palo Pinto 363 32.5478 -98.3632 +US 76463 Mingus Texas TX Palo Pinto 363 32.5381 -98.4219 +US 76472 Santo Texas TX Palo Pinto 363 32.5979 -98.1797 +US 76475 Strawn Texas TX Palo Pinto 363 32.5945 -98.4995 +US 76484 Palo Pinto Texas TX Palo Pinto 363 32.7048 -98.3469 +US 75631 Beckville Texas TX Panola 365 32.2452 -94.4555 +US 75633 Carthage Texas TX Panola 365 32.1544 -94.3527 +US 75637 Clayton Texas TX Panola 365 32.1027 -94.4935 +US 75639 De Berry Texas TX Panola 365 32.2543 -94.1356 +US 75643 Gary Texas TX Panola 365 32.0334 -94.38 +US 75669 Long Branch Texas TX Panola 365 32.0449 -94.5381 +US 75685 Panola Texas TX Panola 365 32.1838 -94.3087 +US 76008 Aledo Texas TX Parker 367 32.7004 -97.6039 +US 76066 Millsap Texas TX Parker 367 32.7457 -97.9561 +US 76082 Springtown Texas TX Parker 367 32.966 -97.635 +US 76085 Weatherford Texas TX Parker 367 32.7676 -97.7516 +US 76086 Weatherford Texas TX Parker 367 32.7549 -97.7899 +US 76087 Weatherford Texas TX Parker 367 32.7495 -97.6894 +US 76088 Weatherford Texas TX Parker 367 32.8478 -97.8606 +US 76098 Azle Texas TX Parker 367 32.8957 -97.5636 +US 76439 Dennis Texas TX Parker 367 32.6325 -97.9575 +US 76485 Peaster Texas TX Parker 367 32.7793 -97.8055 +US 76487 Poolville Texas TX Parker 367 32.968 -97.8472 +US 76490 Whitt Texas TX Parker 367 32.9555 -98.021 +US 79009 Bovina Texas TX Parmer 369 34.4815 -102.8061 +US 79035 Friona Texas TX Parmer 369 34.6274 -102.7844 +US 79053 Lazbuddie Texas TX Parmer 369 34.3847 -102.587 +US 79325 Farwell Texas TX Parmer 369 34.386 -102.9901 +US 79730 Coyanosa Texas TX Pecos 371 31.2295 -103.0538 +US 79735 Fort Stockton Texas TX Pecos 371 30.8908 -102.8799 +US 79740 Girvin Texas TX Pecos 371 31.0473 -102.4592 +US 79743 Imperial Texas TX Pecos 371 31.2373 -102.7109 +US 79744 Iraan Texas TX Pecos 371 30.9156 -101.9152 +US 79781 Sheffield Texas TX Pecos 371 30.6935 -101.86 +US 75934 Camden Texas TX Polk 373 30.9 -94.7547 +US 75939 Corrigan Texas TX Polk 373 31.0408 -94.8124 +US 75960 Moscow Texas TX Polk 373 30.9179 -94.8544 +US 77326 Ace Texas TX Polk 373 30.5209 -94.8221 +US 77332 Dallardsville Texas TX Polk 373 30.8179 -94.8691 +US 77335 Goodrich Texas TX Polk 373 30.6079 -94.9592 +US 77350 Leggett Texas TX Polk 373 30.8568 -94.8561 +US 77351 Livingston Texas TX Polk 373 30.6829 -94.8976 +US 77360 Onalaska Texas TX Polk 373 30.8225 -95.1056 +US 77399 Livingston Texas TX Polk 373 30.8179 -94.8691 +US 79012 Bushland Texas TX Potter 375 35.2664 -102.0978 +US 79101 Amarillo Texas TX Potter 375 35.2032 -101.8421 +US 79102 Amarillo Texas TX Potter 375 35.1999 -101.8496 +US 79103 Amarillo Texas TX Potter 375 35.1751 -101.7976 +US 79104 Amarillo Texas TX Potter 375 35.1939 -101.7975 +US 79105 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79106 Amarillo Texas TX Potter 375 35.1977 -101.8949 +US 79107 Amarillo Texas TX Potter 375 35.2309 -101.806 +US 79108 Amarillo Texas TX Potter 375 35.2779 -101.83 +US 79111 Amarillo Texas TX Potter 375 35.2286 -101.6703 +US 79116 Amarillo Texas TX Potter 375 35.2454 -101.999 +US 79117 Amarillo Texas TX Potter 375 35.3089 -101.843 +US 79120 Amarillo Texas TX Potter 375 35.1964 -101.8034 +US 79123 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79124 Amarillo Texas TX Potter 375 35.2703 -101.943 +US 79159 Amarillo Texas TX Potter 375 35.216 -102.0714 +US 79160 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79161 Amarillo Texas TX Potter County 375 35.1885 -101.8165 +US 79163 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79164 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79165 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79166 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79167 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79168 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79170 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79171 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79172 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79173 Amarillo Texas TX Potter County 375 35.1885 -101.8165 +US 79174 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79175 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79176 Amarillo Texas TX Potter County 375 35.1885 -101.8165 +US 79177 Amarillo Texas TX Potter County 375 35.1885 -101.8165 +US 79178 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79180 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79181 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79182 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79184 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79185 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79186 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79187 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79188 Amarillo Texas TX Potter County 375 35.1885 -101.8165 +US 79189 Amarillo Texas TX Potter 375 35.4015 -101.8951 +US 79843 Marfa Texas TX Presidio 377 30.293 -104.0848 +US 79845 Presidio Texas TX Presidio 377 29.5573 -104.3551 +US 79846 Redford Texas TX Presidio 377 29.4702 -104.0055 +US 79850 Shafter Texas TX Presidio 377 29.9437 -104.3867 +US 75410 Alba Texas TX Rains 379 32.7652 -95.5971 +US 75440 Emory Texas TX Rains 379 32.875 -95.7418 +US 75472 Point Texas TX Rains 379 32.9007 -95.8903 +US 79015 Canyon Texas TX Randall 381 34.9772 -101.9247 +US 79016 Canyon Texas TX Randall 381 34.9654 -101.8959 +US 79091 Umbarger Texas TX Randall 381 34.901 -102.0788 +US 79109 Amarillo Texas TX Randall 381 35.1663 -101.8868 +US 79110 Amarillo Texas TX Randall 381 35.1545 -101.8641 +US 79114 Amarillo Texas TX Randall 381 35.05 -101.8175 +US 79118 Amarillo Texas TX Randall 381 35.0763 -101.8349 +US 79119 Amarillo Texas TX Randall 381 35.0642 -101.9743 +US 79121 Amarillo Texas TX Randall 381 35.1697 -101.9266 +US 76932 Big Lake Texas TX Reagan 383 31.417 -101.5423 +US 78833 Camp Wood Texas TX Real 385 29.6795 -100.0084 +US 78873 Leakey Texas TX Real 385 29.769 -99.7479 +US 78879 Rio Frio Texas TX Real 385 29.6495 -99.7165 +US 75412 Bagwell Texas TX Red River 387 33.8361 -95.1487 +US 75417 Bogata Texas TX Red River 387 33.4699 -95.1937 +US 75426 Clarksville Texas TX Red River 387 33.6236 -95.0461 +US 75436 Detroit Texas TX Red River 387 33.6627 -95.2385 +US 75550 Annona Texas TX Red River 387 33.5535 -94.8992 +US 75554 Avery Texas TX Red River 387 33.5339 -94.7867 +US 79718 Balmorhea Texas TX Reeves 389 30.9478 -103.7699 +US 79770 Orla Texas TX Reeves 389 31.864 -103.9297 +US 79772 Pecos Texas TX Reeves 389 31.4467 -103.5791 +US 79780 Saragosa Texas TX Reeves 389 31.0428 -103.6364 +US 79785 Toyah Texas TX Reeves 389 31.282 -103.8057 +US 79786 Toyahvale Texas TX Reeves 389 31.3833 -103.5566 +US 77950 Austwell Texas TX Refugio 391 28.4023 -96.853 +US 77990 Tivoli Texas TX Refugio 391 28.4587 -96.8928 +US 78340 Bayside Texas TX Refugio 391 28.0968 -97.2106 +US 78377 Refugio Texas TX Refugio 391 28.3169 -97.2767 +US 78393 Woodsboro Texas TX Refugio 391 28.2232 -97.3192 +US 79059 Miami Texas TX Roberts 393 35.7193 -100.7027 +US 76629 Bremond Texas TX Robertson 395 31.156 -96.6697 +US 77837 Calvert Texas TX Robertson 395 30.9782 -96.6711 +US 77856 Franklin Texas TX Robertson 395 31.0001 -96.5171 +US 77859 Hearne Texas TX Robertson 395 30.8669 -96.5843 +US 77867 Mumford Texas TX Robertson 395 30.7662 -96.5786 +US 77870 New Baden Texas TX Robertson 395 31.0593 -96.3994 +US 77882 Wheelock Texas TX Robertson 395 30.9121 -96.4211 +US 75032 Rockwall Texas TX Rockwall 397 32.886 -96.4095 +US 75087 Rockwall Texas TX Rockwall 397 32.9492 -96.4418 +US 75132 Fate Texas TX Rockwall 397 32.9411 -96.3828 +US 75189 Royse City Texas TX Rockwall 397 32.9628 -96.3648 +US 76821 Ballinger Texas TX Runnels 399 31.7468 -99.9589 +US 76861 Miles Texas TX Runnels 399 31.6121 -100.1823 +US 76865 Norton Texas TX Runnels 399 31.8795 -100.1315 +US 76875 Rowena Texas TX Runnels 399 31.6436 -100.0191 +US 79566 Wingate Texas TX Runnels 399 32.0318 -100.1183 +US 79567 Winters Texas TX Runnels 399 31.962 -99.9551 +US 75652 Henderson Texas TX Rusk 401 32.2131 -94.7834 +US 75653 Henderson Texas TX Rusk 401 32.2047 -94.8845 +US 75654 Henderson Texas TX Rusk 401 32.126 -94.7488 +US 75658 Joinerville Texas TX Rusk 401 32.1959 -94.9065 +US 75666 Laird Hill Texas TX Rusk 401 32.3019 -94.9288 +US 75667 Laneville Texas TX Rusk 401 31.9508 -94.866 +US 75680 Minden Texas TX Rusk 401 32.0028 -94.7129 +US 75681 Mount Enterprise Texas TX Rusk 401 31.9125 -94.6235 +US 75682 New London Texas TX Rusk 401 32.2542 -94.9322 +US 75684 Overton Texas TX Rusk 401 32.269 -94.9529 +US 75687 Price Texas TX Rusk 401 32.1518 -94.9554 +US 75689 Selman City Texas TX Rusk 401 32.1826 -94.9355 +US 75691 Tatum Texas TX Rusk 401 32.3266 -94.596 +US 75930 Bronson Texas TX Sabine 403 31.3391 -93.9993 +US 75931 Brookeland Texas TX Sabine 403 31.0922 -93.9684 +US 75947 Geneva Texas TX Sabine 403 31.3731 -93.8219 +US 75948 Hemphill Texas TX Sabine 403 31.3161 -93.7905 +US 75959 Milam Texas TX Sabine 403 31.5033 -93.8778 +US 75968 Pineland Texas TX Sabine 403 31.2418 -93.9754 +US 75929 Broaddus Texas TX San Augustine 405 31.2952 -94.2156 +US 75972 San Augustine Texas TX San Augustine 405 31.5152 -94.1326 +US 77331 Coldspring Texas TX San Jacinto 407 30.6027 -95.1086 +US 77359 Oakhurst Texas TX San Jacinto 407 30.7126 -95.3095 +US 77364 Pointblank Texas TX San Jacinto 407 30.7593 -95.2295 +US 77371 Shepherd Texas TX San Jacinto 407 30.4834 -95.0929 +US 78335 Aransas Pass Texas TX San Patricio 409 27.9125 -97.1884 +US 78336 Aransas Pass Texas TX San Patricio 409 27.9095 -97.1591 +US 78352 Edroy Texas TX San Patricio 409 27.9906 -97.6898 +US 78359 Gregory Texas TX San Patricio 409 27.9326 -97.2959 +US 78362 Ingleside Texas TX San Patricio 409 27.8682 -97.2069 +US 78368 Mathis Texas TX San Patricio 409 28.0802 -97.8097 +US 78370 Odem Texas TX San Patricio 409 27.9403 -97.5838 +US 78374 Portland Texas TX San Patricio 409 27.8935 -97.3169 +US 78387 Sinton Texas TX San Patricio 409 28.0339 -97.5196 +US 78390 Taft Texas TX San Patricio 409 27.9765 -97.3966 +US 76832 Cherokee Texas TX San Saba 411 30.9806 -98.6633 +US 76871 Richland Springs Texas TX San Saba 411 31.3003 -98.9128 +US 76877 San Saba Texas TX San Saba 411 31.1627 -98.7309 +US 76936 Eldorado Texas TX Schleicher 413 30.8667 -100.5889 +US 79516 Dunn Texas TX Scurry 415 32.7477 -100.9153 +US 79517 Fluvanna Texas TX Scurry 415 32.853 -101.103 +US 79526 Hermleigh Texas TX Scurry 415 32.6294 -100.7547 +US 79527 Ira Texas TX Scurry 415 32.5923 -101.0715 +US 79549 Snyder Texas TX Scurry 415 32.7451 -100.9175 +US 79550 Snyder Texas TX Scurry 415 32.7477 -100.9153 +US 76430 Albany Texas TX Shackelford 417 32.719 -99.3196 +US 76464 Moran Texas TX Shackelford 417 32.5549 -99.1656 +US 75935 Center Texas TX Shelby 419 31.7865 -94.1869 +US 75954 Joaquin Texas TX Shelby 419 31.944 -94.0608 +US 75973 Shelbyville Texas TX Shelby 419 31.7131 -93.9698 +US 75974 Tenaha Texas TX Shelby 419 31.9408 -94.2488 +US 75975 Timpson Texas TX Shelby 419 31.8841 -94.3967 +US 73960 Texhoma Texas TX Sherman 421 36.5055 -101.7829 +US 79084 Stratford Texas TX Sherman 421 36.3335 -101.9886 +US 75701 Tyler Texas TX Smith 423 32.3254 -95.2922 +US 75702 Tyler Texas TX Smith 423 32.362 -95.3117 +US 75703 Tyler Texas TX Smith 423 32.2768 -95.3031 +US 75704 Tyler Texas TX Smith 423 32.3738 -95.407 +US 75705 Tyler Texas TX Smith 423 32.3766 -95.1252 +US 75706 Tyler Texas TX Smith 423 32.4441 -95.331 +US 75707 Tyler Texas TX Smith 423 32.3038 -95.1927 +US 75708 Tyler Texas TX Smith 423 32.419 -95.2106 +US 75709 Tyler Texas TX Smith 423 32.3078 -95.3956 +US 75710 Tyler Texas TX Smith 423 32.3475 -95.3065 +US 75711 Tyler Texas TX Smith 423 32.5399 -95.42 +US 75712 Tyler Texas TX Smith 423 32.4112 -95.2899 +US 75713 Tyler Texas TX Smith 423 32.4112 -95.2899 +US 75750 Arp Texas TX Smith 423 32.2418 -95.0639 +US 75757 Bullard Texas TX Smith 423 32.1095 -95.3342 +US 75762 Flint Texas TX Smith 423 32.2079 -95.3948 +US 75771 Lindale Texas TX Smith 423 32.5062 -95.4006 +US 75789 Troup Texas TX Smith 423 32.1117 -95.1155 +US 75791 Whitehouse Texas TX Smith 423 32.222 -95.2266 +US 75792 Winona Texas TX Smith 423 32.4662 -95.1246 +US 75798 Tyler Texas TX Smith 423 32.4112 -95.2899 +US 75799 Tyler Texas TX Smith 423 32.4112 -95.2899 +US 76043 Glen Rose Texas TX Somervell 425 32.2298 -97.7629 +US 76070 Nemo Texas TX Somervell 425 32.2713 -97.6567 +US 76077 Rainbow Texas TX Somervell 425 32.2812 -97.7065 +US 78536 Delmita Texas TX Starr 427 26.4214 -98.8488 +US 78545 Falcon Heights Texas TX Starr 427 26.562 -99.1335 +US 78547 Garciasville Texas TX Starr 427 26.3396 -98.6876 +US 78548 Grulla Texas TX Starr 427 26.2897 -98.6479 +US 78582 Rio Grande City Texas TX Starr 427 26.3942 -98.8104 +US 78584 Roma Texas TX Starr 427 26.4215 -99.0025 +US 78585 Salineno Texas TX Starr 427 26.5104 -98.7464 +US 78588 San Isidro Texas TX Starr 427 26.7342 -98.4819 +US 78591 Santa Elena Texas TX Starr 427 26.5808 -98.5138 +US 76424 Breckenridge Texas TX Stephens 429 32.7532 -98.9099 +US 76429 Caddo Texas TX Stephens 429 32.6886 -98.659 +US 76951 Sterling City Texas TX Sterling 431 31.8351 -101.0017 +US 79502 Aspermont Texas TX Stonewall 433 33.1301 -100.2344 +US 79540 Old Glory Texas TX Stonewall 433 33.1786 -100.0502 +US 76950 Sonora Texas TX Sutton 435 30.5558 -100.6307 +US 79042 Happy Texas TX Swisher 437 34.7219 -101.8256 +US 79052 Kress Texas TX Swisher 437 34.3737 -101.737 +US 79088 Tulia Texas TX Swisher 437 34.5583 -101.8039 +US 76000 Arlington Texas TX Tarrant County 439 32.6945 -97.1275 +US 76001 Arlington Texas TX Tarrant 439 32.6289 -97.1517 +US 76002 Arlington Texas TX Tarrant 439 32.6255 -97.0784 +US 76003 Arlington Texas TX Tarrant 439 32.7417 -97.2253 +US 76004 Arlington Texas TX Tarrant 439 32.7714 -97.2915 +US 76005 Arlington Texas TX Tarrant 439 32.7714 -97.2915 +US 76006 Arlington Texas TX Tarrant 439 32.7785 -97.0834 +US 76007 Arlington Texas TX Tarrant 439 32.7714 -97.2915 +US 76010 Arlington Texas TX Tarrant 439 32.7204 -97.0826 +US 76011 Arlington Texas TX Tarrant 439 32.7582 -97.1003 +US 76012 Arlington Texas TX Tarrant 439 32.754 -97.1348 +US 76013 Arlington Texas TX Tarrant 439 32.7199 -97.1442 +US 76014 Arlington Texas TX Tarrant 439 32.6954 -97.0876 +US 76015 Arlington Texas TX Tarrant 439 32.6931 -97.1347 +US 76016 Arlington Texas TX Tarrant 439 32.6889 -97.1905 +US 76017 Arlington Texas TX Tarrant 439 32.6555 -97.1599 +US 76018 Arlington Texas TX Tarrant 439 32.6548 -97.092 +US 76019 Arlington Texas TX Tarrant 439 32.7714 -97.2915 +US 76020 Azle Texas TX Tarrant 439 32.9035 -97.5412 +US 76021 Bedford Texas TX Tarrant 439 32.8536 -97.1358 +US 76022 Bedford Texas TX Tarrant 439 32.8297 -97.1454 +US 76034 Colleyville Texas TX Tarrant 439 32.8872 -97.146 +US 76036 Crowley Texas TX Tarrant 439 32.5814 -97.3703 +US 76039 Euless Texas TX Tarrant 439 32.8582 -97.0832 +US 76040 Euless Texas TX Tarrant 439 32.8264 -97.0972 +US 76051 Grapevine Texas TX Tarrant 439 32.9328 -97.0808 +US 76052 Haslet Texas TX Tarrant 439 32.9557 -97.3372 +US 76053 Hurst Texas TX Tarrant 439 32.8211 -97.1756 +US 76054 Hurst Texas TX Tarrant 439 32.8558 -97.1755 +US 76060 Kennedale Texas TX Tarrant 439 32.6432 -97.2139 +US 76063 Mansfield Texas TX Tarrant 439 32.5773 -97.1416 +US 76092 Southlake Texas TX Tarrant 439 32.9485 -97.1524 +US 76094 Arlington Texas TX Tarrant 439 32.7714 -97.2915 +US 76095 Bedford Texas TX Tarrant 439 32.7714 -97.2915 +US 76096 Arlington Texas TX Tarrant 439 32.7714 -97.2915 +US 76099 Grapevine Texas TX Tarrant 439 32.7714 -97.2915 +US 76101 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76102 Fort Worth Texas TX Tarrant 439 32.7589 -97.328 +US 76103 Fort Worth Texas TX Tarrant 439 32.747 -97.2604 +US 76104 Fort Worth Texas TX Tarrant 439 32.7256 -97.3184 +US 76105 Fort Worth Texas TX Tarrant 439 32.7233 -97.269 +US 76106 Fort Worth Texas TX Tarrant 439 32.7968 -97.356 +US 76107 Fort Worth Texas TX Tarrant 439 32.7392 -97.3852 +US 76108 Fort Worth Texas TX Tarrant 439 32.7822 -97.4969 +US 76109 Fort Worth Texas TX Tarrant 439 32.7002 -97.3789 +US 76110 Fort Worth Texas TX Tarrant 439 32.7065 -97.3375 +US 76111 Fort Worth Texas TX Tarrant 439 32.7824 -97.3003 +US 76112 Fort Worth Texas TX Tarrant 439 32.7493 -97.2181 +US 76113 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76114 Fort Worth Texas TX Tarrant 439 32.7796 -97.3928 +US 76115 Fort Worth Texas TX Tarrant 439 32.6796 -97.3336 +US 76116 Fort Worth Texas TX Tarrant 439 32.723 -97.4483 +US 76117 Haltom City Texas TX Tarrant 439 32.8087 -97.2709 +US 76118 Fort Worth Texas TX Tarrant 439 32.8013 -97.1952 +US 76119 Fort Worth Texas TX Tarrant 439 32.6914 -97.2675 +US 76120 Fort Worth Texas TX Tarrant 439 32.7639 -97.1781 +US 76121 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76122 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76123 Fort Worth Texas TX Tarrant 439 32.6254 -97.3658 +US 76124 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76126 Fort Worth Texas TX Tarrant 439 32.64 -97.5448 +US 76127 Naval Air Station/ Jrb Texas TX Tarrant 439 32.7771 -97.4301 +US 76129 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76130 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76131 Fort Worth Texas TX Tarrant 439 32.8632 -97.3377 +US 76132 Fort Worth Texas TX Tarrant 439 32.6711 -97.4056 +US 76133 Fort Worth Texas TX Tarrant 439 32.6526 -97.3758 +US 76134 Fort Worth Texas TX Tarrant 439 32.6469 -97.3325 +US 76135 Fort Worth Texas TX Tarrant 439 32.8248 -97.4519 +US 76136 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76137 Fort Worth Texas TX Tarrant 439 32.8664 -97.2891 +US 76140 Fort Worth Texas TX Tarrant 439 32.6192 -97.2735 +US 76147 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76148 Fort Worth Texas TX Tarrant 439 32.8621 -97.2508 +US 76150 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76155 Fort Worth Texas TX Tarrant 439 32.8247 -97.0503 +US 76161 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76162 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76163 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76164 Fort Worth Texas TX Tarrant 439 32.7811 -97.3546 +US 76166 Fort Worth Texas TX Tarrant County 439 32.7539 -97.3362 +US 76177 Fort Worth Texas TX Tarrant 439 32.9448 -97.3124 +US 76178 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76179 Fort Worth Texas TX Tarrant 439 32.9074 -97.4257 +US 76180 North Richland Hills Texas TX Tarrant 439 32.84 -97.225 +US 76181 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76182 North Richland Hills Texas TX Tarrant 439 32.8828 -97.2098 +US 76185 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76191 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76192 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76193 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76195 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76196 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76197 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76198 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76199 Fort Worth Texas TX Tarrant 439 32.7714 -97.2915 +US 76244 Keller Texas TX Tarrant 439 32.931 -97.2843 +US 76248 Keller Texas TX Tarrant 439 32.9276 -97.2489 +US 79508 Buffalo Gap Texas TX Taylor 441 32.2894 -99.8103 +US 79530 Lawn Texas TX Taylor 441 32.136 -99.7351 +US 79536 Merkel Texas TX Taylor 441 32.4444 -99.9924 +US 79541 Ovalo Texas TX Taylor 441 32.1553 -99.8229 +US 79561 Trent Texas TX Taylor 441 32.4898 -100.1195 +US 79562 Tuscola Texas TX Taylor 441 32.235 -99.8244 +US 79563 Tye Texas TX Taylor 441 32.4477 -99.8684 +US 79601 Abilene Texas TX Taylor 441 32.4682 -99.7182 +US 79602 Abilene Texas TX Taylor 441 32.4178 -99.7214 +US 79603 Abilene Texas TX Taylor 441 32.4679 -99.7619 +US 79604 Abilene Texas TX Taylor 441 32.4288 -99.7952 +US 79605 Abilene Texas TX Taylor 441 32.432 -99.7724 +US 79606 Abilene Texas TX Taylor 441 32.392 -99.7746 +US 79607 Dyess Afb Texas TX Taylor 441 32.419 -99.8221 +US 79608 Abilene Texas TX Taylor 441 32.3021 -99.8907 +US 79697 Abilene Texas TX Taylor 441 32.3021 -99.8907 +US 79698 Abilene Texas TX Taylor 441 32.4751 -99.7348 +US 79699 Abilene Texas TX Taylor 441 32.4665 -99.7117 +US 78851 Dryden Texas TX Terrell 443 30.2186 -102.1066 +US 79848 Sanderson Texas TX Terrell 443 30.1221 -102.3974 +US 79316 Brownfield Texas TX Terry 445 33.1698 -102.2762 +US 79345 Meadow Texas TX Terry 445 33.3321 -102.2492 +US 79378 Wellman Texas TX Terry 445 33.0473 -102.4282 +US 76359 Elbert Texas TX Throckmorton County 447 33.0157 -99.0552 +US 76483 Throckmorton Texas TX Throckmorton 447 33.1794 -99.1838 +US 76491 Woodson Texas TX Throckmorton 447 33.0741 -99.0546 +US 75455 Mount Pleasant Texas TX Titus 449 33.1733 -94.9695 +US 75456 Mount Pleasant Texas TX Titus 449 33.1904 -94.9675 +US 75493 Winfield Texas TX Titus 449 33.1666 -95.109 +US 75558 Cookville Texas TX Titus 449 33.2432 -94.8747 +US 76886 Veribest Texas TX Tom Green 451 31.3493 -100.4949 +US 76901 San Angelo Texas TX Tom Green 451 31.4782 -100.4818 +US 76902 San Angelo Texas TX Tom Green 451 31.3958 -100.6896 +US 76903 San Angelo Texas TX Tom Green 451 31.4707 -100.4386 +US 76904 San Angelo Texas TX Tom Green 451 31.4194 -100.48 +US 76905 San Angelo Texas TX Tom Green 451 31.4647 -100.39 +US 76906 San Angelo Texas TX Tom Green 451 31.3728 -100.4951 +US 76908 Goodfellow Afb Texas TX Tom Green 451 31.4321 -100.4022 +US 76909 San Angelo Texas TX Tom Green 451 31.3958 -100.6896 +US 76934 Carlsbad Texas TX Tom Green 451 31.6266 -100.6694 +US 76935 Christoval Texas TX Tom Green 451 31.2346 -100.5203 +US 76939 Knickerbocker Texas TX Tom Green 451 31.2501 -100.592 +US 76940 Mereta Texas TX Tom Green 451 31.4518 -100.1349 +US 76955 Vancourt Texas TX Tom Green 451 31.3132 -100.1328 +US 76957 Wall Texas TX Tom Green 451 31.3598 -100.2067 +US 76958 Water Valley Texas TX Tom Green 451 31.6453 -100.716 +US 73301 Austin Texas TX Travis 453 30.3264 -97.7713 +US 73344 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78617 Del Valle Texas TX Travis 453 30.1745 -97.6134 +US 78645 Leander Texas TX Travis 453 30.449 -97.9669 +US 78651 Mc Neil Texas TX Travis 453 30.3264 -97.7713 +US 78652 Manchaca Texas TX Travis 453 30.1238 -97.8393 +US 78653 Manor Texas TX Travis 453 30.3388 -97.5323 +US 78660 Pflugerville Texas TX Travis 453 30.4421 -97.6299 +US 78669 Spicewood Texas TX Travis 453 30.3899 -98.0539 +US 78691 Pflugerville Texas TX Travis 453 30.3264 -97.7713 +US 78701 Austin Texas TX Travis 453 30.2713 -97.7426 +US 78702 Austin Texas TX Travis 453 30.2638 -97.7166 +US 78703 Austin Texas TX Travis 453 30.2907 -97.7648 +US 78704 Austin Texas TX Travis 453 30.2428 -97.7658 +US 78705 Austin Texas TX Travis 453 30.2896 -97.7396 +US 78708 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78709 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78710 Austin Texas TX Travis 453 30.352 -97.7151 +US 78711 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78712 Austin Texas TX Travis 453 30.2852 -97.7354 +US 78713 Austin Texas TX Travis 453 30.4686 -97.8433 +US 78714 Austin Texas TX Travis 453 30.3358 -97.4438 +US 78715 Austin Texas TX Travis 453 30.4501 -97.4865 +US 78716 Austin Texas TX Travis 453 30.3162 -97.8588 +US 78718 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78719 Austin Texas TX Travis 453 30.1802 -97.6667 +US 78720 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78721 Austin Texas TX Travis 453 30.2721 -97.6868 +US 78722 Austin Texas TX Travis 453 30.2893 -97.715 +US 78723 Austin Texas TX Travis 453 30.3085 -97.6849 +US 78724 Austin Texas TX Travis 453 30.296 -97.6396 +US 78725 Austin Texas TX Travis 453 30.2562 -97.6243 +US 78726 Austin Texas TX Travis 453 30.43 -97.8326 +US 78727 Austin Texas TX Travis 453 30.4254 -97.7195 +US 78728 Austin Texas TX Travis 453 30.4417 -97.6811 +US 78730 Austin Texas TX Travis 453 30.3607 -97.8241 +US 78731 Austin Texas TX Travis 453 30.3471 -97.7609 +US 78732 Austin Texas TX Travis 453 30.3752 -97.9007 +US 78733 Austin Texas TX Travis 453 30.3314 -97.8666 +US 78734 Austin Texas TX Travis 453 30.3705 -97.9427 +US 78735 Austin Texas TX Travis 453 30.249 -97.8414 +US 78736 Austin Texas TX Travis 453 30.2444 -97.916 +US 78737 Austin Texas TX Travis 453 30.2107 -97.9427 +US 78738 Austin Texas TX Travis 453 30.3337 -97.9824 +US 78739 Austin Texas TX Travis 453 30.172 -97.8784 +US 78741 Austin Texas TX Travis 453 30.2315 -97.7223 +US 78742 Austin Texas TX Travis 453 30.2313 -97.6703 +US 78744 Austin Texas TX Travis 453 30.1876 -97.7472 +US 78745 Austin Texas TX Travis 453 30.2063 -97.7956 +US 78746 Austin Texas TX Travis 453 30.2971 -97.8181 +US 78747 Austin Texas TX Travis 453 30.1204 -97.7433 +US 78748 Austin Texas TX Travis 453 30.1743 -97.8225 +US 78749 Austin Texas TX Travis 453 30.2166 -97.8508 +US 78750 Austin Texas TX Travis 453 30.4224 -97.7967 +US 78751 Austin Texas TX Travis 453 30.3093 -97.7242 +US 78752 Austin Texas TX Travis 453 30.3316 -97.7004 +US 78753 Austin Texas TX Travis 453 30.3649 -97.6827 +US 78754 Austin Texas TX Travis 453 30.3423 -97.6673 +US 78755 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78756 Austin Texas TX Travis 453 30.3223 -97.739 +US 78757 Austin Texas TX Travis 453 30.3437 -97.7316 +US 78758 Austin Texas TX Travis 453 30.3764 -97.7078 +US 78759 Austin Texas TX Travis 453 30.4036 -97.7526 +US 78760 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78761 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78762 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78763 Austin Texas TX Travis 453 30.3354 -97.5598 +US 78764 Austin Texas TX Travis 453 30.4455 -97.6595 +US 78765 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78766 Austin Texas TX Travis 453 30.4422 -97.6233 +US 78767 Austin Texas TX Travis 453 30.222 -97.8963 +US 78768 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78769 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78771 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78772 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78773 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78774 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78778 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78779 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78780 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78781 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78782 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78783 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78785 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78786 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78787 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78788 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78789 Austin Texas TX Travis 453 30.3264 -97.7713 +US 78798 Austin Texas TX Travis County 453 30.3718 -97.6826 +US 78799 Austin Texas TX Travis County 453 30.2962 -97.757 +US 75834 Centralia Texas TX Trinity 455 31.1058 -95.1388 +US 75845 Groveton Texas TX Trinity 455 31.0651 -95.0969 +US 75856 Pennington Texas TX Trinity 455 31.1953 -95.2469 +US 75862 Trinity Texas TX Trinity 455 30.942 -95.3403 +US 75865 Woodlake Texas TX Trinity 455 31.1058 -95.1388 +US 75926 Apple Springs Texas TX Trinity 455 31.2269 -94.9812 +US 75936 Chester Texas TX Tyler 457 30.9447 -94.5554 +US 75938 Colmesneil Texas TX Tyler 457 30.9007 -94.3916 +US 75942 Doucette Texas TX Tyler 457 30.8173 -94.3979 +US 75979 Woodville Texas TX Tyler 457 30.7585 -94.3669 +US 75990 Woodville Texas TX Tyler 457 30.7927 -94.3545 +US 77616 Fred Texas TX Tyler 457 30.5678 -94.18 +US 77624 Hillister Texas TX Tyler 457 30.675 -94.3534 +US 77660 Spurger Texas TX Tyler 457 30.6387 -94.1663 +US 77664 Warren Texas TX Tyler 457 30.5978 -94.412 +US 75340 Dallas Texas TX Upshur County 459 32.7699 -96.8641 +US 75640 Diana Texas TX Upshur 459 32.7698 -94.7032 +US 75644 Gilmer Texas TX Upshur 459 32.7246 -94.9714 +US 75645 Gilmer Texas TX Upshur 459 32.6044 -94.8491 +US 75683 Ore City Texas TX Upshur 459 32.7856 -94.7514 +US 75755 Big Sandy Texas TX Upshur 459 32.6168 -95.088 +US 75797 Big Sandy Texas TX Upshur County 459 32.5765 -95.1313 +US 79752 Mc Camey Texas TX Upton 461 31.1319 -102.2153 +US 79755 Midkiff Texas TX Upton 461 31.5424 -101.9244 +US 79778 Rankin Texas TX Upton 461 31.2266 -101.9441 +US 78801 Uvalde Texas TX Uvalde 463 29.2172 -99.7931 +US 78802 Uvalde Texas TX Uvalde 463 29.2237 -99.7794 +US 78838 Concan Texas TX Uvalde 463 29.5474 -99.7128 +US 78870 Knippa Texas TX Uvalde 463 29.2911 -99.6372 +US 78881 Sabinal Texas TX Uvalde 463 29.3267 -99.4781 +US 78884 Utopia Texas TX Uvalde 463 29.5972 -99.5585 +US 78835 Del Rio Texas TX Val Verde County 465 29.8489 -100.8824 +US 78837 Comstock Texas TX Val Verde 465 29.7484 -101.2628 +US 78840 Del Rio Texas TX Val Verde 465 29.4102 -100.8932 +US 78841 Del Rio Texas TX Val Verde 465 29.3465 -100.9289 +US 78842 Del Rio Texas TX Val Verde 465 29.412 -100.9342 +US 78843 Laughlin A F B Texas TX Val Verde 465 29.3564 -100.7927 +US 78847 Del Rio Texas TX Val Verde 465 29.7632 -101.23 +US 78871 Langtry Texas TX Val Verde 465 29.7632 -101.23 +US 75103 Canton Texas TX Van Zandt 467 32.5143 -95.9047 +US 75117 Edgewood Texas TX Van Zandt 467 32.7003 -95.878 +US 75127 Fruitvale Texas TX Van Zandt 467 32.677 -95.7899 +US 75140 Grand Saline Texas TX Van Zandt 467 32.6635 -95.7064 +US 75169 Wills Point Texas TX Van Zandt 467 32.7283 -96.0079 +US 75754 Ben Wheeler Texas TX Van Zandt 467 32.4126 -95.6371 +US 75790 Van Texas TX Van Zandt 467 32.5283 -95.6545 +US 77901 Victoria Texas TX Victoria 469 28.809 -96.9993 +US 77902 Victoria Texas TX Victoria 469 28.9255 -97.1006 +US 77903 Victoria Texas TX Victoria 469 28.7949 -96.9741 +US 77904 Victoria Texas TX Victoria 469 28.8675 -96.999 +US 77905 Victoria Texas TX Victoria 469 28.7525 -97.0338 +US 77951 Bloomington Texas TX Victoria 469 28.6495 -96.8945 +US 77968 Inez Texas TX Victoria 469 28.8994 -96.8003 +US 77973 Mcfaddin Texas TX Victoria 469 28.5511 -97.0099 +US 77976 Nursery Texas TX Victoria 469 28.9543 -97.0906 +US 77977 Placedo Texas TX Victoria 469 28.6923 -96.8254 +US 77988 Telferner Texas TX Victoria 469 28.8538 -96.8774 +US 77320 Huntsville Texas TX Walker 471 30.847 -95.597 +US 77334 Dodge Texas TX Walker 471 30.772 -95.3838 +US 77340 Huntsville Texas TX Walker 471 30.6448 -95.5798 +US 77341 Huntsville Texas TX Walker 471 30.7142 -95.5508 +US 77342 Huntsville Texas TX Walker 471 30.7813 -95.5953 +US 77343 Huntsville Texas TX Walker 471 30.7813 -95.5953 +US 77344 Huntsville Texas TX Walker 471 30.7813 -95.5953 +US 77348 Huntsville Texas TX Walker 471 30.7813 -95.5953 +US 77349 Huntsville Texas TX Walker 471 30.7813 -95.5953 +US 77358 New Waverly Texas TX Walker 471 30.5354 -95.4532 +US 77367 Riverside Texas TX Walker 471 30.8476 -95.3904 +US 77423 Brookshire Texas TX Waller 473 29.8072 -95.9755 +US 77445 Hempstead Texas TX Waller 473 30.092 -96.0716 +US 77446 Prairie View Texas TX Waller 473 30.0836 -95.9866 +US 77466 Pattison Texas TX Waller 473 29.8173 -96.0073 +US 77484 Waller Texas TX Waller 473 30.071 -95.9253 +US 79719 Barstow Texas TX Ward 475 31.4639 -103.3971 +US 79742 Grandfalls Texas TX Ward 475 31.3459 -102.8568 +US 79756 Monahans Texas TX Ward 475 31.5813 -102.9003 +US 79777 Pyote Texas TX Ward 475 31.5387 -103.1267 +US 79779 Royalty Texas TX Ward 475 31.4594 -103.189 +US 79788 Wickett Texas TX Ward 475 31.5692 -103.0067 +US 77426 Chappell Hill Texas TX Washington 477 30.1833 -96.2347 +US 77833 Brenham Texas TX Washington 477 30.1774 -96.4028 +US 77834 Brenham Texas TX Washington 477 30.2313 -96.2904 +US 77835 Burton Texas TX Washington 477 30.1767 -96.5925 +US 77880 Washington Texas TX Washington 477 30.3182 -96.2249 +US 78040 Laredo Texas TX Webb 479 27.5155 -99.4986 +US 78041 Laredo Texas TX Webb 479 27.5569 -99.4907 +US 78042 Laredo Texas TX Webb 479 27.5655 -99.4768 +US 78043 Laredo Texas TX Webb 479 27.5879 -99.2176 +US 78044 Laredo Texas TX Webb 479 27.3637 -99.4819 +US 78045 Laredo Texas TX Webb 479 27.6357 -99.5923 +US 78046 Laredo Texas TX Webb 479 27.4047 -99.4743 +US 78049 Laredo Texas TX Webb 479 27.7321 -99.5051 +US 78344 Bruni Texas TX Webb 479 27.4295 -98.8385 +US 78369 Mirando City Texas TX Webb 479 27.445 -99.0011 +US 78371 Oilton Texas TX Webb 479 27.4685 -98.9586 +US 77420 Boling Texas TX Wharton 481 29.2529 -95.974 +US 77432 Danevang Texas TX Wharton 481 29.067 -96.1976 +US 77435 East Bernard Texas TX Wharton 481 29.4705 -96.1211 +US 77436 Egypt Texas TX Wharton 481 29.3758 -96.228 +US 77437 El Campo Texas TX Wharton 481 29.2008 -96.2743 +US 77443 Glen Flora Texas TX Wharton 481 29.3353 -96.1754 +US 77448 Hungerford Texas TX Wharton 481 29.4137 -96.0929 +US 77453 Lane City Texas TX Wharton 481 29.1704 -96.0142 +US 77454 Lissie Texas TX Wharton 481 29.5353 -96.2303 +US 77455 Louise Texas TX Wharton 481 29.1491 -96.3924 +US 77462 Newgulf Texas TX Wharton 481 29.2985 -96.2411 +US 77467 Pierce Texas TX Wharton 481 29.2052 -96.1369 +US 77488 Wharton Texas TX Wharton 481 29.3205 -96.0858 +US 79003 Allison Texas TX Wheeler 483 35.642 -100.092 +US 79011 Briscoe Texas TX Wheeler 483 35.5855 -100.1679 +US 79061 Mobeetie Texas TX Wheeler 483 35.5297 -100.4242 +US 79079 Shamrock Texas TX Wheeler 483 35.3153 -100.2722 +US 79096 Wheeler Texas TX Wheeler 483 35.4319 -100.2568 +US 76301 Wichita Falls Texas TX Wichita 485 33.9053 -98.4976 +US 76302 Wichita Falls Texas TX Wichita 485 33.8643 -98.494 +US 76303 Wichita Falls Texas TX Wichita County 485 33.9002 -98.4609 +US 76304 Wichita Falls Texas TX Wichita County 485 33.9319 -98.4992 +US 76305 Wichita Falls Texas TX Wichita 485 33.9995 -98.3938 +US 76306 Wichita Falls Texas TX Wichita 485 33.9519 -98.5145 +US 76307 Wichita Falls Texas TX Wichita 485 33.8777 -98.4946 +US 76308 Wichita Falls Texas TX Wichita 485 33.8633 -98.534 +US 76309 Wichita Falls Texas TX Wichita 485 33.8931 -98.5343 +US 76310 Wichita Falls Texas TX Wichita 485 33.8581 -98.5755 +US 76311 Sheppard Afb Texas TX Wichita 485 33.9824 -98.5088 +US 76354 Burkburnett Texas TX Wichita 485 34.086 -98.5708 +US 76360 Electra Texas TX Wichita 485 34.0362 -98.9155 +US 76367 Iowa Park Texas TX Wichita 485 33.9423 -98.6745 +US 76369 Kamay Texas TX Wichita 485 34.0234 -98.6877 +US 76364 Harrold Texas TX Wilbarger 487 34.0971 -99.0351 +US 76373 Oklaunion Texas TX Wilbarger 487 34.1456 -99.107 +US 76384 Vernon Texas TX Wilbarger 487 34.1491 -99.303 +US 76385 Vernon Texas TX Wilbarger 487 34.1464 -99.2141 +US 79247 Odell Texas TX Wilbarger 487 34.3452 -99.4196 +US 78561 Lasara Texas TX Willacy 489 26.5613 -97.43 +US 78569 Lyford Texas TX Willacy 489 26.4089 -97.7817 +US 78574 Mission Texas TX Willacy County 489 26.3189 -98.3701 +US 78580 Raymondville Texas TX Willacy 489 26.4792 -97.7967 +US 78590 San Perlita Texas TX Willacy 489 26.4555 -97.5858 +US 78594 Sebastian Texas TX Willacy 489 26.344 -97.8123 +US 78598 Port Mansfield Texas TX Willacy 489 26.543 -97.3743 +US 76527 Florence Texas TX Williamson 491 30.8076 -97.7812 +US 76530 Granger Texas TX Williamson 491 30.7398 -97.4451 +US 76537 Jarrell Texas TX Williamson 491 30.8119 -97.5942 +US 76573 Schwertner Texas TX Williamson 491 30.8055 -97.4705 +US 76574 Taylor Texas TX Williamson 491 30.5807 -97.4401 +US 76578 Thrall Texas TX Williamson 491 30.592 -97.2893 +US 78613 Cedar Park Texas TX Williamson 491 30.4772 -97.8176 +US 78615 Coupland Texas TX Williamson 491 30.4872 -97.3676 +US 78626 Georgetown Texas TX Williamson 491 30.633 -97.6707 +US 78627 Georgetown Texas TX Williamson 491 30.6736 -97.6461 +US 78628 Georgetown Texas TX Williamson 491 30.6411 -97.7511 +US 78630 Cedar Park Texas TX Williamson 491 30.6568 -97.6026 +US 78633 Georgetown Texas TX Williamson County 491 30.7177 -97.7543 +US 78634 Hutto Texas TX Williamson 491 30.5257 -97.5672 +US 78641 Leander Texas TX Williamson 491 30.5835 -97.8575 +US 78642 Liberty Hill Texas TX Williamson 491 30.663 -97.9316 +US 78646 Leander Texas TX Williamson 491 30.6568 -97.6026 +US 78664 Round Rock Texas TX Williamson 491 30.5145 -97.668 +US 78665 Round Rock Texas TX Williamson 491 30.5145 -97.668 +US 78673 Walburg Texas TX Williamson 491 30.7415 -97.5891 +US 78674 Weir Texas TX Williamson 491 30.6747 -97.5929 +US 78680 Round Rock Texas TX Williamson 491 30.6568 -97.6026 +US 78681 Round Rock Texas TX Williamson 491 30.5084 -97.7062 +US 78682 Round Rock Texas TX Williamson 491 30.6568 -97.6026 +US 78683 Round Rock Texas TX Williamson 491 30.6568 -97.6026 +US 78717 Austin Texas TX Williamson 491 30.506 -97.7472 +US 78729 Austin Texas TX Williamson 491 30.4521 -97.7688 +US 78114 Floresville Texas TX Wilson 493 29.1693 -98.1936 +US 78121 La Vernia Texas TX Wilson 493 29.3509 -98.113 +US 78143 Pandora Texas TX Wilson 493 29.2484 -97.8287 +US 78147 Poth Texas TX Wilson 493 29.0619 -98.0825 +US 78160 Stockdale Texas TX Wilson 493 29.2319 -97.9351 +US 78161 Sutherland Springs Texas TX Wilson 493 29.2888 -98.0509 +US 79745 Kermit Texas TX Winkler 495 31.855 -103.0913 +US 79789 Wink Texas TX Winkler 495 31.7527 -103.1561 +US 76023 Boyd Texas TX Wise 497 33.0594 -97.5868 +US 76071 Newark Texas TX Wise 497 33.007 -97.4923 +US 76073 Paradise Texas TX Wise 497 33.0826 -97.6974 +US 76078 Rhome Texas TX Wise 497 33.054 -97.4817 +US 76225 Alvord Texas TX Wise 497 33.3698 -97.6885 +US 76234 Decatur Texas TX Wise 497 33.2351 -97.574 +US 76246 Greenwood Texas TX Wise 497 33.407 -97.4716 +US 76267 Slidell Texas TX Wise 497 33.378 -97.3922 +US 76426 Bridgeport Texas TX Wise 497 33.187 -97.781 +US 76431 Chico Texas TX Wise 497 33.3193 -97.8031 +US 75444 Golden Texas TX Wood 499 32.7299 -95.5636 +US 75494 Winnsboro Texas TX Wood 499 32.9146 -95.2726 +US 75497 Yantis Texas TX Wood 499 32.9257 -95.5311 +US 75765 Hawkins Texas TX Wood 499 32.6439 -95.222 +US 75773 Mineola Texas TX Wood 499 32.6661 -95.487 +US 75783 Quitman Texas TX Wood 499 32.8049 -95.4302 +US 79323 Denver City Texas TX Yoakum 501 32.9711 -102.8313 +US 79355 Plains Texas TX Yoakum 501 33.1894 -102.8294 +US 79376 Tokio Texas TX Yoakum 501 33.1826 -102.5768 +US 76372 Newcastle Texas TX Young 503 33.1901 -98.7446 +US 76374 Olney Texas TX Young 503 33.3601 -98.7427 +US 76450 Graham Texas TX Young 503 33.0993 -98.5832 +US 76460 Loving Texas TX Young 503 33.2689 -98.5024 +US 76481 South Bend Texas TX Young 503 33.0052 -98.6892 +US 78067 San Ygnacio Texas TX Zapata 505 27.1583 -99.3202 +US 78076 Zapata Texas TX Zapata 505 26.8897 -99.2506 +US 78564 Lopeno Texas TX Zapata 505 26.9454 -99.204 +US 78829 Batesville Texas TX Zavala 507 28.9286 -99.6115 +US 78839 Crystal City Texas TX Zavala 507 28.687 -99.8264 +US 78872 La Pryor Texas TX Zavala 507 28.9488 -99.8507 +US 84713 Beaver Utah UT Beaver 001 38.2807 -112.6299 +US 84731 Greenville Utah UT Beaver 001 38.2356 -112.7833 +US 84751 Milford Utah UT Beaver 001 38.3311 -112.9934 +US 84752 Minersville Utah UT Beaver 001 38.2149 -112.9231 +US 84301 Bear River City Utah UT Box Elder 003 41.6093 -112.1241 +US 84302 Brigham City Utah UT Box Elder 003 41.5079 -112.0152 +US 84306 Collinston Utah UT Box Elder 003 41.7813 -112.0666 +US 84307 Corinne Utah UT Box Elder 003 41.545 -112.1514 +US 84309 Deweyville Utah UT Box Elder 003 41.6972 -112.0947 +US 84311 Fielding Utah UT Box Elder 003 41.8118 -112.119 +US 84312 Garland Utah UT Box Elder 003 41.7413 -112.1516 +US 84313 Grouse Creek Utah UT Box Elder 003 41.6297 -113.854 +US 84314 Honeyville Utah UT Box Elder 003 41.652 -112.105 +US 84316 Howell Utah UT Box Elder 003 41.7733 -112.3968 +US 84324 Mantua Utah UT Box Elder 003 41.4975 -111.9416 +US 84329 Park Valley Utah UT Box Elder 003 41.8551 -113.3478 +US 84330 Plymouth Utah UT Box Elder 003 41.8831 -112.1388 +US 84331 Portage Utah UT Box Elder 003 41.9062 -112.1806 +US 84334 Riverside Utah UT Box Elder 003 41.7868 -112.1467 +US 84336 Snowville Utah UT Box Elder 003 41.966 -112.7269 +US 84337 Tremonton Utah UT Box Elder 003 41.7016 -112.1813 +US 84340 Willard Utah UT Box Elder 003 41.3989 -112.0317 +US 84304 Cache Junction Utah UT Cache 005 41.8169 -111.9982 +US 84305 Clarkston Utah UT Cache 005 41.9188 -112.0486 +US 84308 Cornish Utah UT Cache 005 41.9443 -111.9733 +US 84318 Hyde Park Utah UT Cache 005 41.8 -111.8123 +US 84319 Hyrum Utah UT Cache 005 41.6311 -111.849 +US 84320 Lewiston Utah UT Cache 005 41.9701 -111.8768 +US 84321 Logan Utah UT Cache 005 41.747 -111.8226 +US 84322 Logan Utah UT Cache 005 41.6412 -111.8966 +US 84323 Logan Utah UT Cache 005 41.6843 -111.7838 +US 84325 Mendon Utah UT Cache 005 41.71 -111.9817 +US 84326 Millville Utah UT Cache 005 41.6759 -111.8185 +US 84327 Newton Utah UT Cache 005 41.9213 -112.0026 +US 84328 Paradise Utah UT Cache 005 41.56 -111.8297 +US 84332 Providence Utah UT Cache 005 41.7 -111.8123 +US 84333 Richmond Utah UT Cache 005 41.9282 -111.8069 +US 84335 Smithfield Utah UT Cache 005 41.8403 -111.8528 +US 84338 Trenton Utah UT Cache 005 41.9105 -111.934 +US 84339 Wellsville Utah UT Cache 005 41.6343 -111.9317 +US 84341 Logan Utah UT Cache 005 41.7759 -111.8068 +US 84501 Price Utah UT Carbon 007 39.602 -110.8081 +US 84520 East Carbon Utah UT Carbon 007 39.5461 -110.4113 +US 84526 Helper Utah UT Carbon 007 39.6737 -110.856 +US 84527 Hiawatha Utah UT Carbon 007 39.6408 -110.5607 +US 84529 Kenilworth Utah UT Carbon 007 39.6884 -110.8073 +US 84539 Sunnyside Utah UT Carbon 007 39.5347 -110.3988 +US 84542 Wellington Utah UT Carbon 007 39.5423 -110.735 +US 84023 Dutch John Utah UT Daggett 009 40.9322 -109.3543 +US 84046 Manila Utah UT Daggett 009 40.9685 -109.7235 +US 84010 Bountiful Utah UT Davis 011 40.8775 -111.8727 +US 84011 Bountiful Utah UT Davis 011 40.9635 -112.116 +US 84014 Centerville Utah UT Davis 011 40.9268 -111.877 +US 84015 Clearfield Utah UT Davis 011 41.1294 -112.0482 +US 84016 Clearfield Utah UT Davis 011 40.893 -111.8881 +US 84025 Farmington Utah UT Davis 011 40.9889 -111.8938 +US 84037 Kaysville Utah UT Davis 011 41.0375 -111.9326 +US 84040 Layton Utah UT Davis 011 41.0846 -111.9274 +US 84041 Layton Utah UT Davis 011 41.0879 -111.9704 +US 84054 North Salt Lake Utah UT Davis 011 40.8446 -111.9191 +US 84056 Hill Afb Utah UT Davis 011 41.1202 -111.9898 +US 84075 Syracuse Utah UT Davis 011 41.0864 -112.0451 +US 84087 Woods Cross Utah UT Davis 011 40.8874 -111.9027 +US 84089 Clearfield Utah UT Davis 011 40.9635 -112.116 +US 84001 Altamont Utah UT Duchesne 013 40.3514 -110.2754 +US 84002 Altonah Utah UT Duchesne 013 40.3207 -110.436 +US 84007 Bluebell Utah UT Duchesne 013 40.3125 -110.2298 +US 84012 Bridgeland Utah UT Duchesne County 013 40.2105 -110.2023 +US 84021 Duchesne Utah UT Duchesne 013 39.954 -110.6181 +US 84027 Fruitland Utah UT Duchesne 013 40.1575 -110.8226 +US 84031 Hanna Utah UT Duchesne 013 40.4501 -110.8097 +US 84051 Mountain Home Utah UT Duchesne 013 40.3922 -110.4291 +US 84052 Myton Utah UT Duchesne 013 40.194 -110.0481 +US 84053 Neola Utah UT Duchesne 013 40.45 -110.0181 +US 84066 Roosevelt Utah UT Duchesne 013 40.3102 -110.0108 +US 84072 Tabiona Utah UT Duchesne 013 40.3827 -110.7021 +US 84073 Talmage Utah UT Duchesne 013 40.3207 -110.436 +US 84513 Castle Dale Utah UT Emery 015 39.1964 -111.0529 +US 84516 Clawson Utah UT Emery 015 39.1198 -111.1008 +US 84518 Cleveland Utah UT Emery 015 39.3736 -110.8936 +US 84521 Elmo Utah UT Emery 015 39.4033 -110.81 +US 84522 Emery Utah UT Emery 015 38.9226 -111.2512 +US 84523 Ferron Utah UT Emery 015 39.0692 -111.1467 +US 84525 Green River Utah UT Emery 015 39.0002 -110.1598 +US 84528 Huntington Utah UT Emery 015 39.292 -110.9741 +US 84537 Orangeville Utah UT Emery 015 39.2302 -111.0518 +US 84712 Antimony Utah UT Garfield 017 38.1015 -111.993 +US 84716 Boulder Utah UT Garfield 017 37.9166 -111.4266 +US 84717 Bryce Canyon Utah UT Garfield 017 37.8448 -111.3082 +US 84718 Cannonville Utah UT Garfield 017 37.5396 -112.0451 +US 84726 Escalante Utah UT Garfield 017 37.7698 -111.6037 +US 84735 Hatch Utah UT Garfield 017 37.7175 -112.4777 +US 84736 Henrieville Utah UT Garfield 017 37.5503 -111.9961 +US 84759 Panguitch Utah UT Garfield 017 37.8078 -112.4369 +US 84764 Bryce Utah UT Garfield 017 37.6184 -112.1735 +US 84776 Tropic Utah UT Garfield 017 37.6261 -112.0836 +US 84515 Cisco Utah UT Grand 019 38.9999 -109.615 +US 84532 Moab Utah UT Grand 019 38.5677 -109.5271 +US 84540 Thompson Utah UT Grand 019 38.9999 -109.615 +US 84714 Beryl Utah UT Iron 021 37.9601 -113.6196 +US 84719 Brian Head Utah UT Iron 021 37.6985 -112.8437 +US 84720 Cedar City Utah UT Iron 021 37.5886 -113.1682 +US 84721 Cedar City Utah UT Iron 021 37.8788 -113.2045 +US 84742 Kanarraville Utah UT Iron 021 37.5228 -113.2036 +US 84753 Modena Utah UT Iron 021 37.7995 -113.9193 +US 84756 Newcastle Utah UT Iron 021 37.6924 -113.6272 +US 84760 Paragonah Utah UT Iron 021 37.8917 -112.774 +US 84761 Parowan Utah UT Iron 021 37.8449 -112.8323 +US 84772 Summit Utah UT Iron 021 37.8159 -112.9 +US 84628 Eureka Utah UT Juab 023 39.9541 -112.1174 +US 84639 Levan Utah UT Juab 023 39.5215 -111.9438 +US 84645 Mona Utah UT Juab 023 39.8382 -111.848 +US 84648 Nephi Utah UT Juab 023 39.6923 -111.8359 +US 84710 Alton Utah UT Kane 025 37.4699 -112.5484 +US 84729 Glendale Utah UT Kane 025 37.3219 -112.6035 +US 84741 Kanab Utah UT Kane 025 37.2653 -111.6872 +US 84755 Mount Carmel Utah UT Kane 025 37.2378 -112.67 +US 84758 Orderville Utah UT Kane 025 37.2744 -112.642 +US 84762 Duck Creek Village Utah UT Kane 025 37.5169 -112.6636 +US 84624 Delta Utah UT Millard 027 39.3755 -112.5319 +US 84631 Fillmore Utah UT Millard 027 38.9805 -112.3313 +US 84635 Hinckley Utah UT Millard 027 39.3308 -112.6716 +US 84636 Holden Utah UT Millard 027 39.0964 -112.2834 +US 84637 Kanosh Utah UT Millard 027 38.8318 -112.4561 +US 84638 Leamington Utah UT Millard 027 39.5302 -112.2952 +US 84640 Lynndyl Utah UT Millard 027 39.4943 -112.3979 +US 84644 Meadow Utah UT Millard 027 39.0643 -113.0321 +US 84649 Oak City Utah UT Millard 027 39.3729 -112.3288 +US 84650 Oasis Utah UT Millard 027 39.2902 -112.6281 +US 84656 Scipio Utah UT Millard 027 39.2495 -112.1064 +US 84728 Garrison Utah UT Millard 027 39.0744 -113.8949 +US 84018 Croydon Utah UT Morgan 029 41.0689 -111.5231 +US 84050 Morgan Utah UT Morgan 029 41.0678 -111.7163 +US 84723 Circleville Utah UT Piute 031 38.1827 -112.2329 +US 84732 Greenwich Utah UT Piute 031 38.4454 -111.9023 +US 84740 Junction Utah UT Piute 031 38.2439 -112.2237 +US 84743 Kingston Utah UT Piute 031 38.2158 -112.2049 +US 84750 Marysvale Utah UT Piute 031 38.4449 -112.2518 +US 84028 Garden City Utah UT Rich 033 41.9376 -111.407 +US 84038 Laketown Utah UT Rich 033 41.8107 -111.2689 +US 84064 Randolph Utah UT Rich 033 41.6563 -111.1856 +US 84086 Woodruff Utah UT Rich 033 41.4888 -111.1868 +US 84006 Bingham Canyon Utah UT Salt Lake 035 40.5646 -112.0977 +US 84020 Draper Utah UT Salt Lake 035 40.5046 -111.881 +US 84044 Magna Utah UT Salt Lake 035 40.7009 -112.0809 +US 84047 Midvale Utah UT Salt Lake 035 40.6152 -111.8851 +US 84065 Riverton Utah UT Salt Lake 035 40.4954 -111.9444 +US 84070 Sandy Utah UT Salt Lake 035 40.5794 -111.8816 +US 84081 West Jordan Utah UT Salt Lake 035 40.6037 -112.0411 5 +US 84084 West Jordan Utah UT Salt Lake 035 40.6254 -111.9677 +US 84088 West Jordan Utah UT Salt Lake 035 40.5959 -111.9644 +US 84090 Sandy Utah UT Salt Lake 035 40.6681 -111.9083 +US 84091 Sandy Utah UT Salt Lake 035 40.6681 -111.9083 +US 84092 Sandy Utah UT Salt Lake 035 40.5834 -111.7467 +US 84093 Sandy Utah UT Salt Lake 035 40.5927 -111.831 +US 84094 Sandy Utah UT Salt Lake 035 40.5688 -111.8617 +US 84095 South Jordan Utah UT Salt Lake 035 40.5541 -111.9539 +US 84096 Herriman Utah UT Salt Lake County 035 40.5144 -112.0325 +US 84101 Salt Lake City Utah UT Salt Lake 035 40.7559 -111.8967 +US 84102 Salt Lake City Utah UT Salt Lake 035 40.76 -111.8627 +US 84103 Salt Lake City Utah UT Salt Lake 035 40.7776 -111.8749 +US 84104 Salt Lake City Utah UT Salt Lake 035 40.7499 -111.926 +US 84105 Salt Lake City Utah UT Salt Lake 035 40.7372 -111.8581 +US 84106 Salt Lake City Utah UT Salt Lake 035 40.7056 -111.8548 +US 84107 Salt Lake City Utah UT Salt Lake 035 40.6568 -111.8904 +US 84108 Salt Lake City Utah UT Salt Lake 035 40.7371 -111.8258 +US 84109 Salt Lake City Utah UT Salt Lake 035 40.7043 -111.8142 +US 84110 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84111 Salt Lake City Utah UT Salt Lake 035 40.7548 -111.881 +US 84112 Salt Lake City Utah UT Salt Lake 035 40.7659 -111.8403 +US 84113 Salt Lake City Utah UT Salt Lake 035 40.7658 -111.8364 +US 84114 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84115 Salt Lake City Utah UT Salt Lake 035 40.7145 -111.8931 +US 84116 Salt Lake City Utah UT Salt Lake 035 40.7857 -111.9291 +US 84117 Salt Lake City Utah UT Salt Lake 035 40.6551 -111.834 +US 84118 Salt Lake City Utah UT Salt Lake 035 40.6504 -112.0054 +US 84119 Salt Lake City Utah UT Salt Lake 035 40.7016 -111.9461 +US 84120 Salt Lake City Utah UT Salt Lake 035 40.695 -112.0001 +US 84121 Salt Lake City Utah UT Salt Lake 035 40.6226 -111.7777 +US 84122 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84123 Salt Lake City Utah UT Salt Lake 035 40.6596 -111.9193 +US 84124 Salt Lake City Utah UT Salt Lake 035 40.6772 -111.8133 +US 84125 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84126 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84127 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84128 Salt Lake City Utah UT Salt Lake 035 40.6976 -112.0377 +US 84129 Salt Lake City Utah UT Salt Lake County 035 40.6531 -111.9674 +US 84130 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84131 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84132 Salt Lake City Utah UT Salt Lake 035 40.7727 -111.8385 +US 84133 Salt Lake City Utah UT Salt Lake 035 40.769 -111.8893 +US 84134 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84135 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84136 Salt Lake City Utah UT Salt Lake 035 40.7685 -111.8879 +US 84137 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84138 Salt Lake City Utah UT Salt Lake 035 40.6716 -111.7483 +US 84139 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84140 Salt Lake City Utah UT Salt Lake 035 40.7713 -111.9309 +US 84141 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84142 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84143 Salt Lake City Utah UT Salt Lake 035 40.7869 -111.9008 +US 84144 Salt Lake City Utah UT Salt Lake 035 40.7679 -111.8908 +US 84145 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84147 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84148 Salt Lake City Utah UT Salt Lake 035 40.7568 -111.8376 +US 84150 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84151 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84152 Salt Lake City Utah UT Salt Lake 035 40.7286 -111.6627 +US 84153 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84157 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84158 Salt Lake City Utah UT Salt Lake 035 40.769 -111.7621 +US 84165 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84170 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84171 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84180 Salt Lake City Utah UT Salt Lake 035 40.769 -111.9008 +US 84184 Salt Lake City Utah UT Salt Lake 035 40.6768 -111.9568 +US 84185 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84189 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84190 Salt Lake City Utah UT Salt Lake 035 40.6681 -111.9083 +US 84193 Salt Lake City Utah UT Salt Lake County 035 40.7439 -111.8918 +US 84194 Salt Lake City Utah UT Salt Lake County 035 40.7439 -111.8918 +US 84195 Salt Lake City Utah UT Salt Lake County 035 40.7439 -111.8918 +US 84199 Salt Lake City Utah UT Salt Lake 035 40.7259 -111.9394 +US 84510 Aneth Utah UT San Juan 037 37.7489 -110.2269 +US 84511 Blanding Utah UT San Juan 037 37.5863 -109.4866 +US 84512 Bluff Utah UT San Juan 037 37.6247 -109.4799 +US 84530 La Sal Utah UT San Juan 037 37.7489 -110.2269 +US 84531 Mexican Hat Utah UT San Juan 037 37.1184 -109.9919 +US 84533 Lake Powell Utah UT San Juan 037 37.7489 -110.2269 +US 84534 Montezuma Creek Utah UT San Juan 037 37.2539 -109.1061 +US 84535 Monticello Utah UT San Juan 037 37.9217 -109.3153 +US 84536 Monument Valley Utah UT San Juan 037 37.0614 -110.4273 +US 84621 Axtell Utah UT Sanpete 039 39.0532 -111.8243 +US 84622 Centerfield Utah UT Sanpete 039 39.1251 -111.8185 +US 84623 Chester Utah UT Sanpete 039 39.4943 -111.4932 +US 84627 Ephraim Utah UT Sanpete 039 39.36 -111.5823 +US 84629 Fairview Utah UT Sanpete 039 39.6453 -111.4953 +US 84630 Fayette Utah UT Sanpete 039 39.2315 -111.8497 +US 84632 Fountain Green Utah UT Sanpete 039 39.3926 -111.7293 +US 84634 Gunnison Utah UT Sanpete 039 39.1545 -111.8167 +US 84642 Manti Utah UT Sanpete 039 39.2354 -111.6514 +US 84643 Mayfield Utah UT Sanpete 039 39.1154 -111.6905 +US 84646 Moroni Utah UT Sanpete 039 39.5108 -111.5603 +US 84647 Mount Pleasant Utah UT Sanpete 039 39.5232 -111.5039 +US 84662 Spring City Utah UT Sanpete 039 39.4671 -111.4661 +US 84665 Sterling Utah UT Sanpete 039 39.1335 -111.7409 +US 84667 Wales Utah UT Sanpete 039 39.4884 -111.6341 +US 84620 Aurora Utah UT Sevier 041 38.959 -111.9044 +US 84652 Redmond Utah UT Sevier 041 38.9065 -111.9753 +US 84654 Salina Utah UT Sevier 041 38.956 -111.8811 +US 84657 Sigurd Utah UT Sevier 041 38.8482 -111.9737 +US 84701 Richfield Utah UT Sevier 041 38.7388 -112.0744 +US 84711 Annabella Utah UT Sevier 041 38.7168 -112.0657 +US 84724 Elsinore Utah UT Sevier 041 38.6753 -112.1489 +US 84730 Glenwood Utah UT Sevier 041 38.7667 -111.9628 +US 84739 Joseph Utah UT Sevier 041 38.6221 -112.2251 +US 84744 Koosharem Utah UT Sevier 041 38.7221 -111.8713 +US 84754 Monroe Utah UT Sevier 041 38.6578 -112.1261 +US 84766 Sevier Utah UT Sevier 041 38.5785 -112.3108 +US 84017 Coalville Utah UT Summit 043 40.8405 -111.3228 +US 84024 Echo Utah UT Summit 043 40.9892 -111.451 +US 84033 Henefer Utah UT Summit 043 41.0186 -111.5011 +US 84036 Kamas Utah UT Summit 043 40.6414 -111.2619 +US 84055 Oakley Utah UT Summit 043 40.7243 -111.2456 +US 84060 Park City Utah UT Summit 043 40.6524 -111.5018 +US 84061 Peoa Utah UT Summit 043 40.7209 -111.3025 +US 84068 Park City Utah UT Summit 043 40.668 -111.5054 +US 84098 Park City Utah UT Summit 043 40.7029 -111.5481 +US 84022 Dugway Utah UT Tooele 045 40.2708 -112.6898 +US 84029 Grantsville Utah UT Tooele 045 40.6005 -112.4618 +US 84034 Ibapah Utah UT Tooele 045 40.49 -113.0959 +US 84069 Rush Valley Utah UT Tooele 045 40.3566 -112.4659 +US 84071 Stockton Utah UT Tooele 045 40.4415 -112.3559 +US 84074 Tooele Utah UT Tooele 045 40.5454 -112.3002 +US 84080 Vernon Utah UT Tooele 045 40.0826 -112.426 +US 84083 Wendover Utah UT Tooele 045 40.7329 -113.9918 +US 84008 Bonanza Utah UT Uintah 047 40.4431 -109.5056 +US 84026 Fort Duchesne Utah UT Uintah 047 40.3014 -109.8637 +US 84030 Gusher Utah UT Uintah 047 40.1602 -109.5478 +US 84035 Jensen Utah UT Uintah 047 40.3787 -109.351 +US 84039 Lapoint Utah UT Uintah 047 40.4003 -109.8041 +US 84063 Randlett Utah UT Uintah 047 40.2186 -109.7301 +US 84076 Tridell Utah UT Uintah 047 40.4436 -109.8359 +US 84078 Vernal Utah UT Uintah 047 40.4406 -109.5469 +US 84079 Vernal Utah UT Uintah 047 40.1602 -109.5478 +US 84085 Whiterocks Utah UT Uintah 047 40.3748 -109.9112 +US 84003 American Fork Utah UT Utah 049 40.3928 -111.7941 +US 84004 Alpine Utah UT Utah 049 40.4616 -111.7689 +US 84005 Eagle Mountain Utah UT Utah County 049 40.3802 -111.991 +US 84013 Cedar Valley Utah UT Utah 049 40.2959 -112.0923 +US 84042 Lindon Utah UT Utah 049 40.3412 -111.7144 +US 84043 Lehi Utah UT Utah 049 40.3958 -111.8506 +US 84045 Saratoga Springs Utah UT Utah County 049 40.3495 -111.9043 +US 84057 Orem Utah UT Utah 049 40.3134 -111.6953 +US 84058 Orem Utah UT Utah 049 40.2818 -111.7209 +US 84059 Orem Utah UT Utah 049 40.177 -111.536 +US 84062 Pleasant Grove Utah UT Utah 049 40.372 -111.7333 +US 84097 Orem Utah UT Utah 049 40.2972 -111.6705 +US 84601 Provo Utah UT Utah 049 40.2319 -111.6755 +US 84602 Provo Utah UT Utah 049 40.3563 -111.7325 +US 84603 Provo Utah UT Utah 049 40.2039 -111.6261 +US 84604 Provo Utah UT Utah 049 40.2607 -111.6549 +US 84605 Provo Utah UT Utah 049 40.177 -111.536 +US 84606 Provo Utah UT Utah 049 40.2347 -111.6447 +US 84626 Elberta Utah UT Utah 049 40.177 -111.536 +US 84633 Goshen Utah UT Utah 049 40.0297 -111.7641 +US 84651 Payson Utah UT Utah 049 40.0449 -111.7321 +US 84653 Salem Utah UT Utah 049 40.0113 -111.5998 +US 84655 Santaquin Utah UT Utah 049 39.9737 -111.8037 +US 84660 Spanish Fork Utah UT Utah 049 40.1099 -111.6462 +US 84663 Springville Utah UT Utah 049 40.1625 -111.5987 +US 84664 Mapleton Utah UT Utah 049 40.1337 -111.5801 +US 84032 Heber City Utah UT Wasatch 051 40.4947 -111.4051 +US 84049 Midway Utah UT Wasatch 051 40.5093 -111.4776 +US 84082 Wallsburg Utah UT Wasatch 051 40.3657 -111.4649 +US 84722 Central Utah UT Washington 053 37.4669 -113.6248 +US 84725 Enterprise Utah UT Washington 053 37.5797 -113.6894 +US 84733 Gunlock Utah UT Washington 053 37.2877 -113.7606 +US 84737 Hurricane Utah UT Washington 053 37.1454 -113.3675 +US 84738 Ivins Utah UT Washington 053 37.179 -113.7066 +US 84745 La Verkin Utah UT Washington 053 37.2316 -113.2446 +US 84746 Leeds Utah UT Washington 053 37.2372 -113.3356 +US 84757 New Harmony Utah UT Washington 053 37.455 -113.268 +US 84763 Rockville Utah UT Washington 053 37.1601 -113.0425 +US 84765 Santa Clara Utah UT Washington 053 37.1282 -113.676 +US 84767 Springdale Utah UT Washington 053 37.1862 -113.0139 +US 84770 Saint George Utah UT Washington 053 37.3068 -113.3554 +US 84771 Saint George Utah UT Washington 053 37.3092 -113.4762 +US 84774 Toquerville Utah UT Washington 053 37.2377 -113.3323 +US 84779 Virgin Utah UT Washington 053 37.2022 -113.1854 +US 84780 Washington Utah UT Washington 053 37.1364 -113.505 +US 84781 Pine Valley Utah UT Washington 053 37.3898 -113.5177 +US 84782 Veyo Utah UT Washington 053 37.359 -113.6668 +US 84783 Dammeron Valley Utah UT Washington 053 37.2849 -113.6586 +US 84784 Hildale Utah UT Washington 053 37.0044 -112.9784 +US 84790 Saint George Utah UT Washington 053 37.0831 -113.5581 +US 84791 Saint George Utah UT Washington 053 37.3092 -113.4762 +US 84715 Bicknell Utah UT Wayne 055 38.3278 -111.5264 +US 84734 Hanksville Utah UT Wayne 055 38.2521 -110.8137 +US 84747 Loa Utah UT Wayne 055 38.4415 -111.5958 +US 84749 Lyman Utah UT Wayne 055 38.3987 -111.592 +US 84773 Teasdale Utah UT Wayne 055 38.2853 -111.4335 +US 84775 Torrey Utah UT Wayne 055 38.2969 -111.4138 +US 84067 Roy Utah UT Weber 057 41.1724 -112.0382 +US 84201 Ogden Utah UT Weber 057 41.2443 -112.0079 +US 84244 Ogden Utah UT Weber 057 41.2553 -111.9567 +US 84310 Eden Utah UT Weber 057 41.3303 -111.8558 +US 84315 Hooper Utah UT Weber 057 41.1668 -112.1364 +US 84317 Huntsville Utah UT Weber 057 41.2721 -111.7618 +US 84401 Ogden Utah UT Weber 057 41.2215 -111.9621 +US 84402 Ogden Utah UT Weber 057 41.2553 -111.9567 +US 84403 Ogden Utah UT Weber 057 41.1894 -111.9489 +US 84404 Ogden Utah UT Weber 057 41.2627 -111.9837 +US 84405 Ogden Utah UT Weber 057 41.1739 -111.9809 +US 84407 Ogden Utah UT Weber 057 41.2385 -111.9659 +US 84408 Ogden Utah UT Weber 057 41.1956 -111.9485 +US 84409 Ogden Utah UT Weber 057 41.2553 -111.9567 +US 84412 Ogden Utah UT Weber 057 41.2553 -111.9567 +US 84414 Ogden Utah UT Weber 057 41.3112 -111.9689 +US 84415 Ogden Utah UT Weber 057 41.2553 -111.9567 +US 23214 Richmond Virginia VA Accomack County 001 37.5593 -77.4471 +US 23301 Accomac Virginia VA Accomack 001 37.7159 -75.6803 +US 23302 Assawoman Virginia VA Accomack 001 37.8658 -75.5277 +US 23303 Atlantic Virginia VA Accomack 001 37.9073 -75.5089 +US 23306 Belle Haven Virginia VA Accomack 001 37.5645 -75.8694 +US 23308 Bloxom Virginia VA Accomack 001 37.8273 -75.6156 +US 23336 Chincoteague Island Virginia VA Accomack 001 37.9487 -75.4363 +US 23337 Wallops Island Virginia VA Accomack 001 37.9186 -75.4905 +US 23341 Craddockville Virginia VA Accomack 001 37.5773 -75.8646 +US 23345 Davis Wharf Virginia VA Accomack 001 37.7382 -75.7014 +US 23356 Greenbackville Virginia VA Accomack 001 38.0064 -75.4029 +US 23357 Greenbush Virginia VA Accomack 001 37.7681 -75.6664 +US 23358 Hacksneck Virginia VA Accomack 001 37.6393 -75.865 +US 23359 Hallwood Virginia VA Accomack 001 37.8837 -75.6041 +US 23389 Harborton Virginia VA Accomack 001 37.6562 -75.8488 +US 23395 Horntown Virginia VA Accomack 001 37.9699 -75.4716 +US 23396 Oak Hall Virginia VA Accomack 001 37.9237 -75.5551 +US 23399 Jenkins Bridge Virginia VA Accomack 001 37.9162 -75.6168 +US 23401 Keller Virginia VA Accomack 001 37.5966 -75.7893 +US 23403 Lee Mont Virginia VA Accomack County 001 37.7786 -75.6811 +US 23404 Locustville Virginia VA Accomack 001 37.6534 -75.6735 +US 23407 Mappsville Virginia VA Accomack 001 37.8389 -75.5634 +US 23409 Mears Virginia VA Accomack 001 37.8692 -75.6354 +US 23410 Melfa Virginia VA Accomack 001 37.6407 -75.7454 +US 23412 Modest Town Virginia VA Accomack 001 37.7904 -75.6035 +US 23414 Nelsonia Virginia VA Accomack 001 37.8169 -75.5832 +US 23415 New Church Virginia VA Accomack 001 37.9525 -75.5112 +US 23416 Oak Hall Virginia VA Accomack 001 37.9229 -75.5386 +US 23417 Onancock Virginia VA Accomack 001 37.7102 -75.7528 +US 23418 Onley Virginia VA Accomack 001 37.6704 -75.6992 +US 23420 Painter Virginia VA Accomack 001 37.5828 -75.8066 +US 23421 Parksley Virginia VA Accomack 001 37.7744 -75.6386 +US 23422 Pungoteague Virginia VA Accomack 001 37.6162 -75.7915 +US 23423 Quinby Virginia VA Accomack 001 37.5423 -75.7412 +US 23426 Sanford Virginia VA Accomack 001 37.9229 -75.6781 +US 23427 Saxis Virginia VA Accomack 001 37.9264 -75.722 +US 23440 Tangier Virginia VA Accomack 001 37.8245 -75.993 +US 23441 Tasley Virginia VA Accomack 001 37.7323 -75.6773 +US 23442 Temperanceville Virginia VA Accomack 001 37.8954 -75.5528 +US 23480 Wachapreague Virginia VA Accomack 001 37.6044 -75.6925 +US 23481 Carrsville Virginia VA Accomack County 001 36.709 -76.8702 +US 23483 Wattsville Virginia VA Accomack 001 37.9437 -75.5023 +US 23488 Withams Virginia VA Accomack 001 37.9482 -75.6019 +US 22901 Charlottesville Virginia VA Albemarle 003 38.0936 -78.5611 +US 22909 Charlottesville Virginia VA Albemarle 003 38.0245 -78.4482 +US 22911 Charlottesville Virginia VA Albemarle 003 38.0995 -78.4085 +US 22924 Batesville Virginia VA Albemarle 003 38.0013 -78.7271 +US 22929 Cobham Virginia VA Albemarle County 003 38.0362 -78.382 +US 22931 Covesville Virginia VA Albemarle 003 37.908 -78.7127 +US 22932 Crozet Virginia VA Albemarle 003 38.1296 -78.7106 +US 22936 Earlysville Virginia VA Albemarle 003 38.1578 -78.4919 +US 22937 Esmont Virginia VA Albemarle 003 37.8125 -78.6106 +US 22940 Free Union Virginia VA Albemarle 003 38.1944 -78.5849 +US 22943 Greenwood Virginia VA Albemarle 003 38.0415 -78.7833 +US 22945 Ivy Virginia VA Albemarle 003 38.0654 -78.5958 +US 22946 Keene Virginia VA Albemarle 003 37.856 -78.5699 +US 22947 Keswick Virginia VA Albemarle 003 38.0531 -78.3396 +US 22959 North Garden Virginia VA Albemarle 003 37.9336 -78.6351 +US 22987 White Hall Virginia VA Albemarle 003 38.1799 -78.6189 +US 24562 Howardsville Virginia VA Albemarle 003 37.7511 -78.6313 +US 24590 Scottsville Virginia VA Albemarle 003 37.8049 -78.474 +US 24422 Clifton Forge Virginia VA Alleghany County 005 37.8203 -79.8054 +US 24448 Iron Gate Virginia VA Alleghany 005 37.7965 -79.786 +US 24457 Low Moor Virginia VA Alleghany 005 37.7804 -79.8828 +US 24474 Selma Virginia VA Alleghany 005 37.8062 -79.8404 +US 23002 Amelia Court House Virginia VA Amelia 007 37.3428 -77.9841 +US 23083 Jetersville Virginia VA Amelia 007 37.3176 -78.104 +US 23105 Mannboro Virginia VA Amelia 007 37.345 -77.9449 +US 24521 Amherst Virginia VA Amherst 009 37.6027 -79.0506 +US 24533 Clifford Virginia VA Amherst 009 37.538 -78.9463 +US 24572 Madison Heights Virginia VA Amherst 009 37.4531 -79.1141 +US 24574 Monroe Virginia VA Amherst 009 37.5414 -79.1703 +US 24595 Sweet Briar Virginia VA Amherst 009 37.5674 -79.0756 +US 23939 Evergreen Virginia VA Appomattox 011 37.3772 -78.8065 +US 23958 Pamplin Virginia VA Appomattox 011 37.2653 -78.6517 +US 24522 Appomattox Virginia VA Appomattox 011 37.353 -78.8224 +US 24593 Spout Spring Virginia VA Appomattox 011 37.3643 -78.9059 +US 22201 Arlington Virginia VA Arlington 013 38.8871 -77.0932 +US 22202 Arlington Virginia VA Arlington 013 38.8565 -77.0592 +US 22203 Arlington Virginia VA Arlington 013 38.8738 -77.1142 +US 22204 Arlington Virginia VA Arlington 013 38.859 -77.0997 +US 22205 Arlington Virginia VA Arlington 013 38.8836 -77.1395 +US 22206 Arlington Virginia VA Arlington 013 38.8415 -77.0905 +US 22207 Arlington Virginia VA Arlington 013 38.9033 -77.1263 +US 22209 Arlington Virginia VA Arlington 013 38.8926 -77.0753 +US 22210 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22211 Ft Myer Virginia VA Arlington 013 38.8787 -77.0774 +US 22212 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22213 Arlington Virginia VA Arlington 013 38.8954 -77.1633 +US 22214 Arlington Virginia VA Arlington 013 38.8688 -77.0739 +US 22215 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22216 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22217 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22218 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22219 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22222 Arlington Virginia VA Arlington 013 38.8615 -77.0536 +US 22223 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22225 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22226 Arlington Virginia VA Arlington 013 38.8834 -77.1028 +US 22227 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22229 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22230 Arlington Virginia VA Arlington 013 38.8797 -77.1108 +US 22234 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22240 Arlington Virginia VA Arlington 013 38.8566 -77.0518 +US 22241 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22242 Arlington Virginia VA Arlington 013 38.8509 -77.0523 +US 22243 Arlington Virginia VA Arlington 013 38.8605 -77.0516 +US 22244 Arlington Virginia VA Arlington 013 38.8545 -77.052 +US 22245 Arlington Virginia VA Arlington 013 38.8518 -77.0523 +US 22246 Arlington Virginia VA Arlington 013 38.8808 -77.1129 +US 22843 Mount Solon Virginia VA Augusta 015 38.3328 -79.1028 +US 22939 Fishersville Virginia VA Augusta 015 38.0964 -78.9929 +US 22952 Lyndhurst Virginia VA Augusta 015 37.9744 -78.9361 +US 24407 Staunton Virginia VA Augusta 015 38.1797 -79.1413 +US 24411 Augusta Springs Virginia VA Augusta 015 38.0917 -79.3224 +US 24421 Churchville Virginia VA Augusta 015 38.2346 -79.1791 +US 24430 Craigsville Virginia VA Augusta 015 38.0768 -79.3619 +US 24431 Crimora Virginia VA Augusta 015 38.1684 -78.8413 +US 24432 Deerfield Virginia VA Augusta 015 38.1842 -79.4152 +US 24437 Fort Defiance Virginia VA Augusta 015 38.2109 -78.9326 +US 24440 Greenville Virginia VA Augusta 015 38.0018 -79.1359 +US 24444 Hightown Virginia VA Augusta County 015 38.4664 -79.5995 +US 24459 Middlebrook Virginia VA Augusta 015 38.0242 -79.2812 +US 24463 Mint Spring Virginia VA Augusta 015 38.1797 -79.1413 +US 24467 Mount Sidney Virginia VA Augusta 015 38.2612 -78.973 +US 24469 New Hope Virginia VA Augusta 015 38.1797 -79.1413 +US 24475 Spottswood Virginia VA Augusta 015 37.9684 -79.2211 +US 24476 Steeles Tavern Virginia VA Augusta 015 37.9705 -79.2233 +US 24477 Stuarts Draft Virginia VA Augusta 015 38.0144 -79.0298 +US 24479 Swoope Virginia VA Augusta 015 38.1591 -79.1873 +US 24482 Verona Virginia VA Augusta 015 38.2037 -79.0059 +US 24485 West Augusta Virginia VA Augusta 015 38.2744 -79.3201 +US 24486 Weyers Cave Virginia VA Augusta 015 38.2931 -78.9235 +US 22549 Shiloh Virginia VA Bath County 017 38.2213 -77.1112 +US 24412 Bacova Virginia VA Bath 017 38.0553 -79.7464 +US 24445 Hot Springs Virginia VA Bath 017 37.9638 -79.8717 +US 24460 Millboro Virginia VA Bath 017 38.0553 -79.7464 +US 24484 Warm Springs Virginia VA Bath 017 38.1437 -79.8207 +US 24487 Williamsville Virginia VA Bath 017 38.1898 -79.5879 +US 24095 Goodview Virginia VA Bedford 019 37.2123 -79.7429 +US 24101 Hardy Virginia VA Bedford 019 37.2145 -79.8127 +US 24104 Huddleston Virginia VA Bedford 019 37.1442 -79.491 +US 24121 Moneta Virginia VA Bedford 019 37.1784 -79.6521 +US 24122 Montvale Virginia VA Bedford 019 37.407 -79.7175 +US 24174 Thaxton Virginia VA Bedford 019 37.36 -79.6522 +US 24178 Villamont Virginia VA Bedford 019 37.3105 -79.7898 +US 24526 Big Island Virginia VA Bedford 019 37.5306 -79.3827 +US 24536 Coleman Falls Virginia VA Bedford 019 37.4887 -79.3158 +US 24551 Forest Virginia VA Bedford 019 37.3379 -79.2791 +US 24556 Goode Virginia VA Bedford 019 37.3755 -79.4039 +US 24570 Lowry Virginia VA Bedford 019 37.3484 -79.4271 +US 24314 Bastian Virginia VA Bland 021 37.1574 -81.1989 +US 24315 Bland Virginia VA Bland 021 37.1376 -81.0201 +US 24318 Ceres Virginia VA Bland 021 37.0046 -81.3643 +US 24366 Rocky Gap Virginia VA Bland 021 37.2578 -81.1159 +US 24019 Roanoke Virginia VA Botetourt 023 37.3515 -79.9052 +US 24050 Roanoke Virginia VA Botetourt 023 37.5551 -79.7862 +US 24064 Blue Ridge Virginia VA Botetourt 023 37.3885 -79.8172 +US 24066 Buchanan Virginia VA Botetourt 023 37.5479 -79.7123 +US 24077 Cloverdale Virginia VA Botetourt 023 37.3726 -79.9013 +US 24083 Daleville Virginia VA Botetourt 023 37.4125 -79.9211 +US 24085 Eagle Rock Virginia VA Botetourt 023 37.6667 -79.8172 +US 24090 Fincastle Virginia VA Botetourt 023 37.4911 -79.8511 +US 24130 Oriskany Virginia VA Botetourt 023 37.5551 -79.7862 +US 24175 Troutville Virginia VA Botetourt 023 37.4019 -79.8786 +US 24438 Glen Wilton Virginia VA Botetourt 023 37.5551 -79.7862 +US 23821 Alberta Virginia VA Brunswick 025 36.8806 -77.9055 +US 23843 Dolphin Virginia VA Brunswick 025 36.8318 -77.7887 +US 23845 Ebony Virginia VA Brunswick 025 36.5722 -77.9888 +US 23856 Freeman Virginia VA Brunswick 025 36.7893 -77.7208 +US 23857 Gasburg Virginia VA Brunswick 025 36.5856 -77.8836 +US 23868 Lawrenceville Virginia VA Brunswick 025 36.7342 -77.8136 +US 23873 Meredithville Virginia VA Brunswick 025 36.8088 -77.9544 +US 23876 Rawlings Virginia VA Brunswick 025 36.953 -77.8237 +US 23887 Valentines Virginia VA Brunswick 025 36.565 -77.8384 +US 23889 Warfield Virginia VA Brunswick 025 36.9011 -77.7673 +US 23893 White Plains Virginia VA Brunswick 025 36.6335 -77.9592 +US 23920 Brodnax Virginia VA Brunswick 025 36.7319 -77.9898 +US 24239 Davenport Virginia VA Buchanan 027 37.1134 -82.1501 +US 24603 Big Rock Virginia VA Buchanan 027 37.3532 -82.1968 +US 24614 Grundy Virginia VA Buchanan 027 37.2967 -82.1061 +US 24618 Harman Virginia VA Buchanan 027 37.288 -82.0274 +US 24620 Hurley Virginia VA Buchanan 027 37.4017 -82.0262 +US 24624 Keen Mountain Virginia VA Buchanan 027 37.288 -82.0274 +US 24627 Mavisdale Virginia VA Buchanan 027 37.288 -82.0274 +US 24628 Maxie Virginia VA Buchanan 027 37.288 -82.0274 +US 24631 Oakwood Virginia VA Buchanan 027 37.2138 -81.9917 +US 24634 Pilgrims Knob Virginia VA Buchanan 027 37.2746 -81.9024 +US 24639 Raven Virginia VA Buchanan 027 37.1481 -81.8896 +US 24646 Rowe Virginia VA Buchanan 027 37.1276 -82.0274 +US 24647 Shortt Gap Virginia VA Buchanan 027 37.288 -82.0274 +US 24656 Vansant Virginia VA Buchanan 027 37.1738 -82.1277 +US 24657 Whitewood Virginia VA Buchanan 027 37.2251 -81.8605 +US 24658 Wolford Virginia VA Buchanan 027 37.288 -82.0274 +US 23004 Arvonia Virginia VA Buckingham 029 37.6714 -78.3889 +US 23123 New Canton Virginia VA Buckingham 029 37.6645 -78.3112 +US 23911 Andersonville Virginia VA Buckingham County 029 37.4671 -78.569 +US 23921 Buckingham Virginia VA Buckingham 029 37.5833 -78.5985 +US 23936 Dillwyn Virginia VA Buckingham 029 37.4124 -78.4349 +US 24512 Lynchburg Virginia VA Campbell 031 37.2425 -79.1098 +US 24513 Lynchburg Virginia VA Campbell 031 37.2458 -79.1335 +US 24517 Altavista Virginia VA Campbell 031 37.1222 -79.2911 +US 24528 Brookneal Virginia VA Campbell 031 37.0827 -78.9227 +US 24538 Concord Virginia VA Campbell 031 37.337 -78.9804 +US 24550 Evington Virginia VA Campbell 031 37.261 -79.2317 +US 24554 Gladys Virginia VA Campbell 031 37.1386 -79.1048 +US 24569 Long Island Virginia VA Campbell 031 37.0644 -79.1219 +US 24571 Lynch Station Virginia VA Campbell 031 37.1528 -79.3297 +US 24576 Naruna Virginia VA Campbell 031 37.2458 -79.1335 +US 24588 Rustburg Virginia VA Campbell 031 37.2545 -79.1215 +US 22427 Bowling Green Virginia VA Caroline 033 38.0137 -77.1802 +US 22428 Bowling Green Virginia VA Caroline 033 38.0145 -77.3559 +US 22446 Corbin Virginia VA Caroline 033 38.1718 -77.4082 +US 22501 Ladysmith Virginia VA Caroline 033 38.0159 -77.5593 +US 22514 Milford Virginia VA Caroline 033 38.0058 -77.3185 +US 22535 Port Royal Virginia VA Caroline 033 38.1621 -77.1837 +US 22538 Rappahannock Academy Virginia VA Caroline 033 38.2079 -77.2502 +US 22546 Ruther Glen Virginia VA Caroline 033 37.9451 -77.4714 +US 22552 Sparta Virginia VA Caroline 033 38.0094 -77.2251 +US 22580 Woodford Virginia VA Caroline 033 38.0847 -77.4399 +US 24317 Cana Virginia VA Carroll 035 36.5957 -80.6705 +US 24325 Dugspur Virginia VA Carroll 035 36.8145 -80.6123 +US 24328 Fancy Gap Virginia VA Carroll 035 36.664 -80.6907 +US 24343 Hillsville Virginia VA Carroll 035 36.7442 -80.7197 +US 24351 Lambsburg Virginia VA Carroll 035 36.5775 -80.7601 +US 24352 Laurel Fork Virginia VA Carroll 035 36.7073 -80.5148 +US 24381 Woodlawn Virginia VA Carroll 035 36.7879 -80.8824 +US 23030 Charles City Virginia VA Charles City 036 37.3663 -77.1082 +US 23147 Ruthville Virginia VA Charles City 036 37.3796 -77.0348 +US 23923 Charlotte Court House Virginia VA Charlotte 037 37.0879 -78.6378 +US 23934 Cullen Virginia VA Charlotte 037 37.1552 -78.6459 +US 23937 Drakes Branch Virginia VA Charlotte 037 36.9688 -78.5615 +US 23947 Keysville Virginia VA Charlotte 037 37.0411 -78.4699 +US 23959 Phenix Virginia VA Charlotte 037 37.0925 -78.7912 +US 23962 Randolph Virginia VA Charlotte 037 36.9515 -78.7054 +US 23963 Red House Virginia VA Charlotte 037 37.1914 -78.8145 +US 23964 Red Oak Virginia VA Charlotte 037 36.7724 -78.6321 +US 23967 Saxe Virginia VA Charlotte 037 36.9053 -78.6321 +US 23976 Wylliesburg Virginia VA Charlotte 037 36.8391 -78.5982 +US 23112 Midlothian Virginia VA Chesterfield 041 37.431 -77.6545 +US 23113 Midlothian Virginia VA Chesterfield 041 37.5109 -77.6429 +US 23114 Midlothian Virginia VA Chesterfield 041 37.4815 -77.6419 +US 23120 Moseley Virginia VA Chesterfield 041 37.426 -77.7585 +US 23234 Richmond Virginia VA Chesterfield 041 37.4373 -77.4788 +US 23235 Richmond Virginia VA Chesterfield 041 37.5133 -77.5646 +US 23236 Richmond Virginia VA Chesterfield 041 37.4782 -77.5854 +US 23237 Richmond Virginia VA Chesterfield 041 37.4011 -77.4615 +US 23297 Richmond Virginia VA Chesterfield 041 37.3897 -77.5613 +US 23831 Chester Virginia VA Chesterfield 041 37.3429 -77.4156 +US 23832 Chesterfield Virginia VA Chesterfield 041 37.3923 -77.5668 +US 23836 Chester Virginia VA Chesterfield 041 37.3475 -77.3386 +US 23838 Chesterfield Virginia VA Chesterfield 041 37.3333 -77.6343 +US 22611 Berryville Virginia VA Clarke 043 39.1532 -77.9688 +US 22620 Boyce Virginia VA Clarke 043 39.0698 -78.0203 +US 22646 Millwood Virginia VA Clarke 043 39.1219 -77.9901 +US 22663 White Post Virginia VA Clarke 043 39.058 -78.1105 +US 24127 New Castle Virginia VA Craig 045 37.4871 -80.1704 +US 24131 Paint Bank Virginia VA Craig 045 37.5745 -80.2544 +US 22701 Culpeper Virginia VA Culpeper 047 38.5117 -77.9928 +US 22713 Boston Virginia VA Culpeper 047 38.5382 -78.1423 +US 22714 Brandy Station Virginia VA Culpeper 047 38.511 -77.9037 +US 22718 Elkwood Virginia VA Culpeper 047 38.4652 -77.817 +US 22724 Jeffersonton Virginia VA Culpeper 047 38.6256 -77.9069 +US 22726 Lignum Virginia VA Culpeper 047 38.3956 -77.83 +US 22729 Mitchells Virginia VA Culpeper 047 38.3744 -78.0105 +US 22733 Rapidan Virginia VA Culpeper 047 38.3392 -78.0476 +US 22735 Reva Virginia VA Culpeper 047 38.4604 -78.1572 +US 22736 Richardsville Virginia VA Culpeper 047 38.3924 -77.7195 +US 22737 Rixeyville Virginia VA Culpeper 047 38.5852 -78.0282 +US 22741 Stevensburg Virginia VA Culpeper 047 38.4441 -77.8842 +US 23027 Cartersville Virginia VA Cumberland 049 37.6479 -78.1389 +US 23037 Cologne Virginia VA Cumberland County 049 37.5559 -76.6834 +US 23040 Cumberland Virginia VA Cumberland 049 37.5019 -78.2581 +US 24217 Bee Virginia VA Dickenson 051 37.1014 -82.1856 +US 24220 Birchleaf Virginia VA Dickenson 051 37.1394 -82.2433 +US 24226 Clinchco Virginia VA Dickenson 051 37.1406 -82.3425 +US 24228 Clintwood Virginia VA Dickenson 051 37.1592 -82.4453 +US 24256 Haysi Virginia VA Dickenson 051 37.2206 -82.2853 +US 24269 Mc Clure Virginia VA Dickenson 051 37.0814 -82.3806 +US 24272 Nora Virginia VA Dickenson 051 37.0182 -82.35 +US 24289 Trammel Virginia VA Dickenson 051 37.1309 -82.3449 +US 24607 Breaks Virginia VA Dickenson 051 37.1309 -82.3449 +US 23822 Ammon Virginia VA Dinwiddie 053 37.0724 -77.6475 +US 23830 Carson Virginia VA Dinwiddie 053 37.0393 -77.4351 +US 23833 Church Road Virginia VA Dinwiddie 053 37.195 -77.6646 +US 23840 Dewitt Virginia VA Dinwiddie 053 37.0535 -77.6426 +US 23841 Dinwiddie Virginia VA Dinwiddie 053 37.0833 -77.5585 +US 23850 Ford Virginia VA Dinwiddie 053 37.1349 -77.7364 +US 23872 Mc Kenney Virginia VA Dinwiddie 053 36.9986 -77.7396 +US 23885 Sutherland Virginia VA Dinwiddie 053 37.1901 -77.5655 +US 23894 Wilsons Virginia VA Dinwiddie 053 37.1157 -77.8352 +US 22436 Caret Virginia VA Essex 057 38.0247 -77.0371 +US 22437 Center Cross Virginia VA Essex 057 37.7929 -76.7548 +US 22438 Champlain Virginia VA Essex 057 38.0214 -76.9719 +US 22439 Chance Virginia VA Essex County 057 38.0841 -77.0211 +US 22454 Dunnsville Virginia VA Essex 057 37.8527 -76.8475 +US 22476 Hustle Virginia VA Essex 057 38.0329 -77.0633 +US 22504 Laneview Virginia VA Essex 057 37.7681 -76.7117 +US 22509 Loretto Virginia VA Essex 057 38.0789 -77.0485 +US 22559 Supply Virginia VA Essex County 057 38.0825 -77.1097 +US 22560 Tappahannock Virginia VA Essex 057 37.9146 -76.9125 +US 23115 Millers Tavern Virginia VA Essex 057 37.8364 -76.9138 +US 20120 Centreville Virginia VA Fairfax 059 38.8448 -77.467 +US 20121 Centreville Virginia VA Fairfax 059 38.8195 -77.4558 +US 20122 Centreville Virginia VA Fairfax 059 38.8318 -77.2888 +US 20124 Clifton Virginia VA Fairfax 059 38.7818 -77.3818 +US 20151 Chantilly Virginia VA Fairfax 059 38.8867 -77.4457 +US 20153 Chantilly Virginia VA Fairfax 059 38.8318 -77.2888 +US 20170 Herndon Virginia VA Fairfax 059 38.9839 -77.3675 +US 20171 Herndon Virginia VA Fairfax 059 38.9252 -77.3928 +US 20172 Herndon Virginia VA Fairfax 059 38.8318 -77.2888 +US 20190 Reston Virginia VA Fairfax 059 38.9615 -77.3418 +US 20191 Reston Virginia VA Fairfax 059 38.9318 -77.3527 +US 20192 Herndon Virginia VA Fairfax 059 38.8318 -77.2888 +US 20193 Reston Virginia VA Fairfax 059 38.8318 -77.2888 +US 20194 Reston Virginia VA Fairfax 059 38.9807 -77.3419 +US 20195 Reston Virginia VA Fairfax 059 38.8318 -77.2888 +US 20196 Reston Virginia VA Fairfax 059 38.8318 -77.2888 +US 22003 Annandale Virginia VA Fairfax 059 38.8307 -77.2142 +US 22009 Burke Virginia VA Fairfax 059 38.8318 -77.2888 +US 22015 Burke Virginia VA Fairfax 059 38.7894 -77.2818 +US 22016 Calverton Virginia VA Fairfax County 059 38.6319 -77.6707 +US 22020 Centreville Virginia VA Fairfax County 059 38.8406 -77.448 +US 22021 Chantilly Virginia VA Fairfax County 059 38.8858 -77.4311 +US 22022 Chantilly Virginia VA Fairfax County 059 38.8941 -77.4312 +US 22027 Dunn Loring Virginia VA Fairfax 059 38.8954 -77.2214 +US 22032 Fairfax Virginia VA Fairfax 059 38.8177 -77.2925 +US 22033 Fairfax Virginia VA Fairfax 059 38.8776 -77.3885 +US 22034 Fairfax Virginia VA Fairfax 059 38.8318 -77.2888 +US 22035 Fairfax Virginia VA Fairfax 059 38.8557 -77.3616 +US 22036 Fairfax Virginia VA Fairfax 059 38.7351 -77.0797 +US 22037 Fairfax Virginia VA Fairfax 059 38.8318 -77.2888 +US 22039 Fairfax Station Virginia VA Fairfax 059 38.7602 -77.3064 +US 22041 Falls Church Virginia VA Fairfax 059 38.8502 -77.1448 +US 22042 Falls Church Virginia VA Fairfax 059 38.8635 -77.1939 +US 22043 Falls Church Virginia VA Fairfax 059 38.8994 -77.1895 +US 22044 Falls Church Virginia VA Fairfax 059 38.8589 -77.1548 +US 22047 Falls Church Virginia VA Fairfax 059 38.8318 -77.2888 +US 22060 Fort Belvoir Virginia VA Fairfax 059 38.6947 -77.1433 +US 22066 Great Falls Virginia VA Fairfax 059 39.0039 -77.3083 +US 22067 Greenway Virginia VA Fairfax 059 38.9645 -77.2331 +US 22070 Herndon Virginia VA Fairfax County 059 38.9776 -77.386 +US 22071 Herndon Virginia VA Fairfax County 059 38.9201 -77.3951 +US 22079 Lorton Virginia VA Fairfax 059 38.6929 -77.204 +US 22081 Merrifield Virginia VA Fairfax 059 38.8739 -77.2345 +US 22082 Merrifield Virginia VA Fairfax 059 38.8318 -77.2888 +US 22090 Reston Virginia VA Fairfax County 059 38.9624 -77.3392 +US 22091 Reston Virginia VA Fairfax County 059 38.9357 -77.3508 +US 22092 Herndon Virginia VA Fairfax 059 38.8318 -77.2888 +US 22094 Reston Virginia VA Fairfax County 059 38.9758 -77.3504 +US 22095 Herndon Virginia VA Fairfax 059 38.8318 -77.2888 +US 22096 Reston Virginia VA Fairfax 059 38.8318 -77.2888 +US 22101 Mc Lean Virginia VA Fairfax 059 38.9326 -77.1706 +US 22102 Mc Lean Virginia VA Fairfax 059 38.953 -77.2295 +US 22103 West Mclean Virginia VA Fairfax 059 38.8318 -77.2888 +US 22106 Mc Lean Virginia VA Fairfax 059 38.8318 -77.2888 +US 22107 McLean Virginia VA Fairfax County 059 38.9363 -77.1882 +US 22108 McLean Virginia VA Fairfax County 059 38.9363 -77.1882 +US 22109 Mc Lean Virginia VA Fairfax 059 38.9202 -77.229 +US 22116 Merrifield Virginia VA Fairfax 059 38.8715 -77.2344 +US 22118 Merrifield Virginia VA Fairfax 059 38.8318 -77.2888 +US 22119 Merrifield Virginia VA Fairfax 059 38.8318 -77.2888 +US 22120 Merrifield Virginia VA Fairfax 059 38.8318 -77.2888 +US 22121 Mount Vernon Virginia VA Fairfax 059 38.8309 -77.4323 +US 22122 Newington Virginia VA Fairfax 059 38.8318 -77.2888 +US 22124 Oakton Virginia VA Fairfax 059 38.8852 -77.3233 +US 22150 Springfield Virginia VA Fairfax 059 38.7797 -77.1866 +US 22151 Springfield Virginia VA Fairfax 059 38.8029 -77.2116 +US 22152 Springfield Virginia VA Fairfax 059 38.7757 -77.2337 +US 22153 Springfield Virginia VA Fairfax 059 38.7449 -77.237 +US 22156 Springfield Virginia VA Fairfax 059 38.8318 -77.2888 +US 22158 Springfield Virginia VA Fairfax 059 38.8318 -77.2888 +US 22159 Springfield Virginia VA Fairfax 059 38.8318 -77.2888 +US 22160 Springfield Virginia VA Fairfax 059 38.8318 -77.2888 +US 22161 Springfield Virginia VA Fairfax 059 38.8075 -77.2194 +US 22180 Vienna Virginia VA Fairfax 059 38.8935 -77.2532 +US 22181 Vienna Virginia VA Fairfax 059 38.8977 -77.288 +US 22182 Vienna Virginia VA Fairfax 059 38.928 -77.2649 +US 22183 Vienna Virginia VA Fairfax 059 38.8318 -77.2888 +US 22184 Vienna Virginia VA Fairfax 059 38.8318 -77.2888 +US 22185 Vienna Virginia VA Fairfax 059 38.8318 -77.2888 +US 22199 Lorton Virginia VA Fairfax 059 38.8318 -77.2888 +US 22303 Alexandria Virginia VA Fairfax 059 38.7912 -77.0814 +US 22306 Alexandria Virginia VA Fairfax 059 38.7589 -77.0873 +US 22307 Alexandria Virginia VA Fairfax 059 38.7714 -77.0657 +US 22308 Alexandria Virginia VA Fairfax 059 38.7316 -77.0604 +US 22309 Alexandria Virginia VA Fairfax 059 38.7192 -77.1073 +US 22310 Alexandria Virginia VA Fairfax 059 38.7794 -77.1194 +US 22312 Alexandria Virginia VA Fairfax 059 38.8191 -77.1484 +US 22315 Alexandria Virginia VA Fairfax 059 38.7596 -77.1485 +US 22321 Alexandria Virginia VA Fairfax 059 38.8318 -77.2888 +US 20115 Marshall Virginia VA Fauquier 061 38.8405 -77.8911 +US 20116 Marshall Virginia VA Fauquier 061 38.8537 -77.8601 +US 20119 Catlett Virginia VA Fauquier 061 38.637 -77.6383 +US 20128 Orlean Virginia VA Fauquier 061 38.7416 -77.9774 +US 20130 Paris Virginia VA Fauquier 061 39.0048 -77.9546 +US 20137 Broad Run Virginia VA Fauquier 061 38.8195 -77.7368 +US 20138 Calverton Virginia VA Fauquier 061 38.6338 -77.6869 +US 20139 Casanova Virginia VA Fauquier 061 38.6543 -77.7025 +US 20140 Rectortown Virginia VA Fauquier 061 38.9163 -77.8648 +US 20144 Delaplane Virginia VA Fauquier 061 38.9113 -77.9674 +US 20184 Upperville Virginia VA Fauquier 061 38.9627 -77.8847 +US 20185 Upperville Virginia VA Fauquier 061 38.993 -77.8799 +US 20186 Warrenton Virginia VA Fauquier 061 38.6898 -77.8361 +US 20187 Warrenton Virginia VA Fauquier 061 38.7153 -77.7417 +US 20188 Warrenton Virginia VA Fauquier 061 38.7656 -77.8203 +US 20198 The Plains Virginia VA Fauquier 061 38.8707 -77.7608 +US 22014 Broad Run Virginia VA Fauquier County 061 38.8292 -77.6864 +US 22017 Casanova Virginia VA Fauquier County 061 38.6575 -77.7171 +US 22019 Catlett Virginia VA Fauquier County 061 38.6352 -77.6506 +US 22115 Marshall Virginia VA Fauquier County 061 38.8288 -77.891 +US 22128 Orlean Virginia VA Fauquier County 061 38.7497 -77.9621 +US 22130 Paris Virginia VA Fauquier County 061 38.9964 -77.9256 +US 22140 Rectortown Virginia VA Fauquier County 061 38.9211 -77.8615 +US 22176 Upperville Virginia VA Fauquier County 061 39.0065 -77.8531 +US 22186 Warrenton Virginia VA Fauquier County 061 38.7259 -77.7689 +US 22639 Hume Virginia VA Fauquier 061 38.8273 -77.9949 +US 22643 Markham Virginia VA Fauquier 061 38.8955 -78.0044 +US 22712 Bealeton Virginia VA Fauquier 061 38.5453 -77.7561 +US 22720 Goldvein Virginia VA Fauquier 061 38.4725 -77.6423 +US 22728 Midland Virginia VA Fauquier 061 38.5671 -77.7127 +US 22734 Remington Virginia VA Fauquier 061 38.5309 -77.8037 +US 22739 Somerville Virginia VA Fauquier 061 38.5059 -77.5956 +US 22742 Sumerduck Virginia VA Fauquier 061 38.4674 -77.7044 +US 24072 Check Virginia VA Floyd 063 37.0446 -80.228 +US 24079 Copper Hill Virginia VA Floyd 063 37.0556 -80.1525 +US 24091 Floyd Virginia VA Floyd 063 36.8957 -80.3275 +US 24105 Indian Valley Virginia VA Floyd 063 36.899 -80.5757 +US 24380 Willis Virginia VA Floyd 063 36.8749 -80.4909 +US 22963 Palmyra Virginia VA Fluvanna 065 37.8931 -78.3386 +US 22974 Troy Virginia VA Fluvanna 065 37.9636 -78.2535 +US 23022 Bremo Bluff Virginia VA Fluvanna 065 37.7453 -78.2672 +US 23055 Fork Union Virginia VA Fluvanna 065 37.7715 -78.2355 +US 23084 Kents Store Virginia VA Fluvanna 065 37.8942 -78.1208 +US 24065 Boones Mill Virginia VA Franklin 067 37.1331 -79.9556 +US 24067 Callaway Virginia VA Franklin 067 37.0285 -80.0496 +US 24088 Ferrum Virginia VA Franklin 067 36.9168 -80.0349 +US 24092 Glade Hill Virginia VA Franklin 067 36.9859 -79.773 +US 24102 Henry Virginia VA Franklin 067 36.8393 -79.9904 +US 24137 Penhook Virginia VA Franklin 067 36.9201 -79.6645 +US 24146 Redwood Virginia VA Franklin 067 37.0069 -79.9139 +US 24151 Rocky Mount Virginia VA Franklin 067 36.9891 -79.884 +US 24176 Union Hall Virginia VA Franklin 067 37.0131 -79.6864 +US 24184 Wirtz Virginia VA Franklin 067 37.0818 -79.7573 +US 22141 Round Hill Virginia VA Frederick County 069 39.1124 -77.785 +US 22602 Winchester Virginia VA Frederick 069 39.1501 -78.269 +US 22603 Winchester Virginia VA Frederick 069 39.264 -78.1989 +US 22622 Brucetown Virginia VA Frederick 069 39.2543 -78.0664 +US 22624 Clear Brook Virginia VA Frederick 069 39.2655 -78.0988 +US 22625 Cross Junction Virginia VA Frederick 069 39.3744 -78.3081 +US 22637 Gore Virginia VA Frederick 069 39.2887 -78.3417 +US 22638 Winchester Virginia VA Frederick 069 39.2369 -78.2885 +US 22645 Middletown Virginia VA Frederick 069 39.0367 -78.2815 +US 22654 Star Tannery Virginia VA Frederick 069 39.0908 -78.4343 +US 22655 Stephens City Virginia VA Frederick 069 39.0834 -78.1907 +US 22656 Stephenson Virginia VA Frederick 069 39.1973 -78.0941 +US 24086 Eggleston Virginia VA Giles 071 37.2743 -80.6343 +US 24093 Glen Lyn Virginia VA Giles 071 37.3669 -80.8634 +US 24094 Goldbond Virginia VA Giles 071 37.3853 -80.5906 +US 24124 Narrows Virginia VA Giles 071 37.3198 -80.8548 +US 24128 Newport Virginia VA Giles 071 37.3069 -80.5099 +US 24134 Pearisburg Virginia VA Giles 071 37.3041 -80.7267 +US 24136 Pembroke Virginia VA Giles 071 37.3312 -80.5975 +US 24147 Rich Creek Virginia VA Giles 071 37.385 -80.8227 +US 24150 Ripplemead Virginia VA Giles 071 37.3665 -80.6717 +US 24167 Staffordsville Virginia VA Giles 071 37.2491 -80.7344 +US 23001 Achilles Virginia VA Gloucester 073 37.2882 -76.426 +US 23003 Ark Virginia VA Gloucester 073 37.4323 -76.6016 +US 23017 Bellamy Virginia VA Gloucester 073 37.4182 -76.5084 +US 23018 Bena Virginia VA Gloucester 073 37.4182 -76.5084 +US 23050 Dutton Virginia VA Gloucester 073 37.5001 -76.454 +US 23061 Gloucester Virginia VA Gloucester 073 37.4126 -76.5464 +US 23062 Gloucester Point Virginia VA Gloucester 073 37.2585 -76.4959 +US 23072 Hayes Virginia VA Gloucester 073 37.2916 -76.4905 +US 23107 Maryus Virginia VA Gloucester 073 37.2864 -76.4048 +US 23122 Naxera Virginia VA Gloucester County 073 37.3404 -76.4473 +US 23131 Ordinary Virginia VA Gloucester 073 37.3122 -76.5188 +US 23154 Schley Virginia VA Gloucester 073 37.4182 -76.5084 +US 23155 Severn Virginia VA Gloucester 073 37.4182 -76.5084 +US 23178 Ware Neck Virginia VA Gloucester 073 37.4004 -76.4529 +US 23183 White Marsh Virginia VA Gloucester 073 37.3632 -76.5325 +US 23184 Wicomico Virginia VA Gloucester 073 37.3221 -76.5319 +US 23190 Woods Cross Roads Virginia VA Gloucester 073 37.482 -76.6362 +US 23191 Zanoni Virginia VA Gloucester 073 37.4182 -76.5084 +US 23014 Beaumont Virginia VA Goochland 075 37.7338 -77.8881 +US 23038 Columbia Virginia VA Goochland 075 37.7147 -78.1794 +US 23039 Crozier Virginia VA Goochland 075 37.6718 -77.794 +US 23054 Fife Virginia VA Goochland 075 37.7338 -77.8881 +US 23063 Goochland Virginia VA Goochland 075 37.7688 -78.0112 +US 23065 Gum Spring Virginia VA Goochland 075 37.7982 -77.9375 +US 23067 Hadensville Virginia VA Goochland 075 37.8252 -77.9899 +US 23102 Maidens Virginia VA Goochland 075 37.7126 -77.8315 +US 23103 Manakin Sabot Virginia VA Goochland 075 37.638 -77.7077 +US 23129 Oilville Virginia VA Goochland 075 37.7011 -77.7906 +US 23153 Sandy Hook Virginia VA Goochland 075 37.7799 -77.9405 +US 23160 State Farm Virginia VA Goochland 075 37.7338 -77.8881 +US 23238 Richmond Virginia VA Goochland 075 37.5974 -77.6463 +US 24292 Whitetop Virginia VA Grayson 077 36.6106 -81.5839 +US 24326 Elk Creek Virginia VA Grayson 077 36.7306 -81.1915 +US 24330 Fries Virginia VA Grayson 077 36.7247 -81.0042 +US 24348 Independence Virginia VA Grayson 077 36.6294 -81.1582 +US 24363 Mouth Of Wilson Virginia VA Grayson 077 36.6104 -81.3955 +US 24378 Trout Dale Virginia VA Grayson 077 36.6855 -81.435 +US 24379 Volney Virginia VA Grayson 077 36.6828 -81.2578 +US 22935 Dyke Virginia VA Greene 079 38.2705 -78.5578 +US 22965 Quinque Virginia VA Greene 079 38.3301 -78.475 +US 22968 Ruckersville Virginia VA Greene 079 38.2586 -78.4074 +US 22973 Stanardsville Virginia VA Greene 079 38.3121 -78.482 +US 23870 Jarratt Virginia VA Greensville 081 36.7215 -77.532 +US 23879 Skippers Virginia VA Greensville 081 36.5958 -77.5921 +US 24520 Alton Virginia VA Halifax 083 36.5894 -79.0202 +US 24534 Clover Virginia VA Halifax 083 36.8637 -78.7862 +US 24535 Cluster Springs Virginia VA Halifax 083 36.6113 -78.9455 +US 24539 Crystal Hill Virginia VA Halifax 083 36.8513 -78.9179 +US 24558 Halifax Virginia VA Halifax 083 36.7626 -78.9415 +US 24577 Nathalie Virginia VA Halifax 083 36.9356 -78.972 +US 24585 Republican Grove Virginia VA Halifax 083 36.8015 -78.8839 +US 24589 Scottsburg Virginia VA Halifax 083 36.7862 -78.7866 +US 24592 South Boston Virginia VA Halifax 083 36.6963 -78.9188 +US 24596 Turbeville Virginia VA Halifax County 083 36.7717 -78.9221 +US 24597 Vernon Hill Virginia VA Halifax 083 36.7853 -79.1095 +US 24598 Virgilina Virginia VA Halifax 083 36.6062 -78.7605 +US 23005 Ashland Virginia VA Hanover 085 37.7395 -77.4784 +US 23015 Beaverdam Virginia VA Hanover 085 37.9038 -77.6308 +US 23047 Doswell Virginia VA Hanover 085 37.8417 -77.5125 +US 23059 Glen Allen Virginia VA Hanover 085 37.7284 -77.5544 +US 23069 Hanover Virginia VA Hanover 085 37.7701 -77.3216 +US 23111 Mechanicsville Virginia VA Hanover 085 37.6281 -77.3395 +US 23116 Mechanicsville Virginia VA Hanover 085 37.6691 -77.3294 +US 23146 Rockville Virginia VA Hanover 085 37.7337 -77.7 +US 23162 Studley Virginia VA Hanover 085 37.7722 -77.4526 +US 23192 Montpelier Virginia VA Hanover 085 37.8177 -77.6924 +US 23058 Glen Allen Virginia VA Henrico 087 37.5313 -77.4161 +US 23060 Glen Allen Virginia VA Henrico 087 37.6628 -77.534 +US 23075 Highland Springs Virginia VA Henrico 087 37.5437 -77.3226 +US 23150 Sandston Virginia VA Henrico 087 37.5157 -77.2758 +US 23226 Richmond Virginia VA Henrico 087 37.5825 -77.5197 +US 23227 Richmond Virginia VA Henrico 087 37.6247 -77.4351 +US 23228 Richmond Virginia VA Henrico 087 37.625 -77.4959 +US 23229 Richmond Virginia VA Henrico 087 37.5957 -77.5704 +US 23230 Richmond Virginia VA Henrico 087 37.5921 -77.4952 +US 23231 Richmond Virginia VA Henrico 087 37.4915 -77.368 +US 23233 Richmond Virginia VA Henrico 087 37.6455 -77.6266 +US 23242 Richmond Virginia VA Henrico 087 37.5313 -77.4161 +US 23250 Richmond Virginia VA Henrico 087 37.5075 -77.3329 +US 23255 Richmond Virginia VA Henrico 087 37.5313 -77.4161 +US 23280 Richmond Virginia VA Henrico 087 37.6376 -77.4684 +US 23288 Richmond Virginia VA Henrico 087 37.5313 -77.4161 +US 23289 Richmond Virginia VA Henrico 087 37.5313 -77.4161 +US 23294 Richmond Virginia VA Henrico 087 37.6329 -77.5451 +US 24054 Axton Virginia VA Henry 089 36.6548 -79.7396 +US 24055 Bassett Virginia VA Henry 089 36.7534 -80.0055 +US 24078 Collinsville Virginia VA Henry 089 36.7238 -79.9142 +US 24089 Fieldale Virginia VA Henry 089 36.7064 -79.9652 +US 24148 Ridgeway Virginia VA Henry 089 36.5874 -79.8686 +US 24165 Spencer Virginia VA Henry 089 36.5968 -80.0373 +US 24168 Stanleytown Virginia VA Henry 089 36.7348 -79.9465 +US 24413 Blue Grass Virginia VA Highland 091 38.5152 -79.5613 +US 24433 Doe Hill Virginia VA Highland 091 38.4207 -79.4629 +US 24442 Head Waters Virginia VA Highland 091 38.2946 -79.4353 +US 24458 Mc Dowell Virginia VA Highland 091 38.3266 -79.4988 +US 24465 Monterey Virginia VA Highland 091 38.4058 -79.5941 +US 24468 Mustoe Virginia VA Highland 091 38.386 -79.5592 +US 23304 Battery Park Virginia VA Isle of Wight 093 36.9898 -76.5723 +US 23314 Carrollton Virginia VA Isle of Wight 093 36.955 -76.543 +US 23315 Carrsville Virginia VA Isle of Wight 093 36.7454 -76.8365 +US 23397 Isle Of Wight Virginia VA Isle of Wight 093 36.8989 -76.6877 +US 23424 Rescue Virginia VA Isle of Wight 093 36.9969 -76.5645 +US 23430 Smithfield Virginia VA Isle of Wight 093 36.9811 -76.6368 +US 23431 Smithfield Virginia VA Isle of Wight 093 36.8989 -76.6877 +US 23487 Windsor Virginia VA Isle of Wight 093 36.8369 -76.7324 +US 23898 Zuni Virginia VA Isle of Wight 093 36.8437 -76.811 +US 23081 Jamestown Virginia VA James City 095 37.2235 -76.7833 +US 23127 Norge Virginia VA James City 095 37.3105 -76.7468 +US 23168 Toano Virginia VA James City 095 37.3901 -76.8253 +US 23185 Williamsburg Virginia VA James City 095 37.2732 -76.7324 +US 23188 Williamsburg Virginia VA James City 095 37.3178 -76.7634 +US 22024 Clifton Virginia VA King and Queen County 097 38.7953 -77.3977 +US 23013 Bavon Virginia VA King and Queen County 097 37.3267 -76.281 +US 23023 Bruington Virginia VA King and Queen 097 37.7801 -76.9402 +US 23029 Cauthornville Virginia VA King and Queen County 097 37.859 -77.0396 +US 23085 King And Queen Court Hous Virginia VA King and Queen 097 37.7065 -76.8413 +US 23091 Little Plymouth Virginia VA King and Queen 097 37.6642 -76.8255 +US 23108 Mascot Virginia VA King and Queen 097 37.6068 -76.7383 +US 23110 Mattaponi Virginia VA King and Queen 097 37.6135 -76.8101 +US 23126 Newtown Virginia VA King and Queen 097 37.9226 -77.1449 +US 23148 Saint Stephens Church Virginia VA King and Queen 097 37.8479 -77.055 +US 23156 Shacklefords Virginia VA King and Queen 097 37.5213 -76.7099 +US 23161 Stevensville Virginia VA King and Queen 097 37.7146 -76.9352 +US 23177 Walkerton Virginia VA King and Queen 097 37.7554 -77.0185 +US 23216 Richmond Virginia VA King and Queen County 097 37.5593 -77.4471 +US 22448 Dahlgren Virginia VA King George 099 38.3375 -77.0429 +US 22451 Dogue Virginia VA King George 099 38.2711 -77.1726 +US 22481 Jersey Virginia VA King George 099 38.2711 -77.1726 +US 22485 King George Virginia VA King George 099 38.2811 -77.126 +US 22526 Ninde Virginia VA King George 099 38.2711 -77.1726 +US 22544 Rollins Fork Virginia VA King George 099 38.2711 -77.1726 +US 22547 Sealston Virginia VA King George 099 38.2711 -77.1726 +US 23009 Aylett Virginia VA King William 101 37.8221 -77.1885 +US 23016 Beaverlett Virginia VA King William County 101 37.4159 -76.3224 +US 23080 James Store Virginia VA King William County 101 37.487 -76.4636 +US 23086 King William Virginia VA King William 101 37.7202 -77.0998 +US 23106 Manquin Virginia VA King William 101 37.7184 -77.186 +US 23181 West Point Virginia VA King William 101 37.5556 -76.8237 +US 22480 Irvington Virginia VA Lancaster 103 37.6645 -76.416 +US 22482 Kilmarnock Virginia VA Lancaster 103 37.7162 -76.382 +US 22503 Lancaster Virginia VA Lancaster 103 37.7395 -76.5002 +US 22507 Lively Virginia VA Lancaster 103 37.7572 -76.5118 +US 22513 Merry Point Virginia VA Lancaster 103 37.7503 -76.5096 +US 22517 Mollusk Virginia VA Lancaster 103 37.7503 -76.5781 +US 22523 Morattico Virginia VA Lancaster 103 37.7928 -76.6093 +US 22528 Nuttsville Virginia VA Lancaster 103 37.7132 -76.4099 +US 22576 Weems Virginia VA Lancaster 103 37.6847 -76.4313 +US 22578 White Stone Virginia VA Lancaster 103 37.6886 -76.3616 +US 24218 Ben Hur Virginia VA Lee 105 36.7435 -83.2234 +US 24221 Blackwater Virginia VA Lee 105 36.639 -82.9866 +US 24243 Dryden Virginia VA Lee 105 36.7818 -82.9305 +US 24248 Ewing Virginia VA Lee 105 36.6237 -83.5047 +US 24263 Jonesville Virginia VA Lee 105 36.6896 -83.1362 +US 24265 Keokee Virginia VA Lee 105 36.8239 -82.9772 +US 24277 Pennington Gap Virginia VA Lee 105 36.7508 -83.0223 +US 24281 Rose Hill Virginia VA Lee 105 36.6583 -83.3486 +US 24282 Saint Charles Virginia VA Lee 105 36.8315 -83.0518 +US 20101 Dulles Virginia VA Loudoun 107 39.0021 -77.4421 +US 20102 Dulles Virginia VA Loudoun 107 39.0853 -77.6452 +US 20103 Dulles Virginia VA Loudoun 107 38.9962 -77.45 +US 20104 Dulles Virginia VA Loudoun 107 39.0853 -77.6452 +US 20105 Aldie Virginia VA Loudoun 107 38.9577 -77.6038 +US 20107 Arcola Virginia VA Loudoun 107 38.9683 -77.5333 +US 20117 Middleburg Virginia VA Loudoun 107 39.0296 -77.6938 +US 20118 Middleburg Virginia VA Loudoun 107 39.0075 -77.7656 +US 20129 Paeonian Springs Virginia VA Loudoun 107 39.1603 -77.6097 +US 20131 Philomont Virginia VA Loudoun 107 39.058 -77.7434 +US 20132 Purcellville Virginia VA Loudoun 107 39.1436 -77.7342 +US 20134 Purcellville Virginia VA Loudoun 107 39.1522 -77.7026 +US 20135 Bluemont Virginia VA Loudoun 107 39.0823 -77.8467 +US 20141 Round Hill Virginia VA Loudoun 107 39.1164 -77.7802 +US 20142 Round Hill Virginia VA Loudoun 107 39.1307 -77.7747 +US 20146 Ashburn Virginia VA Loudoun 107 39.0853 -77.6452 +US 20147 Ashburn Virginia VA Loudoun 107 39.0373 -77.4805 +US 20148 Ashburn Virginia VA Loudoun 107 39.0142 -77.5285 +US 20149 Ashburn Virginia VA Loudoun 107 39.0853 -77.6452 +US 20152 Chantilly Virginia VA Loudoun 107 38.8976 -77.5092 +US 20158 Hamilton Virginia VA Loudoun 107 39.1383 -77.6573 +US 20159 Hamilton Virginia VA Loudoun 107 39.1339 -77.6621 +US 20160 Lincoln Virginia VA Loudoun 107 39.0985 -77.6883 +US 20163 Sterling Virginia VA Loudoun 107 39.0853 -77.6452 +US 20164 Sterling Virginia VA Loudoun 107 39.023 -77.3994 +US 20165 Sterling Virginia VA Loudoun 107 39.0472 -77.3866 +US 20166 Sterling Virginia VA Loudoun 107 38.9814 -77.4723 +US 20167 Sterling Virginia VA Loudoun 107 39.0853 -77.6452 +US 20175 Leesburg Virginia VA Loudoun 107 39.042 -77.6054 +US 20176 Leesburg Virginia VA Loudoun 107 39.1821 -77.5359 +US 20177 Leesburg Virginia VA Loudoun 107 39.1581 -77.6669 +US 20178 Leesburg Virginia VA Loudoun 107 39.0729 -77.608 +US 20180 Lovettsville Virginia VA Loudoun 107 39.2204 -77.6596 +US 20189 Dulles Virginia VA Loudoun 107 39.009 -77.4421 +US 20197 Waterford Virginia VA Loudoun 107 39.1882 -77.63 +US 20199 Dulles Virginia VA Loudoun 107 39.0853 -77.6452 +US 22001 Aldie Virginia VA Loudoun County 107 38.9604 -77.6005 +US 22010 Arcola Virginia VA Loudoun County 107 38.9729 -77.535 +US 22012 Bluemont Virginia VA Loudoun County 107 39.096 -77.8338 +US 22068 Hamilton Virginia VA Loudoun County 107 39.1363 -77.6637 +US 22075 Leesburg Virginia VA Loudoun County 107 39.1144 -77.5652 +US 22078 Lincoln Virginia VA Loudoun County 107 39.1364 -77.7157 +US 22080 Lovettsville Virginia VA Loudoun County 107 39.2653 -77.638 +US 22093 Ashburn Virginia VA Loudoun 107 39.0853 -77.6452 +US 22117 Middleburg Virginia VA Loudoun County 107 38.9966 -77.7327 +US 22129 Paeonian Springs Virginia VA Loudoun County 107 39.16 -77.6172 +US 22131 Philomont Virginia VA Loudoun County 107 39.0561 -77.7404 +US 22132 Purcellville Virginia VA Loudoun County 107 39.1572 -77.7228 +US 22170 Sterling Virginia VA Loudoun County 107 39.0215 -77.3986 +US 22190 Waterford Virginia VA Loudoun County 107 39.1999 -77.6197 +US 23024 Bumpass Virginia VA Louisa 109 37.8984 -77.7966 +US 23042 Dabneys Virginia VA Louisa County 109 37.7546 -77.8152 +US 23093 Louisa Virginia VA Louisa 109 38.0132 -78.0347 +US 23117 Mineral Virginia VA Louisa 109 37.9986 -77.8781 +US 23170 Trevilians Virginia VA Louisa 109 37.9408 -77.997 +US 23938 Dundas Virginia VA Lunenburg 111 36.9053 -78.01 +US 23941 Fort Mitchell Virginia VA Lunenburg 111 36.9481 -78.2483 +US 23944 Kenbridge Virginia VA Lunenburg 111 36.933 -78.1242 +US 23952 Lunenburg Virginia VA Lunenburg 111 36.9291 -78.2915 +US 23974 Victoria Virginia VA Lunenburg 111 36.9835 -78.2372 +US 22709 Aroda Virginia VA Madison 113 38.3256 -78.2366 +US 22711 Banco Virginia VA Madison 113 38.4285 -78.2678 +US 22715 Brightwood Virginia VA Madison 113 38.4114 -78.1698 +US 22719 Etlan Virginia VA Madison 113 38.5095 -78.2638 +US 22721 Graves Mill Virginia VA Madison 113 38.4285 -78.2678 +US 22722 Haywood Virginia VA Madison 113 38.4285 -78.2678 +US 22723 Hood Virginia VA Madison 113 38.3967 -78.4322 +US 22725 Leon Virginia VA Madison 113 38.4285 -78.2678 +US 22727 Madison Virginia VA Madison 113 38.37 -78.2976 +US 22730 Oakpark Virginia VA Madison 113 38.3674 -78.1628 +US 22731 Pratts Virginia VA Madison 113 38.3366 -78.2573 +US 22732 Radiant Virginia VA Madison 113 38.3146 -78.1899 +US 22738 Rochelle Virginia VA Madison 113 38.3215 -78.3042 +US 22743 Syria Virginia VA Madison 113 38.4972 -78.3229 +US 22748 Wolftown Virginia VA Madison 113 38.3727 -78.3805 +US 22948 Locust Dale Virginia VA Madison 113 38.3572 -78.1229 +US 22953 Madison Mills Virginia VA Madison 113 38.4285 -78.2678 +US 22989 Woodberry Forest Virginia VA Madison 113 38.2912 -78.1225 +US 23020 Blakes Virginia VA Mathews County 115 37.5067 -76.3663 +US 23021 Bohannon Virginia VA Mathews 115 37.3905 -76.3614 +US 23025 Cardinal Virginia VA Mathews 115 37.4128 -76.3616 +US 23035 Cobbs Creek Virginia VA Mathews 115 37.4959 -76.3863 +US 23045 Diggs Virginia VA Mathews 115 37.4296 -76.2629 +US 23056 Foster Virginia VA Mathews 115 37.4103 -76.2941 +US 23064 Grimstead Virginia VA Mathews 115 37.4961 -76.3 +US 23066 Gwynn Virginia VA Mathews 115 37.5006 -76.2904 +US 23068 Hallieford Virginia VA Mathews 115 37.4103 -76.2941 +US 23076 Hudgins Virginia VA Mathews 115 37.4766 -76.3089 +US 23109 Mathews Virginia VA Mathews 115 37.4383 -76.3544 +US 23118 Mobjack Virginia VA Mathews County 115 37.3776 -76.3552 +US 23119 Moon Virginia VA Mathews 115 37.4487 -76.2766 +US 23125 New Point Virginia VA Mathews 115 37.3438 -76.2878 +US 23128 North Virginia VA Mathews 115 37.4401 -76.4238 +US 23130 Onemo Virginia VA Mathews 115 37.3985 -76.2941 +US 23138 Port Haywood Virginia VA Mathews 115 37.3556 -76.2923 +US 23163 Susan Virginia VA Mathews 115 37.3508 -76.3161 +US 23915 Baskerville Virginia VA Mecklenburg 117 36.7236 -78.279 +US 23917 Boydton Virginia VA Mecklenburg 117 36.6544 -78.3752 +US 23919 Bracey Virginia VA Mecklenburg 117 36.5763 -78.1059 +US 23924 Chase City Virginia VA Mecklenburg 117 36.8053 -78.4553 +US 23927 Clarksville Virginia VA Mecklenburg 117 36.6107 -78.5121 +US 23950 La Crosse Virginia VA Mecklenburg 117 36.6613 -78.0754 +US 23968 Skipwith Virginia VA Mecklenburg 117 36.7317 -78.5306 +US 23970 South Hill Virginia VA Mecklenburg 117 36.7124 -78.1534 +US 24529 Buffalo Junction Virginia VA Mecklenburg 117 36.6168 -78.6093 +US 24580 Nelson Virginia VA Mecklenburg 117 36.5586 -78.671 +US 23031 Christchurch Virginia VA Middlesex 119 37.5984 -76.4476 +US 23032 Church View Virginia VA Middlesex 119 37.675 -76.6629 +US 23043 Deltaville Virginia VA Middlesex 119 37.5549 -76.3468 +US 23070 Hardyville Virginia VA Middlesex 119 37.5512 -76.3844 +US 23071 Hartfield Virginia VA Middlesex 119 37.5594 -76.4769 +US 23079 Jamaica Virginia VA Middlesex 119 37.73 -76.689 +US 23092 Locust Hill Virginia VA Middlesex 119 37.5826 -76.4984 +US 23149 Saluda Virginia VA Middlesex 119 37.5949 -76.5921 +US 23169 Topping Virginia VA Middlesex 119 37.6009 -76.4575 +US 23175 Urbanna Virginia VA Middlesex 119 37.6356 -76.5918 +US 23176 Wake Virginia VA Middlesex 119 37.5681 -76.4323 +US 23179 Warner Virginia VA Middlesex County 119 37.6514 -76.6469 +US 23180 Water View Virginia VA Middlesex 119 37.7105 -76.6227 +US 24023 Roanoke Virginia VA Montgomery 121 37.2107 -80.4062 +US 24060 Blacksburg Virginia VA Montgomery 121 37.2563 -80.4347 +US 24061 Blacksburg Virginia VA Montgomery 121 37.1791 -80.3515 +US 24062 Blacksburg Virginia VA Montgomery 121 37.1742 -80.3957 +US 24063 Blacksburg Virginia VA Montgomery 121 37.1742 -80.3957 +US 24068 Christiansburg Virginia VA Montgomery 121 37.1548 -80.4184 +US 24073 Christiansburg Virginia VA Montgomery 121 37.1353 -80.4188 +US 24111 Mc Coy Virginia VA Montgomery 121 37.1742 -80.3957 +US 24138 Pilot Virginia VA Montgomery 121 37.0565 -80.3229 +US 24149 Riner Virginia VA Montgomery 121 37.0322 -80.4353 +US 24162 Shawsville Virginia VA Montgomery 121 37.1466 -80.2715 +US 22920 Afton Virginia VA Nelson 125 37.9626 -78.841 +US 22922 Arrington Virginia VA Nelson 125 37.6902 -78.9479 +US 22938 Faber Virginia VA Nelson 125 37.8475 -78.7565 +US 22949 Lovingston Virginia VA Nelson 125 37.7924 -78.8684 +US 22951 Lowesville Virginia VA Nelson County 125 37.7526 -79.088 +US 22954 Massies Mill Virginia VA Nelson 125 37.7891 -79.0125 +US 22958 Nellysford Virginia VA Nelson 125 37.902 -78.9004 +US 22964 Piney River Virginia VA Nelson 125 37.8036 -78.9591 +US 22967 Roseland Virginia VA Nelson 125 37.8077 -78.9712 +US 22969 Schuyler Virginia VA Nelson 125 37.7976 -78.6925 +US 22971 Shipman Virginia VA Nelson 125 37.76 -78.8105 +US 22976 Tyro Virginia VA Nelson 125 37.8391 -79.0693 +US 24464 Montebello Virginia VA Nelson 125 37.8654 -79.0804 +US 24553 Gladstone Virginia VA Nelson 125 37.5473 -78.8508 +US 24581 Norwood Virginia VA Nelson 125 37.6408 -78.8038 +US 24599 Wingina Virginia VA Nelson 125 37.6415 -78.7557 +US 23011 Barhamsville Virginia VA New Kent 127 37.4617 -76.8321 +US 23089 Lanexa Virginia VA New Kent 127 37.4194 -76.9027 +US 23124 New Kent Virginia VA New Kent 127 37.553 -77.0742 +US 23140 Providence Forge Virginia VA New Kent 127 37.4259 -77.0711 +US 23141 Quinton Virginia VA New Kent 127 37.5185 -77.1486 +US 23307 Birdsnest Virginia VA Northampton 131 37.4321 -75.9043 +US 23310 Cape Charles Virginia VA Northampton 131 37.2799 -75.9721 +US 23313 Capeville Virginia VA Northampton 131 37.2019 -75.9524 +US 23316 Cheriton Virginia VA Northampton 131 37.2943 -75.9619 +US 23347 Eastville Virginia VA Northampton 131 37.3561 -75.9649 +US 23350 Exmore Virginia VA Northampton 131 37.5117 -75.8526 +US 23354 Franktown Virginia VA Northampton 131 37.4588 -75.9007 +US 23398 Jamesville Virginia VA Northampton 131 37.5343 -75.8771 +US 23405 Machipongo Virginia VA Northampton 131 37.4014 -75.9082 +US 23408 Marionville Virginia VA Northampton 131 37.4556 -75.8473 +US 23413 Nassawadox Virginia VA Northampton 131 37.4728 -75.858 +US 23419 Oyster Virginia VA Northampton 131 37.3074 -75.9269 +US 23429 Seaview Virginia VA Northampton 131 37.2711 -75.9536 +US 23443 Townsend Virginia VA Northampton 131 37.1882 -75.969 +US 23482 Wardtown Virginia VA Northampton 131 37.274 -75.8691 +US 23484 Weirwood Virginia VA Northampton County 131 37.4629 -75.8885 +US 23486 Willis Wharf Virginia VA Northampton 131 37.5189 -75.8105 +US 22432 Burgess Virginia VA Northumberland 133 37.8687 -76.3542 +US 22435 Callao Virginia VA Northumberland 133 37.9773 -76.5732 +US 22456 Edwardsville Virginia VA Northumberland 133 37.8523 -76.4051 +US 22473 Heathsville Virginia VA Northumberland 133 37.9072 -76.4178 +US 22511 Lottsburg Virginia VA Northumberland 133 37.9792 -76.5018 +US 22530 Ophelia Virginia VA Northumberland 133 37.9094 -76.2934 +US 22539 Reedville Virginia VA Northumberland 133 37.857 -76.2829 +US 22579 Wicomico Church Virginia VA Northumberland 133 37.8025 -76.3636 +US 23824 Blackstone Virginia VA Nottoway 135 37.0916 -77.9851 +US 23825 Blackstone Virginia VA Nottoway County 135 37.0862 -77.9955 +US 23922 Burkeville Virginia VA Nottoway 135 37.1952 -78.1961 +US 23930 Crewe Virginia VA Nottoway 135 37.1657 -78.1059 +US 23955 Nottoway Virginia VA Nottoway 135 37.1161 -78.0578 +US 22433 Burr Hill Virginia VA Orange 137 38.3446 -77.8719 +US 22508 Locust Grove Virginia VA Orange 137 38.3352 -77.7709 +US 22542 Rhoadesville Virginia VA Orange 137 38.2863 -77.923 +US 22567 Unionville Virginia VA Orange 137 38.2383 -77.9193 +US 22568 Mine Run Virginia VA Orange County 137 38.2664 -77.8183 +US 22923 Barboursville Virginia VA Orange 137 38.2095 -78.3098 +US 22942 Gordonsville Virginia VA Orange 137 38.1759 -78.1815 +US 22957 Montpelier Station Virginia VA Orange 137 38.227 -78.1768 +US 22960 Orange Virginia VA Orange 137 38.2192 -78.0461 +US 22972 Somerset Virginia VA Orange 137 38.1997 -78.2394 +US 22650 Rileyville Virginia VA Page 139 38.7564 -78.3873 +US 22835 Luray Virginia VA Page 139 38.6548 -78.4596 +US 22849 Shenandoah Virginia VA Page 139 38.501 -78.609 +US 22851 Stanley Virginia VA Page 139 38.566 -78.5093 +US 22171 The Plains Virginia VA Patrick County 141 38.8769 -77.7671 +US 24053 Ararat Virginia VA Patrick 141 36.6139 -80.5093 +US 24076 Claudville Virginia VA Patrick 141 36.5977 -80.3682 +US 24082 Critz Virginia VA Patrick 141 36.6211 -80.1298 +US 24120 Meadows Of Dan Virginia VA Patrick 141 36.725 -80.4022 +US 24133 Patrick Springs Virginia VA Patrick 141 36.6744 -80.1388 +US 24171 Stuart Virginia VA Patrick 141 36.6517 -80.2392 +US 24177 Vesta Virginia VA Patrick 141 36.7241 -80.3581 +US 24185 Woolwine Virginia VA Patrick 141 36.7921 -80.2774 +US 23137 Plain View Virginia VA Pittsylvania County 143 37.5048 -76.7097 +US 24069 Cascade Virginia VA Pittsylvania 143 36.5927 -79.6574 +US 24139 Pittsville Virginia VA Pittsylvania 143 36.9716 -79.4794 +US 24161 Sandy Level Virginia VA Pittsylvania 143 36.991 -79.5614 +US 24527 Blairs Virginia VA Pittsylvania 143 36.7102 -79.3381 +US 24530 Callands Virginia VA Pittsylvania 143 36.7647 -79.6288 +US 24531 Chatham Virginia VA Pittsylvania 143 36.831 -79.4297 +US 24549 Dry Fork Virginia VA Pittsylvania 143 36.743 -79.458 +US 24557 Gretna Virginia VA Pittsylvania 143 36.9695 -79.3389 +US 24563 Hurt Virginia VA Pittsylvania 143 37.0798 -79.3 +US 24565 Java Virginia VA Pittsylvania 143 36.8586 -79.187 +US 24566 Keeling Virginia VA Pittsylvania 143 36.7156 -79.2783 +US 24586 Ringgold Virginia VA Pittsylvania 143 36.6035 -79.2988 +US 24594 Sutherlin Virginia VA Pittsylvania 143 36.6258 -79.195 +US 23101 Macon Virginia VA Powhatan 145 37.5533 -77.893 +US 23139 Powhatan Virginia VA Powhatan 145 37.5564 -77.8798 +US 23901 Farmville Virginia VA Prince Edward 147 37.3027 -78.4076 +US 23909 Farmville Virginia VA Prince Edward 147 37.3016 -78.3949 +US 23935 Darlington Heights Virginia VA Prince Edward County 147 36.8637 -76.4673 +US 23942 Green Bay Virginia VA Prince Edward 147 37.1234 -78.3072 +US 23943 Hampden Sydney Virginia VA Prince Edward 147 37.2381 -78.4618 +US 23954 Meherrin Virginia VA Prince Edward 147 37.1013 -78.3874 +US 23960 Prospect Virginia VA Prince Edward 147 37.3058 -78.5462 +US 23966 Rice Virginia VA Prince Edward 147 37.2721 -78.2793 +US 23801 Fort Lee Virginia VA Prince George 149 37.2447 -77.3341 +US 23842 Disputanta Virginia VA Prince George 149 37.1483 -77.2732 +US 23875 Prince George Virginia VA Prince George 149 37.2333 -77.2747 +US 20136 Bristow Virginia VA Prince William 153 38.7343 -77.5474 +US 20143 Catharpin Virginia VA Prince William 153 38.8455 -77.5669 +US 20155 Gainesville Virginia VA Prince William 153 38.8157 -77.6216 +US 20156 Gainesville Virginia VA Prince William 153 38.7219 -77.4669 +US 20168 Haymarket Virginia VA Prince William 153 38.7219 -77.4669 +US 20169 Haymarket Virginia VA Prince William 153 38.8674 -77.6445 +US 20181 Nokesville Virginia VA Prince William 153 38.7 -77.5483 +US 20182 Nokesville Virginia VA Prince William 153 38.7009 -77.5857 +US 22011 Ashburn Virginia VA Prince William County 153 39.0337 -77.4957 +US 22013 Bristow Virginia VA Prince William County 153 38.731 -77.5474 +US 22018 Catharpin Virginia VA Prince William County 153 38.8547 -77.5624 +US 22025 Dumfries Virginia VA Prince William County 153 38.5993 -77.3403 +US 22026 Dumfries Virginia VA Prince William 153 38.5669 -77.2921 +US 22065 Gainesville Virginia VA Prince William County 153 38.8254 -77.6202 +US 22069 Haymarket Virginia VA Prince William County 153 38.8717 -77.6468 +US 22123 Nokesville Virginia VA Prince William County 153 38.6919 -77.5611 +US 22125 Occoquan Virginia VA Prince William 153 38.6816 -77.2605 +US 22134 Quantico Virginia VA Prince William 153 38.531 -77.3358 +US 22135 Quantico Virginia VA Prince William 153 38.7219 -77.4669 +US 22172 Triangle Virginia VA Prince William 153 38.5509 -77.3229 +US 22191 Woodbridge Virginia VA Prince William 153 38.6356 -77.2683 +US 22192 Woodbridge Virginia VA Prince William 153 38.676 -77.3163 +US 22193 Woodbridge Virginia VA Prince William 153 38.6438 -77.3451 +US 22194 Woodbridge Virginia VA Prince William 153 38.7219 -77.4669 +US 22195 Woodbridge Virginia VA Prince William 153 38.7219 -77.4669 +US 24058 Belspring Virginia VA Pulaski 155 37.1982 -80.6151 +US 24084 Dublin Virginia VA Pulaski 155 37.0989 -80.6697 +US 24126 Newbern Virginia VA Pulaski 155 37.0692 -80.6891 +US 24129 New River Virginia VA Pulaski 155 37.0964 -80.6081 +US 24132 Parrott Virginia VA Pulaski 155 37.2048 -80.6205 +US 24301 Pulaski Virginia VA Pulaski 155 37.0567 -80.771 +US 24324 Draper Virginia VA Pulaski 155 36.9697 -80.8188 +US 24347 Hiwassee Virginia VA Pulaski 155 36.9756 -80.6695 +US 20106 Amissville Virginia VA Rappahannock 157 38.6842 -78.0168 +US 22002 Amissville Virginia VA Rappahannock 157 38.6914 -78.137 +US 22623 Chester Gap Virginia VA Rappahannock 157 38.8537 -78.1412 +US 22627 Flint Hill Virginia VA Rappahannock 157 38.7337 -78.0756 +US 22640 Huntly Virginia VA Rappahannock 157 38.8129 -78.1165 +US 22716 Castleton Virginia VA Rappahannock 157 38.6032 -78.1208 +US 22740 Sperryville Virginia VA Rappahannock 157 38.6203 -78.2466 +US 22746 Viewtown Virginia VA Rappahannock 157 38.6457 -78.0258 +US 22747 Washington Virginia VA Rappahannock 157 38.7078 -78.1566 +US 22749 Woodville Virginia VA Rappahannock 157 38.6482 -78.1739 +US 22460 Farnham Virginia VA Richmond 159 37.874 -76.605 +US 22461 Foneswood Virginia VA Richmond County 159 38.1046 -76.9011 +US 22472 Haynesville Virginia VA Richmond 159 37.9505 -76.6367 +US 22548 Sharps Virginia VA Richmond 159 37.8376 -76.6948 +US 22570 Village Virginia VA Richmond 159 37.9472 -76.6154 +US 22572 Warsaw Virginia VA Richmond 159 37.9695 -76.7665 +US 24018 Roanoke Virginia VA Roanoke 161 37.2503 -80.0525 +US 24020 Roanoke Virginia VA Roanoke 161 37.3589 -79.9448 +US 24059 Bent Mountain Virginia VA Roanoke 161 37.1549 -80.1215 +US 24070 Catawba Virginia VA Roanoke 161 37.3696 -80.1284 +US 24087 Elliston Virginia VA Roanoke 161 37.2257 -80.1848 +US 24179 Vinton Virginia VA Roanoke 161 37.2757 -79.8775 +US 24415 Brownsburg Virginia VA Rockbridge 163 37.9265 -79.3292 +US 24435 Fairfield Virginia VA Rockbridge 163 37.8778 -79.2979 +US 24439 Goshen Virginia VA Rockbridge 163 37.9878 -79.4773 +US 24472 Raphine Virginia VA Rockbridge 163 37.9374 -79.2219 +US 24473 Rockbridge Baths Virginia VA Rockbridge 163 37.8965 -79.3874 +US 24483 Vesuvius Virginia VA Rockbridge 163 37.8378 -79.2135 +US 24555 Glasgow Virginia VA Rockbridge 163 37.643 -79.459 +US 24578 Natural Bridge Virginia VA Rockbridge 163 37.6606 -79.533 +US 24579 Natural Bridge Station Virginia VA Rockbridge 163 37.598 -79.525 +US 22802 Harrisonburg Virginia VA Rockingham 165 38.4905 -78.8179 +US 22811 Bergton Virginia VA Rockingham 165 38.7925 -78.9668 +US 22812 Bridgewater Virginia VA Rockingham 165 38.3859 -78.9937 +US 22815 Broadway Virginia VA Rockingham 165 38.6083 -78.7875 +US 22820 Criders Virginia VA Rockingham 165 38.7497 -78.9974 +US 22821 Dayton Virginia VA Rockingham 165 38.4707 -79.085 +US 22827 Elkton Virginia VA Rockingham 165 38.4025 -78.6321 +US 22830 Fulks Run Virginia VA Rockingham 165 38.6339 -78.9358 +US 22831 Hinton Virginia VA Rockingham 165 38.5689 -79.0885 +US 22832 Keezletown Virginia VA Rockingham 165 38.4659 -78.7499 +US 22833 Lacey Spring Virginia VA Rockingham 165 38.5284 -78.8552 +US 22834 Linville Virginia VA Rockingham 165 38.5557 -78.8961 +US 22840 Mc Gaheysville Virginia VA Rockingham 165 38.3712 -78.7411 +US 22841 Mount Crawford Virginia VA Rockingham 165 38.3457 -78.8957 +US 22846 Penn Laird Virginia VA Rockingham 165 38.375 -78.7795 +US 22848 Pleasant Valley Virginia VA Rockingham 165 38.3847 -78.8914 +US 22850 Singers Glen Virginia VA Rockingham 165 38.5574 -78.9227 +US 22853 Timberville Virginia VA Rockingham 165 38.6476 -78.7717 +US 24441 Grottoes Virginia VA Rockingham 165 38.2484 -78.8255 +US 24471 Port Republic Virginia VA Rockingham 165 38.3226 -78.7886 +US 24224 Castlewood Virginia VA Russell 167 36.8764 -82.2876 +US 24225 Cleveland Virginia VA Russell 167 36.9502 -82.1318 +US 24237 Dante Virginia VA Russell 167 37.0054 -82.2815 +US 24260 Honaker Virginia VA Russell 167 37.0395 -82.0246 +US 24266 Lebanon Virginia VA Russell 167 36.8809 -82.0956 +US 24280 Rosedale Virginia VA Russell 167 36.9509 -81.9649 +US 24649 Swords Creek Virginia VA Russell 167 37.0738 -81.9084 +US 24244 Duffield Virginia VA Scott 169 36.7114 -82.8337 +US 24245 Dungannon Virginia VA Scott 169 36.8242 -82.496 +US 24250 Fort Blackmore Virginia VA Scott 169 36.7438 -82.6102 +US 24251 Gate City Virginia VA Scott 169 36.646 -82.6112 +US 24258 Hiltons Virginia VA Scott 169 36.6498 -82.4299 +US 24271 Nickelsville Virginia VA Scott 169 36.7502 -82.4202 +US 24290 Weber City Virginia VA Scott 169 36.6137 -82.5618 +US 22626 Fishers Hill Virginia VA Shenandoah 171 38.9834 -78.4038 +US 22641 Strasburg Virginia VA Shenandoah 171 39.0808 -78.3913 +US 22644 Maurertown Virginia VA Shenandoah 171 38.9441 -78.4658 +US 22652 Fort Valley Virginia VA Shenandoah 171 38.8407 -78.4276 +US 22657 Strasburg Virginia VA Shenandoah 171 38.9884 -78.3386 +US 22660 Toms Brook Virginia VA Shenandoah 171 38.9476 -78.4331 +US 22664 Woodstock Virginia VA Shenandoah 171 38.887 -78.5217 +US 22810 Basye Virginia VA Shenandoah 171 38.8089 -78.7776 +US 22824 Edinburg Virginia VA Shenandoah 171 38.8432 -78.6003 +US 22842 Mount Jackson Virginia VA Shenandoah 171 38.7857 -78.6803 +US 22844 New Market Virginia VA Shenandoah 171 38.6606 -78.6714 +US 22845 Orkney Springs Virginia VA Shenandoah 171 38.7937 -78.8111 +US 22847 Quicksburg Virginia VA Shenandoah 171 38.7201 -78.7213 +US 24311 Atkins Virginia VA Smyth 173 36.8665 -81.4048 +US 24316 Broadford Virginia VA Smyth 173 36.9546 -81.673 +US 24319 Chilhowie Virginia VA Smyth 173 36.7719 -81.6651 +US 24354 Marion Virginia VA Smyth 173 36.8273 -81.5349 +US 24370 Saltville Virginia VA Smyth 173 36.8927 -81.7402 +US 24373 Seven Mile Ford Virginia VA Smyth 173 36.8264 -81.5492 +US 24375 Sugar Grove Virginia VA Smyth 173 36.7736 -81.4084 +US 23827 Boykins Virginia VA Southampton 175 36.5951 -77.1975 +US 23828 Branchville Virginia VA Southampton 175 36.5787 -77.2704 +US 23829 Capron Virginia VA Southampton 175 36.7243 -77.2394 +US 23837 Courtland Virginia VA Southampton 175 36.7225 -77.0783 +US 23844 Drewryville Virginia VA Southampton 175 36.6854 -77.3591 +US 23859 Handsom Virginia VA Southampton County 175 36.6088 -77.0238 +US 23866 Ivor Virginia VA Southampton 175 36.9071 -76.8861 +US 23874 Newsoms Virginia VA Southampton 175 36.6148 -77.1069 +US 23878 Sedley Virginia VA Southampton 175 36.7908 -77.0125 +US 22407 Fredericksburg Virginia VA Spotsylvania 177 38.2688 -77.5476 +US 22408 Fredericksburg Virginia VA Spotsylvania 177 38.2481 -77.4681 +US 22412 Fredericksburg Virginia VA Spotsylvania 177 38.1847 -77.6626 +US 22534 Partlow Virginia VA Spotsylvania 177 38.0641 -77.6586 +US 22551 Spotsylvania Virginia VA Spotsylvania County 177 38.162 -77.6854 +US 22553 Spotsylvania Virginia VA Spotsylvania 177 38.271 -77.6447 +US 22565 Thornburg Virginia VA Spotsylvania 177 38.1372 -77.5189 +US 22403 Fredericksburg Virginia VA Stafford 179 38.4173 -77.4608 +US 22405 Fredericksburg Virginia VA Stafford 179 38.3365 -77.4366 +US 22406 Fredericksburg Virginia VA Stafford 179 38.3796 -77.5349 +US 22430 Brooke Virginia VA Stafford 179 38.3857 -77.3743 +US 22463 Garrisonville Virginia VA Stafford 179 38.4684 -77.4612 +US 22471 Hartwood Virginia VA Stafford 179 38.3993 -77.5814 +US 22545 Ruby Virginia VA Stafford 179 38.5086 -77.543 +US 22554 Stafford Virginia VA Stafford 179 38.4586 -77.4306 +US 22555 Stafford Virginia VA Stafford 179 38.4173 -77.4608 +US 22556 Stafford Virginia VA Stafford County 179 38.4718 -77.5102 +US 23839 Dendron Virginia VA Surry 181 37.0981 -76.8966 +US 23846 Elberon Virginia VA Surry 181 37.0701 -76.8337 +US 23881 Spring Grove Virginia VA Surry 181 37.1901 -76.9923 +US 23883 Surry Virginia VA Surry 181 37.126 -76.7651 +US 23899 Claremont Virginia VA Surry 181 37.199 -76.9842 +US 23867 Jarratt Virginia VA Sussex 183 36.8191 -77.4832 +US 23882 Stony Creek Virginia VA Sussex 183 36.9361 -77.4443 +US 23884 Sussex Virginia VA Sussex 183 36.9457 -77.2539 +US 23888 Wakefield Virginia VA Sussex 183 36.9757 -76.979 +US 23890 Waverly Virginia VA Sussex 183 37.025 -77.1055 +US 23891 Waverly Virginia VA Sussex 183 37.0508 -77.2124 +US 23897 Yale Virginia VA Sussex 183 36.8373 -77.287 +US 24377 Tannersville Virginia VA Tazewell 185 36.9763 -81.628 +US 24601 Amonate Virginia VA Tazewell 185 37.1355 -81.5634 +US 24602 Bandy Virginia VA Tazewell 185 37.1661 -81.6508 +US 24604 Bishop Virginia VA Tazewell 185 37.2033 -81.5575 +US 24605 Bluefield Virginia VA Tazewell 185 37.1724 -81.5071 +US 24606 Boissevain Virginia VA Tazewell 185 37.1355 -81.5634 +US 24608 Burkes Garden Virginia VA Tazewell 185 37.1355 -81.5634 +US 24609 Cedar Bluff Virginia VA Tazewell 185 37.0791 -81.7668 +US 24612 Doran Virginia VA Tazewell 185 37.0945 -81.818 +US 24613 Falls Mills Virginia VA Tazewell 185 37.271 -81.3182 +US 24619 Horsepen Virginia VA Tazewell 185 37.1355 -81.5634 +US 24622 Jewell Ridge Virginia VA Tazewell 185 37.2094 -81.7956 +US 24630 North Tazewell Virginia VA Tazewell 185 37.1756 -81.5399 +US 24635 Pocahontas Virginia VA Tazewell 185 37.3054 -81.3425 +US 24637 Pounding Mill Virginia VA Tazewell 185 37.0596 -81.7301 +US 24640 Red Ash Virginia VA Tazewell 185 37.1355 -81.5634 +US 24641 Richlands Virginia VA Tazewell 185 37.0941 -81.8123 +US 24651 Tazewell Virginia VA Tazewell 185 37.1078 -81.51 +US 22610 Bentonville Virginia VA Warren 187 38.8187 -78.2757 +US 22630 Front Royal Virginia VA Warren 187 38.9268 -78.1796 +US 22642 Linden Virginia VA Warren 187 38.8812 -78.0478 +US 22649 Middletown Virginia VA Warren 187 39.0048 -78.2478 +US 22651 Front Royal Virginia VA Warren County 187 38.918 -78.1946 +US 24210 Abingdon Virginia VA Washington 191 36.6916 -82.02 +US 24211 Abingdon Virginia VA Washington 191 36.6673 -81.9648 +US 24212 Abingdon Virginia VA Washington 191 36.6909 -81.9708 +US 24236 Damascus Virginia VA Washington 191 36.6403 -81.7776 +US 24270 Mendota Virginia VA Washington 191 36.7223 -82.2649 +US 24327 Emory Virginia VA Washington 191 36.78 -81.8171 +US 24340 Glade Spring Virginia VA Washington 191 36.7779 -81.7676 +US 24361 Meadowview Virginia VA Washington 191 36.7612 -81.8512 +US 22442 Coles Point Virginia VA Westmoreland 193 38.1218 -76.7903 +US 22443 Colonial Beach Virginia VA Westmoreland 193 38.1792 -76.9959 +US 22469 Hague Virginia VA Westmoreland 193 38.0573 -76.6616 +US 22488 Kinsale Virginia VA Westmoreland 193 38.0505 -76.5855 +US 22520 Montross Virginia VA Westmoreland 193 38.1105 -76.7828 +US 22524 Mount Holly Virginia VA Westmoreland 193 38.1182 -76.6805 +US 22529 Oldhams Virginia VA Westmoreland 193 38.0181 -76.6861 +US 22558 Stratford Virginia VA Westmoreland 193 38.1218 -76.7903 +US 22577 Sandy Point Virginia VA Westmoreland 193 38.0673 -76.5503 +US 22581 Zacata Virginia VA Westmoreland 193 38.1218 -76.7903 +US 22421 Kilmarnock Virginia VA Wise County 195 37.8085 -76.5081 +US 24215 Andover Virginia VA Wise 195 36.9234 -82.7964 +US 24216 Appalachia Virginia VA Wise 195 36.9438 -82.7976 +US 24219 Big Stone Gap Virginia VA Wise 195 36.8581 -82.7627 +US 24230 Coeburn Virginia VA Wise 195 36.9605 -82.4735 +US 24246 East Stone Gap Virginia VA Wise 195 36.8644 -82.7375 +US 24249 Appalachia Virginia VA Wise County 195 36.9323 -82.7873 +US 24279 Pound Virginia VA Wise 195 37.0927 -82.6016 +US 24283 Saint Paul Virginia VA Wise 195 36.9323 -82.3418 +US 24285 Stonega Virginia VA Wise 195 36.9509 -82.7867 +US 24293 Wise Virginia VA Wise 195 36.975 -82.5947 +US 24312 Austinville Virginia VA Wythe 197 36.8195 -80.8583 +US 24313 Barren Springs Virginia VA Wythe 197 36.9078 -80.809 +US 24322 Cripple Creek Virginia VA Wythe 197 36.8086 -81.1039 +US 24323 Crockett Virginia VA Wythe 197 36.8768 -81.2089 +US 24350 Ivanhoe Virginia VA Wythe 197 36.8272 -80.9779 +US 24360 Max Meadows Virginia VA Wythe 197 36.9056 -80.9244 +US 24368 Rural Retreat Virginia VA Wythe 197 36.8836 -81.2879 +US 24374 Speedwell Virginia VA Wythe 197 36.7998 -81.1834 +US 24382 Wytheville Virginia VA Wythe 197 36.9407 -81.0941 +US 23090 Lightfoot Virginia VA York 199 37.2359 -76.4456 +US 23690 Yorktown Virginia VA York 199 37.2287 -76.5423 +US 23691 Yorktown Virginia VA York 199 37.2517 -76.552 +US 23692 Yorktown Virginia VA York 199 37.1686 -76.4581 +US 23693 Yorktown Virginia VA York 199 37.1256 -76.4469 +US 23694 Lackey Virginia VA York 199 37.2232 -76.559 +US 23696 Seaford Virginia VA York 199 37.1885 -76.429 +US 22301 Alexandria Virginia VA Alexandria (city) 510 38.82 -77.0589 +US 22302 Alexandria Virginia VA Alexandria (city) 510 38.8276 -77.0896 +US 22304 Alexandria Virginia VA Alexandria (city) 510 38.8149 -77.121 +US 22305 Alexandria Virginia VA Alexandria (city) 510 38.8372 -77.064 +US 22311 Alexandria Virginia VA Alexandria (city) 510 38.832 -77.12 +US 22313 Alexandria Virginia VA Alexandria (city) 510 38.8158 -77.0901 +US 22314 Alexandria Virginia VA Alexandria (city) 510 38.806 -77.0529 +US 22320 Alexandria Virginia VA Alexandria (city) 510 38.8044 -77.0467 +US 22331 Alexandria Virginia VA Alexandria (city) 510 38.8013 -77.0707 +US 22332 Alexandria Virginia VA Alexandria (city) 510 38.8031 -77.0727 +US 22333 Alexandria Virginia VA Alexandria (city) 510 38.8158 -77.0901 +US 22334 Alexandria Virginia VA Alexandria (city) 510 38.8158 -77.0901 +US 22336 Alexandria Virginia VA Alexandria (city) 510 38.8158 -77.0901 +US 22350 Alexandria Virginia VA Alexandria City 510 38.8045 -77.0509 +US 24523 Bedford Virginia VA Bedford (city) 515 37.3153 -79.5331 +US 24201 Bristol Virginia VA Bristol (city) 520 36.6181 -82.1823 +US 24202 Bristol Virginia VA Bristol (city) 520 36.6609 -82.2126 +US 24203 Bristol Virginia VA Bristol (city) 520 36.7616 -81.9687 +US 24209 Bristol Virginia VA Bristol (city) 520 36.7616 -81.9687 +US 24416 Buena Vista Virginia VA Buena Vista (city) 530 37.7396 -79.3523 +US 22902 Charlottesville Virginia VA Charlottesville (city) 540 38.0266 -78.4805 +US 22903 Charlottesville Virginia VA Charlottesville (city) 540 38.0339 -78.4924 +US 22904 Charlottesville Virginia VA Charlottesville (city) 540 38.0401 -78.4851 +US 22905 Charlottesville Virginia VA Charlottesville (city) 540 38.0401 -78.4851 +US 22906 Charlottesville Virginia VA Charlottesville (city) 540 38.0401 -78.4851 +US 22907 Charlottesville Virginia VA Charlottesville (city) 540 38.0401 -78.4851 +US 22908 Charlottesville Virginia VA Charlottesville (city) 540 38.0401 -78.4851 +US 22910 Charlottesville Virginia VA Charlottesville (city) 540 38.0401 -78.4851 +US 23320 Chesapeake Virginia VA Chesapeake (city) 550 36.7352 -76.2384 +US 23321 Chesapeake Virginia VA Chesapeake (city) 550 36.8012 -76.423 +US 23322 Chesapeake Virginia VA Chesapeake (city) 550 36.6434 -76.242 +US 23323 Chesapeake Virginia VA Chesapeake (city) 550 36.7634 -76.3397 +US 23324 Chesapeake Virginia VA Chesapeake (city) 550 36.8056 -76.2666 +US 23325 Chesapeake Virginia VA Chesapeake (city) 550 36.814 -76.2406 +US 23326 Chesapeake Virginia VA Chesapeake (city) 550 36.777 -76.2394 +US 23327 Chesapeake Virginia VA Chesapeake (city) 550 36.7085 -76.2785 +US 23328 Chesapeake Virginia VA Chesapeake (city) 550 36.7085 -76.2785 +US 23834 Colonial Heights Virginia VA Colonial Heights (city 570 37.27 -77.4038 +US 24426 Covington Virginia VA Covington (city) 580 37.7802 -79.987 +US 24540 Danville Virginia VA Danville (city) 590 36.6218 -79.4124 +US 24541 Danville Virginia VA Danville (city) 590 36.5779 -79.4411 +US 24543 Danville Virginia VA Danville (city) 590 36.5927 -79.411 +US 24544 Danville Virginia VA Danville (city) 590 36.5927 -79.411 +US 23847 Emporia Virginia VA Emporia (city) 595 36.6857 -77.563 +US 22030 Fairfax Virginia VA Fairfax (city) 600 38.8458 -77.3242 +US 22031 Fairfax Virginia VA Fairfax (city) 600 38.8604 -77.2649 +US 22038 Fairfax Virginia VA Fairfax (city) 600 38.8528 -77.302 +US 22040 Falls Church Virginia VA Falls Church (city) 610 38.8842 -77.1718 +US 22046 Falls Church Virginia VA Falls Church (city) 610 38.8856 -77.1802 +US 23851 Franklin Virginia VA Franklin (city) 620 36.6786 -76.9391 +US 22401 Fredericksburg Virginia VA Fredericksburg (city) 630 38.2995 -77.4772 +US 22402 Fredericksburg Virginia VA Fredericksburg (city) 630 38.2996 -77.4897 +US 22404 Fredericksburg Virginia VA Fredericksburg (city) 630 38.2983 -77.4899 +US 24333 Galax Virginia VA Galax (city) 640 36.6565 -80.9117 +US 23630 Hampton Virginia VA Hampton (city) 650 37.0727 -76.3899 +US 23631 Hampton Virginia VA Hampton (city) 650 37.0727 -76.3899 +US 23651 Fort Monroe Virginia VA Hampton (city) 650 37.018 -76.3044 +US 23653 Hampton Virginia VA Hampton (city) 650 37.0727 -76.3899 +US 23661 Hampton Virginia VA Hampton (city) 650 37.0074 -76.3801 +US 23663 Hampton Virginia VA Hampton (city) 650 37.0318 -76.3199 +US 23664 Hampton Virginia VA Hampton (city) 650 37.0566 -76.2966 +US 23665 Hampton Virginia VA Hampton (city) 650 37.0831 -76.36 +US 23666 Hampton Virginia VA Hampton (city) 650 37.0462 -76.4096 +US 23667 Hampton Virginia VA Hampton (city) 650 37.0193 -76.3318 +US 23668 Hampton Virginia VA Hampton (city) 650 37.0206 -76.3377 +US 23669 Hampton Virginia VA Hampton (city) 650 37.0436 -76.3426 +US 23670 Hampton Virginia VA Hampton (city) 650 37.0727 -76.3899 +US 23681 Hampton Virginia VA Hampton (city) 650 37.0727 -76.3899 +US 22801 Harrisonburg Virginia VA Harrisonburg (city) 660 38.4489 -78.8714 +US 22803 Harrisonburg Virginia VA City of Harrisonburg 660 38.469 -78.8325 +US 22807 Harrisonburg Virginia VA Harrisonburg (city) 660 38.4409 -78.8742 +US 23860 Hopewell Virginia VA Hopewell (city) 670 37.2876 -77.295 +US 24450 Lexington Virginia VA Lexington (city) 678 37.7885 -79.4581 +US 24501 Lynchburg Virginia VA Lynchburg (city) 680 37.353 -79.1557 +US 24502 Lynchburg Virginia VA Lynchburg (city) 680 37.3825 -79.2181 +US 24503 Lynchburg Virginia VA Lynchburg (city) 680 37.4376 -79.205 +US 24504 Lynchburg Virginia VA Lynchburg (city) 680 37.361 -79.0544 +US 24505 Lynchburg Virginia VA Lynchburg (city) 680 37.4009 -79.1785 +US 24506 Lynchburg Virginia VA Lynchburg (city) 680 37.3817 -79.161 +US 24514 Lynchburg Virginia VA Lynchburg (city) 680 37.4009 -79.1785 +US 24515 Lynchburg Virginia VA Lynchburg (city) 680 37.4009 -79.1785 +US 20108 Manassas Virginia VA Manassas (city) 683 38.7447 -77.4872 +US 20109 Manassas Virginia VA Manassas (city) 683 38.793 -77.5266 +US 20110 Manassas Virginia VA Manassas (city) 683 38.7492 -77.4878 +US 22110 Manassas Virginia VA City of Manassas 683 38.7678 -77.4901 +US 22111 Manassas Virginia VA City of Manassas 683 38.7202 -77.4391 +US 20111 Manassas Virginia VA Manassas Park (city) 685 38.7707 -77.4494 +US 20112 Manassas Virginia VA Manassas Park (city) 685 38.6665 -77.4248 +US 20113 Manassas Virginia VA Manassas Park (city) 685 38.7709 -77.4494 +US 24112 Martinsville Virginia VA Martinsville (city) 690 36.6871 -79.8691 +US 24113 Martinsville Virginia VA Martinsville (city) 690 36.6796 -79.8652 +US 24114 Martinsville Virginia VA Martinsville (city) 690 36.6796 -79.8652 +US 24115 Martinsville Virginia VA Martinsville (city) 690 36.6796 -79.8652 +US 23600 Newport News Virginia VA City of Newport News 700 36.9786 -76.4283 +US 23601 Newport News Virginia VA Newport News (city) 700 37.058 -76.4607 +US 23602 Newport News Virginia VA Newport News (city) 700 37.1132 -76.5179 +US 23603 Newport News Virginia VA Newport News (city) 700 37.1989 -76.5821 +US 23604 Fort Eustis Virginia VA Newport News (city) 700 37.1574 -76.5845 +US 23605 Newport News Virginia VA Newport News (city) 700 37.0156 -76.4332 +US 23606 Newport News Virginia VA Newport News (city) 700 37.0768 -76.4967 +US 23607 Newport News Virginia VA Newport News (city) 700 36.9864 -76.4165 +US 23608 Newport News Virginia VA Newport News (city) 700 37.1526 -76.542 +US 23609 Newport News Virginia VA Newport News (city) 700 37.1959 -76.5248 +US 23612 Newport News Virginia VA Newport News (city) 700 37.1959 -76.5248 +US 23628 Newport News Virginia VA Newport News (city) 700 37.1959 -76.5248 +US 23500 Norfolk Virginia VA City of Norfolk 710 36.8466 -76.2855 +US 23501 Norfolk Virginia VA Norfolk (city) 710 36.8959 -76.2085 +US 23502 Norfolk Virginia VA Norfolk (city) 710 36.8546 -76.2143 +US 23503 Norfolk Virginia VA Norfolk (city) 710 36.9442 -76.252 +US 23504 Norfolk Virginia VA Norfolk (city) 710 36.8586 -76.2686 +US 23505 Norfolk Virginia VA Norfolk (city) 710 36.9168 -76.2875 +US 23506 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23507 Norfolk Virginia VA Norfolk (city) 710 36.8645 -76.3004 +US 23508 Norfolk Virginia VA Norfolk (city) 710 36.8859 -76.3004 +US 23509 Norfolk Virginia VA Norfolk (city) 710 36.8787 -76.2604 +US 23510 Norfolk Virginia VA Norfolk (city) 710 36.8529 -76.2878 +US 23511 Norfolk Virginia VA Norfolk (city) 710 36.9356 -76.3034 +US 23512 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23513 Norfolk Virginia VA Norfolk (city) 710 36.8914 -76.2396 +US 23514 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23515 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23517 Norfolk Virginia VA Norfolk (city) 710 36.8695 -76.2945 +US 23518 Norfolk Virginia VA Norfolk (city) 710 36.9202 -76.216 +US 23519 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23520 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23523 Norfolk Virginia VA Norfolk (city) 710 36.8294 -76.2701 +US 23529 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23530 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23541 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 23551 Norfolk Virginia VA Norfolk (city) 710 36.9312 -76.2397 +US 24273 Norton Virginia VA Norton (city) 720 36.9378 -82.6249 +US 23803 Petersburg Virginia VA Petersburg (city) 730 37.2123 -77.4814 +US 23804 Petersburg Virginia VA Petersburg (city) 730 37.2048 -77.3928 +US 23805 Petersburg Virginia VA Petersburg (city) 730 37.1819 -77.3854 +US 23806 Petersburg Virginia VA Petersburg (city) 730 37.2048 -77.3928 +US 23662 Poquoson Virginia VA Poquoson (city) 735 37.1313 -76.3807 +US 23701 Portsmouth Virginia VA Portsmouth (city) 740 36.8089 -76.3671 +US 23702 Portsmouth Virginia VA Portsmouth (city) 740 36.8035 -76.327 +US 23703 Portsmouth Virginia VA Portsmouth (city) 740 36.8695 -76.3869 +US 23704 Portsmouth Virginia VA Portsmouth (city) 740 36.8298 -76.3146 +US 23705 Portsmouth Virginia VA Portsmouth (city) 740 36.8686 -76.3552 +US 23707 Portsmouth Virginia VA Portsmouth (city) 740 36.8362 -76.344 +US 23708 Portsmouth Virginia VA Portsmouth (city) 740 36.8686 -76.3552 +US 23709 Portsmouth Virginia VA Portsmouth (city) 740 36.8686 -76.3552 +US 24141 Radford Virginia VA Radford (city) 750 37.1197 -80.5565 +US 24142 Radford Virginia VA Radford (city) 750 37.1387 -80.548 +US 24143 Radford Virginia VA Radford (city) 750 37.1226 -80.5629 +US 23173 University Of Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23201 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23202 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23203 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23204 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23205 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23206 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23207 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23208 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23209 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23210 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23211 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23212 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23213 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23215 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23217 Richmond Virginia VA City of Richmond 760 37.5593 -77.4471 +US 23218 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23219 Richmond Virginia VA Richmond (city) 760 37.5463 -77.4378 +US 23220 Richmond Virginia VA Richmond (city) 760 37.5498 -77.4588 +US 23221 Richmond Virginia VA Richmond (city) 760 37.5583 -77.4845 +US 23222 Richmond Virginia VA Richmond (city) 760 37.5748 -77.4267 +US 23223 Richmond Virginia VA Richmond (city) 760 37.5477 -77.3948 +US 23224 Richmond Virginia VA Richmond (city) 760 37.4955 -77.471 +US 23225 Richmond Virginia VA Richmond (city) 760 37.5158 -77.5047 +US 23232 Richmond Virginia VA Richmond (city) 760 37.5202 -77.4084 +US 23240 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23241 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23249 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23260 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23261 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23266 Richmond Virginia VA Richmond (city) 760 37.5679 -77.5283 +US 23269 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23270 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23272 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23273 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23274 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23275 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23276 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23277 Richmond Virginia VA City of Richmond 760 37.5535 -77.4604 +US 23278 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23279 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23282 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23284 Richmond Virginia VA Richmond (city) 760 37.5494 -77.4512 +US 23285 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23286 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23290 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23291 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23292 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23293 Richmond Virginia VA Richmond (city) 760 37.5242 -77.4932 +US 23295 Richmond Virginia VA City of Richmond 760 37.5532 -77.4621 +US 23298 Richmond Virginia VA Richmond (city) 760 37.5406 -77.4316 +US 24000 Roanoke Virginia VA City of Roanoke 770 37.2707 -79.9415 +US 24001 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24002 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24003 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24004 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24005 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24006 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24007 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24008 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24009 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24010 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24011 Roanoke Virginia VA Roanoke (city) 770 37.269 -79.942 +US 24012 Roanoke Virginia VA Roanoke (city) 770 37.3029 -79.9322 +US 24013 Roanoke Virginia VA Roanoke (city) 770 37.2677 -79.9247 +US 24014 Roanoke Virginia VA Roanoke (city) 770 37.2327 -79.9463 +US 24015 Roanoke Virginia VA Roanoke (city) 770 37.2584 -79.9807 +US 24016 Roanoke Virginia VA Roanoke (city) 770 37.2704 -79.9535 +US 24017 Roanoke Virginia VA Roanoke (city) 770 37.2937 -79.9902 +US 24022 Roanoke Virginia VA Roanoke (city) 770 37.2784 -79.9332 +US 24024 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24025 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24026 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24027 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24028 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24029 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24030 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24031 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24032 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24033 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24034 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24035 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24036 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24037 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24038 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24040 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24042 Roanoke Virginia VA Roanoke (city) 770 37.2717 -79.9392 +US 24043 Roanoke Virginia VA Roanoke (city) 770 37.2692 -79.9399 +US 24044 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24045 Roanoke Virginia VA Roanoke (city) 770 37.2686 -79.9407 +US 24048 Roanoke Virginia VA Roanoke (city) 770 37.2742 -79.9579 +US 24153 Salem Virginia VA Salem (city) 775 37.2853 -80.0692 +US 24155 Salem Virginia VA Salem (city) 775 37.2884 -80.0671 +US 24156 Salem Virginia VA Salem (city) 775 37.2884 -80.0671 +US 24157 Salem Virginia VA Salem (city) 775 37.2884 -80.0671 +US 24401 Staunton Virginia VA Staunton (city) 790 38.1574 -79.0651 +US 24402 Staunton Virginia VA Staunton (city) 790 38.1593 -79.0629 +US 23432 Suffolk Virginia VA Suffolk (city) 800 36.8668 -76.5598 +US 23433 Suffolk Virginia VA Suffolk (city) 800 36.909 -76.4929 +US 23434 Suffolk Virginia VA Suffolk (city) 800 36.7304 -76.5931 +US 23435 Suffolk Virginia VA Suffolk (city) 800 36.8544 -76.4664 +US 23436 Suffolk Virginia VA Suffolk (city) 800 36.8926 -76.5142 +US 23437 Suffolk Virginia VA Suffolk (city) 800 36.6526 -76.792 +US 23438 Suffolk Virginia VA Suffolk (city) 800 36.5913 -76.6871 +US 23439 Suffolk Virginia VA Suffolk (city) 800 36.7461 -76.6653 +US 23453 Virginia Beach Virginia VA City of Suffolk 800 36.776 -76.0766 +US 23450 Virginia Beach Virginia VA Virginia Beach (city) 810 36.844 -76.1204 +US 23451 Virginia Beach Virginia VA Virginia Beach (city) 810 36.8585 -76.0019 +US 23452 Virginia Beach Virginia VA Virginia Beach (city) 810 36.8348 -76.0961 +US 23454 Virginia Beach Virginia VA Virginia Beach (city) 810 36.8282 -76.0237 +US 23455 Virginia Beach Virginia VA Virginia Beach (city) 810 36.8881 -76.1446 +US 23456 Virginia Beach Virginia VA Virginia Beach (city) 810 36.7341 -76.0359 +US 23457 Virginia Beach Virginia VA Virginia Beach (city) 810 36.6224 -76.0249 +US 23458 Virginia Beach Virginia VA Virginia Beach (city) 810 36.8474 -76.1558 +US 23459 Virginia Beach Virginia VA Virginia Beach (city) 810 36.9216 -76.0171 +US 23460 Virginia Beach Virginia VA Virginia Beach (city) 810 36.808 -76.0284 +US 23461 Virginia Beach Virginia VA Virginia Beach (city) 810 36.7754 -75.9633 +US 23462 Virginia Beach Virginia VA Virginia Beach (city) 810 36.8392 -76.1522 +US 23463 Virginia Beach Virginia VA Virginia Beach (city) 810 36.7957 -76.0126 +US 23464 Virginia Beach Virginia VA Virginia Beach (city) 810 36.7978 -76.1759 +US 23465 Virginia Beach Virginia VA Virginia Beach (city) 810 36.8512 -76.1692 +US 23466 Virginia Beach Virginia VA Virginia Beach (city) 810 36.7957 -76.0126 +US 23467 Virginia Beach Virginia VA Virginia Beach (city) 810 36.7957 -76.0126 +US 23468 Virginia Beach Virginia VA Virginia Beach (city) 810 36.8439 -76.1424 +US 23471 Virginia Beach Virginia VA Virginia Beach (city) 810 36.7957 -76.0126 +US 23479 Virginia Beach Virginia VA Virginia Beach (city) 810 36.7957 -76.0126 +US 23521 Norfolk Virginia VA Virginia Beach (city) 810 36.9131 -76.1472 +US 22980 Waynesboro Virginia VA Waynesboro (city) 820 38.0774 -78.9035 +US 23186 Williamsburg Virginia VA Williamsburg (city) 830 37.3105 -76.7468 +US 23187 Williamsburg Virginia VA Williamsburg (city) 830 37.3105 -76.7468 +US 22601 Winchester Virginia VA Winchester (city) 840 39.1858 -78.1827 +US 22604 Winchester Virginia VA Winchester (city) 840 39.1676 -78.1686 +US 05443 Bristol Vermont VT Addison 001 44.146 -73.0717 +US 05456 Ferrisburg Vermont VT Addison 001 44.2128 -73.2586 +US 05469 Monkton Vermont VT Addison 001 44.2404 -73.1347 +US 05472 New Haven Vermont VT Addison 001 44.1126 -73.1735 +US 05473 North Ferrisburg Vermont VT Addison 001 44.2515 -73.2033 +US 05487 Starksboro Vermont VT Addison 001 44.2261 -73.0157 +US 05491 Vergennes Vermont VT Addison 001 44.1326 -73.2793 +US 05669 Roxbury Vermont VT Addison 001 44.0846 -72.7202 +US 05734 Bridport Vermont VT Addison 001 43.9538 -73.3476 +US 05740 East Middlebury Vermont VT Addison 001 43.9715 -73.0914 +US 05747 Granville Vermont VT Addison 001 43.9849 -72.8245 +US 05748 Hancock Vermont VT Addison 001 43.9125 -72.9133 +US 05753 Middlebury Vermont VT Addison 001 43.9919 -73.1716 +US 05760 Orwell Vermont VT Addison 001 43.7837 -73.2949 +US 05766 Ripton Vermont VT Addison 001 43.9929 -73.0187 +US 05769 Salisbury Vermont VT Addison 001 43.9017 -73.1008 +US 05770 Shoreham Vermont VT Addison 001 43.8862 -73.3054 +US 05778 Whiting Vermont VT Addison 001 43.894 -73.203 +US 05152 Peru Vermont VT Bennington 003 43.2565 -72.8868 +US 05201 Bennington Vermont VT Bennington 003 42.8827 -73.1923 +US 05250 Arlington Vermont VT Bennington 003 43.0857 -73.1594 +US 05251 Dorset Vermont VT Bennington 003 43.2636 -73.0766 +US 05252 East Arlington Vermont VT Bennington 003 43.0668 -73.0611 +US 05253 East Dorset Vermont VT Bennington 003 43.237 -73.0081 +US 05254 Manchester Vermont VT Bennington 003 43.1772 -73.0458 +US 05255 Manchester Center Vermont VT Bennington 003 43.1693 -73.0474 +US 05257 North Bennington Vermont VT Bennington 003 42.9665 -73.2505 +US 05260 North Pownal Vermont VT Bennington 003 42.8098 -73.2534 +US 05261 Pownal Vermont VT Bennington 003 42.788 -73.2162 +US 05262 Shaftsbury Vermont VT Bennington 003 42.9614 -73.2166 +US 05340 Bondville Vermont VT Bennington 003 43.1618 -72.9128 +US 05350 Readsboro Vermont VT Bennington 003 42.7837 -72.9609 +US 05352 Readsboro Vermont VT Bennington 003 42.7826 -73.0675 +US 05768 Rupert Vermont VT Bennington 003 43.027 -73.0552 +US 05776 West Rupert Vermont VT Bennington 003 43.2636 -73.1905 +US 05042 East Ryegate Vermont VT Caledonia 005 44.2275 -72.0996 +US 05046 Groton Vermont VT Caledonia 005 44.2204 -72.2175 +US 05050 Mc Indoe Falls Vermont VT Caledonia 005 44.4624 -72.1358 +US 05069 South Ryegate Vermont VT Caledonia 005 44.1978 -72.1104 +US 05819 Saint Johnsbury Vermont VT Caledonia 005 44.4272 -72.0051 +US 05821 Barnet Vermont VT Caledonia 005 44.3179 -72.0783 +US 05828 Danville Vermont VT Caledonia 005 44.4332 -72.1133 +US 05832 East Burke Vermont VT Caledonia 005 44.6078 -71.9357 +US 05836 East Hardwick Vermont VT Caledonia 005 44.5288 -72.3034 +US 05838 East Saint Johnsbury Vermont VT Caledonia 005 44.4685 -71.9301 +US 05843 Hardwick Vermont VT Caledonia 005 44.507 -72.3638 +US 05848 Lower Waterford Vermont VT Caledonia 005 44.3821 -71.9195 +US 05849 Lyndon Vermont VT Caledonia 005 44.4976 -71.9505 +US 05850 Lyndon Center Vermont VT Caledonia 005 44.5416 -72.0175 +US 05851 Lyndonville Vermont VT Caledonia 005 44.5555 -72.0715 +US 05861 Passumpsic Vermont VT Caledonia 005 44.4624 -72.1358 +US 05862 Peacham Vermont VT Caledonia 005 44.4624 -72.1358 +US 05863 Saint Johnsbury Center Vermont VT Caledonia 005 44.5034 -71.9721 +US 05866 Sheffield Vermont VT Caledonia 005 44.6178 -72.1239 +US 05867 Sutton Vermont VT Caledonia 005 44.6465 -72.0211 +US 05871 West Burke Vermont VT Caledonia 005 44.6636 -71.9572 +US 05873 West Danville Vermont VT Caledonia 005 44.4465 -72.2198 +US 05401 Burlington Vermont VT Chittenden 007 44.484 -73.2199 +US 05402 Burlington Vermont VT Chittenden 007 44.4421 -73.0825 +US 05403 South Burlington Vermont VT Chittenden 007 44.4513 -73.1796 +US 05404 Winooski Vermont VT Chittenden 007 44.4949 -73.1874 +US 05405 Burlington Vermont VT Chittenden 007 44.4421 -73.0825 +US 05406 Burlington Vermont VT Chittenden 007 44.4421 -73.0825 +US 05407 South Burlington Vermont VT Chittenden 007 44.4421 -73.0825 +US 05408 Burlington Vermont VT Chittenden County 007 44.512 -73.2492 +US 05439 Colchester Vermont VT Chittenden 007 44.4952 -73.1651 +US 05445 Charlotte Vermont VT Chittenden 007 44.3113 -73.228 +US 05446 Colchester Vermont VT Chittenden 007 44.536 -73.2022 +US 05449 Colchester Vermont VT Chittenden 007 44.4421 -73.0825 +US 05451 Essex Vermont VT Chittenden 007 44.5084 -73.0503 +US 05452 Essex Junction Vermont VT Chittenden 007 44.5035 -73.0906 +US 05453 Essex Junction Vermont VT Chittenden 007 44.4421 -73.0825 +US 05461 Hinesburg Vermont VT Chittenden 007 44.3346 -73.098 +US 05462 Huntington Vermont VT Chittenden 007 44.3227 -72.9964 +US 05465 Jericho Vermont VT Chittenden 007 44.459 -72.9552 +US 05466 Jonesville Vermont VT Chittenden 007 44.3625 -73.0198 +US 05468 Milton Vermont VT Chittenden 007 44.6483 -73.1317 +US 05477 Richmond Vermont VT Chittenden 007 44.3873 -72.9533 +US 05482 Shelburne Vermont VT Chittenden 007 44.39 -73.2171 +US 05489 Underhill Vermont VT Chittenden 007 44.5391 -72.9258 +US 05490 Underhill Center Vermont VT Chittenden 007 44.5047 -72.8853 +US 05494 Westford Vermont VT Chittenden 007 44.6182 -73.006 +US 05495 Williston Vermont VT Chittenden 007 44.4367 -73.0957 +US 05824 Concord Vermont VT Essex 009 44.4461 -71.8676 +US 05837 East Haven Vermont VT Essex 009 44.6517 -71.8675 +US 05840 Granby Vermont VT Essex 009 44.6808 -71.7194 +US 05846 Island Pond Vermont VT Essex 009 44.8095 -71.884 +US 05858 North Concord Vermont VT Essex 009 44.5501 -71.7867 +US 05901 Averill Vermont VT Essex 009 44.6808 -71.7194 +US 05902 Beecher Falls Vermont VT Essex 009 45.0085 -71.4907 +US 05903 Canaan Vermont VT Essex 009 44.9764 -71.5602 +US 05904 Gilman Vermont VT Essex 009 44.414 -71.7179 +US 05905 Guildhall Vermont VT Essex 009 44.6902 -71.5991 +US 05906 Lunenburg Vermont VT Essex 009 44.4663 -71.693 +US 05907 Norton Vermont VT Essex 009 44.9888 -71.7884 +US 05441 Bakersfield Vermont VT Franklin 011 44.7914 -72.7697 +US 05447 East Berkshire Vermont VT Franklin 011 44.931 -72.7028 +US 05448 East Fairfield Vermont VT Franklin 011 44.7412 -72.8827 +US 05450 Enosburg Falls Vermont VT Franklin 011 44.8985 -72.791 +US 05454 Fairfax Vermont VT Franklin 011 44.6924 -73.0241 +US 05455 Fairfield Vermont VT Franklin 011 44.7841 -73.0222 +US 05457 Franklin Vermont VT Franklin 011 44.9614 -72.9037 +US 05459 Highgate Center Vermont VT Franklin 011 44.9404 -73.0155 +US 05460 Highgate Springs Vermont VT Franklin 011 44.9748 -73.1052 +US 05470 Montgomery Vermont VT Franklin 011 44.8249 -72.8958 +US 05471 Montgomery Center Vermont VT Franklin 011 44.8482 -72.6198 +US 05476 Richford Vermont VT Franklin 011 44.9715 -72.6905 +US 05478 Saint Albans Vermont VT Franklin 011 44.8111 -73.089 +US 05479 Saint Albans Vermont VT Franklin 011 44.8249 -72.8958 +US 05481 Saint Albans Bay Vermont VT Franklin 011 44.8249 -72.8958 +US 05483 Sheldon Vermont VT Franklin 011 44.8872 -72.953 +US 05485 Sheldon Springs Vermont VT Franklin 011 44.9056 -72.9632 +US 05488 Swanton Vermont VT Franklin 011 44.9168 -73.1211 +US 05440 Alburg Vermont VT Grand Isle 013 44.9685 -73.281 +US 05458 Grand Isle Vermont VT Grand Isle 013 44.7197 -73.3056 +US 05463 Isle La Motte Vermont VT Grand Isle 013 44.8781 -73.3386 +US 05474 North Hero Vermont VT Grand Isle 013 44.8353 -73.2778 +US 05486 South Hero Vermont VT Grand Isle 013 44.64 -73.3113 +US 05442 Belvidere Center Vermont VT Lamoille 015 44.7248 -72.7016 +US 05444 Cambridge Vermont VT Lamoille 015 44.6222 -72.8812 +US 05464 Jeffersonville Vermont VT Lamoille 015 44.6388 -72.822 +US 05492 Waterville Vermont VT Lamoille 015 44.7124 -72.7596 +US 05652 Eden Vermont VT Lamoille 015 44.7343 -72.5863 +US 05653 Eden Mills Vermont VT Lamoille 015 44.6931 -72.5134 +US 05655 Hyde Park Vermont VT Lamoille 015 44.6225 -72.595 +US 05656 Johnson Vermont VT Lamoille 015 44.642 -72.6712 +US 05657 Lake Elmore Vermont VT Lamoille 015 44.5999 -72.6475 +US 05661 Morrisville Vermont VT Lamoille 015 44.5543 -72.6026 +US 05662 Moscow Vermont VT Lamoille 015 44.442 -72.7188 +US 05665 North Hyde Park Vermont VT Lamoille 015 44.6731 -72.5971 +US 05672 Stowe Vermont VT Lamoille 015 44.4695 -72.6923 +US 05680 Wolcott Vermont VT Lamoille 015 44.5558 -72.4844 +US 05033 Bradford Vermont VT Orange 017 44.0006 -72.1406 +US 05036 Brookfield Vermont VT Orange 017 44.0321 -72.5953 +US 05038 Chelsea Vermont VT Orange 017 44.0039 -72.4793 +US 05039 Corinth Vermont VT Orange 017 44.0325 -72.2822 +US 05040 East Corinth Vermont VT Orange 017 44.0619 -72.2151 +US 05041 East Randolph Vermont VT Orange 017 43.9553 -72.5487 +US 05043 East Thetford Vermont VT Orange 017 43.8073 -72.2147 +US 05044 Ely Vermont VT Orange County 017 43.8764 -72.1769 +US 05045 Fairlee Vermont VT Orange 017 43.901 -72.1902 +US 05051 Newbury Vermont VT Orange 017 44.0683 -72.1187 +US 05054 North Thetford Vermont VT Orange 017 43.996 -72.4114 +US 05058 Post Mills Vermont VT Orange 017 43.8858 -72.27 +US 05060 Randolph Vermont VT Orange 017 43.9444 -72.6726 +US 05061 Randolph Center Vermont VT Orange 017 43.9379 -72.597 +US 05070 South Strafford Vermont VT Orange 017 43.8282 -72.37 +US 05072 Strafford Vermont VT Orange 017 43.8723 -72.3636 +US 05074 Thetford Vermont VT Orange 017 43.996 -72.4114 +US 05075 Thetford Center Vermont VT Orange 017 43.8149 -72.2662 +US 05076 East Corinth Vermont VT Orange 017 44.1506 -72.2324 +US 05077 Tunbridge Vermont VT Orange 017 43.9169 -72.4786 +US 05079 Vershire Vermont VT Orange 017 43.9618 -72.319 +US 05081 Wells River Vermont VT Orange 017 44.1524 -72.053 +US 05083 West Fairlee Vermont VT Orange 017 43.9189 -72.2681 +US 05085 West Newbury Vermont VT Orange 017 43.996 -72.4114 +US 05086 West Topsham Vermont VT Orange 017 44.1199 -72.2701 +US 05675 Washington Vermont VT Orange 017 44.0782 -72.4263 +US 05679 Williamstown Vermont VT Orange 017 44.1182 -72.5381 +US 05820 Albany Vermont VT Orleans 019 44.7417 -72.3646 +US 05822 Barton Vermont VT Orleans 019 44.7395 -72.16 +US 05823 Beebe Plain Vermont VT Orleans 019 45.0058 -72.1383 +US 05825 Coventry Vermont VT Orleans 019 44.7756 -72.2264 +US 05826 Craftsbury Vermont VT Orleans 019 44.6434 -72.366 +US 05827 Craftsbury Common Vermont VT Orleans 019 44.6788 -72.3594 +US 05829 Derby Vermont VT Orleans 019 44.9502 -72.1376 +US 05830 Derby Line Vermont VT Orleans 019 44.9902 -72.0824 +US 05833 East Charleston Vermont VT Orleans 019 44.8299 -71.9763 +US 05839 Glover Vermont VT Orleans 019 44.6747 -72.2131 +US 05841 Greensboro Vermont VT Orleans 019 44.5951 -72.285 +US 05842 Greensboro Bend Vermont VT Orleans 019 44.7756 -72.2264 +US 05845 Irasburg Vermont VT Orleans 019 44.8081 -72.2763 +US 05847 Lowell Vermont VT Orleans 019 44.7961 -72.4501 +US 05853 Morgan Vermont VT Orleans 019 44.8787 -71.9714 +US 05855 Newport Vermont VT Orleans 019 44.9393 -72.2065 +US 05857 Newport Center Vermont VT Orleans 019 44.9442 -72.2974 +US 05859 North Troy Vermont VT Orleans 019 44.9378 -72.4334 +US 05860 Orleans Vermont VT Orleans 019 44.8238 -72.102 +US 05868 Troy Vermont VT Orleans 019 44.7756 -72.2264 +US 05872 West Charleston Vermont VT Orleans 019 44.8729 -72.0521 +US 05874 Westfield Vermont VT Orleans 019 44.8825 -72.4396 +US 05875 West Glover Vermont VT Orleans 019 44.7031 -72.2599 +US 05701 Rutland Vermont VT Rutland 021 43.6141 -72.9708 +US 05702 Rutland Vermont VT Rutland 021 43.4128 -72.9906 +US 05730 Belmont Vermont VT Rutland 021 43.4284 -72.8257 +US 05731 Benson Vermont VT Rutland 021 43.6877 -73.2919 +US 05732 Bomoseen Vermont VT Rutland 021 43.6437 -73.2094 +US 05733 Brandon Vermont VT Rutland 021 43.8065 -73.0882 +US 05735 Castleton Vermont VT Rutland 021 43.6223 -73.1708 +US 05736 Center Rutland Vermont VT Rutland 021 43.6023 -73.017 +US 05737 Chittenden Vermont VT Rutland 021 43.7132 -72.9252 +US 05738 Cuttingsville Vermont VT Rutland 021 43.5221 -72.8691 +US 05739 Danby Vermont VT Rutland 021 43.3583 -73.0129 +US 05741 East Poultney Vermont VT Rutland 021 43.592 -72.8181 +US 05742 East Wallingford Vermont VT Rutland 021 43.4461 -72.8844 +US 05743 Fair Haven Vermont VT Rutland 021 43.6234 -73.2701 +US 05744 Florence Vermont VT Rutland 021 43.7093 -73.079 +US 05745 Forest Dale Vermont VT Rutland 021 43.592 -72.8181 +US 05750 Hydeville Vermont VT Rutland 021 43.5994 -73.251 +US 05751 Killington Vermont VT Rutland 021 43.6634 -72.7963 +US 05757 Middletown Springs Vermont VT Rutland 021 43.4783 -73.0604 +US 05758 Mount Holly Vermont VT Rutland 021 43.4487 -72.7956 +US 05759 North Clarendon Vermont VT Rutland 021 43.5522 -72.9561 +US 05761 Pawlet Vermont VT Rutland 021 43.3587 -73.1444 +US 05762 Pittsfield Vermont VT Rutland 021 43.592 -72.8181 +US 05763 Pittsford Vermont VT Rutland 021 43.7152 -73.0135 +US 05764 Poultney Vermont VT Rutland 021 43.5332 -73.2253 +US 05765 Proctor Vermont VT Rutland 021 43.658 -73.0348 +US 05773 Wallingford Vermont VT Rutland 021 43.4573 -72.9877 +US 05774 Wells Vermont VT Rutland 021 43.4305 -73.2027 +US 05775 West Pawlet Vermont VT Rutland 021 43.3667 -73.2313 +US 05777 West Rutland Vermont VT Rutland 021 43.5781 -73.0424 +US 05601 Montpelier Vermont VT Washington 023 44.1991 -72.5596 +US 05602 Montpelier Vermont VT Washington 023 44.2641 -72.577 +US 05603 Montpelier Vermont VT Washington 023 44.1566 -72.6559 +US 05604 Montpelier Vermont VT Washington 023 44.2595 -72.585 +US 05609 Montpelier Vermont VT Washington 023 44.2595 -72.585 +US 05620 Montpelier Vermont VT Washington 023 44.2595 -72.585 +US 05633 Montpelier Vermont VT Washington 023 44.2595 -72.585 +US 05640 Adamant Vermont VT Washington 023 44.3575 -72.5046 +US 05641 Barre Vermont VT Washington 023 44.1945 -72.4936 +US 05647 Cabot Vermont VT Washington 023 44.4042 -72.3064 +US 05648 Calais Vermont VT Washington 023 44.3934 -72.4741 +US 05649 East Barre Vermont VT Washington 023 44.1576 -72.4533 +US 05650 East Calais Vermont VT Washington 023 44.38 -72.4419 +US 05651 East Montpelier Vermont VT Washington 023 44.2828 -72.4926 +US 05654 Graniteville Vermont VT Washington 023 44.1554 -72.4847 +US 05658 Marshfield Vermont VT Washington 023 44.3218 -72.375 +US 05660 Moretown Vermont VT Washington 023 44.2596 -72.7494 +US 05663 Northfield Vermont VT Washington 023 44.1809 -72.6789 +US 05664 Northfield Falls Vermont VT Washington 023 44.1835 -72.6466 +US 05666 North Montpelier Vermont VT Washington 023 44.2595 -72.585 +US 05667 Plainfield Vermont VT Washington 023 44.2622 -72.4224 +US 05670 South Barre Vermont VT Washington 023 44.1757 -72.5025 +US 05671 Waterbury Vermont VT Washington 023 44.2595 -72.585 +US 05673 Waitsfield Vermont VT Washington 023 44.1889 -72.8283 +US 05674 Warren Vermont VT Washington 023 44.111 -72.8609 +US 05676 Waterbury Vermont VT Washington 023 44.3451 -72.7798 +US 05677 Waterbury Center Vermont VT Washington 023 44.3828 -72.708 +US 05678 Websterville Vermont VT Washington 023 44.1558 -72.4658 +US 05681 Woodbury Vermont VT Washington 023 44.4548 -72.4036 +US 05682 Worcester Vermont VT Washington 023 44.3944 -72.5609 +US 05101 Bellows Falls Vermont VT Windham 025 43.1482 -72.4664 +US 05141 Cambridgeport Vermont VT Windham 025 42.9947 -72.7204 +US 05146 Grafton Vermont VT Windham 025 43.1601 -72.5972 +US 05148 Londonderry Vermont VT Windham 025 43.2281 -72.788 +US 05154 Saxtons River Vermont VT Windham 025 43.1647 -72.5319 +US 05155 South Londonderry Vermont VT Windham 025 43.1699 -72.8515 +US 05158 Westminster Vermont VT Windham 025 43.0826 -72.4749 +US 05159 Westminster Station Vermont VT Windham 025 43.094 -72.4565 +US 05301 Brattleboro Vermont VT Windham 025 42.8574 -72.5933 +US 05302 Brattleboro Vermont VT Windham 025 42.9947 -72.7204 +US 05303 Brattleboro Vermont VT Windham 025 42.9947 -72.7204 +US 05304 Brattleboro Vermont VT Windham 025 42.9947 -72.7204 +US 05341 East Dover Vermont VT Windham 025 42.9505 -72.783 +US 05342 Jacksonville Vermont VT Windham 025 42.7778 -72.8071 +US 05343 Jamaica Vermont VT Windham 025 43.1042 -72.7944 +US 05344 Marlboro Vermont VT Windham 025 42.9947 -72.7204 +US 05345 Newfane Vermont VT Windham 025 42.9704 -72.6781 +US 05346 Putney Vermont VT Windham 025 43.0356 -72.5123 +US 05351 South Newfane Vermont VT Windham 025 42.9391 -72.7292 +US 05353 Townshend Vermont VT Windham 025 43.0622 -72.6687 +US 05354 Vernon Vermont VT Windham 025 42.7565 -72.5115 +US 05355 Wardsboro Vermont VT Windham 025 43.0326 -72.8077 +US 05356 West Dover Vermont VT Windham 025 42.9535 -72.8687 +US 05357 West Dummerston Vermont VT Windham 025 42.9572 -72.6241 +US 05358 West Halifax Vermont VT Windham 025 42.7761 -72.7501 +US 05359 West Townshend Vermont VT Windham 025 43.13 -72.721 +US 05360 West Wardsboro Vermont VT Windham 025 43.0472 -72.8805 +US 05361 Whitingham Vermont VT Windham 025 42.7901 -72.856 +US 05362 Williamsville Vermont VT Windham 025 42.9364 -72.6611 +US 05363 Wilmington Vermont VT Windham 025 42.8812 -72.8613 +US 05001 White River Junction Vermont VT Windsor 027 43.6722 -72.3813 +US 05009 White River Junction Vermont VT Windsor 027 43.592 -72.5884 +US 05030 Ascutney Vermont VT Windsor 027 43.4107 -72.4298 +US 05031 Barnard Vermont VT Windsor 027 43.6576 -72.5459 +US 05032 Bethel Vermont VT Windsor 027 43.8195 -72.6528 +US 05034 Bridgewater Vermont VT Windsor 027 43.5804 -72.6467 +US 05035 Bridgewater Corners Vermont VT Windsor 027 43.5998 -72.6752 +US 05037 Brownsville Vermont VT Windsor 027 43.4646 -72.4944 +US 05047 Hartford Vermont VT Windsor 027 43.6721 -72.3555 +US 05048 Hartland Vermont VT Windsor 027 43.5708 -72.4131 +US 05049 Hartland Four Corners Vermont VT Windsor 027 43.592 -72.5884 +US 05052 North Hartland Vermont VT Windsor 027 43.5967 -72.3526 +US 05053 North Pomfret Vermont VT Windsor 027 43.7204 -72.4943 +US 05055 Norwich Vermont VT Windsor 027 43.7404 -72.3016 +US 05056 Plymouth Vermont VT Windsor 027 43.4987 -72.7107 +US 05059 Quechee Vermont VT Windsor 027 43.6641 -72.4331 +US 05062 Reading Vermont VT Windsor 027 43.4793 -72.5704 +US 05065 Sharon Vermont VT Windsor 027 43.7748 -72.4243 +US 05067 South Pomfret Vermont VT Windsor 027 43.6797 -72.5349 +US 05068 South Royalton Vermont VT Windsor 027 43.8089 -72.5232 +US 05071 South Woodstock Vermont VT Windsor 027 43.5601 -72.5384 +US 05073 Taftsville Vermont VT Windsor 027 43.6309 -72.4891 +US 05084 West Hartford Vermont VT Windsor 027 43.7185 -72.4439 +US 05088 Wilder Vermont VT Windsor 027 43.6735 -72.312 +US 05089 Windsor Vermont VT Windsor 027 43.476 -72.411 +US 05091 Woodstock Vermont VT Windsor 027 43.6248 -72.5385 +US 05142 Cavendish Vermont VT Windsor 027 43.3766 -72.6092 +US 05143 Chester Vermont VT Windsor 027 43.2831 -72.6031 +US 05144 Chester Depot Vermont VT Windsor 027 43.592 -72.5884 +US 05149 Ludlow Vermont VT Windsor 027 43.3929 -72.7002 +US 05150 North Springfield Vermont VT Windsor 027 43.338 -72.5277 +US 05151 Perkinsville Vermont VT Windsor 027 43.3879 -72.5038 +US 05153 Proctorsville Vermont VT Windsor 027 43.4399 -72.6207 +US 05156 Springfield Vermont VT Windsor 027 43.3034 -72.4778 +US 05161 Weston Vermont VT Windsor 027 43.2941 -72.7935 +US 05746 Gaysville Vermont VT Windsor 027 43.592 -72.5884 +US 05767 Rochester Vermont VT Windsor 027 43.8804 -72.8159 +US 05772 Stockbridge Vermont VT Windsor 027 43.7738 -72.7814 +US 99105 Benge Washington WA Adams 001 46.8591 -118.1611 +US 99169 Ritzville Washington WA Adams 001 47.1315 -118.3958 +US 99327 Cunningham Washington WA Adams 001 46.8289 -118.8292 +US 99332 Hatton Washington WA Adams 001 46.7706 -118.8 +US 99341 Lind Washington WA Adams 001 46.956 -118.7061 +US 99344 Othello Washington WA Adams 001 46.8527 -118.9932 +US 99371 Washtucna Washington WA Adams 001 46.8209 -118.2862 +US 99401 Anatone Washington WA Asotin 003 46.1285 -117.0883 +US 99402 Asotin Washington WA Asotin 003 46.1343 -117.0015 +US 99403 Clarkston Washington WA Asotin 003 46.3946 -117.0645 +US 99320 Benton City Washington WA Benton 005 46.2806 -119.4913 +US 99336 Kennewick Washington WA Benton 005 46.2109 -119.168 +US 99337 Kennewick Washington WA Benton 005 46.1814 -119.1383 +US 99338 Kennewick Washington WA Benton 005 46.156 -119.264 +US 99345 Paterson Washington WA Benton 005 45.9911 -119.7559 +US 99346 Plymouth Washington WA Benton 005 45.9301 -119.4023 +US 99350 Prosser Washington WA Benton 005 46.2232 -119.771 +US 99352 Richland Washington WA Benton 005 46.2522 -119.288 +US 99353 West Richland Washington WA Benton 005 46.3153 -119.3714 +US 99354 Richland Washington WA Benton County 005 46.3257 -119.3067 +US 98801 Wenatchee Washington WA Chelan 007 47.4253 -120.3273 +US 98807 Wenatchee Washington WA Chelan 007 47.9058 -120.5202 +US 98811 Ardenvoir Washington WA Chelan 007 47.7085 -120.3291 +US 98815 Cashmere Washington WA Chelan 007 47.5173 -120.5033 +US 98816 Chelan Washington WA Chelan 007 47.8483 -120.0273 +US 98817 Chelan Falls Washington WA Chelan 007 47.8418 -119.9579 +US 98821 Dryden Washington WA Chelan 007 47.5822 -120.596 +US 98822 Entiat Washington WA Chelan 007 47.7057 -120.276 +US 98826 Leavenworth Washington WA Chelan 007 47.6438 -120.6748 +US 98828 Malaga Washington WA Chelan 007 47.3553 -120.2086 +US 98831 Manson Washington WA Chelan 007 47.8958 -120.149 +US 98836 Monitor Washington WA Chelan 007 47.4852 -120.4158 +US 98847 Peshastin Washington WA Chelan 007 47.5458 -120.5961 +US 98852 Stehekin Washington WA Chelan 007 47.9058 -120.5202 +US 98305 Beaver Washington WA Clallam 009 48.0673 -124.3054 +US 98324 Carlsborg Washington WA Clallam 009 48.1831 -123.873 +US 98326 Clallam Bay Washington WA Clallam 009 48.2255 -124.2015 +US 98331 Forks Washington WA Clallam 009 47.9287 -124.3989 +US 98334 Sequim Washington WA Clallam County 009 48.05 -122.9145 +US 98343 Joyce Washington WA Clallam 009 48.1831 -123.873 +US 98350 La Push Washington WA Clallam 009 47.9052 -124.6261 +US 98357 Neah Bay Washington WA Clallam 009 48.328 -124.6151 +US 98362 Port Angeles Washington WA Clallam 009 48.1065 -123.4384 +US 98363 Port Angeles Washington WA Clallam 009 48.0557 -123.9178 +US 98381 Sekiu Washington WA Clallam 009 48.3032 -124.4685 +US 98382 Sequim Washington WA Clallam 009 48.0881 -123.1198 +US 98601 Amboy Washington WA Clark 011 45.9195 -122.4574 +US 98604 Battle Ground Washington WA Clark 011 45.7907 -122.5318 +US 98606 Brush Prairie Washington WA Clark 011 45.7304 -122.4843 +US 98607 Camas Washington WA Clark 011 45.6058 -122.4142 +US 98622 Heisson Washington WA Clark 011 45.8016 -122.5203 +US 98629 La Center Washington WA Clark 011 45.8806 -122.624 +US 98642 Ridgefield Washington WA Clark 011 45.7846 -122.6934 +US 98660 Vancouver Washington WA Clark 011 45.6418 -122.6801 +US 98661 Vancouver Washington WA Clark 011 45.6418 -122.6251 +US 98662 Vancouver Washington WA Clark 011 45.6914 -122.5805 +US 98663 Vancouver Washington WA Clark 011 45.6514 -122.6604 +US 98664 Vancouver Washington WA Clark 011 45.6231 -122.5767 +US 98665 Vancouver Washington WA Clark 011 45.6892 -122.6616 +US 98666 Vancouver Washington WA Clark 011 45.8016 -122.5203 +US 98667 Vancouver Washington WA Clark 011 45.8016 -122.5203 +US 98668 Vancouver Washington WA Clark 011 45.8016 -122.5203 +US 98671 Washougal Washington WA Clark 011 45.5959 -122.3104 +US 98675 Yacolt Washington WA Clark 011 45.8622 -122.4275 +US 98682 Vancouver Washington WA Clark 011 45.6644 -122.5212 +US 98683 Vancouver Washington WA Clark 011 45.6032 -122.5133 +US 98684 Vancouver Washington WA Clark 011 45.6359 -122.5155 +US 98685 Vancouver Washington WA Clark 011 45.7162 -122.6899 +US 98686 Vancouver Washington WA Clark 011 45.712 -122.6322 +US 98687 Vancouver Washington WA Clark 011 45.8016 -122.5203 +US 99328 Dayton Washington WA Columbia 013 46.3075 -117.9738 +US 99359 Starbuck Washington WA Columbia 013 46.5128 -118.1024 +US 98581 Ryderwood Washington WA Cowlitz 015 46.3752 -123.0431 +US 98603 Ariel Washington WA Cowlitz 015 45.9952 -122.4677 +US 98609 Carrolls Washington WA Cowlitz 015 46.0715 -122.8648 +US 98611 Castle Rock Washington WA Cowlitz 015 46.2783 -122.9139 +US 98616 Cougar Washington WA Cowlitz 015 46.069 -122.2942 +US 98625 Kalama Washington WA Cowlitz 015 46.0112 -122.8166 +US 98626 Kelso Washington WA Cowlitz 015 46.1485 -122.887 +US 98632 Longview Washington WA Cowlitz 015 46.1514 -122.9634 +US 98645 Silverlake Washington WA Cowlitz 015 46.3163 -122.7649 +US 98649 Toutle Washington WA Cowlitz 015 46.2956 -122.6477 +US 98674 Woodland Washington WA Cowlitz 015 45.9219 -122.7126 +US 98802 East Wenatchee Washington WA Douglas 017 47.4186 -120.2731 +US 98813 Bridgeport Washington WA Douglas 017 48.0161 -119.7028 +US 98830 Mansfield Washington WA Douglas 017 47.9021 -119.4053 +US 98843 Orondo Washington WA Douglas 017 47.6969 -120.1721 +US 98845 Palisades Washington WA Douglas 017 47.4694 -119.8023 +US 98850 Rock Island Washington WA Douglas 017 47.3706 -120.1378 +US 98858 Waterville Washington WA Douglas 017 47.6295 -119.9887 +US 99107 Boyds Washington WA Ferry 019 48.8427 -118.1828 +US 99118 Curlew Washington WA Ferry 019 48.9108 -118.6452 +US 99121 Danville Washington WA Ferry 019 48.9725 -118.4884 +US 99138 Inchelium Washington WA Ferry 019 48.2924 -118.3552 +US 99140 Keller Washington WA Ferry 019 48.0236 -118.6547 +US 99146 Laurier Washington WA Ferry 019 48.9753 -118.2208 +US 99150 Malo Washington WA Ferry 019 48.811 -118.6044 +US 99160 Orient Washington WA Ferry 019 48.8878 -118.2105 +US 99166 Republic Washington WA Ferry 019 48.6704 -118.6999 +US 99301 Pasco Washington WA Franklin 021 46.2492 -119.1044 +US 99302 Pasco Washington WA Franklin 021 46.235 -119.0943 +US 99326 Connell Washington WA Franklin 021 46.6643 -118.8545 +US 99330 Eltopia Washington WA Franklin 021 46.475 -119.1013 +US 99335 Kahlotus Washington WA Franklin 021 46.6779 -118.5337 +US 99343 Mesa Washington WA Franklin 021 46.5782 -119.1373 +US 99347 Pomeroy Washington WA Garfield 023 46.4698 -117.5993 +US 98823 Ephrata Washington WA Grant 025 47.2771 -119.5336 +US 98824 George Washington WA Grant 025 47.0792 -119.8601 +US 98832 Marlin Washington WA Grant 025 47.3014 -119.064 +US 98837 Moses Lake Washington WA Grant 025 47.1374 -119.2891 +US 98848 Quincy Washington WA Grant 025 47.1976 -119.8459 +US 98851 Soap Lake Washington WA Grant 025 47.383 -119.486 +US 98853 Stratford Washington WA Grant 025 47.4043 -119.313 +US 98857 Warden Washington WA Grant 025 46.977 -119.0539 +US 98860 Wilson Creek Washington WA Grant 025 47.4739 -119.1847 +US 99115 Coulee City Washington WA Grant 025 47.5966 -119.2758 +US 99123 Electric City Washington WA Grant 025 47.9131 -119.0426 +US 99133 Grand Coulee Washington WA Grant 025 47.9385 -118.9978 +US 99135 Hartline Washington WA Grant 025 47.6115 -119.0841 +US 99321 Beverly Washington WA Grant 025 46.8484 -119.9121 +US 99349 Mattawa Washington WA Grant 025 46.731 -119.7783 +US 99357 Royal City Washington WA Grant 025 46.9156 -119.5815 +US 98520 Aberdeen Washington WA Grays Harbor 027 46.9843 -123.7963 +US 98526 Amanda Park Washington WA Grays Harbor 027 47.4859 -123.9206 +US 98535 Copalis Beach Washington WA Grays Harbor 027 47.1491 -124.1397 +US 98536 Copalis Crossing Washington WA Grays Harbor 027 47.1591 -124.1352 +US 98537 Cosmopolis Washington WA Grays Harbor 027 46.9538 -123.7739 +US 98541 Elma Washington WA Grays Harbor 027 47.0058 -123.3997 +US 98547 Grayland Washington WA Grays Harbor 027 46.8264 -124.094 +US 98550 Hoquiam Washington WA Grays Harbor 027 46.9823 -123.8842 +US 98552 Humptulips Washington WA Grays Harbor 027 47.3429 -123.9291 +US 98557 Mccleary Washington WA Grays Harbor 027 47.0297 -123.273 +US 98559 Malone Washington WA Grays Harbor 027 46.9589 -123.3268 +US 98562 Moclips Washington WA Grays Harbor 027 47.2387 -124.2039 +US 98563 Montesano Washington WA Grays Harbor 027 47.0901 -123.5006 +US 98566 Neilton Washington WA Grays Harbor 027 47.3877 -123.8903 +US 98568 Oakville Washington WA Grays Harbor 027 46.8434 -123.2493 +US 98569 Ocean Shores Washington WA Grays Harbor 027 47.072 -124.1525 +US 98571 Pacific Beach Washington WA Grays Harbor 027 47.2195 -124.1915 +US 98575 Quinault Washington WA Grays Harbor 027 47.4603 -123.8307 +US 98583 Satsop Washington WA Grays Harbor 027 47.0022 -123.4836 +US 98587 Taholah Washington WA Grays Harbor 027 47.3407 -124.2827 +US 98595 Westport Washington WA Grays Harbor 027 46.8836 -124.1061 +US 98236 Clinton Washington WA Island 029 47.9508 -122.3916 +US 98239 Coupeville Washington WA Island 029 48.2189 -122.6823 +US 98249 Freeland Washington WA Island 029 48.0342 -122.5641 +US 98253 Greenbank Washington WA Island 029 48.1004 -122.5761 +US 98260 Langley Washington WA Island 029 48.0187 -122.453 +US 98277 Oak Harbor Washington WA Island 029 48.3151 -122.6374 +US 98278 Oak Harbor Washington WA Island 029 48.3402 -122.6695 +US 98320 Brinnon Washington WA Jefferson 031 47.6776 -122.9375 +US 98325 Chimacum Washington WA Jefferson 031 47.9861 -122.7883 +US 98339 Port Hadlock Washington WA Jefferson 031 48.0345 -122.7682 +US 98358 Nordland Washington WA Jefferson 031 48.0432 -122.6926 +US 98365 Port Ludlow Washington WA Jefferson 031 47.9222 -122.6896 +US 98368 Port Townsend Washington WA Jefferson 031 48.104 -122.7945 +US 98376 Quilcene Washington WA Jefferson 031 47.8324 -122.8583 +US 98001 Auburn Washington WA King 033 47.3099 -122.2653 +US 98002 Auburn Washington WA King 033 47.305 -122.2067 +US 98003 Federal Way Washington WA King 033 47.3203 -122.3117 +US 98004 Bellevue Washington WA King 033 47.6155 -122.2072 +US 98005 Bellevue Washington WA King 033 47.615 -122.1663 +US 98006 Bellevue Washington WA King 033 47.5614 -122.1552 +US 98007 Bellevue Washington WA King 033 47.6174 -122.1426 +US 98008 Bellevue Washington WA King 033 47.6115 -122.1162 +US 98009 Bellevue Washington WA King 033 47.4323 -121.8034 +US 98010 Black Diamond Washington WA King 033 47.3114 -122.0053 +US 98011 Bothell Washington WA King 033 47.7497 -122.2159 +US 98013 Burton Washington WA King 033 47.4323 -121.8034 +US 98014 Carnation Washington WA King 033 47.638 -121.9111 +US 98015 Bellevue Washington WA King 033 47.4323 -121.8034 +US 98019 Duvall Washington WA King 033 47.725 -121.9369 +US 98022 Enumclaw Washington WA King 033 47.2665 -122.0314 +US 98023 Federal Way Washington WA King 033 47.3104 -122.3612 +US 98024 Fall City Washington WA King 033 47.5682 -121.8896 +US 98025 Hobart Washington WA King 033 47.5916 -122.056 +US 98027 Issaquah Washington WA King 033 47.4974 -122.0107 +US 98028 Kenmore Washington WA King 033 47.7542 -122.2475 +US 98029 Issaquah Washington WA King 033 47.5585 -122.0055 +US 98030 Kent Washington WA King County 033 47.3866 -122.2109 +US 98031 Kent Washington WA King 033 47.388 -122.1932 +US 98032 Kent Washington WA King 033 47.3776 -122.2854 +US 98033 Kirkland Washington WA King 033 47.6786 -122.1894 +US 98034 Kirkland Washington WA King 033 47.7188 -122.1966 +US 98035 Kent Washington WA King 033 47.4323 -121.8034 +US 98038 Maple Valley Washington WA King 033 47.3845 -122.0574 +US 98039 Medina Washington WA King 033 47.6269 -122.2314 +US 98040 Mercer Island Washington WA King 033 47.5603 -122.2281 +US 98041 Bothell Washington WA King 033 47.4323 -121.8034 +US 98042 Kent Washington WA King 033 47.368 -122.1206 +US 98045 North Bend Washington WA King 033 47.4755 -121.7571 +US 98047 Pacific Washington WA King 033 47.2666 -122.2435 +US 98050 Preston Washington WA King 033 47.536 -121.9312 +US 98051 Ravensdale Washington WA King 033 47.3407 -121.8874 +US 98052 Redmond Washington WA King 033 47.6718 -122.1232 +US 98053 Redmond Washington WA King 033 47.6462 -122.0386 +US 98054 Redondo Washington WA King 033 47.4323 -121.8034 +US 98055 Renton Washington WA King 033 47.4648 -122.2075 +US 98056 Renton Washington WA King 033 47.5073 -122.1819 +US 98057 Renton Washington WA King 033 47.4714 -122.2203 +US 98058 Renton Washington WA King 033 47.4465 -122.1216 +US 98059 Renton Washington WA King 033 47.5058 -122.1157 +US 98060 Seattle Washington WA King 033 47.4323 -121.8034 +US 98062 Seahurst Washington WA King 033 47.4323 -121.8034 +US 98063 Federal Way Washington WA King 033 47.4323 -121.8034 +US 98064 Kent Washington WA King 033 47.4323 -121.8034 +US 98065 Snoqualmie Washington WA King 033 47.5293 -121.8225 +US 98068 Snoqualmie Pass Washington WA King 033 47.4452 -121.431 +US 98070 Vashon Washington WA King 033 47.4259 -122.4644 +US 98071 Auburn Washington WA King 033 47.4323 -121.8034 +US 98072 Woodinville Washington WA King 033 47.7684 -122.1271 +US 98073 Redmond Washington WA King 033 47.4323 -121.8034 +US 98074 Sammamish Washington WA King County 033 47.6254 -122.0462 +US 98075 Sammamish Washington WA King County 033 47.5857 -122.0345 +US 98082 Bothell Washington WA King 033 47.4323 -121.8034 +US 98083 Kirkland Washington WA King 033 47.4323 -121.8034 +US 98089 Kent Washington WA King County 033 47.3871 -122.2023 +US 98092 Auburn Washington WA King 033 47.2884 -122.098 +US 98093 Federal Way Washington WA King 033 47.311 -122.1138 +US 98101 Seattle Washington WA King 033 47.6114 -122.3305 +US 98102 Seattle Washington WA King 033 47.6302 -122.321 +US 98103 Seattle Washington WA King 033 47.6733 -122.3426 +US 98104 Seattle Washington WA King 033 47.6036 -122.3256 +US 98105 Seattle Washington WA King 033 47.6633 -122.3022 +US 98106 Seattle Washington WA King 033 47.5344 -122.3547 +US 98107 Seattle Washington WA King 033 47.6701 -122.3763 +US 98108 Seattle Washington WA King 033 47.5413 -122.3129 +US 98109 Seattle Washington WA King 033 47.6339 -122.3476 +US 98111 Seattle Washington WA King 033 47.4323 -121.8034 +US 98112 Seattle Washington WA King 033 47.6301 -122.2972 +US 98113 Seattle Washington WA King County 033 47.6716 -122.3411 +US 98114 Seattle Washington WA King 033 47.4323 -121.8034 +US 98115 Seattle Washington WA King 033 47.6849 -122.2968 +US 98116 Seattle Washington WA King 033 47.5746 -122.3934 +US 98117 Seattle Washington WA King 033 47.6873 -122.3772 +US 98118 Seattle Washington WA King 033 47.5412 -122.275 +US 98119 Seattle Washington WA King 033 47.6379 -122.3643 +US 98121 Seattle Washington WA King 033 47.6151 -122.3447 +US 98122 Seattle Washington WA King 033 47.6116 -122.3056 +US 98124 Seattle Washington WA King 033 47.4323 -121.8034 +US 98125 Seattle Washington WA King 033 47.717 -122.3015 +US 98126 Seattle Washington WA King 033 47.5444 -122.3735 +US 98127 Seattle Washington WA King County 033 47.6063 -122.3308 +US 98129 Seattle Washington WA King 033 47.4323 -121.8034 +US 98130 Seattle Washington WA King 033 47.4323 -121.8034 +US 98131 Seattle Washington WA King 033 47.4323 -121.8034 +US 98132 Seattle Washington WA King 033 47.4323 -121.8034 +US 98133 Seattle Washington WA King 033 47.7377 -122.3431 +US 98134 Seattle Washington WA King 033 47.5903 -122.3263 +US 98136 Seattle Washington WA King 033 47.5398 -122.3878 +US 98138 Seattle Washington WA King 033 47.4323 -121.8034 +US 98139 Seattle Washington WA King County 033 47.6473 -122.3999 +US 98140 Seattle Washington WA King 033 47.4323 -121.8034 +US 98141 Seattle Washington WA King County 033 47.6157 -122.3445 +US 98144 Seattle Washington WA King 033 47.5846 -122.3005 +US 98145 Seattle Washington WA King 033 47.4323 -121.8034 +US 98146 Seattle Washington WA King 033 47.4995 -122.3603 +US 98148 Seattle Washington WA King 033 47.4441 -122.3249 +US 98150 Seattle Washington WA King 033 47.4323 -121.8034 +US 98151 Seattle Washington WA King 033 47.4323 -121.8034 +US 98154 Seattle Washington WA King 033 47.4323 -121.8034 +US 98155 Seattle Washington WA King 033 47.7559 -122.3003 +US 98158 Seattle Washington WA King 033 47.4497 -122.3076 +US 98160 Seattle Washington WA King 033 47.4323 -121.8034 +US 98161 Seattle Washington WA King 033 47.4323 -121.8034 +US 98164 Seattle Washington WA King 033 47.606 -122.332 +US 98165 Seattle Washington WA King County 033 47.7161 -122.3004 +US 98166 Seattle Washington WA King 033 47.4511 -122.353 +US 98168 Seattle Washington WA King 033 47.4889 -122.3012 +US 98170 Seattle Washington WA King County 033 47.6096 -122.3317 +US 98171 Seattle Washington WA King 033 47.4323 -121.8034 +US 98174 Seattle Washington WA King 033 47.4323 -121.8034 +US 98175 Seattle Washington WA King County 033 47.7161 -122.3004 +US 98177 Seattle Washington WA King 033 47.7467 -122.3686 +US 98178 Seattle Washington WA King 033 47.4924 -122.2359 +US 98181 Seattle Washington WA King 033 47.4323 -121.8034 +US 98184 Seattle Washington WA King 033 47.4323 -121.8034 +US 98185 Seattle Washington WA King 033 47.4323 -121.8034 +US 98188 Seattle Washington WA King 033 47.4483 -122.2731 +US 98190 Seattle Washington WA King 033 47.4323 -121.8034 +US 98191 Seattle Washington WA King 033 47.4323 -121.8034 +US 98194 Seattle Washington WA King County 033 47.6024 -122.326 +US 98195 Seattle Washington WA King 033 47.6564 -122.3048 +US 98198 Seattle Washington WA King 033 47.3929 -122.3129 +US 98199 Seattle Washington WA King 033 47.6488 -122.3964 +US 98224 Baring Washington WA King 033 47.7671 -121.4814 +US 98288 Skykomish Washington WA King 033 47.6922 -121.3713 +US 98061 Rollingbay Washington WA Kitsap 035 47.6808 -122.5762 +US 98110 Bainbridge Island Washington WA Kitsap 035 47.6478 -122.538 +US 98310 Bremerton Washington WA Kitsap 035 47.6019 -122.6299 +US 98311 Bremerton Washington WA Kitsap 035 47.6271 -122.6373 +US 98312 Bremerton Washington WA Kitsap 035 47.5754 -122.6958 +US 98314 Bremerton Washington WA Kitsap 035 47.5593 -122.6492 +US 98315 Silverdale Washington WA Kitsap 035 47.692 -122.7161 +US 98322 Burley Washington WA Kitsap 035 47.688 -122.7293 +US 98337 Bremerton Washington WA Kitsap 035 47.5686 -122.6373 +US 98340 Hansville Washington WA Kitsap 035 47.9061 -122.5655 +US 98342 Indianola Washington WA Kitsap 035 47.7514 -122.5196 +US 98345 Keyport Washington WA Kitsap 035 47.698 -122.6255 +US 98346 Kingston Washington WA Kitsap 035 47.8108 -122.5255 +US 98353 Manchester Washington WA Kitsap 035 47.5952 -122.6225 +US 98359 Olalla Washington WA Kitsap 035 47.4241 -122.5745 +US 98364 Port Gamble Washington WA Kitsap 035 47.8344 -122.5928 +US 98366 Port Orchard Washington WA Kitsap 035 47.5427 -122.5871 +US 98367 Port Orchard Washington WA Kitsap 035 47.4707 -122.651 +US 98370 Poulsbo Washington WA Kitsap 035 47.7423 -122.6277 +US 98378 Retsil Washington WA Kitsap 035 47.688 -122.7293 +US 98380 Seabeck Washington WA Kitsap 035 47.5913 -122.8686 +US 98383 Silverdale Washington WA Kitsap 035 47.6621 -122.6981 +US 98384 South Colby Washington WA Kitsap 035 47.5218 -122.5396 +US 98386 Southworth Washington WA Kitsap 035 47.5104 -122.4991 +US 98392 Suquamish Washington WA Kitsap 035 47.7343 -122.5573 +US 98393 Tracyton Washington WA Kitsap 035 47.6267 -122.65 +US 98922 Cle Elum Washington WA Kittitas 037 47.2063 -120.9685 +US 98925 Easton Washington WA Kittitas 037 47.233 -121.1772 +US 98926 Ellensburg Washington WA Kittitas 037 46.9996 -120.5163 +US 98934 Kittitas Washington WA Kittitas 037 46.9806 -120.4163 +US 98940 Ronald Washington WA Kittitas 037 47.2503 -121.0456 +US 98941 Roslyn Washington WA Kittitas 037 47.2233 -121.0025 +US 98943 South Cle Elum Washington WA Kittitas 037 47.1886 -120.9537 +US 98946 Thorp Washington WA Kittitas 037 47.0739 -120.7583 +US 98950 Vantage Washington WA Kittitas 037 46.8714 -119.9859 +US 98602 Appleton Washington WA Klickitat 039 45.8504 -121.3129 +US 98605 Bingen Washington WA Klickitat 039 45.7751 -121.6328 +US 98613 Centerville Washington WA Klickitat 039 45.7032 -120.946 +US 98617 Dallesport Washington WA Klickitat 039 45.6327 -121.1717 +US 98619 Glenwood Washington WA Klickitat 039 46.0071 -121.2885 +US 98620 Goldendale Washington WA Klickitat 039 45.832 -120.813 +US 98623 Husum Washington WA Klickitat 039 45.8076 -121.4877 +US 98628 Klickitat Washington WA Klickitat 039 45.8562 -121.0443 +US 98635 Lyle Washington WA Klickitat 039 45.745 -121.2501 +US 98650 Trout Lake Washington WA Klickitat 039 45.9828 -121.5163 +US 98670 Wahkiacus Washington WA Klickitat 039 45.859 -121.1409 +US 98672 White Salmon Washington WA Klickitat 039 45.7551 -121.4795 +US 98673 Wishram Washington WA Klickitat 039 45.6415 -121.0732 +US 99322 Bickleton Washington WA Klickitat 039 45.9597 -120.1042 +US 99356 Roosevelt Washington WA Klickitat 039 45.8514 -120.3543 +US 98336 Glenoma Washington WA Lewis 041 46.5283 -122.099 +US 98355 Mineral Washington WA Lewis 041 46.7096 -122.1861 +US 98356 Morton Washington WA Lewis 041 46.5581 -122.2496 +US 98361 Packwood Washington WA Lewis 041 46.65 -121.6553 +US 98377 Randle Washington WA Lewis 041 46.5492 -121.8555 +US 98522 Adna Washington WA Lewis 041 46.5713 -123.2984 +US 98531 Centralia Washington WA Lewis 041 46.7246 -122.9671 +US 98532 Chehalis Washington WA Lewis 041 46.6382 -122.9658 +US 98533 Cinebar Washington WA Lewis 041 46.5793 -122.5687 +US 98538 Curtis Washington WA Lewis 041 46.4956 -123.1468 +US 98539 Doty Washington WA Lewis 041 46.6378 -123.2804 +US 98542 Ethel Washington WA Lewis 041 46.53 -122.724 +US 98544 Galvin Washington WA Lewis 041 46.7349 -123.0254 +US 98564 Mossyrock Washington WA Lewis 041 46.5131 -122.4789 +US 98565 Napavine Washington WA Lewis 041 46.5793 -122.9097 +US 98570 Onalaska Washington WA Lewis 041 46.573 -122.7075 +US 98572 Pe Ell Washington WA Lewis 041 46.5829 -123.3147 +US 98582 Salkum Washington WA Lewis 041 46.5151 -122.6454 +US 98585 Silver Creek Washington WA Lewis 041 46.5491 -122.4757 +US 98591 Toledo Washington WA Lewis 041 46.4396 -122.8266 +US 98593 Vader Washington WA Lewis 041 46.3985 -122.9585 +US 98596 Winlock Washington WA Lewis 041 46.494 -122.9158 +US 99008 Edwall Washington WA Lincoln 043 47.5379 -117.9071 +US 99032 Sprague Washington WA Lincoln 043 47.3247 -117.9897 +US 99103 Almira Washington WA Lincoln 043 47.7632 -118.9123 +US 99117 Creston Washington WA Lincoln 043 47.7977 -118.5307 +US 99122 Davenport Washington WA Lincoln 043 47.6809 -118.1667 +US 99134 Harrington Washington WA Lincoln 043 47.4555 -118.2778 +US 99144 Lamona Washington WA Lincoln 043 47.3778 -118.5043 +US 99147 Lincoln Washington WA Lincoln 043 47.8396 -118.4426 +US 99154 Mohler Washington WA Lincoln 043 47.3897 -118.3659 +US 99159 Odessa Washington WA Lincoln 043 47.3395 -118.6983 +US 99185 Wilbur Washington WA Lincoln 043 47.741 -118.7063 +US 98524 Allyn Washington WA Mason 045 47.3571 -122.8587 +US 98528 Belfair Washington WA Mason 045 47.4325 -122.9289 +US 98546 Grapeview Washington WA Mason 045 47.3273 -122.9163 +US 98548 Hoodsport Washington WA Mason 045 47.4235 -123.1739 +US 98555 Lilliwaup Washington WA Mason 045 47.5128 -123.0631 +US 98560 Matlock Washington WA Mason 045 47.2636 -123.4412 +US 98584 Shelton Washington WA Mason 045 47.2633 -123.1597 +US 98588 Tahuya Washington WA Mason 045 47.4446 -123.0232 +US 98592 Union Washington WA Mason 045 47.3368 -123.075 +US 98812 Brewster Washington WA Okanogan 047 48.1206 -119.772 +US 98814 Carlton Washington WA Okanogan 047 48.2526 -120.1055 +US 98819 Conconully Washington WA Okanogan 047 48.5469 -119.7526 +US 98827 Loomis Washington WA Okanogan 047 48.8696 -119.6427 +US 98829 Malott Washington WA Okanogan 047 48.248 -119.7525 +US 98833 Mazama Washington WA Okanogan 047 48.5977 -120.388 +US 98834 Methow Washington WA Okanogan 047 48.1171 -120.0891 +US 98840 Okanogan Washington WA Okanogan 047 48.3513 -119.6046 +US 98841 Omak Washington WA Okanogan 047 48.4143 -119.5272 +US 98844 Oroville Washington WA Okanogan 047 48.9397 -119.4032 +US 98846 Pateros Washington WA Okanogan 047 48.034 -119.9785 +US 98849 Riverside Washington WA Okanogan 047 48.4876 -119.5803 +US 98855 Tonasket Washington WA Okanogan 047 48.7194 -119.3943 +US 98856 Twisp Washington WA Okanogan 047 48.3632 -120.135 +US 98859 Wauconda Washington WA Okanogan 047 48.8224 -118.9469 +US 98862 Winthrop Washington WA Okanogan 047 48.4756 -120.1805 +US 99116 Coulee Dam Washington WA Okanogan 047 48.0379 -118.9419 +US 99124 Elmer City Washington WA Okanogan 047 48.0154 -118.9549 +US 99155 Nespelem Washington WA Okanogan 047 48.1434 -119.0094 +US 98527 Bay Center Washington WA Pacific 049 46.6371 -123.885 +US 98554 Lebam Washington WA Pacific 049 46.5614 -123.5479 +US 98561 Menlo Washington WA Pacific 049 46.5146 -123.769 +US 98577 Raymond Washington WA Pacific 049 46.671 -123.6929 +US 98586 South Bend Washington WA Pacific 049 46.6544 -123.8203 +US 98590 Tokeland Washington WA Pacific 049 46.7469 -124.046 +US 98614 Chinook Washington WA Pacific 049 46.263 -123.9332 +US 98624 Ilwaco Washington WA Pacific 049 46.3142 -124.0282 +US 98631 Long Beach Washington WA Pacific 049 46.3774 -124.047 +US 98637 Nahcotta Washington WA Pacific 049 46.5146 -123.769 +US 98638 Naselle Washington WA Pacific 049 46.3528 -123.8044 +US 98640 Ocean Park Washington WA Pacific 049 46.5029 -124.0436 +US 98641 Oysterville Washington WA Pacific 049 46.5448 -124.0427 +US 98644 Seaview Washington WA Pacific 049 46.3308 -124.0455 +US 99119 Cusick Washington WA Pend Oreille 051 48.3915 -117.3295 +US 99139 Ione Washington WA Pend Oreille 051 48.7377 -117.3647 +US 99152 Metaline Washington WA Pend Oreille 051 48.8496 -117.3963 +US 99153 Metaline Falls Washington WA Pend Oreille 051 48.8597 -117.3633 +US 99156 Newport Washington WA Pend Oreille 051 48.1695 -117.1508 +US 99180 Usk Washington WA Pend Oreille 051 48.296 -117.3189 +US 98303 Anderson Island Washington WA Pierce 053 47.1563 -122.7067 +US 98304 Ashford Washington WA Pierce 053 46.7531 -121.9898 +US 98321 Buckley Washington WA Pierce 053 47.1524 -122.0621 +US 98323 Carbonado Washington WA Pierce 053 47.0802 -122.0513 +US 98327 Dupont Washington WA Pierce 053 47.0909 -122.6567 +US 98328 Eatonville Washington WA Pierce 053 46.8708 -122.2696 +US 98329 Gig Harbor Washington WA Pierce 053 47.3786 -122.7 +US 98330 Elbe Washington WA Pierce 053 46.7777 -122.2023 +US 98332 Gig Harbor Washington WA Pierce 053 47.3607 -122.6001 +US 98333 Fox Island Washington WA Pierce 053 47.248 -122.629 +US 98335 Gig Harbor Washington WA Pierce 053 47.3002 -122.6084 +US 98338 Graham Washington WA Pierce 053 47.0246 -122.2936 +US 98344 Kapowsin Washington WA Pierce 053 46.9899 -122.2226 +US 98348 La Grande Washington WA Pierce 053 47.0662 -122.1132 +US 98349 Lakebay Washington WA Pierce 053 47.2886 -122.7776 +US 98351 Longbranch Washington WA Pierce 053 47.2007 -122.7561 +US 98352 Sumner Washington WA Pierce 053 47.0662 -122.1132 +US 98354 Milton Washington WA Pierce 053 47.2483 -122.3155 +US 98360 Orting Washington WA Pierce 053 47.0822 -122.186 +US 98371 Puyallup Washington WA Pierce 053 47.1991 -122.3151 +US 98372 Puyallup Washington WA Pierce 053 47.2042 -122.2734 +US 98373 Puyallup Washington WA Pierce 053 47.1284 -122.3219 +US 98374 Puyallup Washington WA Pierce 053 47.1424 -122.2652 +US 98375 Puyallup Washington WA Pierce 053 47.1037 -122.3235 +US 98385 South Prairie Washington WA Pierce 053 47.1383 -122.0968 +US 98387 Spanaway Washington WA Pierce 053 47.0732 -122.3943 +US 98388 Steilacoom Washington WA Pierce 053 47.1704 -122.5888 +US 98390 Sumner Washington WA Pierce 053 47.2099 -122.228 +US 98391 Bonney Lake Washington WA Pierce County 053 47.143 -122.1644 +US 98394 Vaughn Washington WA Pierce 053 47.3309 -122.7736 +US 98395 Wauna Washington WA Pierce 053 47.266 -122.8328 +US 98396 Wilkeson Washington WA Pierce 053 47.1095 -122.037 +US 98397 Longmire Washington WA Pierce 053 47.0662 -122.1132 +US 98398 Paradise Inn Washington WA Pierce 053 47.0662 -122.1132 +US 98401 Tacoma Washington WA Pierce 053 47.2537 -122.4443 +US 98402 Tacoma Washington WA Pierce 053 47.2545 -122.4405 +US 98403 Tacoma Washington WA Pierce 053 47.2643 -122.4575 +US 98404 Tacoma Washington WA Pierce 053 47.2113 -122.4126 +US 98405 Tacoma Washington WA Pierce 053 47.2484 -122.4643 +US 98406 Tacoma Washington WA Pierce 053 47.2632 -122.4993 +US 98407 Tacoma Washington WA Pierce 053 47.2825 -122.5039 +US 98408 Tacoma Washington WA Pierce 053 47.2073 -122.4444 +US 98409 Tacoma Washington WA Pierce 053 47.2038 -122.4825 +US 98411 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98412 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98413 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98415 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98416 Tacoma Washington WA Pierce 053 47.2646 -122.4821 +US 98417 Tacoma Washington WA Pierce County 053 47.2061 -122.4822 +US 98418 Tacoma Washington WA Pierce 053 47.2232 -122.4465 +US 98419 Tacoma Washington WA Pierce County 053 47.2061 -122.4822 +US 98421 Tacoma Washington WA Pierce 053 47.2664 -122.4015 +US 98422 Tacoma Washington WA Pierce 053 47.2948 -122.3983 +US 98424 Tacoma Washington WA Pierce 053 47.2325 -122.3594 +US 98430 Camp Murray Washington WA Pierce 053 47.0662 -122.1132 +US 98431 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98433 Tacoma Washington WA Pierce 053 47.1125 -122.5891 +US 98434 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98438 Tacoma Washington WA Pierce 053 47.1316 -122.497 +US 98439 Lakewood Washington WA Pierce 053 47.1287 -122.5103 +US 98442 Tacoma Washington WA Pierce 053 47.3081 -122.4185 +US 98443 Tacoma Washington WA Pierce 053 47.2044 -122.3728 +US 98444 Tacoma Washington WA Pierce 053 47.1464 -122.4572 +US 98445 Tacoma Washington WA Pierce 053 47.1291 -122.4094 +US 98446 Tacoma Washington WA Pierce 053 47.1285 -122.3736 +US 98447 Tacoma Washington WA Pierce 053 47.1441 -122.4434 +US 98448 Tacoma Washington WA Pierce County 053 47.2061 -122.4822 +US 98450 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98455 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98460 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98464 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98465 Tacoma Washington WA Pierce 053 47.2491 -122.5273 +US 98466 Tacoma Washington WA Pierce 053 47.228 -122.5396 +US 98467 University Place Washington WA Pierce 053 47.2033 -122.5688 +US 98471 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98477 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98481 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98490 Tacoma Washington WA Pierce County 053 47.2061 -122.4822 +US 98492 Lakewood Washington WA Pierce 053 47.0662 -122.1132 +US 98493 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98494 Tacoma Washington WA Pierce 053 47.0662 -122.1132 +US 98496 Lakewood Washington WA Pierce County 053 47.1666 -122.5089 +US 98497 Lakewood Washington WA Pierce 053 47.0662 -122.1132 +US 98498 Lakewood Washington WA Pierce 053 47.1591 -122.5485 +US 98499 Lakewood Washington WA Pierce 053 47.1677 -122.5024 +US 98558 Mckenna Washington WA Pierce 053 46.9559 -122.5559 +US 98580 Roy Washington WA Pierce 053 46.956 -122.4483 +US 98222 Blakely Island Washington WA San Juan 055 48.5618 -122.812 +US 98243 Deer Harbor Washington WA San Juan 055 48.5578 -122.9837 +US 98245 Eastsound Washington WA San Juan 055 48.6656 -122.937 +US 98250 Friday Harbor Washington WA San Juan 055 48.5454 -123.0947 +US 98261 Lopez Island Washington WA San Juan 055 48.4988 -122.8743 +US 98279 Olga Washington WA San Juan 055 48.6555 -122.8362 +US 98280 Orcas Washington WA San Juan 055 48.5901 -122.941 +US 98286 Shaw Island Washington WA San Juan 055 48.5578 -122.9837 +US 98297 Waldron Washington WA San Juan 055 48.5578 -122.9837 +US 98221 Anacortes Washington WA Skagit 057 48.5004 -122.6309 +US 98232 Bow Washington WA Skagit 057 48.562 -122.4134 +US 98233 Burlington Washington WA Skagit 057 48.4786 -122.3345 +US 98235 Clearlake Washington WA Skagit 057 48.4701 -122.2388 +US 98237 Concrete Washington WA Skagit 057 48.531 -121.6643 +US 98238 Conway Washington WA Skagit 057 48.34 -122.3456 +US 98246 Bow Washington WA Skagit 057 48.5581 -121.417 +US 98255 Hamilton Washington WA Skagit 057 48.5255 -121.9887 +US 98257 La Conner Washington WA Skagit 057 48.4093 -122.5313 +US 98263 Lyman Washington WA Skagit 057 48.5345 -122.0586 +US 98267 Marblemount Washington WA Skagit 057 48.4435 -121.3163 +US 98273 Mount Vernon Washington WA Skagit 057 48.4352 -122.2082 +US 98274 Mount Vernon Washington WA Skagit 057 48.3643 -122.1403 +US 98283 Rockport Washington WA Skagit 057 48.4704 -121.5554 +US 98284 Sedro Woolley Washington WA Skagit 057 48.5274 -122.2329 +US 98610 Carson Washington WA Skamania 059 45.7493 -121.8351 +US 98639 North Bonneville Washington WA Skamania 059 45.6417 -122.0058 +US 98648 Stevenson Washington WA Skamania 059 45.6882 -121.9093 +US 98651 Underwood Washington WA Skamania 059 45.7409 -121.5974 +US 98012 Bothell Washington WA Snohomish 061 47.8401 -122.1972 +US 98020 Edmonds Washington WA Snohomish 061 47.8061 -122.3724 +US 98021 Bothell Washington WA Snohomish 061 47.7918 -122.2243 +US 98026 Edmonds Washington WA Snohomish 061 47.8353 -122.327 +US 98036 Lynnwood Washington WA Snohomish 061 47.8049 -122.2855 +US 98037 Lynnwood Washington WA Snohomish 061 47.8392 -122.2855 +US 98043 Mountlake Terrace Washington WA Snohomish 061 47.7933 -122.3076 +US 98046 Lynnwood Washington WA Snohomish 061 48.0373 -121.6823 +US 98077 Woodinville Washington WA Snohomish County 061 47.7529 -122.0582 +US 98087 Lynnwood Washington WA Snohomish County 061 47.862 -122.2532 +US 98201 Everett Washington WA Snohomish 061 47.9884 -122.2006 +US 98203 Everett Washington WA Snohomish 061 47.9419 -122.2218 +US 98204 Everett Washington WA Snohomish 061 47.9017 -122.2472 +US 98205 Everett Washington WA Snohomish 061 47.9901 -122.1158 +US 98206 Everett Washington WA Snohomish 061 47.8599 -122.2848 +US 98207 Everett Washington WA Snohomish 061 48.0373 -121.6823 +US 98208 Everett Washington WA Snohomish 061 47.8948 -122.1987 +US 98213 Everett Washington WA Snohomish County 061 47.9451 -122.2269 +US 98223 Arlington Washington WA Snohomish 061 48.1829 -122.1121 +US 98241 Darrington Washington WA Snohomish 061 48.2395 -121.5892 +US 98251 Gold Bar Washington WA Snohomish 061 47.8331 -121.6365 +US 98252 Granite Falls Washington WA Snohomish 061 48.079 -121.9428 +US 98256 Index Washington WA Snohomish 061 47.8118 -121.5497 +US 98258 Lake Stevens Washington WA Snohomish 061 48.0171 -122.0672 +US 98259 North Lakewood Washington WA Snohomish 061 48.0373 -121.6823 +US 98270 Marysville Washington WA Snohomish 061 48.0656 -122.1562 +US 98271 Marysville Washington WA Snohomish 061 48.0966 -122.198 +US 98272 Monroe Washington WA Snohomish 061 47.8585 -121.9474 +US 98275 Mukilteo Washington WA Snohomish 061 47.9199 -122.3019 +US 98282 Camano Island Washington WA Snohomish County 061 48.1761 -122.521 +US 98287 Silvana Washington WA Snohomish 061 48.0373 -121.6823 +US 98290 Snohomish Washington WA Snohomish 061 47.8954 -122.0716 +US 98291 Snohomish Washington WA Snohomish 061 47.9095 -122.0501 +US 98292 Stanwood Washington WA Snohomish 061 48.2011 -122.378 +US 98293 Startup Washington WA Snohomish 061 47.8703 -121.7685 +US 98294 Sultan Washington WA Snohomish 061 47.8589 -121.7369 +US 98296 Snohomish Washington WA Snohomish 061 47.8579 -122.092 +US 99001 Airway Heights Washington WA Spokane 063 47.6438 -117.5921 +US 99003 Chattaroy Washington WA Spokane 063 47.9192 -117.2921 +US 99004 Cheney Washington WA Spokane 063 47.4943 -117.5834 +US 99005 Colbert Washington WA Spokane 063 47.8411 -117.3759 +US 99006 Deer Park Washington WA Spokane 063 47.9486 -117.4436 +US 99009 Elk Washington WA Spokane 063 48.0205 -117.2963 +US 99011 Fairchild Air Force Base Washington WA Spokane 063 47.6332 -117.6546 +US 99012 Fairfield Washington WA Spokane 063 47.3987 -117.1921 +US 99014 Four Lakes Washington WA Spokane 063 47.5599 -117.5958 +US 99015 Freeman Washington WA Spokane 063 47.6536 -117.4317 +US 99016 Greenacres Washington WA Spokane 063 47.6584 -117.1568 +US 99018 Latah Washington WA Spokane 063 47.2999 -117.1395 +US 99019 Liberty Lake Washington WA Spokane 063 47.6517 -117.0838 +US 99020 Marshall Washington WA Spokane 063 47.6177 -117.5926 +US 99021 Mead Washington WA Spokane 063 47.7933 -117.3117 +US 99022 Medical Lake Washington WA Spokane 063 47.615 -117.704 +US 99023 Mica Washington WA Spokane 063 47.5538 -117.1637 +US 99025 Newman Lake Washington WA Spokane 063 47.7274 -117.064 +US 99026 Nine Mile Falls Washington WA Spokane 063 47.8019 -117.5894 +US 99027 Otis Orchards Washington WA Spokane 063 47.7027 -117.1121 +US 99028 Spangle Washington WA Spokane County 063 47.4305 -117.3788 +US 99029 Reardan Washington WA Spokane 063 47.7054 -117.8663 +US 99030 Rockford Washington WA Spokane 063 47.4528 -117.1318 +US 99031 Spangle Washington WA Spokane 063 47.4338 -117.3827 +US 99036 Valleyford Washington WA Spokane 063 47.5292 -117.2686 +US 99037 Veradale Washington WA Spokane 063 47.6421 -117.1977 +US 99039 Waverly Washington WA Spokane 063 47.3297 -117.245 +US 99201 Spokane Washington WA Spokane 063 47.6665 -117.4365 +US 99202 Spokane Washington WA Spokane 063 47.6547 -117.381 +US 99203 Spokane Washington WA Spokane 063 47.6294 -117.4041 +US 99204 Spokane Washington WA Spokane 063 47.6501 -117.4298 +US 99205 Spokane Washington WA Spokane 063 47.6964 -117.4399 +US 99206 Spokane Washington WA Spokane 063 47.6496 -117.2581 +US 99207 Spokane Washington WA Spokane 063 47.6977 -117.3746 +US 99208 Spokane Washington WA Spokane 063 47.7374 -117.4352 +US 99209 Spokane Washington WA Spokane 063 47.6461 -117.7937 +US 99210 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99211 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99212 Spokane Washington WA Spokane 063 47.6686 -117.3049 +US 99213 Spokane Washington WA Spokane 063 47.6567 -117.2825 +US 99214 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99215 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99216 Spokane Washington WA Spokane 063 47.6634 -117.2193 +US 99217 Spokane Washington WA Spokane 063 47.738 -117.2557 +US 99218 Spokane Washington WA Spokane 063 47.7556 -117.4146 +US 99219 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99220 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99223 Spokane Washington WA Spokane 063 47.6156 -117.3622 +US 99224 Spokane Washington WA Spokane 063 47.6289 -117.5513 +US 99228 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99251 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99252 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99254 Spokane Washington WA Spokane County 063 47.6581 -117.424 +US 99255 Spokane Washington WA Spokane County 063 47.6581 -117.424 +US 99256 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99258 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99260 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99299 Spokane Washington WA Spokane 063 47.6536 -117.4317 +US 99013 Ford Washington WA Stevens 065 47.9169 -117.8119 +US 99034 Tumtum Washington WA Stevens 065 47.8941 -117.7536 +US 99040 Wellpinit Washington WA Stevens 065 47.8697 -117.9856 +US 99101 Addy Washington WA Stevens 065 48.3364 -117.9579 +US 99109 Chewelah Washington WA Stevens 065 48.2876 -117.7754 +US 99110 Clayton Washington WA Stevens 065 48.0071 -117.5579 +US 99114 Colville Washington WA Stevens 065 48.578 -117.8645 +US 99126 Evans Washington WA Stevens 065 48.7458 -118.0001 +US 99129 Fruitland Washington WA Stevens 065 47.9797 -118.2159 +US 99131 Gifford Washington WA Stevens 065 48.2685 -118.1136 +US 99137 Hunters Washington WA Stevens 065 48.1333 -118.1525 +US 99141 Kettle Falls Washington WA Stevens 065 48.6364 -118.0548 +US 99148 Loon Lake Washington WA Stevens 065 48.0784 -117.6325 +US 99151 Marcus Washington WA Stevens 065 48.7868 -117.924 +US 99157 Northport Washington WA Stevens 065 48.9247 -117.7931 +US 99167 Rice Washington WA Stevens 065 48.4062 -118.1249 +US 99173 Springdale Washington WA Stevens 065 48.0022 -117.829 +US 99181 Valley Washington WA Stevens 065 48.1351 -117.761 +US 98501 Olympia Washington WA Thurston 067 47.0129 -122.8763 +US 98502 Olympia Washington WA Thurston 067 47.1043 -123.0552 +US 98503 Lacey Washington WA Thurston 067 47.024 -122.7827 +US 98504 Olympia Washington WA Thurston 067 46.9781 -122.7024 +US 98505 Olympia Washington WA Thurston 067 47.0654 -122.9762 +US 98506 Olympia Washington WA Thurston 067 47.1042 -122.87 +US 98507 Olympia Washington WA Thurston 067 46.9781 -122.7024 +US 98508 Olympia Washington WA Thurston 067 46.9781 -122.7024 +US 98509 Lacey Washington WA Thurston 067 46.9781 -122.7024 +US 98511 Tumwater Washington WA Thurston County 067 46.9616 -123.0283 +US 98512 Olympia Washington WA Thurston 067 46.9498 -123.0212 +US 98513 Olympia Washington WA Thurston 067 46.9939 -122.743 +US 98516 Olympia Washington WA Thurston 067 47.1126 -122.7794 +US 98530 Bucoda Washington WA Thurston 067 46.7982 -122.8718 +US 98540 East Olympia Washington WA Thurston 067 46.9781 -122.7024 +US 98556 Littlerock Washington WA Thurston 067 46.9024 -123.017 +US 98576 Rainier Washington WA Thurston 067 46.8829 -122.6795 +US 98579 Rochester Washington WA Thurston 067 46.8193 -123.0406 +US 98589 Tenino Washington WA Thurston 067 46.8641 -122.8493 +US 98597 Yelm Washington WA Thurston 067 46.9206 -122.588 +US 98599 Olympia Washington WA Thurston 067 46.9781 -122.7024 +US 98612 Cathlamet Washington WA Wahkiakum 069 46.1954 -123.3627 +US 98621 Grays River Washington WA Wahkiakum 069 46.3535 -123.5888 +US 98643 Rosburg Washington WA Wahkiakum 069 46.3071 -123.6571 +US 98647 Skamokawa Washington WA Wahkiakum 069 46.2952 -123.4332 +US 99323 Burbank Washington WA Walla Walla 071 46.1966 -118.9017 +US 99324 College Place Washington WA Walla Walla 071 46.0471 -118.4093 +US 99329 Dixie Washington WA Walla Walla 071 46.1408 -118.1531 +US 99348 Prescott Washington WA Walla Walla 071 46.3539 -118.4097 +US 99360 Touchet Washington WA Walla Walla 071 46.0903 -118.663 +US 99361 Waitsburg Washington WA Walla Walla 071 46.2691 -118.1447 +US 99362 Walla Walla Washington WA Walla Walla 071 46.0614 -118.3315 +US 99363 Wallula Washington WA Walla Walla 071 46.0846 -118.9061 +US 98220 Acme Washington WA Whatcom 073 48.6752 -122.1914 +US 98225 Bellingham Washington WA Whatcom 073 48.749 -122.4887 +US 98226 Bellingham Washington WA Whatcom 073 48.7974 -122.4448 +US 98227 Bellingham Washington WA Whatcom 073 48.8148 -121.9885 +US 98228 Bellingham Washington WA Whatcom 073 48.8148 -121.9885 +US 98229 Bellingham Washington WA Whatcom County 073 48.6952 -122.4124 +US 98230 Blaine Washington WA Whatcom 073 48.9636 -122.7323 +US 98231 Blaine Washington WA Whatcom 073 48.8148 -121.9885 +US 98240 Custer Washington WA Whatcom 073 48.9374 -122.6226 +US 98244 Deming Washington WA Whatcom 073 48.8018 -122.0918 +US 98247 Everson Washington WA Whatcom 073 48.9045 -122.3325 +US 98248 Ferndale Washington WA Whatcom 073 48.8625 -122.5953 +US 98262 Lummi Island Washington WA Whatcom 073 48.7128 -122.6823 +US 98264 Lynden Washington WA Whatcom 073 48.9372 -122.4592 +US 98266 Maple Falls Washington WA Whatcom 073 48.9533 -122.1283 +US 98276 Nooksack Washington WA Whatcom 073 48.8342 -122.3357 +US 98281 Point Roberts Washington WA Whatcom 073 48.9879 -123.0555 +US 98295 Sumas Washington WA Whatcom 073 48.9708 -122.2074 +US 99017 Lamont Washington WA Whitman 075 47.1887 -117.8755 +US 99033 Tekoa Washington WA Whitman 075 47.2271 -117.0819 +US 99102 Albion Washington WA Whitman 075 46.792 -117.2503 +US 99104 Belmont Washington WA Whitman 075 47.0793 -117.177 +US 99111 Colfax Washington WA Whitman 075 46.88 -117.367 +US 99113 Colton Washington WA Whitman 075 46.5901 -117.1692 +US 99125 Endicott Washington WA Whitman 075 46.9364 -117.723 +US 99127 Saint John Washington WA Whitman 075 46.8387 -117.6443 +US 99128 Farmington Washington WA Whitman 075 47.0847 -117.0763 +US 99130 Garfield Washington WA Whitman 075 46.9946 -117.1523 +US 99136 Hay Washington WA Whitman 075 46.6973 -117.9417 +US 99143 Lacrosse Washington WA Whitman 075 46.7717 -117.7703 +US 99149 Malden Washington WA Whitman 075 47.0101 -117.4766 +US 99158 Oakesdale Washington WA Whitman 075 47.0806 -117.2803 +US 99161 Palouse Washington WA Whitman 075 46.9076 -117.0855 +US 99163 Pullman Washington WA Whitman 075 46.7352 -117.1729 +US 99164 Pullman Washington WA Whitman 075 46.8387 -117.6443 +US 99165 Pullman Washington WA Whitman 075 46.8387 -117.6443 +US 99170 Rosalia Washington WA Whitman 075 47.2218 -117.4147 +US 99171 Saint John Washington WA Whitman 075 47.0755 -117.573 +US 99174 Steptoe Washington WA Whitman 075 46.8387 -117.6443 +US 99176 Thornton Washington WA Whitman 075 47.1253 -117.3864 +US 99179 Uniontown Washington WA Whitman 075 46.5258 -117.0908 +US 99333 Hooper Washington WA Whitman 075 46.8387 -117.6443 +US 98901 Yakima Washington WA Yakima 077 46.6932 -120.4153 +US 98902 Yakima Washington WA Yakima 077 46.5934 -120.5311 +US 98903 Yakima Washington WA Yakima 077 46.5445 -120.7444 +US 98904 Yakima Washington WA Yakima 077 46.5645 -120.6947 +US 98907 Yakima Washington WA Yakima 077 46.6288 -120.574 +US 98908 Yakima Washington WA Yakima 077 46.6165 -120.7094 +US 98909 Yakima Washington WA Yakima 077 46.6375 -120.795 +US 98920 Brownstown Washington WA Yakima 077 46.5645 -120.6947 +US 98921 Buena Washington WA Yakima 077 46.4212 -120.3151 +US 98923 Cowiche Washington WA Yakima 077 46.6661 -120.7149 +US 98929 Goose Prairie Washington WA Yakima 077 46.9157 -121.2416 +US 98930 Grandview Washington WA Yakima 077 46.2538 -119.9157 +US 98932 Granger Washington WA Yakima 077 46.348 -120.1818 +US 98933 Harrah Washington WA Yakima 077 46.4104 -120.5736 +US 98935 Mabton Washington WA Yakima 077 46.2121 -120.0151 +US 98936 Moxee Washington WA Yakima 077 46.5542 -120.3685 +US 98937 Naches Washington WA Yakima 077 46.8058 -120.9921 +US 98938 Outlook Washington WA Yakima 077 46.3525 -120.097 +US 98939 Parker Washington WA Yakima 077 46.5645 -120.6947 +US 98942 Selah Washington WA Yakima 077 46.6767 -120.5408 +US 98944 Sunnyside Washington WA Yakima 077 46.3213 -120.0126 +US 98947 Tieton Washington WA Yakima 077 46.7063 -120.7473 +US 98948 Toppenish Washington WA Yakima 077 46.3751 -120.3305 +US 98951 Wapato Washington WA Yakima 077 46.4507 -120.4265 +US 98952 White Swan Washington WA Yakima 077 46.3716 -120.7453 +US 98953 Zillah Washington WA Yakima 077 46.4158 -120.2662 +US 53910 Adams Wisconsin WI Adams 001 43.8967 -89.8219 +US 53921 Brooks Wisconsin WI Adams County 001 43.8263 -89.6437 +US 53927 Dellwood Wisconsin WI Adams 001 43.9555 -89.9418 +US 53934 Friendship Wisconsin WI Adams 001 43.9896 -89.8149 +US 53936 Grand Marsh Wisconsin WI Adams 001 43.9479 -89.7275 +US 54613 Arkdale Wisconsin WI Adams 001 44.0529 -89.8962 +US 54514 Butternut Wisconsin WI Ashland 003 46.0184 -90.4821 +US 54517 Clam Lake Wisconsin WI Ashland 003 46.6452 -90.4427 +US 54527 Glidden Wisconsin WI Ashland 003 46.1337 -90.5889 +US 54528 Odanah Wisconsin WI Ashland County 003 46.4727 -90.5079 +US 54546 Mellen Wisconsin WI Ashland 003 46.3007 -90.6552 +US 54806 Ashland Wisconsin WI Ashland 003 46.5586 -90.7388 +US 54846 High Bridge Wisconsin WI Ashland 003 46.3796 -90.7383 +US 54850 La Pointe Wisconsin WI Ashland 003 46.8467 -90.6036 +US 54855 Marengo Wisconsin WI Ashland 003 46.4071 -90.84 +US 54861 Odanah Wisconsin WI Ashland 003 46.5608 -90.6197 +US 54728 Chetek Wisconsin WI Barron 005 45.317 -91.6542 +US 54733 Dallas Wisconsin WI Barron 005 45.2549 -91.8368 +US 54744 Hillsdale Wisconsin WI Barron 005 45.3198 -91.8818 +US 54762 Prairie Farm Wisconsin WI Barron 005 45.2462 -91.9742 +US 54805 Almena Wisconsin WI Barron 005 45.4195 -92.0027 +US 54812 Barron Wisconsin WI Barron 005 45.4005 -91.85 +US 54813 Barronett Wisconsin WI Barron 005 45.619 -92.0196 +US 54818 Brill Wisconsin WI Barron 005 45.4234 -91.8482 +US 54822 Cameron Wisconsin WI Barron 005 45.4038 -91.731 +US 54826 Comstock Wisconsin WI Barron 005 45.4911 -92.086 +US 54829 Cumberland Wisconsin WI Barron 005 45.5403 -92.0297 +US 54841 Haugen Wisconsin WI Barron 005 45.6067 -91.7786 +US 54857 Mikana Wisconsin WI Barron 005 45.6096 -91.6196 +US 54866 Poskin Wisconsin WI Barron County 005 45.4092 -91.9575 +US 54868 Rice Lake Wisconsin WI Barron 005 45.5197 -91.8266 +US 54889 Turtle Lake Wisconsin WI Barron 005 45.4213 -92.1781 +US 54814 Bayfield Wisconsin WI Bayfield 007 46.8354 -90.8217 +US 54816 Benoit Wisconsin WI Bayfield 007 46.6828 -91.1433 +US 54821 Cable Wisconsin WI Bayfield 007 46.2172 -91.2244 +US 54827 Cornucopia Wisconsin WI Bayfield 007 46.8372 -91.0974 +US 54832 Drummond Wisconsin WI Bayfield 007 46.3119 -91.2856 +US 54839 Grand View Wisconsin WI Bayfield 007 46.3577 -91.1075 +US 54844 Herbster Wisconsin WI Bayfield 007 46.8213 -91.2332 +US 54847 Iron River Wisconsin WI Bayfield 007 46.579 -91.4211 +US 54856 Mason Wisconsin WI Bayfield 007 46.4399 -91.1318 +US 54865 Port Wing Wisconsin WI Bayfield 007 46.762 -91.392 +US 54891 Washburn Wisconsin WI Bayfield 007 46.6806 -90.9095 +US 54115 De Pere Wisconsin WI Brown 009 44.4388 -88.0806 +US 54126 Greenleaf Wisconsin WI Brown 009 44.2937 -88.0275 +US 54162 Pulaski Wisconsin WI Brown 009 44.6611 -88.2634 +US 54173 Suamico Wisconsin WI Brown 009 44.6435 -88.0317 +US 54180 Wrightstown Wisconsin WI Brown 009 44.3264 -88.1749 +US 54208 Denmark Wisconsin WI Brown 009 44.3594 -87.827 +US 54229 New Franken Wisconsin WI Brown 009 44.5592 -87.8235 +US 54301 Green Bay Wisconsin WI Brown 009 44.482 -88.0205 +US 54302 Green Bay Wisconsin WI Brown 009 44.5025 -87.9771 +US 54303 Green Bay Wisconsin WI Brown 009 44.5522 -88.0788 +US 54304 Green Bay Wisconsin WI Brown 009 44.4975 -88.0324 +US 54305 Green Bay Wisconsin WI Brown 009 44.4601 -88.0074 +US 54306 Green Bay Wisconsin WI Brown 009 44.4601 -88.0074 +US 54307 Green Bay Wisconsin WI Brown 009 44.4601 -88.0074 +US 54308 Green Bay Wisconsin WI Brown 009 44.4595 -87.8059 +US 54311 Green Bay Wisconsin WI Brown 009 44.4914 -87.9267 +US 54313 Green Bay Wisconsin WI Brown 009 44.5463 -88.1021 +US 54324 Green Bay Wisconsin WI Brown 009 44.4601 -88.0074 +US 54344 Green Bay Wisconsin WI Brown 009 44.425 -88.1113 +US 54610 Alma Wisconsin WI Buffalo 011 44.4294 -91.8079 +US 54622 Cochrane Wisconsin WI Buffalo 011 44.2672 -91.7715 +US 54629 Fountain City Wisconsin WI Buffalo 011 44.1364 -91.6779 +US 54743 Gilmanton Wisconsin WI Buffalo 011 44.3111 -91.8064 +US 54755 Mondovi Wisconsin WI Buffalo 011 44.4877 -91.6807 +US 54756 Nelson Wisconsin WI Buffalo 011 44.4295 -92.0007 +US 54830 Danbury Wisconsin WI Burnett 013 45.9726 -92.293 +US 54840 Grantsburg Wisconsin WI Burnett 013 45.7953 -92.6935 +US 54845 Hertel Wisconsin WI Burnett 013 45.8076 -92.1404 +US 54872 Siren Wisconsin WI Burnett 013 45.7821 -92.3892 +US 54893 Webster Wisconsin WI Burnett 013 45.874 -92.3227 +US 53014 Chilton Wisconsin WI Calumet 015 44.0242 -88.1827 +US 53061 New Holstein Wisconsin WI Calumet 015 43.9446 -88.0911 +US 53062 New Holstein Wisconsin WI Calumet 015 44.0679 -88.2231 +US 53088 Stockbridge Wisconsin WI Calumet 015 44.0805 -88.3124 +US 54110 Brillion Wisconsin WI Calumet 015 44.1779 -88.0833 +US 54123 Forest Junction Wisconsin WI Calumet 015 44.2111 -88.1515 +US 54129 Hilbert Wisconsin WI Calumet 015 44.1271 -88.207 +US 54160 Potter Wisconsin WI Calumet 015 44.1199 -88.0965 +US 54169 Sherwood Wisconsin WI Calumet 015 44.1764 -88.2779 +US 54724 Bloomer Wisconsin WI Chippewa 017 45.1025 -91.49 +US 54726 Boyd Wisconsin WI Chippewa 017 44.9437 -91.0294 +US 54727 Cadott Wisconsin WI Chippewa 017 44.963 -91.1699 +US 54729 Chippewa Falls Wisconsin WI Chippewa 017 44.9587 -91.3195 +US 54732 Cornell Wisconsin WI Chippewa 017 45.1619 -91.1733 +US 54745 Holcombe Wisconsin WI Chippewa 017 45.2513 -91.133 +US 54748 Jim Falls Wisconsin WI Chippewa 017 45.0889 -91.2568 +US 54757 New Auburn Wisconsin WI Chippewa 017 45.2356 -91.5197 +US 54768 Stanley Wisconsin WI Chippewa 017 44.9689 -90.9389 +US 54774 Chippewa Falls Wisconsin WI Chippewa 017 45.0741 -91.2944 +US 54405 Abbotsford Wisconsin WI Clark 019 44.9641 -90.2994 +US 54420 Chili Wisconsin WI Clark 019 44.6301 -90.36 +US 54421 Colby Wisconsin WI Clark 019 44.9117 -90.3144 +US 54422 Curtiss Wisconsin WI Clark 019 44.9602 -90.4592 +US 54425 Dorchester Wisconsin WI Clark 019 45.0042 -90.3596 +US 54436 Granton Wisconsin WI Clark 019 44.5606 -90.4484 +US 54437 Greenwood Wisconsin WI Clark 019 44.7404 -90.6229 +US 54446 Loyal Wisconsin WI Clark 019 44.7272 -90.4922 +US 54456 Neillsville Wisconsin WI Clark 019 44.5494 -90.6112 +US 54460 Owen Wisconsin WI Clark 019 44.9578 -90.5469 +US 54493 Willard Wisconsin WI Clark 019 44.7274 -90.7499 +US 54498 Withee Wisconsin WI Clark 019 44.9757 -90.6049 +US 54746 Humbird Wisconsin WI Clark 019 44.5367 -90.8883 +US 54771 Thorp Wisconsin WI Clark 019 44.9573 -90.8029 +US 53555 Lodi Wisconsin WI Columbia 021 43.327 -89.5554 +US 53901 Portage Wisconsin WI Columbia 021 43.5501 -89.4714 +US 53911 Arlington Wisconsin WI Columbia 021 43.3269 -89.3631 +US 53923 Cambria Wisconsin WI Columbia 021 43.5724 -89.1156 +US 53925 Columbus Wisconsin WI Columbia 021 43.3315 -89.0271 +US 53928 Doylestown Wisconsin WI Columbia 021 43.4266 -89.1491 +US 53932 Fall River Wisconsin WI Columbia 021 43.4008 -89.0625 +US 53935 Friesland Wisconsin WI Columbia 021 43.5901 -89.0593 +US 53954 Pardeeville Wisconsin WI Columbia 021 43.534 -89.3265 +US 53955 Poynette Wisconsin WI Columbia 021 43.4013 -89.4189 +US 53957 Randolph Wisconsin WI Columbia 021 43.5352 -89.0068 +US 53960 Rio Wisconsin WI Columbia 021 43.4231 -89.2354 +US 53965 Wisconsin Dells Wisconsin WI Columbia 021 43.6508 -89.7665 +US 53969 Wyocena Wisconsin WI Columbia 021 43.4989 -89.305 +US 53821 Prairie Du Chien Wisconsin WI Crawford 023 43.0426 -91.1193 +US 53826 Wauzeka Wisconsin WI Crawford 023 43.1143 -90.9239 +US 54626 Eastman Wisconsin WI Crawford 023 43.1959 -91.0193 +US 54628 Ferryville Wisconsin WI Crawford 023 43.3959 -91.0446 +US 54631 Gays Mills Wisconsin WI Crawford 023 43.2936 -90.8676 +US 54640 Lynxville Wisconsin WI Crawford 023 43.2662 -91.022 +US 54645 Mount Sterling Wisconsin WI Crawford 023 43.2064 -90.9405 +US 54654 Seneca Wisconsin WI Crawford 023 43.2064 -90.9405 +US 54655 Soldiers Grove Wisconsin WI Crawford 023 43.3919 -90.7663 +US 54657 Steuben Wisconsin WI Crawford 023 43.1955 -90.8609 +US 53508 Belleville Wisconsin WI Dane 025 42.8669 -89.5377 +US 53515 Black Earth Wisconsin WI Dane 025 43.1322 -89.739 +US 53517 Blue Mounds Wisconsin WI Dane 025 43.005 -89.8345 +US 53523 Cambridge Wisconsin WI Dane 025 42.9918 -89.0209 +US 53527 Cottage Grove Wisconsin WI Dane 025 43.0784 -89.2017 +US 53528 Cross Plains Wisconsin WI Dane 025 43.1132 -89.6397 +US 53529 Dane Wisconsin WI Dane 025 43.2424 -89.5117 +US 53531 Deerfield Wisconsin WI Dane 025 43.0571 -89.0862 +US 53532 De Forest Wisconsin WI Dane 025 43.2357 -89.3297 +US 53558 Mc Farland Wisconsin WI Dane 025 43.0107 -89.2948 +US 53559 Marshall Wisconsin WI Dane 025 43.1636 -89.0753 +US 53560 Mazomanie Wisconsin WI Dane 025 43.1847 -89.7636 +US 53562 Middleton Wisconsin WI Dane 025 43.1052 -89.5073 +US 53571 Morrisonville Wisconsin WI Dane 025 43.2773 -89.3564 +US 53572 Mount Horeb Wisconsin WI Dane 025 43.002 -89.7414 +US 53575 Oregon Wisconsin WI Dane 025 42.9295 -89.387 +US 53589 Stoughton Wisconsin WI Dane 025 42.929 -89.224 +US 53590 Sun Prairie Wisconsin WI Dane 025 43.1869 -89.2227 +US 53591 Sun Prairie Wisconsin WI Dane 025 43.0696 -89.4239 +US 53593 Verona Wisconsin WI Dane 025 42.9999 -89.5522 +US 53596 Sun Prairie Wisconsin WI Dane 025 43.1924 -89.2629 +US 53597 Waunakee Wisconsin WI Dane 025 43.1818 -89.4532 +US 53598 Windsor Wisconsin WI Dane 025 43.2078 -89.3418 +US 53701 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53702 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53703 Madison Wisconsin WI Dane 025 43.0775 -89.3831 +US 53704 Madison Wisconsin WI Dane 025 43.1205 -89.3523 +US 53705 Madison Wisconsin WI Dane 025 43.073 -89.4528 +US 53706 Madison Wisconsin WI Dane 025 43.0769 -89.4094 +US 53707 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53708 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53709 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53710 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53711 Madison Wisconsin WI Dane 025 43.0356 -89.4526 +US 53713 Madison Wisconsin WI Dane 025 43.0372 -89.3971 +US 53714 Madison Wisconsin WI Dane 025 43.0977 -89.3118 +US 53715 Madison Wisconsin WI Dane 025 43.0653 -89.4 +US 53716 Madison Wisconsin WI Dane 025 43.0631 -89.3133 +US 53717 Madison Wisconsin WI Dane 025 43.0736 -89.508 +US 53718 Madison Wisconsin WI Dane 025 43.0984 -89.2734 +US 53719 Madison Wisconsin WI Dane 025 43.0321 -89.4993 +US 53725 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53726 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53744 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53774 Madison Wisconsin WI Dane County 025 43.0469 -89.374 +US 53777 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53778 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53779 Madison Wisconsin WI Dane 025 43.0982 -89.3242 +US 53780 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53782 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53783 Madison Wisconsin WI Dane 025 43.1596 -89.2852 +US 53784 Madison Wisconsin WI Dane 025 43.0489 -89.3384 +US 53785 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53786 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53787 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53788 Madison Wisconsin WI Dane 025 43.0767 -89.3763 +US 53789 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53790 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53791 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53792 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53793 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53794 Madison Wisconsin WI Dane 025 43.0696 -89.4239 +US 53003 Ashippun Wisconsin WI Dodge 027 43.2175 -88.5253 +US 53006 Brownsville Wisconsin WI Dodge 027 43.6028 -88.523 +US 53016 Clyman Wisconsin WI Dodge 027 43.3107 -88.7144 +US 53032 Horicon Wisconsin WI Dodge 027 43.4469 -88.631 +US 53034 Hustisford Wisconsin WI Dodge 027 43.3305 -88.603 +US 53035 Iron Ridge Wisconsin WI Dodge 027 43.3934 -88.5441 +US 53039 Juneau Wisconsin WI Dodge 027 43.3792 -88.6845 +US 53047 Lebanon Wisconsin WI Dodge 027 43.2568 -88.6281 +US 53048 Lomira Wisconsin WI Dodge 027 43.5795 -88.4513 +US 53050 Mayville Wisconsin WI Dodge 027 43.5045 -88.5451 +US 53059 Neosho Wisconsin WI Dodge 027 43.2978 -88.5205 +US 53078 Rubicon Wisconsin WI Dodge 027 43.3121 -88.4528 +US 53091 Theresa Wisconsin WI Dodge 027 43.5045 -88.4478 +US 53098 Watertown Wisconsin WI Dodge 027 43.2764 -88.7154 +US 53099 Woodland Wisconsin WI Dodge 027 43.4142 -88.7049 +US 53557 Lowell Wisconsin WI Dodge 027 43.342 -88.7873 +US 53579 Reeseville Wisconsin WI Dodge 027 43.3013 -88.8571 +US 53916 Beaver Dam Wisconsin WI Dodge 027 43.4616 -88.8407 +US 53917 Beaver Dam Wisconsin WI Dodge 027 43.4142 -88.7049 +US 53922 Burnett Wisconsin WI Dodge 027 43.5116 -88.7176 +US 53933 Fox Lake Wisconsin WI Dodge 027 43.5815 -88.9041 +US 53956 Randolph Wisconsin WI Dodge 027 43.5397 -89.003 +US 53963 Waupun Wisconsin WI Dodge 027 43.6324 -88.7373 +US 54202 Baileys Harbor Wisconsin WI Door 029 45.0565 -87.1676 +US 54204 Brussels Wisconsin WI Door 029 44.7476 -87.6225 +US 54209 Egg Harbor Wisconsin WI Door 029 45.01 -87.2805 +US 54210 Ellison Bay Wisconsin WI Door 029 45.2572 -87.0512 +US 54211 Ephraim Wisconsin WI Door 029 45.1592 -87.171 +US 54212 Fish Creek Wisconsin WI Door 029 45.1155 -87.2064 +US 54213 Forestville Wisconsin WI Door 029 44.6996 -87.5215 +US 54226 Maplewood Wisconsin WI Door 029 45.0597 -87.006 +US 54234 Sister Bay Wisconsin WI Door 029 45.1875 -87.1139 +US 54235 Sturgeon Bay Wisconsin WI Door 029 44.8438 -87.3753 +US 54246 Washington Island Wisconsin WI Door 029 45.3738 -86.8975 +US 54820 Brule Wisconsin WI Douglas 031 46.5763 -91.5539 +US 54836 Foxboro Wisconsin WI Douglas 031 46.4875 -92.1493 +US 54838 Gordon Wisconsin WI Douglas 031 46.2336 -91.8033 +US 54842 Hawthorne Wisconsin WI Douglas 031 46.5142 -91.8621 +US 54849 Lake Nebagamon Wisconsin WI Douglas 031 46.5023 -91.7402 +US 54854 Maple Wisconsin WI Douglas 031 46.6206 -91.702 +US 54864 Poplar Wisconsin WI Douglas 031 46.5771 -91.8253 +US 54873 Solon Springs Wisconsin WI Douglas 031 46.4173 -91.811 +US 54874 South Range Wisconsin WI Douglas 031 46.5688 -91.9352 +US 54880 Superior Wisconsin WI Douglas 031 46.7016 -92.0912 +US 54890 Wascott Wisconsin WI Douglas 031 46.5251 -91.9216 +US 54725 Boyceville Wisconsin WI Dunn 033 45.0642 -92.0248 +US 54730 Colfax Wisconsin WI Dunn 033 44.9993 -91.7357 +US 54734 Downing Wisconsin WI Dunn 033 45.103 -92.1134 +US 54735 Downsville Wisconsin WI Dunn 033 44.9465 -91.9034 +US 54737 Eau Galle Wisconsin WI Dunn 033 44.7152 -91.9822 +US 54739 Elk Mound Wisconsin WI Dunn 033 44.867 -91.6752 +US 54749 Knapp Wisconsin WI Dunn 033 44.9545 -92.0752 +US 54751 Menomonie Wisconsin WI Dunn 033 44.8718 -91.9265 +US 54763 Ridgeland Wisconsin WI Dunn 033 45.1868 -91.879 +US 54764 Rock Falls Wisconsin WI Dunn 033 44.9465 -91.9034 +US 54765 Sand Creek Wisconsin WI Dunn 033 45.1429 -91.6998 +US 54772 Wheeler Wisconsin WI Dunn 033 45.0719 -91.8871 +US 54701 Eau Claire Wisconsin WI Eau Claire 035 44.784 -91.4877 +US 54702 Eau Claire Wisconsin WI Eau Claire 035 44.7266 -91.2859 +US 54703 Eau Claire Wisconsin WI Eau Claire 035 44.8346 -91.5159 +US 54720 Altoona Wisconsin WI Eau Claire 035 44.8021 -91.4382 +US 54722 Augusta Wisconsin WI Eau Claire 035 44.6947 -91.1232 +US 54741 Fairchild Wisconsin WI Eau Claire 035 44.5963 -90.9906 +US 54742 Fall Creek Wisconsin WI Eau Claire 035 44.7684 -91.2856 +US 54120 Fence Wisconsin WI Florence 037 45.7597 -88.3649 +US 54121 Florence Wisconsin WI Florence 037 45.9027 -88.2289 +US 54542 Long Lake Wisconsin WI Florence 037 45.9138 -88.6235 +US 53009 Byron Wisconsin WI Fond du Lac 039 43.7698 -88.4944 +US 53010 Campbellsport Wisconsin WI Fond du Lac 039 43.6042 -88.2729 +US 53019 Eden Wisconsin WI Fond du Lac 039 43.6959 -88.3266 +US 53049 Malone Wisconsin WI Fond du Lac 039 43.8753 -88.2871 +US 53057 Mount Calvary Wisconsin WI Fond du Lac 039 43.8142 -88.2399 +US 53065 Oakfield Wisconsin WI Fond du Lac 039 43.6864 -88.5569 +US 53079 Saint Cloud Wisconsin WI Fond du Lac 039 43.8074 -88.1845 +US 53919 Brandon Wisconsin WI Fond du Lac 039 43.7258 -88.7841 +US 53931 Fairwater Wisconsin WI Fond du Lac 039 43.7475 -88.8665 +US 54932 Eldorado Wisconsin WI Fond du Lac 039 43.8415 -88.6388 +US 54935 Fond Du Lac Wisconsin WI Fond du Lac 039 43.7742 -88.4352 +US 54936 Fond Du Lac Wisconsin WI Fond du Lac 039 43.7406 -88.523 +US 54937 Fond Du Lac Wisconsin WI Fond du Lac 039 43.765 -88.6057 +US 54971 Ripon Wisconsin WI Fond du Lac 039 43.8454 -88.8424 +US 54974 Rosendale Wisconsin WI Fond du Lac 039 43.7889 -88.6417 +US 54979 Van Dyne Wisconsin WI Fond du Lac 039 43.8734 -88.51 +US 54103 Armstrong Creek Wisconsin WI Forest 041 45.6726 -88.4908 +US 54511 Argonne Wisconsin WI Forest 041 45.7118 -88.8104 +US 54520 Crandon Wisconsin WI Forest 041 45.5416 -88.9116 +US 54541 Laona Wisconsin WI Forest 041 45.5534 -88.6715 +US 54566 Wabeno Wisconsin WI Forest 041 45.4332 -88.6625 +US 53518 Blue River Wisconsin WI Grant 043 43.2366 -90.5873 +US 53554 Livingston Wisconsin WI Grant 043 42.9044 -90.442 +US 53569 Montfort Wisconsin WI Grant 043 42.9757 -90.4447 +US 53573 Muscoda Wisconsin WI Grant 043 43.2074 -90.457 +US 53801 Bagley Wisconsin WI Grant 043 42.9207 -91.0685 +US 53802 Beetown Wisconsin WI Grant 043 42.8736 -90.9364 +US 53804 Bloomington Wisconsin WI Grant 043 42.8726 -90.9099 +US 53805 Boscobel Wisconsin WI Grant 043 43.1393 -90.7061 +US 53806 Cassville Wisconsin WI Grant 043 42.7288 -90.9608 +US 53807 Cuba City Wisconsin WI Grant 043 42.5991 -90.4749 +US 53808 Dickeyville Wisconsin WI Grant 043 42.6263 -90.5931 +US 53809 Fennimore Wisconsin WI Grant 043 42.9886 -90.655 +US 53810 Glen Haven Wisconsin WI Grant 043 42.8204 -91.0005 +US 53811 Hazel Green Wisconsin WI Grant 043 42.5359 -90.5118 +US 53812 Kieler Wisconsin WI Grant 043 42.8593 -90.7913 +US 53813 Lancaster Wisconsin WI Grant 043 42.8445 -90.7109 +US 53816 Mount Hope Wisconsin WI Grant 043 42.9689 -90.8665 +US 53817 Patch Grove Wisconsin WI Grant 043 42.9422 -90.9646 +US 53818 Platteville Wisconsin WI Grant 043 42.7393 -90.4854 +US 53820 Potosi Wisconsin WI Grant 043 42.6884 -90.7002 +US 53824 Sinsinawa Wisconsin WI Grant 043 42.8593 -90.7913 +US 53825 Stitzer Wisconsin WI Grant 043 42.9214 -90.6079 +US 53827 Woodman Wisconsin WI Grant 043 43.0577 -90.8245 +US 53502 Albany Wisconsin WI Green 045 42.7155 -89.4357 +US 53520 Brodhead Wisconsin WI Green 045 42.6111 -89.3714 +US 53521 Brooklyn Wisconsin WI Green 045 42.8423 -89.3818 +US 53522 Browntown Wisconsin WI Green 045 42.5579 -89.7816 +US 53550 Juda Wisconsin WI Green 045 42.5679 -89.5026 +US 53566 Monroe Wisconsin WI Green 045 42.5991 -89.6403 +US 53570 Monticello Wisconsin WI Green 045 42.7415 -89.6081 +US 53574 New Glarus Wisconsin WI Green 045 42.8143 -89.6437 +US 53926 Dalton Wisconsin WI Green Lake 047 43.6718 -89.1918 +US 53939 Kingston Wisconsin WI Green Lake 047 43.6911 -89.1302 +US 53945 Manchester Wisconsin WI Green Lake County 047 43.6905 -89.0482 +US 53946 Markesan Wisconsin WI Green Lake 047 43.714 -89.007 +US 53947 Marquette Wisconsin WI Green Lake 047 43.7459 -89.1397 +US 54923 Berlin Wisconsin WI Green Lake 047 43.9769 -88.949 +US 54941 Green Lake Wisconsin WI Green Lake 047 43.8444 -88.9685 +US 54968 Princeton Wisconsin WI Green Lake 047 43.8438 -89.1249 +US 53503 Arena Wisconsin WI Iowa 049 43.1521 -89.9386 +US 53506 Avoca Wisconsin WI Iowa 049 43.1571 -90.2889 +US 53507 Barneveld Wisconsin WI Iowa 049 43.0158 -89.9042 +US 53526 Cobb Wisconsin WI Iowa 049 42.966 -90.3324 +US 53533 Dodgeville Wisconsin WI Iowa 049 42.9698 -90.1404 +US 53535 Edmund Wisconsin WI Iowa 049 43.0113 -90.1339 +US 53543 Highland Wisconsin WI Iowa 049 43.0524 -90.365 +US 53544 Hollandale Wisconsin WI Iowa 049 42.8773 -89.913 +US 53553 Linden Wisconsin WI Iowa 049 42.9184 -90.2797 +US 53565 Mineral Point Wisconsin WI Iowa 049 42.8547 -90.1646 +US 53580 Rewey Wisconsin WI Iowa 049 42.8594 -90.3804 +US 53582 Ridgeway Wisconsin WI Iowa 049 43.0077 -89.9889 +US 53595 Dodgeville Wisconsin WI Iowa 049 42.9761 -90.1413 +US 54525 Gile Wisconsin WI Iron 051 46.3957 -90.1911 +US 54534 Hurley Wisconsin WI Iron 051 46.4448 -90.1975 +US 54536 Iron Belt Wisconsin WI Iron 051 46.3955 -90.3245 +US 54547 Mercer Wisconsin WI Iron 051 46.1696 -90.0679 +US 54550 Montreal Wisconsin WI Iron 051 46.3966 -90.3091 +US 54559 Saxon Wisconsin WI Iron 051 46.4959 -90.4383 +US 54565 Upson Wisconsin WI Iron 051 46.3761 -90.4051 +US 54611 Alma Center Wisconsin WI Jackson 053 44.4452 -90.9356 +US 54615 Black River Falls Wisconsin WI Jackson 053 44.2954 -90.8313 +US 54635 Hixton Wisconsin WI Jackson 053 44.4038 -91.0442 +US 54642 Melrose Wisconsin WI Jackson 053 44.1382 -91.0445 +US 54643 Millston Wisconsin WI Jackson 053 44.1869 -90.6358 +US 54659 Taylor Wisconsin WI Jackson 053 44.2899 -91.1128 +US 54754 Merrillan Wisconsin WI Jackson 053 44.4369 -90.8105 +US 53036 Ixonia Wisconsin WI Jefferson 055 43.1477 -88.5886 +US 53038 Johnson Creek Wisconsin WI Jefferson 055 43.0751 -88.7836 +US 53094 Watertown Wisconsin WI Jefferson 055 43.193 -88.7185 +US 53137 Helenville Wisconsin WI Jefferson 055 43.009 -88.6726 +US 53156 Palmyra Wisconsin WI Jefferson 055 42.8793 -88.5903 +US 53178 Sullivan Wisconsin WI Jefferson 055 42.9982 -88.6026 +US 53538 Fort Atkinson Wisconsin WI Jefferson 055 42.9229 -88.8467 +US 53549 Jefferson Wisconsin WI Jefferson 055 43.0006 -88.8078 +US 53551 Lake Mills Wisconsin WI Jefferson 055 43.0816 -88.9133 +US 53594 Waterloo Wisconsin WI Jefferson 055 43.1832 -88.9838 +US 53929 Elroy Wisconsin WI Juneau 057 43.7516 -90.2889 +US 53944 Lyndon Station Wisconsin WI Juneau 057 43.6899 -89.8915 +US 53948 Mauston Wisconsin WI Juneau 057 43.7934 -90.0641 +US 53950 New Lisbon Wisconsin WI Juneau 057 43.8877 -90.1524 +US 53962 Union Center Wisconsin WI Juneau 057 43.9452 -90.0495 +US 53968 Wonewoc Wisconsin WI Juneau 057 43.6285 -90.2394 +US 54618 Camp Douglas Wisconsin WI Juneau 057 43.9885 -90.2393 +US 54637 Hustler Wisconsin WI Juneau 057 43.8801 -90.2729 +US 54641 Mather Wisconsin WI Juneau 057 43.9452 -90.0495 +US 54646 Necedah Wisconsin WI Juneau 057 44.0345 -90.06 +US 53101 Bassett Wisconsin WI Kenosha 059 42.581 -87.6629 +US 53102 Benet Lake Wisconsin WI Kenosha 059 42.5001 -88.08 +US 53104 Bristol Wisconsin WI Kenosha 059 42.5325 -88.0478 +US 53109 Camp Lake Wisconsin WI Kenosha 059 42.536 -88.1444 +US 53140 Kenosha Wisconsin WI Kenosha 059 42.6052 -87.8299 +US 53141 Kenosha Wisconsin WI Kenosha 059 42.581 -87.6629 +US 53142 Kenosha Wisconsin WI Kenosha 059 42.556 -87.8705 +US 53143 Kenosha Wisconsin WI Kenosha 059 42.5617 -87.8301 +US 53144 Kenosha Wisconsin WI Kenosha 059 42.6058 -87.8762 +US 53152 New Munster Wisconsin WI Kenosha 059 42.5746 -88.2326 +US 53158 Pleasant Prairie Wisconsin WI Kenosha 059 42.5293 -87.8855 +US 53159 Powers Lake Wisconsin WI Kenosha 059 42.5557 -88.2969 +US 53168 Salem Wisconsin WI Kenosha 059 42.5709 -88.1287 +US 53170 Silver Lake Wisconsin WI Kenosha 059 42.552 -88.1608 +US 53171 Somers Wisconsin WI Kenosha 059 42.6423 -87.9032 +US 53179 Trevor Wisconsin WI Kenosha 059 42.5201 -88.1387 +US 53181 Twin Lakes Wisconsin WI Kenosha 059 42.5232 -88.2573 +US 53192 Wilmot Wisconsin WI Kenosha 059 42.5072 -88.1913 +US 53194 Woodworth Wisconsin WI Kenosha 059 42.581 -87.6629 +US 53199 Silver Lake Wisconsin WI Kenosha County 059 42.5548 -88.1716 +US 54201 Algoma Wisconsin WI Kewaunee 061 44.6101 -87.4578 +US 54205 Casco Wisconsin WI Kewaunee 061 44.5833 -87.6231 +US 54216 Kewaunee Wisconsin WI Kewaunee 061 44.4401 -87.5594 +US 54217 Luxemburg Wisconsin WI Kewaunee 061 44.5506 -87.7156 +US 54231 Rio Creek Wisconsin WI Kewaunee County 061 44.6 -87.4486 +US 54601 La Crosse Wisconsin WI La Crosse 063 43.7989 -91.2175 +US 54602 La Crosse Wisconsin WI La Crosse 063 43.9077 -91.1676 +US 54603 La Crosse Wisconsin WI La Crosse 063 43.8487 -91.2484 +US 54614 Bangor Wisconsin WI La Crosse 063 43.8687 -90.9809 +US 54636 Holmen Wisconsin WI La Crosse 063 43.9761 -91.2497 +US 54644 Mindoro Wisconsin WI La Crosse 063 44.0287 -91.0642 +US 54650 Onalaska Wisconsin WI La Crosse 063 43.8974 -91.2314 +US 54653 Rockland Wisconsin WI La Crosse 063 43.8411 -90.9507 +US 54669 West Salem Wisconsin WI La Crosse 063 43.9063 -91.0893 +US 53504 Argyle Wisconsin WI Lafayette 065 42.6955 -89.8598 +US 53510 Belmont Wisconsin WI Lafayette 065 42.7308 -90.3359 +US 53516 Blanchardville Wisconsin WI Lafayette 065 42.8062 -89.8555 +US 53530 Darlington Wisconsin WI Lafayette 065 42.6878 -90.1106 +US 53541 Gratiot Wisconsin WI Lafayette 065 42.5759 -90.0243 +US 53586 Shullsburg Wisconsin WI Lafayette 065 42.5786 -90.2266 +US 53587 South Wayne Wisconsin WI Lafayette 065 42.5822 -89.8888 +US 53599 Woodford Wisconsin WI Lafayette 065 42.6493 -89.8622 +US 53803 Benton Wisconsin WI Lafayette 065 42.5545 -90.3508 +US 54409 Antigo Wisconsin WI Langlade 067 45.1314 -89.1419 +US 54418 Bryant Wisconsin WI Langlade 067 45.203 -88.9983 +US 54424 Deerbrook Wisconsin WI Langlade 067 45.2368 -89.1873 +US 54428 Elcho Wisconsin WI Langlade 067 45.4409 -89.1516 +US 54430 Elton Wisconsin WI Langlade 067 45.1562 -88.8837 +US 54444 Kempster Wisconsin WI Langlade 067 45.2494 -89.0321 +US 54445 Lily Wisconsin WI Langlade County 067 45.3187 -88.8385 +US 54462 Pearson Wisconsin WI Langlade 067 45.3881 -89.0758 +US 54464 Phlox Wisconsin WI Langlade 067 45.2494 -89.0321 +US 54465 Pickerel Wisconsin WI Langlade 067 45.3567 -88.9137 +US 54485 Summit Lake Wisconsin WI Langlade 067 45.3965 -89.2179 +US 54491 White Lake Wisconsin WI Langlade 067 45.1715 -88.7555 +US 54435 Gleason Wisconsin WI Lincoln 069 45.3384 -89.4753 +US 54442 Irma Wisconsin WI Lincoln 069 45.3485 -89.6611 +US 54452 Merrill Wisconsin WI Lincoln 069 45.1809 -89.6907 +US 54487 Tomahawk Wisconsin WI Lincoln 069 45.4963 -89.7273 +US 54532 Heafford Junction Wisconsin WI Lincoln 069 45.3377 -89.7355 +US 53015 Cleveland Wisconsin WI Manitowoc 071 43.9217 -87.7673 +US 53042 Kiel Wisconsin WI Manitowoc 071 43.9341 -87.9956 +US 53063 Newton Wisconsin WI Manitowoc 071 43.9836 -87.7848 +US 54203 Branch Wisconsin WI Manitowoc 071 44.1099 -87.4839 +US 54206 Cato Wisconsin WI Manitowoc County 071 44.1534 -87.8432 +US 54207 Collins Wisconsin WI Manitowoc 071 44.091 -87.9902 +US 54214 Francis Creek Wisconsin WI Manitowoc 071 44.2 -87.72 +US 54215 Kellnersville Wisconsin WI Manitowoc 071 44.2226 -87.8017 +US 54220 Manitowoc Wisconsin WI Manitowoc 071 44.0971 -87.6823 +US 54221 Manitowoc Wisconsin WI Manitowoc 071 44.1323 -87.599 +US 54227 Maribel Wisconsin WI Manitowoc 071 44.2852 -87.8055 +US 54228 Mishicot Wisconsin WI Manitowoc 071 44.2609 -87.6447 +US 54230 Reedsville Wisconsin WI Manitowoc 071 44.1576 -87.966 +US 54232 Saint Nazianz Wisconsin WI Manitowoc 071 44.0064 -87.9229 +US 54240 Tisch Mills Wisconsin WI Manitowoc 071 44.2828 -87.6324 +US 54241 Two Rivers Wisconsin WI Manitowoc 071 44.166 -87.5855 +US 54245 Valders Wisconsin WI Manitowoc 071 44.042 -87.8812 +US 54247 Whitelaw Wisconsin WI Manitowoc 071 44.1573 -87.8267 +US 54401 Wausau Wisconsin WI Marathon 073 44.9654 -89.7066 +US 54402 Wausau Wisconsin WI Marathon 073 44.9009 -89.7701 +US 54403 Wausau Wisconsin WI Marathon 073 44.9529 -89.5318 +US 54408 Aniwa Wisconsin WI Marathon 073 45.0088 -89.3578 +US 54411 Athens Wisconsin WI Marathon 073 44.9823 -90.0078 +US 54417 Brokaw Wisconsin WI Marathon 073 45.0273 -89.6541 +US 54426 Edgar Wisconsin WI Marathon 073 44.9046 -90.0125 +US 54427 Eland Wisconsin WI Marathon 073 44.8309 -89.2461 +US 54429 Elderon Wisconsin WI Marathon 073 44.7802 -89.2478 +US 54432 Galloway Wisconsin WI Marathon 073 44.9009 -89.7701 +US 54440 Hatley Wisconsin WI Marathon 073 44.8256 -89.3777 +US 54448 Marathon Wisconsin WI Marathon 073 44.9657 -89.8299 +US 54453 Milan Wisconsin WI Marathon County 073 44.9811 -90.1793 +US 54455 Mosinee Wisconsin WI Marathon 073 44.7997 -89.6845 +US 54471 Ringle Wisconsin WI Marathon 073 44.9238 -89.4328 +US 54474 Rothschild Wisconsin WI Marathon 073 44.8843 -89.6193 +US 54476 Schofield Wisconsin WI Marathon 073 44.9064 -89.5818 +US 54479 Spencer Wisconsin WI Marathon 073 44.7391 -90.3114 +US 54484 Stratford Wisconsin WI Marathon 073 44.7899 -90.0583 +US 54488 Unity Wisconsin WI Marathon 073 44.8227 -90.3221 +US 54102 Amberg Wisconsin WI Marinette 075 45.4989 -87.9643 +US 54104 Athelstane Wisconsin WI Marinette 075 45.4228 -88.1753 +US 54112 Coleman Wisconsin WI Marinette 075 45.0722 -88.0587 +US 54114 Crivitz Wisconsin WI Marinette 075 45.2617 -88.078 +US 54119 Dunbar Wisconsin WI Marinette 075 45.6009 -88.1067 +US 54125 Goodman Wisconsin WI Marinette 075 45.6469 -88.3629 +US 54143 Marinette Wisconsin WI Marinette 075 45.0874 -87.6697 +US 54151 Niagara Wisconsin WI Marinette 075 45.7653 -88.0309 +US 54156 Pembine Wisconsin WI Marinette 075 45.6074 -87.9704 +US 54157 Peshtigo Wisconsin WI Marinette 075 45.048 -87.8103 +US 54159 Porterfield Wisconsin WI Marinette 075 45.1934 -87.8062 +US 54161 Pound Wisconsin WI Marinette 075 45.1273 -88.1396 +US 54177 Wausaukee Wisconsin WI Marinette 075 45.3495 -87.9099 +US 53920 Briggsville Wisconsin WI Marquette 077 43.6759 -89.5803 +US 53930 Endeavor Wisconsin WI Marquette 077 43.6963 -89.4617 +US 53949 Montello Wisconsin WI Marquette 077 43.769 -89.3586 +US 53952 Oxford Wisconsin WI Marquette 077 43.7799 -89.5632 +US 53953 Packwaukee Wisconsin WI Marquette 077 43.7644 -89.4576 +US 53964 Westfield Wisconsin WI Marquette 077 43.8968 -89.502 +US 54960 Neshkoro Wisconsin WI Marquette 077 43.8989 -89.2336 +US 54135 Keshena Wisconsin WI Menominee 078 44.9146 -88.6357 +US 54150 Neopit Wisconsin WI Menominee 078 44.9873 -88.8611 +US 53110 Cudahy Wisconsin WI Milwaukee 079 42.949 -87.862 +US 53129 Greendale Wisconsin WI Milwaukee 079 42.9373 -87.9943 +US 53130 Hales Corners Wisconsin WI Milwaukee 079 42.941 -88.0503 +US 53132 Franklin Wisconsin WI Milwaukee 079 42.9017 -88.0086 +US 53154 Oak Creek Wisconsin WI Milwaukee 079 42.8892 -87.9027 +US 53172 South Milwaukee Wisconsin WI Milwaukee 079 42.9105 -87.8646 +US 53201 Milwaukee Wisconsin WI Milwaukee 079 43.0113 -87.9584 +US 53202 Milwaukee Wisconsin WI Milwaukee 079 43.0506 -87.8968 +US 53203 Milwaukee Wisconsin WI Milwaukee 079 43.0403 -87.9154 +US 53204 Milwaukee Wisconsin WI Milwaukee 079 43.0158 -87.9317 +US 53205 Milwaukee Wisconsin WI Milwaukee 079 43.0528 -87.9353 +US 53206 Milwaukee Wisconsin WI Milwaukee 079 43.0753 -87.9347 +US 53207 Milwaukee Wisconsin WI Milwaukee 079 42.9751 -87.8947 +US 53208 Milwaukee Wisconsin WI Milwaukee 079 43.0488 -87.9625 +US 53209 Milwaukee Wisconsin WI Milwaukee 079 43.1188 -87.9478 +US 53210 Milwaukee Wisconsin WI Milwaukee 079 43.0685 -87.9715 +US 53211 Milwaukee Wisconsin WI Milwaukee 079 43.082 -87.8895 +US 53212 Milwaukee Wisconsin WI Milwaukee 079 43.0712 -87.9084 +US 53213 Milwaukee Wisconsin WI Milwaukee 079 43.0488 -88.0015 +US 53214 Milwaukee Wisconsin WI Milwaukee 079 43.0215 -88.0176 +US 53215 Milwaukee Wisconsin WI Milwaukee 079 43.006 -87.9429 +US 53216 Milwaukee Wisconsin WI Milwaukee 079 43.0859 -87.9742 +US 53217 Milwaukee Wisconsin WI Milwaukee 079 43.1409 -87.9073 +US 53218 Milwaukee Wisconsin WI Milwaukee 079 43.1122 -87.9932 +US 53219 Milwaukee Wisconsin WI Milwaukee 079 42.9959 -87.9944 +US 53220 Milwaukee Wisconsin WI Milwaukee 079 42.9559 -87.9933 +US 53221 Milwaukee Wisconsin WI Milwaukee 079 42.9549 -87.9447 +US 53222 Milwaukee Wisconsin WI Milwaukee 079 43.0828 -88.0269 +US 53223 Milwaukee Wisconsin WI Milwaukee 079 43.1624 -87.9898 +US 53224 Milwaukee Wisconsin WI Milwaukee 079 43.1594 -88.0327 +US 53225 Milwaukee Wisconsin WI Milwaukee 079 43.1154 -88.0346 +US 53226 Milwaukee Wisconsin WI Milwaukee 079 43.0493 -88.0414 +US 53227 Milwaukee Wisconsin WI Milwaukee 079 42.9949 -88.0364 +US 53228 Milwaukee Wisconsin WI Milwaukee 079 42.9676 -88.0434 +US 53233 Milwaukee Wisconsin WI Milwaukee 079 43.0407 -87.9357 +US 53234 Milwaukee Wisconsin WI Milwaukee 079 43.0174 -87.5697 +US 53235 Milwaukee Wisconsin WI Milwaukee 079 42.9731 -87.8687 +US 53235 Saint Francis Wisconsin WI Milwaukee 079 42.9731 -87.8687 +US 53237 Milwaukee Wisconsin WI Milwaukee 079 43.0174 -87.5697 +US 53244 Milwaukee Wisconsin WI Milwaukee County 079 42.9426 -87.9119 +US 53259 Milwaukee Wisconsin WI Milwaukee 079 43.0387 -87.9139 +US 53263 Milwaukee Wisconsin WI Milwaukee 079 43.0746 -88.0604 +US 53267 Milwaukee Wisconsin WI Milwaukee 079 43.044 -87.9098 +US 53268 Milwaukee Wisconsin WI Milwaukee 079 43.0385 -87.9096 +US 53270 Milwaukee Wisconsin WI Milwaukee 079 43.0388 -87.9036 +US 53274 Milwaukee Wisconsin WI Milwaukee 079 43.0174 -87.5697 +US 53277 Milwaukee Wisconsin WI Milwaukee 079 43.0389 -87.9024 +US 53278 Milwaukee Wisconsin WI Milwaukee 079 43.0389 -87.9024 +US 53280 Milwaukee Wisconsin WI Milwaukee 079 43.041 -87.9578 +US 53281 Milwaukee Wisconsin WI Milwaukee 079 43.041 -87.9578 +US 53284 Milwaukee Wisconsin WI Milwaukee 079 43.0174 -87.5697 +US 53285 Milwaukee Wisconsin WI Milwaukee 079 43.0174 -87.5697 +US 53288 Milwaukee Wisconsin WI Milwaukee 079 43.0406 -87.9098 +US 53290 Milwaukee Wisconsin WI Milwaukee 079 43.0373 -87.914 +US 53293 Milwaukee Wisconsin WI Milwaukee 079 43.0408 -87.9191 +US 53295 Milwaukee Wisconsin WI Milwaukee 079 43.0174 -87.5697 +US 54619 Cashton Wisconsin WI Monroe 081 43.7456 -90.7612 +US 54620 Cataract Wisconsin WI Monroe 081 44.0876 -90.8423 +US 54638 Kendall Wisconsin WI Monroe 081 43.8161 -90.4107 +US 54648 Norwalk Wisconsin WI Monroe 081 43.8128 -90.6801 +US 54649 Oakdale Wisconsin WI Monroe 081 43.9715 -90.3612 +US 54656 Sparta Wisconsin WI Monroe 081 43.954 -90.8146 +US 54660 Tomah Wisconsin WI Monroe 081 43.9838 -90.4733 +US 54662 Tunnel City Wisconsin WI Monroe 081 44.0031 -90.562 +US 54666 Warrens Wisconsin WI Monroe 081 44.157 -90.4967 +US 54670 Wilton Wisconsin WI Monroe 081 43.8322 -90.5162 +US 54101 Abrams Wisconsin WI Oconto 083 44.7869 -88.0571 +US 54124 Gillett Wisconsin WI Oconto 083 44.9018 -88.3242 +US 54138 Lakewood Wisconsin WI Oconto 083 45.3163 -88.5032 +US 54139 Lena Wisconsin WI Oconto 083 44.956 -88.075 +US 54141 Little Suamico Wisconsin WI Oconto 083 44.6775 -88.0272 +US 54149 Mountain Wisconsin WI Oconto 083 45.1991 -88.4583 +US 54153 Oconto Wisconsin WI Oconto 083 44.8914 -87.8917 +US 54154 Oconto Falls Wisconsin WI Oconto 083 44.8755 -88.1555 +US 54164 Gillett Wisconsin WI Oconto County 083 44.8172 -88.3836 +US 54171 Sobieski Wisconsin WI Oconto 083 44.7105 -88.1076 +US 54174 Suring Wisconsin WI Oconto 083 45.0186 -88.3628 +US 54175 Townsend Wisconsin WI Oconto 083 45.3148 -88.6107 +US 54176 Underhill Wisconsin WI Oconto County 083 44.7318 -88.1689 +US 54463 Pelican Lake Wisconsin WI Oneida 085 45.5049 -89.1817 +US 54501 Rhinelander Wisconsin WI Oneida 085 45.7045 -89.3866 +US 54529 Harshaw Wisconsin WI Oneida 085 45.6762 -89.6503 +US 54531 Hazelhurst Wisconsin WI Oneida 085 45.7745 -89.7478 +US 54539 Lake Tomahawk Wisconsin WI Oneida 085 45.8035 -89.5856 +US 54543 Mc Naughton Wisconsin WI Oneida 085 45.7229 -89.5573 +US 54548 Minocqua Wisconsin WI Oneida 085 45.8719 -89.758 +US 54562 Three Lakes Wisconsin WI Oneida 085 45.8046 -89.1328 +US 54564 Tripoli Wisconsin WI Oneida 085 45.5814 -89.9852 +US 54568 Woodruff Wisconsin WI Oneida 085 45.9186 -89.6954 +US 54106 Black Creek Wisconsin WI Outagamie 087 44.4702 -88.4547 +US 54113 Combined Locks Wisconsin WI Outagamie 087 44.2666 -88.3133 +US 54130 Kaukauna Wisconsin WI Outagamie 087 44.2956 -88.2717 +US 54131 Freedom Wisconsin WI Outagamie 087 44.4163 -88.4649 +US 54136 Kimberly Wisconsin WI Outagamie 087 44.2701 -88.3384 +US 54140 Little Chute Wisconsin WI Outagamie 087 44.2842 -88.312 +US 54152 Nichols Wisconsin WI Outagamie 087 44.5668 -88.4582 +US 54155 Oneida Wisconsin WI Outagamie 087 44.5166 -88.1859 +US 54165 Seymour Wisconsin WI Outagamie 087 44.5091 -88.3172 +US 54170 Shiocton Wisconsin WI Outagamie 087 44.4972 -88.5562 +US 54911 Appleton Wisconsin WI Outagamie 087 44.2773 -88.3976 +US 54912 Appleton Wisconsin WI Outagamie 087 44.4163 -88.4649 +US 54913 Appleton Wisconsin WI Outagamie 087 44.3456 -88.4343 +US 54914 Appleton Wisconsin WI Outagamie 087 44.271 -88.4326 +US 54915 Appleton Wisconsin WI Outagamie 087 44.2425 -88.3564 +US 54919 Appleton Wisconsin WI Outagamie 087 44.4163 -88.4649 +US 54922 Bear Creek Wisconsin WI Outagamie 087 44.5348 -88.7404 +US 54931 Dale Wisconsin WI Outagamie 087 44.4163 -88.4649 +US 54942 Greenville Wisconsin WI Outagamie 087 44.2997 -88.5696 +US 54944 Hortonville Wisconsin WI Outagamie 087 44.3273 -88.6281 +US 54951 Medina Wisconsin WI Outagamie 087 44.4163 -88.4649 +US 53004 Belgium Wisconsin WI Ozaukee 089 43.4995 -87.8509 +US 53012 Cedarburg Wisconsin WI Ozaukee 089 43.3034 -88.0029 +US 53021 Fredonia Wisconsin WI Ozaukee 089 43.477 -87.9612 +US 53024 Grafton Wisconsin WI Ozaukee 089 43.3231 -87.9521 +US 53074 Port Washington Wisconsin WI Ozaukee 089 43.3955 -87.8797 +US 53080 Saukville Wisconsin WI Ozaukee 089 43.3913 -87.9568 +US 53092 Thiensville Wisconsin WI Ozaukee 089 43.2359 -87.9812 +US 53097 Mequon Wisconsin WI Ozaukee 089 43.2461 -88.0046 +US 54721 Arkansaw Wisconsin WI Pepin 091 44.6267 -92.0566 +US 54736 Durand Wisconsin WI Pepin 091 44.63 -91.9295 +US 54759 Pepin Wisconsin WI Pepin 091 44.4587 -92.1394 +US 54769 Stockholm Wisconsin WI Pepin 091 44.5084 -92.2326 +US 54003 Beldenville Wisconsin WI Pierce 093 44.7721 -92.4372 +US 54010 East Ellsworth Wisconsin WI Pierce 093 44.7348 -92.4655 +US 54011 Ellsworth Wisconsin WI Pierce 093 44.7302 -92.489 +US 54014 Hager City Wisconsin WI Pierce 093 44.627 -92.5501 +US 54021 Prescott Wisconsin WI Pierce 093 44.7476 -92.7535 +US 54022 River Falls Wisconsin WI Pierce 093 44.855 -92.6313 +US 54723 Bay City Wisconsin WI Pierce 093 44.6166 -92.4469 +US 54740 Elmwood Wisconsin WI Pierce 093 44.7561 -92.2022 +US 54750 Maiden Rock Wisconsin WI Pierce 093 44.6086 -92.2782 +US 54761 Plum City Wisconsin WI Pierce 093 44.636 -92.1837 +US 54767 Spring Valley Wisconsin WI Pierce 093 44.8356 -92.2906 +US 54001 Amery Wisconsin WI Polk 095 45.3486 -92.4014 +US 54004 Clayton Wisconsin WI Polk 095 45.3063 -92.1395 +US 54005 Clear Lake Wisconsin WI Polk 095 45.2365 -92.2749 +US 54006 Cushing Wisconsin WI Polk 095 45.5604 -92.6241 +US 54009 Dresser Wisconsin WI Polk 095 45.3546 -92.5623 +US 54020 Osceola Wisconsin WI Polk 095 45.3218 -92.6971 +US 54024 Saint Croix Falls Wisconsin WI Polk 095 45.5097 -92.6117 +US 54026 Star Prairie Wisconsin WI Polk 095 45.2013 -92.5514 +US 54810 Balsam Lake Wisconsin WI Polk 095 45.4588 -92.415 +US 54824 Centuria Wisconsin WI Polk 095 45.4484 -92.5477 +US 54837 Frederic Wisconsin WI Polk 095 45.6729 -92.3545 +US 54851 Lewis Wisconsin WI Polk 095 45.4689 -92.5219 +US 54853 Luck Wisconsin WI Polk 095 45.5568 -92.4164 +US 54858 Milltown Wisconsin WI Polk 095 45.5271 -92.5017 +US 54406 Amherst Wisconsin WI Portage 097 44.4231 -89.3035 +US 54407 Amherst Junction Wisconsin WI Portage 097 44.5065 -89.3038 +US 54423 Custer Wisconsin WI Portage 097 44.5662 -89.4153 +US 54443 Junction City Wisconsin WI Portage 097 44.5963 -89.7438 +US 54458 Nelsonville Wisconsin WI Portage 097 44.4902 -89.3109 +US 54467 Plover Wisconsin WI Portage 097 44.4507 -89.5428 +US 54473 Rosholt Wisconsin WI Portage 097 44.6622 -89.3356 +US 54481 Stevens Point Wisconsin WI Portage 097 44.5212 -89.5588 +US 54482 Stevens Point Wisconsin WI Portage County 097 44.5563 -89.5182 +US 54492 Stevens Point Wisconsin WI Portage 097 44.5094 -89.5286 +US 54909 Almond Wisconsin WI Portage 097 44.2898 -89.3584 +US 54921 Bancroft Wisconsin WI Portage 097 44.3065 -89.5304 +US 54459 Ogema Wisconsin WI Price 099 45.4392 -90.2565 +US 54513 Brantwood Wisconsin WI Price 099 45.5514 -90.116 +US 54515 Catawba Wisconsin WI Price 099 45.5081 -90.5146 +US 54524 Fifield Wisconsin WI Price 099 45.8143 -90.453 +US 54537 Kennan Wisconsin WI Price 099 45.535 -90.591 +US 54552 Park Falls Wisconsin WI Price 099 45.9363 -90.4246 +US 54555 Phillips Wisconsin WI Price 099 45.6975 -90.4041 +US 54556 Prentice Wisconsin WI Price 099 45.5482 -90.2942 +US 53105 Burlington Wisconsin WI Racine 101 42.666 -88.2749 +US 53108 Caledonia Wisconsin WI Racine 101 42.8295 -87.9228 +US 53126 Franksville Wisconsin WI Racine 101 42.7859 -87.9873 +US 53139 Kansasville Wisconsin WI Racine 101 42.7012 -88.118 +US 53167 Rochester Wisconsin WI Racine 101 42.7413 -88.2253 +US 53177 Sturtevant Wisconsin WI Racine 101 42.6967 -87.9031 +US 53182 Union Grove Wisconsin WI Racine 101 42.6896 -88.039 +US 53185 Waterford Wisconsin WI Racine 101 42.7632 -88.1974 +US 53401 Racine Wisconsin WI Racine 101 42.7272 -87.676 +US 53402 Racine Wisconsin WI Racine 101 42.7726 -87.796 +US 53403 Racine Wisconsin WI Racine 101 42.706 -87.8014 +US 53404 Racine Wisconsin WI Racine 101 42.7433 -87.8053 +US 53405 Racine Wisconsin WI Racine 101 42.7161 -87.8233 +US 53406 Racine Wisconsin WI Racine 101 42.7242 -87.8551 +US 53407 Racine Wisconsin WI Racine 101 42.7312 -87.7828 +US 53408 Racine Wisconsin WI Racine 101 42.7272 -87.676 +US 53490 Racine Wisconsin WI Racine 101 42.7272 -87.676 +US 53540 Gotham Wisconsin WI Richland 103 43.2345 -90.2618 +US 53556 Lone Rock Wisconsin WI Richland 103 43.2208 -90.2352 +US 53581 Richland Center Wisconsin WI Richland 103 43.3661 -90.4302 +US 53584 Sextonville Wisconsin WI Richland 103 43.2794 -90.2876 +US 53924 Cazenovia Wisconsin WI Richland 103 43.4987 -90.2796 +US 54617 Bloom City Wisconsin WI Richland County 103 43.509 -90.6665 +US 53501 Afton Wisconsin WI Rock 105 42.6055 -89.0704 +US 53505 Avalon Wisconsin WI Rock 105 42.6593 -88.8307 +US 53511 Beloit Wisconsin WI Rock 105 42.562 -89.086 +US 53512 Beloit Wisconsin WI Rock 105 42.6698 -89.0728 +US 53525 Clinton Wisconsin WI Rock 105 42.5535 -88.8705 +US 53534 Edgerton Wisconsin WI Rock 105 42.8386 -89.0642 +US 53536 Evansville Wisconsin WI Rock 105 42.7732 -89.2877 +US 53537 Footville Wisconsin WI Rock 105 42.6726 -89.2112 +US 53542 Hanover Wisconsin WI Rock 105 42.6323 -89.1594 +US 53545 Janesville Wisconsin WI Rock 105 42.7355 -89.0405 +US 53546 Janesville Wisconsin WI Rock 105 42.6683 -89.0025 +US 53547 Janesville Wisconsin WI Rock 105 42.7294 -89.0301 +US 53548 Janesville Wisconsin WI Rock County 105 42.6854 -89.1287 +US 53563 Milton Wisconsin WI Rock 105 42.7791 -88.9531 +US 53576 Orfordville Wisconsin WI Rock 105 42.6278 -89.2533 +US 54526 Glen Flora Wisconsin WI Rusk 107 45.4862 -90.8479 +US 54530 Hawkins Wisconsin WI Rusk 107 45.5241 -90.7114 +US 54563 Tony Wisconsin WI Rusk 107 45.4741 -90.9869 +US 54731 Conrath Wisconsin WI Rusk 107 45.3533 -91.0621 +US 54766 Sheldon Wisconsin WI Rusk 107 45.3182 -90.9141 +US 54819 Bruce Wisconsin WI Rusk 107 45.4479 -91.2906 +US 54848 Ladysmith Wisconsin WI Rusk 107 45.4719 -91.1088 +US 54895 Weyerhaeuser Wisconsin WI Rusk 107 45.4263 -91.4289 +US 54002 Baldwin Wisconsin WI St. Croix 109 44.9657 -92.3655 +US 54007 Deer Park Wisconsin WI St. Croix 109 45.169 -92.3585 +US 54012 Emerald Wisconsin WI St. Croix 109 45.0786 -92.3128 +US 54013 Glenwood City Wisconsin WI St. Croix 109 45.0623 -92.1816 +US 54015 Hammond Wisconsin WI St. Croix 109 44.967 -92.4472 +US 54016 Hudson Wisconsin WI St. Croix 109 44.9842 -92.7271 +US 54017 New Richmond Wisconsin WI St. Croix 109 45.1598 -92.5513 +US 54023 Roberts Wisconsin WI St. Croix 109 44.9874 -92.5598 +US 54025 Somerset Wisconsin WI St. Croix 109 45.1331 -92.6865 +US 54027 Wilson Wisconsin WI St. Croix 109 44.9466 -92.1965 +US 54028 Woodville Wisconsin WI St. Croix 109 44.9408 -92.2848 +US 54082 Houlton Wisconsin WI St. Croix 109 45.0655 -92.7572 +US 54082 Saint Joseph Wisconsin WI St. Croix 109 45.0701 -92.7608 +US 53561 Merrimac Wisconsin WI Sauk 111 43.3855 -89.6323 +US 53577 Plain Wisconsin WI Sauk 111 43.2927 -90.0558 +US 53578 Prairie Du Sac Wisconsin WI Sauk 111 43.2956 -89.7452 +US 53583 Sauk City Wisconsin WI Sauk 111 43.2686 -89.7418 +US 53588 Spring Green Wisconsin WI Sauk 111 43.1883 -90.0676 +US 53913 Baraboo Wisconsin WI Sauk 111 43.4825 -89.7462 +US 53937 Hillpoint Wisconsin WI Sauk 111 43.3951 -90.1588 +US 53940 Lake Delton Wisconsin WI Sauk 111 43.5939 -89.7912 +US 53941 La Valle Wisconsin WI Sauk 111 43.5699 -90.128 +US 53942 Lime Ridge Wisconsin WI Sauk 111 43.4682 -90.1615 +US 53943 Loganville Wisconsin WI Sauk 111 43.405 -90.0337 +US 53951 North Freedom Wisconsin WI Sauk 111 43.4106 -89.849 +US 53958 Reedsburg Wisconsin WI Sauk 111 43.3938 -89.9559 +US 53959 Reedsburg Wisconsin WI Sauk 111 43.5316 -89.9959 +US 53961 Rock Springs Wisconsin WI Sauk 111 43.4681 -89.9218 +US 54828 Couderay Wisconsin WI Sawyer 113 45.838 -91.2918 +US 54834 Edgewater Wisconsin WI Sawyer 113 45.7424 -91.4765 +US 54835 Exeland Wisconsin WI Sawyer 113 45.6753 -91.2238 +US 54843 Hayward Wisconsin WI Sawyer 113 45.9552 -91.2783 +US 54862 Ojibwa Wisconsin WI Sawyer 113 45.7854 -91.1109 +US 54867 Radisson Wisconsin WI Sawyer 113 45.7734 -91.2262 +US 54876 Stone Lake Wisconsin WI Sawyer 113 45.8337 -91.5093 +US 54896 Winter Wisconsin WI Sawyer 113 45.8327 -91.0144 +US 54107 Bonduel Wisconsin WI Shawano 115 44.6992 -88.4543 +US 54111 Cecil Wisconsin WI Shawano 115 44.811 -88.4183 +US 54127 Green Valley Wisconsin WI Shawano 115 44.7964 -88.2696 +US 54128 Gresham Wisconsin WI Shawano 115 44.853 -88.7887 +US 54137 Krakow Wisconsin WI Shawano 115 44.7635 -88.2593 +US 54166 Shawano Wisconsin WI Shawano 115 44.7851 -88.6036 +US 54182 Zachow Wisconsin WI Shawano 115 44.7315 -88.3698 +US 54414 Birnamwood Wisconsin WI Shawano 115 44.9269 -89.2124 +US 54416 Bowler Wisconsin WI Shawano 115 44.9337 -88.9761 +US 54450 Mattoon Wisconsin WI Shawano 115 45.0062 -89.0474 +US 54486 Tigerton Wisconsin WI Shawano 115 44.7299 -89.0569 +US 54499 Wittenberg Wisconsin WI Shawano 115 44.8232 -89.1665 +US 54928 Caroline Wisconsin WI Shawano 115 44.7276 -88.8887 +US 54948 Leopolis Wisconsin WI Shawano 115 44.7812 -88.8722 +US 54978 Tilleda Wisconsin WI Shawano 115 44.796 -88.8984 +US 53001 Adell Wisconsin WI Sheboygan 117 43.6151 -88.0254 +US 53011 Cascade Wisconsin WI Sheboygan 117 43.6591 -88.0947 +US 53013 Cedar Grove Wisconsin WI Sheboygan 117 43.5751 -87.8401 +US 53020 Elkhart Lake Wisconsin WI Sheboygan 117 43.8436 -87.9767 +US 53023 Glenbeulah Wisconsin WI Sheboygan 117 43.7666 -88.1049 +US 53026 Greenbush Wisconsin WI Sheboygan 117 43.7183 -87.6187 +US 53031 Hingham Wisconsin WI Sheboygan 117 43.6394 -87.9157 +US 53044 Kohler Wisconsin WI Sheboygan 117 43.7381 -87.7867 +US 53070 Oostburg Wisconsin WI Sheboygan 117 43.6229 -87.797 +US 53073 Plymouth Wisconsin WI Sheboygan 117 43.7526 -87.9779 +US 53075 Random Lake Wisconsin WI Sheboygan 117 43.5672 -87.9816 +US 53081 Sheboygan Wisconsin WI Sheboygan 117 43.741 -87.7247 +US 53082 Sheboygan Wisconsin WI Sheboygan 117 43.7183 -87.6187 +US 53083 Sheboygan Wisconsin WI Sheboygan 117 43.8176 -87.766 +US 53085 Sheboygan Falls Wisconsin WI Sheboygan 117 43.7266 -87.8242 +US 53093 Waldo Wisconsin WI Sheboygan 117 43.6571 -87.9722 +US 54419 Chelsea Wisconsin WI Taylor County 119 45.289 -90.3054 +US 54433 Gilman Wisconsin WI Taylor 119 45.1891 -90.8257 +US 54434 Jump River Wisconsin WI Taylor 119 45.2068 -90.4841 +US 54439 Hannibal Wisconsin WI Taylor 119 45.2068 -90.4841 +US 54447 Lublin Wisconsin WI Taylor 119 45.0739 -90.7337 +US 54451 Medford Wisconsin WI Taylor 119 45.1512 -90.3503 +US 54470 Rib Lake Wisconsin WI Taylor 119 45.2984 -90.1763 +US 54480 Stetsonville Wisconsin WI Taylor 119 45.0792 -90.2829 +US 54490 Westboro Wisconsin WI Taylor 119 45.3445 -90.3072 +US 54612 Arcadia Wisconsin WI Trempealeau 121 44.2539 -91.4805 +US 54616 Blair Wisconsin WI Trempealeau 121 44.2968 -91.2235 +US 54625 Dodge Wisconsin WI Trempealeau 121 44.1431 -91.5204 +US 54627 Ettrick Wisconsin WI Trempealeau 121 44.1724 -91.2635 +US 54630 Galesville Wisconsin WI Trempealeau 121 44.0888 -91.3588 +US 54661 Trempealeau Wisconsin WI Trempealeau 121 44.0218 -91.4282 +US 54738 Eleva Wisconsin WI Trempealeau 121 44.5985 -91.4804 +US 54747 Independence Wisconsin WI Trempealeau 121 44.3959 -91.4535 +US 54758 Osseo Wisconsin WI Trempealeau 121 44.5599 -91.2191 +US 54760 Pigeon Falls Wisconsin WI Trempealeau 121 44.4249 -91.2074 +US 54770 Strum Wisconsin WI Trempealeau 121 44.5674 -91.3833 +US 54773 Whitehall Wisconsin WI Trempealeau 121 44.3827 -91.303 +US 54621 Chaseburg Wisconsin WI Vernon 123 43.6794 -91.0799 +US 54623 Coon Valley Wisconsin WI Vernon 123 43.7218 -91.0143 +US 54624 De Soto Wisconsin WI Vernon 123 43.4807 -91.1333 +US 54632 Genoa Wisconsin WI Vernon 123 43.5641 -91.1461 +US 54634 Hillsboro Wisconsin WI Vernon 123 43.5966 -90.4266 +US 54639 La Farge Wisconsin WI Vernon 123 43.6 -90.6365 +US 54651 Ontario Wisconsin WI Vernon 123 43.7172 -90.6205 +US 54652 Readstown Wisconsin WI Vernon 123 43.4508 -90.7579 +US 54658 Stoddard Wisconsin WI Vernon 123 43.6912 -91.1919 +US 54664 Viola Wisconsin WI Vernon 123 43.5048 -90.6554 +US 54665 Viroqua Wisconsin WI Vernon 123 43.5442 -90.8939 +US 54667 Westby Wisconsin WI Vernon 123 43.6631 -90.874 +US 54512 Boulder Junction Wisconsin WI Vilas 125 46.1112 -89.6325 +US 54519 Conover Wisconsin WI Vilas 125 46.044 -89.2389 +US 54521 Eagle River Wisconsin WI Vilas 125 45.9161 -89.2531 +US 54538 Lac Du Flambeau Wisconsin WI Vilas 125 45.9718 -89.8901 +US 54540 Land O Lakes Wisconsin WI Vilas 125 46.1563 -89.3218 +US 54545 Manitowish Waters Wisconsin WI Vilas 125 46.1551 -89.8455 +US 54554 Phelps Wisconsin WI Vilas 125 46.0645 -89.0815 +US 54557 Presque Isle Wisconsin WI Vilas 125 46.2 -89.7387 +US 54558 Saint Germain Wisconsin WI Vilas 125 45.9183 -89.4866 +US 54560 Sayner Wisconsin WI Vilas 125 45.9867 -89.5194 +US 54561 Star Lake Wisconsin WI Vilas 125 46.0613 -89.4858 +US 53114 Darien Wisconsin WI Walworth 127 42.5973 -88.7508 +US 53115 Delavan Wisconsin WI Walworth 127 42.6227 -88.6277 +US 53120 East Troy Wisconsin WI Walworth 127 42.8035 -88.4092 +US 53121 Elkhorn Wisconsin WI Walworth 127 42.7009 -88.5462 +US 53125 Fontana Wisconsin WI Walworth 127 42.5429 -88.5684 +US 53128 Genoa City Wisconsin WI Walworth 127 42.5323 -88.3485 +US 53138 Honey Creek Wisconsin WI Walworth 127 42.6675 -88.5417 +US 53147 Lake Geneva Wisconsin WI Walworth 127 42.5881 -88.4554 +US 53148 Lyons Wisconsin WI Walworth 127 42.6487 -88.359 +US 53157 Pell Lake Wisconsin WI Walworth 127 42.54 -88.3582 +US 53176 Springfield Wisconsin WI Walworth 127 42.636 -88.416 +US 53184 Walworth Wisconsin WI Walworth 127 42.535 -88.6027 +US 53190 Whitewater Wisconsin WI Walworth 127 42.8272 -88.7429 +US 53191 Williams Bay Wisconsin WI Walworth 127 42.5767 -88.5431 +US 53195 Zenda Wisconsin WI Walworth 127 42.5136 -88.4843 +US 53585 Sharon Wisconsin WI Walworth 127 42.5194 -88.7265 +US 54801 Spooner Wisconsin WI Washburn 129 45.8505 -91.9155 +US 54817 Birchwood Wisconsin WI Washburn 129 45.6403 -91.5776 +US 54859 Minong Wisconsin WI Washburn 129 46.1044 -91.8506 +US 54870 Sarona Wisconsin WI Washburn 129 45.7085 -91.7621 +US 54871 Shell Lake Wisconsin WI Washburn 129 45.7536 -91.9606 +US 54875 Springbrook Wisconsin WI Washburn 129 45.9452 -91.6754 +US 54888 Trego Wisconsin WI Washburn 129 45.9516 -91.8581 +US 53002 Allenton Wisconsin WI Washington 131 43.4681 -88.3539 +US 53017 Colgate Wisconsin WI Washington 131 43.1998 -88.2406 +US 53022 Germantown Wisconsin WI Washington 131 43.2189 -88.1165 +US 53027 Hartford Wisconsin WI Washington 131 43.3157 -88.3707 +US 53033 Hubertus Wisconsin WI Washington 131 43.2343 -88.2311 +US 53037 Jackson Wisconsin WI Washington 131 43.3252 -88.1626 +US 53040 Kewaskum Wisconsin WI Washington 131 43.5214 -88.1925 +US 53060 Newburg Wisconsin WI Washington 131 43.4338 -88.0623 +US 53076 Richfield Wisconsin WI Washington 131 43.2739 -88.2155 +US 53077 Rockfield Wisconsin WI Washington County 131 43.2575 -88.126 +US 53086 Slinger Wisconsin WI Washington 131 43.3322 -88.2824 +US 53090 West Bend Wisconsin WI Washington 131 43.4438 -88.1963 +US 53095 West Bend Wisconsin WI Washington 131 43.4224 -88.1845 +US 53096 West Bend Wisconsin WI Washington County 131 43.4252 -88.1832 +US 53005 Brookfield Wisconsin WI Waukesha 133 43.0622 -88.098 +US 53007 Butler Wisconsin WI Waukesha 133 43.1054 -88.071 +US 53008 Brookfield Wisconsin WI Waukesha 133 43.0187 -88.303 +US 53018 Delafield Wisconsin WI Waukesha 133 43.05 -88.3972 +US 53029 Hartland Wisconsin WI Waukesha 133 43.1172 -88.3446 +US 53045 Brookfield Wisconsin WI Waukesha 133 43.0668 -88.1469 +US 53046 Lannon Wisconsin WI Waukesha 133 43.1497 -88.1639 +US 53051 Menomonee Falls Wisconsin WI Waukesha 133 43.1602 -88.1128 +US 53052 Menomonee Falls Wisconsin WI Waukesha 133 43.0187 -88.303 +US 53056 Merton Wisconsin WI Waukesha 133 43.146 -88.3097 +US 53058 Nashotah Wisconsin WI Waukesha 133 43.1118 -88.4089 +US 53064 North Lake Wisconsin WI Waukesha 133 43.0187 -88.303 +US 53066 Oconomowoc Wisconsin WI Waukesha 133 43.1095 -88.4862 +US 53069 Okauchee Wisconsin WI Waukesha 133 43.113 -88.4323 +US 53072 Pewaukee Wisconsin WI Waukesha 133 43.0788 -88.2729 +US 53089 Sussex Wisconsin WI Waukesha 133 43.1441 -88.2271 +US 53103 Big Bend Wisconsin WI Waukesha 133 42.8885 -88.2122 +US 53118 Dousman Wisconsin WI Waukesha 133 42.9851 -88.4568 +US 53119 Eagle Wisconsin WI Waukesha 133 42.8809 -88.4674 +US 53122 Elm Grove Wisconsin WI Waukesha 133 43.0479 -88.0854 +US 53127 Genesee Depot Wisconsin WI Waukesha 133 42.9601 -88.3745 +US 53146 New Berlin Wisconsin WI Waukesha 133 42.974 -88.1553 +US 53149 Mukwonago Wisconsin WI Waukesha 133 42.8821 -88.3451 +US 53150 Muskego Wisconsin WI Waukesha 133 42.9047 -88.1214 +US 53151 New Berlin Wisconsin WI Waukesha 133 42.9822 -88.0946 +US 53153 North Prairie Wisconsin WI Waukesha 133 42.9385 -88.395 +US 53183 Wales Wisconsin WI Waukesha 133 43.0088 -88.3787 +US 53186 Waukesha Wisconsin WI Waukesha 133 42.9993 -88.2196 +US 53187 Waukesha Wisconsin WI Waukesha 133 43.0187 -88.303 +US 53188 Waukesha Wisconsin WI Waukesha 133 43.0128 -88.2705 +US 53189 Waukesha Wisconsin WI Waukesha 133 42.9516 -88.2963 +US 54926 Big Falls Wisconsin WI Waupaca 135 44.6178 -89.0166 +US 54929 Clintonville Wisconsin WI Waupaca 135 44.6364 -88.743 +US 54933 Embarrass Wisconsin WI Waupaca 135 44.6686 -88.7043 +US 54940 Fremont Wisconsin WI Waupaca 135 44.2379 -88.8449 +US 54945 Iola Wisconsin WI Waupaca 135 44.5322 -89.1373 +US 54946 King Wisconsin WI Waupaca 135 44.3365 -89.1463 +US 54949 Manawa Wisconsin WI Waupaca 135 44.4701 -88.9164 +US 54950 Marion Wisconsin WI Waupaca 135 44.6794 -88.8767 +US 54961 New London Wisconsin WI Waupaca 135 44.3928 -88.7554 +US 54962 Ogdensburg Wisconsin WI Waupaca 135 44.4268 -88.9932 +US 54969 Readfield Wisconsin WI Waupaca 135 44.27 -88.7755 +US 54975 Royalton Wisconsin WI Waupaca 135 44.4619 -88.915 +US 54977 Scandinavia Wisconsin WI Waupaca 135 44.4604 -89.165 +US 54981 Waupaca Wisconsin WI Waupaca 135 44.3481 -89.1101 +US 54983 Weyauwega Wisconsin WI Waupaca 135 44.321 -88.941 +US 54990 Iola Wisconsin WI Waupaca 135 44.4619 -88.915 +US 54930 Coloma Wisconsin WI Waushara 137 44.0275 -89.4943 +US 54943 Hancock Wisconsin WI Waushara 137 44.1297 -89.5344 +US 54965 Pine River Wisconsin WI Waushara 137 44.1604 -89.0404 +US 54966 Plainfield Wisconsin WI Waushara 137 44.2091 -89.4559 +US 54967 Poy Sippi Wisconsin WI Waushara 137 44.131 -88.9836 +US 54970 Redgranite Wisconsin WI Waushara 137 44.0438 -89.0981 +US 54976 Saxeville Wisconsin WI Waushara 137 44.2093 -89.0969 +US 54982 Wautoma Wisconsin WI Waushara 137 44.0656 -89.2666 +US 54984 Wild Rose Wisconsin WI Waushara 137 44.1834 -89.1953 +US 54901 Oshkosh Wisconsin WI Winnebago 139 44.022 -88.5436 +US 54902 Oshkosh Wisconsin WI Winnebago 139 43.9946 -88.526 +US 54903 Oshkosh Wisconsin WI Winnebago 139 44.0686 -88.6449 +US 54904 Oshkosh Wisconsin WI Winnebago 139 44.0304 -88.607 +US 54906 Oshkosh Wisconsin WI Winnebago 139 44.0686 -88.6449 +US 54927 Butte Des Morts Wisconsin WI Winnebago 139 44.1031 -88.6539 +US 54934 Eureka Wisconsin WI Winnebago 139 44.0032 -88.8397 +US 54947 Larsen Wisconsin WI Winnebago 139 44.1984 -88.6963 +US 54952 Menasha Wisconsin WI Winnebago 139 44.2112 -88.4175 +US 54956 Neenah Wisconsin WI Winnebago 139 44.1811 -88.4792 +US 54957 Neenah Wisconsin WI Winnebago 139 44.1989 -88.6789 +US 54963 Omro Wisconsin WI Winnebago 139 44.0357 -88.7519 +US 54964 Pickett Wisconsin WI Winnebago 139 43.9009 -88.7135 +US 54980 Waukau Wisconsin WI Winnebago 139 43.9886 -88.7712 +US 54985 Winnebago Wisconsin WI Winnebago 139 44.0706 -88.5178 +US 54986 Winneconne Wisconsin WI Winnebago 139 44.1187 -88.7214 +US 54404 Marshfield Wisconsin WI Wood 141 44.4666 -90.0214 +US 54410 Arpin Wisconsin WI Wood 141 44.5419 -90.037 +US 54412 Auburndale Wisconsin WI Wood 141 44.6378 -90.0136 +US 54413 Babcock Wisconsin WI Wood 141 44.3031 -90.0986 +US 54415 Blenker Wisconsin WI Wood 141 44.6191 -89.9186 +US 54441 Hewitt Wisconsin WI Wood 141 44.6437 -90.1031 +US 54449 Marshfield Wisconsin WI Wood 141 44.6615 -90.1784 +US 54454 Milladore Wisconsin WI Wood 141 44.6044 -89.8875 +US 54457 Nekoosa Wisconsin WI Wood 141 44.282 -89.8814 +US 54466 Pittsville Wisconsin WI Wood 141 44.4375 -90.1892 +US 54469 Port Edwards Wisconsin WI Wood 141 44.3497 -89.8652 +US 54472 Marshfield Wisconsin WI Wood 141 44.4666 -90.0214 +US 54475 Rudolph Wisconsin WI Wood 141 44.4741 -89.8003 +US 54489 Vesper Wisconsin WI Wood 141 44.4677 -89.9826 +US 54494 Wisconsin Rapids Wisconsin WI Wood 141 44.3758 -89.8062 +US 54495 Wisconsin Rapids Wisconsin WI Wood 141 44.3881 -89.9228 +US 26214 Century West Virginia WV Barbour County 001 39.0943 -80.1731 +US 26238 Volga West Virginia WV Barbour 001 39.1251 -80.018 +US 26250 Belington West Virginia WV Barbour 001 39.0244 -79.9495 +US 26275 Junior West Virginia WV Barbour 001 38.9784 -79.9494 +US 26334 Brownton West Virginia WV Barbour 001 39.1251 -80.018 +US 26349 Galloway West Virginia WV Barbour 001 39.1251 -80.018 +US 26405 Moatsville West Virginia WV Barbour 001 39.2234 -79.9017 +US 26416 Philippi West Virginia WV Barbour 001 39.1613 -80.0492 +US 25401 Martinsburg West Virginia WV Berkeley 003 39.4567 -77.9727 +US 25402 Martinsburg West Virginia WV Berkeley 003 39.4617 -78.0115 +US 25403 Martinsburg West Virginia WV Berkeley County 003 39.5227 -77.9747 +US 25404 Martinsburg West Virginia WV Berkeley County 003 39.4852 -77.8954 +US 25405 Martinsburg West Virginia WV Berkeley County 003 39.4092 -77.9615 +US 25413 Bunker Hill West Virginia WV Berkeley 003 39.3276 -78.0487 +US 25419 Falling Waters West Virginia WV Berkeley 003 39.5865 -77.8852 +US 25420 Gerrardstown West Virginia WV Berkeley 003 39.378 -78.1141 +US 25421 Glengary West Virginia WV Berkeley 003 39.3813 -78.1435 +US 25427 Hedgesville West Virginia WV Berkeley 003 39.5214 -78.0912 +US 25428 Inwood West Virginia WV Berkeley 003 39.3701 -78.0242 +US 25440 Ridgeway West Virginia WV Berkeley 003 39.4427 -78.0263 +US 25009 Ashford West Virginia WV Boone 005 38.1823 -81.7113 +US 25010 Bald Knob West Virginia WV Boone 005 37.844 -81.6229 +US 25013 Barrett West Virginia WV Boone County 005 37.8802 -81.6483 +US 25021 Bim West Virginia WV Boone 005 37.9971 -81.717 +US 25024 Bloomingrose West Virginia WV Boone 005 38.1412 -81.6367 +US 25028 Bob White West Virginia WV Boone 005 37.9971 -81.717 +US 25049 Comfort West Virginia WV Boone 005 38.1372 -81.5962 +US 25051 Costa West Virginia WV Boone 005 38.1591 -81.7092 +US 25053 Danville West Virginia WV Boone 005 38.0195 -81.8853 +US 25081 Foster West Virginia WV Boone 005 38.0908 -81.7659 +US 25093 Gordon West Virginia WV Boone 005 37.9971 -81.717 +US 25108 Hewett West Virginia WV Boone 005 37.9581 -81.8509 +US 25114 Jeffrey West Virginia WV Boone 005 37.9971 -81.717 +US 25130 Madison West Virginia WV Boone 005 38.0444 -81.7938 +US 25142 Nellis West Virginia WV Boone 005 38.153 -81.7321 +US 25148 Orgas West Virginia WV Boone 005 38.0492 -81.5688 +US 25149 Ottawa West Virginia WV Boone 005 37.9971 -81.717 +US 25154 Peytona West Virginia WV Boone 005 38.125 -81.7018 +US 25165 Racine West Virginia WV Boone 005 38.141 -81.6588 +US 25169 Ridgeview West Virginia WV Boone 005 38.1486 -81.7725 +US 25181 Seth West Virginia WV Boone 005 38.0971 -81.6393 +US 25193 Sylvester West Virginia WV Boone 005 38.0091 -81.5492 +US 25203 Turtle Creek West Virginia WV Boone 005 37.9863 -81.9427 +US 25204 Twilight West Virginia WV Boone 005 37.926 -81.6141 +US 25205 Uneeda West Virginia WV Boone 005 38.0428 -81.8053 +US 25206 Van West Virginia WV Boone 005 37.9712 -81.7022 +US 25208 Wharton West Virginia WV Boone 005 37.9971 -81.717 +US 25209 Whitesville West Virginia WV Boone 005 37.9916 -81.5422 +US 25529 Julian West Virginia WV Boone 005 38.1264 -81.8642 +US 26335 Burnsville West Virginia WV Braxton 007 38.7775 -80.657 +US 26601 Sutton West Virginia WV Braxton 007 38.6541 -80.676 +US 26612 Centralia West Virginia WV Braxton 007 38.6205 -80.5861 +US 26615 Copen West Virginia WV Braxton 007 38.706 -80.7369 +US 26618 Elmira West Virginia WV Braxton 007 38.706 -80.7369 +US 26619 Exchange West Virginia WV Braxton 007 38.7358 -80.7324 +US 26620 Falls Mill West Virginia WV Braxton County 007 38.7757 -80.5506 +US 26621 Flatwoods West Virginia WV Braxton 007 38.7337 -80.5747 +US 26623 Frametown West Virginia WV Braxton 007 38.6305 -80.8589 +US 26624 Gassaway West Virginia WV Braxton 007 38.6862 -80.7863 +US 26626 Glendon West Virginia WV Braxton County 007 38.6109 -80.9395 +US 26627 Heaters West Virginia WV Braxton 007 38.7621 -80.6406 +US 26629 Little Birch West Virginia WV Braxton 007 38.581 -80.6931 +US 26631 Napier West Virginia WV Braxton 007 38.706 -80.7369 +US 26639 Strange Creek West Virginia WV Braxton 007 38.5738 -80.9031 +US 26641 Wilsie West Virginia WV Braxton 007 38.706 -80.7369 +US 26030 Beech Bottom West Virginia WV Brooke 009 40.2259 -80.6513 +US 26032 Bethany West Virginia WV Brooke 009 40.2107 -80.5503 +US 26035 Colliers West Virginia WV Brooke 009 40.3484 -80.5493 +US 26037 Follansbee West Virginia WV Brooke 009 40.3296 -80.585 +US 26058 Short Creek West Virginia WV Brooke 009 40.2793 -80.5999 +US 26070 Wellsburg West Virginia WV Brooke 009 40.2548 -80.5961 +US 26075 Windsor Heights West Virginia WV Brooke 009 40.1927 -80.6659 +US 25504 Barboursville West Virginia WV Cabell 011 38.3893 -82.296 +US 25510 Culloden West Virginia WV Cabell 011 38.4198 -82.069 +US 25537 Lesage West Virginia WV Cabell 011 38.477 -82.2957 +US 25541 Milton West Virginia WV Cabell 011 38.414 -82.1458 +US 25545 Ona West Virginia WV Cabell 011 38.4529 -82.2181 +US 25559 Salt Rock West Virginia WV Cabell 011 38.3265 -82.247 +US 25701 Huntington West Virginia WV Cabell 011 38.4097 -82.4423 +US 25702 Huntington West Virginia WV Cabell 011 38.4286 -82.3911 +US 25703 Huntington West Virginia WV Cabell 011 38.4211 -82.4227 +US 25704 Huntington West Virginia WV Cabell 011 38.3849 -82.5036 +US 25705 Huntington West Virginia WV Cabell 011 38.4096 -82.369 +US 25706 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25707 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25708 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25710 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25711 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25712 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25713 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25714 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25715 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25716 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25717 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25718 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25719 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25720 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25721 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25722 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25723 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25724 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25725 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25726 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25727 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25728 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25729 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25755 Huntington West Virginia WV Cabell 011 38.4221 -82.4317 +US 25770 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25771 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25772 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25773 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25774 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25775 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25776 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25777 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25778 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25779 Huntington West Virginia WV Cabell 011 38.4134 -82.2774 +US 25234 Arnoldsburg West Virginia WV Calhoun 013 38.8227 -81.1551 +US 25235 Chloe West Virginia WV Calhoun 013 38.6686 -81.0944 +US 25261 Millstone West Virginia WV Calhoun 013 38.8286 -81.1322 +US 25268 Orma West Virginia WV Calhoun 013 38.8286 -81.1322 +US 25274 Sand Ridge West Virginia WV Calhoun County 013 38.8603 -81.026 +US 26136 Big Bend West Virginia WV Calhoun 013 38.9719 -81.136 +US 26137 Big Springs West Virginia WV Calhoun 013 38.8286 -81.1322 +US 26147 Grantsville West Virginia WV Calhoun 013 38.9324 -81.0763 +US 26151 Mount Zion West Virginia WV Calhoun 013 38.8286 -81.1322 +US 26633 Nicut West Virginia WV Calhoun County 013 38.7143 -81.0088 +US 25018 Bentree West Virginia WV Clay 015 38.4658 -81.0507 +US 25019 Bickmore West Virginia WV Clay 015 38.3729 -81.0868 +US 25030 Bomont West Virginia WV Clay 015 38.388 -81.2548 +US 25043 Clay West Virginia WV Clay 015 38.4764 -81.0696 +US 25063 Duck West Virginia WV Clay 015 38.5647 -80.9764 +US 25088 Glen West Virginia WV Clay 015 38.4658 -81.0507 +US 25111 Indore West Virginia WV Clay 015 38.3498 -81.1269 +US 25113 Ivydale West Virginia WV Clay 015 38.4658 -81.0507 +US 25125 Lizemores West Virginia WV Clay 015 38.3366 -81.1633 +US 25133 Maysel West Virginia WV Clay 015 38.4939 -81.1227 +US 25141 Nebo West Virginia WV Clay 015 38.6271 -81.0257 +US 25150 Ovapa West Virginia WV Clay 015 38.5234 -81.1485 +US 25164 Procious West Virginia WV Clay 015 38.4912 -81.1989 +US 25211 Widen West Virginia WV Clay 015 38.4658 -81.0507 +US 25283 Valley Fork West Virginia WV Clay 015 38.4658 -81.0507 +US 25285 Wallback West Virginia WV Clay 015 38.5432 -81.1114 +US 26617 Dille West Virginia WV Clay 015 38.4658 -81.0507 +US 26328 Blandville West Virginia WV Doddridge 017 39.2708 -80.7197 +US 26339 Center Point West Virginia WV Doddridge 017 39.4125 -80.6352 +US 26411 New Milton West Virginia WV Doddridge 017 39.1899 -80.7076 +US 26436 Smithburg West Virginia WV Doddridge 017 39.2708 -80.7197 +US 26456 West Union West Virginia WV Doddridge 017 39.2762 -80.7911 +US 25002 Alloy West Virginia WV Fayette 019 38.0413 -81.0648 +US 25014 Beards Fork West Virginia WV Fayette County 019 38.0636 -81.2275 +US 25031 Boomer West Virginia WV Fayette 019 38.1519 -81.2656 +US 25036 Cannelton West Virginia WV Fayette 019 38.0413 -81.0648 +US 25040 Charlton Heights West Virginia WV Fayette 019 38.0413 -81.0648 +US 25057 Deep Water West Virginia WV Fayette 019 38.0413 -81.0648 +US 25085 Gauley Bridge West Virginia WV Fayette 019 38.1689 -81.196 +US 25090 Glen Ferris West Virginia WV Fayette 019 38.0413 -81.0648 +US 25115 Kanawha Falls West Virginia WV Fayette 019 38.0413 -81.0648 +US 25118 Kimberly West Virginia WV Fayette 019 38.1249 -81.3217 +US 25119 Kincaid West Virginia WV Fayette 019 38.0413 -81.0648 +US 25120 Kingston West Virginia WV Fayette County 019 37.9735 -81.3046 +US 25131 Mahan West Virginia WV Fayette County 019 38.0226 -81.3551 +US 25136 Montgomery West Virginia WV Fayette 019 38.1725 -81.3222 +US 25139 Mount Carbon West Virginia WV Fayette 019 38.1399 -81.2931 +US 25152 Page West Virginia WV Fayette 019 38.0413 -81.0648 +US 25161 Powellton West Virginia WV Fayette 019 38.0992 -81.3179 +US 25173 Robson West Virginia WV Fayette 019 38.0973 -81.2488 +US 25185 Mount Olive West Virginia WV Fayette 019 38.0413 -81.0648 +US 25186 Smithers West Virginia WV Fayette 019 38.1543 -81.278 +US 25812 Ansted West Virginia WV Fayette 019 38.1369 -81.0955 +US 25814 Beckwith West Virginia WV Fayette County 019 38.0976 -81.1535 +US 25831 Danese West Virginia WV Fayette 019 37.9567 -80.9379 +US 25833 Dothan West Virginia WV Fayette 019 38.0413 -81.0648 +US 25837 Edmond West Virginia WV Fayette 019 38.0544 -81.0326 +US 25840 Fayetteville West Virginia WV Fayette 019 38.064 -81.0943 +US 25846 Glen Jean West Virginia WV Fayette 019 38.0413 -81.0648 +US 25854 Hico West Virginia WV Fayette 019 38.1094 -80.9638 +US 25855 Hilltop West Virginia WV Fayette 019 38.0413 -81.0648 +US 25859 Kilsyth West Virginia WV Fayette 019 38.0413 -81.0648 +US 25862 Lansing West Virginia WV Fayette 019 38.0869 -81.0588 +US 25864 Layland West Virginia WV Fayette 019 38.0413 -81.0648 +US 25866 Lochgelly West Virginia WV Fayette 019 38.0413 -81.0648 +US 25867 Long Branch West Virginia WV Fayette County 019 37.9226 -81.2757 +US 25868 Lookout West Virginia WV Fayette 019 38.0413 -81.0648 +US 25874 Meadow Bridge West Virginia WV Fayette County 019 37.9262 -80.9332 +US 25879 Minden West Virginia WV Fayette 019 37.9758 -81.115 +US 25880 Mount Hope West Virginia WV Fayette 019 37.8782 -81.2058 +US 25901 Oak Hill West Virginia WV Fayette 019 37.9594 -81.1585 +US 25904 Pax West Virginia WV Fayette 019 37.911 -81.2648 +US 25907 Prince West Virginia WV Fayette 019 37.8532 -81.0817 +US 25910 Quinnimont West Virginia WV Fayette County 019 37.8544 -81.0446 +US 25912 Ramsey West Virginia WV Fayette 019 38.0413 -81.0648 +US 25914 Redstar West Virginia WV Fayette 019 38.0413 -81.0648 +US 25917 Scarbro West Virginia WV Fayette 019 37.9488 -81.1531 +US 25931 Summerlee West Virginia WV Fayette 019 38.0413 -81.0648 +US 25936 Thurmond West Virginia WV Fayette 019 37.9554 -81.0714 +US 25938 Victor West Virginia WV Fayette 019 38.1402 -81.0322 +US 25942 Winona West Virginia WV Fayette 019 38.0413 -81.0648 +US 25976 Meadow Bridge West Virginia WV Fayette 019 37.878 -80.8521 +US 25986 Spring Dale West Virginia WV Fayette 019 38.0413 -81.0648 +US 26674 Jodie West Virginia WV Fayette 019 38.2083 -81.1347 +US 26680 Nallen West Virginia WV Fayette 019 38.0413 -81.0648 +US 25258 Lockney West Virginia WV Gilmer 021 38.9136 -80.8313 +US 25267 Normantown West Virginia WV Gilmer 021 38.8802 -80.9419 +US 25280 Stumptown West Virginia WV Gilmer County 021 38.8282 -80.9751 +US 26179 Tanner West Virginia WV Gilmer County 021 38.9664 -80.9597 +US 26342 Coxs Mills West Virginia WV Gilmer 021 39.0301 -80.8498 +US 26350 Gilmer West Virginia WV Gilmer 021 38.9136 -80.8313 +US 26351 Glenville West Virginia WV Gilmer 021 38.9409 -80.8313 +US 26384 Linn West Virginia WV Gilmer 021 38.9573 -80.73 +US 26409 Newberne West Virginia WV Gilmer County 021 39.0407 -80.9028 +US 26430 Sand Fork West Virginia WV Gilmer 021 38.9136 -80.8313 +US 26439 Stouts Mills West Virginia WV Gilmer County 021 38.8933 -80.7411 +US 26443 Troy West Virginia WV Gilmer 021 39.0839 -80.7549 +US 26611 Cedarville West Virginia WV Gilmer 021 38.8451 -80.8323 +US 26634 Perkins West Virginia WV Gilmer 021 38.9136 -80.8313 +US 26636 Rosedale West Virginia WV Gilmer 021 38.9136 -80.8313 +US 26638 Shock West Virginia WV Gilmer 021 38.7617 -81.0045 +US 26707 Bayard West Virginia WV Grant 023 38.987 -79.1462 +US 26720 Gormania West Virginia WV Grant 023 39.2803 -79.3296 +US 26731 Lahmansville West Virginia WV Grant 023 39.1642 -79.0433 +US 26734 Medley West Virginia WV Grant 023 39.0706 -79.2335 +US 26739 Mount Storm West Virginia WV Grant 023 39.2652 -79.2255 +US 26816 Arthur West Virginia WV Grant County 023 39.1012 -79.0978 +US 26833 Maysville West Virginia WV Grant 023 39.0712 -79.1937 +US 26847 Petersburg West Virginia WV Grant 023 38.9908 -79.1293 +US 26855 Cabins West Virginia WV Grant 023 38.9512 -79.2783 +US 24901 Lewisburg West Virginia WV Greenbrier 025 37.8083 -80.4407 +US 24902 Fairlea West Virginia WV Greenbrier 025 37.7747 -80.4615 +US 24910 Alderson West Virginia WV Greenbrier 025 37.7371 -80.661 +US 24916 Asbury West Virginia WV Greenbrier 025 37.8313 -80.5747 +US 24917 Auto West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 24925 Caldwell West Virginia WV Greenbrier 025 37.7735 -80.3773 +US 24928 Clintonville West Virginia WV Greenbrier County 025 37.9061 -80.6262 +US 24931 Crawley West Virginia WV Greenbrier 025 37.9397 -80.6309 +US 24936 Fort Spring West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 24938 Frankford West Virginia WV Greenbrier 025 37.9154 -80.3353 +US 24943 Grassy Meadows West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 24950 Kieffer West Virginia WV Greenbrier 025 37.943 -80.5902 +US 24957 Maxwelton West Virginia WV Greenbrier 025 37.8765 -80.4192 +US 24958 Meadow Bluff West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 24961 Neola West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 24966 Renick West Virginia WV Greenbrier 025 37.9922 -80.3653 +US 24970 Ronceverte West Virginia WV Greenbrier 025 37.7418 -80.4626 +US 24977 Smoot West Virginia WV Greenbrier 025 37.8772 -80.668 +US 24986 White Sulphur Springs West Virginia WV Greenbrier 025 37.7827 -80.3129 +US 24991 Williamsburg West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 25958 Charmco West Virginia WV Greenbrier 025 37.9895 -80.7077 +US 25961 Crichton West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 25962 Rainelle West Virginia WV Greenbrier 025 37.9661 -80.7821 +US 25967 Hines West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 25972 Leslie West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 25981 Quinwood West Virginia WV Greenbrier 025 37.9756 -80.4269 +US 25984 Rupert West Virginia WV Greenbrier 025 37.9685 -80.6696 +US 25431 Levels West Virginia WV Hampshire 027 39.4976 -78.5508 +US 25437 Points West Virginia WV Hampshire 027 39.4572 -78.5641 +US 25444 Slanesville West Virginia WV Hampshire 027 39.4026 -78.506 +US 26704 Augusta West Virginia WV Hampshire 027 39.2998 -78.5931 +US 26711 Capon Bridge West Virginia WV Hampshire 027 39.2802 -78.4644 +US 26714 Delray West Virginia WV Hampshire 027 39.3141 -78.6594 +US 26722 Green Spring West Virginia WV Hampshire 027 39.5029 -78.6272 +US 26729 Kirby West Virginia WV Hampshire County 027 39.1975 -78.736 +US 26755 Rio West Virginia WV Hampshire 027 39.1847 -78.727 +US 26757 Romney West Virginia WV Hampshire 027 39.3424 -78.7481 +US 26761 Shanks West Virginia WV Hampshire 027 39.2849 -78.6995 +US 26763 Springfield West Virginia WV Hampshire 027 39.463 -78.695 +US 26765 Three Churches West Virginia WV Hampshire County 027 39.3724 -78.6427 +US 26808 High View West Virginia WV Hampshire 027 39.2225 -78.4425 +US 26817 Bloomery West Virginia WV Hampshire 027 39.3604 -78.3917 +US 26823 Capon Springs West Virginia WV Hampshire 027 39.3141 -78.6594 +US 26824 Junction West Virginia WV Hampshire 027 39.3141 -78.6594 +US 26852 Purgitsville West Virginia WV Hampshire 027 39.2681 -78.906 +US 26865 Yellow Spring West Virginia WV Hampshire 027 39.3141 -78.6594 +US 26034 Chester West Virginia WV Hancock 029 40.5981 -80.5584 +US 26047 New Cumberland West Virginia WV Hancock 029 40.5228 -80.5901 +US 26050 Newell West Virginia WV Hancock 029 40.614 -80.6011 +US 26056 New Manchester West Virginia WV Hancock 029 40.5162 -80.5928 +US 26062 Weirton West Virginia WV Hancock 029 40.4137 -80.5683 +US 26801 Baker West Virginia WV Hardy 031 39.0656 -78.7748 +US 26810 Lost City West Virginia WV Hardy 031 38.9812 -78.7448 +US 26812 Mathias West Virginia WV Hardy 031 38.8744 -78.8814 +US 26818 Fisher West Virginia WV Hardy 031 39.075 -79.0342 +US 26836 Moorefield West Virginia WV Hardy 031 38.9907 -78.9745 +US 26838 Milam West Virginia WV Hardy 031 38.8125 -79.0729 +US 26845 Old Fields West Virginia WV Hardy 031 39.1502 -78.9509 +US 26851 Wardensville West Virginia WV Hardy 031 39.0562 -78.6175 +US 26301 Clarksburg West Virginia WV Harrison 033 39.2874 -80.3419 +US 26302 Clarksburg West Virginia WV Harrison 033 39.2677 -80.3077 +US 26306 Clarksburg West Virginia WV Harrison 033 39.2852 -80.3853 +US 26323 Anmoore West Virginia WV Harrison 033 39.2587 -80.2875 +US 26330 Bridgeport West Virginia WV Harrison 033 39.2954 -80.2427 +US 26332 Bristol West Virginia WV Harrison 033 39.2904 -80.5105 +US 26344 Dawmont West Virginia WV Harrison County 033 39.3175 -80.3424 +US 26361 Gypsy West Virginia WV Harrison 033 39.2852 -80.3853 +US 26366 Haywood West Virginia WV Harrison 033 39.3745 -80.3489 +US 26369 Hepzibah West Virginia WV Harrison 033 39.3312 -80.3325 +US 26375 Industrial West Virginia WV Harrison 033 39.2798 -80.5754 +US 26385 Lost Creek West Virginia WV Harrison 033 39.1725 -80.3777 +US 26386 Lumberport West Virginia WV Harrison 033 39.3781 -80.3676 +US 26404 Meadowbrook West Virginia WV Harrison 033 39.3354 -80.3257 +US 26408 Mount Clare West Virginia WV Harrison 033 39.2107 -80.2899 +US 26422 Reynoldsville West Virginia WV Harrison 033 39.2852 -80.3853 +US 26426 Salem West Virginia WV Harrison 033 39.2948 -80.5898 +US 26431 Shinnston West Virginia WV Harrison 033 39.3888 -80.2834 +US 26438 Spelter West Virginia WV Harrison 033 39.3465 -80.3206 +US 26448 Wallace West Virginia WV Harrison 033 39.4117 -80.4865 +US 26451 West Milford West Virginia WV Harrison 033 39.1996 -80.4026 +US 26461 Wilsonburg West Virginia WV Harrison 033 39.2852 -80.3853 +US 26462 Wolf Summit West Virginia WV Harrison County 033 39.2364 -80.4439 +US 26463 Wyatt West Virginia WV Harrison 033 39.2852 -80.3853 +US 26568 Enterprise West Virginia WV Harrison 033 39.2852 -80.3853 +US 25231 Advent West Virginia WV Jackson 035 38.8249 -81.7066 +US 25239 Cottageville West Virginia WV Jackson 035 38.8633 -81.8186 +US 25241 Evans West Virginia WV Jackson 035 38.8113 -81.7909 +US 25244 Gay West Virginia WV Jackson 035 38.8249 -81.7066 +US 25245 Given West Virginia WV Jackson 035 38.707 -81.7223 +US 25248 Kenna West Virginia WV Jackson 035 38.6232 -81.6217 +US 25249 Kentuck West Virginia WV Jackson County 035 38.6639 -81.596 +US 25252 Le Roy West Virginia WV Jackson 035 38.8888 -81.5326 +US 25262 Millwood West Virginia WV Jackson 035 38.8962 -81.8248 +US 25264 Mount Alto West Virginia WV Jackson 035 38.8639 -81.8784 +US 25271 Ripley West Virginia WV Jackson 035 38.809 -81.702 +US 25272 Rock Castle West Virginia WV Jackson County 035 38.7081 -81.7711 +US 25275 Sandyville West Virginia WV Jackson 035 38.9093 -81.6543 +US 25279 Statts Mills West Virginia WV Jackson 035 38.7408 -81.6156 +US 26153 Murraysville West Virginia WV Jackson County 035 39.0591 -81.7714 +US 26164 Ravenswood West Virginia WV Jackson 035 38.9468 -81.7524 +US 26173 Sherman West Virginia WV Jackson 035 38.9519 -81.7095 +US 25410 Bakerton West Virginia WV Jefferson 037 39.3159 -77.8772 +US 25414 Charles Town West Virginia WV Jefferson 037 39.2771 -77.8563 +US 25423 Halltown West Virginia WV Jefferson 037 39.3159 -77.8772 +US 25425 Harpers Ferry West Virginia WV Jefferson 037 39.3153 -77.7694 +US 25429 Kearneysville West Virginia WV Jefferson 037 39.3496 -77.879 +US 25430 Kearneysville West Virginia WV Jefferson 037 39.322 -77.9588 +US 25432 Millville West Virginia WV Jefferson 037 39.3159 -77.8772 +US 25438 Ranson West Virginia WV Jefferson 037 39.2995 -77.8606 +US 25441 Rippon West Virginia WV Jefferson 037 39.3159 -77.8772 +US 25442 Shenandoah Junction West Virginia WV Jefferson 037 39.3716 -77.8229 +US 25443 Shepherdstown West Virginia WV Jefferson 037 39.4311 -77.8158 +US 25446 Summit Point West Virginia WV Jefferson 037 39.2338 -77.9586 +US 25003 Alum Creek West Virginia WV Kanawha 039 38.2858 -81.7863 +US 25015 Belle West Virginia WV Kanawha 039 38.2324 -81.5024 +US 25025 Blount West Virginia WV Kanawha 039 38.3121 -81.4052 +US 25026 Blue Creek West Virginia WV Kanawha 039 38.4908 -81.3928 +US 25034 Burnwell West Virginia WV Kanawha County 039 38.0555 -81.3757 +US 25035 Cabin Creek West Virginia WV Kanawha 039 38.193 -81.4984 +US 25039 Cedar Grove West Virginia WV Kanawha 039 38.2792 -81.5982 +US 25045 Clendenin West Virginia WV Kanawha 039 38.4539 -81.3572 +US 25052 Crown Hill West Virginia WV Kanawha County 039 38.1999 -81.4137 +US 25054 Dawes West Virginia WV Kanawha 039 38.0737 -81.4511 +US 25061 Drybranch West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25064 Dunbar West Virginia WV Kanawha 039 38.3683 -81.7425 +US 25067 East Bank West Virginia WV Kanawha 039 38.2099 -81.4381 +US 25071 Elkview West Virginia WV Kanawha 039 38.3869 -81.4504 +US 25075 Eskdale West Virginia WV Kanawha 039 38.0505 -81.4227 +US 25079 Falling Rock West Virginia WV Kanawha 039 38.4951 -81.3984 +US 25083 Gallagher West Virginia WV Kanawha 039 38.0704 -81.3625 +US 25086 Glasgow West Virginia WV Kanawha 039 38.2155 -81.4067 +US 25102 Handley West Virginia WV Kanawha 039 38.1879 -81.3657 +US 25103 Hansford West Virginia WV Kanawha 039 38.207 -81.3929 +US 25105 Harrison West Virginia WV Kanawha County 039 38.5012 -80.9141 +US 25107 Hernshaw West Virginia WV Kanawha 039 38.1942 -81.613 +US 25110 Hugheston West Virginia WV Kanawha 039 38.211 -81.3884 +US 25112 Institute West Virginia WV Kanawha 039 38.2825 -81.5651 +US 25122 Leewood West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25126 London West Virginia WV Kanawha 039 38.196 -81.3714 +US 25132 Mammoth West Virginia WV Kanawha 039 38.2583 -81.3509 +US 25134 Miami West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25143 Nitro West Virginia WV Kanawha 039 38.4193 -81.8293 +US 25147 Ohley West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25156 Pinch West Virginia WV Kanawha 039 38.402 -81.4611 +US 25160 Pond Gap West Virginia WV Kanawha 039 38.2904 -81.2866 +US 25162 Pratt West Virginia WV Kanawha 039 38.2101 -81.3851 +US 25163 Prenter West Virginia WV Kanawha County 039 38.0061 -81.6256 +US 25177 Saint Albans West Virginia WV Kanawha 039 38.3774 -81.8305 +US 25182 Sharon West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25201 Tad West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25202 Tornado West Virginia WV Kanawha 039 38.3357 -81.8476 +US 25214 Winifrede West Virginia WV Kanawha 039 38.1852 -81.5587 +US 25301 Charleston West Virginia WV Kanawha 039 38.349 -81.6306 +US 25302 Charleston West Virginia WV Kanawha 039 38.4015 -81.5841 +US 25303 Charleston West Virginia WV Kanawha 039 38.3598 -81.6859 +US 25304 Charleston West Virginia WV Kanawha 039 38.3173 -81.5903 +US 25305 Charleston West Virginia WV Kanawha 039 38.3358 -81.6123 +US 25306 Charleston West Virginia WV Kanawha 039 38.3175 -81.5274 +US 25309 Charleston West Virginia WV Kanawha 039 38.3108 -81.7568 +US 25311 Charleston West Virginia WV Kanawha 039 38.349 -81.5993 +US 25312 Charleston West Virginia WV Kanawha 039 38.4096 -81.6747 +US 25313 Charleston West Virginia WV Kanawha 039 38.4142 -81.7582 +US 25314 Charleston West Virginia WV Kanawha 039 38.3274 -81.669 +US 25315 Charleston West Virginia WV Kanawha 039 38.2351 -81.5536 +US 25317 Charleston West Virginia WV Kanawha 039 38.3356 -81.6138 +US 25320 Charleston West Virginia WV Kanawha 039 38.5428 -81.6334 +US 25321 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25322 Charleston West Virginia WV Kanawha 039 38.5347 -81.5603 +US 25323 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25324 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25325 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25326 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25327 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25328 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25329 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25330 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25331 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25332 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25333 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25334 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25335 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25336 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25337 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25338 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25339 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25350 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25356 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25357 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25358 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25360 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25361 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25362 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25364 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25365 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25375 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25387 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25389 Charleston West Virginia WV Kanawha 039 38.354 -81.6394 +US 25392 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 25396 Charleston West Virginia WV Kanawha 039 38.2968 -81.5547 +US 26321 Alum Bridge West Virginia WV Lewis 041 39.0425 -80.6882 +US 26338 Camden West Virginia WV Lewis 041 39.0893 -80.5915 +US 26343 Crawford West Virginia WV Lewis 041 38.9458 -80.5145 +US 26372 Horner West Virginia WV Lewis 041 38.9726 -80.3656 +US 26376 Ireland West Virginia WV Lewis 041 38.7763 -80.4567 +US 26378 Jane Lew West Virginia WV Lewis 041 39.11 -80.4311 +US 26412 Orlando West Virginia WV Lewis 041 38.8862 -80.5849 +US 26423 Roanoke West Virginia WV Lewis County 041 38.9343 -80.4947 +US 26446 Valley Chapel West Virginia WV Lewis County 041 39.0006 -80.3486 +US 26447 Walkersville West Virginia WV Lewis 041 38.8507 -80.4802 +US 26452 Weston West Virginia WV Lewis 041 39.0411 -80.4737 +US 25501 Alkol West Virginia WV Lincoln 043 38.1609 -81.984 +US 25506 Branchland West Virginia WV Lincoln 043 38.2694 -82.2684 +US 25521 Griffithsville West Virginia WV Lincoln 043 38.2197 -81.9995 +US 25523 Hamlin West Virginia WV Lincoln 043 38.2896 -82.1047 +US 25524 Harts West Virginia WV Lincoln 043 38.0341 -82.1008 +US 25540 Midkiff West Virginia WV Lincoln 043 38.1602 -82.0541 +US 25544 Myra West Virginia WV Lincoln 043 38.2198 -82.1351 +US 25546 Palermo West Virginia WV Lincoln County 043 38.131 -82.0561 +US 25557 Ranger West Virginia WV Lincoln 043 38.097 -82.1633 +US 25563 Sias West Virginia WV Lincoln County 043 38.1905 -82.0884 +US 25564 Sod West Virginia WV Lincoln 043 38.2559 -81.891 +US 25565 Spurlockville West Virginia WV Lincoln 043 38.1057 -82.0272 +US 25567 Sumerco West Virginia WV Lincoln 043 38.228 -81.8705 +US 25568 Sweetland West Virginia WV Lincoln County 043 38.2629 -82.0345 +US 25571 West Hamlin West Virginia WV Lincoln 043 38.2886 -82.1843 +US 25572 Woodville West Virginia WV Lincoln 043 38.1875 -81.9012 +US 25573 Yawkey West Virginia WV Lincoln 043 38.2193 -81.9568 +US 25022 Blair West Virginia WV Logan 045 37.8332 -81.9024 +US 25047 Clothier West Virginia WV Logan 045 37.8332 -81.9024 +US 25076 Ethel West Virginia WV Logan 045 37.8332 -81.9024 +US 25121 Lake West Virginia WV Logan 045 37.9204 -81.9034 +US 25183 Sharples West Virginia WV Logan 045 37.8332 -81.9024 +US 25505 Big Creek West Virginia WV Logan 045 37.8332 -81.9024 +US 25508 Chapmanville West Virginia WV Logan 045 37.9385 -82.0512 +US 25547 Pecks Mill West Virginia WV Logan 045 37.9298 -81.9654 +US 25601 Logan West Virginia WV Logan 045 37.865 -82.0252 +US 25606 Accoville West Virginia WV Logan 045 37.8332 -81.9024 +US 25607 Amherstdale West Virginia WV Logan 045 37.7959 -81.7833 +US 25611 Bruno West Virginia WV Logan 045 37.8332 -81.9024 +US 25612 Chauncey West Virginia WV Logan 045 37.8332 -81.9024 +US 25614 Cora West Virginia WV Logan 045 37.8332 -81.9024 +US 25617 Davin West Virginia WV Logan 045 37.7265 -81.8057 +US 25624 Henlawson West Virginia WV Logan 045 37.8332 -81.9024 +US 25625 Holden West Virginia WV Logan 045 37.83 -82.0585 +US 25628 Kistler West Virginia WV Logan 045 37.8332 -81.9024 +US 25630 Lorado West Virginia WV Logan 045 37.8332 -81.9024 +US 25632 Lyburn West Virginia WV Logan 045 37.7656 -81.9217 +US 25634 Mallory West Virginia WV Logan 045 37.8332 -81.9024 +US 25635 Man West Virginia WV Logan 045 37.7357 -81.8754 +US 25636 Monaville West Virginia WV Logan 045 37.8219 -82.0062 +US 25637 Mount Gay West Virginia WV Logan 045 37.8464 -82.0485 +US 25638 Omar West Virginia WV Logan 045 37.7416 -82.0031 +US 25639 Peach Creek West Virginia WV Logan 045 37.8752 -81.9826 +US 25643 Rossmore West Virginia WV Logan County 045 37.8092 -81.9814 +US 25644 Sarah Ann West Virginia WV Logan 045 37.8332 -81.9024 +US 25645 Stirrat West Virginia WV Logan 045 37.8332 -81.9024 +US 25646 Stollings West Virginia WV Logan 045 37.8303 -81.9639 +US 25647 Switzer West Virginia WV Logan 045 37.7846 -81.9908 +US 25648 Taplin West Virginia WV Logan County 045 37.7582 -81.8957 +US 25649 Verdunville West Virginia WV Logan 045 37.8891 -82.0488 +US 25652 Whitman West Virginia WV Logan 045 37.8035 -82.0466 +US 25653 Wilkinson West Virginia WV Logan 045 37.8082 -82.053 +US 25654 Yolyn West Virginia WV Logan 045 37.7818 -81.892 +US 24801 Welch West Virginia WV McDowell 047 37.4 -81.5344 +US 24808 Anawalt West Virginia WV McDowell 047 37.3362 -81.4151 +US 24810 Ashland West Virginia WV McDowell County 047 37.4183 -81.3854 +US 24811 Avondale West Virginia WV McDowell 047 37.3752 -81.6539 +US 24813 Bartley West Virginia WV McDowell 047 37.3438 -81.6831 +US 24815 Berwind West Virginia WV McDowell 047 37.3752 -81.6539 +US 24816 Big Sandy West Virginia WV McDowell 047 37.3752 -81.6539 +US 24817 Bradshaw West Virginia WV McDowell 047 37.3752 -81.6539 +US 24819 Canebrake West Virginia WV McDowell County 047 37.2916 -81.6938 +US 24820 Capels West Virginia WV McDowell 047 37.3752 -81.6539 +US 24821 Caretta West Virginia WV McDowell 047 37.383 -81.6343 +US 24824 Coalwood West Virginia WV McDowell 047 37.3752 -81.6539 +US 24825 Crumpler West Virginia WV McDowell 047 37.3752 -81.6539 +US 24826 Cucumber West Virginia WV McDowell 047 37.3752 -81.6539 +US 24828 Davy West Virginia WV McDowell 047 37.4678 -81.6811 +US 24829 Eckman West Virginia WV McDowell 047 37.3752 -81.6539 +US 24830 Elbert West Virginia WV McDowell 047 37.3752 -81.6539 +US 24831 Elkhorn West Virginia WV McDowell 047 37.4329 -81.571 +US 24832 English West Virginia WV McDowell 047 37.3752 -81.6539 +US 24836 Gary West Virginia WV McDowell 047 37.3658 -81.5544 +US 24841 Havaco West Virginia WV McDowell 047 37.4058 -81.5765 +US 24842 Hemphill West Virginia WV McDowell 047 37.3752 -81.6539 +US 24843 Hensley West Virginia WV McDowell 047 37.3752 -81.6539 +US 24844 Iaeger West Virginia WV McDowell 047 37.4499 -81.812 +US 24846 Isaban West Virginia WV McDowell 047 37.3752 -81.6539 +US 24848 Jenkinjones West Virginia WV McDowell 047 37.3752 -81.6539 +US 24850 Jolo West Virginia WV McDowell 047 37.3324 -81.8316 +US 24852 Keystone West Virginia WV McDowell 047 37.4144 -81.4318 +US 24853 Kimball West Virginia WV McDowell 047 37.4421 -81.512 +US 24855 Kyle West Virginia WV McDowell 047 37.3752 -81.6539 +US 24856 Leckie West Virginia WV McDowell 047 37.3752 -81.6539 +US 24861 Maybeury West Virginia WV McDowell 047 37.4175 -81.424 +US 24862 Mohawk West Virginia WV McDowell 047 37.4879 -81.9142 +US 24866 Newhall West Virginia WV McDowell 047 37.3752 -81.6539 +US 24868 Northfork West Virginia WV McDowell 047 37.4194 -81.4058 +US 24871 Pageton West Virginia WV McDowell 047 37.3752 -81.6539 +US 24872 Panther West Virginia WV McDowell 047 37.3752 -81.6539 +US 24873 Paynesville West Virginia WV McDowell 047 37.3752 -81.6539 +US 24877 Powhatan West Virginia WV McDowell 047 37.3752 -81.6539 +US 24878 Premier West Virginia WV McDowell 047 37.3752 -81.6539 +US 24879 Raysal West Virginia WV McDowell 047 37.3244 -81.7614 +US 24881 Roderfield West Virginia WV McDowell 047 37.3752 -81.6539 +US 24883 Skygusty West Virginia WV McDowell 047 37.3752 -81.6539 +US 24884 Squire West Virginia WV McDowell 047 37.3752 -81.6539 +US 24886 Superior West Virginia WV McDowell County 047 37.421 -81.5424 +US 24887 Switchback West Virginia WV McDowell 047 37.3752 -81.6539 +US 24888 Thorpe West Virginia WV McDowell 047 37.3752 -81.6539 +US 24889 Twin Branch West Virginia WV McDowell 047 37.3752 -81.6539 +US 24892 War West Virginia WV McDowell 047 37.3752 -81.6539 +US 24894 Warriormine West Virginia WV McDowell 047 37.3752 -81.6539 +US 24895 Wilcoe West Virginia WV McDowell 047 37.3752 -81.6539 +US 24897 Worth West Virginia WV McDowell 047 37.3752 -81.6539 +US 24899 Yukon West Virginia WV McDowell 047 37.3752 -81.6539 +US 26554 Fairmont West Virginia WV Marion 049 39.4941 -80.2213 +US 26555 Fairmont West Virginia WV Marion 049 39.5143 -80.2185 +US 26559 Barrackville West Virginia WV Marion 049 39.5052 -80.1725 +US 26560 Baxter West Virginia WV Marion 049 39.5143 -80.2185 +US 26563 Carolina West Virginia WV Marion 049 39.4782 -80.272 +US 26566 Colfax West Virginia WV Marion 049 39.5143 -80.2185 +US 26570 Fairview West Virginia WV Marion 049 39.6103 -80.2529 +US 26571 Farmington West Virginia WV Marion 049 39.5029 -80.2566 +US 26572 Four States West Virginia WV Marion 049 39.5143 -80.2185 +US 26574 Grant Town West Virginia WV Marion 049 39.5587 -80.1805 +US 26576 Idamay West Virginia WV Marion 049 39.4877 -80.2666 +US 26578 Kingmont West Virginia WV Marion 049 39.4466 -80.1762 +US 26582 Mannington West Virginia WV Marion 049 39.522 -80.3552 +US 26585 Metz West Virginia WV Marion 049 39.6078 -80.4168 +US 26586 Montana Mines West Virginia WV Marion 049 39.5191 -80.0897 +US 26587 Rachel West Virginia WV Marion 049 39.5225 -80.2957 +US 26588 Rivesville West Virginia WV Marion 049 39.5568 -80.1417 +US 26591 Worthington West Virginia WV Marion 049 39.4522 -80.2905 +US 26031 Benwood West Virginia WV Marshall 051 40.0085 -80.7226 +US 26033 Cameron West Virginia WV Marshall 051 39.8227 -80.5669 +US 26036 Dallas West Virginia WV Marshall 051 39.9783 -80.5508 +US 26038 Glen Dale West Virginia WV Marshall 051 39.9597 -80.7323 +US 26039 Glen Easton West Virginia WV Marshall 051 39.8531 -80.6661 +US 26040 Mc Mechen West Virginia WV Marshall 051 39.9878 -80.7308 +US 26041 Moundsville West Virginia WV Marshall 051 39.9148 -80.731 +US 26055 Proctor West Virginia WV Marshall 051 39.7207 -80.7618 +US 25095 Grimms Landing West Virginia WV Mason 053 38.7523 -81.9973 +US 25106 Henderson West Virginia WV Mason 053 38.8265 -82.1364 +US 25123 Leon West Virginia WV Mason 053 38.7048 -81.9145 +US 25187 Southside West Virginia WV Mason 053 38.712 -81.9966 +US 25237 Clifton West Virginia WV Mason County 053 39.0022 -82.0415 +US 25247 Hartford West Virginia WV Mason 053 38.7523 -81.9973 +US 25250 Lakin West Virginia WV Mason 053 38.7523 -81.9973 +US 25253 Letart West Virginia WV Mason 053 38.9311 -81.9751 +US 25260 Mason West Virginia WV Mason 053 39.0064 -82.0282 +US 25265 New Haven West Virginia WV Mason 053 38.9863 -81.9652 +US 25287 West Columbia West Virginia WV Mason 053 38.9574 -82.0517 +US 25502 Apple Grove West Virginia WV Mason 053 38.6575 -82.1068 +US 25503 Ashton West Virginia WV Mason 053 38.6032 -82.1123 +US 25515 Gallipolis Ferry West Virginia WV Mason 053 38.765 -82.1535 +US 25520 Glenwood West Virginia WV Mason 053 38.5909 -82.1773 +US 25550 Point Pleasant West Virginia WV Mason 053 38.8632 -82.1132 +US 24701 Bluefield West Virginia WV Mercer 055 37.3327 -81.1601 +US 24710 Alpoca West Virginia WV Mercer County 055 37.5815 -81.4436 +US 24712 Athens West Virginia WV Mercer 055 37.4323 -80.9974 +US 24714 Beeson West Virginia WV Mercer 055 37.4909 -81.2062 +US 24715 Bramwell West Virginia WV Mercer 055 37.3321 -81.3256 +US 24724 Freeman West Virginia WV Mercer 055 37.3309 -81.2998 +US 24729 Hiawatha West Virginia WV Mercer 055 37.4164 -81.1058 +US 24731 Kegley West Virginia WV Mercer 055 37.4164 -81.1058 +US 24732 Kellysville West Virginia WV Mercer 055 37.4164 -81.1058 +US 24733 Lashmeet West Virginia WV Mercer 055 37.442 -81.2138 +US 24736 Matoaka West Virginia WV Mercer 055 37.4164 -81.2022 +US 24737 Montcalm West Virginia WV Mercer 055 37.3539 -81.2518 +US 24738 Nemours West Virginia WV Mercer 055 37.4164 -81.1058 +US 24739 Oakvale West Virginia WV Mercer 055 37.4164 -81.1058 +US 24740 Princeton West Virginia WV Mercer 055 37.3799 -81.1175 +US 24747 Rock West Virginia WV Mercer 055 37.4142 -81.1784 +US 24751 Wolfe West Virginia WV Mercer 055 37.4164 -81.1058 +US 25820 Camp Creek West Virginia WV Mercer 055 37.4841 -81.1111 +US 25841 Flat Top West Virginia WV Mercer 055 37.55 -81.128 +US 25922 Spanishburg West Virginia WV Mercer 055 37.4605 -81.1128 +US 25971 Lerona West Virginia WV Mercer 055 37.4925 -80.9796 +US 26710 Burlington West Virginia WV Mineral 057 39.4431 -78.9647 +US 26717 Elk Garden West Virginia WV Mineral 057 39.3631 -79.1539 +US 26719 Fort Ashby West Virginia WV Mineral 057 39.497 -78.7743 +US 26726 Keyser West Virginia WV Mineral 057 39.4527 -78.8926 +US 26743 New Creek West Virginia WV Mineral 057 39.3612 -79.0452 +US 26750 Piedmont West Virginia WV Mineral 057 39.4799 -79.0489 +US 26753 Ridgeley West Virginia WV Mineral 057 39.5636 -78.7887 +US 26767 Wiley Ford West Virginia WV Mineral 057 39.6133 -78.775 +US 24851 Justice West Virginia WV Mingo 059 37.7431 -82.108 +US 25608 Baisden West Virginia WV Mingo 059 37.5715 -81.9328 +US 25621 Gilbert West Virginia WV Mingo 059 37.6366 -81.9501 +US 25623 Hampden West Virginia WV Mingo 059 37.7431 -82.108 +US 25650 Verner West Virginia WV Mingo 059 37.6455 -81.8648 +US 25651 Wharncliffe West Virginia WV Mingo 059 37.7431 -82.108 +US 25661 Williamson West Virginia WV Mingo 059 37.6902 -82.2642 +US 25665 Borderland West Virginia WV Mingo 059 37.7214 -82.3084 +US 25666 Breeden West Virginia WV Mingo 059 37.9198 -82.2547 +US 25667 Chattaroy West Virginia WV Mingo 059 37.7047 -82.2739 +US 25670 Delbarton West Virginia WV Mingo 059 37.7189 -82.1931 +US 25671 Dingess West Virginia WV Mingo 059 37.8703 -82.1951 +US 25672 Edgarton West Virginia WV Mingo 059 37.7431 -82.108 +US 25674 Kermit West Virginia WV Mingo 059 37.8642 -82.3741 +US 25676 Lenore West Virginia WV Mingo 059 37.7431 -82.108 +US 25678 Matewan West Virginia WV Mingo 059 37.5903 -82.0652 +US 25682 Meador West Virginia WV Mingo 059 37.5924 -82.0659 +US 25685 Naugatuck West Virginia WV Mingo 059 37.7431 -82.108 +US 25686 Newtown West Virginia WV Mingo 059 37.7431 -82.108 +US 25687 Nolan West Virginia WV Mingo 059 37.7431 -82.108 +US 25688 North Matewan West Virginia WV Mingo 059 37.7431 -82.108 +US 25690 Ragland West Virginia WV Mingo 059 37.6898 -82.1244 +US 25691 Rawl West Virginia WV Mingo 059 37.7431 -82.108 +US 25692 Red Jacket West Virginia WV Mingo 059 37.7431 -82.108 +US 25693 Sprigg West Virginia WV Mingo County 059 37.6285 -82.1974 +US 25694 Thacker West Virginia WV Mingo 059 37.7431 -82.108 +US 25696 Varney West Virginia WV Mingo 059 37.7431 -82.108 +US 25697 Vulcan West Virginia WV Mingo 059 37.7431 -82.108 +US 25631 Lundale West Virginia WV Monongalia County 061 37.801 -81.7443 +US 26501 Morgantown West Virginia WV Monongalia 061 39.6099 -79.9831 +US 26502 Morgantown West Virginia WV Monongalia 061 39.6253 -79.9672 +US 26503 Morgantown West Virginia WV Monongalia 061 39.6366 -79.8956 +US 26504 Morgantown West Virginia WV Monongalia 061 39.5785 -80.093 +US 26505 Morgantown West Virginia WV Monongalia 061 39.6505 -79.944 +US 26506 Morgantown West Virginia WV Monongalia 061 39.6453 -79.9627 +US 26507 Morgantown West Virginia WV Monongalia 061 39.6808 -79.8365 +US 26508 Morgantown West Virginia WV Monongalia 061 39.5953 -79.9229 +US 26521 Blacksville West Virginia WV Monongalia 061 39.7142 -80.2265 +US 26522 Booth West Virginia WV Monongalia 061 39.5785 -80.093 +US 26527 Cassville West Virginia WV Monongalia 061 39.5785 -80.093 +US 26529 Core West Virginia WV Monongalia 061 39.6516 -80.1597 +US 26531 Dellslow West Virginia WV Monongalia 061 39.6053 -79.8958 +US 26533 Everettville West Virginia WV Monongalia 061 39.5785 -80.093 +US 26534 Granville West Virginia WV Monongalia 061 39.6276 -79.9429 +US 26541 Maidsville West Virginia WV Monongalia 061 39.6584 -80.0288 +US 26543 Osage West Virginia WV Monongalia 061 39.5785 -80.093 +US 26544 Pentress West Virginia WV Monongalia 061 39.5785 -80.093 +US 26546 Pursglove West Virginia WV Monongalia 061 39.6746 -80.035 +US 26589 Wadestown West Virginia WV Monongalia 061 39.6369 -80.3275 +US 26590 Wana West Virginia WV Monongalia 061 39.6735 -80.3183 +US 24918 Ballard West Virginia WV Monroe 063 37.498 -80.7614 +US 24923 Bozoo West Virginia WV Monroe County 063 37.4583 -80.8183 +US 24941 Gap Mills West Virginia WV Monroe 063 37.589 -80.3401 +US 24942 Glace West Virginia WV Monroe 063 37.552 -80.5397 +US 24945 Greenville West Virginia WV Monroe 063 37.552 -80.5397 +US 24951 Lindside West Virginia WV Monroe 063 37.4817 -80.6203 +US 24963 Peterstown West Virginia WV Monroe 063 37.4147 -80.7686 +US 24973 Sarton West Virginia WV Monroe County 063 37.5824 -80.6401 +US 24974 Secondcreek West Virginia WV Monroe 063 37.552 -80.5397 +US 24976 Sinks Grove West Virginia WV Monroe 063 37.552 -80.5397 +US 24980 Sweet Springs West Virginia WV Monroe County 063 37.6107 -80.3008 +US 24983 Union West Virginia WV Monroe 063 37.5802 -80.5248 +US 24984 Waiteville West Virginia WV Monroe 063 37.4645 -80.4634 +US 24985 Wayside West Virginia WV Monroe 063 37.5937 -80.7458 +US 24993 Wolfcreek West Virginia WV Monroe 063 37.552 -80.5397 +US 25411 Berkeley Springs West Virginia WV Morgan 065 39.5526 -78.1877 +US 25422 Great Cacapon West Virginia WV Morgan 065 39.5836 -78.3331 +US 25434 Paw Paw West Virginia WV Morgan 065 39.4923 -78.4586 +US 26360 Greenwood West Virginia WV Morgan County 065 39.2889 -80.8856 +US 25059 Dixie West Virginia WV Nicholas 067 38.2663 -81.1862 +US 26202 Fenwick West Virginia WV Nicholas 067 38.2447 -80.635 +US 26205 Craigsville West Virginia WV Nicholas 067 38.3254 -80.6444 +US 26207 Cottle West Virginia WV Nicholas County 067 38.3462 -80.6265 +US 26261 Richwood West Virginia WV Nicholas 067 38.223 -80.5445 +US 26610 Birch River West Virginia WV Nicholas 067 38.4914 -80.7459 +US 26651 Summersville West Virginia WV Nicholas 067 38.3009 -80.8353 +US 26656 Belva West Virginia WV Nicholas 067 38.2491 -81.1566 +US 26660 Calvin West Virginia WV Nicholas 067 38.3184 -80.8342 +US 26662 Canvas West Virginia WV Nicholas 067 38.2624 -80.7446 +US 26667 Drennen West Virginia WV Nicholas 067 38.3184 -80.8342 +US 26671 Gilboa West Virginia WV Nicholas 067 38.3184 -80.8342 +US 26675 Keslers Cross Lanes West Virginia WV Nicholas 067 38.3184 -80.8342 +US 26676 Leivasy West Virginia WV Nicholas 067 38.1558 -80.6827 +US 26678 Mount Lookout West Virginia WV Nicholas 067 38.1821 -80.9108 +US 26679 Mount Nebo West Virginia WV Nicholas 067 38.1653 -80.7976 +US 26681 Nettie West Virginia WV Nicholas 067 38.209 -80.6953 +US 26683 Poe West Virginia WV Nicholas County 067 38.2567 -80.9534 +US 26684 Pool West Virginia WV Nicholas 067 38.3184 -80.8342 +US 26690 Swiss West Virginia WV Nicholas 067 38.2255 -81.1273 +US 26691 Tioga West Virginia WV Nicholas 067 38.4045 -80.6667 +US 26003 Wheeling West Virginia WV Ohio 069 40.1027 -80.6476 +US 26059 Triadelphia West Virginia WV Ohio 069 40.0699 -80.5953 +US 26060 Valley Grove West Virginia WV Ohio 069 40.0946 -80.5551 +US 26074 West Liberty West Virginia WV Ohio 069 40.1698 -80.5958 +US 26802 Brandywine West Virginia WV Pendleton 071 38.6357 -79.2096 +US 26804 Circleville West Virginia WV Pendleton 071 38.623 -79.5367 +US 26806 Fort Seybert West Virginia WV Pendleton County 071 38.7396 -79.1352 +US 26807 Franklin West Virginia WV Pendleton 071 38.64 -79.3538 +US 26811 Lost River West Virginia WV Pendleton County 071 38.9345 -78.7932 +US 26813 Moyers West Virginia WV Pendleton County 071 38.5006 -79.383 +US 26814 Riverton West Virginia WV Pendleton 071 38.6979 -79.4655 +US 26815 Sugar Grove West Virginia WV Pendleton 071 38.489 -79.3593 +US 26866 Upper Tract West Virginia WV Pendleton 071 38.795 -79.2586 +US 26884 Seneca Rocks West Virginia WV Pendleton 071 38.8296 -79.3866 +US 26886 Onego West Virginia WV Pendleton 071 38.8017 -79.4507 +US 26134 Belmont West Virginia WV Pleasants 073 39.375 -81.2639 +US 26170 Saint Marys West Virginia WV Pleasants 073 39.386 -81.1725 +US 24915 Arbovale West Virginia WV Pocahontas 075 38.4546 -79.7934 +US 24920 Bartow West Virginia WV Pocahontas 075 38.5513 -79.7952 +US 24924 Buckeye West Virginia WV Pocahontas 075 38.388 -79.9906 +US 24927 Cass West Virginia WV Pocahontas 075 38.388 -79.9906 +US 24934 Dunmore West Virginia WV Pocahontas 075 38.3636 -79.8556 +US 24944 Green Bank West Virginia WV Pocahontas 075 38.4097 -79.8015 +US 24946 Hillsboro West Virginia WV Pocahontas 075 38.1109 -80.2641 +US 24954 Marlinton West Virginia WV Pocahontas 075 38.2586 -80.1046 +US 26209 Snowshoe West Virginia WV Pocahontas 075 38.388 -79.9906 +US 26264 Durbin West Virginia WV Pocahontas 075 38.388 -79.9906 +US 26291 Slatyfork West Virginia WV Pocahontas 075 38.388 -79.9906 +US 25620 Emmett West Virginia WV Preston County 077 37.6824 -81.8271 +US 26322 Alvy West Virginia WV Preston County 077 39.4546 -80.6683 +US 26374 Independence West Virginia WV Preston 077 39.4464 -79.8822 +US 26383 Lima West Virginia WV Preston County 077 39.4464 -80.7277 +US 26410 Newburg West Virginia WV Preston 077 39.4027 -79.828 +US 26425 Rowlesburg West Virginia WV Preston 077 39.313 -79.7049 +US 26444 Tunnelton West Virginia WV Preston 077 39.3625 -79.7478 +US 26519 Albright West Virginia WV Preston 077 39.5701 -79.6358 +US 26520 Arthurdale West Virginia WV Preston 077 39.4581 -79.6882 +US 26524 Bretz West Virginia WV Preston 077 39.4581 -79.6882 +US 26525 Bruceton Mills West Virginia WV Preston 077 39.6454 -79.6159 +US 26535 Hazelton West Virginia WV Preston 077 39.4581 -79.6882 +US 26537 Kingwood West Virginia WV Preston 077 39.4819 -79.7063 +US 26542 Masontown West Virginia WV Preston 077 39.5731 -79.7906 +US 26547 Reedsville West Virginia WV Preston 077 39.5127 -79.812 +US 26705 Aurora West Virginia WV Preston 077 39.3181 -79.5764 +US 26713 Corinth West Virginia WV Preston County 077 39.4338 -79.5008 +US 26716 Eglon West Virginia WV Preston 077 39.2925 -79.5109 +US 26764 Terra Alta West Virginia WV Preston 077 39.4306 -79.5197 +US 26769 Horse Shoe Run West Virginia WV Preston County 077 39.251 -79.5088 +US 25011 Bancroft West Virginia WV Putnam 079 38.5086 -81.841 +US 25033 Buffalo West Virginia WV Putnam 079 38.6092 -81.95 +US 25070 Eleanor West Virginia WV Putnam 079 38.5436 -81.9414 +US 25082 Fraziers Bottom West Virginia WV Putnam 079 38.5517 -82.0111 +US 25109 Hometown West Virginia WV Putnam 079 38.4754 -81.8805 +US 25124 Liberty West Virginia WV Putnam 079 38.62 -81.7678 +US 25158 Pliny West Virginia WV Putnam County 079 38.6185 -82.0045 +US 25159 Poca West Virginia WV Putnam 079 38.4791 -81.7838 +US 25168 Red House West Virginia WV Putnam 079 38.5463 -81.9045 +US 25172 Robertsburg West Virginia WV Putnam County 079 38.6456 -81.9083 +US 25213 Winfield West Virginia WV Putnam 079 38.5072 -81.89 +US 25526 Hurricane West Virginia WV Putnam 079 38.4257 -81.9943 +US 25560 Scott Depot West Virginia WV Putnam 079 38.4501 -81.9005 +US 25569 Teays West Virginia WV Putnam 079 38.4754 -81.8805 +US 25004 Ameagle West Virginia WV Raleigh 081 37.7845 -81.1185 +US 25007 Arnett West Virginia WV Raleigh 081 37.8216 -81.4096 +US 25008 Artie West Virginia WV Raleigh 081 37.94 -81.3545 +US 25044 Clear Creek West Virginia WV Raleigh 081 37.8804 -81.4088 +US 25048 Colcord West Virginia WV Raleigh 081 37.9439 -81.4369 +US 25060 Dorothy West Virginia WV Raleigh 081 37.9622 -81.4968 +US 25062 Dry Creek West Virginia WV Raleigh 081 37.8749 -81.4412 +US 25135 Montcoal West Virginia WV Raleigh County 081 37.9138 -81.5357 +US 25140 Naoma West Virginia WV Raleigh 081 37.9154 -81.5214 +US 25174 Rock Creek West Virginia WV Raleigh 081 37.8547 -81.4184 +US 25180 Saxon West Virginia WV Raleigh 081 37.7901 -81.4346 +US 25189 Sundial West Virginia WV Raleigh County 081 37.8768 -81.497 +US 25801 Beckley West Virginia WV Raleigh 081 37.7932 -81.2061 +US 25802 Beckley West Virginia WV Raleigh 081 37.7489 -81.2245 +US 25813 Beaver West Virginia WV Raleigh 081 37.7516 -81.0731 +US 25816 Blue Jay West Virginia WV Raleigh 081 37.7352 -81.1363 +US 25817 Bolt West Virginia WV Raleigh 081 37.7673 -81.4156 +US 25818 Bradley West Virginia WV Raleigh 081 37.8626 -81.201 +US 25823 Coal City West Virginia WV Raleigh 081 37.6708 -81.1749 +US 25825 Cool Ridge West Virginia WV Raleigh 081 37.6655 -81.0933 +US 25827 Crab Orchard West Virginia WV Raleigh 081 37.7385 -81.2536 +US 25828 Cranberry West Virginia WV Raleigh County 081 37.8215 -81.1951 +US 25832 Daniels West Virginia WV Raleigh 081 37.7256 -81.1087 +US 25836 Eccles West Virginia WV Raleigh 081 37.7792 -81.2635 +US 25839 Fairdale West Virginia WV Raleigh 081 37.7689 -81.3716 +US 25843 Ghent West Virginia WV Raleigh 081 37.6208 -81.1019 +US 25844 Glen Daniel West Virginia WV Raleigh 081 37.8251 -81.3858 +US 25847 Glen Morgan West Virginia WV Raleigh 081 37.7134 -81.1788 +US 25849 Glen White West Virginia WV Raleigh 081 37.7306 -81.2799 +US 25851 Harper West Virginia WV Raleigh 081 37.8025 -81.2828 +US 25853 Helen West Virginia WV Raleigh 081 37.6375 -81.3138 +US 25856 Jonben West Virginia WV Raleigh 081 37.6479 -81.1906 +US 25857 Josephine West Virginia WV Raleigh 081 37.6221 -81.2176 +US 25860 Lanark West Virginia WV Raleigh 081 37.7489 -81.2245 +US 25865 Lester West Virginia WV Raleigh 081 37.7265 -81.3095 +US 25871 Mabscott West Virginia WV Raleigh 081 37.77 -81.2103 +US 25873 Mac Arthur West Virginia WV Raleigh 081 37.7517 -81.2148 +US 25878 Midway West Virginia WV Raleigh 081 37.7171 -81.24 +US 25902 Odd West Virginia WV Raleigh 081 37.593 -81.1872 +US 25906 Piney View West Virginia WV Raleigh 081 37.8376 -81.1286 +US 25908 Princewick West Virginia WV Raleigh 081 37.6724 -81.2561 +US 25909 Prosperity West Virginia WV Raleigh 081 37.8381 -81.2004 +US 25911 Raleigh West Virginia WV Raleigh 081 37.7585 -81.1675 +US 25915 Rhodell West Virginia WV Raleigh 081 37.6254 -81.2749 +US 25918 Shady Spring West Virginia WV Raleigh 081 37.7416 -81.0149 +US 25919 Skelton West Virginia WV Raleigh 081 37.8005 -81.1806 +US 25920 Slab Fork West Virginia WV Raleigh 081 37.6871 -81.334 +US 25921 Sophia West Virginia WV Raleigh 081 37.7772 -81.345 +US 25926 Sprague West Virginia WV Raleigh 081 37.7873 -81.1951 +US 25927 Stanaford West Virginia WV Raleigh 081 37.7489 -81.2245 +US 25932 Surveyor West Virginia WV Raleigh 081 37.7565 -81.3092 +US 25934 Terry West Virginia WV Raleigh 081 37.849 -81.0937 +US 25989 White Oak West Virginia WV Raleigh 081 37.6843 -81.0489 +US 26224 Helvetia West Virginia WV Randolph 083 38.7713 -80.1382 +US 26230 Pickens West Virginia WV Randolph 083 38.6842 -80.2098 +US 26241 Elkins West Virginia WV Randolph 083 38.9253 -79.8471 +US 26253 Beverly West Virginia WV Randolph 083 38.828 -79.8651 +US 26254 Bowden West Virginia WV Randolph 083 38.7534 -79.8147 +US 26257 Coalton West Virginia WV Randolph 083 38.9144 -79.9767 +US 26259 Dailey West Virginia WV Randolph 083 38.7534 -79.8147 +US 26263 Dryfork West Virginia WV Randolph 083 38.9489 -79.4376 +US 26267 Ellamore West Virginia WV Randolph 083 38.7534 -79.8147 +US 26268 Glady West Virginia WV Randolph 083 38.7534 -79.8147 +US 26270 Harman West Virginia WV Randolph 083 38.9234 -79.5246 +US 26273 Huttonsville West Virginia WV Randolph 083 38.6784 -79.9775 +US 26276 Kerens West Virginia WV Randolph 083 39.0299 -79.7754 +US 26278 Mabie West Virginia WV Randolph 083 38.7534 -79.8147 +US 26280 Mill Creek West Virginia WV Randolph 083 38.7325 -79.9786 +US 26282 Monterville West Virginia WV Randolph 083 38.5517 -80.1224 +US 26283 Montrose West Virginia WV Randolph 083 39.0964 -79.7896 +US 26285 Norton West Virginia WV Randolph 083 38.9307 -79.9678 +US 26293 Valley Bend West Virginia WV Randolph 083 38.7534 -79.8147 +US 26294 Valley Head West Virginia WV Randolph 083 38.5315 -80.0343 +US 26296 Whitmer West Virginia WV Randolph 083 38.7516 -79.5819 +US 26145 Five Forks West Virginia WV Ritchie County 085 38.9751 -81.0847 +US 26148 Macfarlan West Virginia WV Ritchie 085 39.0806 -81.1776 +US 26161 Petroleum West Virginia WV Ritchie 085 39.1741 -81.2406 +US 26178 Smithville West Virginia WV Ritchie 085 39.0671 -81.062 +US 26325 Auburn West Virginia WV Ritchie 085 39.0864 -80.8837 +US 26327 Berea West Virginia WV Ritchie 085 39.1985 -81.0689 +US 26337 Cairo West Virginia WV Ritchie 085 39.2325 -81.1554 +US 26346 Ellenboro West Virginia WV Ritchie 085 39.2969 -81.0621 +US 26362 Harrisville West Virginia WV Ritchie 085 39.1453 -81.0341 +US 26367 Hazelgreen West Virginia WV Ritchie County 085 39.0631 -80.9806 +US 26407 Mountain West Virginia WV Ritchie 085 39.1985 -81.0689 +US 26415 Pennsboro West Virginia WV Ritchie 085 39.2791 -81.0019 +US 26421 Pullman West Virginia WV Ritchie 085 39.19 -80.9347 +US 25005 Amma West Virginia WV Roane 087 38.5455 -81.2532 +US 25046 Clio West Virginia WV Roane 087 38.7317 -81.3146 +US 25243 Gandeeville West Virginia WV Roane 087 38.7034 -81.4243 +US 25246 Harmony West Virginia WV Roane County 087 38.6921 -81.5076 +US 25251 Left Hand West Virginia WV Roane 087 38.6063 -81.2467 +US 25256 Linden West Virginia WV Roane 087 38.7317 -81.3146 +US 25259 Looneyville West Virginia WV Roane 087 38.6641 -81.2822 +US 25266 Newton West Virginia WV Roane 087 38.606 -81.1623 +US 25270 Reedy West Virginia WV Roane 087 38.8889 -81.4399 +US 25276 Spencer West Virginia WV Roane 087 38.7897 -81.3303 +US 25281 Tariff West Virginia WV Roane 087 38.7317 -81.3146 +US 25286 Walton West Virginia WV Roane 087 38.6023 -81.3958 +US 24919 Ballengee West Virginia WV Summers 089 37.6748 -80.89 +US 24935 Forest Hill West Virginia WV Summers 089 37.5608 -80.8111 +US 24962 Pence Springs West Virginia WV Summers 089 37.6621 -80.7202 +US 24981 Talcott West Virginia WV Summers 089 37.6491 -80.7461 +US 25951 Hinton West Virginia WV Summers 089 37.664 -80.8678 +US 25965 Elton West Virginia WV Summers 089 37.6485 -80.8774 +US 25966 Green Sulphur Springs West Virginia WV Summers 089 37.6485 -80.8774 +US 25969 Jumping Branch West Virginia WV Summers 089 37.6188 -81.0018 +US 25973 Lockbridge West Virginia WV Summers County 089 37.8274 -80.8451 +US 25977 Meadow Creek West Virginia WV Summers 089 37.6485 -80.8774 +US 25978 Nimitz West Virginia WV Summers 089 37.6286 -80.9446 +US 25979 Pipestem West Virginia WV Summers 089 37.5303 -80.9463 +US 25985 Sandstone West Virginia WV Summers 089 37.7599 -80.8716 +US 25988 True West Virginia WV Summers 089 37.6485 -80.8774 +US 26347 Flemington West Virginia WV Taylor 091 39.3454 -80.0498 +US 26354 Grafton West Virginia WV Taylor 091 39.3414 -80.0285 +US 26424 Rosemont West Virginia WV Taylor 091 39.3454 -80.0498 +US 26435 Simpson West Virginia WV Taylor 091 39.3454 -80.0498 +US 26440 Thornton West Virginia WV Taylor 091 39.3329 -79.9096 +US 26260 Davis West Virginia WV Tucker 093 39.0882 -79.4563 +US 26269 Hambleton West Virginia WV Tucker 093 39.1179 -79.5637 +US 26271 Hendricks West Virginia WV Tucker 093 39.0748 -79.6303 +US 26287 Parsons West Virginia WV Tucker 093 39.096 -79.6787 +US 26289 Red Creek West Virginia WV Tucker 093 39.1179 -79.5637 +US 26290 Saint George West Virginia WV Tucker County 093 39.1666 -79.7024 +US 26292 Thomas West Virginia WV Tucker 093 39.1505 -79.503 +US 26135 Bens Run West Virginia WV Tyler 095 39.4506 -80.8701 +US 26146 Friendly West Virginia WV Tyler 095 39.4961 -81.0572 +US 26149 Middlebourne West Virginia WV Tyler 095 39.4942 -80.9076 +US 26175 Sistersville West Virginia WV Tyler 095 39.5584 -80.9818 +US 26320 Alma West Virginia WV Tyler 095 39.4506 -80.8701 +US 26434 Shirley West Virginia WV Tyler 095 39.4506 -80.8701 +US 26201 Buckhannon West Virginia WV Upshur 097 38.9755 -80.2407 +US 26210 Adrian West Virginia WV Upshur 097 38.8993 -80.2269 +US 26215 Cleveland West Virginia WV Upshur 097 38.7133 -80.388 +US 26218 French Creek West Virginia WV Upshur 097 38.8993 -80.2269 +US 26219 Frenchton West Virginia WV Upshur 097 38.8993 -80.2269 +US 26228 Kanawha Head West Virginia WV Upshur 097 38.7618 -80.3727 +US 26229 Lorentz West Virginia WV Upshur 097 38.8993 -80.2269 +US 26234 Rock Cave West Virginia WV Upshur 097 38.7811 -80.3163 +US 26236 Selbyville West Virginia WV Upshur 097 38.8993 -80.2269 +US 26237 Tallmansville West Virginia WV Upshur 097 38.8564 -80.158 +US 25507 Ceredo West Virginia WV Wayne 099 38.3846 -82.5578 +US 25511 Dunlow West Virginia WV Wayne 099 38.1321 -82.4183 +US 25512 East Lynn West Virginia WV Wayne 099 38.1995 -82.3279 +US 25514 Fort Gay West Virginia WV Wayne 099 38.1335 -82.5541 +US 25517 Genoa West Virginia WV Wayne 099 38.1321 -82.4183 +US 25519 Glenhayes West Virginia WV Wayne 099 38.1321 -82.4183 +US 25530 Kenova West Virginia WV Wayne 099 38.3569 -82.5255 +US 25534 Kiahsville West Virginia WV Wayne 099 38.1321 -82.4183 +US 25535 Lavalette West Virginia WV Wayne 099 38.3305 -82.4287 +US 25555 Prichard West Virginia WV Wayne 099 38.23 -82.5753 +US 25562 Shoals West Virginia WV Wayne 099 38.3432 -82.4905 +US 25570 Wayne West Virginia WV Wayne 099 38.2258 -82.4339 +US 25669 Crum West Virginia WV Wayne 099 37.9389 -82.4624 +US 25699 Wilsondale West Virginia WV Wayne 099 38.1321 -82.4183 +US 25709 Huntington West Virginia WV Wayne 099 38.1321 -82.4183 +US 26203 Erbacon West Virginia WV Webster 101 38.5419 -80.5742 +US 26206 Cowen West Virginia WV Webster 101 38.4133 -80.5358 +US 26208 Camden On Gauley West Virginia WV Webster 101 38.3871 -80.5907 +US 26217 Diana West Virginia WV Webster 101 38.5755 -80.432 +US 26222 Hacker Valley West Virginia WV Webster 101 38.645 -80.4322 +US 26266 Upperglade West Virginia WV Webster 101 38.4185 -80.4965 +US 26288 Webster Springs West Virginia WV Webster 101 38.4832 -80.4476 +US 26298 Bergoo West Virginia WV Webster 101 38.4825 -80.4311 +US 26299 Boggs West Virginia WV Webster County 101 38.4821 -80.6074 +US 26155 New Martinsville West Virginia WV Wetzel 103 39.6588 -80.8565 +US 26159 Paden City West Virginia WV Wetzel 103 39.6044 -80.9265 +US 26162 Porters Falls West Virginia WV Wetzel 103 39.5755 -80.6667 +US 26167 Reader West Virginia WV Wetzel 103 39.5836 -80.7516 +US 26186 Wileyville West Virginia WV Wetzel 103 39.5755 -80.6667 +US 26348 Folsom West Virginia WV Wetzel 103 39.4693 -80.5258 +US 26377 Jacksonburg West Virginia WV Wetzel 103 39.5416 -80.6437 +US 26419 Pine Grove West Virginia WV Wetzel 103 39.5755 -80.6667 +US 26437 Smithfield West Virginia WV Wetzel 103 39.5134 -80.5582 +US 26561 Big Run West Virginia WV Wetzel 103 39.5755 -80.6667 +US 26562 Burton West Virginia WV Wetzel 103 39.6511 -80.4161 +US 26575 Hundred West Virginia WV Wetzel 103 39.6917 -80.4746 +US 26581 Littleton West Virginia WV Wetzel 103 39.6592 -80.5695 +US 26138 Brohard West Virginia WV Wirt 105 39.0338 -81.1775 +US 26141 Creston West Virginia WV Wirt 105 38.9378 -81.2369 +US 26143 Elizabeth West Virginia WV Wirt 105 39.0566 -81.3989 +US 26152 Munday West Virginia WV Wirt 105 39.0405 -81.372 +US 26160 Palestine West Virginia WV Wirt 105 38.9741 -81.428 +US 25255 Letter Gap West Virginia WV Wood County 107 38.9079 -80.9027 +US 26101 Parkersburg West Virginia WV Wood 107 39.2644 -81.5354 +US 26102 Parkersburg West Virginia WV Wood 107 39.2183 -81.4979 +US 26103 Parkersburg West Virginia WV Wood 107 39.2364 -81.5405 +US 26104 Parkersburg West Virginia WV Wood 107 39.2804 -81.4936 +US 26105 Vienna West Virginia WV Wood 107 39.3251 -81.5411 +US 26106 Parkersburg West Virginia WV Wood 107 39.2183 -81.4979 +US 26120 Mineral Wells West Virginia WV Wood 107 39.2183 -81.4979 +US 26121 Mineral Wells West Virginia WV Wood 107 39.2183 -81.4979 +US 26133 Belleville West Virginia WV Wood 107 39.1314 -81.6923 +US 26142 Davisville West Virginia WV Wood 107 39.2126 -81.4799 +US 26150 Mineral Wells West Virginia WV Wood 107 39.1897 -81.5139 +US 26169 Rockport West Virginia WV Wood 107 39.0798 -81.5713 +US 26180 Walker West Virginia WV Wood 107 39.1821 -81.3866 +US 26181 Washington West Virginia WV Wood 107 39.2068 -81.6577 +US 26184 Waverly West Virginia WV Wood 107 39.3157 -81.3819 +US 26185 Wick West Virginia WV Wood County 107 39.4217 -80.968 +US 26187 Williamstown West Virginia WV Wood 107 39.3824 -81.4566 +US 24716 Bud West Virginia WV Wyoming 109 37.6033 -81.54 +US 24719 Covel West Virginia WV Wyoming 109 37.6033 -81.54 +US 24726 Herndon West Virginia WV Wyoming 109 37.5264 -81.3468 +US 24818 Brenton West Virginia WV Wyoming 109 37.5988 -81.6264 +US 24822 Clear Fork West Virginia WV Wyoming 109 37.6033 -81.54 +US 24823 Coal Mountain West Virginia WV Wyoming 109 37.6885 -81.7079 +US 24827 Cyclone West Virginia WV Wyoming 109 37.7447 -81.6505 +US 24834 Fanrock West Virginia WV Wyoming 109 37.5532 -81.6305 +US 24839 Hanover West Virginia WV Wyoming 109 37.563 -81.8136 +US 24845 Ikes Fork West Virginia WV Wyoming 109 37.6033 -81.54 +US 24847 Itmann West Virginia WV Wyoming 109 37.6033 -81.54 +US 24849 Jesse West Virginia WV Wyoming 109 37.6608 -81.5628 +US 24854 Kopperston West Virginia WV Wyoming 109 37.744 -81.575 +US 24857 Lynco West Virginia WV Wyoming 109 37.6033 -81.54 +US 24859 Marianna West Virginia WV Wyoming 109 37.6033 -81.54 +US 24860 Matheny West Virginia WV Wyoming 109 37.6624 -81.607 +US 24867 New Richmond West Virginia WV Wyoming 109 37.6033 -81.54 +US 24869 North Spring West Virginia WV Wyoming 109 37.6033 -81.54 +US 24870 Oceana West Virginia WV Wyoming 109 37.7407 -81.5831 +US 24874 Pineville West Virginia WV Wyoming 109 37.584 -81.5336 +US 24880 Rock View West Virginia WV Wyoming 109 37.6033 -81.54 +US 24882 Simon West Virginia WV Wyoming 109 37.6197 -81.7586 +US 24896 Wolf Pen West Virginia WV Wyoming 109 37.6033 -81.54 +US 24898 Wyoming West Virginia WV Wyoming 109 37.6033 -81.54 +US 25810 Allen Junction West Virginia WV Wyoming 109 37.6033 -81.54 +US 25811 Amigo West Virginia WV Wyoming 109 37.6033 -81.54 +US 25826 Corinne West Virginia WV Wyoming 109 37.6033 -81.54 +US 25845 Glen Fork West Virginia WV Wyoming 109 37.6033 -81.54 +US 25848 Glen Rogers West Virginia WV Wyoming 109 37.7217 -81.429 +US 25870 Maben West Virginia WV Wyoming 109 37.6108 -81.5059 +US 25875 Mc Graws West Virginia WV Wyoming 109 37.6033 -81.54 +US 25876 Saulsville West Virginia WV Wyoming 109 37.6033 -81.54 +US 25882 Mullens West Virginia WV Wyoming 109 37.5842 -81.389 +US 25913 Ravencliff West Virginia WV Wyoming 109 37.7141 -81.4895 +US 25916 Sabine West Virginia WV Wyoming 109 37.6033 -81.54 +US 25928 Stephenson West Virginia WV Wyoming 109 37.5798 -81.3339 +US 25943 Wyco West Virginia WV Wyoming 109 37.6033 -81.54 +US 82051 Bosler Wyoming WY Albany 001 41.5735 -105.6112 +US 82052 Buford Wyoming WY Albany 001 41.1101 -105.3257 +US 82055 Centennial Wyoming WY Albany 001 41.3391 -105.9945 +US 82057 Laramie Wyoming WY Albany County 001 41.1095 -106.219 +US 82058 Garrett Wyoming WY Albany 001 42.2035 -105.678 +US 82063 Jelm Wyoming WY Albany 001 41.0539 -106.0763 +US 82070 Laramie Wyoming WY Albany 001 41.439 -105.801 +US 82071 Laramie Wyoming WY Albany 001 41.7151 -105.7974 +US 82072 Laramie Wyoming WY Albany 001 41.4247 -105.4781 +US 82073 Laramie Wyoming WY Albany 001 41.3071 -105.6247 +US 82083 Rock River Wyoming WY Albany 001 41.7461 -105.9746 +US 82084 Tie Siding Wyoming WY Albany 001 41.0528 -105.4462 +US 82410 Basin Wyoming WY Big Horn 003 44.3788 -108.0438 +US 82411 Burlington Wyoming WY Big Horn 003 44.4442 -108.4327 +US 82412 Byron Wyoming WY Big Horn 003 44.7844 -108.544 +US 82420 Cowley Wyoming WY Big Horn 003 44.8841 -108.4638 +US 82421 Deaver Wyoming WY Big Horn 003 44.9257 -108.5979 +US 82422 Emblem Wyoming WY Big Horn 003 44.5836 -107.8835 +US 82426 Greybull Wyoming WY Big Horn 003 44.4919 -108.0795 +US 82428 Hyattville Wyoming WY Big Horn 003 44.2507 -107.6053 +US 82431 Lovell Wyoming WY Big Horn 003 44.8336 -108.4141 +US 82432 Manderson Wyoming WY Big Horn 003 44.3033 -107.8598 +US 82434 Otto Wyoming WY Big Horn 003 44.4056 -108.3047 +US 82441 Shell Wyoming WY Big Horn 003 44.6011 -107.7889 +US 82716 Gillette Wyoming WY Campbell 005 44.282 -105.4974 +US 82717 Gillette Wyoming WY Campbell 005 44.3047 -105.4959 +US 82718 Gillette Wyoming WY Campbell 005 43.9282 -105.5492 +US 82725 Recluse Wyoming WY Campbell 005 44.7861 -105.776 +US 82727 Rozet Wyoming WY Campbell 005 44.3058 -105.2459 +US 82731 Weston Wyoming WY Campbell 005 44.7705 -105.3581 +US 82732 Wright Wyoming WY Campbell 005 43.7614 -105.5201 +US 82080 McFadden Wyoming WY Carbon County 007 41.6327 -106.1379 +US 82301 Rawlins Wyoming WY Carbon 007 41.7951 -107.2349 +US 82321 Baggs Wyoming WY Carbon 007 41.0312 -107.6687 +US 82323 Dixon Wyoming WY Carbon 007 41.0445 -107.499 +US 82324 Elk Mountain Wyoming WY Carbon 007 41.6874 -106.4146 +US 82325 Encampment Wyoming WY Carbon 007 41.2054 -106.7803 +US 82327 Hanna Wyoming WY Carbon 007 41.8726 -106.5283 +US 82329 Medicine Bow Wyoming WY Carbon 007 41.903 -106.2012 +US 82331 Saratoga Wyoming WY Carbon 007 41.498 -106.754 +US 82332 Savery Wyoming WY Carbon 007 41.0395 -107.4234 +US 82334 Sinclair Wyoming WY Carbon 007 41.7802 -107.1172 +US 82335 Walcott Wyoming WY Carbon 007 41.7169 -106.9992 +US 82615 Shirley Basin Wyoming WY Carbon 007 41.7169 -106.9992 +US 82224 Lost Springs Wyoming WY Converse 009 43.0421 -104.7973 +US 82229 Shawnee Wyoming WY Converse 009 42.7877 -105.0633 +US 82631 Bill Wyoming WY Converse 009 42.8942 -105.4852 +US 82633 Douglas Wyoming WY Converse 009 42.7626 -105.3855 +US 82637 Glenrock Wyoming WY Converse 009 42.7803 -105.8719 +US 82710 Aladdin Wyoming WY Crook 011 44.7473 -104.1931 +US 82711 Alva Wyoming WY Crook 011 44.6873 -104.4414 +US 82712 Beulah Wyoming WY Crook 011 44.5436 -104.0745 +US 82713 Carlile Wyoming WY Crook 011 44.5259 -104.7678 +US 82714 Devils Tower Wyoming WY Crook 011 44.5248 -104.6867 +US 82720 Hulett Wyoming WY Crook 011 44.7352 -104.6174 +US 82721 Moorcroft Wyoming WY Crook 011 44.4154 -104.8389 +US 82724 Oshoto Wyoming WY Crook County 011 44.5887 -104.9832 +US 82729 Sundance Wyoming WY Crook 011 44.4058 -104.3837 +US 82310 Jeffrey City Wyoming WY Fremont 013 42.5402 -107.8724 +US 82501 Riverton Wyoming WY Fremont 013 43.0351 -108.2024 +US 82510 Arapahoe Wyoming WY Fremont 013 42.9679 -108.4941 +US 82512 Crowheart Wyoming WY Fremont 013 43.3716 -109.296 +US 82513 Dubois Wyoming WY Fremont 013 43.5451 -109.6492 +US 82514 Fort Washakie Wyoming WY Fremont 013 43.0048 -108.8964 +US 82515 Hudson Wyoming WY Fremont 013 42.9008 -108.5827 +US 82516 Kinnear Wyoming WY Fremont 013 43.2678 -108.9334 +US 82520 Lander Wyoming WY Fremont 013 42.9208 -108.5913 +US 82523 Pavillion Wyoming WY Fremont 013 43.3623 -108.6998 +US 82524 Saint Stephens Wyoming WY Fremont 013 42.9986 -108.5719 +US 82642 Lysite Wyoming WY Fremont 013 43.3284 -107.6488 +US 82649 Shoshoni Wyoming WY Fremont 013 43.2457 -108.1007 +US 82212 Fort Laramie Wyoming WY Goshen 015 42.2133 -104.5226 +US 82217 Hawk Springs Wyoming WY Goshen 015 41.7415 -104.3295 +US 82218 Huntley Wyoming WY Goshen 015 42.0881 -104.354 +US 82219 Jay Em Wyoming WY Goshen 015 42.4987 -104.5134 +US 82221 Lagrange Wyoming WY Goshen 015 41.6423 -104.1974 +US 82223 Lingle Wyoming WY Goshen 015 42.1346 -104.332 +US 82240 Torrington Wyoming WY Goshen 015 42.0624 -104.1917 +US 82243 Veteran Wyoming WY Goshen 015 41.9821 -104.3709 +US 82244 Yoder Wyoming WY Goshen 015 41.912 -104.3535 +US 82427 Hamilton Dome Wyoming WY Hot Springs 017 43.7698 -108.4541 +US 82430 Kirby Wyoming WY Hot Springs 017 43.8042 -108.1805 +US 82443 Thermopolis Wyoming WY Hot Springs 017 43.7758 -108.3839 +US 82639 Kaycee Wyoming WY Johnson 019 43.7236 -106.5632 +US 82640 Linch Wyoming WY Johnson 019 43.5651 -106.1728 +US 82834 Buffalo Wyoming WY Johnson 019 44.3485 -106.7073 +US 82840 Saddlestring Wyoming WY Johnson 019 44.4976 -106.871 +US 82001 Cheyenne Wyoming WY Laramie 021 41.1437 -104.7962 +US 82002 Cheyenne Wyoming WY Laramie 021 41.3274 -104.6664 +US 82003 Cheyenne Wyoming WY Laramie 021 41.2191 -104.6612 +US 82005 Fe Warren Afb Wyoming WY Laramie 021 41.1391 -104.8629 +US 82006 Cheyenne Wyoming WY Laramie 021 41.3274 -104.6664 +US 82007 Cheyenne Wyoming WY Laramie 021 41.1084 -104.8107 +US 82008 Cheyenne Wyoming WY Laramie 021 41.3274 -104.6664 +US 82009 Cheyenne Wyoming WY Laramie 021 41.1836 -104.8023 +US 82010 Cheyenne Wyoming WY Laramie 021 41.3274 -104.6664 +US 82050 Albin Wyoming WY Laramie 021 41.4342 -104.1505 +US 82053 Burns Wyoming WY Laramie 021 41.2003 -104.3155 +US 82054 Carpenter Wyoming WY Laramie 021 41.0428 -104.2765 +US 82059 Granite Canon Wyoming WY Laramie 021 41.0473 -105.1517 +US 82060 Hillsdale Wyoming WY Laramie 021 41.2136 -104.4933 +US 82061 Horse Creek Wyoming WY Laramie 021 41.4353 -105.1417 +US 82081 Meriden Wyoming WY Laramie 021 41.5424 -104.2866 +US 82082 Pine Bluffs Wyoming WY Laramie 021 41.1788 -104.0666 +US 83101 Kemmerer Wyoming WY Lincoln 023 41.7887 -110.5283 +US 83110 Afton Wyoming WY Lincoln 023 42.7128 -110.942 +US 83111 Auburn Wyoming WY Lincoln 023 42.8051 -110.9944 +US 83112 Bedford Wyoming WY Lincoln 023 42.8701 -110.9401 +US 83114 Cokeville Wyoming WY Lincoln 023 42.058 -110.9164 +US 83116 Diamondville Wyoming WY Lincoln 023 41.7839 -110.54 +US 83118 Etna Wyoming WY Lincoln 023 43.0443 -111.0085 +US 83119 Fairview Wyoming WY Lincoln 023 42.6746 -111.0148 +US 83120 Freedom Wyoming WY Lincoln 023 43.0172 -111.0292 +US 83121 Frontier Wyoming WY Lincoln 023 41.796 -110.5373 +US 83122 Grover Wyoming WY Lincoln 023 42.7965 -110.9244 +US 83123 La Barge Wyoming WY Lincoln 023 42.2473 -110.2109 +US 83124 Opal Wyoming WY Lincoln 023 41.7795 -110.276 +US 83126 Smoot Wyoming WY Lincoln 023 42.6192 -110.9224 +US 83127 Thayne Wyoming WY Lincoln 023 42.933 -111.0114 +US 83128 Alpine Wyoming WY Lincoln 023 43.0303 -110.8845 +US 82601 Casper Wyoming WY Natrona 025 42.8458 -106.3166 +US 82602 Casper Wyoming WY Natrona 025 42.8896 -106.357 +US 82604 Casper Wyoming WY Natrona 025 42.8261 -106.3896 +US 82605 Casper Wyoming WY Natrona 025 42.9662 -106.807 +US 82609 Casper Wyoming WY Natrona 025 42.8406 -106.2806 +US 82620 Alcova Wyoming WY Natrona 025 42.5302 -106.76 +US 82630 Arminto Wyoming WY Natrona 025 42.9662 -106.807 +US 82635 Edgerton Wyoming WY Natrona 025 43.4074 -106.2638 +US 82636 Evansville Wyoming WY Natrona 025 42.8992 -106.1754 +US 82638 Hiland Wyoming WY Natrona 025 43.1153 -107.3436 +US 82643 Midwest Wyoming WY Natrona 025 43.4108 -106.2668 +US 82644 Mills Wyoming WY Natrona 025 42.948 -106.4446 +US 82646 Natrona Wyoming WY Natrona 025 42.9662 -106.807 +US 82648 Powder River Wyoming WY Natrona 025 42.9662 -106.807 +US 82220 Keeline Wyoming WY Niobrara County 027 42.8391 -104.7203 +US 82222 Lance Creek Wyoming WY Niobrara 027 43.2316 -104.545 +US 82225 Lusk Wyoming WY Niobrara 027 42.766 -104.4651 +US 82227 Manville Wyoming WY Niobrara 027 42.73 -104.7024 +US 82228 Node Wyoming WY Niobrara County 027 42.7478 -104.2963 +US 82242 Van Tassell Wyoming WY Niobrara 027 42.7033 -104.1408 +US 82190 Yellowstone National Park Wyoming WY Park 029 44.7957 -110.6137 +US 82414 Cody Wyoming WY Park 029 44.5231 -109.0756 +US 82423 Frannie Wyoming WY Park 029 44.9718 -108.6221 +US 82433 Meeteetse Wyoming WY Park 029 44.1962 -108.95 +US 82435 Powell Wyoming WY Park 029 44.7561 -108.7773 +US 82440 Ralston Wyoming WY Park 029 44.695 -108.8833 +US 82450 Wapiti Wyoming WY Park 029 44.4631 -109.4155 +US 82201 Wheatland Wyoming WY Platte 031 42.0495 -104.9679 +US 82210 Chugwater Wyoming WY Platte 031 41.7487 -104.8179 +US 82213 Glendo Wyoming WY Platte 031 42.5004 -105 +US 82214 Guernsey Wyoming WY Platte 031 42.2655 -104.7512 +US 82215 Hartville Wyoming WY Platte 031 42.3334 -104.7296 +US 82801 Sheridan Wyoming WY Sheridan 033 44.7849 -106.9648 +US 82831 Arvada Wyoming WY Sheridan 033 44.6899 -106.1092 +US 82832 Banner Wyoming WY Sheridan 033 44.6003 -106.7954 +US 82833 Big Horn Wyoming WY Sheridan 033 44.6531 -107.0247 +US 82835 Clearmont Wyoming WY Sheridan 033 44.661 -106.4581 +US 82836 Dayton Wyoming WY Sheridan 033 44.878 -107.3026 +US 82837 Leiter Wyoming WY Sheridan 033 44.7832 -106.2806 +US 82838 Parkman Wyoming WY Sheridan 033 44.965 -107.3254 +US 82839 Ranchester Wyoming WY Sheridan 033 44.9171 -107.174 +US 82842 Story Wyoming WY Sheridan 033 44.58 -106.8978 +US 82844 Wolf Wyoming WY Sheridan 033 44.7864 -107.2202 +US 82845 Wyarno Wyoming WY Sheridan 033 44.7534 -106.6949 +US 82922 Bondurant Wyoming WY Sublette 035 43.2238 -110.3353 +US 82923 Boulder Wyoming WY Sublette 035 42.6881 -109.5401 +US 82925 Cora Wyoming WY Sublette 035 43.1399 -109.9154 +US 82941 Pinedale Wyoming WY Sublette 035 42.8543 -109.8561 +US 83113 Big Piney Wyoming WY Sublette 035 42.6483 -110.1246 +US 83115 Daniel Wyoming WY Sublette 035 42.9176 -110.1336 +US 82322 Bairoil Wyoming WY Sweetwater 037 42.2327 -107.5633 +US 82336 Wamsutter Wyoming WY Sweetwater 037 41.6583 -108.1517 +US 82901 Rock Springs Wyoming WY Sweetwater 037 41.606 -109.23 +US 82902 Rock Springs Wyoming WY Sweetwater 037 41.6314 -108.9639 +US 82926 Rock Springs Wyoming WY Sweetwater County 037 42.0508 -109.4363 +US 82929 Little America Wyoming WY Sweetwater 037 41.7581 -109.7459 +US 82932 Farson Wyoming WY Sweetwater 037 42.0834 -109.4184 +US 82934 Granger Wyoming WY Sweetwater 037 41.5372 -109.763 +US 82935 Green River Wyoming WY Sweetwater 037 41.5196 -109.4714 +US 82938 Mc Kinnon Wyoming WY Sweetwater 037 41.0409 -109.8745 +US 82942 Point Of Rocks Wyoming WY Sweetwater 037 41.653 -108.5252 +US 82943 Reliance Wyoming WY Sweetwater 037 41.6698 -109.1919 +US 82945 Superior Wyoming WY Sweetwater 037 41.7643 -108.9681 +US 83001 Jackson Wyoming WY Teton 039 43.4528 -110.7393 +US 83002 Jackson Wyoming WY Teton 039 43.5054 -110.7865 +US 83011 Kelly Wyoming WY Teton 039 43.6094 -110.5442 +US 83012 Moose Wyoming WY Teton 039 43.715 -110.742 +US 83013 Moran Wyoming WY Teton 039 43.9509 -110.5532 +US 83014 Wilson Wyoming WY Teton 039 43.4992 -110.8742 +US 83025 Teton Village Wyoming WY Teton 039 43.5924 -110.8314 +US 83414 Alta Wyoming WY Teton County 039 43.8886 -110.9492 +US 82930 Evanston Wyoming WY Uinta 041 41.2609 -110.9631 +US 82931 Evanston Wyoming WY Uinta 041 41.2619 -110.92 +US 82933 Fort Bridger Wyoming WY Uinta 041 41.2828 -110.3474 +US 82936 Lonetree Wyoming WY Uinta 041 41.0552 -110.1603 +US 82937 Lyman Wyoming WY Uinta 041 41.3291 -110.2926 +US 82939 Mountain View Wyoming WY Uinta 041 41.2335 -110.3372 +US 82944 Robertson Wyoming WY Uinta 041 41.0993 -110.5007 +US 82401 Worland Wyoming WY Washakie 043 44.0138 -107.9563 +US 82442 Ten Sleep Wyoming WY Washakie 043 43.9978 -107.4153 +US 82701 Newcastle Wyoming WY Weston 045 43.8511 -104.2262 +US 82715 Four Corners Wyoming WY Weston 045 43.84 -104.5681 +US 82723 Osage Wyoming WY Weston 045 43.999 -104.4226 +US 82730 Upton Wyoming WY Weston 045 44.0893 -104.6352 diff --git a/src/main/scala/com/interana/eventsim/Main.scala b/src/main/scala/com/interana/eventsim/Main.scala index f12f033a..65fd0651 100644 --- a/src/main/scala/com/interana/eventsim/Main.scala +++ b/src/main/scala/com/interana/eventsim/Main.scala @@ -202,9 +202,6 @@ object Main extends App { if (realTime) { val now = LocalDateTime.now() val dif = Duration.between(clock, now) - - // System.err.println("now = " + now + ", clock = " + clock, " dif = " + dif) - if (dif.isNegative) Thread.sleep(-dif.getSeconds) } diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala b/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala index cac516f9..6bb1ac7f 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala +++ b/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala @@ -6,10 +6,61 @@ import scala.io.Source /** * Randomly generates locations + * + * Population data and coordinated are from http://www.census.gov/geo/maps-data/data/gazetteer2010.html + * Place names are from http://download.geonames.org/export/zip/ + * + * country code : iso country code, 2 characters + * postal code : varchar(20) + * place name : varchar(180) + * admin name1 : 1. order subdivision (state) varchar(100) + * admin code1 : 1. order subdivision (state) varchar(20) + * admin name2 : 2. order subdivision (county/province) varchar(100) + * admin code2 : 2. order subdivision (county/province) varchar(20) + * admin name3 : 3. order subdivision (community) varchar(100) + * admin code3 : 3. order subdivision (community) varchar(20) + * latitude : estimated latitude (wgs84) + * longitude : estimated longitude (wgs84) + * accuracy : accuracy of lat/lng from 1=estimated to 6=centroid + * */ -object RandomLocationGenerator extends WeightedRandomThingGenerator[String] { +object RandomLocationGenerator extends WeightedRandomThingGenerator[(String, String, String, Double, Double)] { + val statsSource = Source.fromFile("data/Gaz_zcta_national.txt", "ISO-8859-1") + val namesSource = Source.fromFile("data/US.txt", "ISO-8859-1") + + val statsLines = statsSource.getLines().drop(1) + val namesLines = namesSource.getLines().toList + + val nameMap: Map[String,(String, String)] = namesLines.map( + l => { + val e = l.split('\t') + val zip = e(1) + val city = e(2) + val state = e(4) + // System.err.println("adding " + zip + " -> " + city + ", " + state) + zip -> (city, state) + })(collection.breakOut) + + statsLines.foreach(s => { + val e = s.split('\t') + val zip = e(0) + val pop = e(1).toInt + val lat = e(7).toDouble + val lon = e(8).toDouble + if (nameMap.contains(zip)) { + val (city, state) = nameMap(zip) + // System.err.println("adding " + zip + ", " + city + ", " + state + ", " + lat + ", " + lon + ", " + pop) + this.add((zip, city, state, lat, lon), pop) + } + } + ) + + statsSource.close() + namesSource.close() + + /* val s = Source.fromFile("data/CBSA-EST2013-alldata.csv","ISO-8859-1") val lines = s.getLines() val cbsaRegex = new scala.util.matching.Regex( @@ -19,5 +70,5 @@ object RandomLocationGenerator extends WeightedRandomThingGenerator[String] { yield (m.group("name"), m.group("pop").toInt.asInstanceOf[Integer]) fields.foreach(this.add) s.close() - + */ } diff --git a/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala b/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala index ff3c759b..d01e1818 100644 --- a/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala +++ b/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala @@ -22,7 +22,11 @@ object UserProperties { "firstName" -> firstNameAndGender._1, "gender" -> firstNameAndGender._2, "registration" -> registrationTime.toInstant(ZoneOffset.UTC).toEpochMilli, - "location" -> location + "zip" -> location._1, + "city" -> location._2, + "state" -> location._3, + "lat" -> location._4, + "lon" -> location._5 ) } From 8f580394a22a5868d3f4a39ceb9980051b280713 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Tue, 22 Sep 2015 14:37:48 -0700 Subject: [PATCH 06/14] Added user agents, made locations visible even for unregistered/logged out users --- src/main/avro/event.avsc | 2 ++ .../com/interana/eventsim/Output/AvroWriter.scala | 2 ++ .../com/interana/eventsim/Output/EventWriter.scala | 1 + .../com/interana/eventsim/Output/JSONWriter.scala | 9 +++++++++ src/main/scala/com/interana/eventsim/User.scala | 1 + .../interana/eventsim/buildin/DeviceProperties.scala | 12 +++++++++--- .../eventsim/buildin/RandomLocationGenerator.scala | 11 ----------- .../interana/eventsim/buildin/UserProperties.scala | 7 +------ 8 files changed, 25 insertions(+), 20 deletions(-) diff --git a/src/main/avro/event.avsc b/src/main/avro/event.avsc index 0eef2597..b1d3a498 100644 --- a/src/main/avro/event.avsc +++ b/src/main/avro/event.avsc @@ -13,6 +13,8 @@ {"name" : "itemInSession", "type" : "int"}, {"name" : "userDetails", "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + {"name" : "deviceDetails", + "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, {"name" : "songProperties", "type" : [ "null", { diff --git a/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala b/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala index f0f6ba45..5bb5ab8f 100644 --- a/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala +++ b/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala @@ -37,4 +37,6 @@ class AvroWriter(val stream: OutputStream) extends Object with EventWriter { dataFileWriter.append(e) } + def setDeviceDetails(m: Map[String, Any]): Unit = + eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) } diff --git a/src/main/scala/com/interana/eventsim/Output/EventWriter.scala b/src/main/scala/com/interana/eventsim/Output/EventWriter.scala index 3da904a0..5d4b8d8c 100644 --- a/src/main/scala/com/interana/eventsim/Output/EventWriter.scala +++ b/src/main/scala/com/interana/eventsim/Output/EventWriter.scala @@ -14,6 +14,7 @@ trait EventWriter { def setTitle(s: String) def setDuration(d: Float) def setUserDetails(m: Map[String,Any]) + def setDeviceDetails(m: Map[String,Any]) def setTag(s: String) def start() def end() diff --git a/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala b/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala index 1dd5f6da..a561bfb9 100644 --- a/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala +++ b/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala @@ -31,6 +31,15 @@ class JSONWriter(val stream: OutputStream) extends Object with EventWriter { case _: Float => generator.writeNumberField(p._1, p._2.asInstanceOf[Float]) case _: String => generator.writeStringField(p._1, p._2.asInstanceOf[String]) }}) + def setDeviceDetails(m: Map[String,Any]) = + m.foreach((p: (String, Any)) => { + p._2 match { + case _: Long => generator.writeNumberField(p._1, p._2.asInstanceOf[Long]) + case _: Int => generator.writeNumberField(p._1, p._2.asInstanceOf[Int]) + case _: Double => generator.writeNumberField(p._1, p._2.asInstanceOf[Double]) + case _: Float => generator.writeNumberField(p._1, p._2.asInstanceOf[Float]) + case _: String => generator.writeStringField(p._1, p._2.asInstanceOf[String]) + }}) def setTag(s: String) = generator.writeStringField("tag", s) def start = generator.writeStartObject() def end() = { diff --git a/src/main/scala/com/interana/eventsim/User.scala b/src/main/scala/com/interana/eventsim/User.scala index f48a8ab1..dd3244e0 100644 --- a/src/main/scala/com/interana/eventsim/User.scala +++ b/src/main/scala/com/interana/eventsim/User.scala @@ -61,6 +61,7 @@ class User(val alpha: Double, writer.setStatus(session.currentState.status) writer.setLevel(session.currentState.level) writer.setItemInSession(session.itemInSession) + writer.setDeviceDetails(device) if (showUserDetails) { writer.setUserDetails(props) if (Main.tag.isDefined) diff --git a/src/main/scala/com/interana/eventsim/buildin/DeviceProperties.scala b/src/main/scala/com/interana/eventsim/buildin/DeviceProperties.scala index 867c812a..57f86669 100644 --- a/src/main/scala/com/interana/eventsim/buildin/DeviceProperties.scala +++ b/src/main/scala/com/interana/eventsim/buildin/DeviceProperties.scala @@ -2,10 +2,16 @@ package com.interana.eventsim.buildin object DeviceProperties { - def randomProps = - Map[String,Any]( - "location" -> RandomLocationGenerator.randomThing, + def randomProps = { + val location = RandomLocationGenerator.randomThing + Map[String, Any]( + "zip" -> location._1, + "city" -> location._2, + "state" -> location._3, + "lat" -> location._4, + "lon" -> location._5, "userAgent" -> RandomUserAgentGenerator.randomThing._1 ) + } } diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala b/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala index 6bb1ac7f..8d7afa5c 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala +++ b/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala @@ -60,15 +60,4 @@ object RandomLocationGenerator extends WeightedRandomThingGenerator[(String, Str statsSource.close() namesSource.close() - /* - val s = Source.fromFile("data/CBSA-EST2013-alldata.csv","ISO-8859-1") - val lines = s.getLines() - val cbsaRegex = new scala.util.matching.Regex( - """\d+\,[^\,]*\,[^\,]*\,\"([^\"]+)\"\,M(?:et|ic)ropolitan\ Statistical\ Area\,(\d+)\,.*""", - "name", "pop") - val fields = for {l <- lines; m <- cbsaRegex findFirstMatchIn l} - yield (m.group("name"), m.group("pop").toInt.asInstanceOf[Integer]) - fields.foreach(this.add) - s.close() - */ } diff --git a/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala b/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala index d01e1818..172366e0 100644 --- a/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala +++ b/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala @@ -21,12 +21,7 @@ object UserProperties { "lastName" -> RandomLastNameGenerator.randomThing, "firstName" -> firstNameAndGender._1, "gender" -> firstNameAndGender._2, - "registration" -> registrationTime.toInstant(ZoneOffset.UTC).toEpochMilli, - "zip" -> location._1, - "city" -> location._2, - "state" -> location._3, - "lat" -> location._4, - "lon" -> location._5 + "registration" -> registrationTime.toInstant(ZoneOffset.UTC).toEpochMilli ) } From 1bb18e3df0c9172f352cb96374d259e86b50c504 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Wed, 23 Sep 2015 12:56:12 -0700 Subject: [PATCH 07/14] Corrected issue with rate of continuous mode --- README.md | 60 ++++++++++--------- .../scala/com/interana/eventsim/Main.scala | 2 +- .../interana/eventsim/Output/AvroWriter.scala | 8 ++- .../buildin/RandomLocationGenerator.scala | 2 - 4 files changed, 38 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 35c2e3ce..c76b7169 100644 --- a/README.md +++ b/README.md @@ -118,34 +118,38 @@ To build the executable, run The program can accept a number of command line options: $ bin/eventsim --help - -a, --attrition-rate annual user attrition rate (as a fraction of - current, so 1% => 0.01) (default = 0.0) - -c, --config config file - --continuous continuous output - --nocontinuous run all at once - -e, --end-time end time for data - (default = 2015-08-12T14:56:25.006) - -f, --from from x days ago (default = 15) - --generate-counts generate listen counts file then stop - --nogenerate-counts run normally - --generate-similars generate similar song file then stop - --nogenerate-similars run normally - -g, --growth-rate annual user growth rate (as a fraction of - current, so 1% => 0.01) (default = 0.0) - --kafkaBrokerList kafka broker list - -k, --kafkaTopic kafka topic - -n, --nusers initial number of users (default = 1) - -r, --randomseed random seed - -s, --start-time start time for data - (default = 2015-08-05T14:56:25.040) - --tag tag applied to each line (for example, A/B test - group) - -t, --to to y days ago (default = 1) - -u, --userid first user id (default = 1) - --help Show help message - - trailing arguments: - output-file (not required) File name + -a, --attrition-rate annual user attrition rate (as a fraction of + current, so 1% => 0.01) (default = 0.0) + -c, --config config file + --continuous continuous output + --nocontinuous run all at once + -e, --end-time end time for data + (default = 2015-09-06T21:33:47.149) + -f, --from from x days ago (default = 15) + --generate-counts generate listen counts file then stop + --nogenerate-counts run normally + --generate-similars generate similar song file then stop + --nogenerate-similars run normally + -g, --growth-rate annual user growth rate (as a fraction of + current, so 1% => 0.01) (default = 0.0) + --kafkaBrokerList kafka broker list + -k, --kafkaTopic kafka topic + -n, --nusers initial number of users (default = 1) + -r, --randomseed random seed + -s, --start-time start time for data + (default = 2015-08-30T21:33:47.196) + --tag tag applied to each line (for example, A/B test + group) + -t, --to to y days ago (default = 1) + --useAvro output data as Avro + --nouseAvro output data as JSON + -u, --userid first user id (default = 1) + -v, --verbose verbose output (not implemented yet) + --noverbose silent mode + --help Show help message + + trailing arguments: + output-file (not required) File name Only the config file is required. diff --git a/src/main/scala/com/interana/eventsim/Main.scala b/src/main/scala/com/interana/eventsim/Main.scala index 65fd0651..3a23e00e 100644 --- a/src/main/scala/com/interana/eventsim/Main.scala +++ b/src/main/scala/com/interana/eventsim/Main.scala @@ -203,7 +203,7 @@ object Main extends App { val now = LocalDateTime.now() val dif = Duration.between(clock, now) if (dif.isNegative) - Thread.sleep(-dif.getSeconds) + Thread.sleep(dif.abs.toMillis()) } showProgress(clock, users.length, events) diff --git a/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala b/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala index 5bb5ab8f..0da29062 100644 --- a/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala +++ b/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala @@ -25,7 +25,11 @@ class AvroWriter(val stream: OutputStream) extends Object with EventWriter { def setArtist(s: String) = songBuilder.setArtist(s) def setTitle(s: String) = songBuilder.setTitle(s) def setDuration(d: Float) = songBuilder.setDuration(d) - def setUserDetails(m: Map[String,Any]) = eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + def setUserDetails(m: Map[String,Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = + eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) def start() = { eventBuilder = Event.newBuilder(eventBuilder) @@ -37,6 +41,4 @@ class AvroWriter(val stream: OutputStream) extends Object with EventWriter { dataFileWriter.append(e) } - def setDeviceDetails(m: Map[String, Any]): Unit = - eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) } diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala b/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala index 8d7afa5c..08a00a58 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala +++ b/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala @@ -39,7 +39,6 @@ object RandomLocationGenerator extends WeightedRandomThingGenerator[(String, Str val zip = e(1) val city = e(2) val state = e(4) - // System.err.println("adding " + zip + " -> " + city + ", " + state) zip -> (city, state) })(collection.breakOut) @@ -51,7 +50,6 @@ object RandomLocationGenerator extends WeightedRandomThingGenerator[(String, Str val lon = e(8).toDouble if (nameMap.contains(zip)) { val (city, state) = nameMap(zip) - // System.err.println("adding " + zip + ", " + city + ", " + state + ", " + lat + ", " + lon + ", " + pop) this.add((zip, city, state, lat, lon), pop) } } From bd26309cdb57f77ef0f300031b0ce8dba53e2f83 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Wed, 13 Jan 2016 14:51:10 -0800 Subject: [PATCH 08/14] Restructured output code to support multiple streams --- bin/eventsim | 2 +- build.sbt | 22 ++- examples/example-config.json | 10 +- project/assembly.sbt | 2 +- src/main/avro/Auth.avsc | 17 ++ src/main/avro/{event.avsc => Listen.avsc} | 12 +- src/main/avro/PageView.avsc | 21 +++ src/main/avro/StatusChange.avsc | 18 ++ .../interana/eventsim/KafkaOutputStream.scala | 23 --- .../scala/com/interana/eventsim/Main.scala | 33 +--- .../scala/com/interana/eventsim/Output.scala | 171 ++++++++++++++++++ .../interana/eventsim/Output/AvroWriter.scala | 44 ----- .../scala/com/interana/eventsim/Session.scala | 3 + .../scala/com/interana/eventsim/User.scala | 33 +--- .../eventsim/config/ConfigFromFile.scala | 1 + .../events/Auth/AvroConstructor.scala | 13 ++ .../eventsim/events/Auth/Constructor.scala | 6 + .../events/Auth/JSONConstructor.scala | 5 + .../eventsim/events/AvroConstructor.scala | 26 +++ .../interana/eventsim/events/Builder.scala | 31 ++++ .../Constructor.scala} | 16 +- .../JSONConstructor.scala} | 26 ++- .../events/Listen/AvroConstructor.scala | 24 +++ .../eventsim/events/Listen/Constructor.scala | 9 + .../events/Listen/JSONConstructor.scala | 8 + .../events/PageView/AvroConstructor.scala | 28 +++ .../events/PageView/Constructor.scala | 11 ++ .../events/PageView/JSONConstructor.scala | 11 ++ .../events/StatusChange/AvroConstructor.scala | 15 ++ .../events/StatusChange/Constructor.scala | 7 + .../events/StatusChange/JSONConstructor.scala | 6 + .../interana/eventsim/events/target/.history | 2 + .../streams/$global/clean/$global/streams/out | 0 .../ivyConfiguration/$global/streams/out | 3 + .../$global/ivySbt/$global/streams/out | 0 .../projectDescriptors/$global/streams/out | 0 36 files changed, 490 insertions(+), 169 deletions(-) create mode 100644 src/main/avro/Auth.avsc rename src/main/avro/{event.avsc => Listen.avsc} (76%) create mode 100644 src/main/avro/PageView.avsc create mode 100644 src/main/avro/StatusChange.avsc delete mode 100644 src/main/scala/com/interana/eventsim/KafkaOutputStream.scala create mode 100644 src/main/scala/com/interana/eventsim/Output.scala delete mode 100644 src/main/scala/com/interana/eventsim/Output/AvroWriter.scala create mode 100644 src/main/scala/com/interana/eventsim/events/Auth/AvroConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/Auth/Constructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/Auth/JSONConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/AvroConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/Builder.scala rename src/main/scala/com/interana/eventsim/{Output/EventWriter.scala => events/Constructor.scala} (50%) rename src/main/scala/com/interana/eventsim/{Output/JSONWriter.scala => events/JSONConstructor.scala} (66%) create mode 100644 src/main/scala/com/interana/eventsim/events/Listen/AvroConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/Listen/Constructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/Listen/JSONConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/PageView/AvroConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/PageView/Constructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/PageView/JSONConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/StatusChange/AvroConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/StatusChange/Constructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/StatusChange/JSONConstructor.scala create mode 100644 src/main/scala/com/interana/eventsim/events/target/.history create mode 100644 src/main/scala/com/interana/eventsim/events/target/streams/$global/clean/$global/streams/out create mode 100644 src/main/scala/com/interana/eventsim/events/target/streams/$global/ivyConfiguration/$global/streams/out create mode 100644 src/main/scala/com/interana/eventsim/events/target/streams/$global/ivySbt/$global/streams/out create mode 100644 src/main/scala/com/interana/eventsim/events/target/streams/$global/projectDescriptors/$global/streams/out diff --git a/bin/eventsim b/bin/eventsim index 556eaa58..95bb8421 100755 --- a/bin/eventsim +++ b/bin/eventsim @@ -1,2 +1,2 @@ #! /bin/bash -java -XX:+AggressiveOpts -XX:+UseG1GC -XX:+UseStringDeduplication -Xmx8G -jar target/scala-2.10/eventsim-assembly-1.0.jar $* +java -XX:+AggressiveOpts -XX:+UseG1GC -XX:+UseStringDeduplication -Xmx8G -jar target/scala-2.11/eventsim-assembly-2.0.jar $* diff --git a/build.sbt b/build.sbt index 3065b22b..a69527a3 100644 --- a/build.sbt +++ b/build.sbt @@ -1,19 +1,27 @@ name := "eventsim" -version := "1.0" +version := "2.0" -libraryDependencies += "org.apache.commons" % "commons-math3" % "3.5" +scalaVersion := "2.11.6" + +resolvers += Resolver.url("confluent", url("http://packages.confluent.io/maven")) + +libraryDependencies += "org.apache.avro" % "avro" % "1.7.7" + +libraryDependencies += "org.apache.commons" % "commons-math3" % "3.6" libraryDependencies += "de.jollyday" % "jollyday" % "0.5.1" -libraryDependencies += "org.rogach" %% "scallop" % "0.9.5" +libraryDependencies += "org.rogach" % "scallop_2.11" % "0.9.5" -libraryDependencies += "com.fasterxml.jackson.core" % "jackson-core" % "2.6.1" +libraryDependencies += "com.fasterxml.jackson.core" % "jackson-core" % "2.7.0" -libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.6.1" +libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.7.0" -libraryDependencies += "org.apache.kafka" % "kafka_2.10" % "0.8.2.1" +libraryDependencies += "org.apache.kafka" % "kafka-clients" % "0.9.0.0" -libraryDependencies += "org.apache.avro" % "avro" % "1.7.7" +libraryDependencies += "org.scala-lang.modules" % "scala-parser-combinators_2.11" % "1.0.4" + +libraryDependencies += "io.confluent" % "kafka-avro-serializer" % "2.0.0" seq( sbtavro.SbtAvro.avroSettings : _*) \ No newline at end of file diff --git a/examples/example-config.json b/examples/example-config.json index 1a407c32..ceb8a00f 100644 --- a/examples/example-config.json +++ b/examples/example-config.json @@ -361,7 +361,10 @@ "p":0.001}, {"source":{"page":"Login","method":"PUT","status":307,"auth":"Logged Out","level":"free"}, "dest":{"page":"Home","method":"GET","status":200,"auth":"Logged In","level":"free"}, - "p":0.999}, + "p":0.9}, + {"source":{"page":"Login","method":"PUT","status":307,"auth":"Logged Out","level":"free"}, + "dest":{"page":"Home","method":"GET","status":200,"auth":"Logged Out","level":"free"}, + "p":0.099}, {"source":{"page":"Login","method":"PUT","status":307,"auth":"Logged Out","level":"free"}, "dest":{"page":"Error","method":"GET","status":404,"auth":"Logged Out","level":"free"}, "p":0.001}, @@ -619,7 +622,10 @@ "p":0.001}, {"source":{"page":"Login","method":"PUT","status":307,"auth":"Logged Out","level":"paid"}, "dest":{"page":"Home","method":"GET","status":200,"auth":"Logged In","level":"paid"}, - "p":0.999}, + "p":0.9}, + {"source":{"page":"Login","method":"PUT","status":307,"auth":"Logged Out","level":"paid"}, + "dest":{"page":"Home","method":"GET","status":200,"auth":"Logged Out","level":"paid"}, + "p":0.099}, {"source":{"page":"Login","method":"PUT","status":307,"auth":"Logged Out","level":"paid"}, "dest":{"page":"Error","method":"GET","status":404,"auth":"Logged Out","level":"paid"}, "p":0.001}, diff --git a/project/assembly.sbt b/project/assembly.sbt index 20861f26..7fa83d11 100644 --- a/project/assembly.sbt +++ b/project/assembly.sbt @@ -1 +1 @@ -addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.13.0") \ No newline at end of file +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.1") \ No newline at end of file diff --git a/src/main/avro/Auth.avsc b/src/main/avro/Auth.avsc new file mode 100644 index 00000000..71c8faff --- /dev/null +++ b/src/main/avro/Auth.avsc @@ -0,0 +1,17 @@ +{"namespace" : "io.confluent.eventsim", + "type" : "record", + "name" : "Auth", + "fields" : [ + {"name" : "ts", "type" : "long"}, + {"name" : "userId", "type" : ["null","long"]}, + {"name" : "sessionId", "type" : "long"}, + {"name" : "level", "type" : "string"}, + {"name" : "itemInSession", "type" : "int"}, + {"name" : "userDetails", + "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + {"name" : "deviceDetails", + "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + {"name": "tag", "type" : ["null", "string"]}, + {"name": "success", "type" : "boolean"} + ] +} \ No newline at end of file diff --git a/src/main/avro/event.avsc b/src/main/avro/Listen.avsc similarity index 76% rename from src/main/avro/event.avsc rename to src/main/avro/Listen.avsc index b1d3a498..eee15b48 100644 --- a/src/main/avro/event.avsc +++ b/src/main/avro/Listen.avsc @@ -1,22 +1,18 @@ -{"namespace" : "com.interana.eventsim", +{"namespace" : "io.confluent.eventsim", "type" : "record", - "name" : "Event", + "name" : "Listen", "fields" : [ {"name" : "ts", "type" : "long"}, {"name" : "userId", "type" : ["null","long"]}, {"name" : "sessionId", "type" : "long"}, - {"name" : "page", "type" : "string"}, {"name" : "auth", "type" : "string"}, - {"name" : "method", "type" : "string"}, - {"name" : "status", "type" : "int"}, {"name" : "level", "type" : "string"}, {"name" : "itemInSession", "type" : "int"}, {"name" : "userDetails", "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, {"name" : "deviceDetails", "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, - {"name" : "songProperties", "type" : [ - "null", + {"name" : "songProperties", "type" : { "type": "record", "name": "song", @@ -26,7 +22,7 @@ {"name" : "duration", "type" : "double"} ] } - ]}, + }, {"name": "tag", "type" : ["null", "string"]} ] } \ No newline at end of file diff --git a/src/main/avro/PageView.avsc b/src/main/avro/PageView.avsc new file mode 100644 index 00000000..c39e7aa2 --- /dev/null +++ b/src/main/avro/PageView.avsc @@ -0,0 +1,21 @@ +{"namespace" : "io.confluent.eventsim", + "type" : "record", + "name" : "PageView", + "fields" : [ + {"name" : "ts", "type" : "long"}, + {"name" : "userId", "type" : ["null","long"]}, + {"name" : "sessionId", "type" : "long"}, + {"name" : "page", "type" : "string"}, + {"name" : "auth", "type" : "string"}, + {"name" : "method", "type" : "string"}, + {"name" : "status", "type" : "int"}, + {"name" : "level", "type" : "string"}, + {"name" : "itemInSession", "type" : "int"}, + {"name" : "userDetails", + "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + {"name" : "deviceDetails", + "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + {"name" : "songProperties", "type" : ["null", "song"]}, + {"name": "tag", "type" : ["null", "string"]} + ] +} \ No newline at end of file diff --git a/src/main/avro/StatusChange.avsc b/src/main/avro/StatusChange.avsc new file mode 100644 index 00000000..cfe4cff6 --- /dev/null +++ b/src/main/avro/StatusChange.avsc @@ -0,0 +1,18 @@ +{"namespace" : "io.confluent.eventsim", + "type" : "record", + "name" : "StatusChange", + "fields" : [ + {"name" : "ts", "type" : "long"}, + {"name" : "userId", "type" : ["null","long"]}, + {"name" : "sessionId", "type" : "long"}, + {"name" : "auth", "type" : "string"}, + {"name" : "method", "type" : "string"}, + {"name" : "level", "type" : "string"}, + {"name" : "itemInSession", "type" : "int"}, + {"name" : "userDetails", + "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + {"name" : "deviceDetails", + "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + {"name": "tag", "type" : ["null", "string"]} + ] +} \ No newline at end of file diff --git a/src/main/scala/com/interana/eventsim/KafkaOutputStream.scala b/src/main/scala/com/interana/eventsim/KafkaOutputStream.scala deleted file mode 100644 index 85bbdaf6..00000000 --- a/src/main/scala/com/interana/eventsim/KafkaOutputStream.scala +++ /dev/null @@ -1,23 +0,0 @@ -package com.interana.eventsim - -import java.io.OutputStream - -import kafka.producer.{KeyedMessage, Producer} - -import scala.collection.mutable.ArrayBuffer - -class KafkaOutputStream(val producer: Producer[Array[Byte],Array[Byte]], val topic: String) extends OutputStream { - - val buffer = new ArrayBuffer[Byte](4096) - - override def write(i: Int) = { - buffer.append(i.toByte) - } - - override def flush() = { - val msg = new KeyedMessage[Array[Byte], Array[Byte]](topic, buffer.toArray[Byte] ) - producer.send(msg) - buffer.clear() - } - -} diff --git a/src/main/scala/com/interana/eventsim/Main.scala b/src/main/scala/com/interana/eventsim/Main.scala index 3a23e00e..6c97886a 100644 --- a/src/main/scala/com/interana/eventsim/Main.scala +++ b/src/main/scala/com/interana/eventsim/Main.scala @@ -1,14 +1,11 @@ package com.interana.eventsim -import java.io.FileOutputStream import java.time.temporal.ChronoUnit import java.time.{Duration, LocalDateTime, ZoneOffset} -import java.util.Properties import com.interana.eventsim.Utilities.{SimilarSongParser, TrackListenCount} import com.interana.eventsim.buildin.{DeviceProperties, UserProperties} import com.interana.eventsim.config.ConfigFromFile -import kafka.producer.{Producer, ProducerConfig} import org.rogach.scallop.{ScallopOption, ScallopConf} import scala.collection.mutable @@ -61,10 +58,8 @@ object Main extends App { val verbose = toggle("verbose", default = Some(false), descrYes = "verbose output (not implemented yet)", descrNo = "silent mode") - val outputFile: ScallopOption[String] = trailArg[String]("output-file", required = false, descr = "File name") - val kafkaTopic: ScallopOption[String] = - opt[String]("kafkaTopic", descr = "kafka topic", required = false) + val outputDir: ScallopOption[String] = trailArg[String]("output-dir", required = false, descr = "Directory for output files") val kafkaBrokerList: ScallopOption[String] = opt[String]("kafkaBrokerList", descr = "kafka broker list", required = false) @@ -119,27 +114,12 @@ object Main extends App { else ConfigFromFile.growthRate - val kafkaProducer = if (ConfFromOptions.kafkaBrokerList.isDefined) { - val kafkaProperties = new Properties() - kafkaProperties.setProperty("metadata.broker.list", ConfFromOptions.kafkaBrokerList.get.get) - val producerConfig = new ProducerConfig(kafkaProperties) - new Some(new Producer[Array[Byte],Array[Byte]](producerConfig)) - } else None - val realTime = ConfFromOptions.realTime.get.get val useAvro = ConfFromOptions.useAvro.get.get def generateEvents() = { - val out = if (kafkaProducer.nonEmpty) { - new KafkaOutputStream(kafkaProducer.get, ConfFromOptions.kafkaTopic.get.get) - } else if (ConfFromOptions.outputFile.isSupplied) { - new FileOutputStream(ConfFromOptions.outputFile()) - } else { - System.out - } - (0 until nUsers).foreach((_) => users += new User( ConfigFromFile.alpha * logNormalRandomValue, @@ -149,8 +129,7 @@ object Main extends App { ConfigFromFile.authGenerator.randomThing, UserProperties.randomProps, DeviceProperties.randomProps, - ConfigFromFile.levelGenerator.randomThing, - out + ConfigFromFile.levelGenerator.randomThing )) val growthRate = ConfigFromFile.growthRate.getOrElse(ConfFromOptions.growthRate.get.get) @@ -167,8 +146,7 @@ object Main extends App { ConfigFromFile.newUserAuth, UserProperties.randomNewProps(current), DeviceProperties.randomProps, - ConfigFromFile.newUserLevel, - out + ConfigFromFile.newUserLevel ) nUsers += 1 } @@ -212,7 +190,7 @@ object Main extends App { (endTime.toEpochSecond(ZoneOffset.UTC) - startTime.toEpochSecond(ZoneOffset.UTC) / Constants.SECONDS_PER_YEAR) clock = u.session.nextEventTimeStamp.get - if (clock.isAfter(startTime)) u.writeEvent() + if (clock.isAfter(startTime)) Output.writeEvents(u.session, u.device, u.userId, u.props) u.nextEvent(prAttrition) users += u events += 1 @@ -221,8 +199,7 @@ object Main extends App { System.err.println("") System.err.println() - out.flush() - out.close() + Output.flushAndClose() } diff --git a/src/main/scala/com/interana/eventsim/Output.scala b/src/main/scala/com/interana/eventsim/Output.scala new file mode 100644 index 00000000..d973db47 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/Output.scala @@ -0,0 +1,171 @@ +package com.interana.eventsim + +import java.io.{FileOutputStream, File} +import java.time.ZoneOffset +import java.util.Properties + +import com.interana.eventsim.config.ConfigFromFile +import com.interana.eventsim.events.{JSONConstructor, Constructor} +import org.apache.kafka.clients.producer.{ProducerRecord, KafkaProducer} + +/** + * Created by jadler on 1/13/16. + */ +object Output { + // place to put all the output related code + + trait canwrite { + def write() + def flushAndClose() + } + + private class FileEventWriter(val constructor: Constructor, val file: File) extends Object with canwrite { + val out = new FileOutputStream(file) + def write() = out.write(constructor.end().asInstanceOf[Array[Byte]]) + + override def flushAndClose(): Unit = {out.flush(); out.close()} + } + + private class KafkaEventWriter(val constructor: Constructor, val topic: String, val brokers: String) extends Object with canwrite { + + val props = new Properties() + props.put("key.serializer.class", "org.apache.kafka.common.serialization.ByteArraySerializer") + props.put("value.serializer.class", + if (constructor.isInstanceOf[JSONConstructor]) "org.apache.kafka.common.serialization.StringSerializer" + else "io.confluent.kafka.serializers.KafkaAvroSerializer") + props.put("metadata.broker.list", brokers) + + + val producer = new KafkaProducer[Object, Object](props) + + def write() = { + val value = constructor.end() + val pr = new ProducerRecord[Object, Object](topic, value) + producer.send(pr) + } + + override def flushAndClose(): Unit = {producer.flush(); producer.close();} + } + + val authConstructor: com.interana.eventsim.events.Auth.Constructor = + if (Main.useAvro) new com.interana.eventsim.events.Auth.AvroConstructor() + else new com.interana.eventsim.events.Auth.JSONConstructor() + + val listenConstructor: com.interana.eventsim.events.Listen.Constructor = + if (Main.useAvro) new com.interana.eventsim.events.Listen.AvroConstructor() + else new com.interana.eventsim.events.Listen.JSONConstructor() + + val pageViewConstructor: com.interana.eventsim.events.PageView.Constructor = + if (Main.useAvro) new com.interana.eventsim.events.PageView.AvroConstructor() + else new com.interana.eventsim.events.PageView.JSONConstructor() + + val statusChangeConstructor: com.interana.eventsim.events.StatusChange.Constructor = + if (Main.useAvro) new com.interana.eventsim.events.StatusChange.AvroConstructor() + else new com.interana.eventsim.events.StatusChange.JSONConstructor() + + val kbl = Main.ConfFromOptions.kafkaBrokerList + val dirName = new File(if (Main.ConfFromOptions.outputDir.isSupplied) Main.ConfFromOptions.outputDir.get.get else "output") + + if (!dirName.exists()) + dirName.mkdir() + + val authEventWriter = + if (kbl.isSupplied) new KafkaEventWriter(authConstructor, "auth_events", kbl.get.get) + else new FileEventWriter(authConstructor, new File(dirName, "auth_events")) + val listenEventWriter = + if (kbl.isSupplied) new KafkaEventWriter(listenConstructor, "listen_events", kbl.get.get) + else new FileEventWriter(listenConstructor, new File(dirName, "listen_events")) + val pageViewEventWriter = + if (kbl.isSupplied) new KafkaEventWriter(pageViewConstructor, "page_view_events", kbl.get.get) + else new FileEventWriter(pageViewConstructor, new File(dirName, "page_view_events")) + val statusChangeEventWriter = + if (kbl.isSupplied) new KafkaEventWriter(statusChangeConstructor, "status_change_events", kbl.get.get) + else new FileEventWriter(statusChangeConstructor, new File(dirName, "status_change_events")) + + def flushAndClose(): Unit = { + authEventWriter.flushAndClose() + listenEventWriter.flushAndClose() + pageViewEventWriter.flushAndClose() + statusChangeEventWriter.flushAndClose() + } + + def writeEvents(session: Session, device: scala.collection.immutable.Map[String,Any], userId: Int, props: Map[String,Any]) = { + + val showUserDetails = ConfigFromFile.showUserWithState(session.currentState.auth) + pageViewConstructor.start + pageViewConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) + pageViewConstructor.setSessionId( session.sessionId) + pageViewConstructor.setPage(session.currentState.page) + pageViewConstructor.setAuth(session.currentState.auth) + pageViewConstructor.setMethod(session.currentState.method) + pageViewConstructor.setStatus(session.currentState.status) + pageViewConstructor.setLevel(session.currentState.level) + pageViewConstructor.setItemInSession(session.itemInSession) + pageViewConstructor.setDeviceDetails(device) + if (showUserDetails) { + pageViewConstructor.setUserId(userId) + pageViewConstructor.setUserDetails(props) + if (Main.tag.isDefined) + pageViewConstructor.setTag(Main.tag.get) + } + + if (session.currentState.page=="NextSong") { + pageViewConstructor.setArtist(session.currentSong.get._2) + pageViewConstructor.setTitle(session.currentSong.get._3) + pageViewConstructor.setDuration(session.currentSong.get._4) + listenConstructor.start() + listenConstructor.setArtist(session.currentSong.get._2) + listenConstructor.setTitle(session.currentSong.get._3) + listenConstructor.setDuration(session.currentSong.get._4) + listenConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) + listenConstructor.setSessionId( session.sessionId) + listenConstructor.setAuth(session.currentState.auth) + listenConstructor.setLevel(session.currentState.level) + listenConstructor.setItemInSession(session.itemInSession) + listenConstructor.setDeviceDetails(device) + if (showUserDetails) { + listenConstructor.setUserId(userId) + listenConstructor.setUserDetails(props) + if (Main.tag.isDefined) + listenConstructor.setTag(Main.tag.get) + } + listenEventWriter.write + } + + if (session.currentState.page=="Submit Downgrade" || session.currentState.page=="Submit Upgrade") { + statusChangeConstructor.start() + statusChangeConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) + statusChangeConstructor.setSessionId( session.sessionId) + statusChangeConstructor.setAuth(session.currentState.auth) + statusChangeConstructor.setLevel(session.currentState.level) + statusChangeConstructor.setItemInSession(session.itemInSession) + statusChangeConstructor.setDeviceDetails(device) + if (showUserDetails) { + statusChangeConstructor.setUserId(userId) + statusChangeConstructor.setUserDetails(props) + if (Main.tag.isDefined) + statusChangeConstructor.setTag(Main.tag.get) + } + statusChangeEventWriter.write + } + + if (session.previousState.isDefined && session.previousState.get.page=="Login") { + authConstructor.start() + authConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) + authConstructor.setSessionId( session.sessionId) + authConstructor.setLevel(session.currentState.level) + authConstructor.setItemInSession(session.itemInSession) + authConstructor.setDeviceDetails(device) + if (showUserDetails) { + authConstructor.setUserId(userId) + authConstructor.setUserDetails(props) + if (Main.tag.isDefined) + authConstructor.setTag(Main.tag.get) + } + authConstructor.setSuccess(session.currentState.auth == "Logged In") + authEventWriter.write + } + + pageViewEventWriter.write + } +} diff --git a/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala b/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala deleted file mode 100644 index 0da29062..00000000 --- a/src/main/scala/com/interana/eventsim/Output/AvroWriter.scala +++ /dev/null @@ -1,44 +0,0 @@ -package com.interana.eventsim.Output - -import java.io.OutputStream - -import com.interana.eventsim.{song, Event} -import org.apache.avro.file.DataFileWriter -import org.apache.avro.io.EncoderFactory -import org.apache.avro.specific.SpecificDatumWriter - -class AvroWriter(val stream: OutputStream) extends Object with EventWriter { - val encoder = EncoderFactory.get().binaryEncoder(stream, null) - val datumWriter = new SpecificDatumWriter[Event](Event.getClassSchema) - val dataFileWriter = new DataFileWriter[Event](datumWriter) - var eventBuilder = Event.newBuilder() - var songBuilder = song.newBuilder() - def setTs(n: Long) = eventBuilder.setTs(n) - def setUserId(n: Long) = eventBuilder.setUserId(n) - def setSessionId(n: Long) = eventBuilder.setSessionId(n) - def setPage(s: String) = eventBuilder.setPage(s) - def setAuth(s: String) = eventBuilder.setAuth(s) - def setMethod(s: String) = eventBuilder.setMethod(s) - def setStatus(i: Int) = eventBuilder.setStatus(i) - def setLevel(s: String) = eventBuilder.setLevel(s) - def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) - def setArtist(s: String) = songBuilder.setArtist(s) - def setTitle(s: String) = songBuilder.setTitle(s) - def setDuration(d: Float) = songBuilder.setDuration(d) - def setUserDetails(m: Map[String,Any]): Unit = - eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) - def setDeviceDetails(m: Map[String, Any]): Unit = - eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) - - def setTag(s: String) = eventBuilder.setTag(s) - def start() = { - eventBuilder = Event.newBuilder(eventBuilder) - songBuilder = song.newBuilder(songBuilder) - } - def end() = { - eventBuilder.setSongProperties(songBuilder.build()) - val e = eventBuilder.build() - dataFileWriter.append(e) - } - -} diff --git a/src/main/scala/com/interana/eventsim/Session.scala b/src/main/scala/com/interana/eventsim/Session.scala index 3e424af5..b4328cd1 100644 --- a/src/main/scala/com/interana/eventsim/Session.scala +++ b/src/main/scala/com/interana/eventsim/Session.scala @@ -20,6 +20,7 @@ class Session(var nextEventTimeStamp: Option[LocalDateTime], var itemInSession = 0 var done = false var currentState:State = initialStates((auth, level)).randomThing + var previousState:Option[State] = None var currentSong:Option[(String,String,String,Float)] = if (currentState.page=="NextSong") Some(RandomSongGenerator.nextSong()) else None var currentSongEnd:Option[LocalDateTime] = @@ -47,11 +48,13 @@ class Session(var nextEventTimeStamp: Option[LocalDateTime], currentSong = Some(RandomSongGenerator.nextSong(currentSong.get._1)) } currentSongEnd = Some(nextEventTimeStamp.get.plusSeconds(currentSong.get._4.toInt)) + previousState = Some(currentState) currentState = nextState.get itemInSession += 1 case _ => nextEventTimeStamp=Some(nextEventTimeStamp.get.plusSeconds(exponentialRandomValue(alpha).toInt)) + previousState = Some(currentState) currentState = nextState.get itemInSession += 1 diff --git a/src/main/scala/com/interana/eventsim/User.scala b/src/main/scala/com/interana/eventsim/User.scala index dd3244e0..971a0c19 100644 --- a/src/main/scala/com/interana/eventsim/User.scala +++ b/src/main/scala/com/interana/eventsim/User.scala @@ -2,8 +2,8 @@ package com.interana.eventsim import java.io.{OutputStream, Serializable} import java.time.{ZoneOffset, LocalDateTime} +import java.util -import com.interana.eventsim.Output.{EventWriter, JSONWriter, AvroWriter} import com.interana.eventsim.config.ConfigFromFile class User(val alpha: Double, @@ -13,8 +13,7 @@ class User(val alpha: Double, val auth: String, val props: Map[String,Any], var device: scala.collection.immutable.Map[String,Any], - val initialLevel: String, - val stream: OutputStream + val initialLevel: String ) extends Serializable with Ordered[User] { val userId = Counters.nextUserId @@ -47,34 +46,6 @@ class User(val alpha: Double, } } - val writer: Object with EventWriter = if (Main.useAvro) new AvroWriter(stream) else new JSONWriter(stream) - - def writeEvent() = { - val showUserDetails = ConfigFromFile.showUserWithState(session.currentState.auth) - writer.start - writer.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) - if (showUserDetails) writer.setUserId(userId) - writer.setSessionId( session.sessionId) - writer.setPage(session.currentState.page) - writer.setAuth(session.currentState.auth) - writer.setMethod(session.currentState.method) - writer.setStatus(session.currentState.status) - writer.setLevel(session.currentState.level) - writer.setItemInSession(session.itemInSession) - writer.setDeviceDetails(device) - if (showUserDetails) { - writer.setUserDetails(props) - if (Main.tag.isDefined) - writer.setTag(Main.tag.get) - } - if (session.currentState.page=="NextSong") { - writer.setArtist(session.currentSong.get._2) - writer.setTitle(session.currentSong.get._3) - writer.setDuration(session.currentSong.get._4) - } - writer.end - } - def tsToString(ts: LocalDateTime) = ts.toString() def nextEventTimeStampString = diff --git a/src/main/scala/com/interana/eventsim/config/ConfigFromFile.scala b/src/main/scala/com/interana/eventsim/config/ConfigFromFile.scala index 09d68f78..05cdb0a8 100644 --- a/src/main/scala/com/interana/eventsim/config/ConfigFromFile.scala +++ b/src/main/scala/com/interana/eventsim/config/ConfigFromFile.scala @@ -81,6 +81,7 @@ object ConfigFromFile { val s = Source.fromFile(fn) val rawContents = s.mkString + val jsonContents = (scala.util.parsing.json.JSON.parseFull(rawContents) match { case e: Some[Any] => e.get case _ => throw new Exception("Could not parse the state file") diff --git a/src/main/scala/com/interana/eventsim/events/Auth/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/Auth/AvroConstructor.scala new file mode 100644 index 00000000..2f204ea8 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/Auth/AvroConstructor.scala @@ -0,0 +1,13 @@ +package com.interana.eventsim.events.Auth + +import com.interana.eventsim.events.Builder +import io.confluent.eventsim.Auth + +class AvroConstructor() extends com.interana.eventsim.events.AvroConstructor with Constructor { + override var eventBuilder = Auth.newBuilder().asInstanceOf[Builder] + def setSuccess(boolean: Boolean) = eventBuilder.asInstanceOf[Auth.Builder].setSuccess(boolean) + def start() = { + eventBuilder = Auth.newBuilder(eventBuilder.asInstanceOf[Auth.Builder]).asInstanceOf[Builder] + } + +} diff --git a/src/main/scala/com/interana/eventsim/events/Auth/Constructor.scala b/src/main/scala/com/interana/eventsim/events/Auth/Constructor.scala new file mode 100644 index 00000000..d035ed99 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/Auth/Constructor.scala @@ -0,0 +1,6 @@ +package com.interana.eventsim.events.Auth + + +trait Constructor extends com.interana.eventsim.events.Constructor { + def setSuccess(boolean: Boolean) +} diff --git a/src/main/scala/com/interana/eventsim/events/Auth/JSONConstructor.scala b/src/main/scala/com/interana/eventsim/events/Auth/JSONConstructor.scala new file mode 100644 index 00000000..7ec21414 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/Auth/JSONConstructor.scala @@ -0,0 +1,5 @@ +package com.interana.eventsim.events.Auth + +class JSONConstructor() extends com.interana.eventsim.events.JSONConstructor with Constructor { + def setSuccess(boolean: Boolean) = generator.writeBooleanField("success", boolean) +} diff --git a/src/main/scala/com/interana/eventsim/events/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/AvroConstructor.scala new file mode 100644 index 00000000..76f62afc --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/AvroConstructor.scala @@ -0,0 +1,26 @@ +package com.interana.eventsim.events + +/** + * Created by jadler on 1/13/16. + */ +abstract class AvroConstructor() extends Object with Constructor { + var eventBuilder: Builder + def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) + def setUserDetails(m: Map[String,Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = + eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + + def setTag(s: String) = eventBuilder.setTag(s) + + def start(): Unit + + def end() = { + eventBuilder.build() + } + +} diff --git a/src/main/scala/com/interana/eventsim/events/Builder.scala b/src/main/scala/com/interana/eventsim/events/Builder.scala new file mode 100644 index 00000000..98493187 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/Builder.scala @@ -0,0 +1,31 @@ +package com.interana.eventsim.events + +import java.{lang, util} + +import org.apache.avro.specific.SpecificRecord + +/** + * Created by jadler on 1/13/16. + */ +trait Builder { + // list of common methods used in avro constructors + + def setTs(value: Long): Builder + + def setUserId(value: lang.Long): Builder + + def setSessionId(value: Long): Builder + + def setLevel(value: CharSequence): Builder + + def setItemInSession(value: Int): Builder + + def setUserDetails(value: util.Map[CharSequence, AnyRef]): Builder + + def setDeviceDetails(value: util.Map[CharSequence, AnyRef]): Builder + + def setTag(value: CharSequence): Builder + + def build(): SpecificRecord + +} diff --git a/src/main/scala/com/interana/eventsim/Output/EventWriter.scala b/src/main/scala/com/interana/eventsim/events/Constructor.scala similarity index 50% rename from src/main/scala/com/interana/eventsim/Output/EventWriter.scala rename to src/main/scala/com/interana/eventsim/events/Constructor.scala index 5d4b8d8c..8cc1032f 100644 --- a/src/main/scala/com/interana/eventsim/Output/EventWriter.scala +++ b/src/main/scala/com/interana/eventsim/events/Constructor.scala @@ -1,21 +1,17 @@ -package com.interana.eventsim.Output +package com.interana.eventsim.events -trait EventWriter { +/** + * Created by jadler on 1/13/16. + */ +trait Constructor { def setTs(n: Long) def setUserId(n: Long) def setSessionId(n: Long) - def setPage(s: String) - def setAuth(s: String) - def setMethod(s: String) - def setStatus(i: Int) def setLevel(s: String) def setItemInSession(i: Int) - def setArtist(s: String) - def setTitle(s: String) - def setDuration(d: Float) def setUserDetails(m: Map[String,Any]) def setDeviceDetails(m: Map[String,Any]) def setTag(s: String) def start() - def end() + def end(): Object } diff --git a/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala b/src/main/scala/com/interana/eventsim/events/JSONConstructor.scala similarity index 66% rename from src/main/scala/com/interana/eventsim/Output/JSONWriter.scala rename to src/main/scala/com/interana/eventsim/events/JSONConstructor.scala index a561bfb9..d94c8f8b 100644 --- a/src/main/scala/com/interana/eventsim/Output/JSONWriter.scala +++ b/src/main/scala/com/interana/eventsim/events/JSONConstructor.scala @@ -1,27 +1,22 @@ -package com.interana.eventsim.Output +package com.interana.eventsim.events -import java.io.OutputStream +import java.io.ByteArrayOutputStream -import com.fasterxml.jackson.core.{JsonFactory, JsonEncoding} +import com.fasterxml.jackson.core.{JsonEncoding, JsonFactory} -class JSONWriter(val stream: OutputStream) extends Object with EventWriter { - // use Jackson streaming to maximize efficiency - // (earlier versions used Scala's JSON generators, but they were slow) +/** + * Created by jadler on 1/13/16. + */ +class JSONConstructor extends Object with Constructor { val jsonFactory = new JsonFactory() jsonFactory.setRootValueSeparator("") - val generator = jsonFactory.createGenerator(stream, JsonEncoding.UTF8) + val buffer = new ByteArrayOutputStream() + val generator = jsonFactory.createGenerator(buffer, JsonEncoding.UTF8) def setTs(n: Long) = generator.writeNumberField("ts", n) def setUserId(n: Long) = generator.writeNumberField("userId", n) def setSessionId(n: Long) = generator.writeNumberField("sessionId", n) - def setPage(s: String) = generator.writeStringField("page",s) - def setAuth(s: String) = generator.writeStringField("auth", s) - def setMethod(s: String) = generator.writeStringField("method", s) - def setStatus(i: Int) = generator.writeNumberField("status", i) def setLevel(s: String) = generator.writeStringField("level", s) def setItemInSession(i: Int) = generator.writeNumberField("itemInSession", i) - def setArtist(s: String) = generator.writeStringField("artist", s) - def setTitle(s: String) = generator.writeStringField("song", s) - def setDuration(f: Float) = generator.writeNumberField("duration", f) def setUserDetails(m: Map[String,Any]) = m.foreach((p: (String, Any)) => { p._2 match { @@ -46,5 +41,8 @@ class JSONWriter(val stream: OutputStream) extends Object with EventWriter { generator.writeEndObject() generator.writeRaw('\n') generator.flush() + val ba = buffer.toByteArray + buffer.reset() + ba } } diff --git a/src/main/scala/com/interana/eventsim/events/Listen/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/Listen/AvroConstructor.scala new file mode 100644 index 00000000..db18df6d --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/Listen/AvroConstructor.scala @@ -0,0 +1,24 @@ +package com.interana.eventsim.events.Listen + + +import com.interana.eventsim.events.Builder +import io.confluent.eventsim.{Listen, song} + +class AvroConstructor() extends com.interana.eventsim.events.AvroConstructor with Constructor { + override var eventBuilder = Listen.newBuilder().asInstanceOf[Builder] + var songBuilder = song.newBuilder() + def setAuth(s: String) = eventBuilder.asInstanceOf[Listen].setAuth(s) + def setArtist(s: String) = songBuilder.setArtist(s) + def setTitle(s: String) = songBuilder.setTitle(s) + def setDuration(d: Float) = songBuilder.setDuration(d) + + override def start() = { + eventBuilder = Listen.newBuilder(eventBuilder.asInstanceOf[Listen]).asInstanceOf[Builder] + songBuilder = song.newBuilder(songBuilder) + } + override def end() = { + eventBuilder.asInstanceOf[Listen].setSongProperties(songBuilder.build()) + eventBuilder.build() + } + +} diff --git a/src/main/scala/com/interana/eventsim/events/Listen/Constructor.scala b/src/main/scala/com/interana/eventsim/events/Listen/Constructor.scala new file mode 100644 index 00000000..8a77cb1a --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/Listen/Constructor.scala @@ -0,0 +1,9 @@ +package com.interana.eventsim.events.Listen + + +trait Constructor extends com.interana.eventsim.events.Constructor { + def setAuth(s: String) + def setArtist(s: String) + def setTitle(s: String) + def setDuration(d: Float) +} diff --git a/src/main/scala/com/interana/eventsim/events/Listen/JSONConstructor.scala b/src/main/scala/com/interana/eventsim/events/Listen/JSONConstructor.scala new file mode 100644 index 00000000..1d444e15 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/Listen/JSONConstructor.scala @@ -0,0 +1,8 @@ +package com.interana.eventsim.events.Listen + +class JSONConstructor() extends com.interana.eventsim.events.JSONConstructor with Constructor { + def setAuth(s: String) = generator.writeStringField("auth", s) + def setArtist(s: String) = generator.writeStringField("artist", s) + def setTitle(s: String) = generator.writeStringField("song", s) + def setDuration(f: Float) = generator.writeNumberField("duration", f) +} diff --git a/src/main/scala/com/interana/eventsim/events/PageView/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/PageView/AvroConstructor.scala new file mode 100644 index 00000000..2bf0c8e2 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/PageView/AvroConstructor.scala @@ -0,0 +1,28 @@ +package com.interana.eventsim.events.PageView + + +import com.interana.eventsim.events.Builder +import io.confluent.eventsim.{song, PageView} + +class AvroConstructor() extends com.interana.eventsim.events.AvroConstructor with Constructor { + override var eventBuilder = PageView.newBuilder().asInstanceOf[Builder] + var songBuilder = song.newBuilder() + def setPage(s: String) = eventBuilder.asInstanceOf[PageView].setPage(s) + def setAuth(s: String) = eventBuilder.asInstanceOf[PageView].setAuth(s) + def setMethod(s: String) = eventBuilder.asInstanceOf[PageView].setMethod(s) + def setStatus(i: Int) = eventBuilder.asInstanceOf[PageView].setStatus(i) + def setArtist(s: String) = songBuilder.setArtist(s) + def setTitle(s: String) = songBuilder.setTitle(s) + def setDuration(d: Float) = songBuilder.setDuration(d) + + def start() = { + eventBuilder = PageView.newBuilder(eventBuilder.asInstanceOf[PageView]).asInstanceOf[Builder] + songBuilder = song.newBuilder(songBuilder) + } + + override def end() = { + eventBuilder.asInstanceOf[PageView].setSongProperties(songBuilder.build()) + eventBuilder.build() + } + +} diff --git a/src/main/scala/com/interana/eventsim/events/PageView/Constructor.scala b/src/main/scala/com/interana/eventsim/events/PageView/Constructor.scala new file mode 100644 index 00000000..df1e3337 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/PageView/Constructor.scala @@ -0,0 +1,11 @@ +package com.interana.eventsim.events.PageView + +trait Constructor extends com.interana.eventsim.events.Constructor { + def setPage(s: String) + def setAuth(s: String) + def setMethod(s: String) + def setStatus(i: Int) + def setArtist(s: String) + def setTitle(s: String) + def setDuration(d: Float) +} diff --git a/src/main/scala/com/interana/eventsim/events/PageView/JSONConstructor.scala b/src/main/scala/com/interana/eventsim/events/PageView/JSONConstructor.scala new file mode 100644 index 00000000..7a708484 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/PageView/JSONConstructor.scala @@ -0,0 +1,11 @@ +package com.interana.eventsim.events.PageView + +class JSONConstructor() extends com.interana.eventsim.events.JSONConstructor with Constructor { + def setPage(s: String) = generator.writeStringField("page",s) + def setAuth(s: String) = generator.writeStringField("auth", s) + def setMethod(s: String) = generator.writeStringField("method", s) + def setStatus(i: Int) = generator.writeNumberField("status", i) + def setArtist(s: String) = generator.writeStringField("artist", s) + def setTitle(s: String) = generator.writeStringField("song", s) + def setDuration(f: Float) = generator.writeNumberField("duration", f) +} diff --git a/src/main/scala/com/interana/eventsim/events/StatusChange/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/StatusChange/AvroConstructor.scala new file mode 100644 index 00000000..5894dfd0 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/StatusChange/AvroConstructor.scala @@ -0,0 +1,15 @@ +package com.interana.eventsim.events.StatusChange + + +import com.interana.eventsim.events.Builder +import io.confluent.eventsim.StatusChange + +class AvroConstructor() extends com.interana.eventsim.events.AvroConstructor with Constructor { + override var eventBuilder = StatusChange.newBuilder().asInstanceOf[Builder] + def setAuth(s: String) = eventBuilder.asInstanceOf[StatusChange].setAuth(s) + def setMethod(s: String) = eventBuilder.asInstanceOf[StatusChange].setMethod(s) + def start() = { + eventBuilder = StatusChange.newBuilder(eventBuilder.asInstanceOf[StatusChange]).asInstanceOf[Builder] + } + +} diff --git a/src/main/scala/com/interana/eventsim/events/StatusChange/Constructor.scala b/src/main/scala/com/interana/eventsim/events/StatusChange/Constructor.scala new file mode 100644 index 00000000..65957a07 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/StatusChange/Constructor.scala @@ -0,0 +1,7 @@ +package com.interana.eventsim.events.StatusChange + + +trait Constructor extends com.interana.eventsim.events.Constructor { + def setAuth(s: String) + def setMethod(s: String) +} diff --git a/src/main/scala/com/interana/eventsim/events/StatusChange/JSONConstructor.scala b/src/main/scala/com/interana/eventsim/events/StatusChange/JSONConstructor.scala new file mode 100644 index 00000000..eac200d6 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/StatusChange/JSONConstructor.scala @@ -0,0 +1,6 @@ +package com.interana.eventsim.events.StatusChange + +class JSONConstructor() extends com.interana.eventsim.events.JSONConstructor with Constructor { + def setMethod(s: String) = generator.writeStringField("method", s) + def setAuth(s: String) = generator.writeStringField("auth", s) +} diff --git a/src/main/scala/com/interana/eventsim/events/target/.history b/src/main/scala/com/interana/eventsim/events/target/.history new file mode 100644 index 00000000..d7492fd8 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/target/.history @@ -0,0 +1,2 @@ +help +exit diff --git a/src/main/scala/com/interana/eventsim/events/target/streams/$global/clean/$global/streams/out b/src/main/scala/com/interana/eventsim/events/target/streams/$global/clean/$global/streams/out new file mode 100644 index 00000000..e69de29b diff --git a/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivyConfiguration/$global/streams/out b/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivyConfiguration/$global/streams/out new file mode 100644 index 00000000..2addec75 --- /dev/null +++ b/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivyConfiguration/$global/streams/out @@ -0,0 +1,3 @@ +[debug] Other repositories: +[debug] Default repositories: +[debug] Using inline dependencies specified in Scala. diff --git a/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivySbt/$global/streams/out b/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivySbt/$global/streams/out new file mode 100644 index 00000000..e69de29b diff --git a/src/main/scala/com/interana/eventsim/events/target/streams/$global/projectDescriptors/$global/streams/out b/src/main/scala/com/interana/eventsim/events/target/streams/$global/projectDescriptors/$global/streams/out new file mode 100644 index 00000000..e69de29b From 82ed43b348e7d67f54e723022319fe0511033b13 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Thu, 14 Jan 2016 16:11:38 -0800 Subject: [PATCH 09/14] More cleanup; got Avro serialization working --- README.md | 63 +++++++++---------- src/main/avro/Auth.avsc | 6 +- src/main/avro/Listen.avsc | 6 +- src/main/avro/PageView.avsc | 6 +- src/main/avro/StatusChange.avsc | 7 +-- .../events/Auth/AvroConstructor.scala | 13 ---- .../eventsim/events/Auth/Constructor.scala | 6 -- .../eventsim/events/AvroConstructor.scala | 26 -------- .../events/Listen/AvroConstructor.scala | 24 ------- .../events/PageView/AvroConstructor.scala | 28 --------- .../events/StatusChange/AvroConstructor.scala | 15 ----- .../events/StatusChange/Constructor.scala | 7 --- .../events/StatusChange/JSONConstructor.scala | 6 -- .../interana/eventsim/events/target/.history | 2 - .../streams/$global/clean/$global/streams/out | 0 .../ivyConfiguration/$global/streams/out | 3 - .../$global/ivySbt/$global/streams/out | 0 .../projectDescriptors/$global/streams/out | 0 .../confluent}/eventsim/Constants.scala | 2 +- .../confluent}/eventsim/Counters.scala | 4 +- .../confluent}/eventsim/Main.scala | 10 +-- .../confluent}/eventsim/Output.scala | 58 +++++++++-------- .../confluent}/eventsim/Session.scala | 8 +-- .../confluent}/eventsim/State.scala | 2 +- .../confluent}/eventsim/TimeUtilities.scala | 6 +- .../confluent}/eventsim/User.scala | 11 ++-- .../Utilities/SimilarSongParser.scala | 5 +- .../eventsim/Utilities/TrackListenCount.scala | 5 +- .../WeightedRandomThingGenerator.scala | 2 +- .../eventsim/buildin/DeviceProperties.scala | 3 +- .../eventsim/buildin/GenericGenerator.scala | 4 +- .../buildin/RandomFirstNameGenerator.scala | 4 +- .../buildin/RandomLastNameGenerator.scala | 4 +- .../buildin/RandomLocationGenerator.scala | 4 +- .../buildin/RandomSongGenerator.scala | 10 ++- .../buildin/RandomUserAgentGenerator.scala | 4 +- .../eventsim/buildin/UserProperties.scala | 4 +- .../eventsim/config/ConfigFromFile.scala | 4 +- .../events/Auth/AvroConstructor.scala | 30 +++++++++ .../eventsim/events/Auth/Constructor.scala | 5 ++ .../events/Auth/JSONConstructor.scala | 4 +- .../eventsim/events/AvroConstructor.scala | 28 +++++++++ .../confluent}/eventsim/events/Builder.scala | 6 +- .../eventsim/events/Constructor.scala | 2 +- .../eventsim/events/JSONConstructor.scala | 4 +- .../events/Listen/AvroConstructor.scala | 42 +++++++++++++ .../eventsim/events/Listen/Constructor.scala | 5 +- .../events/Listen/JSONConstructor.scala | 4 +- .../events/PageView/AvroConstructor.scala | 43 +++++++++++++ .../events/PageView/Constructor.scala | 4 +- .../events/PageView/JSONConstructor.scala | 4 +- .../events/StatusChange/AvroConstructor.scala | 33 ++++++++++ .../events/StatusChange/Constructor.scala | 5 ++ .../events/StatusChange/JSONConstructor.scala | 5 ++ 54 files changed, 328 insertions(+), 268 deletions(-) delete mode 100644 src/main/scala/com/interana/eventsim/events/Auth/AvroConstructor.scala delete mode 100644 src/main/scala/com/interana/eventsim/events/Auth/Constructor.scala delete mode 100644 src/main/scala/com/interana/eventsim/events/AvroConstructor.scala delete mode 100644 src/main/scala/com/interana/eventsim/events/Listen/AvroConstructor.scala delete mode 100644 src/main/scala/com/interana/eventsim/events/PageView/AvroConstructor.scala delete mode 100644 src/main/scala/com/interana/eventsim/events/StatusChange/AvroConstructor.scala delete mode 100644 src/main/scala/com/interana/eventsim/events/StatusChange/Constructor.scala delete mode 100644 src/main/scala/com/interana/eventsim/events/StatusChange/JSONConstructor.scala delete mode 100644 src/main/scala/com/interana/eventsim/events/target/.history delete mode 100644 src/main/scala/com/interana/eventsim/events/target/streams/$global/clean/$global/streams/out delete mode 100644 src/main/scala/com/interana/eventsim/events/target/streams/$global/ivyConfiguration/$global/streams/out delete mode 100644 src/main/scala/com/interana/eventsim/events/target/streams/$global/ivySbt/$global/streams/out delete mode 100644 src/main/scala/com/interana/eventsim/events/target/streams/$global/projectDescriptors/$global/streams/out rename src/main/scala/{com/interana => io/confluent}/eventsim/Constants.scala (94%) rename src/main/scala/{com/interana => io/confluent}/eventsim/Counters.scala (79%) rename src/main/scala/{com/interana => io/confluent}/eventsim/Main.scala (96%) rename src/main/scala/{com/interana => io/confluent}/eventsim/Output.scala (73%) rename src/main/scala/{com/interana => io/confluent}/eventsim/Session.scala (95%) rename src/main/scala/{com/interana => io/confluent}/eventsim/State.scala (98%) rename src/main/scala/{com/interana => io/confluent}/eventsim/TimeUtilities.scala (98%) rename src/main/scala/{com/interana => io/confluent}/eventsim/User.scala (82%) rename src/main/scala/{com/interana => io/confluent}/eventsim/Utilities/SimilarSongParser.scala (96%) rename src/main/scala/{com/interana => io/confluent}/eventsim/Utilities/TrackListenCount.scala (96%) rename src/main/scala/{com/interana => io/confluent}/eventsim/WeightedRandomThingGenerator.scala (97%) rename src/main/scala/{com/interana => io/confluent}/eventsim/buildin/DeviceProperties.scala (89%) rename src/main/scala/{com/interana => io/confluent}/eventsim/buildin/GenericGenerator.scala (80%) rename src/main/scala/{com/interana => io/confluent}/eventsim/buildin/RandomFirstNameGenerator.scala (78%) rename src/main/scala/{com/interana => io/confluent}/eventsim/buildin/RandomLastNameGenerator.scala (82%) rename src/main/scala/{com/interana => io/confluent}/eventsim/buildin/RandomLocationGenerator.scala (95%) rename src/main/scala/{com/interana => io/confluent}/eventsim/buildin/RandomSongGenerator.scala (93%) rename src/main/scala/{com/interana => io/confluent}/eventsim/buildin/RandomUserAgentGenerator.scala (82%) rename src/main/scala/{com/interana => io/confluent}/eventsim/buildin/UserProperties.scala (90%) rename src/main/scala/{com/interana => io/confluent}/eventsim/config/ConfigFromFile.scala (98%) create mode 100644 src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala create mode 100644 src/main/scala/io/confluent/eventsim/events/Auth/Constructor.scala rename src/main/scala/{com/interana => io/confluent}/eventsim/events/Auth/JSONConstructor.scala (53%) create mode 100644 src/main/scala/io/confluent/eventsim/events/AvroConstructor.scala rename src/main/scala/{com/interana => io/confluent}/eventsim/events/Builder.scala (73%) rename src/main/scala/{com/interana => io/confluent}/eventsim/events/Constructor.scala (90%) rename src/main/scala/{com/interana => io/confluent}/eventsim/events/JSONConstructor.scala (96%) create mode 100644 src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala rename src/main/scala/{com/interana => io/confluent}/eventsim/events/Listen/Constructor.scala (51%) rename src/main/scala/{com/interana => io/confluent}/eventsim/events/Listen/JSONConstructor.scala (73%) create mode 100644 src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala rename src/main/scala/{com/interana => io/confluent}/eventsim/events/PageView/Constructor.scala (63%) rename src/main/scala/{com/interana => io/confluent}/eventsim/events/PageView/JSONConstructor.scala (82%) create mode 100644 src/main/scala/io/confluent/eventsim/events/StatusChange/AvroConstructor.scala create mode 100644 src/main/scala/io/confluent/eventsim/events/StatusChange/Constructor.scala create mode 100644 src/main/scala/io/confluent/eventsim/events/StatusChange/JSONConstructor.scala diff --git a/README.md b/README.md index c76b7169..821a2a94 100644 --- a/README.md +++ b/README.md @@ -118,38 +118,37 @@ To build the executable, run The program can accept a number of command line options: $ bin/eventsim --help - -a, --attrition-rate annual user attrition rate (as a fraction of - current, so 1% => 0.01) (default = 0.0) - -c, --config config file - --continuous continuous output - --nocontinuous run all at once - -e, --end-time end time for data - (default = 2015-09-06T21:33:47.149) - -f, --from from x days ago (default = 15) - --generate-counts generate listen counts file then stop - --nogenerate-counts run normally - --generate-similars generate similar song file then stop - --nogenerate-similars run normally - -g, --growth-rate annual user growth rate (as a fraction of - current, so 1% => 0.01) (default = 0.0) - --kafkaBrokerList kafka broker list - -k, --kafkaTopic kafka topic - -n, --nusers initial number of users (default = 1) - -r, --randomseed random seed - -s, --start-time start time for data - (default = 2015-08-30T21:33:47.196) - --tag tag applied to each line (for example, A/B test - group) - -t, --to to y days ago (default = 1) - --useAvro output data as Avro - --nouseAvro output data as JSON - -u, --userid first user id (default = 1) - -v, --verbose verbose output (not implemented yet) - --noverbose silent mode - --help Show help message - - trailing arguments: - output-file (not required) File name + -a, --attrition-rate annual user attrition rate (as a fraction of + current, so 1% => 0.01) (default = 0.0) + -c, --config config file + --continuous continuous output + --nocontinuous run all at once + -e, --end-time end time for data + (default = 2016-01-06T15:02:33.785) + -f, --from from x days ago (default = 15) + --generate-counts generate listen counts file then stop + --nogenerate-counts run normally + --generate-similars generate similar song file then stop + --nogenerate-similars run normally + -g, --growth-rate annual user growth rate (as a fraction of + current, so 1% => 0.01) (default = 0.0) + -k, --kafkaBrokerList kafka broker list + -n, --nusers initial number of users (default = 1) + -r, --randomseed random seed + -s, --start-time start time for data + (default = 2015-12-30T15:02:33.839) + --tag tag applied to each line (for example, A/B test + group) + -t, --to to y days ago (default = 1) + --useAvro output data as Avro + --nouseAvro output data as JSON + -u, --userid first user id (default = 1) + -v, --verbose verbose output (not implemented yet) + --noverbose silent mode + --help Show help message + + trailing arguments: + output-dir (not required) Directory for output files Only the config file is required. diff --git a/src/main/avro/Auth.avsc b/src/main/avro/Auth.avsc index 71c8faff..db1d569e 100644 --- a/src/main/avro/Auth.avsc +++ b/src/main/avro/Auth.avsc @@ -1,4 +1,4 @@ -{"namespace" : "io.confluent.eventsim", +{"namespace" : "io.confluent.eventsim.avro", "type" : "record", "name" : "Auth", "fields" : [ @@ -8,9 +8,9 @@ {"name" : "level", "type" : "string"}, {"name" : "itemInSession", "type" : "int"}, {"name" : "userDetails", - "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, {"name" : "deviceDetails", - "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, {"name": "tag", "type" : ["null", "string"]}, {"name": "success", "type" : "boolean"} ] diff --git a/src/main/avro/Listen.avsc b/src/main/avro/Listen.avsc index eee15b48..c77be451 100644 --- a/src/main/avro/Listen.avsc +++ b/src/main/avro/Listen.avsc @@ -1,4 +1,4 @@ -{"namespace" : "io.confluent.eventsim", +{"namespace" : "io.confluent.eventsim.avro", "type" : "record", "name" : "Listen", "fields" : [ @@ -9,9 +9,9 @@ {"name" : "level", "type" : "string"}, {"name" : "itemInSession", "type" : "int"}, {"name" : "userDetails", - "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, {"name" : "deviceDetails", - "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, {"name" : "songProperties", "type" : { "type": "record", diff --git a/src/main/avro/PageView.avsc b/src/main/avro/PageView.avsc index c39e7aa2..309399ea 100644 --- a/src/main/avro/PageView.avsc +++ b/src/main/avro/PageView.avsc @@ -1,4 +1,4 @@ -{"namespace" : "io.confluent.eventsim", +{"namespace" : "io.confluent.eventsim.avro", "type" : "record", "name" : "PageView", "fields" : [ @@ -12,9 +12,9 @@ {"name" : "level", "type" : "string"}, {"name" : "itemInSession", "type" : "int"}, {"name" : "userDetails", - "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, {"name" : "deviceDetails", - "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, {"name" : "songProperties", "type" : ["null", "song"]}, {"name": "tag", "type" : ["null", "string"]} ] diff --git a/src/main/avro/StatusChange.avsc b/src/main/avro/StatusChange.avsc index cfe4cff6..109f3c9e 100644 --- a/src/main/avro/StatusChange.avsc +++ b/src/main/avro/StatusChange.avsc @@ -1,4 +1,4 @@ -{"namespace" : "io.confluent.eventsim", +{"namespace" : "io.confluent.eventsim.avro", "type" : "record", "name" : "StatusChange", "fields" : [ @@ -6,13 +6,12 @@ {"name" : "userId", "type" : ["null","long"]}, {"name" : "sessionId", "type" : "long"}, {"name" : "auth", "type" : "string"}, - {"name" : "method", "type" : "string"}, {"name" : "level", "type" : "string"}, {"name" : "itemInSession", "type" : "int"}, {"name" : "userDetails", - "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, {"name" : "deviceDetails", - "type": [{"type" : "map", "values": ["string", "long"]}, "null"]}, + "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, {"name": "tag", "type" : ["null", "string"]} ] } \ No newline at end of file diff --git a/src/main/scala/com/interana/eventsim/events/Auth/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/Auth/AvroConstructor.scala deleted file mode 100644 index 2f204ea8..00000000 --- a/src/main/scala/com/interana/eventsim/events/Auth/AvroConstructor.scala +++ /dev/null @@ -1,13 +0,0 @@ -package com.interana.eventsim.events.Auth - -import com.interana.eventsim.events.Builder -import io.confluent.eventsim.Auth - -class AvroConstructor() extends com.interana.eventsim.events.AvroConstructor with Constructor { - override var eventBuilder = Auth.newBuilder().asInstanceOf[Builder] - def setSuccess(boolean: Boolean) = eventBuilder.asInstanceOf[Auth.Builder].setSuccess(boolean) - def start() = { - eventBuilder = Auth.newBuilder(eventBuilder.asInstanceOf[Auth.Builder]).asInstanceOf[Builder] - } - -} diff --git a/src/main/scala/com/interana/eventsim/events/Auth/Constructor.scala b/src/main/scala/com/interana/eventsim/events/Auth/Constructor.scala deleted file mode 100644 index d035ed99..00000000 --- a/src/main/scala/com/interana/eventsim/events/Auth/Constructor.scala +++ /dev/null @@ -1,6 +0,0 @@ -package com.interana.eventsim.events.Auth - - -trait Constructor extends com.interana.eventsim.events.Constructor { - def setSuccess(boolean: Boolean) -} diff --git a/src/main/scala/com/interana/eventsim/events/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/AvroConstructor.scala deleted file mode 100644 index 76f62afc..00000000 --- a/src/main/scala/com/interana/eventsim/events/AvroConstructor.scala +++ /dev/null @@ -1,26 +0,0 @@ -package com.interana.eventsim.events - -/** - * Created by jadler on 1/13/16. - */ -abstract class AvroConstructor() extends Object with Constructor { - var eventBuilder: Builder - def setTs(n: Long) = eventBuilder.setTs(n) - def setUserId(n: Long) = eventBuilder.setUserId(n) - def setSessionId(n: Long) = eventBuilder.setSessionId(n) - def setLevel(s: String) = eventBuilder.setLevel(s) - def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) - def setUserDetails(m: Map[String,Any]): Unit = - eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) - def setDeviceDetails(m: Map[String, Any]): Unit = - eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) - - def setTag(s: String) = eventBuilder.setTag(s) - - def start(): Unit - - def end() = { - eventBuilder.build() - } - -} diff --git a/src/main/scala/com/interana/eventsim/events/Listen/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/Listen/AvroConstructor.scala deleted file mode 100644 index db18df6d..00000000 --- a/src/main/scala/com/interana/eventsim/events/Listen/AvroConstructor.scala +++ /dev/null @@ -1,24 +0,0 @@ -package com.interana.eventsim.events.Listen - - -import com.interana.eventsim.events.Builder -import io.confluent.eventsim.{Listen, song} - -class AvroConstructor() extends com.interana.eventsim.events.AvroConstructor with Constructor { - override var eventBuilder = Listen.newBuilder().asInstanceOf[Builder] - var songBuilder = song.newBuilder() - def setAuth(s: String) = eventBuilder.asInstanceOf[Listen].setAuth(s) - def setArtist(s: String) = songBuilder.setArtist(s) - def setTitle(s: String) = songBuilder.setTitle(s) - def setDuration(d: Float) = songBuilder.setDuration(d) - - override def start() = { - eventBuilder = Listen.newBuilder(eventBuilder.asInstanceOf[Listen]).asInstanceOf[Builder] - songBuilder = song.newBuilder(songBuilder) - } - override def end() = { - eventBuilder.asInstanceOf[Listen].setSongProperties(songBuilder.build()) - eventBuilder.build() - } - -} diff --git a/src/main/scala/com/interana/eventsim/events/PageView/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/PageView/AvroConstructor.scala deleted file mode 100644 index 2bf0c8e2..00000000 --- a/src/main/scala/com/interana/eventsim/events/PageView/AvroConstructor.scala +++ /dev/null @@ -1,28 +0,0 @@ -package com.interana.eventsim.events.PageView - - -import com.interana.eventsim.events.Builder -import io.confluent.eventsim.{song, PageView} - -class AvroConstructor() extends com.interana.eventsim.events.AvroConstructor with Constructor { - override var eventBuilder = PageView.newBuilder().asInstanceOf[Builder] - var songBuilder = song.newBuilder() - def setPage(s: String) = eventBuilder.asInstanceOf[PageView].setPage(s) - def setAuth(s: String) = eventBuilder.asInstanceOf[PageView].setAuth(s) - def setMethod(s: String) = eventBuilder.asInstanceOf[PageView].setMethod(s) - def setStatus(i: Int) = eventBuilder.asInstanceOf[PageView].setStatus(i) - def setArtist(s: String) = songBuilder.setArtist(s) - def setTitle(s: String) = songBuilder.setTitle(s) - def setDuration(d: Float) = songBuilder.setDuration(d) - - def start() = { - eventBuilder = PageView.newBuilder(eventBuilder.asInstanceOf[PageView]).asInstanceOf[Builder] - songBuilder = song.newBuilder(songBuilder) - } - - override def end() = { - eventBuilder.asInstanceOf[PageView].setSongProperties(songBuilder.build()) - eventBuilder.build() - } - -} diff --git a/src/main/scala/com/interana/eventsim/events/StatusChange/AvroConstructor.scala b/src/main/scala/com/interana/eventsim/events/StatusChange/AvroConstructor.scala deleted file mode 100644 index 5894dfd0..00000000 --- a/src/main/scala/com/interana/eventsim/events/StatusChange/AvroConstructor.scala +++ /dev/null @@ -1,15 +0,0 @@ -package com.interana.eventsim.events.StatusChange - - -import com.interana.eventsim.events.Builder -import io.confluent.eventsim.StatusChange - -class AvroConstructor() extends com.interana.eventsim.events.AvroConstructor with Constructor { - override var eventBuilder = StatusChange.newBuilder().asInstanceOf[Builder] - def setAuth(s: String) = eventBuilder.asInstanceOf[StatusChange].setAuth(s) - def setMethod(s: String) = eventBuilder.asInstanceOf[StatusChange].setMethod(s) - def start() = { - eventBuilder = StatusChange.newBuilder(eventBuilder.asInstanceOf[StatusChange]).asInstanceOf[Builder] - } - -} diff --git a/src/main/scala/com/interana/eventsim/events/StatusChange/Constructor.scala b/src/main/scala/com/interana/eventsim/events/StatusChange/Constructor.scala deleted file mode 100644 index 65957a07..00000000 --- a/src/main/scala/com/interana/eventsim/events/StatusChange/Constructor.scala +++ /dev/null @@ -1,7 +0,0 @@ -package com.interana.eventsim.events.StatusChange - - -trait Constructor extends com.interana.eventsim.events.Constructor { - def setAuth(s: String) - def setMethod(s: String) -} diff --git a/src/main/scala/com/interana/eventsim/events/StatusChange/JSONConstructor.scala b/src/main/scala/com/interana/eventsim/events/StatusChange/JSONConstructor.scala deleted file mode 100644 index eac200d6..00000000 --- a/src/main/scala/com/interana/eventsim/events/StatusChange/JSONConstructor.scala +++ /dev/null @@ -1,6 +0,0 @@ -package com.interana.eventsim.events.StatusChange - -class JSONConstructor() extends com.interana.eventsim.events.JSONConstructor with Constructor { - def setMethod(s: String) = generator.writeStringField("method", s) - def setAuth(s: String) = generator.writeStringField("auth", s) -} diff --git a/src/main/scala/com/interana/eventsim/events/target/.history b/src/main/scala/com/interana/eventsim/events/target/.history deleted file mode 100644 index d7492fd8..00000000 --- a/src/main/scala/com/interana/eventsim/events/target/.history +++ /dev/null @@ -1,2 +0,0 @@ -help -exit diff --git a/src/main/scala/com/interana/eventsim/events/target/streams/$global/clean/$global/streams/out b/src/main/scala/com/interana/eventsim/events/target/streams/$global/clean/$global/streams/out deleted file mode 100644 index e69de29b..00000000 diff --git a/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivyConfiguration/$global/streams/out b/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivyConfiguration/$global/streams/out deleted file mode 100644 index 2addec75..00000000 --- a/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivyConfiguration/$global/streams/out +++ /dev/null @@ -1,3 +0,0 @@ -[debug] Other repositories: -[debug] Default repositories: -[debug] Using inline dependencies specified in Scala. diff --git a/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivySbt/$global/streams/out b/src/main/scala/com/interana/eventsim/events/target/streams/$global/ivySbt/$global/streams/out deleted file mode 100644 index e69de29b..00000000 diff --git a/src/main/scala/com/interana/eventsim/events/target/streams/$global/projectDescriptors/$global/streams/out b/src/main/scala/com/interana/eventsim/events/target/streams/$global/projectDescriptors/$global/streams/out deleted file mode 100644 index e69de29b..00000000 diff --git a/src/main/scala/com/interana/eventsim/Constants.scala b/src/main/scala/io/confluent/eventsim/Constants.scala similarity index 94% rename from src/main/scala/com/interana/eventsim/Constants.scala rename to src/main/scala/io/confluent/eventsim/Constants.scala index 2a2a8f4a..d28043ad 100644 --- a/src/main/scala/com/interana/eventsim/Constants.scala +++ b/src/main/scala/io/confluent/eventsim/Constants.scala @@ -1,4 +1,4 @@ -package com.interana.eventsim +package io.confluent.eventsim /** * Constants diff --git a/src/main/scala/com/interana/eventsim/Counters.scala b/src/main/scala/io/confluent/eventsim/Counters.scala similarity index 79% rename from src/main/scala/com/interana/eventsim/Counters.scala rename to src/main/scala/io/confluent/eventsim/Counters.scala index 5bb0c9e5..bc066968 100644 --- a/src/main/scala/com/interana/eventsim/Counters.scala +++ b/src/main/scala/io/confluent/eventsim/Counters.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim +package io.confluent.eventsim -import com.interana.eventsim.config.ConfigFromFile +import io.confluent.eventsim.config.ConfigFromFile object Counters { // some global counters diff --git a/src/main/scala/com/interana/eventsim/Main.scala b/src/main/scala/io/confluent/eventsim/Main.scala similarity index 96% rename from src/main/scala/com/interana/eventsim/Main.scala rename to src/main/scala/io/confluent/eventsim/Main.scala index 6c97886a..fa6cad6b 100644 --- a/src/main/scala/com/interana/eventsim/Main.scala +++ b/src/main/scala/io/confluent/eventsim/Main.scala @@ -1,11 +1,11 @@ -package com.interana.eventsim +package io.confluent.eventsim import java.time.temporal.ChronoUnit import java.time.{Duration, LocalDateTime, ZoneOffset} -import com.interana.eventsim.Utilities.{SimilarSongParser, TrackListenCount} -import com.interana.eventsim.buildin.{DeviceProperties, UserProperties} -import com.interana.eventsim.config.ConfigFromFile +import io.confluent.eventsim.Utilities.{TrackListenCount, SimilarSongParser} +import io.confluent.eventsim.buildin.{UserProperties, DeviceProperties} +import io.confluent.eventsim.config.ConfigFromFile import org.rogach.scallop.{ScallopOption, ScallopConf} import scala.collection.mutable @@ -181,7 +181,7 @@ object Main extends App { val now = LocalDateTime.now() val dif = Duration.between(clock, now) if (dif.isNegative) - Thread.sleep(dif.abs.toMillis()) + Thread.sleep(dif.abs.toMillis) } showProgress(clock, users.length, events) diff --git a/src/main/scala/com/interana/eventsim/Output.scala b/src/main/scala/io/confluent/eventsim/Output.scala similarity index 73% rename from src/main/scala/com/interana/eventsim/Output.scala rename to src/main/scala/io/confluent/eventsim/Output.scala index d973db47..217c7def 100644 --- a/src/main/scala/com/interana/eventsim/Output.scala +++ b/src/main/scala/io/confluent/eventsim/Output.scala @@ -1,12 +1,13 @@ -package com.interana.eventsim +package io.confluent.eventsim import java.io.{FileOutputStream, File} import java.time.ZoneOffset import java.util.Properties - -import com.interana.eventsim.config.ConfigFromFile -import com.interana.eventsim.events.{JSONConstructor, Constructor} -import org.apache.kafka.clients.producer.{ProducerRecord, KafkaProducer} +import io.confluent.eventsim.config.ConfigFromFile +import io.confluent.eventsim.events +import io.confluent.eventsim.events.Auth.Constructor +import io.confluent.eventsim.events.StatusChange.{AvroConstructor, JSONConstructor} +import org.apache.kafka.clients.producer.{ProducerConfig, ProducerRecord, KafkaProducer} /** * Created by jadler on 1/13/16. @@ -19,27 +20,30 @@ object Output { def flushAndClose() } - private class FileEventWriter(val constructor: Constructor, val file: File) extends Object with canwrite { + private class FileEventWriter(val constructor: events.Constructor, val file: File) extends Object with canwrite { val out = new FileOutputStream(file) def write() = out.write(constructor.end().asInstanceOf[Array[Byte]]) override def flushAndClose(): Unit = {out.flush(); out.close()} } - private class KafkaEventWriter(val constructor: Constructor, val topic: String, val brokers: String) extends Object with canwrite { + private class KafkaEventWriter(val constructor: events.Constructor, val topic: String, val brokers: String) extends Object with canwrite { val props = new Properties() - props.put("key.serializer.class", "org.apache.kafka.common.serialization.ByteArraySerializer") - props.put("value.serializer.class", - if (constructor.isInstanceOf[JSONConstructor]) "org.apache.kafka.common.serialization.StringSerializer" - else "io.confluent.kafka.serializers.KafkaAvroSerializer") - props.put("metadata.broker.list", brokers) - + props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArraySerializer") + props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArraySerializer") + //if (constructor.isInstanceOf[JSONConstructor]) "org.apache.kafka.common.serialization.ByteArraySerializer" + //else "io.confluent.kafka.serializers.KafkaAvroSerializer") + props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, brokers) val producer = new KafkaProducer[Object, Object](props) def write() = { - val value = constructor.end() + val value = + constructor match { + case constructor1: events.AvroConstructor[Object] => constructor1.serialize(constructor.end()) + case _ => constructor.end() + } val pr = new ProducerRecord[Object, Object](topic, value) producer.send(pr) } @@ -47,21 +51,21 @@ object Output { override def flushAndClose(): Unit = {producer.flush(); producer.close();} } - val authConstructor: com.interana.eventsim.events.Auth.Constructor = - if (Main.useAvro) new com.interana.eventsim.events.Auth.AvroConstructor() - else new com.interana.eventsim.events.Auth.JSONConstructor() + val authConstructor: Constructor = + if (Main.useAvro) new io.confluent.eventsim.events.Auth.AvroConstructor() + else new io.confluent.eventsim.events.Auth.JSONConstructor() - val listenConstructor: com.interana.eventsim.events.Listen.Constructor = - if (Main.useAvro) new com.interana.eventsim.events.Listen.AvroConstructor() - else new com.interana.eventsim.events.Listen.JSONConstructor() + val listenConstructor: io.confluent.eventsim.events.Listen.Constructor = + if (Main.useAvro) new io.confluent.eventsim.events.Listen.AvroConstructor() + else new io.confluent.eventsim.events.Listen.JSONConstructor() - val pageViewConstructor: com.interana.eventsim.events.PageView.Constructor = - if (Main.useAvro) new com.interana.eventsim.events.PageView.AvroConstructor() - else new com.interana.eventsim.events.PageView.JSONConstructor() + val pageViewConstructor: io.confluent.eventsim.events.PageView.Constructor = + if (Main.useAvro) new io.confluent.eventsim.events.PageView.AvroConstructor() + else new io.confluent.eventsim.events.PageView.JSONConstructor() - val statusChangeConstructor: com.interana.eventsim.events.StatusChange.Constructor = - if (Main.useAvro) new com.interana.eventsim.events.StatusChange.AvroConstructor() - else new com.interana.eventsim.events.StatusChange.JSONConstructor() + val statusChangeConstructor: io.confluent.eventsim.events.StatusChange.Constructor = + if (Main.useAvro) new AvroConstructor() + else new JSONConstructor() val kbl = Main.ConfFromOptions.kafkaBrokerList val dirName = new File(if (Main.ConfFromOptions.outputDir.isSupplied) Main.ConfFromOptions.outputDir.get.get else "output") @@ -89,7 +93,7 @@ object Output { statusChangeEventWriter.flushAndClose() } - def writeEvents(session: Session, device: scala.collection.immutable.Map[String,Any], userId: Int, props: Map[String,Any]) = { + def writeEvents(session: Session, device: Map[String,Any], userId: Int, props: Map[String,Any]) = { val showUserDetails = ConfigFromFile.showUserWithState(session.currentState.auth) pageViewConstructor.start diff --git a/src/main/scala/com/interana/eventsim/Session.scala b/src/main/scala/io/confluent/eventsim/Session.scala similarity index 95% rename from src/main/scala/com/interana/eventsim/Session.scala rename to src/main/scala/io/confluent/eventsim/Session.scala index b4328cd1..c4682ccd 100644 --- a/src/main/scala/com/interana/eventsim/Session.scala +++ b/src/main/scala/io/confluent/eventsim/Session.scala @@ -1,10 +1,10 @@ -package com.interana.eventsim +package io.confluent.eventsim import java.time.LocalDateTime -import com.interana.eventsim.TimeUtilities._ -import com.interana.eventsim.buildin.RandomSongGenerator -import com.interana.eventsim.config.ConfigFromFile +import TimeUtilities._ +import io.confluent.eventsim.buildin.RandomSongGenerator +import io.confluent.eventsim.config.ConfigFromFile /** * Object to capture session related calculations and properties diff --git a/src/main/scala/com/interana/eventsim/State.scala b/src/main/scala/io/confluent/eventsim/State.scala similarity index 98% rename from src/main/scala/com/interana/eventsim/State.scala rename to src/main/scala/io/confluent/eventsim/State.scala index 1be99717..d4bcce34 100644 --- a/src/main/scala/com/interana/eventsim/State.scala +++ b/src/main/scala/io/confluent/eventsim/State.scala @@ -1,4 +1,4 @@ -package com.interana.eventsim +package io.confluent.eventsim import org.apache.commons.math3.random.RandomGenerator diff --git a/src/main/scala/com/interana/eventsim/TimeUtilities.scala b/src/main/scala/io/confluent/eventsim/TimeUtilities.scala similarity index 98% rename from src/main/scala/com/interana/eventsim/TimeUtilities.scala rename to src/main/scala/io/confluent/eventsim/TimeUtilities.scala index 85dbb805..0ba163a8 100644 --- a/src/main/scala/com/interana/eventsim/TimeUtilities.scala +++ b/src/main/scala/io/confluent/eventsim/TimeUtilities.scala @@ -1,11 +1,11 @@ -package com.interana.eventsim +package io.confluent.eventsim import java.time.temporal.{ChronoField, ChronoUnit} import java.time.{DayOfWeek, Duration, LocalDateTime, LocalDate} -import com.interana.eventsim.Constants._ -import com.interana.eventsim.config.ConfigFromFile +import Constants._ import de.jollyday.HolidayManager +import io.confluent.eventsim.config.ConfigFromFile import org.apache.commons.math3.distribution.ExponentialDistribution import org.apache.commons.math3.random.MersenneTwister diff --git a/src/main/scala/com/interana/eventsim/User.scala b/src/main/scala/io/confluent/eventsim/User.scala similarity index 82% rename from src/main/scala/com/interana/eventsim/User.scala rename to src/main/scala/io/confluent/eventsim/User.scala index 971a0c19..1ca21899 100644 --- a/src/main/scala/com/interana/eventsim/User.scala +++ b/src/main/scala/io/confluent/eventsim/User.scala @@ -1,18 +1,17 @@ -package com.interana.eventsim +package io.confluent.eventsim import java.io.{OutputStream, Serializable} import java.time.{ZoneOffset, LocalDateTime} import java.util - -import com.interana.eventsim.config.ConfigFromFile +import io.confluent.eventsim.config.ConfigFromFile class User(val alpha: Double, val beta: Double, val startTime: LocalDateTime, - val initialSessionStates: scala.collection.Map[(String,String),WeightedRandomThingGenerator[State]], + val initialSessionStates: scala.collection.mutable.Map[(String,String),WeightedRandomThingGenerator[State]], val auth: String, val props: Map[String,Any], - var device: scala.collection.immutable.Map[String,Any], + var device: Map[String,Any], val initialLevel: String ) extends Serializable with Ordered[User] { @@ -46,7 +45,7 @@ class User(val alpha: Double, } } - def tsToString(ts: LocalDateTime) = ts.toString() + def tsToString(ts: LocalDateTime) = ts.toString def nextEventTimeStampString = tsToString(this.session.nextEventTimeStamp.get) diff --git a/src/main/scala/com/interana/eventsim/Utilities/SimilarSongParser.scala b/src/main/scala/io/confluent/eventsim/Utilities/SimilarSongParser.scala similarity index 96% rename from src/main/scala/com/interana/eventsim/Utilities/SimilarSongParser.scala rename to src/main/scala/io/confluent/eventsim/Utilities/SimilarSongParser.scala index b722bc86..b195eb89 100644 --- a/src/main/scala/com/interana/eventsim/Utilities/SimilarSongParser.scala +++ b/src/main/scala/io/confluent/eventsim/Utilities/SimilarSongParser.scala @@ -1,8 +1,9 @@ -package com.interana.eventsim.Utilities +package io.confluent.eventsim.Utilities import java.io.{FileOutputStream, PrintWriter, File} import java.net.URL import java.nio.file.NotDirectoryException +import java.util import java.util.ArrayList import java.util.zip.GZIPOutputStream import sys.process._ @@ -57,7 +58,7 @@ object SimilarSongParser { val trackId = tree.get("track_id").toString //println("trackId: " + trackId) val similars = tree.get("similars") - val similarSet = new ArrayList[String]() + val similarSet = new util.ArrayList[String]() for (i <- 0 until similars.size()) { val item = similars.get(i) val tid = item.get(0) diff --git a/src/main/scala/com/interana/eventsim/Utilities/TrackListenCount.scala b/src/main/scala/io/confluent/eventsim/Utilities/TrackListenCount.scala similarity index 96% rename from src/main/scala/com/interana/eventsim/Utilities/TrackListenCount.scala rename to src/main/scala/io/confluent/eventsim/Utilities/TrackListenCount.scala index a5ab7565..4d949abe 100644 --- a/src/main/scala/com/interana/eventsim/Utilities/TrackListenCount.scala +++ b/src/main/scala/io/confluent/eventsim/Utilities/TrackListenCount.scala @@ -1,4 +1,4 @@ -package com.interana.eventsim.Utilities +package io.confluent.eventsim.Utilities import java.io.PrintWriter @@ -66,11 +66,10 @@ object TrackListenCount { val songTitle = fields(3) tracks.put(trackId, (songId, artistName, songTitle)) } catch { - case e: IndexOutOfBoundsException => { + case e: IndexOutOfBoundsException => // silently forget the record // println("while processing" + t) // throw e - } } } trackFile.close() diff --git a/src/main/scala/com/interana/eventsim/WeightedRandomThingGenerator.scala b/src/main/scala/io/confluent/eventsim/WeightedRandomThingGenerator.scala similarity index 97% rename from src/main/scala/com/interana/eventsim/WeightedRandomThingGenerator.scala rename to src/main/scala/io/confluent/eventsim/WeightedRandomThingGenerator.scala index 2e76f680..aab9911f 100644 --- a/src/main/scala/com/interana/eventsim/WeightedRandomThingGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/WeightedRandomThingGenerator.scala @@ -1,4 +1,4 @@ -package com.interana.eventsim +package io.confluent.eventsim import scala.collection.mutable.ArrayBuffer diff --git a/src/main/scala/com/interana/eventsim/buildin/DeviceProperties.scala b/src/main/scala/io/confluent/eventsim/buildin/DeviceProperties.scala similarity index 89% rename from src/main/scala/com/interana/eventsim/buildin/DeviceProperties.scala rename to src/main/scala/io/confluent/eventsim/buildin/DeviceProperties.scala index 57f86669..7c681c16 100644 --- a/src/main/scala/com/interana/eventsim/buildin/DeviceProperties.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/DeviceProperties.scala @@ -1,9 +1,10 @@ -package com.interana.eventsim.buildin +package io.confluent.eventsim.buildin object DeviceProperties { def randomProps = { val location = RandomLocationGenerator.randomThing + Map[String, Any]( "zip" -> location._1, "city" -> location._2, diff --git a/src/main/scala/com/interana/eventsim/buildin/GenericGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/GenericGenerator.scala similarity index 80% rename from src/main/scala/com/interana/eventsim/buildin/GenericGenerator.scala rename to src/main/scala/io/confluent/eventsim/buildin/GenericGenerator.scala index fa1e2f19..f1ed4f4c 100644 --- a/src/main/scala/com/interana/eventsim/buildin/GenericGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/GenericGenerator.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.buildin +package io.confluent.eventsim.buildin -import com.interana.eventsim.WeightedRandomThingGenerator +import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomFirstNameGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomFirstNameGenerator.scala similarity index 78% rename from src/main/scala/com/interana/eventsim/buildin/RandomFirstNameGenerator.scala rename to src/main/scala/io/confluent/eventsim/buildin/RandomFirstNameGenerator.scala index 689cda4d..ee8f9c6e 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomFirstNameGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomFirstNameGenerator.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.buildin +package io.confluent.eventsim.buildin -import com.interana.eventsim.WeightedRandomThingGenerator +import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomLastNameGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomLastNameGenerator.scala similarity index 82% rename from src/main/scala/com/interana/eventsim/buildin/RandomLastNameGenerator.scala rename to src/main/scala/io/confluent/eventsim/buildin/RandomLastNameGenerator.scala index 1045c814..510e21c9 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomLastNameGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomLastNameGenerator.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.buildin +package io.confluent.eventsim.buildin -import com.interana.eventsim.WeightedRandomThingGenerator +import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomLocationGenerator.scala similarity index 95% rename from src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala rename to src/main/scala/io/confluent/eventsim/buildin/RandomLocationGenerator.scala index 08a00a58..281d461b 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomLocationGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomLocationGenerator.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.buildin +package io.confluent.eventsim.buildin -import com.interana.eventsim.WeightedRandomThingGenerator +import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomSongGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomSongGenerator.scala similarity index 93% rename from src/main/scala/com/interana/eventsim/buildin/RandomSongGenerator.scala rename to src/main/scala/io/confluent/eventsim/buildin/RandomSongGenerator.scala index 3a5c63c5..9e1607aa 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomSongGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomSongGenerator.scala @@ -1,9 +1,8 @@ -package com.interana.eventsim.buildin +package io.confluent.eventsim.buildin import java.io.FileInputStream import java.util.zip.GZIPInputStream - -import com.interana.eventsim.WeightedRandomThingGenerator +import io.confluent.eventsim.WeightedRandomThingGenerator import scala.collection.mutable import scala.io.Source @@ -36,10 +35,9 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { trackIdMap.put(trackId,(artist,songName,duration,count)) this.add(trackId, count) } catch { - case e: NumberFormatException => { + case e: NumberFormatException => println("\n" + ll + "\n") throw e - } } } System.err.println("\t...done loading song file. " + trackIdMap.size + " tracks loaded.") @@ -88,7 +86,7 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { def nextSong(lastTrackId: String): (String,String,String,Float) = { val nextTrackId = - if (!similarSongs.isEmpty && similarSongs.contains(lastTrackId)) { + if (similarSongs.nonEmpty && similarSongs.contains(lastTrackId)) { similarSongs(lastTrackId).randomThing } else { this.randomThing diff --git a/src/main/scala/com/interana/eventsim/buildin/RandomUserAgentGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomUserAgentGenerator.scala similarity index 82% rename from src/main/scala/com/interana/eventsim/buildin/RandomUserAgentGenerator.scala rename to src/main/scala/io/confluent/eventsim/buildin/RandomUserAgentGenerator.scala index 2e618c0e..9dbb2661 100644 --- a/src/main/scala/com/interana/eventsim/buildin/RandomUserAgentGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomUserAgentGenerator.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.buildin +package io.confluent.eventsim.buildin -import com.interana.eventsim.WeightedRandomThingGenerator +import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source diff --git a/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala b/src/main/scala/io/confluent/eventsim/buildin/UserProperties.scala similarity index 90% rename from src/main/scala/com/interana/eventsim/buildin/UserProperties.scala rename to src/main/scala/io/confluent/eventsim/buildin/UserProperties.scala index 172366e0..fdc8499a 100644 --- a/src/main/scala/com/interana/eventsim/buildin/UserProperties.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/UserProperties.scala @@ -1,8 +1,8 @@ -package com.interana.eventsim.buildin +package io.confluent.eventsim.buildin import java.time.{ZoneOffset, LocalDateTime} -import com.interana.eventsim.{Constants, Main, TimeUtilities} +import io.confluent.eventsim.{TimeUtilities, Constants, Main} object UserProperties { // utilities for generating random properties for users diff --git a/src/main/scala/com/interana/eventsim/config/ConfigFromFile.scala b/src/main/scala/io/confluent/eventsim/config/ConfigFromFile.scala similarity index 98% rename from src/main/scala/com/interana/eventsim/config/ConfigFromFile.scala rename to src/main/scala/io/confluent/eventsim/config/ConfigFromFile.scala index 05cdb0a8..1b55008c 100644 --- a/src/main/scala/com/interana/eventsim/config/ConfigFromFile.scala +++ b/src/main/scala/io/confluent/eventsim/config/ConfigFromFile.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.config +package io.confluent.eventsim.config -import com.interana.eventsim.{Constants, State, WeightedRandomThingGenerator} +import io.confluent.eventsim.{Constants, State, WeightedRandomThingGenerator} import scala.collection.mutable import scala.io.Source diff --git a/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala new file mode 100644 index 00000000..10ec957c --- /dev/null +++ b/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala @@ -0,0 +1,30 @@ +package io.confluent.eventsim.events.Auth + +import io.confluent.eventsim.Auth +import scala.collection.JavaConversions._ + +class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[Auth] with Constructor { + + def schema = Auth.getClassSchema + var eventBuilder = Auth.newBuilder() + + def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) + def setUserDetails(m: Map[String,Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = + eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) + + def setSuccess(boolean: Boolean) = eventBuilder.setSuccess(boolean) + def start() = { + eventBuilder = Auth.newBuilder(eventBuilder) + } + + def end() = eventBuilder.build() + + +} diff --git a/src/main/scala/io/confluent/eventsim/events/Auth/Constructor.scala b/src/main/scala/io/confluent/eventsim/events/Auth/Constructor.scala new file mode 100644 index 00000000..2e9364d0 --- /dev/null +++ b/src/main/scala/io/confluent/eventsim/events/Auth/Constructor.scala @@ -0,0 +1,5 @@ +package io.confluent.eventsim.events.Auth + +trait Constructor extends io.confluent.eventsim.events.Constructor { + def setSuccess(boolean: Boolean) +} diff --git a/src/main/scala/com/interana/eventsim/events/Auth/JSONConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Auth/JSONConstructor.scala similarity index 53% rename from src/main/scala/com/interana/eventsim/events/Auth/JSONConstructor.scala rename to src/main/scala/io/confluent/eventsim/events/Auth/JSONConstructor.scala index 7ec21414..d675fb5a 100644 --- a/src/main/scala/com/interana/eventsim/events/Auth/JSONConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Auth/JSONConstructor.scala @@ -1,5 +1,5 @@ -package com.interana.eventsim.events.Auth +package io.confluent.eventsim.events.Auth -class JSONConstructor() extends com.interana.eventsim.events.JSONConstructor with Constructor { +class JSONConstructor() extends io.confluent.eventsim.events.JSONConstructor with Constructor { def setSuccess(boolean: Boolean) = generator.writeBooleanField("success", boolean) } diff --git a/src/main/scala/io/confluent/eventsim/events/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/AvroConstructor.scala new file mode 100644 index 00000000..52529c46 --- /dev/null +++ b/src/main/scala/io/confluent/eventsim/events/AvroConstructor.scala @@ -0,0 +1,28 @@ +package io.confluent.eventsim.events + +import java.io.ByteArrayOutputStream + +import org.apache.avro.Schema +import org.apache.avro.io.EncoderFactory +import org.apache.avro.specific.SpecificDatumWriter + + +/** + * Created by jadler on 1/13/16. + */ +abstract class AvroConstructor[T]() extends Object with Constructor { + + def start(): Unit + def schema: Schema + + def datumWriter = new SpecificDatumWriter[T](this.schema) + def baos = new ByteArrayOutputStream(4096) + def encoder = EncoderFactory.get().binaryEncoder(baos, null) + def serialize(t: T): Array[Byte] = { + baos.reset() + datumWriter.write(t, encoder) + encoder.flush() + baos.toByteArray + } + +} diff --git a/src/main/scala/com/interana/eventsim/events/Builder.scala b/src/main/scala/io/confluent/eventsim/events/Builder.scala similarity index 73% rename from src/main/scala/com/interana/eventsim/events/Builder.scala rename to src/main/scala/io/confluent/eventsim/events/Builder.scala index 98493187..a3b275cc 100644 --- a/src/main/scala/com/interana/eventsim/events/Builder.scala +++ b/src/main/scala/io/confluent/eventsim/events/Builder.scala @@ -1,4 +1,4 @@ -package com.interana.eventsim.events +package io.confluent.eventsim.events import java.{lang, util} @@ -20,9 +20,9 @@ trait Builder { def setItemInSession(value: Int): Builder - def setUserDetails(value: util.Map[CharSequence, AnyRef]): Builder + def setUserDetails(value: Map[CharSequence, AnyRef]): Builder - def setDeviceDetails(value: util.Map[CharSequence, AnyRef]): Builder + def setDeviceDetails(value: Map[CharSequence, AnyRef]): Builder def setTag(value: CharSequence): Builder diff --git a/src/main/scala/com/interana/eventsim/events/Constructor.scala b/src/main/scala/io/confluent/eventsim/events/Constructor.scala similarity index 90% rename from src/main/scala/com/interana/eventsim/events/Constructor.scala rename to src/main/scala/io/confluent/eventsim/events/Constructor.scala index 8cc1032f..e54e6992 100644 --- a/src/main/scala/com/interana/eventsim/events/Constructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Constructor.scala @@ -1,4 +1,4 @@ -package com.interana.eventsim.events +package io.confluent.eventsim.events /** * Created by jadler on 1/13/16. diff --git a/src/main/scala/com/interana/eventsim/events/JSONConstructor.scala b/src/main/scala/io/confluent/eventsim/events/JSONConstructor.scala similarity index 96% rename from src/main/scala/com/interana/eventsim/events/JSONConstructor.scala rename to src/main/scala/io/confluent/eventsim/events/JSONConstructor.scala index d94c8f8b..eefc9e46 100644 --- a/src/main/scala/com/interana/eventsim/events/JSONConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/JSONConstructor.scala @@ -1,4 +1,4 @@ -package com.interana.eventsim.events +package io.confluent.eventsim.events import java.io.ByteArrayOutputStream @@ -36,7 +36,7 @@ class JSONConstructor extends Object with Constructor { case _: String => generator.writeStringField(p._1, p._2.asInstanceOf[String]) }}) def setTag(s: String) = generator.writeStringField("tag", s) - def start = generator.writeStartObject() + def start() = generator.writeStartObject() def end() = { generator.writeEndObject() generator.writeRaw('\n') diff --git a/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala new file mode 100644 index 00000000..56e8c4d0 --- /dev/null +++ b/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala @@ -0,0 +1,42 @@ +package io.confluent.eventsim.events.Listen + + +import scala.collection.JavaConversions._ +import io.confluent.eventsim.{Listen, song} + +class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[Listen] with Constructor { + + def schema = Listen.getClassSchema + var eventBuilder = Listen.newBuilder() + var songBuilder = song.newBuilder() + + def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) + def setUserDetails(m: Map[String,Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = + eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) + + + def setAuth(s: String) = eventBuilder.setAuth(s) + def setArtist(s: String) = songBuilder.setArtist(s) + def setTitle(s: String) = songBuilder.setTitle(s) + def setDuration(d: Float) = songBuilder.setDuration(d) + + override def start() = { + eventBuilder = Listen.newBuilder(eventBuilder) + songBuilder = song.newBuilder(songBuilder) + } + + def end() = { + eventBuilder.setSongProperties(songBuilder.build()) + eventBuilder.build() + } + + + +} diff --git a/src/main/scala/com/interana/eventsim/events/Listen/Constructor.scala b/src/main/scala/io/confluent/eventsim/events/Listen/Constructor.scala similarity index 51% rename from src/main/scala/com/interana/eventsim/events/Listen/Constructor.scala rename to src/main/scala/io/confluent/eventsim/events/Listen/Constructor.scala index 8a77cb1a..5bbce37b 100644 --- a/src/main/scala/com/interana/eventsim/events/Listen/Constructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Listen/Constructor.scala @@ -1,7 +1,6 @@ -package com.interana.eventsim.events.Listen +package io.confluent.eventsim.events.Listen - -trait Constructor extends com.interana.eventsim.events.Constructor { +trait Constructor extends io.confluent.eventsim.events.Constructor { def setAuth(s: String) def setArtist(s: String) def setTitle(s: String) diff --git a/src/main/scala/com/interana/eventsim/events/Listen/JSONConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Listen/JSONConstructor.scala similarity index 73% rename from src/main/scala/com/interana/eventsim/events/Listen/JSONConstructor.scala rename to src/main/scala/io/confluent/eventsim/events/Listen/JSONConstructor.scala index 1d444e15..246a1fd5 100644 --- a/src/main/scala/com/interana/eventsim/events/Listen/JSONConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Listen/JSONConstructor.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.events.Listen +package io.confluent.eventsim.events.Listen -class JSONConstructor() extends com.interana.eventsim.events.JSONConstructor with Constructor { +class JSONConstructor() extends io.confluent.eventsim.events.JSONConstructor with Constructor { def setAuth(s: String) = generator.writeStringField("auth", s) def setArtist(s: String) = generator.writeStringField("artist", s) def setTitle(s: String) = generator.writeStringField("song", s) diff --git a/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala new file mode 100644 index 00000000..5f552997 --- /dev/null +++ b/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala @@ -0,0 +1,43 @@ +package io.confluent.eventsim.events.PageView + +import io.confluent.eventsim.{song, PageView} +import scala.collection.JavaConversions._ + +class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[PageView] with Constructor { + + def schema = PageView.getClassSchema + var eventBuilder = PageView.newBuilder() + + def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) + def setUserDetails(m: Map[String,Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = + eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) + + + var songBuilder = song.newBuilder() + def setPage(s: String) = eventBuilder.setPage(s) + def setAuth(s: String) = eventBuilder.setAuth(s) + def setMethod(s: String) = eventBuilder.setMethod(s) + def setStatus(i: Int) = eventBuilder.setStatus(i) + def setArtist(s: String) = songBuilder.setArtist(s) + def setTitle(s: String) = songBuilder.setTitle(s) + def setDuration(d: Float) = songBuilder.setDuration(d) + + def start() = { + eventBuilder = PageView.newBuilder(eventBuilder) + songBuilder = song.newBuilder(songBuilder) + } + + override def end() = { + if (songBuilder.hasArtist) + eventBuilder.setSongProperties(songBuilder.build()) + eventBuilder.build() + } + +} diff --git a/src/main/scala/com/interana/eventsim/events/PageView/Constructor.scala b/src/main/scala/io/confluent/eventsim/events/PageView/Constructor.scala similarity index 63% rename from src/main/scala/com/interana/eventsim/events/PageView/Constructor.scala rename to src/main/scala/io/confluent/eventsim/events/PageView/Constructor.scala index df1e3337..8b0c78b0 100644 --- a/src/main/scala/com/interana/eventsim/events/PageView/Constructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/PageView/Constructor.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.events.PageView +package io.confluent.eventsim.events.PageView -trait Constructor extends com.interana.eventsim.events.Constructor { +trait Constructor extends io.confluent.eventsim.events.Constructor { def setPage(s: String) def setAuth(s: String) def setMethod(s: String) diff --git a/src/main/scala/com/interana/eventsim/events/PageView/JSONConstructor.scala b/src/main/scala/io/confluent/eventsim/events/PageView/JSONConstructor.scala similarity index 82% rename from src/main/scala/com/interana/eventsim/events/PageView/JSONConstructor.scala rename to src/main/scala/io/confluent/eventsim/events/PageView/JSONConstructor.scala index 7a708484..961c05b1 100644 --- a/src/main/scala/com/interana/eventsim/events/PageView/JSONConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/PageView/JSONConstructor.scala @@ -1,6 +1,6 @@ -package com.interana.eventsim.events.PageView +package io.confluent.eventsim.events.PageView -class JSONConstructor() extends com.interana.eventsim.events.JSONConstructor with Constructor { +class JSONConstructor() extends io.confluent.eventsim.events.JSONConstructor with Constructor { def setPage(s: String) = generator.writeStringField("page",s) def setAuth(s: String) = generator.writeStringField("auth", s) def setMethod(s: String) = generator.writeStringField("method", s) diff --git a/src/main/scala/io/confluent/eventsim/events/StatusChange/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/StatusChange/AvroConstructor.scala new file mode 100644 index 00000000..5b9af181 --- /dev/null +++ b/src/main/scala/io/confluent/eventsim/events/StatusChange/AvroConstructor.scala @@ -0,0 +1,33 @@ +package io.confluent.eventsim.events.StatusChange + +import io.confluent.eventsim.avro.StatusChange + +import scala.collection.JavaConversions._ + +class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[StatusChange] with Constructor { + + def schema = StatusChange.getClassSchema + var eventBuilder = StatusChange.newBuilder() + + def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setAuth(s: String) = eventBuilder.setAuth(s) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) + def setUserDetails(m: Map[String,Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + // eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = + eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + // eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) + + def start() = { + eventBuilder = StatusChange.newBuilder(eventBuilder) + } + + def end() = eventBuilder.build() + + +} diff --git a/src/main/scala/io/confluent/eventsim/events/StatusChange/Constructor.scala b/src/main/scala/io/confluent/eventsim/events/StatusChange/Constructor.scala new file mode 100644 index 00000000..f93d272f --- /dev/null +++ b/src/main/scala/io/confluent/eventsim/events/StatusChange/Constructor.scala @@ -0,0 +1,5 @@ +package io.confluent.eventsim.events.StatusChange + +trait Constructor extends io.confluent.eventsim.events.Constructor { + def setAuth(s: String) +} diff --git a/src/main/scala/io/confluent/eventsim/events/StatusChange/JSONConstructor.scala b/src/main/scala/io/confluent/eventsim/events/StatusChange/JSONConstructor.scala new file mode 100644 index 00000000..68539134 --- /dev/null +++ b/src/main/scala/io/confluent/eventsim/events/StatusChange/JSONConstructor.scala @@ -0,0 +1,5 @@ +package io.confluent.eventsim.events.StatusChange + +class JSONConstructor() extends io.confluent.eventsim.events.JSONConstructor with Constructor { + def setAuth(s: String) = generator.writeStringField("auth", s) +} From 419aa5568d9b4538c8d58779b7dd3042851e5091 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Thu, 14 Jan 2016 16:15:41 -0800 Subject: [PATCH 10/14] Code cleanup --- src/main/avro/Auth.avsc | 82 ++++++++++--- src/main/avro/Listen.avsc | 104 +++++++++++++---- src/main/avro/PageView.avsc | 105 ++++++++++++++--- src/main/avro/StatusChange.avsc | 82 ++++++++++--- .../io/confluent/eventsim/Constants.scala | 7 +- .../scala/io/confluent/eventsim/Main.scala | 10 +- .../scala/io/confluent/eventsim/Output.scala | 47 ++++---- .../scala/io/confluent/eventsim/Session.scala | 42 +++---- .../scala/io/confluent/eventsim/State.scala | 48 +++++--- .../io/confluent/eventsim/TimeUtilities.scala | 20 ++-- .../scala/io/confluent/eventsim/User.scala | 16 +-- .../Utilities/SimilarSongParser.scala | 8 +- .../eventsim/Utilities/TrackListenCount.scala | 20 ++-- .../WeightedRandomThingGenerator.scala | 10 +- .../buildin/RandomFirstNameGenerator.scala | 6 +- .../buildin/RandomLastNameGenerator.scala | 6 +- .../buildin/RandomLocationGenerator.scala | 48 ++++---- .../buildin/RandomSongGenerator.scala | 29 ++--- .../buildin/RandomUserAgentGenerator.scala | 8 +- .../eventsim/buildin/UserProperties.scala | 8 +- .../eventsim/config/ConfigFromFile.scala | 110 +++++++++--------- .../events/Auth/AvroConstructor.scala | 16 ++- .../eventsim/events/AvroConstructor.scala | 4 + .../confluent/eventsim/events/Builder.scala | 22 ++-- .../eventsim/events/Constructor.scala | 13 ++- .../eventsim/events/JSONConstructor.scala | 20 +++- .../events/Listen/AvroConstructor.scala | 21 +++- .../eventsim/events/Listen/Constructor.scala | 3 + .../events/Listen/JSONConstructor.scala | 3 + .../events/PageView/AvroConstructor.scala | 24 +++- .../events/PageView/Constructor.scala | 6 + .../events/PageView/JSONConstructor.scala | 8 +- .../events/StatusChange/AvroConstructor.scala | 19 ++- 33 files changed, 660 insertions(+), 315 deletions(-) diff --git a/src/main/avro/Auth.avsc b/src/main/avro/Auth.avsc index db1d569e..20873c4e 100644 --- a/src/main/avro/Auth.avsc +++ b/src/main/avro/Auth.avsc @@ -1,17 +1,69 @@ -{"namespace" : "io.confluent.eventsim.avro", - "type" : "record", - "name" : "Auth", - "fields" : [ - {"name" : "ts", "type" : "long"}, - {"name" : "userId", "type" : ["null","long"]}, - {"name" : "sessionId", "type" : "long"}, - {"name" : "level", "type" : "string"}, - {"name" : "itemInSession", "type" : "int"}, - {"name" : "userDetails", - "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, - {"name" : "deviceDetails", - "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, - {"name": "tag", "type" : ["null", "string"]}, - {"name": "success", "type" : "boolean"} +{ + "namespace": "io.confluent.eventsim.avro", + "type": "record", + "name": "Auth", + "fields": [ + { + "name": "ts", + "type": "long" + }, + { + "name": "userId", + "type": [ + "null", + "long" + ] + }, + { + "name": "sessionId", + "type": "long" + }, + { + "name": "level", + "type": "string" + }, + { + "name": "itemInSession", + "type": "int" + }, + { + "name": "userDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "deviceDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "tag", + "type": [ + "null", + "string" + ] + }, + { + "name": "success", + "type": "boolean" + } ] } \ No newline at end of file diff --git a/src/main/avro/Listen.avsc b/src/main/avro/Listen.avsc index c77be451..750a7e18 100644 --- a/src/main/avro/Listen.avsc +++ b/src/main/avro/Listen.avsc @@ -1,28 +1,90 @@ -{"namespace" : "io.confluent.eventsim.avro", - "type" : "record", - "name" : "Listen", - "fields" : [ - {"name" : "ts", "type" : "long"}, - {"name" : "userId", "type" : ["null","long"]}, - {"name" : "sessionId", "type" : "long"}, - {"name" : "auth", "type" : "string"}, - {"name" : "level", "type" : "string"}, - {"name" : "itemInSession", "type" : "int"}, - {"name" : "userDetails", - "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, - {"name" : "deviceDetails", - "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, - {"name" : "songProperties", "type" : - { +{ + "namespace": "io.confluent.eventsim.avro", + "type": "record", + "name": "Listen", + "fields": [ + { + "name": "ts", + "type": "long" + }, + { + "name": "userId", + "type": [ + "null", + "long" + ] + }, + { + "name": "sessionId", + "type": "long" + }, + { + "name": "auth", + "type": "string" + }, + { + "name": "level", + "type": "string" + }, + { + "name": "itemInSession", + "type": "int" + }, + { + "name": "userDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "deviceDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "songProperties", + "type": { "type": "record", "name": "song", - "fields" : [ - {"name" : "artist", "type" : "string"}, - {"name" : "title", "type" : "string"}, - {"name" : "duration", "type" : "double"} + "fields": [ + { + "name": "artist", + "type": "string" + }, + { + "name": "title", + "type": "string" + }, + { + "name": "duration", + "type": "double" + } ] } }, - {"name": "tag", "type" : ["null", "string"]} + { + "name": "tag", + "type": [ + "null", + "string" + ] + } ] } \ No newline at end of file diff --git a/src/main/avro/PageView.avsc b/src/main/avro/PageView.avsc index 309399ea..f14c8c6d 100644 --- a/src/main/avro/PageView.avsc +++ b/src/main/avro/PageView.avsc @@ -1,21 +1,88 @@ -{"namespace" : "io.confluent.eventsim.avro", - "type" : "record", - "name" : "PageView", - "fields" : [ - {"name" : "ts", "type" : "long"}, - {"name" : "userId", "type" : ["null","long"]}, - {"name" : "sessionId", "type" : "long"}, - {"name" : "page", "type" : "string"}, - {"name" : "auth", "type" : "string"}, - {"name" : "method", "type" : "string"}, - {"name" : "status", "type" : "int"}, - {"name" : "level", "type" : "string"}, - {"name" : "itemInSession", "type" : "int"}, - {"name" : "userDetails", - "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, - {"name" : "deviceDetails", - "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, - {"name" : "songProperties", "type" : ["null", "song"]}, - {"name": "tag", "type" : ["null", "string"]} +{ + "namespace": "io.confluent.eventsim.avro", + "type": "record", + "name": "PageView", + "fields": [ + { + "name": "ts", + "type": "long" + }, + { + "name": "userId", + "type": [ + "null", + "long" + ] + }, + { + "name": "sessionId", + "type": "long" + }, + { + "name": "page", + "type": "string" + }, + { + "name": "auth", + "type": "string" + }, + { + "name": "method", + "type": "string" + }, + { + "name": "status", + "type": "int" + }, + { + "name": "level", + "type": "string" + }, + { + "name": "itemInSession", + "type": "int" + }, + { + "name": "userDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "deviceDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "songProperties", + "type": [ + "null", + "song" + ] + }, + { + "name": "tag", + "type": [ + "null", + "string" + ] + } ] } \ No newline at end of file diff --git a/src/main/avro/StatusChange.avsc b/src/main/avro/StatusChange.avsc index 109f3c9e..fa10385d 100644 --- a/src/main/avro/StatusChange.avsc +++ b/src/main/avro/StatusChange.avsc @@ -1,17 +1,69 @@ -{"namespace" : "io.confluent.eventsim.avro", - "type" : "record", - "name" : "StatusChange", - "fields" : [ - {"name" : "ts", "type" : "long"}, - {"name" : "userId", "type" : ["null","long"]}, - {"name" : "sessionId", "type" : "long"}, - {"name" : "auth", "type" : "string"}, - {"name" : "level", "type" : "string"}, - {"name" : "itemInSession", "type" : "int"}, - {"name" : "userDetails", - "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, - {"name" : "deviceDetails", - "type": [{"type" : "map", "values": ["string", "long", "double"]}, "null"]}, - {"name": "tag", "type" : ["null", "string"]} +{ + "namespace": "io.confluent.eventsim.avro", + "type": "record", + "name": "StatusChange", + "fields": [ + { + "name": "ts", + "type": "long" + }, + { + "name": "userId", + "type": [ + "null", + "long" + ] + }, + { + "name": "sessionId", + "type": "long" + }, + { + "name": "auth", + "type": "string" + }, + { + "name": "level", + "type": "string" + }, + { + "name": "itemInSession", + "type": "int" + }, + { + "name": "userDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "deviceDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "tag", + "type": [ + "null", + "string" + ] + } ] } \ No newline at end of file diff --git a/src/main/scala/io/confluent/eventsim/Constants.scala b/src/main/scala/io/confluent/eventsim/Constants.scala index d28043ad..835fdb05 100644 --- a/src/main/scala/io/confluent/eventsim/Constants.scala +++ b/src/main/scala/io/confluent/eventsim/Constants.scala @@ -1,8 +1,8 @@ package io.confluent.eventsim /** - * Constants - */ + * Constants + */ object Constants { val THREE_AM = 3 * 60 * 60 val DEFAULT_DAMPING = 0.0625 @@ -12,7 +12,8 @@ object Constants { val SECONDS_PER_DAY = 24 * 60 * 60 val SECONDS_PER_YEAR = SECONDS_PER_DAY * 365.25 val MILLISECONDS_PER_YEAR = SECONDS_PER_YEAR * 1000 - val DEFAULT_SESSION_GAP = 30 * 60 // 30 minutes, per IAB + val DEFAULT_SESSION_GAP = 30 * 60 + // 30 minutes, per IAB val DEFAULT_NEW_USER_AUTH = "Guest" val DEFAULT_NEW_USER_LEVEL = "Free" } diff --git a/src/main/scala/io/confluent/eventsim/Main.scala b/src/main/scala/io/confluent/eventsim/Main.scala index fa6cad6b..6ab6e157 100644 --- a/src/main/scala/io/confluent/eventsim/Main.scala +++ b/src/main/scala/io/confluent/eventsim/Main.scala @@ -3,10 +3,10 @@ package io.confluent.eventsim import java.time.temporal.ChronoUnit import java.time.{Duration, LocalDateTime, ZoneOffset} -import io.confluent.eventsim.Utilities.{TrackListenCount, SimilarSongParser} -import io.confluent.eventsim.buildin.{UserProperties, DeviceProperties} +import io.confluent.eventsim.Utilities.{SimilarSongParser, TrackListenCount} +import io.confluent.eventsim.buildin.{DeviceProperties, UserProperties} import io.confluent.eventsim.config.ConfigFromFile -import org.rogach.scallop.{ScallopOption, ScallopConf} +import org.rogach.scallop.{ScallopConf, ScallopOption} import scala.collection.mutable @@ -100,7 +100,7 @@ object Main extends App { val seed = if (ConfFromOptions.randomSeed.isSupplied) ConfFromOptions.randomSeed.get.get.toLong - else + else ConfigFromFile.seed @@ -153,7 +153,7 @@ object Main extends App { } System.err.println("Initial number of users: " + ConfFromOptions.nUsers() + ", Final number of users: " + nUsers) - val startTimeString = startTime.toString + val startTimeString = startTime.toString val endTimeString = endTime.toString System.err.println("Start: " + startTimeString + ", End: " + endTimeString) diff --git a/src/main/scala/io/confluent/eventsim/Output.scala b/src/main/scala/io/confluent/eventsim/Output.scala index 217c7def..12b069fb 100644 --- a/src/main/scala/io/confluent/eventsim/Output.scala +++ b/src/main/scala/io/confluent/eventsim/Output.scala @@ -1,39 +1,44 @@ package io.confluent.eventsim -import java.io.{FileOutputStream, File} +import java.io.{File, FileOutputStream} import java.time.ZoneOffset import java.util.Properties + import io.confluent.eventsim.config.ConfigFromFile -import io.confluent.eventsim.events import io.confluent.eventsim.events.Auth.Constructor import io.confluent.eventsim.events.StatusChange.{AvroConstructor, JSONConstructor} -import org.apache.kafka.clients.producer.{ProducerConfig, ProducerRecord, KafkaProducer} +import org.apache.kafka.clients.producer.{KafkaProducer, ProducerConfig, ProducerRecord} /** * Created by jadler on 1/13/16. */ object Output { + // place to put all the output related code trait canwrite { def write() + def flushAndClose() } private class FileEventWriter(val constructor: events.Constructor, val file: File) extends Object with canwrite { val out = new FileOutputStream(file) + def write() = out.write(constructor.end().asInstanceOf[Array[Byte]]) - override def flushAndClose(): Unit = {out.flush(); out.close()} + override def flushAndClose(): Unit = { + out.flush(); out.close() + } } private class KafkaEventWriter(val constructor: events.Constructor, val topic: String, val brokers: String) extends Object with canwrite { val props = new Properties() - props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArraySerializer") + props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArraySerializer") props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArraySerializer") - //if (constructor.isInstanceOf[JSONConstructor]) "org.apache.kafka.common.serialization.ByteArraySerializer" - //else "io.confluent.kafka.serializers.KafkaAvroSerializer") + //if (constructor.isInstanceOf[JSONConstructor]) "org.apache.kafka.common.serialization.ByteArraySerializer" + //else "io.confluent.kafka.serializers.KafkaAvroSerializer") props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, brokers) val producer = new KafkaProducer[Object, Object](props) @@ -48,7 +53,9 @@ object Output { producer.send(pr) } - override def flushAndClose(): Unit = {producer.flush(); producer.close();} + override def flushAndClose(): Unit = { + producer.flush(); producer.close(); + } } val authConstructor: Constructor = @@ -93,12 +100,12 @@ object Output { statusChangeEventWriter.flushAndClose() } - def writeEvents(session: Session, device: Map[String,Any], userId: Int, props: Map[String,Any]) = { + def writeEvents(session: Session, device: Map[String, Any], userId: Int, props: Map[String, Any]) = { val showUserDetails = ConfigFromFile.showUserWithState(session.currentState.auth) pageViewConstructor.start - pageViewConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) - pageViewConstructor.setSessionId( session.sessionId) + pageViewConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC) toEpochMilli()) + pageViewConstructor.setSessionId(session.sessionId) pageViewConstructor.setPage(session.currentState.page) pageViewConstructor.setAuth(session.currentState.auth) pageViewConstructor.setMethod(session.currentState.method) @@ -113,7 +120,7 @@ object Output { pageViewConstructor.setTag(Main.tag.get) } - if (session.currentState.page=="NextSong") { + if (session.currentState.page == "NextSong") { pageViewConstructor.setArtist(session.currentSong.get._2) pageViewConstructor.setTitle(session.currentSong.get._3) pageViewConstructor.setDuration(session.currentSong.get._4) @@ -121,8 +128,8 @@ object Output { listenConstructor.setArtist(session.currentSong.get._2) listenConstructor.setTitle(session.currentSong.get._3) listenConstructor.setDuration(session.currentSong.get._4) - listenConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) - listenConstructor.setSessionId( session.sessionId) + listenConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC) toEpochMilli()) + listenConstructor.setSessionId(session.sessionId) listenConstructor.setAuth(session.currentState.auth) listenConstructor.setLevel(session.currentState.level) listenConstructor.setItemInSession(session.itemInSession) @@ -136,10 +143,10 @@ object Output { listenEventWriter.write } - if (session.currentState.page=="Submit Downgrade" || session.currentState.page=="Submit Upgrade") { + if (session.currentState.page == "Submit Downgrade" || session.currentState.page == "Submit Upgrade") { statusChangeConstructor.start() - statusChangeConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) - statusChangeConstructor.setSessionId( session.sessionId) + statusChangeConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC) toEpochMilli()) + statusChangeConstructor.setSessionId(session.sessionId) statusChangeConstructor.setAuth(session.currentState.auth) statusChangeConstructor.setLevel(session.currentState.level) statusChangeConstructor.setItemInSession(session.itemInSession) @@ -153,10 +160,10 @@ object Output { statusChangeEventWriter.write } - if (session.previousState.isDefined && session.previousState.get.page=="Login") { + if (session.previousState.isDefined && session.previousState.get.page == "Login") { authConstructor.start() - authConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC)toEpochMilli()) - authConstructor.setSessionId( session.sessionId) + authConstructor.setTs(session.nextEventTimeStamp.get.toInstant(ZoneOffset.UTC) toEpochMilli()) + authConstructor.setSessionId(session.sessionId) authConstructor.setLevel(session.currentState.level) authConstructor.setItemInSession(session.itemInSession) authConstructor.setDeviceDetails(device) diff --git a/src/main/scala/io/confluent/eventsim/Session.scala b/src/main/scala/io/confluent/eventsim/Session.scala index c4682ccd..736d420f 100644 --- a/src/main/scala/io/confluent/eventsim/Session.scala +++ b/src/main/scala/io/confluent/eventsim/Session.scala @@ -2,49 +2,49 @@ package io.confluent.eventsim import java.time.LocalDateTime -import TimeUtilities._ +import io.confluent.eventsim.TimeUtilities._ import io.confluent.eventsim.buildin.RandomSongGenerator import io.confluent.eventsim.config.ConfigFromFile /** - * Object to capture session related calculations and properties - */ + * Object to capture session related calculations and properties + */ class Session(var nextEventTimeStamp: Option[LocalDateTime], val alpha: Double, // expected request inter-arrival time - val beta: Double, // expected session inter-arrival time - val initialStates: scala.collection.Map[(String,String),WeightedRandomThingGenerator[State]], + val beta: Double, // expected session inter-arrival time + val initialStates: scala.collection.Map[(String, String), WeightedRandomThingGenerator[State]], val auth: String, - val level: String ) { + val level: String) { val sessionId = Counters.nextSessionId var itemInSession = 0 var done = false - var currentState:State = initialStates((auth, level)).randomThing - var previousState:Option[State] = None - var currentSong:Option[(String,String,String,Float)] = - if (currentState.page=="NextSong") Some(RandomSongGenerator.nextSong()) else None - var currentSongEnd:Option[LocalDateTime] = - if (currentState.page=="NextSong") Some(nextEventTimeStamp.get.plusSeconds(currentSong.get._4.toInt)) else None + var currentState: State = initialStates((auth, level)).randomThing + var previousState: Option[State] = None + var currentSong: Option[(String, String, String, Float)] = + if (currentState.page == "NextSong") Some(RandomSongGenerator.nextSong()) else None + var currentSongEnd: Option[LocalDateTime] = + if (currentState.page == "NextSong") Some(nextEventTimeStamp.get.plusSeconds(currentSong.get._4.toInt)) else None def incrementEvent() = { val nextState = currentState.nextState(rng) nextState match { case None => - done=true + done = true case x if 300 until 399 contains x.get.status => - nextEventTimeStamp=Some(nextEventTimeStamp.get.plusSeconds(1)) + nextEventTimeStamp = Some(nextEventTimeStamp.get.plusSeconds(1)) currentState = nextState.get itemInSession += 1 - case x if x.get.page=="NextSong" => + case x if x.get.page == "NextSong" => if (currentSong.isEmpty) { - nextEventTimeStamp=Some(nextEventTimeStamp.get.plusSeconds(exponentialRandomValue(alpha).toInt)) + nextEventTimeStamp = Some(nextEventTimeStamp.get.plusSeconds(exponentialRandomValue(alpha).toInt)) currentSong = Some(RandomSongGenerator.nextSong()) } else if (nextEventTimeStamp.get.isBefore(currentSongEnd.get)) { nextEventTimeStamp = currentSongEnd currentSong = Some(RandomSongGenerator.nextSong(currentSong.get._1)) } else { - nextEventTimeStamp=Some(nextEventTimeStamp.get.plusSeconds(exponentialRandomValue(alpha).toInt)) + nextEventTimeStamp = Some(nextEventTimeStamp.get.plusSeconds(exponentialRandomValue(alpha).toInt)) currentSong = Some(RandomSongGenerator.nextSong(currentSong.get._1)) } currentSongEnd = Some(nextEventTimeStamp.get.plusSeconds(currentSong.get._4.toInt)) @@ -53,7 +53,7 @@ class Session(var nextEventTimeStamp: Option[LocalDateTime], itemInSession += 1 case _ => - nextEventTimeStamp=Some(nextEventTimeStamp.get.plusSeconds(exponentialRandomValue(alpha).toInt)) + nextEventTimeStamp = Some(nextEventTimeStamp.get.plusSeconds(exponentialRandomValue(alpha).toInt)) previousState = Some(currentState) currentState = nextState.get itemInSession += 1 @@ -70,9 +70,9 @@ class Session(var nextEventTimeStamp: Option[LocalDateTime], object Session { def pickFirstTimeStamp(st: LocalDateTime, - alpha: Double, // expected request inter-arrival time - beta: Double // expected session inter-arrival time - ): LocalDateTime = { + alpha: Double, // expected request inter-arrival time + beta: Double // expected session inter-arrival time + ): LocalDateTime = { // pick random start point, iterate to steady state val startPoint = st.minusSeconds(beta.toInt * 2) var candidate = pickNextSessionStartTime(startPoint, beta) diff --git a/src/main/scala/io/confluent/eventsim/State.scala b/src/main/scala/io/confluent/eventsim/State.scala index d4bcce34..e96c72f1 100644 --- a/src/main/scala/io/confluent/eventsim/State.scala +++ b/src/main/scala/io/confluent/eventsim/State.scala @@ -3,25 +3,25 @@ package io.confluent.eventsim import org.apache.commons.math3.random.RandomGenerator /** - * Models a single state and transitions to other states - */ + * Models a single state and transitions to other states + */ -class State(val t:(String,String,Int,String,String)) { +class State(val t: (String, String, Int, String, String)) { val page = t._1 val auth = t._2 val status = t._3 val method = t._4 val level = t._5 - var laterals: Map[State, (Double,Double)] = scala.collection.immutable.ListMap() - var upgrades: Map[State, (Double,Double)] = scala.collection.immutable.ListMap() - var downgrades: Map[State, (Double,Double)] = scala.collection.immutable.ListMap() + var laterals: Map[State, (Double, Double)] = scala.collection.immutable.ListMap() + var upgrades: Map[State, (Double, Double)] = scala.collection.immutable.ListMap() + var downgrades: Map[State, (Double, Double)] = scala.collection.immutable.ListMap() - private def maxP(transitions: Map[State, (Double,Double)]) = + private def maxP(transitions: Map[State, (Double, Double)]) = if (transitions.nonEmpty) transitions.values.map(_._2).max else 0.0 def maxLateralsP = maxP(laterals) - private def addTransition(s: State, p: Double, t: Map[State, (Double,Double)]) = { + private def addTransition(s: State, p: Double, t: Map[State, (Double, Double)]) = { val oldMax = this.maxP(t) if (oldMax + p > 1.0) { println(this.toString) @@ -34,15 +34,23 @@ class State(val t:(String,String,Int,String,String)) { t.+(s -> newKey) } - def addLateral(s: State, p: Double) = {laterals = addTransition(s,p,laterals)} - def addUpgrade(s: State, p: Double) = {laterals = addTransition(s,p,upgrades)} - def addDowngrade(s: State, p: Double) = {laterals = addTransition(s,p,downgrades)} + def addLateral(s: State, p: Double) = { + laterals = addTransition(s, p, laterals) + } + + def addUpgrade(s: State, p: Double) = { + laterals = addTransition(s, p, upgrades) + } + + def addDowngrade(s: State, p: Double) = { + laterals = addTransition(s, p, downgrades) + } - private def inRange(v: Double, s:(State,(Double,Double))) = v >= s._2._1 && v < s._2._2 + private def inRange(v: Double, s: (State, (Double, Double))) = v >= s._2._1 && v < s._2._2 def nextState(rng: RandomGenerator) = { val x = rng.nextDouble() - val r = laterals.find(inRange(x,_)) + val r = laterals.find(inRange(x, _)) if (r.nonEmpty) Some(r.get._1) else @@ -51,7 +59,7 @@ class State(val t:(String,String,Int,String,String)) { def upgrade(rng: RandomGenerator) = { val x = rng.nextDouble() - val r = upgrades.find(inRange(x,_)) + val r = upgrades.find(inRange(x, _)) if (r.nonEmpty) Some(r.get._1) else @@ -60,7 +68,7 @@ class State(val t:(String,String,Int,String,String)) { def downgrade(rng: RandomGenerator) = { val x = rng.nextDouble() - val r = downgrades.find(inRange(x,_)) + val r = downgrades.find(inRange(x, _)) if (r.nonEmpty) Some(r.get._1) else @@ -68,8 +76,12 @@ class State(val t:(String,String,Int,String,String)) { } override def toString = - "page: " + page + ", auth: " + auth + ", transitions: " + - laterals.foldLeft("")( (s:String, t:(State, (Double, Double))) => - (if (s != "") {s + ", "} else {""}) + t._1.page + "," + t._1.auth + ": " + t._2.toString) + "page: " + page + ", auth: " + auth + ", transitions: " + + laterals.foldLeft("")((s: String, t: (State, (Double, Double))) => + (if (s != "") { + s + ", " + } else { + "" + }) + t._1.page + "," + t._1.auth + ": " + t._2.toString) } \ No newline at end of file diff --git a/src/main/scala/io/confluent/eventsim/TimeUtilities.scala b/src/main/scala/io/confluent/eventsim/TimeUtilities.scala index 0ba163a8..1c80cb09 100644 --- a/src/main/scala/io/confluent/eventsim/TimeUtilities.scala +++ b/src/main/scala/io/confluent/eventsim/TimeUtilities.scala @@ -1,12 +1,11 @@ package io.confluent.eventsim import java.time.temporal.{ChronoField, ChronoUnit} -import java.time.{DayOfWeek, Duration, LocalDateTime, LocalDate} +import java.time.{DayOfWeek, Duration, LocalDate, LocalDateTime} -import Constants._ import de.jollyday.HolidayManager +import io.confluent.eventsim.Constants._ import io.confluent.eventsim.config.ConfigFromFile -import org.apache.commons.math3.distribution.ExponentialDistribution import org.apache.commons.math3.random.MersenneTwister object TimeUtilities { @@ -15,6 +14,7 @@ object TimeUtilities { // first implementation: US only val holidays = HolidayManager.getInstance() + def isHoliday(ld: LocalDate): Boolean = holidays.isHoliday(ld) def isWeekend(ld: LocalDate): Boolean = { @@ -23,6 +23,7 @@ object TimeUtilities { } def isWeekendOrHoliday(i: LocalDateTime): Boolean = isWeekendOrHoliday(LocalDate.from(i)) + def isWeekendOrHoliday(ld: LocalDate): Boolean = isWeekend(ld) || isHoliday(ld) val rng = new MersenneTwister(Main.seed) // Mersenne Twisters are fast and good enough for fake data @@ -44,12 +45,12 @@ object TimeUtilities { val nextNoon = noon.plus(1, ChronoUnit.DAYS) val wOrH_yesterday = isWeekendOrHoliday(lastNoon) - val wOrH_noon = isWeekendOrHoliday(noon) - val wOrH_tomorrow = isWeekendOrHoliday(nextNoon) + val wOrH_noon = isWeekendOrHoliday(noon) + val wOrH_tomorrow = isWeekendOrHoliday(nextNoon) (wOrH_yesterday, wOrH_noon, wOrH_tomorrow) match { case (false, false, false) => 0.0 - case (true, true, true) => ConfigFromFile.weekendDamping + case (true, true, true) => ConfigFromFile.weekendDamping case (false, false, true) => val nextMidnightMinusOffset = nextMidnight.minus(ConfigFromFile.weekendDampingOffset, ChronoUnit.MINUTES) @@ -114,17 +115,18 @@ object TimeUtilities { def keepThisDate(lastTs: LocalDateTime, newTs: LocalDateTime) = if (weekendDamping(newTs) > 0.0) rng.nextDouble() < 1.0 - weekendDamping(newTs) else true - def warpOffset(ts:LocalDateTime, offsetSeconds: Long, dampingFactor: Double): Int = { + def warpOffset(ts: LocalDateTime, offsetSeconds: Long, dampingFactor: Double): Int = { val s = ts.getLong(ChronoField.SECOND_OF_DAY) - (dampingFactor * SECONDS_PER_DAY * Math.sin( (s - offsetSeconds) * 2 * Math.PI / SECONDS_PER_DAY)).toInt + (dampingFactor * SECONDS_PER_DAY * Math.sin((s - offsetSeconds) * 2 * Math.PI / SECONDS_PER_DAY)).toInt } def standardOffset(ts: LocalDateTime) = warpOffset(ts, THREE_AM, ConfigFromFile.damping) + def standardWarp(ts: LocalDateTime) = ts.plusSeconds(warpOffset(ts, THREE_AM, ConfigFromFile.damping)) def reverseWarpOffset(ts: LocalDateTime, offsetSeconds: Long, dampingFactor: Double) = { val s = ts.getLong(ChronoField.SECOND_OF_DAY) - (Math.asin(s / (dampingFactor * SECONDS_PER_DAY)) / (2 * Math.PI / SECONDS_PER_DAY ) + offsetSeconds).toInt + (Math.asin(s / (dampingFactor * SECONDS_PER_DAY)) / (2 * Math.PI / SECONDS_PER_DAY) + offsetSeconds).toInt } def reverseStandardWarp(ts: LocalDateTime) = ts.minusSeconds(reverseWarpOffset(ts, THREE_AM, ConfigFromFile.damping)) diff --git a/src/main/scala/io/confluent/eventsim/User.scala b/src/main/scala/io/confluent/eventsim/User.scala index 1ca21899..d4795a6d 100644 --- a/src/main/scala/io/confluent/eventsim/User.scala +++ b/src/main/scala/io/confluent/eventsim/User.scala @@ -1,24 +1,24 @@ package io.confluent.eventsim -import java.io.{OutputStream, Serializable} -import java.time.{ZoneOffset, LocalDateTime} -import java.util +import java.io.Serializable +import java.time.LocalDateTime + import io.confluent.eventsim.config.ConfigFromFile class User(val alpha: Double, val beta: Double, val startTime: LocalDateTime, - val initialSessionStates: scala.collection.mutable.Map[(String,String),WeightedRandomThingGenerator[State]], + val initialSessionStates: scala.collection.mutable.Map[(String, String), WeightedRandomThingGenerator[State]], val auth: String, - val props: Map[String,Any], - var device: Map[String,Any], + val props: Map[String, Any], + var device: Map[String, Any], val initialLevel: String ) extends Serializable with Ordered[User] { val userId = Counters.nextUserId var session = new Session( Some(Session.pickFirstTimeStamp(startTime, alpha, beta)), - alpha, beta, initialSessionStates, auth, initialLevel) + alpha, beta, initialSessionStates, auth, initialLevel) override def compare(that: User) = (that.session.nextEventTimeStamp, this.session.nextEventTimeStamp) match { @@ -35,7 +35,7 @@ class User(val alpha: Double, session.incrementEvent() if (session.done) { if (TimeUtilities.rng.nextDouble() < prAttrition || - session.currentState.auth == ConfigFromFile.churnedState.getOrElse("")) { + session.currentState.auth == ConfigFromFile.churnedState.getOrElse("")) { session.nextEventTimeStamp = None // TODO: mark as churned } diff --git a/src/main/scala/io/confluent/eventsim/Utilities/SimilarSongParser.scala b/src/main/scala/io/confluent/eventsim/Utilities/SimilarSongParser.scala index b195eb89..ee427be8 100644 --- a/src/main/scala/io/confluent/eventsim/Utilities/SimilarSongParser.scala +++ b/src/main/scala/io/confluent/eventsim/Utilities/SimilarSongParser.scala @@ -1,14 +1,14 @@ package io.confluent.eventsim.Utilities -import java.io.{FileOutputStream, PrintWriter, File} +import java.io.{File, FileOutputStream, PrintWriter} import java.net.URL import java.nio.file.NotDirectoryException import java.util -import java.util.ArrayList import java.util.zip.GZIPOutputStream -import sys.process._ -import com.fasterxml.jackson.core.{TreeNode, JsonParser, JsonFactory} +import com.fasterxml.jackson.core.{JsonFactory, JsonParser, TreeNode} + +import scala.sys.process._ object SimilarSongParser { diff --git a/src/main/scala/io/confluent/eventsim/Utilities/TrackListenCount.scala b/src/main/scala/io/confluent/eventsim/Utilities/TrackListenCount.scala index 4d949abe..44ad7fd6 100644 --- a/src/main/scala/io/confluent/eventsim/Utilities/TrackListenCount.scala +++ b/src/main/scala/io/confluent/eventsim/Utilities/TrackListenCount.scala @@ -4,7 +4,7 @@ import java.io.PrintWriter import scala.io.Source -object TrackListenCount { +object TrackListenCount { def compute() = { @@ -24,9 +24,9 @@ object TrackListenCount { // tempo,timeSignature,timeSignatureConfidence,TrackId var counter = 0 - val mdfile = Source.fromFile("data/songs_analysis.txt","ISO-8859-1") + val mdfile = Source.fromFile("data/songs_analysis.txt", "ISO-8859-1") val mdfileLines = mdfile.getLines() - val metadata = new scala.collection.mutable.HashMap[String,Double]() + val metadata = new scala.collection.mutable.HashMap[String, Double]() for (md <- mdfileLines) { System.err.print("\r" + counter.toString) counter += 1 @@ -52,9 +52,9 @@ object TrackListenCount { // unique tracks format: // trackIdsongIdartistNamesongTitle - val trackFile = Source.fromFile("data/unique_tracks.txt","ISO-8859-1") + val trackFile = Source.fromFile("data/unique_tracks.txt", "ISO-8859-1") val trackFileLines = trackFile.getLines() - val tracks = new scala.collection.mutable.HashMap[String,(String,String,String)]() + val tracks = new scala.collection.mutable.HashMap[String, (String, String, String)]() for (t <- trackFileLines) { System.err.print("\r" + counter.toString) counter += 1 @@ -76,19 +76,19 @@ object TrackListenCount { val out = new PrintWriter("data/listen_counts.txt") - tracks.foreach((r:(String,(String,String,String))) => { - val (trackId,(songId,artist,songName)) = r - val count = counts.getOrElse(songId,0) + tracks.foreach((r: (String, (String, String, String))) => { + val (trackId, (songId, artist, songName)) = r + val count = counts.getOrElse(songId, 0) val duration = metadata(trackId) if (count > 0) - out.println(trackId + "\t" + removeTabs(artist) + "\t" + removeTabs(songName) + "\t" + duration + "\t" + count ) + out.println(trackId + "\t" + removeTabs(artist) + "\t" + removeTabs(songName) + "\t" + duration + "\t" + count) }) out.close() } def removeTabs(s: String): String = { - s.replaceAll("\t"," ") + s.replaceAll("\t", " ") } } diff --git a/src/main/scala/io/confluent/eventsim/WeightedRandomThingGenerator.scala b/src/main/scala/io/confluent/eventsim/WeightedRandomThingGenerator.scala index aab9911f..bbb3134e 100644 --- a/src/main/scala/io/confluent/eventsim/WeightedRandomThingGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/WeightedRandomThingGenerator.scala @@ -3,10 +3,10 @@ package io.confluent.eventsim import scala.collection.mutable.ArrayBuffer /** - * Class to randomly return a thing from a (weighted) list of things - */ + * Class to randomly return a thing from a (weighted) list of things + */ -class WeightedRandomThingGenerator[T] { +class WeightedRandomThingGenerator[T] { val ab = new ArrayBuffer[(T, Integer)](0) var a = new Array[(T, Integer)](0) var ready = false @@ -30,12 +30,12 @@ class WeightedRandomThingGenerator[T] { a = ab.toArray ready = true } - val key: (T, Integer) = (null, TimeUtilities.rng.nextInt(totalWeight)).asInstanceOf[(T,Integer)] + val key: (T, Integer) = (null, TimeUtilities.rng.nextInt(totalWeight)).asInstanceOf[(T, Integer)] val idx = java.util.Arrays.binarySearch(a, key, tupleSecondValueOrdering) if (idx >= 0) a(idx)._1 else a(-idx - 2)._1 } def mkString = - a.take(5).foldLeft("First 5 items:\n")((s:String,t:(T,Integer)) => s + "\t" + t.toString() + "\n") + a.take(5).foldLeft("First 5 items:\n")((s: String, t: (T, Integer)) => s + "\t" + t.toString() + "\n") } diff --git a/src/main/scala/io/confluent/eventsim/buildin/RandomFirstNameGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomFirstNameGenerator.scala index ee8f9c6e..8caaf33c 100644 --- a/src/main/scala/io/confluent/eventsim/buildin/RandomFirstNameGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomFirstNameGenerator.scala @@ -4,13 +4,13 @@ import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source -object RandomFirstNameGenerator extends WeightedRandomThingGenerator[(String,String)] { +object RandomFirstNameGenerator extends WeightedRandomThingGenerator[(String, String)] { - val s = Source.fromFile("data/yob1990.txt","ISO-8859-1") + val s = Source.fromFile("data/yob1990.txt", "ISO-8859-1") val lines = s.getLines() for (l <- lines) { val fields = l.split(",") - this.add((fields(0).toLowerCase.capitalize,fields(1)), fields(2).toInt) + this.add((fields(0).toLowerCase.capitalize, fields(1)), fields(2).toInt) } s.close() diff --git a/src/main/scala/io/confluent/eventsim/buildin/RandomLastNameGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomLastNameGenerator.scala index 510e21c9..0640fb03 100644 --- a/src/main/scala/io/confluent/eventsim/buildin/RandomLastNameGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomLastNameGenerator.scala @@ -5,11 +5,11 @@ import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source /** - * Data originally from http://www.census.gov/genealogy/www/data/2000surnames/index.html - */ + * Data originally from http://www.census.gov/genealogy/www/data/2000surnames/index.html + */ object RandomLastNameGenerator extends WeightedRandomThingGenerator[String] { - val s = Source.fromFile("data/Top1000Surnames.csv","ISO-8859-1") + val s = Source.fromFile("data/Top1000Surnames.csv", "ISO-8859-1") val lines = s.getLines().drop(1) for (l <- lines) { val fields = l.split(",") diff --git a/src/main/scala/io/confluent/eventsim/buildin/RandomLocationGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomLocationGenerator.scala index 281d461b..2764cd74 100644 --- a/src/main/scala/io/confluent/eventsim/buildin/RandomLocationGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomLocationGenerator.scala @@ -5,25 +5,25 @@ import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source /** - * Randomly generates locations - * - * Population data and coordinated are from http://www.census.gov/geo/maps-data/data/gazetteer2010.html - * Place names are from http://download.geonames.org/export/zip/ - * - * country code : iso country code, 2 characters - * postal code : varchar(20) - * place name : varchar(180) - * admin name1 : 1. order subdivision (state) varchar(100) - * admin code1 : 1. order subdivision (state) varchar(20) - * admin name2 : 2. order subdivision (county/province) varchar(100) - * admin code2 : 2. order subdivision (county/province) varchar(20) - * admin name3 : 3. order subdivision (community) varchar(100) - * admin code3 : 3. order subdivision (community) varchar(20) - * latitude : estimated latitude (wgs84) - * longitude : estimated longitude (wgs84) - * accuracy : accuracy of lat/lng from 1=estimated to 6=centroid - * - */ + * Randomly generates locations + * + * Population data and coordinated are from http://www.census.gov/geo/maps-data/data/gazetteer2010.html + * Place names are from http://download.geonames.org/export/zip/ + * + * country code : iso country code, 2 characters + * postal code : varchar(20) + * place name : varchar(180) + * admin name1 : 1. order subdivision (state) varchar(100) + * admin code1 : 1. order subdivision (state) varchar(20) + * admin name2 : 2. order subdivision (county/province) varchar(100) + * admin code2 : 2. order subdivision (county/province) varchar(20) + * admin name3 : 3. order subdivision (community) varchar(100) + * admin code3 : 3. order subdivision (community) varchar(20) + * latitude : estimated latitude (wgs84) + * longitude : estimated longitude (wgs84) + * accuracy : accuracy of lat/lng from 1=estimated to 6=centroid + * + */ object RandomLocationGenerator extends WeightedRandomThingGenerator[(String, String, String, Double, Double)] { @@ -33,13 +33,13 @@ object RandomLocationGenerator extends WeightedRandomThingGenerator[(String, Str val statsLines = statsSource.getLines().drop(1) val namesLines = namesSource.getLines().toList - val nameMap: Map[String,(String, String)] = namesLines.map( + val nameMap: Map[String, (String, String)] = namesLines.map( l => { val e = l.split('\t') val zip = e(1) val city = e(2) val state = e(4) - zip -> (city, state) + zip ->(city, state) })(collection.breakOut) statsLines.foreach(s => { @@ -49,10 +49,10 @@ object RandomLocationGenerator extends WeightedRandomThingGenerator[(String, Str val lat = e(7).toDouble val lon = e(8).toDouble if (nameMap.contains(zip)) { - val (city, state) = nameMap(zip) - this.add((zip, city, state, lat, lon), pop) - } + val (city, state) = nameMap(zip) + this.add((zip, city, state, lat, lon), pop) } + } ) statsSource.close() diff --git a/src/main/scala/io/confluent/eventsim/buildin/RandomSongGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomSongGenerator.scala index 9e1607aa..88b3a848 100644 --- a/src/main/scala/io/confluent/eventsim/buildin/RandomSongGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomSongGenerator.scala @@ -2,6 +2,7 @@ package io.confluent.eventsim.buildin import java.io.FileInputStream import java.util.zip.GZIPInputStream + import io.confluent.eventsim.WeightedRandomThingGenerator import scala.collection.mutable @@ -12,16 +13,16 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { // val s = Source.fromFile("data/listen_counts.txt","ISO-8859-1") val fis = new FileInputStream("data/listen_counts.txt.gz") val gis = new GZIPInputStream(fis) - val s = Source.fromInputStream(gis,"ISO-8859-1") + val s = Source.fromInputStream(gis, "ISO-8859-1") val listenLines = s.getLines() - val trackIdMap = new mutable.HashMap[String,(String,String,Float,Int)]() + val trackIdMap = new mutable.HashMap[String, (String, String, Float, Int)]() var i = 0 for (ll <- listenLines) { if ((i % 1000) == 0) System.err.print("\r" + i) - i +=1 + i += 1 try { val fields = ll.split("\t") val trackId = fields(0) @@ -32,7 +33,7 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { if (d != "") d.toFloat else 180.0.toFloat } val count = fields(4).toInt - trackIdMap.put(trackId,(artist,songName,duration,count)) + trackIdMap.put(trackId, (artist, songName, duration, count)) this.add(trackId, count) } catch { case e: NumberFormatException => @@ -84,16 +85,16 @@ object RandomSongGenerator extends WeightedRandomThingGenerator[String] { } - def nextSong(lastTrackId: String): (String,String,String,Float) = { - val nextTrackId = - if (similarSongs.nonEmpty && similarSongs.contains(lastTrackId)) { - similarSongs(lastTrackId).randomThing - } else { - this.randomThing - } - val song = trackIdMap(nextTrackId) - (nextTrackId,song._1,song._2,song._3) - } + def nextSong(lastTrackId: String): (String, String, String, Float) = { + val nextTrackId = + if (similarSongs.nonEmpty && similarSongs.contains(lastTrackId)) { + similarSongs(lastTrackId).randomThing + } else { + this.randomThing + } + val song = trackIdMap(nextTrackId) + (nextTrackId, song._1, song._2, song._3) + } def nextSong(): (String, String, String, Float) = nextSong("") diff --git a/src/main/scala/io/confluent/eventsim/buildin/RandomUserAgentGenerator.scala b/src/main/scala/io/confluent/eventsim/buildin/RandomUserAgentGenerator.scala index 9dbb2661..862eaa88 100644 --- a/src/main/scala/io/confluent/eventsim/buildin/RandomUserAgentGenerator.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/RandomUserAgentGenerator.scala @@ -5,15 +5,15 @@ import io.confluent.eventsim.WeightedRandomThingGenerator import scala.io.Source /** - * Data from http://techblog.willshouse.com/2012/01/03/most-common-user-agents/ - */ -object RandomUserAgentGenerator extends WeightedRandomThingGenerator[(String,String,String)] { + * Data from http://techblog.willshouse.com/2012/01/03/most-common-user-agents/ + */ +object RandomUserAgentGenerator extends WeightedRandomThingGenerator[(String, String, String)] { val s = Source.fromFile("data/user agents.txt", "UTF-16" /*, "ISO-8859-1" */) val lines = s.getLines().drop(1) for (l <- lines) { val fields = l.split("\t") - this.add((fields(2),fields(3),fields(4)), fields(1).trim.toInt) + this.add((fields(2), fields(3), fields(4)), fields(1).trim.toInt) } s.close() diff --git a/src/main/scala/io/confluent/eventsim/buildin/UserProperties.scala b/src/main/scala/io/confluent/eventsim/buildin/UserProperties.scala index fdc8499a..ef2da4a6 100644 --- a/src/main/scala/io/confluent/eventsim/buildin/UserProperties.scala +++ b/src/main/scala/io/confluent/eventsim/buildin/UserProperties.scala @@ -1,8 +1,8 @@ package io.confluent.eventsim.buildin -import java.time.{ZoneOffset, LocalDateTime} +import java.time.{LocalDateTime, ZoneOffset} -import io.confluent.eventsim.{TimeUtilities, Constants, Main} +import io.confluent.eventsim.{Constants, Main, TimeUtilities} object UserProperties { // utilities for generating random properties for users @@ -10,14 +10,14 @@ object UserProperties { def randomProps = { val secondsSinceRegistration = Math.min( - TimeUtilities.exponentialRandomValue(Main.growthRate.getOrElse(0.0)*Constants.SECONDS_PER_YEAR).toInt, + TimeUtilities.exponentialRandomValue(Main.growthRate.getOrElse(0.0) * Constants.SECONDS_PER_YEAR).toInt, (Constants.SECONDS_PER_YEAR * 5).toInt) val registrationTime = Main.startTime.minusSeconds(secondsSinceRegistration) val firstNameAndGender = RandomFirstNameGenerator.randomThing val location = RandomLocationGenerator.randomThing - Map[String,Any]( + Map[String, Any]( "lastName" -> RandomLastNameGenerator.randomThing, "firstName" -> firstNameAndGender._1, "gender" -> firstNameAndGender._2, diff --git a/src/main/scala/io/confluent/eventsim/config/ConfigFromFile.scala b/src/main/scala/io/confluent/eventsim/config/ConfigFromFile.scala index 1b55008c..26c57d6c 100644 --- a/src/main/scala/io/confluent/eventsim/config/ConfigFromFile.scala +++ b/src/main/scala/io/confluent/eventsim/config/ConfigFromFile.scala @@ -6,38 +6,38 @@ import scala.collection.mutable import scala.io.Source /** - * Site configuration (loaded from JSON file, used to run simulation) - */ + * Site configuration (loaded from JSON file, used to run simulation) + */ object ConfigFromFile { - val initialStates = scala.collection.mutable.HashMap[(String,String),WeightedRandomThingGenerator[State]]() + val initialStates = scala.collection.mutable.HashMap[(String, String), WeightedRandomThingGenerator[State]]() - new State(("NEW_SESSION","INITIAL_STATUS",200,"","")) + new State(("NEW_SESSION", "INITIAL_STATUS", 200, "", "")) val showUserWithState = new mutable.HashMap[String, Boolean]() val levelGenerator = new WeightedRandomThingGenerator[String]() val authGenerator = new WeightedRandomThingGenerator[String]() // optional config values - var alpha:Double = 60.0 - var beta:Double = Constants.SECONDS_PER_DAY * 3 - - var damping:Double = Constants.DEFAULT_DAMPING - var weekendDamping:Double = Constants.DEFAULT_WEEKEND_DAMPING - var weekendDampingOffset:Int = Constants.DEFAULT_WEEKEND_DAMPING_OFFSET - var weekendDampingScale:Int = Constants.DEFAULT_WEEKEND_DAMPING_SCALE - var sessionGap:Int = Constants.DEFAULT_SESSION_GAP - var churnedState:Option[String] = None + var alpha: Double = 60.0 + var beta: Double = Constants.SECONDS_PER_DAY * 3 + + var damping: Double = Constants.DEFAULT_DAMPING + var weekendDamping: Double = Constants.DEFAULT_WEEKEND_DAMPING + var weekendDampingOffset: Int = Constants.DEFAULT_WEEKEND_DAMPING_OFFSET + var weekendDampingScale: Int = Constants.DEFAULT_WEEKEND_DAMPING_SCALE + var sessionGap: Int = Constants.DEFAULT_SESSION_GAP + var churnedState: Option[String] = None var seed = 0L - var newUserAuth:String = Constants.DEFAULT_NEW_USER_AUTH - var newUserLevel:String = Constants.DEFAULT_NEW_USER_LEVEL + var newUserAuth: String = Constants.DEFAULT_NEW_USER_AUTH + var newUserLevel: String = Constants.DEFAULT_NEW_USER_LEVEL - var startDate:Option[String] = None - var endDate:Option[String] = None - var nUsers:Option[Int] = None - var firstUserId:Option[Int] = None - var growthRate:Option[Double] = None - var tag:Option[String] = None + var startDate: Option[String] = None + var endDate: Option[String] = None + var nUsers: Option[Int] = None + var firstUserId: Option[Int] = None + var growthRate: Option[Double] = None + var tag: Option[String] = None // tags for JSON config file val TRANSITIONS = "transitions" @@ -85,7 +85,7 @@ object ConfigFromFile { val jsonContents = (scala.util.parsing.json.JSON.parseFull(rawContents) match { case e: Some[Any] => e.get case _ => throw new Exception("Could not parse the state file") - }).asInstanceOf[Map[String,Any]] + }).asInstanceOf[Map[String, Any]] s.close() jsonContents.get(ALPHA) match { @@ -109,13 +109,13 @@ object ConfigFromFile { } jsonContents.get(WEEKEND_DAMPING_OFFSET) match { - // in minutes + // in minutes case x: Some[Any] => weekendDampingOffset = x.get.asInstanceOf[Double].toInt case None => } jsonContents.get(WEEKEND_DAMPING_SCALE) match { - // in minutes + // in minutes case x: Some[Any] => weekendDampingScale = x.get.asInstanceOf[Double].toInt case None => } @@ -173,14 +173,14 @@ object ConfigFromFile { churnedState = jsonContents.get(CHURNED_STATE).asInstanceOf[Option[String]] - val states = new mutable.HashMap[(String,String,Int,String,String), State] + val states = new mutable.HashMap[(String, String, Int, String, String), State] - val transitions = jsonContents.getOrElse(TRANSITIONS,List()).asInstanceOf[List[Any]] + val transitions = jsonContents.getOrElse(TRANSITIONS, List()).asInstanceOf[List[Any]] for (t <- transitions) { - val transition = t.asInstanceOf[Map[String,Any]] - val source = readState(transition.getOrElse(SOURCE,List()).asInstanceOf[Map[String,Any]]) - val dest = readState(transition.getOrElse(DEST,List()).asInstanceOf[Map[String,Any]]) - val p = transition.getOrElse(P,Unit).asInstanceOf[Double] + val transition = t.asInstanceOf[Map[String, Any]] + val source = readState(transition.getOrElse(SOURCE, List()).asInstanceOf[Map[String, Any]]) + val dest = readState(transition.getOrElse(DEST, List()).asInstanceOf[Map[String, Any]]) + val p = transition.getOrElse(P, Unit).asInstanceOf[Double] if (!states.contains(source)) { states += (source -> @@ -191,56 +191,56 @@ object ConfigFromFile { new State(dest)) } states(source) - .addLateral(states(dest),p) + .addLateral(states(dest), p) } - val initial = jsonContents.getOrElse(NEW_SESSION,List()).asInstanceOf[List[Any]] + val initial = jsonContents.getOrElse(NEW_SESSION, List()).asInstanceOf[List[Any]] for (i <- initial) { - val item = i.asInstanceOf[Map[String,Any]] + val item = i.asInstanceOf[Map[String, Any]] val weight = item.get(WEIGHT).get.asInstanceOf[Double].toInt val stateTuple = readState(item) - val (_,auth,_,_,level) = stateTuple - if (!initialStates.contains((auth,level))) - initialStates.put((auth,level), new WeightedRandomThingGenerator[State]()) + val (_, auth, _, _, level) = stateTuple + if (!initialStates.contains((auth, level))) + initialStates.put((auth, level), new WeightedRandomThingGenerator[State]()) if (!states.contains(stateTuple)) throw new Exception("Unkown state found while processing initial states: " + stateTuple.toString()) - initialStates(auth,level).add(states.get(stateTuple).get, weight) + initialStates(auth, level).add(states.get(stateTuple).get, weight) } // TODO: put in check for initial state probabilities - val showUserDetails = jsonContents.getOrElse(SHOW_USER_DETAILS,List()).asInstanceOf[List[Any]] + val showUserDetails = jsonContents.getOrElse(SHOW_USER_DETAILS, List()).asInstanceOf[List[Any]] for (i <- showUserDetails) { - val item = i.asInstanceOf[Map[String,Any]] + val item = i.asInstanceOf[Map[String, Any]] val auth = item.get(AUTH).get.asInstanceOf[String] - val show = item.get(SHOW).get.asInstanceOf[Boolean] + val show = item.get(SHOW).get.asInstanceOf[Boolean] showUserWithState += (auth -> show) } - val levels = jsonContents.getOrElse(LEVELS,List()).asInstanceOf[List[Any]] + val levels = jsonContents.getOrElse(LEVELS, List()).asInstanceOf[List[Any]] for (level <- levels) { - val item = level.asInstanceOf[Map[String,Any]] - val levelName = item.getOrElse(LEVEL,"").asInstanceOf[String] - val levelWeight = item.getOrElse(WEIGHT,0.0).asInstanceOf[Double].toInt - levelGenerator.add(levelName,levelWeight) + val item = level.asInstanceOf[Map[String, Any]] + val levelName = item.getOrElse(LEVEL, "").asInstanceOf[String] + val levelWeight = item.getOrElse(WEIGHT, 0.0).asInstanceOf[Double].toInt + levelGenerator.add(levelName, levelWeight) } - val auths = jsonContents.getOrElse(AUTHS,List()).asInstanceOf[List[Any]] + val auths = jsonContents.getOrElse(AUTHS, List()).asInstanceOf[List[Any]] for (auth <- auths) { - val item = auth.asInstanceOf[Map[String,Any]] - val levelName = item.getOrElse(AUTH,"").asInstanceOf[String] - val levelWeight = item.getOrElse(WEIGHT,0.0).asInstanceOf[Double].toInt - authGenerator.add(levelName,levelWeight) + val item = auth.asInstanceOf[Map[String, Any]] + val levelName = item.getOrElse(AUTH, "").asInstanceOf[String] + val levelWeight = item.getOrElse(WEIGHT, 0.0).asInstanceOf[Double].toInt + authGenerator.add(levelName, levelWeight) } } - def readState(m: Map[String,Any]) = + def readState(m: Map[String, Any]) = (m.get(PAGE).get.asInstanceOf[String], - m.get(AUTH).get.asInstanceOf[String], - m.getOrElse(STATUS,"").asInstanceOf[Double].toInt, - m.getOrElse(METHOD,"").asInstanceOf[String], - m.getOrElse(LEVEL, "").asInstanceOf[String]) + m.get(AUTH).get.asInstanceOf[String], + m.getOrElse(STATUS, "").asInstanceOf[Double].toInt, + m.getOrElse(METHOD, "").asInstanceOf[String], + m.getOrElse(LEVEL, "").asInstanceOf[String]) } diff --git a/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala index 10ec957c..343d6abf 100644 --- a/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala @@ -1,25 +1,35 @@ package io.confluent.eventsim.events.Auth import io.confluent.eventsim.Auth + import scala.collection.JavaConversions._ class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[Auth] with Constructor { def schema = Auth.getClassSchema + var eventBuilder = Auth.newBuilder() def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) - def setUserDetails(m: Map[String,Any]): Unit = - eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + + def setUserDetails(m: Map[String, Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence, AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = - eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence, AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) def setSuccess(boolean: Boolean) = eventBuilder.setSuccess(boolean) + def start() = { eventBuilder = Auth.newBuilder(eventBuilder) } diff --git a/src/main/scala/io/confluent/eventsim/events/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/AvroConstructor.scala index 52529c46..6c547300 100644 --- a/src/main/scala/io/confluent/eventsim/events/AvroConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/AvroConstructor.scala @@ -13,11 +13,15 @@ import org.apache.avro.specific.SpecificDatumWriter abstract class AvroConstructor[T]() extends Object with Constructor { def start(): Unit + def schema: Schema def datumWriter = new SpecificDatumWriter[T](this.schema) + def baos = new ByteArrayOutputStream(4096) + def encoder = EncoderFactory.get().binaryEncoder(baos, null) + def serialize(t: T): Array[Byte] = { baos.reset() datumWriter.write(t, encoder) diff --git a/src/main/scala/io/confluent/eventsim/events/Builder.scala b/src/main/scala/io/confluent/eventsim/events/Builder.scala index a3b275cc..6bff83fb 100644 --- a/src/main/scala/io/confluent/eventsim/events/Builder.scala +++ b/src/main/scala/io/confluent/eventsim/events/Builder.scala @@ -1,31 +1,31 @@ package io.confluent.eventsim.events -import java.{lang, util} +import java.lang import org.apache.avro.specific.SpecificRecord /** * Created by jadler on 1/13/16. */ -trait Builder { +trait Builder { // list of common methods used in avro constructors - def setTs(value: Long): Builder + def setTs(value: Long): Builder - def setUserId(value: lang.Long): Builder + def setUserId(value: lang.Long): Builder - def setSessionId(value: Long): Builder + def setSessionId(value: Long): Builder - def setLevel(value: CharSequence): Builder + def setLevel(value: CharSequence): Builder - def setItemInSession(value: Int): Builder + def setItemInSession(value: Int): Builder - def setUserDetails(value: Map[CharSequence, AnyRef]): Builder + def setUserDetails(value: Map[CharSequence, AnyRef]): Builder - def setDeviceDetails(value: Map[CharSequence, AnyRef]): Builder + def setDeviceDetails(value: Map[CharSequence, AnyRef]): Builder - def setTag(value: CharSequence): Builder + def setTag(value: CharSequence): Builder - def build(): SpecificRecord + def build(): SpecificRecord } diff --git a/src/main/scala/io/confluent/eventsim/events/Constructor.scala b/src/main/scala/io/confluent/eventsim/events/Constructor.scala index e54e6992..89d1d42b 100644 --- a/src/main/scala/io/confluent/eventsim/events/Constructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Constructor.scala @@ -5,13 +5,22 @@ package io.confluent.eventsim.events */ trait Constructor { def setTs(n: Long) + def setUserId(n: Long) + def setSessionId(n: Long) + def setLevel(s: String) + def setItemInSession(i: Int) - def setUserDetails(m: Map[String,Any]) - def setDeviceDetails(m: Map[String,Any]) + + def setUserDetails(m: Map[String, Any]) + + def setDeviceDetails(m: Map[String, Any]) + def setTag(s: String) + def start() + def end(): Object } diff --git a/src/main/scala/io/confluent/eventsim/events/JSONConstructor.scala b/src/main/scala/io/confluent/eventsim/events/JSONConstructor.scala index eefc9e46..75b898ec 100644 --- a/src/main/scala/io/confluent/eventsim/events/JSONConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/JSONConstructor.scala @@ -12,12 +12,18 @@ class JSONConstructor extends Object with Constructor { jsonFactory.setRootValueSeparator("") val buffer = new ByteArrayOutputStream() val generator = jsonFactory.createGenerator(buffer, JsonEncoding.UTF8) + def setTs(n: Long) = generator.writeNumberField("ts", n) + def setUserId(n: Long) = generator.writeNumberField("userId", n) + def setSessionId(n: Long) = generator.writeNumberField("sessionId", n) + def setLevel(s: String) = generator.writeStringField("level", s) + def setItemInSession(i: Int) = generator.writeNumberField("itemInSession", i) - def setUserDetails(m: Map[String,Any]) = + + def setUserDetails(m: Map[String, Any]) = m.foreach((p: (String, Any)) => { p._2 match { case _: Long => generator.writeNumberField(p._1, p._2.asInstanceOf[Long]) @@ -25,8 +31,10 @@ class JSONConstructor extends Object with Constructor { case _: Double => generator.writeNumberField(p._1, p._2.asInstanceOf[Double]) case _: Float => generator.writeNumberField(p._1, p._2.asInstanceOf[Float]) case _: String => generator.writeStringField(p._1, p._2.asInstanceOf[String]) - }}) - def setDeviceDetails(m: Map[String,Any]) = + } + }) + + def setDeviceDetails(m: Map[String, Any]) = m.foreach((p: (String, Any)) => { p._2 match { case _: Long => generator.writeNumberField(p._1, p._2.asInstanceOf[Long]) @@ -34,9 +42,13 @@ class JSONConstructor extends Object with Constructor { case _: Double => generator.writeNumberField(p._1, p._2.asInstanceOf[Double]) case _: Float => generator.writeNumberField(p._1, p._2.asInstanceOf[Float]) case _: String => generator.writeStringField(p._1, p._2.asInstanceOf[String]) - }}) + } + }) + def setTag(s: String) = generator.writeStringField("tag", s) + def start() = generator.writeStartObject() + def end() = { generator.writeEndObject() generator.writeRaw('\n') diff --git a/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala index 56e8c4d0..f3173d70 100644 --- a/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala @@ -1,30 +1,42 @@ package io.confluent.eventsim.events.Listen -import scala.collection.JavaConversions._ import io.confluent.eventsim.{Listen, song} +import scala.collection.JavaConversions._ + class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[Listen] with Constructor { def schema = Listen.getClassSchema + var eventBuilder = Listen.newBuilder() var songBuilder = song.newBuilder() def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) - def setUserDetails(m: Map[String,Any]): Unit = - eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + + def setUserDetails(m: Map[String, Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence, AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = - eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence, AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) def setAuth(s: String) = eventBuilder.setAuth(s) + def setArtist(s: String) = songBuilder.setArtist(s) + def setTitle(s: String) = songBuilder.setTitle(s) + def setDuration(d: Float) = songBuilder.setDuration(d) override def start() = { @@ -38,5 +50,4 @@ class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[Lis } - } diff --git a/src/main/scala/io/confluent/eventsim/events/Listen/Constructor.scala b/src/main/scala/io/confluent/eventsim/events/Listen/Constructor.scala index 5bbce37b..46cd6240 100644 --- a/src/main/scala/io/confluent/eventsim/events/Listen/Constructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Listen/Constructor.scala @@ -2,7 +2,10 @@ package io.confluent.eventsim.events.Listen trait Constructor extends io.confluent.eventsim.events.Constructor { def setAuth(s: String) + def setArtist(s: String) + def setTitle(s: String) + def setDuration(d: Float) } diff --git a/src/main/scala/io/confluent/eventsim/events/Listen/JSONConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Listen/JSONConstructor.scala index 246a1fd5..abc57d48 100644 --- a/src/main/scala/io/confluent/eventsim/events/Listen/JSONConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Listen/JSONConstructor.scala @@ -2,7 +2,10 @@ package io.confluent.eventsim.events.Listen class JSONConstructor() extends io.confluent.eventsim.events.JSONConstructor with Constructor { def setAuth(s: String) = generator.writeStringField("auth", s) + def setArtist(s: String) = generator.writeStringField("artist", s) + def setTitle(s: String) = generator.writeStringField("song", s) + def setDuration(f: Float) = generator.writeNumberField("duration", f) } diff --git a/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala index 5f552997..c8ed9a3a 100644 --- a/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala @@ -1,32 +1,48 @@ package io.confluent.eventsim.events.PageView -import io.confluent.eventsim.{song, PageView} +import io.confluent.eventsim.{PageView, song} + import scala.collection.JavaConversions._ class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[PageView] with Constructor { def schema = PageView.getClassSchema + var eventBuilder = PageView.newBuilder() def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) - def setUserDetails(m: Map[String,Any]): Unit = - eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + + def setUserDetails(m: Map[String, Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence, AnyRef]]) + def setDeviceDetails(m: Map[String, Any]): Unit = - eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) + eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence, AnyRef]]) + def setTag(s: String) = eventBuilder.setTag(s) var songBuilder = song.newBuilder() + def setPage(s: String) = eventBuilder.setPage(s) + def setAuth(s: String) = eventBuilder.setAuth(s) + def setMethod(s: String) = eventBuilder.setMethod(s) + def setStatus(i: Int) = eventBuilder.setStatus(i) + def setArtist(s: String) = songBuilder.setArtist(s) + def setTitle(s: String) = songBuilder.setTitle(s) + def setDuration(d: Float) = songBuilder.setDuration(d) def start() = { diff --git a/src/main/scala/io/confluent/eventsim/events/PageView/Constructor.scala b/src/main/scala/io/confluent/eventsim/events/PageView/Constructor.scala index 8b0c78b0..d3098fe8 100644 --- a/src/main/scala/io/confluent/eventsim/events/PageView/Constructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/PageView/Constructor.scala @@ -2,10 +2,16 @@ package io.confluent.eventsim.events.PageView trait Constructor extends io.confluent.eventsim.events.Constructor { def setPage(s: String) + def setAuth(s: String) + def setMethod(s: String) + def setStatus(i: Int) + def setArtist(s: String) + def setTitle(s: String) + def setDuration(d: Float) } diff --git a/src/main/scala/io/confluent/eventsim/events/PageView/JSONConstructor.scala b/src/main/scala/io/confluent/eventsim/events/PageView/JSONConstructor.scala index 961c05b1..fcb63035 100644 --- a/src/main/scala/io/confluent/eventsim/events/PageView/JSONConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/PageView/JSONConstructor.scala @@ -1,11 +1,17 @@ package io.confluent.eventsim.events.PageView class JSONConstructor() extends io.confluent.eventsim.events.JSONConstructor with Constructor { - def setPage(s: String) = generator.writeStringField("page",s) + def setPage(s: String) = generator.writeStringField("page", s) + def setAuth(s: String) = generator.writeStringField("auth", s) + def setMethod(s: String) = generator.writeStringField("method", s) + def setStatus(i: Int) = generator.writeNumberField("status", i) + def setArtist(s: String) = generator.writeStringField("artist", s) + def setTitle(s: String) = generator.writeStringField("song", s) + def setDuration(f: Float) = generator.writeNumberField("duration", f) } diff --git a/src/main/scala/io/confluent/eventsim/events/StatusChange/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/StatusChange/AvroConstructor.scala index 5b9af181..9548e9a9 100644 --- a/src/main/scala/io/confluent/eventsim/events/StatusChange/AvroConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/StatusChange/AvroConstructor.scala @@ -7,20 +7,29 @@ import scala.collection.JavaConversions._ class AvroConstructor() extends io.confluent.eventsim.events.AvroConstructor[StatusChange] with Constructor { def schema = StatusChange.getClassSchema + var eventBuilder = StatusChange.newBuilder() def setTs(n: Long) = eventBuilder.setTs(n) + def setUserId(n: Long) = eventBuilder.setUserId(n) + def setSessionId(n: Long) = eventBuilder.setSessionId(n) + def setAuth(s: String) = eventBuilder.setAuth(s) + def setLevel(s: String) = eventBuilder.setLevel(s) + def setItemInSession(i: Int) = eventBuilder.setItemInSession(i) - def setUserDetails(m: Map[String,Any]): Unit = - eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) - // eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + + def setUserDetails(m: Map[String, Any]): Unit = + eventBuilder.setUserDetails(m.asInstanceOf[Map[CharSequence, AnyRef]]) + + // eventBuilder.setUserDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) def setDeviceDetails(m: Map[String, Any]): Unit = - eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence,AnyRef]]) - // eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) + eventBuilder.setDeviceDetails(m.asInstanceOf[Map[CharSequence, AnyRef]]) + + // eventBuilder.setDeviceDetails(m.asInstanceOf[java.util.Map[CharSequence,AnyRef]]) def setTag(s: String) = eventBuilder.setTag(s) def start() = { From 45ba9136293c122157b72c2a3d31d1a373d2c89e Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Fri, 15 Jan 2016 14:59:49 -0800 Subject: [PATCH 11/14] Renamed avro souce package --- .../io/confluent/eventsim/events/Auth/AvroConstructor.scala | 2 +- .../io/confluent/eventsim/events/Listen/AvroConstructor.scala | 2 +- .../io/confluent/eventsim/events/PageView/AvroConstructor.scala | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala index 343d6abf..0e4b5485 100644 --- a/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Auth/AvroConstructor.scala @@ -1,6 +1,6 @@ package io.confluent.eventsim.events.Auth -import io.confluent.eventsim.Auth +import io.confluent.eventsim.avro.Auth import scala.collection.JavaConversions._ diff --git a/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala index f3173d70..2daef3ba 100644 --- a/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/Listen/AvroConstructor.scala @@ -1,7 +1,7 @@ package io.confluent.eventsim.events.Listen -import io.confluent.eventsim.{Listen, song} +import io.confluent.eventsim.avro.{Listen, song} import scala.collection.JavaConversions._ diff --git a/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala b/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala index c8ed9a3a..8bbe713c 100644 --- a/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala +++ b/src/main/scala/io/confluent/eventsim/events/PageView/AvroConstructor.scala @@ -1,6 +1,6 @@ package io.confluent.eventsim.events.PageView -import io.confluent.eventsim.{PageView, song} +import io.confluent.eventsim.avro.{PageView, song} import scala.collection.JavaConversions._ From 0c41994473494a2b38e36d35291e3d02024438d3 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Fri, 15 Jan 2016 15:03:19 -0800 Subject: [PATCH 12/14] dropped confluent serializer dependency --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index a69527a3..bb8dfb7a 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ version := "2.0" scalaVersion := "2.11.6" -resolvers += Resolver.url("confluent", url("http://packages.confluent.io/maven")) +// resolvers += Resolver.url("confluent", url("http://packages.confluent.io/maven")) libraryDependencies += "org.apache.avro" % "avro" % "1.7.7" @@ -22,6 +22,6 @@ libraryDependencies += "org.apache.kafka" % "kafka-clients" % "0.9.0.0" libraryDependencies += "org.scala-lang.modules" % "scala-parser-combinators_2.11" % "1.0.4" -libraryDependencies += "io.confluent" % "kafka-avro-serializer" % "2.0.0" +// libraryDependencies += "io.confluent" % "kafka-avro-serializer" % "2.0.0" seq( sbtavro.SbtAvro.avroSettings : _*) \ No newline at end of file From d258f26e9d8f7a1c6617de4f396c066265885e35 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Fri, 15 Jan 2016 16:10:03 -0800 Subject: [PATCH 13/14] Changed to make schema compilation more consistent cross platform --- src/main/avro/Auth.avsc | 69 ------- src/main/avro/Listen.avsc | 90 --------- src/main/avro/PageView.avsc | 88 --------- src/main/avro/StatusChange.avsc | 69 ------- src/main/avro/schemas.avsc | 315 ++++++++++++++++++++++++++++++++ 5 files changed, 315 insertions(+), 316 deletions(-) delete mode 100644 src/main/avro/Auth.avsc delete mode 100644 src/main/avro/Listen.avsc delete mode 100644 src/main/avro/PageView.avsc delete mode 100644 src/main/avro/StatusChange.avsc create mode 100644 src/main/avro/schemas.avsc diff --git a/src/main/avro/Auth.avsc b/src/main/avro/Auth.avsc deleted file mode 100644 index 20873c4e..00000000 --- a/src/main/avro/Auth.avsc +++ /dev/null @@ -1,69 +0,0 @@ -{ - "namespace": "io.confluent.eventsim.avro", - "type": "record", - "name": "Auth", - "fields": [ - { - "name": "ts", - "type": "long" - }, - { - "name": "userId", - "type": [ - "null", - "long" - ] - }, - { - "name": "sessionId", - "type": "long" - }, - { - "name": "level", - "type": "string" - }, - { - "name": "itemInSession", - "type": "int" - }, - { - "name": "userDetails", - "type": [ - { - "type": "map", - "values": [ - "string", - "long", - "double" - ] - }, - "null" - ] - }, - { - "name": "deviceDetails", - "type": [ - { - "type": "map", - "values": [ - "string", - "long", - "double" - ] - }, - "null" - ] - }, - { - "name": "tag", - "type": [ - "null", - "string" - ] - }, - { - "name": "success", - "type": "boolean" - } - ] -} \ No newline at end of file diff --git a/src/main/avro/Listen.avsc b/src/main/avro/Listen.avsc deleted file mode 100644 index 750a7e18..00000000 --- a/src/main/avro/Listen.avsc +++ /dev/null @@ -1,90 +0,0 @@ -{ - "namespace": "io.confluent.eventsim.avro", - "type": "record", - "name": "Listen", - "fields": [ - { - "name": "ts", - "type": "long" - }, - { - "name": "userId", - "type": [ - "null", - "long" - ] - }, - { - "name": "sessionId", - "type": "long" - }, - { - "name": "auth", - "type": "string" - }, - { - "name": "level", - "type": "string" - }, - { - "name": "itemInSession", - "type": "int" - }, - { - "name": "userDetails", - "type": [ - { - "type": "map", - "values": [ - "string", - "long", - "double" - ] - }, - "null" - ] - }, - { - "name": "deviceDetails", - "type": [ - { - "type": "map", - "values": [ - "string", - "long", - "double" - ] - }, - "null" - ] - }, - { - "name": "songProperties", - "type": { - "type": "record", - "name": "song", - "fields": [ - { - "name": "artist", - "type": "string" - }, - { - "name": "title", - "type": "string" - }, - { - "name": "duration", - "type": "double" - } - ] - } - }, - { - "name": "tag", - "type": [ - "null", - "string" - ] - } - ] -} \ No newline at end of file diff --git a/src/main/avro/PageView.avsc b/src/main/avro/PageView.avsc deleted file mode 100644 index f14c8c6d..00000000 --- a/src/main/avro/PageView.avsc +++ /dev/null @@ -1,88 +0,0 @@ -{ - "namespace": "io.confluent.eventsim.avro", - "type": "record", - "name": "PageView", - "fields": [ - { - "name": "ts", - "type": "long" - }, - { - "name": "userId", - "type": [ - "null", - "long" - ] - }, - { - "name": "sessionId", - "type": "long" - }, - { - "name": "page", - "type": "string" - }, - { - "name": "auth", - "type": "string" - }, - { - "name": "method", - "type": "string" - }, - { - "name": "status", - "type": "int" - }, - { - "name": "level", - "type": "string" - }, - { - "name": "itemInSession", - "type": "int" - }, - { - "name": "userDetails", - "type": [ - { - "type": "map", - "values": [ - "string", - "long", - "double" - ] - }, - "null" - ] - }, - { - "name": "deviceDetails", - "type": [ - { - "type": "map", - "values": [ - "string", - "long", - "double" - ] - }, - "null" - ] - }, - { - "name": "songProperties", - "type": [ - "null", - "song" - ] - }, - { - "name": "tag", - "type": [ - "null", - "string" - ] - } - ] -} \ No newline at end of file diff --git a/src/main/avro/StatusChange.avsc b/src/main/avro/StatusChange.avsc deleted file mode 100644 index fa10385d..00000000 --- a/src/main/avro/StatusChange.avsc +++ /dev/null @@ -1,69 +0,0 @@ -{ - "namespace": "io.confluent.eventsim.avro", - "type": "record", - "name": "StatusChange", - "fields": [ - { - "name": "ts", - "type": "long" - }, - { - "name": "userId", - "type": [ - "null", - "long" - ] - }, - { - "name": "sessionId", - "type": "long" - }, - { - "name": "auth", - "type": "string" - }, - { - "name": "level", - "type": "string" - }, - { - "name": "itemInSession", - "type": "int" - }, - { - "name": "userDetails", - "type": [ - { - "type": "map", - "values": [ - "string", - "long", - "double" - ] - }, - "null" - ] - }, - { - "name": "deviceDetails", - "type": [ - { - "type": "map", - "values": [ - "string", - "long", - "double" - ] - }, - "null" - ] - }, - { - "name": "tag", - "type": [ - "null", - "string" - ] - } - ] -} \ No newline at end of file diff --git a/src/main/avro/schemas.avsc b/src/main/avro/schemas.avsc new file mode 100644 index 00000000..f915ad8a --- /dev/null +++ b/src/main/avro/schemas.avsc @@ -0,0 +1,315 @@ +{ + "namespace": "io.confluent.eventsim.avro", + "type": "record", + "name": "Auth", + "fields": [ + { + "name": "ts", + "type": "long" + }, + { + "name": "userId", + "type": [ + "null", + "long" + ] + }, + { + "name": "sessionId", + "type": "long" + }, + { + "name": "level", + "type": "string" + }, + { + "name": "itemInSession", + "type": "int" + }, + { + "name": "userDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "deviceDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "tag", + "type": [ + "null", + "string" + ] + }, + { + "name": "success", + "type": "boolean" + } + ] +} +{ + "namespace": "io.confluent.eventsim.avro", + "type": "record", + "name": "Listen", + "fields": [ + { + "name": "ts", + "type": "long" + }, + { + "name": "userId", + "type": [ + "null", + "long" + ] + }, + { + "name": "sessionId", + "type": "long" + }, + { + "name": "auth", + "type": "string" + }, + { + "name": "level", + "type": "string" + }, + { + "name": "itemInSession", + "type": "int" + }, + { + "name": "userDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "deviceDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "songProperties", + "type": { + "type": "record", + "name": "song", + "fields": [ + { + "name": "artist", + "type": "string" + }, + { + "name": "title", + "type": "string" + }, + { + "name": "duration", + "type": "double" + } + ] + } + }, + { + "name": "tag", + "type": [ + "null", + "string" + ] + } + ] +} +{ + "namespace": "io.confluent.eventsim.avro", + "type": "record", + "name": "PageView", + "fields": [ + { + "name": "ts", + "type": "long" + }, + { + "name": "userId", + "type": [ + "null", + "long" + ] + }, + { + "name": "sessionId", + "type": "long" + }, + { + "name": "page", + "type": "string" + }, + { + "name": "auth", + "type": "string" + }, + { + "name": "method", + "type": "string" + }, + { + "name": "status", + "type": "int" + }, + { + "name": "level", + "type": "string" + }, + { + "name": "itemInSession", + "type": "int" + }, + { + "name": "userDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "deviceDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "songProperties", + "type": [ + "null", "song" + ] + }, + { + "name": "tag", + "type": [ + "null", + "string" + ] + } + ] +} +{ + "namespace": "io.confluent.eventsim.avro", + "type": "record", + "name": "StatusChange", + "fields": [ + { + "name": "ts", + "type": "long" + }, + { + "name": "userId", + "type": [ + "null", + "long" + ] + }, + { + "name": "sessionId", + "type": "long" + }, + { + "name": "auth", + "type": "string" + }, + { + "name": "level", + "type": "string" + }, + { + "name": "itemInSession", + "type": "int" + }, + { + "name": "userDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "deviceDetails", + "type": [ + { + "type": "map", + "values": [ + "string", + "long", + "double" + ] + }, + "null" + ] + }, + { + "name": "tag", + "type": [ + "null", + "string" + ] + } + ] +} \ No newline at end of file From 5958a4e6a89b3da07e9a39e781300b7229f930a7 Mon Sep 17 00:00:00 2001 From: Joseph Adler Date: Fri, 15 Jan 2016 16:19:35 -0800 Subject: [PATCH 14/14] fix to avro schemas --- src/main/avro/schemas.avsc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/main/avro/schemas.avsc b/src/main/avro/schemas.avsc index f915ad8a..fc18b17e 100644 --- a/src/main/avro/schemas.avsc +++ b/src/main/avro/schemas.avsc @@ -1,4 +1,4 @@ -{ +[{ "namespace": "io.confluent.eventsim.avro", "type": "record", "name": "Auth", @@ -66,7 +66,7 @@ "type": "boolean" } ] -} +}, { "namespace": "io.confluent.eventsim.avro", "type": "record", @@ -156,7 +156,7 @@ ] } ] -} +}, { "namespace": "io.confluent.eventsim.avro", "type": "record", @@ -243,7 +243,7 @@ ] } ] -} +}, { "namespace": "io.confluent.eventsim.avro", "type": "record", @@ -312,4 +312,5 @@ ] } ] -} \ No newline at end of file +} +] \ No newline at end of file